hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d5e85eec9b57fcce27e5ff8a4941be5416f1652c | 3,214 | h | C | RiscvFirmware/ServAvalon/RiscvSimple/FpgaConfig.h | ARIES-Embedded/riscv-on-max10 | 8fe74e3cd301cda770b187270fe88ad2f8805eff | [
"MIT"
] | 1 | 2022-03-23T11:02:22.000Z | 2022-03-23T11:02:22.000Z | RiscvFirmware/ServAvalon/RiscvFreertos/FpgaConfig.h | ARIES-Embedded/riscv-on-max10 | 8fe74e3cd301cda770b187270fe88ad2f8805eff | [
"MIT"
] | 1 | 2022-03-23T11:03:28.000Z | 2022-03-24T08:00:35.000Z | RiscvFirmware/ServAvalon/RiscvSimple/FpgaConfig.h | ARIES-Embedded/riscv-on-max10 | 8fe74e3cd301cda770b187270fe88ad2f8805eff | [
"MIT"
] | null | null | null | #ifndef FPGACONFIG_H
#define FPGACONFIG_H
#include <stdint.h>
#include "Uart.h"
#define CLK_FREQ 25000000UL // 25 MHz
#define MEMADDR_OCRAM ((uintptr_t)(0x00000000))
#define MEMADDR_INTERRUPTCONTROLLER ((uintptr_t)(0x00010000))
#define MEMADDR_PIO ((uintptr_t)(0x00010100))
#define MEMADDR_UART ((uintptr_t)(0x00010200))
#define C_INTERRUPTS 8
#define IRQ_UART 0
#ifndef DBUILD_VERSION
#define DBUILD_VERSION "git undefined"
#endif
#ifndef DBUILD_DATE
#define DBUILD_DATE "date undefined"
#endif
typedef volatile struct t_Pio {
uint32_t port;
uint32_t direction;
uint32_t _reserved1;
uint32_t _reserved2;
uint32_t outset;
uint32_t outclear;
} Pio;
/* InterruptController
The InterruptController serves as a simple replacement for the PLIC/CLINT.
It combines up to 32 external, software and the timer interrupt in one signal,
which is connected to the only interrupt SERV supports.
Furthermore it provides the mtime and rdtime functionality with a 33 to 64 configurable bit timer.
Machine level interupts (0x04 = SOFT, 0x08 = TIMER, 0x40 = EXTERNAL) are enabled
by writing <w_menable_set> and disabled by writing <w_menable_clr> with a bit mask.
Writes with 0 bits are ignored on these 2 registers. Reading these registers returns
the enabled machine level interrupts <r_menable> and the pending interrupts <r_mpending>.
The core is interrupted if a bit in both registers is '1'.
Similar functionality is provided for the external interrupts.
<ext_enable> can be read and written normally, writes to <ext_pending> are ignored.
<mtime> and <mtimeh> implement the hardware counter. On reset it is set to 0, then on every
sysclk it is incremented. Writes to these registers are ignored.
Reading <mtimeh> actually reads an internal latch that is updated with the real
value whenever <mtime> is read. This way the entire value can be read in effectively
one instruction without timer rollover.
<mtimecmp> and <mtimecmph> implement timer interrupt functionality.
Whenever the value <mtime+h> is greater than or equal to <mtimecmp+h>,
the TIMER bit (0x02) is set in <r_mpending>. Writes to these are registers use a latch.
Writing to <mtimecmph> writes only to an internal latch, writing to <mtimecmp> then writes
the lower 32 bit and the value from the latch to the actual register, this way a value
larger than 33 bit can be written in one instruction.
Reading <mtimecmp> and <mtimecmph> works normally.
Last but not least <softinterrupt> provides functionality to trigger an interrupt from software.
Iff <softinterrupt> is nonzero then the SOFT bit in <r_mpending> is set and a reading
the register yields 0x01.
*/
typedef volatile struct t_InterruptController {
union {
uint32_t w_menable_set; // W
uint32_t r_menable; // R
};
union {
uint32_t w_menable_clr; // W
uint32_t r_mpending; // R
};
uint32_t ext_enable; // RW
uint32_t ext_pending; // R
uint32_t mtime; // R
uint32_t mtimeh; // R
uint32_t mtimecmp; // RW
uint32_t mtimecmph; // RW
uint32_t softinterrupt; // RW
} InterruptController;
extern Pio* g_Pio;
extern Uart* g_Uart;
extern InterruptController* g_InterruptController;
#endif // FPGACONFIG_H
| 36.11236 | 99 | 0.764779 |
6ebc122f05a1eb28764ee9f9ac818d83b44cce7a | 669 | asm | Assembly | oeis/217/A217947.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/217/A217947.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/217/A217947.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A217947: a(n) = (n+1)*(n^3+15*n^2+74*n+132)/12.
; 11,37,87,172,305,501,777,1152,1647,2285,3091,4092,5317,6797,8565,10656,13107,15957,19247,23020,27321,32197,37697,43872,50775,58461,66987,76412,86797,98205,110701,124352,139227,155397,172935,191916,212417,234517,258297,283840,311231,340557,371907,405372,441045,479021,519397,562272,607747,655925,706911,760812,817737,877797,941105,1007776,1077927,1151677,1229147,1310460,1395741,1485117,1578717,1676672,1779115,1886181,1998007,2114732,2236497,2363445,2495721,2633472,2776847,2925997,3081075,3242236
add $0,1
seq $0,5701 ; Number of exterior points formed by extending diagonals of n-gon in general position.
sub $0,3
| 95.571429 | 499 | 0.801196 |
1586a8a26c4288c677c6c1bc4806b7322021472f | 430 | rb | Ruby | cookbooks/php/default.rb | chocoken517/itamae-wordpress-aws | 34542b82555b32f76d8da45b799ad2913f0db54e | [
"MIT"
] | null | null | null | cookbooks/php/default.rb | chocoken517/itamae-wordpress-aws | 34542b82555b32f76d8da45b799ad2913f0db54e | [
"MIT"
] | null | null | null | cookbooks/php/default.rb | chocoken517/itamae-wordpress-aws | 34542b82555b32f76d8da45b799ad2913f0db54e | [
"MIT"
] | null | null | null | %w[php70 php70-mbstring php7-pear php70-fpm php70-mcrypt php70-mysqlnd php70-opcache php70-pecl-apcu].each do |pkg|
package pkg
end
service 'php-fpm' do
action [:enable, :start]
end
execute 'sed -i "s/user = apache/user = nginx/" /etc/php-fpm.d/www.conf && sed -i "s/group = apache/group = nginx/" /etc/php-fpm.d/www.conf' do
notifies :reload, "service[php-fpm]"
not_if "grep 'user = nginx' /etc/php-fpm.d/www.conf"
end
| 33.076923 | 143 | 0.695349 |
38de9604dfee976383682f8104fba036ca0ddaaf | 3,639 | h | C | src/include/rms_vad.h | sswensen/visqol | 943b42b7234d5d750b96521e1b10041dccd3c7ec | [
"Apache-2.0"
] | 292 | 2020-01-30T04:03:17.000Z | 2022-03-31T14:55:59.000Z | src/include/rms_vad.h | sswensen/visqol | 943b42b7234d5d750b96521e1b10041dccd3c7ec | [
"Apache-2.0"
] | 52 | 2020-04-04T13:31:28.000Z | 2022-03-31T00:31:55.000Z | src/include/rms_vad.h | sswensen/visqol | 943b42b7234d5d750b96521e1b10041dccd3c7ec | [
"Apache-2.0"
] | 76 | 2020-04-04T13:07:48.000Z | 2022-03-29T09:08:20.000Z | /*
* Copyright 2019 Google LLC, Andrew Hines
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef VISQOL_INCLUDE_RMS_VAD_H
#define VISQOL_INCLUDE_RMS_VAD_H
#include <cstdint>
#include <vector>
namespace Visqol {
/**
* This class provides a simple Root Mean Square (RMS) implementation for Voice
* Activity Detection (VAD).
*
* The signal to be tested should be broken into chunks and each chunk passed
* sequentially to the ProcessChunk function. Once all chunks have been
* processed, GetVadResults can be called to get the results of which chunks
* have voice activity.
*/
class RmsVad {
public:
/**
* Constant value stored in results vector when voice activity is present.
*/
static const double kVoiceActivityPresent;
/**
* Constant value stored in results vector when voice activity is absent.
*/
static const double kVoiceActivityAbsent;
/**
* The number of sequential chunks with an RMS below the threshold before we
* declare there to be no voice activity at this point in the signal.
*/
static const std::size_t kSilentChunkCount;
/**
* The threshold RMS value for a chunk to be declared as having voice
* activity present.
*/
static const double kRmsThreshold;
/**
* Public no-args constructor. Responsbile for setting the first
* kSilentChunkCount vad results for the first chunk to positive i.e. that
* voice activity was detected. This is done to avoid false negatives where
* we state there is no voice activity when there is in fact some. It will
* also constitute a very small percentage of total samples provided.
*/
RmsVad();
/**
* For a given input signal chunk, calculate the RMS value for the chunk and
* compare to the threshold RMS value.
*
* Once all chunks have been process, GetVadResults can be called to get the
* results.
*
* @param chunk The chunk to process.
*
* @return The RMS value for this chunk.
*/
double ProcessChunk(const std::vector<int16_t> &chunk);
/**
* Get the results for VAD for each chunk.
*
* @return The VAD results.
*/
std::vector<double> GetVadResults();
private:
/**
* The results of the RMS threshold comparison for each chunk.
*/
std::vector<double> each_chunk_result_;
/**
* The results for the VAD for each chunk.
*/
std::vector<double> vad_results_;
/**
* Helper function for calculating the RMS of a chunk.
*
* @param chunk The chunk to calculate the RMS for.
*
* @return The RMS for the chunk.
*/
double CalcRootMeanSquare(const std::vector<int16_t> &chunk);
/**
* If we detect a chunk with a RMS below the threshold, we only mark it as
* lacking voice activity if the previous kSilentChunkCounts are also below
* the RMS threshold.
*
* @param idx The index of the chunk that we want to detect previous chunk
* values for.
*
* @return True if the previous chunks are also below the RMS threshold. Else,
* false.
*/
bool CheckPreviousChunksForSilence(const std::size_t idx);
};
} // namespace Visqol
#endif // VISQOL_INCLUDE_RMS_VAD_H
| 29.585366 | 80 | 0.706788 |
aa8ff1b8f2dde7e7adbdd9b40567343cf848b895 | 9,033 | sql | SQL | php68.sql | ximenwenbo/aaa | 9f816f980c4ec9a6f7bfe04b664b55809b6814d2 | [
"Apache-2.0"
] | null | null | null | php68.sql | ximenwenbo/aaa | 9f816f980c4ec9a6f7bfe04b664b55809b6814d2 | [
"Apache-2.0"
] | null | null | null | php68.sql | ximenwenbo/aaa | 9f816f980c4ec9a6f7bfe04b664b55809b6814d2 | [
"Apache-2.0"
] | null | null | null | -- MySQL dump 10.13 Distrib 5.5.53, for Win32 (AMD64)
--
-- Host: localhost Database: php68
-- ------------------------------------------------------
-- Server version 5.5.53
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `sp_goods`
--
DROP TABLE IF EXISTS `sp_goods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sp_goods` (
`goods_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
`goods_name` varchar(128) NOT NULL COMMENT '商品名称',
`goods_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商品价格',
`goods_number` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '商品数量',
`goods_weight` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '商品重量',
`goods_introduce` text COMMENT '商品详情介绍',
`goods_logo` char(128) NOT NULL DEFAULT '' COMMENT '商品图片',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`delete_time` int(11) DEFAULT NULL COMMENT '记录删除时间,假(逻辑)删除',
PRIMARY KEY (`goods_id`),
UNIQUE KEY `goods_name` (`goods_name`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COMMENT='商品表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sp_goods`
--
LOCK TABLES `sp_goods` WRITE;
/*!40000 ALTER TABLE `sp_goods` DISABLE KEYS */;
INSERT INTO `sp_goods` VALUES (1,'huawei_nova_1s',1500.00,100,0,NULL,'',1530848883,1530848883,NULL),(2,'huawei_nova_2s',1500.00,100,0,NULL,'',1530849010,1530849010,NULL),(3,'huawei_mate_10',1000.00,0,0,NULL,'',1530859292,1530859292,NULL),(4,'huawei_mate_11',1001.00,0,0,NULL,'',1530859292,1530859292,NULL),(5,'huawei_mate_12',1002.00,0,0,NULL,'',1530859292,1530859292,NULL),(7,'huawei_mate_20',1000.00,0,0,NULL,'',1530859738,1530859738,NULL),(8,'huawei_mate_21',1001.00,0,0,NULL,'',1530859738,1530859738,NULL),(9,'xiaomi_plus',3000.00,10,20,NULL,'',1530859738,1530859738,NULL),(10,'huawei_mate_30',2400.00,0,0,NULL,'',1530859880,1530867821,1530867821),(11,'huawei_mate_31',2400.00,0,0,NULL,'',1530859880,1530867821,1530867821),(12,'huawei_mate_32',2400.00,0,0,NULL,'',1530859880,1530867821,1530867821),(13,'小米Note1',2400.00,61,121,NULL,'',NULL,NULL,NULL),(14,'小米Note2',2400.00,62,122,NULL,'',NULL,NULL,NULL),(15,'小米Note3',2400.00,63,123,NULL,'',NULL,NULL,NULL),(16,'红米5A',2400.00,81,101,NULL,'',NULL,NULL,NULL),(17,'红米5B',2400.00,82,102,NULL,'',NULL,NULL,NULL),(18,'红米5C',2400.00,83,103,NULL,'',NULL,NULL,NULL),(21,'fff',222.00,255,444,'是否示范点士大夫大师傅是','',1532077148,1532077148,NULL),(22,'e\'e\'e\'e',222.00,255,444,'是否示范点士大夫大师傅是','',1532077163,1532077163,NULL),(23,'qwer',3333.00,22,33,'<p>sdfdsfsfds</p>','',1532077248,1532156699,1532156699),(24,'aaaa',11.00,22,33,'sfsdfsdfsdf','',1532077357,1532142183,1532142183),(25,'ssss',11.00,22,33,'sdfsfdsfs','',1532078058,1532141599,1532141599),(26,'tttxxx',22.00,255,44,'<p>思路看待历史</p>','',1532078087,1532141429,1532141429),(27,'oppo_5s',234.00,102,33,'<p>很好</p>','',1532078303,1532141588,1532141588),(28,'vvwww',11.00,111,333,'<p>sfdd<span style=\"color: rgb(255, 0, 0);\">sfdsfd</span>sfds</p>','',1532079191,1532157272,NULL),(29,'ddioioio',98333.69,22,60,'<p>ksdsdslds</p>','',1532162119,1532162119,NULL),(30,'dfdsfdsf',23.12,45,103,'','',1532163172,1532163425,NULL),(31,'oppo6s',2000.03,25,130,'<p>oppo is very good</p>','./uploads/goodstmp/20180724/0c4c6b67dd2b03a3e106334e83373ac8.jpg',1532425808,1532425808,NULL);
/*!40000 ALTER TABLE `sp_goods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sp_manager`
--
DROP TABLE IF EXISTS `sp_manager`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sp_manager` (
`mg_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`mg_name` varchar(32) NOT NULL COMMENT '名称',
`mg_pwd` char(32) NOT NULL COMMENT '密码',
`role_id` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '归属角色id',
`create_time` int(10) DEFAULT NULL COMMENT '添加时间',
`update_time` int(10) DEFAULT NULL COMMENT '修改时间',
`delete_time` int(10) DEFAULT NULL COMMENT '删除时间',
PRIMARY KEY (`mg_id`)
) ENGINE=InnoDB AUTO_INCREMENT=503 DEFAULT CHARSET=utf8 COMMENT='管理员表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sp_manager`
--
LOCK TABLES `sp_manager` WRITE;
/*!40000 ALTER TABLE `sp_manager` DISABLE KEYS */;
INSERT INTO `sp_manager` VALUES (500,'admin','e10adc3949ba59abbe56e057f20f883e',0,NULL,NULL,NULL),(501,'jack','e10adc3949ba59abbe56e057f20f883e',30,NULL,NULL,NULL),(502,'linken','e10adc3949ba59abbe56e057f20f883e',31,NULL,NULL,NULL);
/*!40000 ALTER TABLE `sp_manager` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sp_permission`
--
DROP TABLE IF EXISTS `sp_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sp_permission` (
`ps_id` smallint(6) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`ps_name` varchar(20) NOT NULL COMMENT '权限名称',
`ps_pid` smallint(6) unsigned NOT NULL COMMENT '父id',
`ps_c` varchar(32) NOT NULL DEFAULT '' COMMENT '控制器',
`ps_a` varchar(32) NOT NULL DEFAULT '' COMMENT '操作方法',
`ps_level` enum('0','1','2') NOT NULL DEFAULT '0' COMMENT '权限等级',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`delete_time` int(11) DEFAULT NULL COMMENT '记录删除时间,假(逻辑)删除',
PRIMARY KEY (`ps_id`)
) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8 COMMENT='权限表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sp_permission`
--
LOCK TABLES `sp_permission` WRITE;
/*!40000 ALTER TABLE `sp_permission` DISABLE KEYS */;
INSERT INTO `sp_permission` VALUES (101,'商品管理',0,'','','0',1532313010,1532313010,NULL),(102,'订单管理',0,'','','0',1532313010,1532313010,NULL),(103,'权限管理',0,'','','0',1532313010,1532313010,NULL),(104,'商品列表',101,'Goods','index','1',1532313010,1532313010,NULL),(105,'品牌列表',101,'Brand','index','1',1532313010,1532313010,NULL),(106,'商品分类',101,'Category','index','1',1532313010,1532313010,NULL),(107,'订单列表',102,'Order','index','1',1532313010,1532313010,NULL),(108,'订单打印',102,'Order','dayin','1',1532313010,1532313010,NULL),(109,'添加订单',102,'Order','tianjia','1',1532313010,1532313010,NULL),(110,'管理员列表',103,'Manager','index','1',1532313010,1532313010,NULL),(111,'角色列表',103,'Role','index','1',1532313010,1532313010,NULL),(112,'权限列表',103,'Permission','index','1',1532313010,1532313010,NULL),(113,'修改',107,'Order','xiugai','2',NULL,NULL,NULL),(114,'删除商品',104,'Goods','shanchu','2',1532397517,1532397517,NULL),(115,'文章管理',0,'','','0',1532397549,1532397549,NULL),(116,'删除订单',107,'Order','shanchu','2',1532398572,1532398572,NULL);
/*!40000 ALTER TABLE `sp_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sp_role`
--
DROP TABLE IF EXISTS `sp_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sp_role` (
`role_id` smallint(6) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`role_name` varchar(20) NOT NULL COMMENT '角色名称',
`role_ps_ids` varchar(128) NOT NULL DEFAULT '' COMMENT '把拥有的权限的id信息通过 ,逗号 连接为字符串,权限ids:1,2,5',
`role_ps_ca` text COMMENT '控制器-操作,控制器-操作,控制器-操作',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`delete_time` int(11) DEFAULT NULL COMMENT '记录删除时间,假(逻辑)删除',
PRIMARY KEY (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sp_role`
--
LOCK TABLES `sp_role` WRITE;
/*!40000 ALTER TABLE `sp_role` DISABLE KEYS */;
INSERT INTO `sp_role` VALUES (30,'主管','101,104,102,107,113','Goods-index,Order-index,Order-xiugai',1532313302,1532334306,NULL),(31,'经理5','101,104,105,106','Goods-index,Brand-index,Category-index',1532313302,1532333788,NULL);
/*!40000 ALTER TABLE `sp_role` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-07-30 11:14:53
| 60.22 | 2,063 | 0.716484 |
cb93f96016e0541c303d44f9a1ed087d466ac9c1 | 684 | go | Go | scratch/mathbig/main.go | vietnamz/prime-generator | 6442850d6e868bc98ae4407243468d72f49d9fc7 | [
"MIT"
] | null | null | null | scratch/mathbig/main.go | vietnamz/prime-generator | 6442850d6e868bc98ae4407243468d72f49d9fc7 | [
"MIT"
] | null | null | null | scratch/mathbig/main.go | vietnamz/prime-generator | 6442850d6e868bc98ae4407243468d72f49d9fc7 | [
"MIT"
] | null | null | null | package main
import (
"fmt"
"math/big"
)
var wheel = [] *big.Int{
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
big.NewInt(1),
}
wheel = {
}
func main() {
a := big.NewInt(0)
a.SetString("98357987892374589276895729067498690358609358093890683096803", 10)
fmt.Println(a.ProbablyPrime(256))
}
| 14.869565 | 79 | 0.647661 |
30fb985014c19023e0cc9b153aa145c00c920dcb | 6,676 | lua | Lua | lua/CompMod/Weapons/Marine/Flamethrower/shared.lua | xToken/CompMod | 34c65aca988be235c764712be271c72426a6e195 | [
"MIT"
] | 3 | 2016-01-15T10:12:15.000Z | 2019-05-07T18:21:50.000Z | lua/CompMod/Weapons/Marine/Flamethrower/shared.lua | xToken/CompMod | 34c65aca988be235c764712be271c72426a6e195 | [
"MIT"
] | 6 | 2015-12-22T06:50:01.000Z | 2018-12-20T23:34:28.000Z | lua/CompMod/Weapons/Marine/Flamethrower/shared.lua | xToken/CompMod | 34c65aca988be235c764712be271c72426a6e195 | [
"MIT"
] | 4 | 2016-03-12T15:32:13.000Z | 2017-05-19T20:32:19.000Z | -- Natural Selection 2 Competitive Mod
-- Source located at - https://github.com/xToken/CompMod
-- lua\CompMod\Weapons\Marine\Flamethrower\shared.lua
-- - Dragon
local networkVars =
{
flamethrower_upg1 = "boolean",
flamethrower_upg2 = "boolean",
}
local originalFlamethrowerOnInitialized
originalFlamethrowerOnInitialized = Class_ReplaceMethod("Flamethrower", "OnInitialized",
function(self)
originalFlamethrowerOnInitialized(self)
self.flamethrower_upg1 = false
self.flamethrower_upg2 = false
self.flameCloud = Entity.invalidId
if Server then
self:AddTimedCallback(Flamethrower.OnTechOrResearchUpdated, 0.1)
end
end
)
function Flamethrower:GetRange()
return self.flamethrower_upg1 and kFlamethrowerUpgradedRange or kFlamethrowerRange
end
function Flamethrower:GetUpgradeTier()
if self.flamethrower_upg2 then
return kTechId.None, 2
elseif self.flamethrower_upg1 then
return kTechId.FlamethrowerUpgrade1, 1
end
return kTechId.None, 0
end
function Flamethrower:OnTechOrResearchUpdated()
if GetHasTech(self, kTechId.FlamethrowerUpgrade1) then
self.flamethrower_upg1 = true
else
self.flamethrower_upg1 = false
end
end
function Flamethrower:GetMaxClips()
return 2
end
function Flamethrower:GetIsAffectedByWeaponUpgrades()
return true
end
function Flamethrower:BurnBileDOT(startPoint, endPoint)
local toTarget = endPoint - startPoint
local length = toTarget:GetLength()
toTarget:Normalize()
local stepLength = 2
for i = 1, 5 do
-- stop when target has reached, any spores would be behind
if length < i * stepLength then
break
end
local checkAtPoint = startPoint + toTarget * i * stepLength
-- moar dots
local dots = GetEntitiesWithinRange("DotMarker", checkAtPoint, 4)
for i = 1, #dots do
local dot = dots[i]
dot:TriggerEffects("burn_bomb", { effecthostcoords = Coords.GetTranslation(dot:GetOrigin()) } )
DestroyEntity(dot)
end
end
end
function Flamethrower:BurnParasites(startPoint, endPoint)
local toTarget = endPoint - startPoint
local length = toTarget:GetLength()
toTarget:Normalize()
local stepLength = 2
for i = 1, 5 do
if length < i * stepLength then
break
end
local checkAtPoint = startPoint + toTarget * i * stepLength
-- moar dots
local paras = GetEntitiesWithMixinWithinRange("ParasiteAble", checkAtPoint, 2)
for i = 1, #paras do
local para = paras[i]
if para:GetIsParasited() then
para:RemoveParasite()
end
end
end
end
function Flamethrower:ApplyConeDamage(player)
local eyePos = player:GetEyePos()
local ents = {}
local fireDirection = player:GetViewCoords().zAxis
local extents = Vector(self.kConeWidth, self.kConeWidth, self.kConeWidth)
local remainingRange = self:GetRange()
local startPoint = Vector(eyePos)
local filterEnts = {self, player}
for i = 1, 4 do
if remainingRange <= 0 then
break
end
local trace = TraceMeleeBox(self, startPoint, fireDirection, extents, remainingRange, PhysicsMask.Flame, EntityFilterList(filterEnts))
local endPoint = trace.endPoint
local normal = trace.normal
-- Check for spores in the way.
if Server then
self:BurnSporesAndUmbra(startPoint, endPoint)
self:BurnBileDOT(startPoint, endPoint)
self:BurnParasites(startPoint, endPoint)
end
if trace.fraction ~= 1 then
local traceEnt = trace.entity
if traceEnt and HasMixin(traceEnt, "Live") and traceEnt:GetCanTakeDamage() then
table.insertunique(ents, traceEnt)
table.insertunique(filterEnts, traceEnt)
end
end
remainingRange = remainingRange - (trace.endPoint - startPoint):GetLength() - self.kConeWidth
startPoint = trace.endPoint + fireDirection * self.kConeWidth + trace.normal * 0.05
end
local attackDamage = kFlamethrowerDamage
for i = 1, #ents do
local ent = ents[i]
local enemyOrigin = ent:GetModelOrigin()
if ent ~= player and enemyOrigin then
local toEnemy = GetNormalizedVector(enemyOrigin - eyePos)
local health = ent:GetHealth()
self:DoDamage( attackDamage, ent, enemyOrigin, toEnemy )
-- Only light on fire if we successfully damaged them
if ent:GetHealth() ~= health and HasMixin(ent, "Fire") and not ent:isa("Player") then
ent:SetOnFire(player, self)
end
if ent.GetEnergy and ent.SetEnergy then
ent:SetEnergy(ent:GetEnergy() - kFlameThrowerEnergyDamage)
end
end
end
--[[
if Server then
local trace = Shared.TraceRay(
player:GetEyePos(),
player:GetEyePos() + player:GetViewCoords().zAxis * FlameCloud.kMaxRange,
CollisionRep.Damage,
PhysicsMask.Bullets,
EntityFilterTwo(player, self)
)
local flameEnt = Shared.GetEntity(self.flameCloud)
if flameEnt then
flameEnt:AddIntermediateDestination(player:GetEyePos(), trace.endPoint)
else
flameEnt = CreateEntity( FlameCloud.kMapName, player:GetEyePos(), player:GetTeamNumber() )
flameEnt:SetInitialDestination( trace.endPoint )
flameEnt:SetOwner(player)
self.flameCloud = flameEnt:GetId()
end
end
--]]
end
--[[
function Flamethrower:OnPrimaryAttack(player)
if not self:GetIsReloading() then
ClipWeapon.OnPrimaryAttack(self, player)
if self:GetIsDeployed() and self:GetClip() > 0 and self:GetPrimaryAttacking() then
self.createParticleEffects = true
if Server and not self.loopingFireSound:GetIsPlaying() then
self.loopingFireSound:Start()
end
end
if self.createParticleEffects and self:GetClip() == 0 then
self.createParticleEffects = false
if Server then
self.loopingFireSound:Stop()
end
end
end
end
function Flamethrower:OnPrimaryAttackEnd(player)
ClipWeapon.OnPrimaryAttackEnd(self, player)
self.createParticleEffects = false
if Server then
self.loopingFireSound:Stop()
local flameEnt = Shared.GetEntity(self.flameCloud)
if flameEnt then
flameEnt:FinishedFiring()
end
self.flameCloud = Entity.invalidId
end
end
--]]
Shared.LinkClassToMap("Flamethrower", Flamethrower.kMapName, networkVars) | 25.875969 | 136 | 0.665968 |
ba612fc52bf302bd83b6cf64b0d5aa6266a3307d | 381 | swift | Swift | Concurrency Lab/Concurrency Lab/Supporting Files/AppError.swift | bienbenidoangeles/Pursuit-Core-iOS-Concurrency-Lab | de1e499a993f1b4d435b1eb9a7be11f5df780e70 | [
"MIT"
] | null | null | null | Concurrency Lab/Concurrency Lab/Supporting Files/AppError.swift | bienbenidoangeles/Pursuit-Core-iOS-Concurrency-Lab | de1e499a993f1b4d435b1eb9a7be11f5df780e70 | [
"MIT"
] | null | null | null | Concurrency Lab/Concurrency Lab/Supporting Files/AppError.swift | bienbenidoangeles/Pursuit-Core-iOS-Concurrency-Lab | de1e499a993f1b4d435b1eb9a7be11f5df780e70 | [
"MIT"
] | null | null | null | //
// AppError.swift
// Concurrency Lab
//
// Created by Bienbenido Angeles on 12/9/19.
// Copyright © 2019 Bienbenido Angeles. All rights reserved.
//
import Foundation
enum AppError:Error{
case badURL(String)
case noResponse
case networkClientError(Error)
case noData
case decodingError(Error)
case badStatusCode(Int)
case badMimeType(String)
}
| 19.05 | 61 | 0.708661 |
c6f534a9a33c8880920d540d4e4e54f6ed34d2e3 | 1,005 | swift | Swift | test01Tests/test01Tests.swift | topiltzin-butron/test01 | 376851d5a5585dfb5685432d21939fb4debbcb93 | [
"MIT"
] | null | null | null | test01Tests/test01Tests.swift | topiltzin-butron/test01 | 376851d5a5585dfb5685432d21939fb4debbcb93 | [
"MIT"
] | null | null | null | test01Tests/test01Tests.swift | topiltzin-butron/test01 | 376851d5a5585dfb5685432d21939fb4debbcb93 | [
"MIT"
] | 1 | 2018-06-27T12:10:13.000Z | 2018-06-27T12:10:13.000Z | //
// test01Tests.swift
// test01Tests
//
// Created by Luis Topiltzin Dominguez Butron on 12/17/16.
// Copyright © 2016 Luis Topiltzin Dominguez Butron. All rights reserved.
//
import XCTest
@testable import test01
class test01Tests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measure {
// Put the code you want to measure the time of here.
}
}
}
| 27.162162 | 111 | 0.640796 |
a0eae12481b04c198a3d3ea48dac8887985a56e3 | 163 | kt | Kotlin | typescript-kotlin/src/main/kotlin/typescript/ClassMemberModifier.kt | JervNorsk/types-kotlin | ea7261ca0fac6ef75a3d5139e4765a286e638a4e | [
"Apache-2.0"
] | 9 | 2021-08-16T07:42:18.000Z | 2021-09-24T08:04:03.000Z | typescript-kotlin/src/main/kotlin/typescript/ClassMemberModifier.kt | JervNorsk/types-kotlin | ea7261ca0fac6ef75a3d5139e4765a286e638a4e | [
"Apache-2.0"
] | null | null | null | typescript-kotlin/src/main/kotlin/typescript/ClassMemberModifier.kt | JervNorsk/types-kotlin | ea7261ca0fac6ef75a3d5139e4765a286e638a4e | [
"Apache-2.0"
] | 1 | 2021-09-20T18:16:57.000Z | 2021-09-20T18:16:57.000Z | // Automatically generated - do not modify!
package typescript
typealias ClassMemberModifier = Any /* AccessibilityModifier | ReadonlyKeyword | StaticKeyword */
| 27.166667 | 97 | 0.797546 |
3e8f11035560f378a250f5b9f35edf1165665aa4 | 2,393 | h | C | connectivity/switching_roles/src/user_routine_config.h | iizq/BLE_SDK6_examples | e21767d46f78f4e3514c5db813ded1a72cfc966a | [
"MIT"
] | 1 | 2022-03-23T03:10:50.000Z | 2022-03-23T03:10:50.000Z | connectivity/switching_roles/src/user_routine_config.h | iizq/BLE_SDK6_examples | e21767d46f78f4e3514c5db813ded1a72cfc966a | [
"MIT"
] | null | null | null | connectivity/switching_roles/src/user_routine_config.h | iizq/BLE_SDK6_examples | e21767d46f78f4e3514c5db813ded1a72cfc966a | [
"MIT"
] | null | null | null | /****************************************************************************************************************/
/*When this flag is defined the led is enabled. Every transition and received advertisementpacket triggers */
/*the LED to flicker depending on the settings set for that event. */
/****************************************************************************************************************/
#define CFG_ENABLE_LED
/****************************************************************************************************************/
/*Macro function for converting the amount of pulses to the required amount of callbacks needed for the pulses */
/****************************************************************************************************************/
#define CONVERT_TO_CB_AMOUNT(x) (x * 2)
/****************************************************************************************************************/
/*Settings for the time it take for one phase of the routine in milliseconds */
/****************************************************************************************************************/
#define ROUTINE_CYCLE_TIME_MS (uint32_t)(10000)
#define ROUTINE_CYCLE_TIME (uint32_t)(ROUTINE_CYCLE_TIME_MS / 10)
#define ROUTINE_PAUSE_TIME_MS (uint32_t)(5000)
#define ROUTINE_PAUSE_TIME (uint32_t)(ROUTINE_PAUSE_TIME_MS/10)
/****************************************************************************************************************/
/*Settings for the time it take for one phase of the routine in milliseconds */
/****************************************************************************************************************/
#if defined(CFG_ENABLE_LED)
#define TIMER_DIVIDER (uint32_t)(10)
#define LED_NONCONN_PULSES (uint8_t)(2)
#define LED_NONCONN_TIME_MS (uint32_t)(250)
#define LED_CONN_PULSES (uint8_t)(3)
#define LED_CONN_TIME_MS (uint32_t)(250)
#define LED_SCAN_PULSES (uint8_t)(5)
#define LED_SCAN_TIME_MS (uint32_t)(100)
#define LED_RECEIVED_TIME_MS (uint32_t)(75)
#define LED_NONCONN_TIMER_TIME (uint32_t)(LED_NONCONN_TIME_MS / TIMER_DIVIDER)
#define LED_RECEIVED_TIMER_TIME (uint32_t)(LED_SCAN_TIME_MS / TIMER_DIVIDER)
#define LED_CONN_TIMER_TIME (uint32_t)(LED_CONN_TIME_MS / TIMER_DIVIDER)
#define LED_SCAN_TIMER_TIME (uint32_t)(LED_SCAN_TIME_MS / TIMER_DIVIDER)
#endif
| 55.651163 | 114 | 0.4743 |
85c27ed706d0180faa8e7d18457bb336723e8af0 | 151 | js | JavaScript | index.js | prateekbh/preact-cli-workbox-plugin | b0aad203ba9da87051b6e12f06a275a273471063 | [
"MIT"
] | 10 | 2018-02-21T00:27:28.000Z | 2020-04-03T12:46:42.000Z | index.js | prateekbh/preact-cli-workbox-plugin | b0aad203ba9da87051b6e12f06a275a273471063 | [
"MIT"
] | 2 | 2019-01-09T16:40:42.000Z | 2019-04-14T10:46:19.000Z | index.js | prateekbh/preact-cli-workbox-plugin | b0aad203ba9da87051b6e12f06a275a273471063 | [
"MIT"
] | 1 | 2019-04-13T10:21:13.000Z | 2019-04-13T10:21:13.000Z | const generateSw = require('./generate-sw');
const injectManifest = require('./inject-manifest');
module.exports = {
generateSw,
injectManifest
}; | 21.571429 | 52 | 0.721854 |
c3551b4b3a1b3212f899471f17d187d64cec85f1 | 2,945 | go | Go | pkg/log/log.go | go-mach/gm-log | d5b48afa962c22c0c0be8e4c211c8f55a56e063f | [
"MIT"
] | null | null | null | pkg/log/log.go | go-mach/gm-log | d5b48afa962c22c0c0be8e4c211c8f55a56e063f | [
"MIT"
] | null | null | null | pkg/log/log.go | go-mach/gm-log | d5b48afa962c22c0c0be8e4c211c8f55a56e063f | [
"MIT"
] | null | null | null | package log
import (
"io"
"github.com/go-mach/gm/config"
"github.com/sirupsen/logrus"
)
// Logger represent the minimal set of func to set a logger for the Machinery
type Logger interface {
SetOutput(w io.Writer)
Print(i ...interface{})
Printf(format string, args ...interface{})
Println(args ...interface{})
Debug(i ...interface{})
Debugf(format string, args ...interface{})
Debugln(args ...interface{})
Info(i ...interface{})
Infof(format string, args ...interface{})
Infoln(args ...interface{})
Warn(i ...interface{})
Warnf(format string, args ...interface{})
Warnln(args ...interface{})
Error(i ...interface{})
Errorf(format string, args ...interface{})
Errorln(args ...interface{})
Fatal(i ...interface{})
Fatalf(format string, args ...interface{})
Fatalln(args ...interface{})
Panic(i ...interface{})
Panicf(format string, args ...interface{})
}
var logger *logrus.Logger
// NewLogger returns the logger instance. Initialize the instance only once.
func NewLogger(config config.Configuration) Logger {
if logger == nil {
logger = logrus.New()
/*
if config.IsSet("log") {
// file log with rotation
rfh, err := rotatefilehook.NewRotateFileHook(rotatefilehook.RotateFileConfig{
Filename: path.Join(logConfig.Log.Path, logConfig.Log.Filename),
MaxSize: logConfig.Log.MaxSize,
MaxBackups: logConfig.Log.MaxBackups,
MaxAge: logConfig.Log.MaxAge,
Level: parseLevel(),
Formatter: logFormatter(),
})
if err != nil {
panic(err)
}
logger.AddHook(rfh)
// console log
if logConfig.Log.Console.Enabled {
logger.SetLevel(parseLevel())
logger.SetOutput(colorable.NewColorableStdout())
logger.SetFormatter(consoleFormatter())
}
} else {
// default logger
Formatter := new(logrus.TextFormatter)
Formatter.TimestampFormat = "02-01-2006 15:04:05"
Formatter.FullTimestamp = true
logrus.SetFormatter(Formatter)
}
*/
}
logger.Debug("Config and Logger initialized")
return logger
}
/*
func parseLevel() logrus.Level {
var logLevel logrus.Level
logLevel, err := logrus.ParseLevel(logConfig.Log.Level)
if err != nil {
panic(err)
}
return logLevel
}
func logFormatter() logrus.Formatter {
if logConfig.Log.JSON {
return &logrus.JSONFormatter{
TimestampFormat: logConfig.Log.TimestampFormat,
}
}
return &prefixed.TextFormatter{
DisableColors: true,
ForceColors: false,
TimestampFormat: logConfig.Log.TimestampFormat,
FullTimestamp: logConfig.Log.FullTimestamp,
ForceFormatting: logConfig.Log.ForceFormatting,
}
}
func consoleFormatter() logrus.Formatter {
return &prefixed.TextFormatter{
DisableColors: logConfig.Log.Console.DisableColors,
ForceColors: logConfig.Log.Console.Colors,
TimestampFormat: logConfig.Log.TimestampFormat,
FullTimestamp: logConfig.Log.FullTimestamp,
ForceFormatting: logConfig.Log.ForceFormatting,
}
}
*/
| 24.747899 | 81 | 0.701188 |
2f46bad5d9ce37352f9d1edda7c8708065295131 | 4,279 | rs | Rust | src/base/array/mod.rs | hrkz/cycle | 242d99aecb6cc0f1c772ef8a2070edd22d3201ea | [
"MIT"
] | 8 | 2020-08-07T23:11:44.000Z | 2021-10-15T06:00:15.000Z | src/base/array/mod.rs | hrkz/cycle | 242d99aecb6cc0f1c772ef8a2070edd22d3201ea | [
"MIT"
] | 1 | 2020-08-29T21:32:23.000Z | 2020-08-30T14:09:18.000Z | src/base/array/mod.rs | hrkz/cycle | 242d99aecb6cc0f1c772ef8a2070edd22d3201ea | [
"MIT"
] | 1 | 2022-03-09T13:16:08.000Z | 2022-03-09T13:16:08.000Z | mod data;
mod dims;
mod iters;
use std::fmt;
use std::iter;
use std::sync::Arc;
pub use data::*;
pub use dims::*;
pub type Array<T> = ArrayBase<Vec<T>, Dense>;
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct ArrayBase<S, D> {
data: Arc<S>,
dims: D,
}
impl<S, D> ArrayBase<S, D>
where
S: Data,
D: Dims,
{
pub fn size(&self) -> usize { self.dims.size() }
pub fn order(&self) -> usize { self.dims.order() }
pub fn shape(&self) -> &[usize] { self.dims.shape() }
pub fn is_vector(&self) -> bool { self.order() == 1 }
pub fn is_matrix(&self) -> bool { self.order() == 2 }
pub fn is_tensor(&self) -> bool { self.order() >= 3 }
pub fn is_balanced(&self) -> bool {
self
.shape()
//.
.iter()
.skip(1)
.zip(iter::repeat(self.shape().first().unwrap_or(&0)))
.all(|(d, f)| d == f)
}
pub fn get(&self, idx: &[usize]) -> &S::Elem { self.data.get(self.dims.from_index(idx)) }
pub fn get_mut(&mut self, idx: &[usize]) -> &mut S::Elem { Arc::make_mut(&mut self.data).get_mut(self.dims.from_index(idx)) }
pub fn slice(&self, idx: &[Slice]) -> ArrayBase<S, D> {
let data = self.data.clone();
let dims = self.dims.from_slice(idx);
ArrayBase {
//.
data,
dims,
}
}
}
fn format_array_inner(
//.
fmt: &mut fmt::Formatter<'_>,
len: usize,
lim: usize,
sep: &str,
ell: &str,
fmt_idx: &mut dyn FnMut(&mut fmt::Formatter<'_>, usize) -> fmt::Result,
) -> fmt::Result {
if len <= lim {
fmt_idx(fmt, 0).and(
(1..len) //.
.try_for_each(|i| fmt.write_str(sep).and(fmt_idx(fmt, i))),
)
} else {
let edge = lim / 2;
let rest = len - edge;
fmt_idx(fmt, 0)
.and(
(1..edge) //.
.try_for_each(|i| fmt.write_str(sep).and(fmt_idx(fmt, i))),
)
.and(fmt.write_str(sep))
.and(fmt.write_str(ell))
.and(
(rest..len) //.
.try_for_each(|i| fmt.write_str(sep).and(fmt_idx(fmt, i))),
)
}
}
fn format_array<T, S, D>(
//.
arr: &ArrayBase<S, D>,
fmt: &mut fmt::Formatter<'_>,
sep: &str,
ell: &str,
cnt: usize,
depth: usize,
fmt_elem: &mut dyn FnMut(&mut fmt::Formatter<'_>, &T) -> fmt::Result,
) -> fmt::Result
where
T: fmt::Display,
S: Data<Elem = T>,
D: Dims,
{
match arr.shape() {
// 0-d
[] => fmt_elem(fmt, arr.get(&[]))?,
// 1-d
[len] => {
fmt.write_str("[")?;
format_array_inner(fmt, *len, cnt, sep, ell, &mut |fmt, idx| fmt_elem(fmt, arr.get(&[idx])))?;
fmt.write_str("]")?;
}
// N-d
shape => {
let dim_sep = format!(",\n{}{}", "\n".repeat(shape.len() - 2), " ".repeat(depth + 1));
fmt.write_str("[")?;
format_array_inner(fmt, arr.shape()[0], cnt, &dim_sep, ell, &mut |fmt, idx| {
format_array(
&arr.slice(&[Slice::one(idx)]),
fmt,
sep,
ell,
cnt,
depth + 1,
fmt_elem,
//.
)
})?;
fmt.write_str("]")?;
}
}
Ok(())
}
impl<T, S, D> fmt::Display for ArrayBase<S, D>
where
T: fmt::Display,
S: Data<Elem = T>,
D: Dims,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { format_array(self, f, ", ", "...", 5, 0, &mut |f, elem| write!(f, "{:.p$}", elem, p = f.precision().unwrap_or(3))) }
}
impl<T: Clone> Array<T> {
pub fn from_elem(shape: &[usize], elem: T) -> Array<T> { Array::from_vec(shape, vec![elem; shape.iter().product()]) }
pub fn from_vec(shape: &[usize], values: Vec<T>) -> Array<T> {
let data = Arc::new(values);
let dims = Dense::new(shape);
Array {
//.
data,
dims,
}
}
pub fn unpack(&self) -> (&[T], &[usize], &[usize]) {
let (dim, (loc, ext)) = (self.dims.shape(), self.dims.local());
// Unwrap dense array
// Array at extended position
// slice
// shape
// stride
(
&self.data[ext..], //.
dim,
loc,
)
}
pub fn unpack_mut(&mut self) -> (&mut [T], &[usize], &[usize]) {
let (dim, (loc, ext)) = (self.dims.shape(), self.dims.local());
// Unwrap mutable dense array
// Array at extended position
// mut slice
// shape
// stride
(
&mut Arc::make_mut(&mut self.data)[ext..], //.
dim,
loc,
)
}
}
| 22.760638 | 177 | 0.516476 |
654539319f4d10a8899c207b7e590fdb33eef877 | 2,344 | py | Python | db_pool/mysql/base.py | GiftLee/devops | 1d63ee32c3e9519131bf5f6f2cda19675a1ca833 | [
"MIT"
] | 300 | 2019-07-30T03:01:29.000Z | 2022-03-14T05:51:41.000Z | db_pool/mysql/base.py | nice555/devops | fe09e6a3165d92dcd2dc67a0df3c2e47c6accc41 | [
"MIT"
] | 27 | 2019-11-04T08:41:52.000Z | 2021-09-27T07:51:41.000Z | db_pool/mysql/base.py | nice555/devops | fe09e6a3165d92dcd2dc67a0df3c2e47c6accc41 | [
"MIT"
] | 124 | 2019-08-21T03:32:15.000Z | 2022-03-14T05:51:43.000Z | # -*- coding: utf-8 -*-
"""
查看 django.db.backends.mysql.base.by 源码发现 django 连接 mysql 时没有使用连接池,
导致每次数据库操作都要新建新的连接并查询完后关闭,更坑的是按照 django 的官方文档设置
CONN_MAX_AGE 参数是为了复用连接,然后设置了 CONN_MAX_AGE 后,每个新连接查询完后并不
会 close 掉,而是一直在那占着。如果在高并发模式下,很容易出现 too many connections
错误。故重写 mysql 连接库,实现连接池功能。
"""
from django.core.exceptions import ImproperlyConfigured
import queue
import threading
try:
import MySQLdb as Database
except ImportError as err:
raise ImproperlyConfigured(
'Error loading MySQLdb module.\n'
'Did you install mysqlclient?'
) from err
from django.db.backends.mysql.base import *
from django.db.backends.mysql.base import DatabaseWrapper as _DatabaseWrapper
DEFAULT_DB_POOL_SIZE = 5
class DatabaseWrapper(_DatabaseWrapper):
"""
使用此库时绝对不能设置 CONN_MAX_AGE 连接参数,否则会造成使用连接后不会快速释放到连接池,从而造成连接池阻塞
"""
connect_pools = {}
pool_size = None
mutex = threading.Lock()
def get_new_connection(self, conn_params):
with self.mutex:
# 获取 DATABASES 配置字典中的 DB_POOL_SIZE 参数
if not self.pool_size:
self.pool_size = self.settings_dict.get('DB_POOL_SIZE') or DEFAULT_DB_POOL_SIZE
if self.alias not in self.connect_pools:
self.connect_pools[self.alias] = ConnectPool(conn_params, self.pool_size)
return self.connect_pools[self.alias].get_connection()
def _close(self):
with self.mutex:
# 覆盖掉原来的 close 方法,查询结束后连接释放回连接池
if self.connection is not None:
with self.wrap_database_errors:
return self.connect_pools[self.alias].release_connection(self.connection)
class ConnectPool(object):
def __init__(self, conn_params, pool_size):
self.conn_params = conn_params
self.pool_size = pool_size
self.connect_count = 0
self.connects = queue.Queue()
def get_connection(self):
if self.connect_count < self.pool_size:
self.connect_count = self.connect_count + 1
return Database.connect(**self.conn_params)
conn = self.connects.get()
try:
# 检测连接是否有效,去掉性能更好,但建议保留
conn.ping()
except Exception:
conn = Database.connect(**self.conn_params)
return conn
def release_connection(self, conn):
self.connects.put(conn)
| 32.109589 | 95 | 0.677901 |
fbc0e2afc5d3968f8955875f70fc57a4b6d13d9f | 6,302 | c | C | src/libbu/units_humanize.c | lf-/brlcad | f91ea585c1a930a2e97c3f5a8274db8805ebbb46 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 1 | 2019-10-23T16:17:49.000Z | 2019-10-23T16:17:49.000Z | src/libbu/units_humanize.c | pombredanne/sf.net-brlcad | fb56f37c201b51241e8f3aa7b979436856f43b8c | [
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null | src/libbu/units_humanize.c | pombredanne/sf.net-brlcad | fb56f37c201b51241e8f3aa7b979436856f43b8c | [
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null | /* bu_humanize_number is derived from FreeBSD's libutil implementation of
* humanize_number.c, v 1.14 2008/04/28
*
* Copyright (c) 1997, 1998, 1999, 2002 The NetBSD Foundation, Inc.
* Copyright 2013 John-Mark Gurney <jmg@FreeBSD.org>
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
* NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. */
#include "common.h"
#ifdef HAVE_INTTYPES_H
# if defined(__cplusplus)
# define __STDC_FORMAT_MACROS
# endif
# include <inttypes.h>
#else
# include "pinttypes.h"
#endif
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <string.h>
#include <float.h>
#include <limits.h>
#include "vmath.h"
#include "bu/log.h"
#include "bu/malloc.h"
#include "bu/str.h"
#include "bu/units.h"
#include "bu/vls.h"
#define hn_maxscale 7
int
bu_humanize_number(char *buf, size_t len, int64_t quotient, const char *suffix, size_t scale, int flags)
{
struct bu_vls tmpbuf = BU_VLS_INIT_ZERO;
const char *prefixes, *sep;
size_t i;
size_t r;
int leftover, s1, s2, sign;
int divisordeccut;
int64_t divisor, max;
size_t baselen;
/* Since so many callers don't check -1, NUL terminate the buffer */
if (len > 0)
buf[0] = '\0';
/* validate args */
if (buf == NULL || suffix == NULL)
return (-1);
else if (scale >= hn_maxscale &&
((scale & ~(BU_HN_AUTOSCALE|BU_HN_GETSCALE)) != 0))
return (-1);
if ((flags & BU_HN_DIVISOR_1000) && (flags & BU_HN_IEC_PREFIXES))
return (-1);
/* setup parameters */
leftover = 0;
if (flags & BU_HN_IEC_PREFIXES) {
baselen = 2;
/*
* Use the prefixes for power of two recommended by
* the International Electrotechnical Commission
* (IEC) in IEC 80000-3 (i.e. Ki, Mi, Gi...).
*
* BU_HN_IEC_PREFIXES implies a divisor of 1024 here
* (use of BU_HN_DIVISOR_1000 would have triggered
* an assertion earlier).
*/
divisor = 1024;
divisordeccut = 973; /* ceil(.95 * 1024) */
if (flags & BU_HN_B)
prefixes = "B\0\0Ki\0Mi\0Gi\0Ti\0Pi\0Ei";
else
prefixes = "\0\0\0Ki\0Mi\0Gi\0Ti\0Pi\0Ei";
} else {
baselen = 1;
if (flags & BU_HN_DIVISOR_1000) {
divisor = 1000;
divisordeccut = 950;
if (flags & BU_HN_B)
prefixes = "B\0\0k\0\0M\0\0G\0\0T\0\0P\0\0E";
else
prefixes = "\0\0\0k\0\0M\0\0G\0\0T\0\0P\0\0E";
} else {
divisor = 1024;
divisordeccut = 973; /* ceil(.95 * 1024) */
if (flags & BU_HN_B)
prefixes = "B\0\0K\0\0M\0\0G\0\0T\0\0P\0\0E";
else
prefixes = "\0\0\0K\0\0M\0\0G\0\0T\0\0P\0\0E";
}
}
#define SCALE2PREFIX(scale) (&prefixes[(scale) * 3])
if (quotient < 0) {
sign = -1;
quotient = -quotient;
baselen += 2; /* sign, digit */
} else {
sign = 1;
baselen += 1; /* digit */
}
if (flags & BU_HN_NOSPACE)
sep = "";
else {
sep = " ";
baselen++;
}
baselen += strlen(suffix);
/* Check if enough room for `x y' + suffix + `\0' */
if (len < baselen + 1)
return (-1);
if (scale & (BU_HN_AUTOSCALE | BU_HN_GETSCALE)) {
/* See if there is additional columns can be used. */
for (max = 1, i = len - baselen; i-- > 0;)
max *= 10;
/*
* Divide the number until it fits the given column.
* If there will be an overflow by the rounding below,
* divide once more.
*/
for (i = 0;
(quotient >= max || (quotient == max - 1 &&
leftover >= divisordeccut)) && i < hn_maxscale; i++) {
leftover = quotient % divisor;
quotient /= divisor;
}
if (scale & BU_HN_GETSCALE)
return (int)i;
} else {
for (i = 0; i < scale && i < hn_maxscale; i++) {
leftover = quotient % divisor;
quotient /= divisor;
}
}
/* If a value <= 9.9 after rounding and ... */
/*
* XXX - should we make sure there is enough space for the decimal
* place and if not, don't do BU_HN_DECIMAL?
*/
if (((quotient == 9 && leftover < divisordeccut) || quotient < 9) && i > 0 && flags & BU_HN_DECIMAL) {
size_t rcpy = 0;
s1 = (int)quotient + ((leftover * 10 + divisor / 2) / divisor / 10);
s2 = ((leftover * 10 + divisor / 2) / divisor) % 10;
bu_vls_sprintf(&tmpbuf, "%d%s%d%s%s%s", sign * s1, ".", s2, sep, SCALE2PREFIX(i), suffix);
bu_vls_trimspace(&tmpbuf);
r = bu_vls_strlen(&tmpbuf);
rcpy = FMIN(r + 1, len);
bu_strlcpy(buf, bu_vls_addr(&tmpbuf), rcpy);
bu_vls_free(&tmpbuf);
buf[len-1] = '\0';
} else {
size_t rcpy = 0;
bu_vls_sprintf(&tmpbuf, "%" PRId64 "%s%s%s", sign * (quotient + (leftover + divisor / 2) / divisor), sep, SCALE2PREFIX(i), suffix);
bu_vls_trimspace(&tmpbuf);
r = bu_vls_strlen(&tmpbuf);
rcpy = FMIN(r + 1, len);
bu_strlcpy(buf, bu_vls_addr(&tmpbuf), rcpy);
bu_vls_free(&tmpbuf);
buf[len-1] = '\0';
}
return (int)r;
}
/*
* Local Variables:
* mode: C
* tab-width: 8
* indent-tabs-mode: t
* c-file-style: "stroustrup"
* End:
* ex: shiftwidth=4 tabstop=8
*/
| 29.867299 | 132 | 0.649 |
dfac47e6717ccbe4bd251898762a81aefa76d65a | 2,122 | tsx | TypeScript | governance-ui/pages/dao/[symbol]/proposal/components/instructions/Execute.tsx | gregm711/glass-eating | 2cdd7139b1a965dda928c67d354664c9e2dc72a1 | [
"Apache-2.0"
] | null | null | null | governance-ui/pages/dao/[symbol]/proposal/components/instructions/Execute.tsx | gregm711/glass-eating | 2cdd7139b1a965dda928c67d354664c9e2dc72a1 | [
"Apache-2.0"
] | 1 | 2022-02-18T19:15:29.000Z | 2022-02-18T19:15:29.000Z | governance-ui/pages/dao/[symbol]/proposal/components/instructions/Execute.tsx | gregm711/glass-eating | 2cdd7139b1a965dda928c67d354664c9e2dc72a1 | [
"Apache-2.0"
] | null | null | null | import React from 'react'
import { RpcContext } from '@solana/spl-governance'
import useWalletStore from 'stores/useWalletStore'
import useRealm from 'hooks/useRealm'
import Button, { SecondaryButton } from '@components/Button'
import { notify } from 'utils/notifications'
import Modal from '@components/Modal'
import { executeTransaction } from 'actions/executeTransaction'
import { ProposalTransaction } from '@solana/spl-governance'
import { ProgramAccount } from '@solana/spl-governance'
import { getProgramVersionForRealm } from '@models/registry/api'
type ExecuteInstructionProps = {
onClose: () => void
isOpen: boolean
instruction: ProgramAccount<ProposalTransaction> | any
}
const ExecuteInstruction = ({
onClose,
isOpen,
instruction,
}: ExecuteInstructionProps) => {
const wallet = useWalletStore((s) => s.current)
const connection = useWalletStore((s) => s.connection)
const { proposal } = useWalletStore((s) => s.selectedProposal)
const { realmInfo } = useRealm()
const handleExecuteInstruction = async () => {
try {
if (proposal && realmInfo) {
const rpcContext = new RpcContext(
proposal.owner,
getProgramVersionForRealm(realmInfo),
wallet!,
connection.current,
connection.endpoint
)
await executeTransaction(rpcContext, proposal, instruction)
onClose()
}
} catch (error) {
notify({
type: 'error',
message: `Error: Could not execute instruction.`,
})
console.log('error executing instruction', error)
onClose()
}
}
return (
<Modal onClose={onClose} isOpen={isOpen}>
<h2>Execute instruction</h2>
<p className="text-left mt-5 mb-8">Do you want to execute instruction?</p>
<div className="flex items-center justify-center">
<SecondaryButton className="w-44 mr-4" onClick={onClose}>
No
</SecondaryButton>
<Button className="mx-2 w-44" onClick={handleExecuteInstruction}>
Execute
</Button>
</div>
</Modal>
)
}
export default ExecuteInstruction
| 27.921053 | 80 | 0.664467 |
38c7a50adbccaf1a668a7a5b916ed6104994dafb | 941 | h | C | ProgramFramework/DeviceControlDemo/abstractthread.h | mahuifa/QMDemo | 430844c0167c7374550c6133b38c5e8485f506d6 | [
"Apache-2.0"
] | null | null | null | ProgramFramework/DeviceControlDemo/abstractthread.h | mahuifa/QMDemo | 430844c0167c7374550c6133b38c5e8485f506d6 | [
"Apache-2.0"
] | null | null | null | ProgramFramework/DeviceControlDemo/abstractthread.h | mahuifa/QMDemo | 430844c0167c7374550c6133b38c5e8485f506d6 | [
"Apache-2.0"
] | null | null | null | /******************************************************************************
* @文件名 abstractthread.h
* @功能 处理数据的线程接口类
*
* @开发者 mhf
* @邮箱 1603291350@qq.com
* @时间 2022/05/10
* @备注
*****************************************************************************/
#ifndef ABSTRACTTHREAD_H
#define ABSTRACTTHREAD_H
#include <QObject>
class QThread;
class AbstractThread : public QObject
{
Q_OBJECT
public:
explicit AbstractThread(QObject *parent = nullptr);
virtual ~AbstractThread();
protected:
virtual void handleData(QByteArray arr) = 0; // 处理传入的数据,通过子类重写用于处理不同的数据
signals:
/**
* @brief 通过信号将数据传入线程,否则线程无效(由于是跨线程,所以自带信号队列)
* @param arr
*/
void inputData(QByteArray arr);
/**
* @brief 将在线程中处理完成的数据通过信号传出
* @param arr
*/
void outputData(QByteArray arr);
protected:
QThread* m_thread = nullptr;
};
#endif // ABSTRACTTHREAD_H
| 21.883721 | 80 | 0.528162 |
b598d5420f9aced46579203c6878b3b746a1dd9a | 1,586 | rs | Rust | src/keyboard.rs | Klauswk/rust-chip | 5dfa6ac0778be619f34dac70fb6213f05f44fe4c | [
"MIT"
] | null | null | null | src/keyboard.rs | Klauswk/rust-chip | 5dfa6ac0778be619f34dac70fb6213f05f44fe4c | [
"MIT"
] | null | null | null | src/keyboard.rs | Klauswk/rust-chip | 5dfa6ac0778be619f34dac70fb6213f05f44fe4c | [
"MIT"
] | null | null | null | use sdl2::keyboard::Keycode;
pub struct Keyboard {
pub keys_pressed: Vec<u8>,
pub last_key_pressed: u8,
}
impl Keyboard {
pub fn new() -> Keyboard {
return Keyboard {
keys_pressed: Vec::new(),
last_key_pressed: 0,
};
}
pub fn is_key_pressed(&mut self, keycode: u8) -> u8 {
let is_pressed = self.keys_pressed.iter().find(|&key| key == &keycode);
return *is_pressed.unwrap_or(&0);
}
pub fn on_key_down(&mut self, keycode: Keycode) {
let key = self.get_pressed(keycode);
self.keys_pressed.push(key);
self.last_key_pressed = key;
}
pub fn on_key_up(&mut self, keycode: Keycode) {
let key = self.get_pressed(keycode);
if let Some(pos) = self.keys_pressed.iter().position(|x| *x == key) {
self.keys_pressed.remove(pos);
}
self.last_key_pressed = 0;
}
pub fn get_pressed(&self, keycode: Keycode) -> u8 {
match keycode {
Keycode::Num1 => 0x1,
Keycode::Num2 => 0x2,
Keycode::Num3 => 0x3,
Keycode::Num4 => 0xc,
Keycode::Q => 0x4,
Keycode::W => 0x5,
Keycode::E => 0x6,
Keycode::R => 0xD,
Keycode::A => 0x7,
Keycode::S => 0x8,
Keycode::D => 0x9,
Keycode::F => 0xE,
Keycode::Z => 0xA,
Keycode::X => 0x0,
Keycode::C => 0xB,
Keycode::V => 0xF,
Keycode::Escape => 0xFF,
_ => 0x10,
}
}
} | 26.881356 | 79 | 0.5 |
eaa8a8c7fce7cb073d217d6ab107783452e1df68 | 2,063 | kt | Kotlin | scientist4k-http-core/src/main/kotlin/com/github/squirrelgrip/scientist4k/http/core/comparator/HeadersComparator.kt | SquirrelGrip/Scientist4J | 5c88eb2bf0275c1c8ad139a78c9a1222f499ce4e | [
"MIT"
] | 1 | 2020-05-04T06:27:08.000Z | 2020-05-04T06:27:08.000Z | scientist4k-http-core/src/main/kotlin/com/github/squirrelgrip/scientist4k/http/core/comparator/HeadersComparator.kt | SquirrelGrip/Scientist4K | 5c88eb2bf0275c1c8ad139a78c9a1222f499ce4e | [
"MIT"
] | null | null | null | scientist4k-http-core/src/main/kotlin/com/github/squirrelgrip/scientist4k/http/core/comparator/HeadersComparator.kt | SquirrelGrip/Scientist4K | 5c88eb2bf0275c1c8ad139a78c9a1222f499ce4e | [
"MIT"
] | null | null | null | package com.github.squirrelgrip.scientist4k.http.core.comparator
import com.github.squirrelgrip.scientist4k.core.comparator.ExperimentComparator
import com.github.squirrelgrip.scientist4k.core.model.ComparisonResult
import com.github.squirrelgrip.scientist4k.core.model.ComparisonResult.Companion.SUCCESS
import com.github.squirrelgrip.scientist4k.core.model.toComparisonResult
import com.github.squirrelgrip.scientist4k.http.core.model.HttpExperimentResponse
import com.google.common.collect.MapDifference
import com.google.common.collect.Maps
import org.slf4j.Logger
import org.slf4j.LoggerFactory
open class HeadersComparator(
vararg val ignoredHeaders: String
) : ExperimentComparator<HttpExperimentResponse> {
companion object {
private val LOGGER: Logger = LoggerFactory.getLogger(HeadersComparator::class.java)
}
override fun invoke(control: HttpExperimentResponse, candidate: HttpExperimentResponse): ComparisonResult {
LOGGER.trace("Comparing Headers...")
val controlMap = map(control.headers)
val candidateMap = map(candidate.headers)
val diff: MapDifference<String, String> = Maps.difference(controlMap, candidateMap)
if (diff.areEqual()) {
return SUCCESS
}
val entriesDiffering = diff.entriesDiffering().map { (headerName, headerValue) ->
"Header[$headerName] value is different: ${headerValue.leftValue()} != ${headerValue.rightValue()}."
}.toComparisonResult()
val entriesOnlyInControl = diff.entriesOnlyOnLeft().keys.map {
"Header[$it] is only in Control."
}.toComparisonResult()
val entriesOnlyInCandidate = diff.entriesOnlyOnRight().keys.map {
"Header[$it] is only in Candidate."
}.toComparisonResult()
return ComparisonResult(entriesDiffering, entriesOnlyInControl, entriesOnlyInCandidate)
}
private fun map(control: Map<String, String>): Map<String, String> {
return control.filter {
!ignoredHeaders.contains(it.key)
}
}
}
| 43.893617 | 112 | 0.731459 |
188caf0d631d7c570e5c0582aa482e1be7498fd1 | 887 | css | CSS | src/frontend/components/home/styles/goalItem.css | bueno12223/batata-bit | a5013b082ee2deef5bcfb94550e83f3b8f283286 | [
"ISC"
] | null | null | null | src/frontend/components/home/styles/goalItem.css | bueno12223/batata-bit | a5013b082ee2deef5bcfb94550e83f3b8f283286 | [
"ISC"
] | 1 | 2021-05-21T16:33:27.000Z | 2021-05-21T16:33:29.000Z | src/frontend/components/home/styles/goalItem.css | bueno12223/batatabit | a5013b082ee2deef5bcfb94550e83f3b8f283286 | [
"ISC"
] | null | null | null | .goal_ammount{
padding-left: 10px;
padding-top: 14px;
}
.goal_date{
padding-left: 10px;
color: #AEAEAE;
}
.goal_icon{
margin-left: 10px;
margin-top: 10%;
font-size: 4em;
color: var(--home-blue);
}
.goal_title{
margin-left: 10px;
font-size: 1.2em;
}
.goal_container{
min-width: 31.7%;
margin-left: 5px;
height: 150px;
cursor: pointer;
}
.goalitem_noGoal{
height: 100px;
margin: auto;
}
/* media querys */
@media(min-width: 360px){
.goal_title{
font-size: 1.5em;
}
}
@media(min-width: 775px){
}
/* scroll */
.goalItem::-webkit-scrollbar{
width: 10px;
background-color: transparent;
border-radius: 10px;
}
.goalItem::-webkit-scrollbar-track{
background-color: #F5F5F5;
border-radius: 10px;
}
.goalItem::-webkit-scrollbar-thumb{
background-color:var(--grey);
border-radius: 10px;
} | 17.392157 | 36 | 0.621195 |
fede2f85a875e2abf28cfeedcaa48ff2d567400a | 4,718 | html | HTML | demo/index.html | headertag/Bebop | 46baab6354901b27315fde9b993336307a64aec6 | [
"MIT"
] | 2 | 2016-12-22T09:29:50.000Z | 2017-04-24T08:26:45.000Z | demo/index.html | headertag/Bebop | 46baab6354901b27315fde9b993336307a64aec6 | [
"MIT"
] | null | null | null | demo/index.html | headertag/Bebop | 46baab6354901b27315fde9b993336307a64aec6 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<title>Squib test desktop page</title>
<script async src="./../../final/mensfitness.js" type="text/javascript"></script>
<script type="text/javascript">
window.top.headertag = window.top.headertag || {};
window.headertagconfig = {
siteId: 174133,
timeout: 5000,
partners: {
'INDX': {
targetingType: 'slot',
timeout: 5000
},
}
};
window.googletag = window.googletag || { cmd: [] };
window.googletag.cmd.push(function setupGoogletag() {
window.googletag.pubads().collapseEmptyDivs();
window.googletag.pubads().enableSingleRequest();
window.googletag.enableServices();
});
window.googletag.cmd.push(function() {
if (typeof window.headertag === 'undefined' || window.headertag.apiReady !== true) {
window.headertag = window.googletag;
}
});
</script>
<script async src="./../final/squib.js" type="text/javascript"></script>
<script async src="http://www.googletagservices.com/tag/js/gpt.js"></script>
<script type="text/javascript">
(function(window) {
window.squibConfig = {
headertag: {
enabled: true,
reference: function () {
return window.headertag;
}
},
viewPortSizes: {
getViewPortSize() {
return 1024;
},
'huge' : 1024,
'large' : 800,
'medium' : 600,
'small' : 420,
'mini' : 200
}
};
window.squibQueue = window.squibQueue || [];
window.squibQueue.push(function (squib) {
var slots = squib.defineSlots([
{
'gptDivId': 'gpt-div-leaderboard',
'adUnitPath': '/62650033/desktop-uk',
'viewPortSizes': {
'huge' : [ [970, 250] ],
'large' : [ [728, 90] ],
'medium' : [ [320, 90] ],
'small' : [ [300, 50] ],
'mini' : [ [200, 50] ]
},
'lazyLoad': false,
'sticky': false,
'targeting': {
'type': 'leaderboard',
'region': 'Subnav',
'pos': 'top'
}
},
{
'gptDivId': 'gpt-div-1',
'adUnitPath': '/62650033/desktop-uk',
'viewPortSizes': {
'huge' : [ [300, 600] ]
},
'targeting': {
'inView': true,
'inContent': false,
'region': 'Upper 300',
'pos': 'right1'
}
},
{
'gptDivId': 'gpt-div-2',
'adUnitPath': '/62650033/desktop-uk',
'viewPortSizes': {
'huge' : [ [300, 250] ]
},
'targeting': {
'inView': true,
'inContent': false,
'region': 'Middle 300',
'pos': 'right2'
}
},
{
'gptDivId': 'gpt-div-3',
'adUnitPath': '/62650033/desktop-uk',
'viewPortSizes': {
'huge' : [ [300, 600] ]
},
'targeting': {
'inView': true,
'inContent': false,
'region': 'Lower 300',
'pos': 'right3'
}
}
]);
slots.forEach((slot) => squib.display(slot.getGPTDivId()));
});
}(window));
</script>
<style>
#siteHeader, #siteFooter{ display: flex; justify-content: center; padding: 10px; }
#siteContainer{ display: flex; justify-content: space-between; }
#rightColumn{ flex-basis: 320px; max-width: 320px; padding: 10px; box-sizing: border-box; }
#rightColumn > div{ padding-bottom: 10px; }
</style>
</head>
<body class="slideshow">
<nav>
<button id="gptTestRefresh" onclick="refreshAdFrame();" href="#">Refresh the ads</button>
<button id="gptCreateLazySlot" style="display: none">Create a lazy load slot</button>
</nav>
<header id="siteHeader">
<div id="gpt-div-leaderboard" data-tier="1"></div>
</header>
<div id="siteContainer">
<section id="siteContent">
Main site content goes here.
</section>
<aside id="rightColumn">
<div id="gpt-div-1"></div>
<div id="gpt-div-2"></div>
<div id="gpt-div-3"></div>
<div id="gpt-div-4"></div>
</aside>
</div>
<footer id="siteFooter">
<div id="div-gpt-footer-leaderboard"></div>
</footer>
<script>
(function () {
window.squibQueue = window.squibQueue || [];
window.squibQueue.push(function (squib){
var lazyButton = document.getElementById('gptCreateLazySlot');
lazyButton.style.display = 'block';
lazyButton.onclick = function () {
};
});
}());
</script>
</body>
</html>
| 28.944785 | 93 | 0.506359 |
4787a21f010ca317a62189e2c06dc95b283970db | 614 | html | HTML | KeepNotes/BookmarkList/privilege escalation/windows/missing autoruns dependencies/general primer/page.html | bourbon-hunter/OSCPRepo | ce95c6da1400263b0117d61e168ac8c59603e18f | [
"MIT"
] | 22 | 2019-10-09T10:23:19.000Z | 2022-03-01T20:10:48.000Z | KeepNotes/BookmarkList/privilege escalation/windows/missing autoruns/general primer/page.html | 7h3pr0xy/OSCPRepo | 8ffed9f7beeda5cbec806b6ca3aa1ccf900f0eea | [
"MIT"
] | null | null | null | KeepNotes/BookmarkList/privilege escalation/windows/missing autoruns/general primer/page.html | 7h3pr0xy/OSCPRepo | 8ffed9f7beeda5cbec806b6ca3aa1ccf900f0eea | [
"MIT"
] | 11 | 2019-10-09T10:51:29.000Z | 2021-01-31T19:56:56.000Z | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>General Primer</title>
</head><body>DLLs are not the only thing that can be hijacked (see Privilege Escalation > Windows > DLLs > <a href="nbk:///91b16ebf-808e-4a81-9972-8716b617cd0f">Hijacking via Missing Dependency</a>). You can hijack any program that is trying to load something that is not found. Some may give more access than others. </body></html> | 102.333333 | 341 | 0.737785 |
b6e9c48ca876901ba137cf86fa4d77862959e8f3 | 1,426 | rb | Ruby | lib/origen/logger_methods.rb | CodyBriscoe/origen | a0b1c06ad537c427447df78f343bfdc8253d0935 | [
"MIT"
] | 20 | 2015-04-14T16:23:52.000Z | 2021-04-16T17:02:35.000Z | lib/origen/logger_methods.rb | CodyBriscoe/origen | a0b1c06ad537c427447df78f343bfdc8253d0935 | [
"MIT"
] | 362 | 2015-06-27T02:34:39.000Z | 2022-02-11T14:29:54.000Z | lib/origen/logger_methods.rb | CodyBriscoe/origen | a0b1c06ad537c427447df78f343bfdc8253d0935 | [
"MIT"
] | 48 | 2015-06-26T21:46:30.000Z | 2021-02-02T10:12:05.000Z | module Origen
module LoggerMethods
extend ActiveSupport::Concern
included do |klass|
Origen.deprecate <<-END
The LoggerMethods module is deprecated, use Origen.log instead (or just
log from within a class that includes Origen::Model). See here for the new API:
http://origen.freescale.net/origen/latest/guides/utilities/logger/
Called from the #{klass} class.
END
end
def log
@log ||= Origen.log
end
def lputs(*args)
Origen.log.lputs(*args)
end
alias_method :lprint, :lputs
def warn(*args)
options = args.last.is_a?(Hash) ? args.pop : {}
args.each { |arg| Origen.log.warn arg }
end
alias_method :warning, :warn
def error(*args)
options = args.last.is_a?(Hash) ? args.pop : {}
args.each { |arg| Origen.log.error arg }
end
def alert(*args)
options = args.last.is_a?(Hash) ? args.pop : {}
args.each { |arg| Origen.log.warn arg }
end
def deprecated(*lines)
options = lines.last.is_a?(Hash) ? lines.pop : {}
lines.flatten.each do |line|
line.split(/\n/).each do |line|
Origen.log.deprecate line
end
end
end
def highlight
lputs ''
lputs '######################################################################'
yield
lputs '######################################################################'
lputs ''
end
end
end
| 25.017544 | 84 | 0.546283 |
b6f66cc5b6fbad598b20919e3fbc98681b4be5cc | 1,534 | sql | SQL | src/main/resources/data/sample-data.sql | HoodyMac/scrum-web | 263cad92c986655b4326f1f80dd9b77f35e9b758 | [
"MIT"
] | 2 | 2020-05-22T07:16:11.000Z | 2020-05-22T08:34:19.000Z | src/main/resources/data/sample-data.sql | HoodyMac/scrum-web | 263cad92c986655b4326f1f80dd9b77f35e9b758 | [
"MIT"
] | 3 | 2018-01-25T13:39:10.000Z | 2018-03-21T07:00:01.000Z | src/main/resources/data/sample-data.sql | HoodyMac/scrum-web | 263cad92c986655b4326f1f80dd9b77f35e9b758 | [
"MIT"
] | 1 | 2018-10-21T09:42:37.000Z | 2018-10-21T09:42:37.000Z | --Authority
INSERT INTO authority (id, name) VALUES (1 ,'ROLE_USER');
INSERT INTO authority (id, name) VALUES (2 ,'ROLE_ADMIN');
--IssueType
INSERT INTO issue_type (id, name) VALUES (-1, 'TASK');
INSERT INTO issue_type (id, name) VALUES (-2, 'BUG');
INSERT INTO issue_type (id, name) VALUES (-3, 'FEATURE');
-- --UserProfile
INSERT INTO user_profile (id, username, firstname, lastname, photo) VALUES (-1, 'testUser', 'testUser', 'testUser', NULL);
INSERT INTO user_profile (id, username, firstname, lastname, photo) VALUES (99999, 'testUser1', 'Aaaaa', ' BbbbbB', NULL);
-- --UserAccount
--decoded password= testUser
INSERT INTO user_account (id, enabled, password, username, user_profile_id) VALUES (-1, true, '$2a$10$KG6KiB.Yx0IDwxRdYD9dku9DP3DspOQQ1lxs4o8WNrJs74GNFHtve', 'testUser', -1);
INSERT INTO user_account (id, enabled, password, username, user_profile_id) VALUES (99999, true, '$2a$10$KG6KiB.Yx0IDwxRdYD9dku9DP3DspOQQ1lxs4o8WNrJs74GNFHtve', 'testUser1', 99999);
-- --UserAuthority
INSERT INTO user_authority (user_id, authority_id) VALUES (-1, 2);
INSERT INTO user_authority (user_id, authority_id) VALUES (99999, 2);
--Project
INSERT INTO project (id, description, icon, name, owner_id, key) VALUES (-1, 'test description', '', 'project name', -1, 'projkey');
--Project Issue Types
INSERT INTO project_issue_types(project_id, issue_types_id) VALUES (-1, -1);
INSERT INTO project_issue_types(project_id, issue_types_id) VALUES (-1, -2);
INSERT INTO project_issue_types(project_id, issue_types_id) VALUES (-1, -3); | 52.896552 | 181 | 0.741851 |
7008a22ac09b0bf8c92e877e71d25dd1f78d14fa | 4,773 | go | Go | vendor/github.com/johnnyeven/libtools/courier/status_error/status_error.go | johnnyeven/vehicle-robot-host | c6d2f1e6f5c1d772d766128fe1fa88ac6a9053c8 | [
"Apache-2.0"
] | 1 | 2019-09-23T02:00:13.000Z | 2019-09-23T02:00:13.000Z | vendor/github.com/johnnyeven/libtools/courier/status_error/status_error.go | johnnyeven/vehicle-robot-host | c6d2f1e6f5c1d772d766128fe1fa88ac6a9053c8 | [
"Apache-2.0"
] | null | null | null | vendor/github.com/johnnyeven/libtools/courier/status_error/status_error.go | johnnyeven/vehicle-robot-host | c6d2f1e6f5c1d772d766128fe1fa88ac6a9053c8 | [
"Apache-2.0"
] | 1 | 2019-09-23T02:00:29.000Z | 2019-09-23T02:00:29.000Z | package status_error
import (
"bytes"
"fmt"
"regexp"
"sort"
"strconv"
)
// code, key, msg, desc, canBeTalkError
var RegexpStatusError = regexp.MustCompile(`@httpError\(([0-9]+),(.+),"(.+)?","(.+)?",(false|true)\);`)
const DefaultErrorCode = 500000001
const DefaultErrorKey = "InternalError"
func ParseString(s string) *StatusError {
matched := RegexpStatusError.FindStringSubmatch(s)
if len(matched) != 6 {
return &StatusError{
Code: DefaultErrorCode,
Key: DefaultErrorKey,
Msg: "",
Desc: s,
CanBeErrorTalk: false,
}
}
code, _ := strconv.ParseInt(matched[1], 10, 64)
canBeTalkErr, _ := strconv.ParseBool(matched[5])
return &StatusError{
Code: code,
Key: matched[2],
Msg: matched[3],
Desc: matched[4],
CanBeErrorTalk: canBeTalkErr,
}
}
func FromError(err error) *StatusError {
if err == nil {
return nil
}
if statusErrCode, ok := err.(StatusErrorCode); ok {
return statusErrCode.StatusError()
}
if statusError, ok := err.(*StatusError); ok {
return statusError
}
return UnknownError.StatusError().WithDesc(err.Error())
}
func (statusErr *StatusError) String() string {
return fmt.Sprintf(`@httpError(%d,%s,"%s","%s",%v);`, statusErr.Code, statusErr.Key, statusErr.Msg, statusErr.Desc, statusErr.CanBeErrorTalk)
}
type StatusError struct {
// 错误 Key
Key string `json:"key" xml:"key"`
// 错误代码
Code int64 `json:"code" xml:"code"`
// 错误信息
Msg string `json:"msg" xml:"msg"`
// 详细描述
Desc string `json:"desc" xml:"desc"`
// 是否能作为错误话术
CanBeErrorTalk bool `json:"canBeTalkError" xml:"canBeTalkError"`
// 错误溯源
Source []string `json:"source" xml:"source"`
// 请求 ID
ID string `json:"id" xml:"id"`
// 出错字段
ErrorFields ErrorFields `json:"errorFields" xml:"errorFields"`
}
func (statusErr *StatusError) Is(err error) bool {
return FromError(statusErr).Code == statusErr.Code
}
func (statusErr *StatusError) Error() string {
return fmt.Sprintf("%v[%s][%d][%s%s] %s", statusErr.Source, statusErr.Key, statusErr.Code, statusErr.Msg, statusErr.ErrorFields, statusErr.Desc)
}
func (statusErr *StatusError) Status() int {
strCode := fmt.Sprintf("%d", statusErr.Code)
if len(strCode) < 3 {
return 0
}
status, _ := strconv.Atoi(strCode[:3])
return status
}
// deprecated
func (statusErr *StatusError) HttpCode() int {
return statusErr.Status()
}
func (statusErr StatusError) WithErrTalk() *StatusError {
statusErr.CanBeErrorTalk = true
return &statusErr
}
func (statusErr StatusError) WithMsg(msg string) *StatusError {
statusErr.Msg = msg
return &statusErr
}
func (statusErr StatusError) WithoutErrTalk() *StatusError {
statusErr.CanBeErrorTalk = false
return &statusErr
}
func (statusErr StatusError) WithDesc(desc string) *StatusError {
statusErr.Desc = desc
return &statusErr
}
func (statusErr StatusError) WithID(id string) *StatusError {
statusErr.ID = id
return &statusErr
}
func (statusErr StatusError) WithSource(sourceName string) *StatusError {
length := len(statusErr.Source)
if length == 0 || statusErr.Source[length-1] != sourceName {
statusErr.Source = append(statusErr.Source, sourceName)
}
return &statusErr
}
func (statusErr StatusError) WithErrorField(in string, field string, msg string) *StatusError {
statusErr.ErrorFields = append(statusErr.ErrorFields, NewErrorField(in, field, msg))
return &statusErr
}
func (statusErr StatusError) WithErrorFields(errorFields ...*ErrorField) *StatusError {
statusErr.ErrorFields = append(statusErr.ErrorFields, errorFields...)
return &statusErr
}
func NewErrorField(in string, field string, msg string) *ErrorField {
return &ErrorField{
In: in,
Field: field,
Msg: msg,
}
}
type ErrorField struct {
// 出错字段路径
// 这个信息为一个 json 字符串,方便客户端进行定位错误原因
// 例如输入中 {"name":{ "alias" : "test"}} 中的alias出错,则返回 "name.alias"
// 如果alias是数组, 且第2个元素的a字段错误,则返回"name.alias[2].a"
Field string `json:"field" xml:"field"`
// 错误信息
Msg string `json:"msg" xml:"msg"`
// 错误字段位置
// body, query, header, path, formData
In string `json:"in" xml:"in"`
}
func (s ErrorField) String() string {
return "[" + s.In + "]" + s.Field + " " + s.Msg
}
type ErrorFields []*ErrorField
func (fields ErrorFields) String() string {
if len(fields) == 0 {
return ""
}
buf := &bytes.Buffer{}
buf.WriteString("<")
for _, f := range fields {
buf.WriteString(f.String())
}
buf.WriteString(">")
return buf.String()
}
func (fields ErrorFields) Sort() ErrorFields {
sort.Sort(fields)
return fields
}
func (fields ErrorFields) Len() int {
return len(fields)
}
func (fields ErrorFields) Swap(i, j int) {
fields[i], fields[j] = fields[j], fields[i]
}
func (fields ErrorFields) Less(i, j int) bool {
return fields[i].Field < fields[j].Field
}
| 23.984925 | 145 | 0.684475 |
1cf7edf3d1f2d10ec24cdbb147b1ec35540e4e5d | 38 | css | CSS | public/front/hs-fs/hub/1813982/hub_generated/module_assets/1529661423864/module_5887099249.min.css | pitash/accounting | e7ed04dfd7d4404bfdb1e44aa16635b1461f7609 | [
"MIT"
] | null | null | null | public/front/hs-fs/hub/1813982/hub_generated/module_assets/1529661423864/module_5887099249.min.css | pitash/accounting | e7ed04dfd7d4404bfdb1e44aa16635b1461f7609 | [
"MIT"
] | null | null | null | public/front/hs-fs/hub/1813982/hub_generated/module_assets/1529661423864/module_5887099249.min.css | pitash/accounting | e7ed04dfd7d4404bfdb1e44aa16635b1461f7609 | [
"MIT"
] | null | null | null | .zmdi-calendar:before{content:'\f332'} | 38 | 38 | 0.763158 |
b96c9058a23ece82e93e16b1d038adba86540468 | 52,545 | c | C | testsuite/EXP_2/test87.c | ishiura-compiler/CF3 | 0718aa176d0303a4ea8a46bd6c794997cbb8fabb | [
"MIT"
] | 34 | 2017-07-04T14:16:12.000Z | 2021-04-22T21:04:43.000Z | testsuite/EXP_2/test87.c | ishiura-compiler/CF3 | 0718aa176d0303a4ea8a46bd6c794997cbb8fabb | [
"MIT"
] | 1 | 2017-07-06T03:43:44.000Z | 2017-07-06T03:43:44.000Z | testsuite/EXP_2/test87.c | ishiura-compiler/CF3 | 0718aa176d0303a4ea8a46bd6c794997cbb8fabb | [
"MIT"
] | 6 | 2017-07-04T16:30:42.000Z | 2019-10-16T05:37:29.000Z |
/*
CF3
Copyright (c) 2015 ishiura-lab.
Released under the MIT license.
https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md
*/
#include<stdio.h>
#include<stdint.h>
#include<stdlib.h>
#include"test1.h"
uint32_t x4 = UINT32_MAX;
int8_t x15 = -1;
int16_t x16 = 75;
static int8_t x18 = -1;
uint64_t x21 = 77105340326LLU;
int8_t x22 = -1;
uint64_t x24 = UINT64_MAX;
static int8_t x34 = 31;
static int64_t x45 = -1LL;
volatile int32_t t14 = 192722;
int64_t x61 = -9562135LL;
int64_t t16 = -52291018LL;
volatile int32_t t17 = 43919904;
int8_t x80 = 11;
uint8_t x83 = 1U;
volatile int64_t x92 = INT64_MAX;
volatile int32_t t22 = 96722;
int32_t x97 = -80;
volatile int32_t t26 = 179148474;
uint32_t x119 = UINT32_MAX;
static uint16_t x120 = 20U;
int64_t x127 = INT64_MAX;
uint64_t t30 = 11939316772426248LLU;
static int16_t x135 = INT16_MIN;
uint8_t x144 = 112U;
static uint32_t x154 = UINT32_MAX;
static int16_t x159 = -1;
int32_t t37 = -7;
volatile uint16_t x169 = 2700U;
volatile int32_t x172 = 116;
volatile int32_t t39 = -124336565;
int8_t x178 = 38;
int16_t x181 = INT16_MAX;
uint64_t x182 = UINT64_MAX;
static int8_t x187 = INT8_MIN;
int8_t x189 = 1;
int8_t x194 = INT8_MIN;
static int32_t x202 = -156320;
static int8_t x204 = INT8_MAX;
int64_t x205 = -1LL;
volatile int32_t x206 = -995160;
static int16_t x208 = -1;
volatile int8_t x209 = 41;
int8_t x214 = INT8_MAX;
int8_t x215 = INT8_MIN;
uint8_t x218 = UINT8_MAX;
static int16_t x219 = INT16_MAX;
int16_t x227 = INT16_MAX;
volatile uint32_t x232 = UINT32_MAX;
uint16_t x242 = 2U;
volatile int64_t t56 = INT64_MIN;
uint8_t x254 = UINT8_MAX;
int8_t x265 = INT8_MIN;
volatile int32_t t61 = 0;
int16_t x277 = INT16_MIN;
static int16_t x281 = -11322;
int16_t x282 = INT16_MIN;
volatile uint8_t x284 = UINT8_MAX;
int32_t x295 = -1;
static int32_t t67 = INT32_MIN;
static int32_t x297 = 0;
int8_t x303 = 1;
volatile int32_t t69 = -737269;
int64_t t70 = -12LL;
uint32_t x315 = 217U;
int64_t x316 = INT64_MIN;
int8_t x317 = 28;
uint8_t x319 = 18U;
static int32_t t72 = -4519;
volatile uint16_t x322 = 15U;
int64_t x324 = -1LL;
uint16_t x340 = 3U;
int32_t t77 = 78850708;
int16_t x347 = -1;
int32_t x348 = INT32_MIN;
uint64_t x354 = 117740615LLU;
int8_t x360 = INT8_MAX;
int32_t t81 = -119;
static int8_t x366 = INT8_MAX;
volatile uint32_t t83 = 159U;
static int8_t x379 = INT8_MIN;
int32_t x381 = INT32_MIN;
int8_t x389 = INT8_MAX;
int8_t x404 = INT8_MAX;
int16_t x405 = INT16_MIN;
volatile uint64_t t92 = 77037861548LLU;
volatile int32_t t93 = 23591739;
int32_t x418 = 0;
int64_t x423 = INT64_MAX;
int8_t x424 = INT8_MIN;
uint64_t x428 = UINT64_MAX;
uint64_t t96 = UINT64_MAX;
static uint64_t x429 = 345109LLU;
int64_t x436 = INT64_MAX;
uint8_t x439 = UINT8_MAX;
static int32_t x442 = 52;
int16_t x454 = -73;
int16_t x459 = 3229;
static int16_t x462 = 1556;
int64_t x473 = INT64_MIN;
int32_t x479 = 62;
static int8_t x500 = -43;
uint64_t x503 = 1190699767000224LLU;
int64_t x504 = INT64_MIN;
volatile int8_t x528 = INT8_MIN;
static volatile int32_t t118 = INT32_MIN;
uint32_t x541 = 8U;
int16_t x544 = INT16_MIN;
int32_t x545 = INT32_MIN;
int32_t x549 = -1;
static int8_t x550 = INT8_MAX;
uint16_t x555 = 19U;
uint8_t x559 = 2U;
int32_t x560 = INT32_MIN;
uint8_t x562 = 0U;
int16_t x569 = INT16_MIN;
static uint32_t x576 = UINT32_MAX;
uint64_t x577 = 0LLU;
uint32_t x579 = 1U;
int8_t x582 = -1;
int16_t x589 = -26;
int16_t x593 = INT16_MIN;
static uint64_t x594 = 4734514515102872377LLU;
static int16_t x597 = 61;
static int64_t x598 = -112828792999715LL;
int16_t x605 = INT16_MAX;
int8_t x611 = INT8_MAX;
int16_t x614 = INT16_MIN;
int8_t x617 = 2;
int8_t x620 = -1;
int16_t x624 = INT16_MAX;
int32_t x632 = INT32_MAX;
int32_t x635 = 1;
static volatile int32_t t143 = 2;
int16_t x642 = INT16_MAX;
uint32_t x643 = UINT32_MAX;
int64_t x646 = -26929746017218LL;
int8_t x653 = INT8_MIN;
int64_t x666 = -1LL;
uint16_t x678 = UINT16_MAX;
int16_t x680 = INT16_MIN;
int8_t x685 = 26;
int8_t x688 = 0;
int32_t t153 = -1;
uint64_t x701 = UINT64_MAX;
int32_t t156 = -2640;
uint16_t x722 = 9U;
int32_t x723 = INT32_MIN;
int32_t t159 = -50806;
volatile uint32_t x725 = UINT32_MAX;
volatile int32_t t160 = INT32_MIN;
volatile int32_t t161 = 18030708;
volatile int32_t t163 = 58;
int32_t x748 = INT32_MAX;
uint16_t x749 = 308U;
static int8_t x752 = INT8_MIN;
static volatile int8_t x757 = INT8_MAX;
uint32_t x759 = 192U;
int64_t t167 = INT64_MIN;
static int64_t x762 = INT64_MIN;
static volatile int64_t x774 = 194361LL;
uint32_t x775 = 441279U;
uint64_t x787 = 180382245LLU;
static int8_t x788 = INT8_MIN;
int32_t t174 = 0;
volatile int64_t x790 = 8674591781961390LL;
volatile int64_t x792 = -1LL;
volatile int64_t t175 = -21133650208778633LL;
int64_t x794 = -11516874504818LL;
uint32_t x796 = 709443U;
int32_t x799 = -1;
int64_t x800 = INT64_MIN;
static int8_t x804 = -1;
volatile int32_t t178 = 197163792;
volatile uint32_t x810 = 447248244U;
volatile int32_t x811 = -329;
uint64_t t180 = 56783867LLU;
int16_t x817 = -1;
static int8_t x819 = INT8_MAX;
int8_t x821 = INT8_MAX;
int64_t x824 = INT64_MIN;
int64_t t183 = INT64_MIN;
static volatile uint16_t x827 = UINT16_MAX;
static volatile uint32_t x828 = 619145U;
uint32_t t184 = 3U;
int64_t t186 = INT64_MIN;
uint64_t x846 = 3652939193038605LLU;
int64_t x847 = -1LL;
static int16_t x848 = INT16_MIN;
volatile int32_t t188 = -208582320;
volatile int16_t x849 = -1;
uint8_t x854 = UINT8_MAX;
int8_t x855 = INT8_MIN;
volatile int16_t x856 = 95;
int8_t x860 = 4;
int32_t x863 = INT32_MIN;
volatile int32_t t192 = -6;
int32_t x867 = 10;
volatile int32_t x868 = -1;
int64_t x874 = INT64_MIN;
int32_t x880 = -1;
volatile int32_t t197 = INT32_MAX;
uint32_t x890 = UINT32_MAX;
volatile int8_t x895 = -2;
static uint16_t x896 = UINT16_MAX;
void f0(void) {
int8_t x1 = 9;
int32_t x2 = -1;
int16_t x3 = INT16_MIN;
uint32_t t0 = UINT32_MAX;
t0 = ((x1!=(x2+x3))*x4);
if (t0 != UINT32_MAX) { NG(); } else { ; }
}
void f1(void) {
static int64_t x5 = INT64_MAX;
int32_t x6 = -1;
static int8_t x7 = INT8_MAX;
int32_t x8 = INT32_MIN;
int32_t t1 = INT32_MIN;
t1 = ((x5!=(x6+x7))*x8);
if (t1 != INT32_MIN) { NG(); } else { ; }
}
void f2(void) {
volatile int8_t x9 = -1;
uint16_t x10 = 5U;
volatile int32_t x11 = INT32_MIN;
uint64_t x12 = UINT64_MAX;
uint64_t t2 = UINT64_MAX;
t2 = ((x9!=(x10+x11))*x12);
if (t2 != UINT64_MAX) { NG(); } else { ; }
}
void f3(void) {
uint32_t x13 = 6U;
int16_t x14 = INT16_MAX;
volatile int32_t t3 = -16142;
t3 = ((x13!=(x14+x15))*x16);
if (t3 != 75) { NG(); } else { ; }
}
void f4(void) {
int8_t x17 = -29;
uint64_t x19 = 149247137585LLU;
int64_t x20 = INT64_MIN;
volatile int64_t t4 = INT64_MIN;
t4 = ((x17!=(x18+x19))*x20);
if (t4 != INT64_MIN) { NG(); } else { ; }
}
void f5(void) {
static int32_t x23 = 1422444;
volatile uint64_t t5 = UINT64_MAX;
t5 = ((x21!=(x22+x23))*x24);
if (t5 != UINT64_MAX) { NG(); } else { ; }
}
void f6(void) {
int16_t x25 = INT16_MAX;
uint32_t x26 = 3489U;
int32_t x27 = INT32_MIN;
int8_t x28 = INT8_MAX;
volatile int32_t t6 = -37458327;
t6 = ((x25!=(x26+x27))*x28);
if (t6 != 127) { NG(); } else { ; }
}
void f7(void) {
static int16_t x29 = -1;
int16_t x30 = INT16_MAX;
static int8_t x31 = 11;
int32_t x32 = INT32_MIN;
volatile int32_t t7 = INT32_MIN;
t7 = ((x29!=(x30+x31))*x32);
if (t7 != INT32_MIN) { NG(); } else { ; }
}
void f8(void) {
int8_t x33 = INT8_MIN;
int16_t x35 = INT16_MAX;
static volatile int32_t x36 = -8;
int32_t t8 = -252;
t8 = ((x33!=(x34+x35))*x36);
if (t8 != -8) { NG(); } else { ; }
}
void f9(void) {
int64_t x37 = -1LL;
int32_t x38 = INT32_MAX;
static int16_t x39 = INT16_MIN;
uint8_t x40 = 1U;
volatile int32_t t9 = 89081;
t9 = ((x37!=(x38+x39))*x40);
if (t9 != 1) { NG(); } else { ; }
}
void f10(void) {
uint32_t x41 = UINT32_MAX;
volatile uint8_t x42 = 8U;
int64_t x43 = 21003LL;
int32_t x44 = INT32_MAX;
volatile int32_t t10 = INT32_MAX;
t10 = ((x41!=(x42+x43))*x44);
if (t10 != INT32_MAX) { NG(); } else { ; }
}
void f11(void) {
static int16_t x46 = INT16_MIN;
int64_t x47 = -1158303015LL;
uint8_t x48 = 48U;
int32_t t11 = -318973;
t11 = ((x45!=(x46+x47))*x48);
if (t11 != 48) { NG(); } else { ; }
}
void f12(void) {
static int64_t x49 = INT64_MIN;
uint32_t x50 = UINT32_MAX;
volatile int32_t x51 = -1;
volatile uint32_t x52 = 108837271U;
static uint32_t t12 = 26879U;
t12 = ((x49!=(x50+x51))*x52);
if (t12 != 108837271U) { NG(); } else { ; }
}
void f13(void) {
volatile int16_t x53 = INT16_MIN;
int16_t x54 = INT16_MAX;
static int8_t x55 = INT8_MIN;
uint64_t x56 = UINT64_MAX;
static uint64_t t13 = UINT64_MAX;
t13 = ((x53!=(x54+x55))*x56);
if (t13 != UINT64_MAX) { NG(); } else { ; }
}
void f14(void) {
int16_t x57 = -783;
static int16_t x58 = INT16_MIN;
int16_t x59 = INT16_MAX;
int8_t x60 = -11;
t14 = ((x57!=(x58+x59))*x60);
if (t14 != -11) { NG(); } else { ; }
}
void f15(void) {
static volatile int8_t x62 = INT8_MAX;
uint64_t x63 = 419330LLU;
uint8_t x64 = 60U;
static int32_t t15 = 42;
t15 = ((x61!=(x62+x63))*x64);
if (t15 != 60) { NG(); } else { ; }
}
void f16(void) {
int8_t x65 = 0;
int32_t x66 = INT32_MIN;
int64_t x67 = -1LL;
static int64_t x68 = 614280254387383915LL;
t16 = ((x65!=(x66+x67))*x68);
if (t16 != 614280254387383915LL) { NG(); } else { ; }
}
void f17(void) {
uint32_t x73 = 71095U;
volatile int64_t x74 = -1LL;
int8_t x75 = -1;
static uint16_t x76 = UINT16_MAX;
t17 = ((x73!=(x74+x75))*x76);
if (t17 != 65535) { NG(); } else { ; }
}
void f18(void) {
int64_t x77 = INT64_MIN;
uint32_t x78 = UINT32_MAX;
int32_t x79 = 0;
volatile int32_t t18 = -386560;
t18 = ((x77!=(x78+x79))*x80);
if (t18 != 11) { NG(); } else { ; }
}
void f19(void) {
static volatile int32_t x81 = INT32_MIN;
uint64_t x82 = 124704669885LLU;
static int32_t x84 = INT32_MIN;
static int32_t t19 = INT32_MIN;
t19 = ((x81!=(x82+x83))*x84);
if (t19 != INT32_MIN) { NG(); } else { ; }
}
void f20(void) {
int64_t x85 = -1LL;
static uint64_t x86 = 4717LLU;
int32_t x87 = 47121027;
int32_t x88 = INT32_MAX;
volatile int32_t t20 = INT32_MAX;
t20 = ((x85!=(x86+x87))*x88);
if (t20 != INT32_MAX) { NG(); } else { ; }
}
void f21(void) {
int32_t x89 = INT32_MAX;
volatile int64_t x90 = INT64_MIN;
volatile int32_t x91 = INT32_MAX;
volatile int64_t t21 = INT64_MAX;
t21 = ((x89!=(x90+x91))*x92);
if (t21 != INT64_MAX) { NG(); } else { ; }
}
void f22(void) {
uint64_t x93 = 3651LLU;
uint8_t x94 = 6U;
uint32_t x95 = 53037U;
static volatile int8_t x96 = 0;
t22 = ((x93!=(x94+x95))*x96);
if (t22 != 0) { NG(); } else { ; }
}
void f23(void) {
int64_t x98 = 9502LL;
int16_t x99 = -3;
int8_t x100 = INT8_MAX;
int32_t t23 = -184;
t23 = ((x97!=(x98+x99))*x100);
if (t23 != 127) { NG(); } else { ; }
}
void f24(void) {
static uint32_t x101 = 248419U;
int8_t x102 = 3;
int32_t x103 = INT32_MIN;
int64_t x104 = INT64_MAX;
static volatile int64_t t24 = INT64_MAX;
t24 = ((x101!=(x102+x103))*x104);
if (t24 != INT64_MAX) { NG(); } else { ; }
}
void f25(void) {
uint32_t x105 = 110U;
int32_t x106 = -1;
uint64_t x107 = 285243548043130LLU;
int8_t x108 = INT8_MIN;
int32_t t25 = -1;
t25 = ((x105!=(x106+x107))*x108);
if (t25 != -128) { NG(); } else { ; }
}
void f26(void) {
int32_t x109 = INT32_MIN;
volatile int8_t x110 = INT8_MIN;
static int8_t x111 = INT8_MIN;
int8_t x112 = INT8_MIN;
t26 = ((x109!=(x110+x111))*x112);
if (t26 != -128) { NG(); } else { ; }
}
void f27(void) {
static int64_t x113 = -1LL;
int16_t x114 = INT16_MIN;
uint16_t x115 = 200U;
uint16_t x116 = UINT16_MAX;
static int32_t t27 = -1;
t27 = ((x113!=(x114+x115))*x116);
if (t27 != 65535) { NG(); } else { ; }
}
void f28(void) {
static uint32_t x117 = UINT32_MAX;
uint16_t x118 = 16U;
volatile int32_t t28 = -12574897;
t28 = ((x117!=(x118+x119))*x120);
if (t28 != 20) { NG(); } else { ; }
}
void f29(void) {
int16_t x125 = INT16_MIN;
int32_t x126 = INT32_MIN;
volatile int16_t x128 = INT16_MIN;
volatile int32_t t29 = 777;
t29 = ((x125!=(x126+x127))*x128);
if (t29 != -32768) { NG(); } else { ; }
}
void f30(void) {
int64_t x129 = INT64_MIN;
uint32_t x130 = 31463972U;
int32_t x131 = INT32_MAX;
static uint64_t x132 = 85122752584307LLU;
t30 = ((x129!=(x130+x131))*x132);
if (t30 != 85122752584307LLU) { NG(); } else { ; }
}
void f31(void) {
int16_t x133 = -1;
int8_t x134 = 1;
int16_t x136 = -1;
static volatile int32_t t31 = -61;
t31 = ((x133!=(x134+x135))*x136);
if (t31 != -1) { NG(); } else { ; }
}
void f32(void) {
int32_t x137 = INT32_MIN;
int32_t x138 = INT32_MIN;
int8_t x139 = INT8_MAX;
uint32_t x140 = 0U;
static uint32_t t32 = 96U;
t32 = ((x137!=(x138+x139))*x140);
if (t32 != 0U) { NG(); } else { ; }
}
void f33(void) {
uint32_t x141 = UINT32_MAX;
volatile int8_t x142 = 20;
int64_t x143 = -54173LL;
volatile int32_t t33 = 4382;
t33 = ((x141!=(x142+x143))*x144);
if (t33 != 112) { NG(); } else { ; }
}
void f34(void) {
static uint16_t x145 = UINT16_MAX;
static uint32_t x146 = 168262387U;
int64_t x147 = INT64_MIN;
uint32_t x148 = 992793685U;
uint32_t t34 = 1981593085U;
t34 = ((x145!=(x146+x147))*x148);
if (t34 != 992793685U) { NG(); } else { ; }
}
void f35(void) {
uint16_t x153 = 450U;
uint64_t x155 = UINT64_MAX;
static int32_t x156 = -1;
volatile int32_t t35 = -160;
t35 = ((x153!=(x154+x155))*x156);
if (t35 != -1) { NG(); } else { ; }
}
void f36(void) {
static volatile uint64_t x157 = 536520940LLU;
int16_t x158 = INT16_MIN;
int64_t x160 = -220351206862897452LL;
int64_t t36 = 2960999LL;
t36 = ((x157!=(x158+x159))*x160);
if (t36 != -220351206862897452LL) { NG(); } else { ; }
}
void f37(void) {
uint16_t x161 = 81U;
int16_t x162 = INT16_MAX;
int64_t x163 = INT64_MIN;
static int16_t x164 = INT16_MAX;
t37 = ((x161!=(x162+x163))*x164);
if (t37 != 32767) { NG(); } else { ; }
}
void f38(void) {
int32_t x165 = -1;
uint8_t x166 = 5U;
int8_t x167 = INT8_MAX;
static uint16_t x168 = 435U;
int32_t t38 = -63283542;
t38 = ((x165!=(x166+x167))*x168);
if (t38 != 435) { NG(); } else { ; }
}
void f39(void) {
int64_t x170 = -47182716220223600LL;
volatile int16_t x171 = INT16_MIN;
t39 = ((x169!=(x170+x171))*x172);
if (t39 != 116) { NG(); } else { ; }
}
void f40(void) {
int32_t x173 = INT32_MAX;
volatile int64_t x174 = INT64_MAX;
int8_t x175 = -11;
uint32_t x176 = UINT32_MAX;
volatile uint32_t t40 = UINT32_MAX;
t40 = ((x173!=(x174+x175))*x176);
if (t40 != UINT32_MAX) { NG(); } else { ; }
}
void f41(void) {
static volatile uint16_t x177 = 2376U;
int8_t x179 = 0;
int16_t x180 = INT16_MIN;
int32_t t41 = -4;
t41 = ((x177!=(x178+x179))*x180);
if (t41 != -32768) { NG(); } else { ; }
}
void f42(void) {
int16_t x183 = INT16_MIN;
static int8_t x184 = INT8_MIN;
int32_t t42 = 67194;
t42 = ((x181!=(x182+x183))*x184);
if (t42 != -128) { NG(); } else { ; }
}
void f43(void) {
int8_t x185 = INT8_MAX;
static int32_t x186 = INT32_MAX;
int8_t x188 = 1;
int32_t t43 = -335;
t43 = ((x185!=(x186+x187))*x188);
if (t43 != 1) { NG(); } else { ; }
}
void f44(void) {
uint16_t x190 = 23189U;
uint64_t x191 = 1629937161LLU;
volatile uint32_t x192 = 23271061U;
volatile uint32_t t44 = 2902582U;
t44 = ((x189!=(x190+x191))*x192);
if (t44 != 23271061U) { NG(); } else { ; }
}
void f45(void) {
int64_t x193 = INT64_MIN;
uint8_t x195 = UINT8_MAX;
int8_t x196 = -1;
volatile int32_t t45 = 1440;
t45 = ((x193!=(x194+x195))*x196);
if (t45 != -1) { NG(); } else { ; }
}
void f46(void) {
int16_t x197 = -24;
uint8_t x198 = UINT8_MAX;
static int64_t x199 = -5998374934438LL;
uint16_t x200 = 3183U;
volatile int32_t t46 = 1323;
t46 = ((x197!=(x198+x199))*x200);
if (t46 != 3183) { NG(); } else { ; }
}
void f47(void) {
int16_t x201 = -1;
int8_t x203 = 0;
volatile int32_t t47 = -18;
t47 = ((x201!=(x202+x203))*x204);
if (t47 != 127) { NG(); } else { ; }
}
void f48(void) {
static uint16_t x207 = UINT16_MAX;
int32_t t48 = 1093825;
t48 = ((x205!=(x206+x207))*x208);
if (t48 != -1) { NG(); } else { ; }
}
void f49(void) {
volatile uint16_t x210 = 4U;
uint8_t x211 = 22U;
volatile int32_t x212 = INT32_MAX;
static volatile int32_t t49 = INT32_MAX;
t49 = ((x209!=(x210+x211))*x212);
if (t49 != INT32_MAX) { NG(); } else { ; }
}
void f50(void) {
uint32_t x213 = 7857U;
int8_t x216 = INT8_MIN;
int32_t t50 = -4696210;
t50 = ((x213!=(x214+x215))*x216);
if (t50 != -128) { NG(); } else { ; }
}
void f51(void) {
volatile uint16_t x217 = 63U;
int64_t x220 = INT64_MIN;
volatile int64_t t51 = INT64_MIN;
t51 = ((x217!=(x218+x219))*x220);
if (t51 != INT64_MIN) { NG(); } else { ; }
}
void f52(void) {
int64_t x221 = -1LL;
int16_t x222 = -52;
volatile uint64_t x223 = UINT64_MAX;
uint64_t x224 = UINT64_MAX;
uint64_t t52 = UINT64_MAX;
t52 = ((x221!=(x222+x223))*x224);
if (t52 != UINT64_MAX) { NG(); } else { ; }
}
void f53(void) {
int32_t x225 = -92653;
uint64_t x226 = 10044LLU;
static volatile uint8_t x228 = 1U;
volatile int32_t t53 = 7;
t53 = ((x225!=(x226+x227))*x228);
if (t53 != 1) { NG(); } else { ; }
}
void f54(void) {
volatile int8_t x229 = INT8_MIN;
uint32_t x230 = 113U;
int64_t x231 = -1LL;
volatile uint32_t t54 = UINT32_MAX;
t54 = ((x229!=(x230+x231))*x232);
if (t54 != UINT32_MAX) { NG(); } else { ; }
}
void f55(void) {
static int64_t x233 = INT64_MIN;
volatile int32_t x234 = INT32_MIN;
int64_t x235 = -1LL;
static int16_t x236 = INT16_MIN;
volatile int32_t t55 = 3229;
t55 = ((x233!=(x234+x235))*x236);
if (t55 != -32768) { NG(); } else { ; }
}
void f56(void) {
volatile uint64_t x241 = UINT64_MAX;
int16_t x243 = 1452;
int64_t x244 = INT64_MIN;
t56 = ((x241!=(x242+x243))*x244);
if (t56 != INT64_MIN) { NG(); } else { ; }
}
void f57(void) {
static uint16_t x245 = UINT16_MAX;
uint16_t x246 = 1221U;
int32_t x247 = INT32_MIN;
uint32_t x248 = 1932971U;
volatile uint32_t t57 = 1186U;
t57 = ((x245!=(x246+x247))*x248);
if (t57 != 1932971U) { NG(); } else { ; }
}
void f58(void) {
uint16_t x253 = 810U;
int16_t x255 = INT16_MIN;
uint16_t x256 = 3350U;
int32_t t58 = 8;
t58 = ((x253!=(x254+x255))*x256);
if (t58 != 3350) { NG(); } else { ; }
}
void f59(void) {
static int64_t x257 = 519780161248160LL;
int16_t x258 = -24;
uint8_t x259 = 1U;
static uint16_t x260 = 14U;
static volatile int32_t t59 = -387003506;
t59 = ((x257!=(x258+x259))*x260);
if (t59 != 14) { NG(); } else { ; }
}
void f60(void) {
int64_t x261 = INT64_MIN;
int16_t x262 = -1;
uint8_t x263 = 99U;
uint16_t x264 = UINT16_MAX;
int32_t t60 = -2813;
t60 = ((x261!=(x262+x263))*x264);
if (t60 != 65535) { NG(); } else { ; }
}
void f61(void) {
uint64_t x266 = UINT64_MAX;
int16_t x267 = -1;
uint16_t x268 = 1U;
t61 = ((x265!=(x266+x267))*x268);
if (t61 != 1) { NG(); } else { ; }
}
void f62(void) {
uint32_t x273 = 1687687U;
int16_t x274 = -40;
volatile int32_t x275 = INT32_MAX;
int64_t x276 = -1LL;
volatile int64_t t62 = 473882080378843LL;
t62 = ((x273!=(x274+x275))*x276);
if (t62 != -1LL) { NG(); } else { ; }
}
void f63(void) {
uint16_t x278 = 7027U;
int16_t x279 = INT16_MIN;
int32_t x280 = -1;
volatile int32_t t63 = 2801;
t63 = ((x277!=(x278+x279))*x280);
if (t63 != -1) { NG(); } else { ; }
}
void f64(void) {
static int16_t x283 = -1;
int32_t t64 = 882;
t64 = ((x281!=(x282+x283))*x284);
if (t64 != 255) { NG(); } else { ; }
}
void f65(void) {
uint64_t x285 = 1935447139LLU;
int64_t x286 = 8629177615860LL;
static int8_t x287 = -1;
int16_t x288 = INT16_MIN;
static volatile int32_t t65 = 17;
t65 = ((x285!=(x286+x287))*x288);
if (t65 != -32768) { NG(); } else { ; }
}
void f66(void) {
int64_t x289 = -1LL;
int64_t x290 = -1LL;
int8_t x291 = 6;
int64_t x292 = INT64_MIN;
volatile int64_t t66 = INT64_MIN;
t66 = ((x289!=(x290+x291))*x292);
if (t66 != INT64_MIN) { NG(); } else { ; }
}
void f67(void) {
int32_t x293 = 46274;
static uint64_t x294 = UINT64_MAX;
int32_t x296 = INT32_MIN;
t67 = ((x293!=(x294+x295))*x296);
if (t67 != INT32_MIN) { NG(); } else { ; }
}
void f68(void) {
static int64_t x298 = -154387624LL;
int8_t x299 = 0;
volatile int16_t x300 = INT16_MIN;
int32_t t68 = -27623540;
t68 = ((x297!=(x298+x299))*x300);
if (t68 != -32768) { NG(); } else { ; }
}
void f69(void) {
uint64_t x301 = UINT64_MAX;
int8_t x302 = 9;
static int16_t x304 = INT16_MIN;
t69 = ((x301!=(x302+x303))*x304);
if (t69 != -32768) { NG(); } else { ; }
}
void f70(void) {
int32_t x305 = INT32_MAX;
int16_t x306 = -1;
int32_t x307 = -1;
int64_t x308 = -30071114286LL;
t70 = ((x305!=(x306+x307))*x308);
if (t70 != -30071114286LL) { NG(); } else { ; }
}
void f71(void) {
volatile int16_t x313 = 282;
volatile uint8_t x314 = 2U;
int64_t t71 = INT64_MIN;
t71 = ((x313!=(x314+x315))*x316);
if (t71 != INT64_MIN) { NG(); } else { ; }
}
void f72(void) {
static volatile uint8_t x318 = 3U;
int8_t x320 = 23;
t72 = ((x317!=(x318+x319))*x320);
if (t72 != 23) { NG(); } else { ; }
}
void f73(void) {
uint8_t x321 = 102U;
uint8_t x323 = UINT8_MAX;
static volatile int64_t t73 = -1796312129266988210LL;
t73 = ((x321!=(x322+x323))*x324);
if (t73 != -1LL) { NG(); } else { ; }
}
void f74(void) {
uint8_t x325 = UINT8_MAX;
static volatile int16_t x326 = 931;
static volatile int32_t x327 = -1;
static volatile uint32_t x328 = 487U;
static uint32_t t74 = 1094U;
t74 = ((x325!=(x326+x327))*x328);
if (t74 != 487U) { NG(); } else { ; }
}
void f75(void) {
volatile uint32_t x329 = UINT32_MAX;
int32_t x330 = INT32_MAX;
int32_t x331 = INT32_MIN;
uint32_t x332 = 1U;
uint32_t t75 = 79U;
t75 = ((x329!=(x330+x331))*x332);
if (t75 != 0U) { NG(); } else { ; }
}
void f76(void) {
static uint8_t x333 = 3U;
uint64_t x334 = UINT64_MAX;
uint8_t x335 = 9U;
int16_t x336 = INT16_MIN;
int32_t t76 = -226828;
t76 = ((x333!=(x334+x335))*x336);
if (t76 != -32768) { NG(); } else { ; }
}
void f77(void) {
uint32_t x337 = 12943679U;
uint16_t x338 = 805U;
int8_t x339 = -1;
t77 = ((x337!=(x338+x339))*x340);
if (t77 != 3) { NG(); } else { ; }
}
void f78(void) {
static int32_t x345 = INT32_MIN;
uint8_t x346 = UINT8_MAX;
int32_t t78 = INT32_MIN;
t78 = ((x345!=(x346+x347))*x348);
if (t78 != INT32_MIN) { NG(); } else { ; }
}
void f79(void) {
int64_t x349 = -1LL;
int16_t x350 = -11;
uint16_t x351 = 16500U;
int16_t x352 = INT16_MIN;
int32_t t79 = -5545594;
t79 = ((x349!=(x350+x351))*x352);
if (t79 != -32768) { NG(); } else { ; }
}
void f80(void) {
int64_t x353 = INT64_MIN;
static volatile int64_t x355 = 1967521941878LL;
uint16_t x356 = 3U;
volatile int32_t t80 = -2;
t80 = ((x353!=(x354+x355))*x356);
if (t80 != 3) { NG(); } else { ; }
}
void f81(void) {
int32_t x357 = INT32_MIN;
uint64_t x358 = 4592108893LLU;
int64_t x359 = -1LL;
t81 = ((x357!=(x358+x359))*x360);
if (t81 != 127) { NG(); } else { ; }
}
void f82(void) {
uint64_t x365 = UINT64_MAX;
static uint8_t x367 = 81U;
uint8_t x368 = 1U;
volatile int32_t t82 = -40;
t82 = ((x365!=(x366+x367))*x368);
if (t82 != 1) { NG(); } else { ; }
}
void f83(void) {
static int8_t x369 = -7;
uint64_t x370 = 269999326245049LLU;
volatile int8_t x371 = 11;
static uint32_t x372 = 46792U;
t83 = ((x369!=(x370+x371))*x372);
if (t83 != 46792U) { NG(); } else { ; }
}
void f84(void) {
int64_t x377 = INT64_MIN;
int32_t x378 = -1;
uint64_t x380 = 45852271LLU;
static volatile uint64_t t84 = 423180457486118LLU;
t84 = ((x377!=(x378+x379))*x380);
if (t84 != 45852271LLU) { NG(); } else { ; }
}
void f85(void) {
int16_t x382 = INT16_MAX;
int32_t x383 = INT32_MIN;
volatile int16_t x384 = INT16_MIN;
int32_t t85 = 28266;
t85 = ((x381!=(x382+x383))*x384);
if (t85 != -32768) { NG(); } else { ; }
}
void f86(void) {
int8_t x385 = -6;
static int16_t x386 = INT16_MIN;
static int16_t x387 = 1332;
uint16_t x388 = UINT16_MAX;
static volatile int32_t t86 = -244100;
t86 = ((x385!=(x386+x387))*x388);
if (t86 != 65535) { NG(); } else { ; }
}
void f87(void) {
uint64_t x390 = 166540259LLU;
volatile int64_t x391 = INT64_MAX;
int32_t x392 = -1;
volatile int32_t t87 = 2;
t87 = ((x389!=(x390+x391))*x392);
if (t87 != -1) { NG(); } else { ; }
}
void f88(void) {
int64_t x393 = INT64_MAX;
int64_t x394 = INT64_MAX;
volatile int8_t x395 = -1;
int32_t x396 = INT32_MIN;
volatile int32_t t88 = INT32_MIN;
t88 = ((x393!=(x394+x395))*x396);
if (t88 != INT32_MIN) { NG(); } else { ; }
}
void f89(void) {
uint16_t x397 = 28926U;
uint16_t x398 = 917U;
volatile int64_t x399 = -414425972463202464LL;
static int16_t x400 = INT16_MIN;
int32_t t89 = -5;
t89 = ((x397!=(x398+x399))*x400);
if (t89 != -32768) { NG(); } else { ; }
}
void f90(void) {
uint16_t x401 = 396U;
uint16_t x402 = 28331U;
int8_t x403 = INT8_MIN;
volatile int32_t t90 = -3331594;
t90 = ((x401!=(x402+x403))*x404);
if (t90 != 127) { NG(); } else { ; }
}
void f91(void) {
static volatile int64_t x406 = -1LL;
uint8_t x407 = UINT8_MAX;
int64_t x408 = INT64_MIN;
int64_t t91 = INT64_MIN;
t91 = ((x405!=(x406+x407))*x408);
if (t91 != INT64_MIN) { NG(); } else { ; }
}
void f92(void) {
int8_t x409 = INT8_MAX;
uint32_t x410 = 445718355U;
int64_t x411 = -1LL;
static uint64_t x412 = 538114801094LLU;
t92 = ((x409!=(x410+x411))*x412);
if (t92 != 538114801094LLU) { NG(); } else { ; }
}
void f93(void) {
static uint16_t x413 = 1934U;
static int8_t x414 = -1;
int16_t x415 = INT16_MAX;
uint16_t x416 = 216U;
t93 = ((x413!=(x414+x415))*x416);
if (t93 != 216) { NG(); } else { ; }
}
void f94(void) {
int16_t x417 = INT16_MIN;
int16_t x419 = INT16_MIN;
int8_t x420 = -1;
static volatile int32_t t94 = 4;
t94 = ((x417!=(x418+x419))*x420);
if (t94 != 0) { NG(); } else { ; }
}
void f95(void) {
static volatile int8_t x421 = -1;
static volatile int32_t x422 = INT32_MIN;
static volatile int32_t t95 = 997;
t95 = ((x421!=(x422+x423))*x424);
if (t95 != -128) { NG(); } else { ; }
}
void f96(void) {
int64_t x425 = -46245745220364LL;
static uint16_t x426 = 29701U;
uint32_t x427 = 18811153U;
t96 = ((x425!=(x426+x427))*x428);
if (t96 != UINT64_MAX) { NG(); } else { ; }
}
void f97(void) {
int64_t x430 = -1LL;
int64_t x431 = -6309493298530LL;
int32_t x432 = 8583;
int32_t t97 = -895922966;
t97 = ((x429!=(x430+x431))*x432);
if (t97 != 8583) { NG(); } else { ; }
}
void f98(void) {
int64_t x433 = INT64_MIN;
uint64_t x434 = UINT64_MAX;
static int8_t x435 = -1;
static int64_t t98 = INT64_MAX;
t98 = ((x433!=(x434+x435))*x436);
if (t98 != INT64_MAX) { NG(); } else { ; }
}
void f99(void) {
volatile int32_t x437 = INT32_MIN;
int32_t x438 = INT32_MIN;
int8_t x440 = 1;
int32_t t99 = 544878;
t99 = ((x437!=(x438+x439))*x440);
if (t99 != 1) { NG(); } else { ; }
}
void f100(void) {
uint64_t x441 = 1215LLU;
int8_t x443 = -1;
int64_t x444 = INT64_MIN;
volatile int64_t t100 = INT64_MIN;
t100 = ((x441!=(x442+x443))*x444);
if (t100 != INT64_MIN) { NG(); } else { ; }
}
void f101(void) {
uint64_t x445 = 931LLU;
int16_t x446 = 4073;
int8_t x447 = INT8_MIN;
uint8_t x448 = UINT8_MAX;
volatile int32_t t101 = -3331867;
t101 = ((x445!=(x446+x447))*x448);
if (t101 != 255) { NG(); } else { ; }
}
void f102(void) {
static int8_t x453 = INT8_MAX;
int16_t x455 = -1;
int64_t x456 = INT64_MAX;
volatile int64_t t102 = INT64_MAX;
t102 = ((x453!=(x454+x455))*x456);
if (t102 != INT64_MAX) { NG(); } else { ; }
}
void f103(void) {
int32_t x457 = 0;
volatile int8_t x458 = INT8_MAX;
int16_t x460 = INT16_MIN;
int32_t t103 = 723;
t103 = ((x457!=(x458+x459))*x460);
if (t103 != -32768) { NG(); } else { ; }
}
void f104(void) {
int16_t x461 = 8;
uint8_t x463 = UINT8_MAX;
volatile int64_t x464 = INT64_MIN;
int64_t t104 = INT64_MIN;
t104 = ((x461!=(x462+x463))*x464);
if (t104 != INT64_MIN) { NG(); } else { ; }
}
void f105(void) {
volatile int16_t x465 = INT16_MIN;
int16_t x466 = -1;
uint8_t x467 = 5U;
int64_t x468 = INT64_MAX;
int64_t t105 = INT64_MAX;
t105 = ((x465!=(x466+x467))*x468);
if (t105 != INT64_MAX) { NG(); } else { ; }
}
void f106(void) {
uint32_t x474 = 1780271240U;
int64_t x475 = INT64_MIN;
uint8_t x476 = 56U;
static int32_t t106 = -9;
t106 = ((x473!=(x474+x475))*x476);
if (t106 != 56) { NG(); } else { ; }
}
void f107(void) {
int8_t x477 = INT8_MAX;
uint16_t x478 = 3022U;
int8_t x480 = -16;
volatile int32_t t107 = 0;
t107 = ((x477!=(x478+x479))*x480);
if (t107 != -16) { NG(); } else { ; }
}
void f108(void) {
int8_t x485 = -1;
int64_t x486 = 0LL;
int64_t x487 = INT64_MIN;
int8_t x488 = INT8_MAX;
int32_t t108 = -13;
t108 = ((x485!=(x486+x487))*x488);
if (t108 != 127) { NG(); } else { ; }
}
void f109(void) {
int32_t x493 = 0;
static int32_t x494 = 95;
uint16_t x495 = UINT16_MAX;
int8_t x496 = INT8_MIN;
static int32_t t109 = -4787;
t109 = ((x493!=(x494+x495))*x496);
if (t109 != -128) { NG(); } else { ; }
}
void f110(void) {
int32_t x497 = INT32_MIN;
uint8_t x498 = 0U;
int16_t x499 = -2631;
int32_t t110 = 58032;
t110 = ((x497!=(x498+x499))*x500);
if (t110 != -43) { NG(); } else { ; }
}
void f111(void) {
static int8_t x501 = INT8_MIN;
static int8_t x502 = INT8_MIN;
int64_t t111 = INT64_MIN;
t111 = ((x501!=(x502+x503))*x504);
if (t111 != INT64_MIN) { NG(); } else { ; }
}
void f112(void) {
static int8_t x505 = 4;
static int16_t x506 = -62;
int16_t x507 = 1;
uint64_t x508 = 0LLU;
uint64_t t112 = 1564792639549550LLU;
t112 = ((x505!=(x506+x507))*x508);
if (t112 != 0LLU) { NG(); } else { ; }
}
void f113(void) {
int32_t x513 = INT32_MIN;
int64_t x514 = 51LL;
static int32_t x515 = -861668215;
uint16_t x516 = UINT16_MAX;
int32_t t113 = 2743117;
t113 = ((x513!=(x514+x515))*x516);
if (t113 != 65535) { NG(); } else { ; }
}
void f114(void) {
int16_t x517 = -26;
uint16_t x518 = UINT16_MAX;
uint16_t x519 = UINT16_MAX;
int16_t x520 = INT16_MIN;
static int32_t t114 = 37;
t114 = ((x517!=(x518+x519))*x520);
if (t114 != -32768) { NG(); } else { ; }
}
void f115(void) {
volatile int8_t x521 = 1;
int16_t x522 = INT16_MIN;
int8_t x523 = -41;
uint16_t x524 = UINT16_MAX;
static int32_t t115 = 237098;
t115 = ((x521!=(x522+x523))*x524);
if (t115 != 65535) { NG(); } else { ; }
}
void f116(void) {
int8_t x525 = -37;
int32_t x526 = -1;
int8_t x527 = INT8_MIN;
int32_t t116 = -2707;
t116 = ((x525!=(x526+x527))*x528);
if (t116 != -128) { NG(); } else { ; }
}
void f117(void) {
int16_t x529 = INT16_MIN;
int16_t x530 = -1;
int16_t x531 = -1;
int8_t x532 = INT8_MIN;
int32_t t117 = 23783;
t117 = ((x529!=(x530+x531))*x532);
if (t117 != -128) { NG(); } else { ; }
}
void f118(void) {
volatile int8_t x533 = INT8_MIN;
int16_t x534 = -10;
int16_t x535 = INT16_MIN;
int32_t x536 = INT32_MIN;
t118 = ((x533!=(x534+x535))*x536);
if (t118 != INT32_MIN) { NG(); } else { ; }
}
void f119(void) {
uint32_t x537 = 27765939U;
int8_t x538 = -1;
uint32_t x539 = UINT32_MAX;
int16_t x540 = INT16_MIN;
volatile int32_t t119 = -13;
t119 = ((x537!=(x538+x539))*x540);
if (t119 != -32768) { NG(); } else { ; }
}
void f120(void) {
int32_t x542 = INT32_MIN;
int8_t x543 = INT8_MAX;
volatile int32_t t120 = -13998;
t120 = ((x541!=(x542+x543))*x544);
if (t120 != -32768) { NG(); } else { ; }
}
void f121(void) {
int16_t x546 = -2907;
uint16_t x547 = UINT16_MAX;
volatile uint32_t x548 = UINT32_MAX;
volatile uint32_t t121 = UINT32_MAX;
t121 = ((x545!=(x546+x547))*x548);
if (t121 != UINT32_MAX) { NG(); } else { ; }
}
void f122(void) {
int16_t x551 = -1;
int8_t x552 = INT8_MIN;
volatile int32_t t122 = -12;
t122 = ((x549!=(x550+x551))*x552);
if (t122 != -128) { NG(); } else { ; }
}
void f123(void) {
int32_t x553 = -1;
static uint64_t x554 = 142570919362959092LLU;
int8_t x556 = INT8_MAX;
volatile int32_t t123 = 1;
t123 = ((x553!=(x554+x555))*x556);
if (t123 != 127) { NG(); } else { ; }
}
void f124(void) {
int16_t x557 = INT16_MAX;
volatile int32_t x558 = INT32_MIN;
volatile int32_t t124 = INT32_MIN;
t124 = ((x557!=(x558+x559))*x560);
if (t124 != INT32_MIN) { NG(); } else { ; }
}
void f125(void) {
volatile uint16_t x561 = 5U;
volatile int16_t x563 = INT16_MIN;
int16_t x564 = -1;
volatile int32_t t125 = 2027899;
t125 = ((x561!=(x562+x563))*x564);
if (t125 != -1) { NG(); } else { ; }
}
void f126(void) {
int16_t x565 = INT16_MIN;
int8_t x566 = 1;
int8_t x567 = INT8_MAX;
uint16_t x568 = 339U;
volatile int32_t t126 = -3;
t126 = ((x565!=(x566+x567))*x568);
if (t126 != 339) { NG(); } else { ; }
}
void f127(void) {
int32_t x570 = INT32_MIN;
uint16_t x571 = 531U;
volatile int8_t x572 = 5;
int32_t t127 = -1;
t127 = ((x569!=(x570+x571))*x572);
if (t127 != 5) { NG(); } else { ; }
}
void f128(void) {
int16_t x573 = INT16_MIN;
volatile int64_t x574 = 29490083296702LL;
int32_t x575 = INT32_MIN;
volatile uint32_t t128 = UINT32_MAX;
t128 = ((x573!=(x574+x575))*x576);
if (t128 != UINT32_MAX) { NG(); } else { ; }
}
void f129(void) {
uint8_t x578 = UINT8_MAX;
volatile uint32_t x580 = 1015923U;
volatile uint32_t t129 = 17068U;
t129 = ((x577!=(x578+x579))*x580);
if (t129 != 1015923U) { NG(); } else { ; }
}
void f130(void) {
uint16_t x581 = 102U;
int32_t x583 = -9;
uint64_t x584 = 37700034877LLU;
static uint64_t t130 = 529LLU;
t130 = ((x581!=(x582+x583))*x584);
if (t130 != 37700034877LLU) { NG(); } else { ; }
}
void f131(void) {
int32_t x585 = 52596063;
volatile int8_t x586 = -1;
int16_t x587 = INT16_MIN;
static int64_t x588 = INT64_MIN;
static volatile int64_t t131 = INT64_MIN;
t131 = ((x585!=(x586+x587))*x588);
if (t131 != INT64_MIN) { NG(); } else { ; }
}
void f132(void) {
int16_t x590 = 449;
volatile uint16_t x591 = UINT16_MAX;
int8_t x592 = -1;
int32_t t132 = 318739938;
t132 = ((x589!=(x590+x591))*x592);
if (t132 != -1) { NG(); } else { ; }
}
void f133(void) {
int16_t x595 = INT16_MAX;
static int32_t x596 = 83586094;
int32_t t133 = 11905507;
t133 = ((x593!=(x594+x595))*x596);
if (t133 != 83586094) { NG(); } else { ; }
}
void f134(void) {
int64_t x599 = -1LL;
volatile int64_t x600 = INT64_MIN;
static int64_t t134 = INT64_MIN;
t134 = ((x597!=(x598+x599))*x600);
if (t134 != INT64_MIN) { NG(); } else { ; }
}
void f135(void) {
int32_t x601 = -1684303;
int16_t x602 = INT16_MIN;
static uint8_t x603 = 35U;
int64_t x604 = INT64_MIN;
static volatile int64_t t135 = INT64_MIN;
t135 = ((x601!=(x602+x603))*x604);
if (t135 != INT64_MIN) { NG(); } else { ; }
}
void f136(void) {
int64_t x606 = INT64_MIN;
volatile uint16_t x607 = 8139U;
uint8_t x608 = UINT8_MAX;
int32_t t136 = 206815961;
t136 = ((x605!=(x606+x607))*x608);
if (t136 != 255) { NG(); } else { ; }
}
void f137(void) {
volatile uint32_t x609 = 2853U;
volatile uint32_t x610 = 3737U;
uint16_t x612 = UINT16_MAX;
volatile int32_t t137 = -1;
t137 = ((x609!=(x610+x611))*x612);
if (t137 != 65535) { NG(); } else { ; }
}
void f138(void) {
uint8_t x613 = 5U;
static uint16_t x615 = 1U;
int8_t x616 = INT8_MIN;
volatile int32_t t138 = 26;
t138 = ((x613!=(x614+x615))*x616);
if (t138 != -128) { NG(); } else { ; }
}
void f139(void) {
int16_t x618 = 12911;
int32_t x619 = INT32_MIN;
int32_t t139 = 2593721;
t139 = ((x617!=(x618+x619))*x620);
if (t139 != -1) { NG(); } else { ; }
}
void f140(void) {
volatile uint16_t x621 = 13454U;
volatile int8_t x622 = INT8_MIN;
static uint8_t x623 = UINT8_MAX;
volatile int32_t t140 = 40;
t140 = ((x621!=(x622+x623))*x624);
if (t140 != 32767) { NG(); } else { ; }
}
void f141(void) {
int64_t x625 = INT64_MAX;
int8_t x626 = -13;
int8_t x627 = -1;
int16_t x628 = INT16_MIN;
volatile int32_t t141 = -493;
t141 = ((x625!=(x626+x627))*x628);
if (t141 != -32768) { NG(); } else { ; }
}
void f142(void) {
int32_t x629 = 1;
uint64_t x630 = UINT64_MAX;
int16_t x631 = 6559;
volatile int32_t t142 = INT32_MAX;
t142 = ((x629!=(x630+x631))*x632);
if (t142 != INT32_MAX) { NG(); } else { ; }
}
void f143(void) {
int8_t x633 = 0;
static volatile int32_t x634 = -1;
int16_t x636 = INT16_MIN;
t143 = ((x633!=(x634+x635))*x636);
if (t143 != 0) { NG(); } else { ; }
}
void f144(void) {
int32_t x641 = INT32_MIN;
static uint16_t x644 = 1500U;
int32_t t144 = -37;
t144 = ((x641!=(x642+x643))*x644);
if (t144 != 1500) { NG(); } else { ; }
}
void f145(void) {
volatile int64_t x645 = 4807LL;
static int64_t x647 = INT64_MAX;
uint32_t x648 = 403705941U;
uint32_t t145 = 446729580U;
t145 = ((x645!=(x646+x647))*x648);
if (t145 != 403705941U) { NG(); } else { ; }
}
void f146(void) {
static int16_t x649 = 34;
int8_t x650 = -1;
volatile int64_t x651 = -194LL;
volatile int16_t x652 = -1;
volatile int32_t t146 = 3717964;
t146 = ((x649!=(x650+x651))*x652);
if (t146 != -1) { NG(); } else { ; }
}
void f147(void) {
int8_t x654 = INT8_MAX;
int8_t x655 = INT8_MIN;
int32_t x656 = INT32_MIN;
int32_t t147 = INT32_MIN;
t147 = ((x653!=(x654+x655))*x656);
if (t147 != INT32_MIN) { NG(); } else { ; }
}
void f148(void) {
volatile int8_t x661 = -26;
int64_t x662 = -1LL;
uint8_t x663 = 3U;
volatile int64_t x664 = INT64_MIN;
volatile int64_t t148 = INT64_MIN;
t148 = ((x661!=(x662+x663))*x664);
if (t148 != INT64_MIN) { NG(); } else { ; }
}
void f149(void) {
uint32_t x665 = 7U;
int16_t x667 = 3168;
int16_t x668 = INT16_MAX;
volatile int32_t t149 = -11607180;
t149 = ((x665!=(x666+x667))*x668);
if (t149 != 32767) { NG(); } else { ; }
}
void f150(void) {
volatile int8_t x669 = INT8_MIN;
int32_t x670 = -1;
volatile uint8_t x671 = UINT8_MAX;
static int32_t x672 = 45726892;
volatile int32_t t150 = -2036959;
t150 = ((x669!=(x670+x671))*x672);
if (t150 != 45726892) { NG(); } else { ; }
}
void f151(void) {
int8_t x677 = -34;
volatile uint64_t x679 = 85687247688839068LLU;
volatile int32_t t151 = 55;
t151 = ((x677!=(x678+x679))*x680);
if (t151 != -32768) { NG(); } else { ; }
}
void f152(void) {
uint64_t x686 = 485970592025030160LLU;
int8_t x687 = INT8_MIN;
static int32_t t152 = 657577;
t152 = ((x685!=(x686+x687))*x688);
if (t152 != 0) { NG(); } else { ; }
}
void f153(void) {
int8_t x693 = INT8_MAX;
int64_t x694 = -4180137816LL;
int64_t x695 = -1LL;
static int8_t x696 = INT8_MIN;
t153 = ((x693!=(x694+x695))*x696);
if (t153 != -128) { NG(); } else { ; }
}
void f154(void) {
volatile uint8_t x697 = UINT8_MAX;
int8_t x698 = -59;
volatile uint8_t x699 = 0U;
volatile uint8_t x700 = 13U;
int32_t t154 = 119809104;
t154 = ((x697!=(x698+x699))*x700);
if (t154 != 13) { NG(); } else { ; }
}
void f155(void) {
volatile int8_t x702 = INT8_MAX;
int32_t x703 = INT32_MIN;
int64_t x704 = INT64_MAX;
int64_t t155 = INT64_MAX;
t155 = ((x701!=(x702+x703))*x704);
if (t155 != INT64_MAX) { NG(); } else { ; }
}
void f156(void) {
static int32_t x709 = -314;
volatile uint64_t x710 = 1392LLU;
int8_t x711 = INT8_MIN;
static int8_t x712 = -4;
t156 = ((x709!=(x710+x711))*x712);
if (t156 != -4) { NG(); } else { ; }
}
void f157(void) {
static int32_t x713 = INT32_MIN;
int16_t x714 = 113;
int16_t x715 = INT16_MIN;
int8_t x716 = 5;
int32_t t157 = 91368599;
t157 = ((x713!=(x714+x715))*x716);
if (t157 != 5) { NG(); } else { ; }
}
void f158(void) {
int32_t x717 = -48405715;
uint8_t x718 = 19U;
volatile int32_t x719 = -518666;
uint32_t x720 = 51565U;
volatile uint32_t t158 = 2095905221U;
t158 = ((x717!=(x718+x719))*x720);
if (t158 != 51565U) { NG(); } else { ; }
}
void f159(void) {
int16_t x721 = INT16_MIN;
static volatile uint8_t x724 = UINT8_MAX;
t159 = ((x721!=(x722+x723))*x724);
if (t159 != 255) { NG(); } else { ; }
}
void f160(void) {
int16_t x726 = -5974;
static int32_t x727 = -15495207;
static volatile int32_t x728 = INT32_MIN;
t160 = ((x725!=(x726+x727))*x728);
if (t160 != INT32_MIN) { NG(); } else { ; }
}
void f161(void) {
static volatile uint64_t x729 = UINT64_MAX;
static int32_t x730 = 4;
uint8_t x731 = 21U;
volatile uint8_t x732 = 3U;
t161 = ((x729!=(x730+x731))*x732);
if (t161 != 3) { NG(); } else { ; }
}
void f162(void) {
uint8_t x733 = 11U;
volatile int64_t x734 = INT64_MIN;
static int64_t x735 = 662LL;
int64_t x736 = 4537LL;
int64_t t162 = 22529030842031LL;
t162 = ((x733!=(x734+x735))*x736);
if (t162 != 4537LL) { NG(); } else { ; }
}
void f163(void) {
uint16_t x737 = 698U;
int8_t x738 = 28;
int16_t x739 = INT16_MAX;
int8_t x740 = -1;
t163 = ((x737!=(x738+x739))*x740);
if (t163 != -1) { NG(); } else { ; }
}
void f164(void) {
volatile int32_t x745 = -1;
int64_t x746 = INT64_MIN;
static int64_t x747 = INT64_MAX;
int32_t t164 = -14751;
t164 = ((x745!=(x746+x747))*x748);
if (t164 != 0) { NG(); } else { ; }
}
void f165(void) {
int64_t x750 = INT64_MIN;
int32_t x751 = INT32_MAX;
int32_t t165 = 24845;
t165 = ((x749!=(x750+x751))*x752);
if (t165 != -128) { NG(); } else { ; }
}
void f166(void) {
int16_t x753 = INT16_MAX;
static int8_t x754 = INT8_MIN;
int32_t x755 = -1;
uint32_t x756 = 29255977U;
uint32_t t166 = 35622913U;
t166 = ((x753!=(x754+x755))*x756);
if (t166 != 29255977U) { NG(); } else { ; }
}
void f167(void) {
static volatile int16_t x758 = -1;
int64_t x760 = INT64_MIN;
t167 = ((x757!=(x758+x759))*x760);
if (t167 != INT64_MIN) { NG(); } else { ; }
}
void f168(void) {
uint16_t x761 = UINT16_MAX;
static int8_t x763 = INT8_MAX;
uint16_t x764 = 2917U;
volatile int32_t t168 = 1965;
t168 = ((x761!=(x762+x763))*x764);
if (t168 != 2917) { NG(); } else { ; }
}
void f169(void) {
int32_t x765 = -1;
static int16_t x766 = -1;
volatile int16_t x767 = 1319;
uint64_t x768 = UINT64_MAX;
uint64_t t169 = UINT64_MAX;
t169 = ((x765!=(x766+x767))*x768);
if (t169 != UINT64_MAX) { NG(); } else { ; }
}
void f170(void) {
int16_t x769 = INT16_MIN;
int16_t x770 = -95;
int64_t x771 = -1LL;
volatile int32_t x772 = 1330656;
volatile int32_t t170 = -218;
t170 = ((x769!=(x770+x771))*x772);
if (t170 != 1330656) { NG(); } else { ; }
}
void f171(void) {
int32_t x773 = -53144;
int32_t x776 = INT32_MIN;
int32_t t171 = INT32_MIN;
t171 = ((x773!=(x774+x775))*x776);
if (t171 != INT32_MIN) { NG(); } else { ; }
}
void f172(void) {
uint8_t x777 = 0U;
uint16_t x778 = 6603U;
volatile uint16_t x779 = UINT16_MAX;
static int16_t x780 = INT16_MAX;
int32_t t172 = -1;
t172 = ((x777!=(x778+x779))*x780);
if (t172 != 32767) { NG(); } else { ; }
}
void f173(void) {
volatile uint64_t x781 = 485572377414073201LLU;
uint64_t x782 = 213406311464LLU;
uint8_t x783 = UINT8_MAX;
uint64_t x784 = 1LLU;
static volatile uint64_t t173 = 360125885473781368LLU;
t173 = ((x781!=(x782+x783))*x784);
if (t173 != 1LLU) { NG(); } else { ; }
}
void f174(void) {
uint32_t x785 = UINT32_MAX;
volatile uint32_t x786 = 8U;
t174 = ((x785!=(x786+x787))*x788);
if (t174 != -128) { NG(); } else { ; }
}
void f175(void) {
int64_t x789 = INT64_MAX;
uint8_t x791 = UINT8_MAX;
t175 = ((x789!=(x790+x791))*x792);
if (t175 != -1LL) { NG(); } else { ; }
}
void f176(void) {
volatile int32_t x793 = 15166762;
int16_t x795 = 1844;
uint32_t t176 = 917385124U;
t176 = ((x793!=(x794+x795))*x796);
if (t176 != 709443U) { NG(); } else { ; }
}
void f177(void) {
int64_t x797 = -1LL;
uint64_t x798 = 524713516299665757LLU;
volatile int64_t t177 = INT64_MIN;
t177 = ((x797!=(x798+x799))*x800);
if (t177 != INT64_MIN) { NG(); } else { ; }
}
void f178(void) {
uint16_t x801 = UINT16_MAX;
uint32_t x802 = UINT32_MAX;
static volatile int16_t x803 = INT16_MIN;
t178 = ((x801!=(x802+x803))*x804);
if (t178 != -1) { NG(); } else { ; }
}
void f179(void) {
int8_t x805 = -1;
volatile int32_t x806 = INT32_MIN;
uint16_t x807 = 326U;
int8_t x808 = INT8_MIN;
static volatile int32_t t179 = 5;
t179 = ((x805!=(x806+x807))*x808);
if (t179 != -128) { NG(); } else { ; }
}
void f180(void) {
int8_t x809 = INT8_MIN;
static uint64_t x812 = 207777686LLU;
t180 = ((x809!=(x810+x811))*x812);
if (t180 != 207777686LLU) { NG(); } else { ; }
}
void f181(void) {
static int32_t x813 = INT32_MAX;
volatile int16_t x814 = INT16_MIN;
static int32_t x815 = -1;
static volatile int64_t x816 = -1LL;
int64_t t181 = 5556LL;
t181 = ((x813!=(x814+x815))*x816);
if (t181 != -1LL) { NG(); } else { ; }
}
void f182(void) {
int8_t x818 = 3;
uint16_t x820 = UINT16_MAX;
volatile int32_t t182 = 1028477142;
t182 = ((x817!=(x818+x819))*x820);
if (t182 != 65535) { NG(); } else { ; }
}
void f183(void) {
volatile uint64_t x822 = 16790449853871LLU;
uint64_t x823 = UINT64_MAX;
t183 = ((x821!=(x822+x823))*x824);
if (t183 != INT64_MIN) { NG(); } else { ; }
}
void f184(void) {
static int16_t x825 = INT16_MAX;
int16_t x826 = -12;
t184 = ((x825!=(x826+x827))*x828);
if (t184 != 619145U) { NG(); } else { ; }
}
void f185(void) {
int32_t x833 = -1;
uint8_t x834 = UINT8_MAX;
uint16_t x835 = UINT16_MAX;
uint8_t x836 = UINT8_MAX;
volatile int32_t t185 = 476759317;
t185 = ((x833!=(x834+x835))*x836);
if (t185 != 255) { NG(); } else { ; }
}
void f186(void) {
int8_t x837 = 23;
uint8_t x838 = 2U;
int8_t x839 = -1;
static int64_t x840 = INT64_MIN;
t186 = ((x837!=(x838+x839))*x840);
if (t186 != INT64_MIN) { NG(); } else { ; }
}
void f187(void) {
int64_t x841 = INT64_MIN;
uint64_t x842 = 67479991790LLU;
static uint8_t x843 = UINT8_MAX;
int32_t x844 = 75374055;
volatile int32_t t187 = -27580231;
t187 = ((x841!=(x842+x843))*x844);
if (t187 != 75374055) { NG(); } else { ; }
}
void f188(void) {
int32_t x845 = -1;
t188 = ((x845!=(x846+x847))*x848);
if (t188 != -32768) { NG(); } else { ; }
}
void f189(void) {
int16_t x850 = INT16_MIN;
int32_t x851 = -493;
uint32_t x852 = UINT32_MAX;
static uint32_t t189 = UINT32_MAX;
t189 = ((x849!=(x850+x851))*x852);
if (t189 != UINT32_MAX) { NG(); } else { ; }
}
void f190(void) {
static uint8_t x853 = 1U;
static volatile int32_t t190 = 202;
t190 = ((x853!=(x854+x855))*x856);
if (t190 != 95) { NG(); } else { ; }
}
void f191(void) {
static uint8_t x857 = UINT8_MAX;
int64_t x858 = -1LL;
int8_t x859 = INT8_MIN;
int32_t t191 = 5;
t191 = ((x857!=(x858+x859))*x860);
if (t191 != 4) { NG(); } else { ; }
}
void f192(void) {
int64_t x861 = INT64_MAX;
static int16_t x862 = 18;
static uint16_t x864 = UINT16_MAX;
t192 = ((x861!=(x862+x863))*x864);
if (t192 != 65535) { NG(); } else { ; }
}
void f193(void) {
static int64_t x865 = INT64_MIN;
int8_t x866 = 52;
int32_t t193 = 72;
t193 = ((x865!=(x866+x867))*x868);
if (t193 != -1) { NG(); } else { ; }
}
void f194(void) {
uint32_t x873 = UINT32_MAX;
static volatile uint16_t x875 = 15U;
int32_t x876 = INT32_MAX;
volatile int32_t t194 = INT32_MAX;
t194 = ((x873!=(x874+x875))*x876);
if (t194 != INT32_MAX) { NG(); } else { ; }
}
void f195(void) {
int8_t x877 = -16;
static int64_t x878 = -3024366534666043111LL;
static int16_t x879 = INT16_MIN;
volatile int32_t t195 = 117;
t195 = ((x877!=(x878+x879))*x880);
if (t195 != -1) { NG(); } else { ; }
}
void f196(void) {
int8_t x881 = -1;
volatile int64_t x882 = INT64_MIN;
uint16_t x883 = UINT16_MAX;
int64_t x884 = INT64_MIN;
static int64_t t196 = INT64_MIN;
t196 = ((x881!=(x882+x883))*x884);
if (t196 != INT64_MIN) { NG(); } else { ; }
}
void f197(void) {
int32_t x885 = -39466474;
int64_t x886 = INT64_MIN;
static uint64_t x887 = 0LLU;
static int32_t x888 = INT32_MAX;
t197 = ((x885!=(x886+x887))*x888);
if (t197 != INT32_MAX) { NG(); } else { ; }
}
void f198(void) {
int64_t x889 = -1LL;
int16_t x891 = 12;
uint64_t x892 = 3250172535760711LLU;
volatile uint64_t t198 = 19724269LLU;
t198 = ((x889!=(x890+x891))*x892);
if (t198 != 3250172535760711LLU) { NG(); } else { ; }
}
void f199(void) {
volatile int16_t x893 = 219;
int64_t x894 = -1LL;
volatile int32_t t199 = 152;
t199 = ((x893!=(x894+x895))*x896);
if (t199 != 65535) { NG(); } else { ; }
}
int main(void) {
f0();
f1();
f2();
f3();
f4();
f5();
f6();
f7();
f8();
f9();
f10();
f11();
f12();
f13();
f14();
f15();
f16();
f17();
f18();
f19();
f20();
f21();
f22();
f23();
f24();
f25();
f26();
f27();
f28();
f29();
f30();
f31();
f32();
f33();
f34();
f35();
f36();
f37();
f38();
f39();
f40();
f41();
f42();
f43();
f44();
f45();
f46();
f47();
f48();
f49();
f50();
f51();
f52();
f53();
f54();
f55();
f56();
f57();
f58();
f59();
f60();
f61();
f62();
f63();
f64();
f65();
f66();
f67();
f68();
f69();
f70();
f71();
f72();
f73();
f74();
f75();
f76();
f77();
f78();
f79();
f80();
f81();
f82();
f83();
f84();
f85();
f86();
f87();
f88();
f89();
f90();
f91();
f92();
f93();
f94();
f95();
f96();
f97();
f98();
f99();
f100();
f101();
f102();
f103();
f104();
f105();
f106();
f107();
f108();
f109();
f110();
f111();
f112();
f113();
f114();
f115();
f116();
f117();
f118();
f119();
f120();
f121();
f122();
f123();
f124();
f125();
f126();
f127();
f128();
f129();
f130();
f131();
f132();
f133();
f134();
f135();
f136();
f137();
f138();
f139();
f140();
f141();
f142();
f143();
f144();
f145();
f146();
f147();
f148();
f149();
f150();
f151();
f152();
f153();
f154();
f155();
f156();
f157();
f158();
f159();
f160();
f161();
f162();
f163();
f164();
f165();
f166();
f167();
f168();
f169();
f170();
f171();
f172();
f173();
f174();
f175();
f176();
f177();
f178();
f179();
f180();
f181();
f182();
f183();
f184();
f185();
f186();
f187();
f188();
f189();
f190();
f191();
f192();
f193();
f194();
f195();
f196();
f197();
f198();
f199();
return 0;
}
| 18.606586 | 58 | 0.585384 |
a1a94952e25eb40a577fc06c9dadb0ae6ab77998 | 394 | swift | Swift | TableViewKit/TableViewKitViewController.swift | lorencr7/TableViewKit | 909c0493bd0ccba4212c764b04403993faaca2ad | [
"MIT"
] | 110 | 2016-09-03T21:40:57.000Z | 2021-10-29T21:06:35.000Z | TableViewKit/TableViewKitViewController.swift | lorencr7/TableViewKit | 909c0493bd0ccba4212c764b04403993faaca2ad | [
"MIT"
] | 43 | 2016-08-29T09:55:14.000Z | 2019-11-11T14:23:22.000Z | TableViewKit/TableViewKitViewController.swift | lorencr7/TableViewKit | 909c0493bd0ccba4212c764b04403993faaca2ad | [
"MIT"
] | 18 | 2016-09-16T17:51:28.000Z | 2020-05-13T18:50:01.000Z | import UIKit
/// Helper for using TableViewKit inheriting from a UITableViewController
/// It can be used with a XIB file or Storyboards
open class TableViewKitViewController: UITableViewController {
open var tableViewManager: TableViewManager!
override open func viewDidLoad() {
super.viewDidLoad()
tableViewManager = TableViewManager(tableView: tableView)
}
}
| 26.266667 | 73 | 0.753807 |
d07ab4cb87004094114cd93591f57e8bd102d8d2 | 18,917 | css | CSS | widgets/common/assets/gradients/glassy/glassyGhostWhite/glassyGhostWhite6.css | idutta2007/yiigems | 4278e750db1f19d50615a5acc7a93c8802ff5618 | [
"MIT"
] | 1 | 2015-11-02T14:12:02.000Z | 2015-11-02T14:12:02.000Z | widgets/common/assets/gradients/glassy/glassyGhostWhite/glassyGhostWhite6.css | idutta2007/yiigems | 4278e750db1f19d50615a5acc7a93c8802ff5618 | [
"MIT"
] | 1 | 2015-11-01T08:58:53.000Z | 2016-01-02T09:25:49.000Z | widgets/common/assets/gradients/glassy/glassyGhostWhite/glassyGhostWhite6.css | idutta2007/yiigems | 4278e750db1f19d50615a5acc7a93c8802ff5618 | [
"MIT"
] | null | null | null | .background_glassyGhostWhite6,
.hover_background_glassyGhostWhite6:hover,
.active_background_glassyGhostWhite6:active:hover {
background: #0000df;
background-image: -moz-linear-gradient(top, rgb(0, 0, 201) 0%, rgb(0, 0, 179) 50%, rgb(0, 0, 156) 55%, rgb(0, 0, 223) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 0, 201)), color-stop(50%, rgb(0, 0, 179)), color-stop(55%, rgb(0, 0, 156)), color-stop(100%, rgb(0, 0, 223)));
background-image: -webkit-linear-gradient(top, rgb(0, 0, 201) 0%, rgb(0, 0, 179) 50%, rgb(0, 0, 156) 55%, rgb(0, 0, 223) 100%);
background-image: -o-linear-gradient(top, rgb(0, 0, 201) 0%, rgb(0, 0, 179) 50%, rgb(0, 0, 156) 55%, rgb(0, 0, 223) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 0, 201) 0%, rgb(0, 0, 179) 50%, rgb(0, 0, 156) 55%, rgb(0, 0, 223) 100%);
background-image: linear-gradient(to bottom, rgb(0, 0, 201) 0%, rgb(0, 0, 179) 50%, rgb(0, 0, 156) 55%, rgb(0, 0, 223) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000c9', endColorstr='#0000df',GradientType=0 );
}
.background_glassyGhostWhite6h,
.hover_background_glassyGhostWhite6h:hover,
.active_background_glassyGhostWhite6h:active:hover {
background: #0000df;
background-image: -moz-linear-gradient(top, rgb(0, 0, 241) 0%, rgb(0, 0, 214) 50%, rgb(0, 0, 187) 55%, rgb(13, 13, 255) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 0, 241)), color-stop(50%, rgb(0, 0, 214)), color-stop(55%, rgb(0, 0, 187)), color-stop(100%, rgb(13, 13, 255)));
background-image: -webkit-linear-gradient(top, rgb(0, 0, 241) 0%, rgb(0, 0, 214) 50%, rgb(0, 0, 187) 55%, rgb(13, 13, 255) 100%);
background-image: -o-linear-gradient(top, rgb(0, 0, 241) 0%, rgb(0, 0, 214) 50%, rgb(0, 0, 187) 55%, rgb(13, 13, 255) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 0, 241) 0%, rgb(0, 0, 214) 50%, rgb(0, 0, 187) 55%, rgb(13, 13, 255) 100%);
background-image: linear-gradient(to bottom, rgb(0, 0, 241) 0%, rgb(0, 0, 214) 50%, rgb(0, 0, 187) 55%, rgb(13, 13, 255) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000f1', endColorstr='#0d0dff',GradientType=0 );
}
.background_glassyGhostWhite6a,
.hover_background_glassyGhostWhite6a:hover,
.active_background_glassyGhostWhite6a:active:hover {
background: #0000df;
background-image: -moz-linear-gradient(top, rgb(13, 13, 255) 0%, rgb(0, 0, 187) 50%, rgb(0, 0, 214) 55%, rgb(0, 0, 241) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(13, 13, 255)), color-stop(50%, rgb(0, 0, 187)), color-stop(55%, rgb(0, 0, 214)), color-stop(100%, rgb(0, 0, 241)));
background-image: -webkit-linear-gradient(top, rgb(13, 13, 255) 0%, rgb(0, 0, 187) 50%, rgb(0, 0, 214) 55%, rgb(0, 0, 241) 100%);
background-image: -o-linear-gradient(top, rgb(13, 13, 255) 0%, rgb(0, 0, 187) 50%, rgb(0, 0, 214) 55%, rgb(0, 0, 241) 100%);
background-image: -ms-linear-gradient(top, rgb(13, 13, 255) 0%, rgb(0, 0, 187) 50%, rgb(0, 0, 214) 55%, rgb(0, 0, 241) 100%);
background-image: linear-gradient(to bottom, rgb(13, 13, 255) 0%, rgb(0, 0, 187) 50%, rgb(0, 0, 214) 55%, rgb(0, 0, 241) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d0dff', endColorstr='#0000f1',GradientType=0 );
}
.background_glassyGhostWhite6s,
.hover_background_glassyGhostWhite6s:hover,
.active_background_glassyGhostWhite6s:active:hover {
background: #0000df;
background-image: -moz-linear-gradient(top, rgb(46, 46, 255) 0%, rgb(13, 13, 255) 50%, rgb(0, 0, 234) 55%, rgb(80, 80, 255) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(46, 46, 255)), color-stop(50%, rgb(13, 13, 255)), color-stop(55%, rgb(0, 0, 234)), color-stop(100%, rgb(80, 80, 255)));
background-image: -webkit-linear-gradient(top, rgb(46, 46, 255) 0%, rgb(13, 13, 255) 50%, rgb(0, 0, 234) 55%, rgb(80, 80, 255) 100%);
background-image: -o-linear-gradient(top, rgb(46, 46, 255) 0%, rgb(13, 13, 255) 50%, rgb(0, 0, 234) 55%, rgb(80, 80, 255) 100%);
background-image: -ms-linear-gradient(top, rgb(46, 46, 255) 0%, rgb(13, 13, 255) 50%, rgb(0, 0, 234) 55%, rgb(80, 80, 255) 100%);
background-image: linear-gradient(to bottom, rgb(46, 46, 255) 0%, rgb(13, 13, 255) 50%, rgb(0, 0, 234) 55%, rgb(80, 80, 255) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e2eff', endColorstr='#5050ff',GradientType=0 );
}
.background_color_glassyGhostWhite6,
.hover_background_color_glassyGhostWhite6:hover,
.active_background_color_glassyGhostWhite6:active:hover {
background-color:#0000df;
}
.background_first_color_glassyGhostWhite6,
.hover_background_first_color_glassyGhostWhite6:hover,
.active_background_first_color_glassyGhostWhite6:active:hover {
background-color:#0000c9;
}
.background_last_color_glassyGhostWhite6,
.hover_background_last_color_glassyGhostWhite6:hover,
.active_background_color_last_glassyGhostWhite6:active:hover {
background-color:#0000df;
}
/* ------------------------------ color settings -------------------------------*/
.color_glassyGhostWhite6,
.hover_color_glassyGhostWhite6:hover,
.active_color_glassyGhostWhite6:active:hover {
color: #c8c8c8;
}
.color_glassyGhostWhite6h,
.hover_color_glassyGhostWhite6h:hover,
.active_color_glassyGhostWhite6h:active:hover {
color: #c8c8c8;
}
.color_glassyGhostWhite6a,
.hover_color_glassyGhostWhite6a:hover,
.active_color_glassyGhostWhite6a:active:hover {
color: #ff0;
}
.color_glassyGhostWhite6s,
.hover_color_glassyGhostWhite6s:hover,
.active_color_glassyGhostWhite6s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_glassyGhostWhite6,
.hover_border_glassyGhostWhite6:hover,
.active_border_glassyGhostWhite6:active:hover {
border-color: #0000a1 #000086 #000086 #0000a1;
}
.border_glassyGhostWhite6h,
.hover_border_glassyGhostWhite6h:hover,
.active_border_glassyGhostWhite6h:active:hover {
border-color: #0000a1 #000086 #000086 #0000a1;
}
.border_glassyGhostWhite6a,
.hover_border_glassyGhostWhite6a:hover,
.active_border_glassyGhostWhite6a:active:hover {
border-color: #00007d #00007d #00007d #00007d;
}
.border_glassyGhostWhite6s,
.hover_border_glassyGhostWhite6s:hover,
.active_border_glassyGhostWhite6s:active:hover {
border-color: #00007d #00007d #00007d #00007d;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_glassyGhostWhite6,
.hover_shadow_expand_glassyGhostWhite6:hover,
.active_shadow_expand_glassyGhostWhite6:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 223, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 223, .39);
box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 223, .39);
}
.shadow_expand_glassyGhostWhite6h,
.hover_shadow_expand_glassyGhostWhite6h:hover,
.active_shadow_expand_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(13, 13, 255, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(13, 13, 255, .50);
box-shadow: 0em 0em 1em 0.25em rgba(13, 13, 255, .50);
}
.shadow_expand_glassyGhostWhite6a,
.hover_shadow_expand_glassyGhostWhite6a:hover,
.active_shadow_expand_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 241, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 241, .63);
box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 241, .63);
}
.shadow_expand_glassyGhostWhite6s,
.hover_shadow_expand_glassyGhostWhite6s:hover,
.active_shadow_expand_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 241, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 241, .78);
box-shadow: 0em 0em 1em 0.25em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_glassyGhostWhite6,
.hover_shadow_left_glassyGhostWhite6:hover,
.active_shadow_left_glassyGhostWhite6:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 223, .39);
box-shadow: -0.5em -0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_left_glassyGhostWhite6h,
.hover_shadow_left_glassyGhostWhite6h:hover,
.active_shadow_left_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(13, 13, 255, .50);
box-shadow: -0.5em -0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_left_glassyGhostWhite6a,
.hover_shadow_left_glassyGhostWhite6a:hover,
.active_shadow_left_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .63);
box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_left_glassyGhostWhite6s,
.hover_shadow_left_glassyGhostWhite6s:hover,
.active_shadow_left_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .78);
box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_glassyGhostWhite6,
.hover_shadow_right_glassyGhostWhite6:hover,
.active_shadow_right_glassyGhostWhite6:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 0, 223, .39);
box-shadow: 0.5em 0em 1em rgba(0, 0, 223, .39);
}
.shadow_right_glassyGhostWhite6h,
.hover_shadow_right_glassyGhostWhite6h:hover,
.active_shadow_right_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(13, 13, 255, .50);
box-shadow: 0.5em 0em 1em rgba(13, 13, 255, .50);
}
.shadow_right_glassyGhostWhite6a,
.hover_shadow_right_glassyGhostWhite6a:hover,
.active_shadow_right_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 0, 241, .63);
box-shadow: 0.5em 0em 1em rgba(0, 0, 241, .63);
}
.shadow_right_glassyGhostWhite6s,
.hover_shadow_right_glassyGhostWhite6s:hover,
.active_shadow_right_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 0, 241, .78);
box-shadow: 0.5em 0em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_glassyGhostWhite6,
.hover_shadow_top_glassyGhostWhite6:hover,
.active_shadow_top_glassyGhostWhite6:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 0, 223, .39);
box-shadow: 0em -0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_top_glassyGhostWhite6h,
.hover_shadow_top_glassyGhostWhite6h:hover,
.active_shadow_top_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(13, 13, 255, .50);
box-shadow: 0em -0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_top_glassyGhostWhite6a,
.hover_shadow_top_glassyGhostWhite6a:hover,
.active_shadow_top_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 0, 241, .63);
box-shadow: 0em -0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_top_glassyGhostWhite6s,
.hover_shadow_top_glassyGhostWhite6s:hover,
.active_shadow_top_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 0, 241, .78);
box-shadow: 0em -0.5em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_glassyGhostWhite6,
.hover_shadow_bottom_glassyGhostWhite6:hover,
.active_shadow_bottom_glassyGhostWhite6:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 0, 223, .39);
box-shadow: 0em 0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_bottom_glassyGhostWhite6h,
.hover_shadow_bottom_glassyGhostWhite6h:hover,
.active_shadow_bottom_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(13, 13, 255, .50);
box-shadow: 0em 0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_bottom_glassyGhostWhite6a,
.hover_shadow_bottom_glassyGhostWhite6a:hover,
.active_shadow_bottom_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 0, 241, .63);
box-shadow: 0em 0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_bottom_glassyGhostWhite6s,
.hover_shadow_bottom_glassyGhostWhite6s:hover,
.active_shadow_bottom_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 0, 241, .78);
box-shadow: 0em 0.5em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_glassyGhostWhite6,
.hover_shadow_top_left_glassyGhostWhite6:hover,
.active_shadow_top_left_glassyGhostWhite6:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 223, .39);
box-shadow: -0.5em -0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_top_left_glassyGhostWhite6h,
.hover_shadow_top_left_glassyGhostWhite6h:hover,
.active_shadow_top_left_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(13, 13, 255, .50);
box-shadow: -0.5em -0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_top_left_glassyGhostWhite6a,
.hover_shadow_top_left_glassyGhostWhite6a:hover,
.active_shadow_top_left_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .63);
box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_top_left_glassyGhostWhite6s,
.hover_shadow_top_left_glassyGhostWhite6s:hover,
.active_shadow_top_left_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .78);
box-shadow: -0.5em -0.5em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_glassyGhostWhite6,
.hover_shadow_top_right_glassyGhostWhite6:hover,
.active_shadow_top_right_glassyGhostWhite6:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 0, 223, .39);
box-shadow: 0.5em -0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_top_right_glassyGhostWhite6h,
.hover_shadow_top_right_glassyGhostWhite6h:hover,
.active_shadow_top_right_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(13, 13, 255, .50);
box-shadow: 0.5em -0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_top_right_glassyGhostWhite6a,
.hover_shadow_top_right_glassyGhostWhite6a:hover,
.active_shadow_top_right_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 0, 241, .63);
box-shadow: 0.5em -0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_top_right_glassyGhostWhite6s,
.hover_shadow_top_right_glassyGhostWhite6s:hover,
.active_shadow_top_right_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 0, 241, .78);
box-shadow: 0.5em -0.5em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_glassyGhostWhite6,
.hover_shadow_bottom_left_glassyGhostWhite6:hover,
.active_shadow_bottom_left_glassyGhostWhite6:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 0, 223, .39);
box-shadow: -0.5em 0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_bottom_left_glassyGhostWhite6h,
.hover_shadow_bottom_left_glassyGhostWhite6h:hover,
.active_shadow_bottom_left_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(13, 13, 255, .50);
box-shadow: -0.5em 0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_bottom_left_glassyGhostWhite6a,
.hover_shadow_bottom_left_glassyGhostWhite6a:hover,
.active_shadow_bottom_left_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 0, 241, .63);
box-shadow: -0.5em 0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_bottom_left_glassyGhostWhite6s,
.hover_shadow_bottom_left_glassyGhostWhite6s:hover,
.active_shadow_bottom_left_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 0, 241, .78);
box-shadow: -0.5em 0.5em 1em rgba(0, 0, 241, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_glassyGhostWhite6,
.hover_shadow_bottom_right_glassyGhostWhite6:hover,
.active_shadow_bottom_right_glassyGhostWhite6:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 0, 223, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 0, 223, .39);
box-shadow: 0.5em 0.5em 1em rgba(0, 0, 223, .39);
}
.shadow_bottom_right_glassyGhostWhite6h,
.hover_shadow_bottom_right_glassyGhostWhite6h:hover,
.active_shadow_bottom_right_glassyGhostWhite6h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(13, 13, 255, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(13, 13, 255, .50);
box-shadow: 0.5em 0.5em 1em rgba(13, 13, 255, .50);
}
.shadow_bottom_right_glassyGhostWhite6a,
.hover_shadow_bottom_right_glassyGhostWhite6a:hover,
.active_shadow_bottom_right_glassyGhostWhite6a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 0, 241, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 0, 241, .63);
box-shadow: 0.5em 0.5em 1em rgba(0, 0, 241, .63);
}
.shadow_bottom_right_glassyGhostWhite6s,
.hover_shadow_bottom_right_glassyGhostWhite6s:hover,
.active_shadow_bottom_right_glassyGhostWhite6s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 0, 241, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 0, 241, .78);
box-shadow: 0.5em 0.5em 1em rgba(0, 0, 241, .78);
} | 45.364508 | 208 | 0.687371 |
85765036a160a0bc8cb256a379ca9cf16ffc8ccf | 944 | js | JavaScript | www/js/about.js | thammaratrud/CRM | 79f187bd2c9dd4f4d7bbf132afb53c947ff315e0 | [
"MIT"
] | null | null | null | www/js/about.js | thammaratrud/CRM | 79f187bd2c9dd4f4d7bbf132afb53c947ff315e0 | [
"MIT"
] | null | null | null | www/js/about.js | thammaratrud/CRM | 79f187bd2c9dd4f4d7bbf132afb53c947ff315e0 | [
"MIT"
] | null | null | null | 'use strict';
myApp.controller('aboutController', ['$scope', '$cordovaSocialSharing',
function ($scope, $cordovaSocialSharing) {
$scope.shareAnywhere = function (message, image, link) {
$cordovaSocialSharing.share(" ", message, image, link).then(function (result) {
$cordovaSocialSharing.shareAnywhere(message, image, link);
}, function (error) {
alert("Cannot share on shareAnywhere");
});
}
$scope.shareViaTwitter = function (message, image, link) {
$cordovaSocialSharing.canShareVia("twitter", message, image, link).then(function (result) {
$cordovaSocialSharing.shareViaTwitter(message, image, link);
}, function (error) {
alert("Cannot share on Twitter");
});
}
$scope.message = function () {
alert('Tutorial comming soon!!!')
}
}]) | 39.333333 | 103 | 0.572034 |
712d877faa67f0c486425cba0b9fd3f8a2af758f | 1,050 | ts | TypeScript | src/todos/todos.service.ts | nkartchner/NestTs_Todo | 2d0e4e13e78bf9b0f85d384162c48baf8be0d320 | [
"MIT"
] | null | null | null | src/todos/todos.service.ts | nkartchner/NestTs_Todo | 2d0e4e13e78bf9b0f85d384162c48baf8be0d320 | [
"MIT"
] | null | null | null | src/todos/todos.service.ts | nkartchner/NestTs_Todo | 2d0e4e13e78bf9b0f85d384162c48baf8be0d320 | [
"MIT"
] | null | null | null | import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { Repository, UpdateResult } from 'typeorm';
import { CreateTodoDto } from './dto/create-todo.dto';
import { Todo } from './todo.entity';
@Injectable()
export class TodosService {
constructor(
@InjectRepository(Todo) private todoRepository: Repository<Todo>,
) {}
create(createTodoDto: CreateTodoDto): Promise<Todo> {
const todo = new Todo();
todo.task = createTodoDto.task;
return this.todoRepository.save(todo);
}
findAll(): Promise<Todo[]> {
return this.todoRepository.find();
}
findOne(id: string): Promise<Todo> {
return this.todoRepository.findOne(id);
}
async removeOne(id: string): Promise<void> {
await this.todoRepository.delete(id);
}
update(todo: Partial<Pick<Todo, 'id'>>): Promise<UpdateResult> {
return this.todoRepository.update(todo.id, {
...todo,
updatedAt: Date.now(),
});
}
}
| 27.631579 | 73 | 0.627619 |
2028234f1774873e76f3371b28fa460c6046e46a | 343 | css | CSS | stories/Forms.css | skut21x-ga/component-library-project | ff8b9c8b61fef298129385ced62775b151b47c51 | [
"MIT"
] | null | null | null | stories/Forms.css | skut21x-ga/component-library-project | ff8b9c8b61fef298129385ced62775b151b47c51 | [
"MIT"
] | 4 | 2021-03-10T13:16:00.000Z | 2022-02-19T00:02:47.000Z | stories/Forms.css | skut21x-ga/component-library-project | ff8b9c8b61fef298129385ced62775b151b47c51 | [
"MIT"
] | null | null | null | form {
padding: 5px 25px;
display: flex;
}
.text {
font-family: Lato;
font-size: 12px;
margin: 5px 0px 2px 0px;
margin-right: 20px;
}
input {
color: gray;
height: 100%;
margin: 4px 0 2px 0px;
padding: 0px 0px 0px 10px;
}
.form-small {
height: 35px;
}
.form-medium {
height: 40px;
}
.form-large {
height: 50px;
}
| 11.064516 | 28 | 0.609329 |
9c1e9c384218da2c07226f2d349042e224379c93 | 3,343 | js | JavaScript | message/message.min.js | hassan-devDz/hassanreact | bb30f1f077aa967aeb7eb3c7b6b46bb6cfcf6536 | [
"MIT"
] | null | null | null | message/message.min.js | hassan-devDz/hassanreact | bb30f1f077aa967aeb7eb3c7b6b46bb6cfcf6536 | [
"MIT"
] | null | null | null | message/message.min.js | hassan-devDz/hassanreact | bb30f1f077aa967aeb7eb3c7b6b46bb6cfcf6536 | [
"MIT"
] | null | null | null | this.hassanreact=this.hassanreact||{},this.hassanreact.message=function(e,t,n){"use strict";function r(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var o=r(t);function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function c(e,t){return(c=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&c(e,t)}function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p(e,t){if(t&&("object"===l(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return u(e)}function f(e){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function y(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}var h,m,b,v=function(e){a(m,e);var t,r,c,l,u,h=(t=m,r=y(),function(){var e,n=f(t);if(r){var o=f(this).constructor;e=Reflect.construct(n,arguments,o)}else e=n.apply(this,arguments);return p(this,e)});function m(){return s(this,m),h.apply(this,arguments)}return c=m,(l=[{key:"getContent",value:function(){if(this.props.content)return n.ObjectUtils.getJSXElement(this.props.content,this.props);var e=n.classNames("p-inline-message-icon pi",{"pi-info-circle":"info"===this.props.severity,"pi-exclamation-triangle":"warn"===this.props.severity,"pi-times-circle":"error"===this.props.severity,"pi-check":"success"===this.props.severity});return o.default.createElement(o.default.Fragment,null,o.default.createElement("span",{className:e}),o.default.createElement("span",{className:"p-inline-message-text"},this.props.text))}},{key:"render",value:function(){var e=n.classNames("p-inline-message p-component",{"p-inline-message-info":"info"===this.props.severity,"p-inline-message-warn":"warn"===this.props.severity,"p-inline-message-error":"error"===this.props.severity,"p-inline-message-success":"success"===this.props.severity,"p-inline-message-icon-only":!this.props.text},this.props.className),t=this.getContent();return o.default.createElement("div",{id:this.props.id,"aria-live":"polite",className:e,style:this.props.style,role:"alert"},t)}}])&&i(c.prototype,l),u&&i(c,u),m}(t.Component);return b={id:null,className:null,style:null,text:null,severity:"info",content:null},(m="defaultProps")in(h=v)?Object.defineProperty(h,m,{value:b,enumerable:!0,configurable:!0,writable:!0}):h[m]=b,e.Message=v,Object.defineProperty(e,"__esModule",{value:!0}),e}({},React,hassanreact.core);
| 1,671.5 | 3,342 | 0.73796 |
e68d7703e931ab879762347966dee6527dd413ab | 728,632 | asm | Assembly | kernel.asm | MatanGilead/myxv6 | e3e56b63deba7bdf2f85079a4c303a36feaef0c9 | [
"MIT-0"
] | null | null | null | kernel.asm | MatanGilead/myxv6 | e3e56b63deba7bdf2f85079a4c303a36feaef0c9 | [
"MIT-0"
] | null | null | null | kernel.asm | MatanGilead/myxv6 | e3e56b63deba7bdf2f85079a4c303a36feaef0c9 | [
"MIT-0"
] | null | null | null |
kernel: file format elf32-i386
Disassembly of section .text:
80100000 <multiboot_header>:
80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh
80100006: 00 00 add %al,(%eax)
80100008: fe 4f 52 decb 0x52(%edi)
8010000b: e4 0f in $0xf,%al
8010000c <entry>:
# Entering xv6 on boot processor, with paging off.
.globl entry
entry:
# Turn on page size extension for 4Mbyte pages
movl %cr4, %eax
8010000c: 0f 20 e0 mov %cr4,%eax
orl $(CR4_PSE), %eax
8010000f: 83 c8 10 or $0x10,%eax
movl %eax, %cr4
80100012: 0f 22 e0 mov %eax,%cr4
# Set page directory
movl $(V2P_WO(entrypgdir)), %eax
80100015: b8 00 b0 10 00 mov $0x10b000,%eax
movl %eax, %cr3
8010001a: 0f 22 d8 mov %eax,%cr3
# Turn on paging.
movl %cr0, %eax
8010001d: 0f 20 c0 mov %cr0,%eax
orl $(CR0_PG|CR0_WP), %eax
80100020: 0d 00 00 01 80 or $0x80010000,%eax
movl %eax, %cr0
80100025: 0f 22 c0 mov %eax,%cr0
# Set up the stack pointer.
movl $(stack + KSTACKSIZE), %esp
80100028: bc 70 d6 10 80 mov $0x8010d670,%esp
# Jump to main(), and switch to executing at
# high addresses. The indirect call is needed because
# the assembler produces a PC-relative instruction
# for a direct jump.
mov $main, %eax
8010002d: b8 2f 40 10 80 mov $0x8010402f,%eax
jmp *%eax
80100032: ff e0 jmp *%eax
80100034 <binit>:
struct buf head;
} bcache;
void
binit(void)
{
80100034: 55 push %ebp
80100035: 89 e5 mov %esp,%ebp
80100037: 83 ec 28 sub $0x28,%esp
struct buf *b;
initlock(&bcache.lock, "bcache");
8010003a: c7 44 24 04 b4 92 10 movl $0x801092b4,0x4(%esp)
80100041: 80
80100042: c7 04 24 80 d6 10 80 movl $0x8010d680,(%esp)
80100049: e8 3c 5b 00 00 call 80105b8a <initlock>
//PAGEBREAK!
// Create linked list of buffers
bcache.head.prev = &bcache.head;
8010004e: c7 05 90 15 11 80 84 movl $0x80111584,0x80111590
80100055: 15 11 80
bcache.head.next = &bcache.head;
80100058: c7 05 94 15 11 80 84 movl $0x80111584,0x80111594
8010005f: 15 11 80
for(b = bcache.buf; b < bcache.buf+NBUF; b++){
80100062: c7 45 f4 b4 d6 10 80 movl $0x8010d6b4,-0xc(%ebp)
80100069: eb 3a jmp 801000a5 <binit+0x71>
b->next = bcache.head.next;
8010006b: 8b 15 94 15 11 80 mov 0x80111594,%edx
80100071: 8b 45 f4 mov -0xc(%ebp),%eax
80100074: 89 50 10 mov %edx,0x10(%eax)
b->prev = &bcache.head;
80100077: 8b 45 f4 mov -0xc(%ebp),%eax
8010007a: c7 40 0c 84 15 11 80 movl $0x80111584,0xc(%eax)
b->dev = -1;
80100081: 8b 45 f4 mov -0xc(%ebp),%eax
80100084: c7 40 04 ff ff ff ff movl $0xffffffff,0x4(%eax)
bcache.head.next->prev = b;
8010008b: a1 94 15 11 80 mov 0x80111594,%eax
80100090: 8b 55 f4 mov -0xc(%ebp),%edx
80100093: 89 50 0c mov %edx,0xc(%eax)
bcache.head.next = b;
80100096: 8b 45 f4 mov -0xc(%ebp),%eax
80100099: a3 94 15 11 80 mov %eax,0x80111594
//PAGEBREAK!
// Create linked list of buffers
bcache.head.prev = &bcache.head;
bcache.head.next = &bcache.head;
for(b = bcache.buf; b < bcache.buf+NBUF; b++){
8010009e: 81 45 f4 18 02 00 00 addl $0x218,-0xc(%ebp)
801000a5: 81 7d f4 84 15 11 80 cmpl $0x80111584,-0xc(%ebp)
801000ac: 72 bd jb 8010006b <binit+0x37>
b->prev = &bcache.head;
b->dev = -1;
bcache.head.next->prev = b;
bcache.head.next = b;
}
}
801000ae: c9 leave
801000af: c3 ret
801000b0 <bget>:
// Look through buffer cache for block on device dev.
// If not found, allocate a buffer.
// In either case, return B_BUSY buffer.
static struct buf*
bget(uint dev, uint blockno)
{
801000b0: 55 push %ebp
801000b1: 89 e5 mov %esp,%ebp
801000b3: 83 ec 28 sub $0x28,%esp
struct buf *b;
acquire(&bcache.lock);
801000b6: c7 04 24 80 d6 10 80 movl $0x8010d680,(%esp)
801000bd: e8 e9 5a 00 00 call 80105bab <acquire>
loop:
// Is the block already cached?
for(b = bcache.head.next; b != &bcache.head; b = b->next){
801000c2: a1 94 15 11 80 mov 0x80111594,%eax
801000c7: 89 45 f4 mov %eax,-0xc(%ebp)
801000ca: eb 63 jmp 8010012f <bget+0x7f>
if(b->dev == dev && b->blockno == blockno){
801000cc: 8b 45 f4 mov -0xc(%ebp),%eax
801000cf: 8b 40 04 mov 0x4(%eax),%eax
801000d2: 3b 45 08 cmp 0x8(%ebp),%eax
801000d5: 75 4f jne 80100126 <bget+0x76>
801000d7: 8b 45 f4 mov -0xc(%ebp),%eax
801000da: 8b 40 08 mov 0x8(%eax),%eax
801000dd: 3b 45 0c cmp 0xc(%ebp),%eax
801000e0: 75 44 jne 80100126 <bget+0x76>
if(!(b->flags & B_BUSY)){
801000e2: 8b 45 f4 mov -0xc(%ebp),%eax
801000e5: 8b 00 mov (%eax),%eax
801000e7: 83 e0 01 and $0x1,%eax
801000ea: 85 c0 test %eax,%eax
801000ec: 75 23 jne 80100111 <bget+0x61>
b->flags |= B_BUSY;
801000ee: 8b 45 f4 mov -0xc(%ebp),%eax
801000f1: 8b 00 mov (%eax),%eax
801000f3: 89 c2 mov %eax,%edx
801000f5: 83 ca 01 or $0x1,%edx
801000f8: 8b 45 f4 mov -0xc(%ebp),%eax
801000fb: 89 10 mov %edx,(%eax)
release(&bcache.lock);
801000fd: c7 04 24 80 d6 10 80 movl $0x8010d680,(%esp)
80100104: e8 04 5b 00 00 call 80105c0d <release>
return b;
80100109: 8b 45 f4 mov -0xc(%ebp),%eax
8010010c: e9 93 00 00 00 jmp 801001a4 <bget+0xf4>
}
sleep(b, &bcache.lock);
80100111: c7 44 24 04 80 d6 10 movl $0x8010d680,0x4(%esp)
80100118: 80
80100119: 8b 45 f4 mov -0xc(%ebp),%eax
8010011c: 89 04 24 mov %eax,(%esp)
8010011f: e8 9b 55 00 00 call 801056bf <sleep>
goto loop;
80100124: eb 9c jmp 801000c2 <bget+0x12>
acquire(&bcache.lock);
loop:
// Is the block already cached?
for(b = bcache.head.next; b != &bcache.head; b = b->next){
80100126: 8b 45 f4 mov -0xc(%ebp),%eax
80100129: 8b 40 10 mov 0x10(%eax),%eax
8010012c: 89 45 f4 mov %eax,-0xc(%ebp)
8010012f: 81 7d f4 84 15 11 80 cmpl $0x80111584,-0xc(%ebp)
80100136: 75 94 jne 801000cc <bget+0x1c>
}
// Not cached; recycle some non-busy and clean buffer.
// "clean" because B_DIRTY and !B_BUSY means log.c
// hasn't yet committed the changes to the buffer.
for(b = bcache.head.prev; b != &bcache.head; b = b->prev){
80100138: a1 90 15 11 80 mov 0x80111590,%eax
8010013d: 89 45 f4 mov %eax,-0xc(%ebp)
80100140: eb 4d jmp 8010018f <bget+0xdf>
if((b->flags & B_BUSY) == 0 && (b->flags & B_DIRTY) == 0){
80100142: 8b 45 f4 mov -0xc(%ebp),%eax
80100145: 8b 00 mov (%eax),%eax
80100147: 83 e0 01 and $0x1,%eax
8010014a: 85 c0 test %eax,%eax
8010014c: 75 38 jne 80100186 <bget+0xd6>
8010014e: 8b 45 f4 mov -0xc(%ebp),%eax
80100151: 8b 00 mov (%eax),%eax
80100153: 83 e0 04 and $0x4,%eax
80100156: 85 c0 test %eax,%eax
80100158: 75 2c jne 80100186 <bget+0xd6>
b->dev = dev;
8010015a: 8b 45 f4 mov -0xc(%ebp),%eax
8010015d: 8b 55 08 mov 0x8(%ebp),%edx
80100160: 89 50 04 mov %edx,0x4(%eax)
b->blockno = blockno;
80100163: 8b 45 f4 mov -0xc(%ebp),%eax
80100166: 8b 55 0c mov 0xc(%ebp),%edx
80100169: 89 50 08 mov %edx,0x8(%eax)
b->flags = B_BUSY;
8010016c: 8b 45 f4 mov -0xc(%ebp),%eax
8010016f: c7 00 01 00 00 00 movl $0x1,(%eax)
release(&bcache.lock);
80100175: c7 04 24 80 d6 10 80 movl $0x8010d680,(%esp)
8010017c: e8 8c 5a 00 00 call 80105c0d <release>
return b;
80100181: 8b 45 f4 mov -0xc(%ebp),%eax
80100184: eb 1e jmp 801001a4 <bget+0xf4>
}
// Not cached; recycle some non-busy and clean buffer.
// "clean" because B_DIRTY and !B_BUSY means log.c
// hasn't yet committed the changes to the buffer.
for(b = bcache.head.prev; b != &bcache.head; b = b->prev){
80100186: 8b 45 f4 mov -0xc(%ebp),%eax
80100189: 8b 40 0c mov 0xc(%eax),%eax
8010018c: 89 45 f4 mov %eax,-0xc(%ebp)
8010018f: 81 7d f4 84 15 11 80 cmpl $0x80111584,-0xc(%ebp)
80100196: 75 aa jne 80100142 <bget+0x92>
b->flags = B_BUSY;
release(&bcache.lock);
return b;
}
}
panic("bget: no buffers");
80100198: c7 04 24 bb 92 10 80 movl $0x801092bb,(%esp)
8010019f: e8 99 03 00 00 call 8010053d <panic>
}
801001a4: c9 leave
801001a5: c3 ret
801001a6 <bread>:
// Return a B_BUSY buf with the contents of the indicated block.
struct buf*
bread(uint dev, uint blockno)
{
801001a6: 55 push %ebp
801001a7: 89 e5 mov %esp,%ebp
801001a9: 83 ec 28 sub $0x28,%esp
struct buf *b;
b = bget(dev, blockno);
801001ac: 8b 45 0c mov 0xc(%ebp),%eax
801001af: 89 44 24 04 mov %eax,0x4(%esp)
801001b3: 8b 45 08 mov 0x8(%ebp),%eax
801001b6: 89 04 24 mov %eax,(%esp)
801001b9: e8 f2 fe ff ff call 801000b0 <bget>
801001be: 89 45 f4 mov %eax,-0xc(%ebp)
if(!(b->flags & B_VALID)) {
801001c1: 8b 45 f4 mov -0xc(%ebp),%eax
801001c4: 8b 00 mov (%eax),%eax
801001c6: 83 e0 02 and $0x2,%eax
801001c9: 85 c0 test %eax,%eax
801001cb: 75 0b jne 801001d8 <bread+0x32>
iderw(b);
801001cd: 8b 45 f4 mov -0xc(%ebp),%eax
801001d0: 89 04 24 mov %eax,(%esp)
801001d3: e8 b7 2e 00 00 call 8010308f <iderw>
}
return b;
801001d8: 8b 45 f4 mov -0xc(%ebp),%eax
}
801001db: c9 leave
801001dc: c3 ret
801001dd <bwrite>:
// Write b's contents to disk. Must be B_BUSY.
void
bwrite(struct buf *b)
{
801001dd: 55 push %ebp
801001de: 89 e5 mov %esp,%ebp
801001e0: 83 ec 18 sub $0x18,%esp
if((b->flags & B_BUSY) == 0)
801001e3: 8b 45 08 mov 0x8(%ebp),%eax
801001e6: 8b 00 mov (%eax),%eax
801001e8: 83 e0 01 and $0x1,%eax
801001eb: 85 c0 test %eax,%eax
801001ed: 75 0c jne 801001fb <bwrite+0x1e>
panic("bwrite");
801001ef: c7 04 24 cc 92 10 80 movl $0x801092cc,(%esp)
801001f6: e8 42 03 00 00 call 8010053d <panic>
b->flags |= B_DIRTY;
801001fb: 8b 45 08 mov 0x8(%ebp),%eax
801001fe: 8b 00 mov (%eax),%eax
80100200: 89 c2 mov %eax,%edx
80100202: 83 ca 04 or $0x4,%edx
80100205: 8b 45 08 mov 0x8(%ebp),%eax
80100208: 89 10 mov %edx,(%eax)
iderw(b);
8010020a: 8b 45 08 mov 0x8(%ebp),%eax
8010020d: 89 04 24 mov %eax,(%esp)
80100210: e8 7a 2e 00 00 call 8010308f <iderw>
}
80100215: c9 leave
80100216: c3 ret
80100217 <brelse>:
// Release a B_BUSY buffer.
// Move to the head of the MRU list.
void
brelse(struct buf *b)
{
80100217: 55 push %ebp
80100218: 89 e5 mov %esp,%ebp
8010021a: 83 ec 18 sub $0x18,%esp
if((b->flags & B_BUSY) == 0)
8010021d: 8b 45 08 mov 0x8(%ebp),%eax
80100220: 8b 00 mov (%eax),%eax
80100222: 83 e0 01 and $0x1,%eax
80100225: 85 c0 test %eax,%eax
80100227: 75 0c jne 80100235 <brelse+0x1e>
panic("brelse");
80100229: c7 04 24 d3 92 10 80 movl $0x801092d3,(%esp)
80100230: e8 08 03 00 00 call 8010053d <panic>
acquire(&bcache.lock);
80100235: c7 04 24 80 d6 10 80 movl $0x8010d680,(%esp)
8010023c: e8 6a 59 00 00 call 80105bab <acquire>
b->next->prev = b->prev;
80100241: 8b 45 08 mov 0x8(%ebp),%eax
80100244: 8b 40 10 mov 0x10(%eax),%eax
80100247: 8b 55 08 mov 0x8(%ebp),%edx
8010024a: 8b 52 0c mov 0xc(%edx),%edx
8010024d: 89 50 0c mov %edx,0xc(%eax)
b->prev->next = b->next;
80100250: 8b 45 08 mov 0x8(%ebp),%eax
80100253: 8b 40 0c mov 0xc(%eax),%eax
80100256: 8b 55 08 mov 0x8(%ebp),%edx
80100259: 8b 52 10 mov 0x10(%edx),%edx
8010025c: 89 50 10 mov %edx,0x10(%eax)
b->next = bcache.head.next;
8010025f: 8b 15 94 15 11 80 mov 0x80111594,%edx
80100265: 8b 45 08 mov 0x8(%ebp),%eax
80100268: 89 50 10 mov %edx,0x10(%eax)
b->prev = &bcache.head;
8010026b: 8b 45 08 mov 0x8(%ebp),%eax
8010026e: c7 40 0c 84 15 11 80 movl $0x80111584,0xc(%eax)
bcache.head.next->prev = b;
80100275: a1 94 15 11 80 mov 0x80111594,%eax
8010027a: 8b 55 08 mov 0x8(%ebp),%edx
8010027d: 89 50 0c mov %edx,0xc(%eax)
bcache.head.next = b;
80100280: 8b 45 08 mov 0x8(%ebp),%eax
80100283: a3 94 15 11 80 mov %eax,0x80111594
b->flags &= ~B_BUSY;
80100288: 8b 45 08 mov 0x8(%ebp),%eax
8010028b: 8b 00 mov (%eax),%eax
8010028d: 89 c2 mov %eax,%edx
8010028f: 83 e2 fe and $0xfffffffe,%edx
80100292: 8b 45 08 mov 0x8(%ebp),%eax
80100295: 89 10 mov %edx,(%eax)
wakeup(b);
80100297: 8b 45 08 mov 0x8(%ebp),%eax
8010029a: 89 04 24 mov %eax,(%esp)
8010029d: e8 06 55 00 00 call 801057a8 <wakeup>
release(&bcache.lock);
801002a2: c7 04 24 80 d6 10 80 movl $0x8010d680,(%esp)
801002a9: e8 5f 59 00 00 call 80105c0d <release>
}
801002ae: c9 leave
801002af: c3 ret
801002b0 <inb>:
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
801002b0: 55 push %ebp
801002b1: 89 e5 mov %esp,%ebp
801002b3: 53 push %ebx
801002b4: 83 ec 14 sub $0x14,%esp
801002b7: 8b 45 08 mov 0x8(%ebp),%eax
801002ba: 66 89 45 e8 mov %ax,-0x18(%ebp)
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
801002be: 0f b7 55 e8 movzwl -0x18(%ebp),%edx
801002c2: 66 89 55 ea mov %dx,-0x16(%ebp)
801002c6: 0f b7 55 ea movzwl -0x16(%ebp),%edx
801002ca: ec in (%dx),%al
801002cb: 89 c3 mov %eax,%ebx
801002cd: 88 5d fb mov %bl,-0x5(%ebp)
return data;
801002d0: 0f b6 45 fb movzbl -0x5(%ebp),%eax
}
801002d4: 83 c4 14 add $0x14,%esp
801002d7: 5b pop %ebx
801002d8: 5d pop %ebp
801002d9: c3 ret
801002da <outb>:
"memory", "cc");
}
static inline void
outb(ushort port, uchar data)
{
801002da: 55 push %ebp
801002db: 89 e5 mov %esp,%ebp
801002dd: 83 ec 08 sub $0x8,%esp
801002e0: 8b 55 08 mov 0x8(%ebp),%edx
801002e3: 8b 45 0c mov 0xc(%ebp),%eax
801002e6: 66 89 55 fc mov %dx,-0x4(%ebp)
801002ea: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
801002ed: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
801002f1: 0f b7 55 fc movzwl -0x4(%ebp),%edx
801002f5: ee out %al,(%dx)
}
801002f6: c9 leave
801002f7: c3 ret
801002f8 <cli>:
asm volatile("movw %0, %%gs" : : "r" (v));
}
static inline void
cli(void)
{
801002f8: 55 push %ebp
801002f9: 89 e5 mov %esp,%ebp
asm volatile("cli");
801002fb: fa cli
}
801002fc: 5d pop %ebp
801002fd: c3 ret
801002fe <printint>:
int locking;
} cons;
static void
printint(int xx, int base, int sign)
{
801002fe: 55 push %ebp
801002ff: 89 e5 mov %esp,%ebp
80100301: 83 ec 48 sub $0x48,%esp
static char digits[] = "0123456789abcdef";
char buf[16];
int i;
uint x;
if(sign && (sign = xx < 0))
80100304: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80100308: 74 19 je 80100323 <printint+0x25>
8010030a: 8b 45 08 mov 0x8(%ebp),%eax
8010030d: c1 e8 1f shr $0x1f,%eax
80100310: 89 45 10 mov %eax,0x10(%ebp)
80100313: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80100317: 74 0a je 80100323 <printint+0x25>
x = -xx;
80100319: 8b 45 08 mov 0x8(%ebp),%eax
8010031c: f7 d8 neg %eax
8010031e: 89 45 f0 mov %eax,-0x10(%ebp)
80100321: eb 06 jmp 80100329 <printint+0x2b>
else
x = xx;
80100323: 8b 45 08 mov 0x8(%ebp),%eax
80100326: 89 45 f0 mov %eax,-0x10(%ebp)
i = 0;
80100329: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
do{
buf[i++] = digits[x % base];
80100330: 8b 4d 0c mov 0xc(%ebp),%ecx
80100333: 8b 45 f0 mov -0x10(%ebp),%eax
80100336: ba 00 00 00 00 mov $0x0,%edx
8010033b: f7 f1 div %ecx
8010033d: 89 d0 mov %edx,%eax
8010033f: 0f b6 90 04 a0 10 80 movzbl -0x7fef5ffc(%eax),%edx
80100346: 8d 45 e0 lea -0x20(%ebp),%eax
80100349: 03 45 f4 add -0xc(%ebp),%eax
8010034c: 88 10 mov %dl,(%eax)
8010034e: 83 45 f4 01 addl $0x1,-0xc(%ebp)
}while((x /= base) != 0);
80100352: 8b 55 0c mov 0xc(%ebp),%edx
80100355: 89 55 d4 mov %edx,-0x2c(%ebp)
80100358: 8b 45 f0 mov -0x10(%ebp),%eax
8010035b: ba 00 00 00 00 mov $0x0,%edx
80100360: f7 75 d4 divl -0x2c(%ebp)
80100363: 89 45 f0 mov %eax,-0x10(%ebp)
80100366: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
8010036a: 75 c4 jne 80100330 <printint+0x32>
if(sign)
8010036c: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80100370: 74 23 je 80100395 <printint+0x97>
buf[i++] = '-';
80100372: 8d 45 e0 lea -0x20(%ebp),%eax
80100375: 03 45 f4 add -0xc(%ebp),%eax
80100378: c6 00 2d movb $0x2d,(%eax)
8010037b: 83 45 f4 01 addl $0x1,-0xc(%ebp)
while(--i >= 0)
8010037f: eb 14 jmp 80100395 <printint+0x97>
consputc(buf[i]);
80100381: 8d 45 e0 lea -0x20(%ebp),%eax
80100384: 03 45 f4 add -0xc(%ebp),%eax
80100387: 0f b6 00 movzbl (%eax),%eax
8010038a: 0f be c0 movsbl %al,%eax
8010038d: 89 04 24 mov %eax,(%esp)
80100390: e8 2d 07 00 00 call 80100ac2 <consputc>
}while((x /= base) != 0);
if(sign)
buf[i++] = '-';
while(--i >= 0)
80100395: 83 6d f4 01 subl $0x1,-0xc(%ebp)
80100399: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
8010039d: 79 e2 jns 80100381 <printint+0x83>
consputc(buf[i]);
}
8010039f: c9 leave
801003a0: c3 ret
801003a1 <cprintf>:
//PAGEBREAK: 50
// Print to the console. only understands %d, %x, %p, %s.
void
cprintf(char *fmt, ...)
{
801003a1: 55 push %ebp
801003a2: 89 e5 mov %esp,%ebp
801003a4: 83 ec 38 sub $0x38,%esp
int i, c, locking;
uint *argp;
char *s;
locking = cons.locking;
801003a7: a1 14 c6 10 80 mov 0x8010c614,%eax
801003ac: 89 45 e8 mov %eax,-0x18(%ebp)
if(locking)
801003af: 83 7d e8 00 cmpl $0x0,-0x18(%ebp)
801003b3: 74 0c je 801003c1 <cprintf+0x20>
acquire(&cons.lock);
801003b5: c7 04 24 e0 c5 10 80 movl $0x8010c5e0,(%esp)
801003bc: e8 ea 57 00 00 call 80105bab <acquire>
if (fmt == 0)
801003c1: 8b 45 08 mov 0x8(%ebp),%eax
801003c4: 85 c0 test %eax,%eax
801003c6: 75 0c jne 801003d4 <cprintf+0x33>
panic("null fmt");
801003c8: c7 04 24 da 92 10 80 movl $0x801092da,(%esp)
801003cf: e8 69 01 00 00 call 8010053d <panic>
argp = (uint*)(void*)(&fmt + 1);
801003d4: 8d 45 0c lea 0xc(%ebp),%eax
801003d7: 89 45 f0 mov %eax,-0x10(%ebp)
for(i = 0; (c = fmt[i] & 0xff) != 0; i++){
801003da: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
801003e1: e9 20 01 00 00 jmp 80100506 <cprintf+0x165>
if(c != '%'){
801003e6: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp)
801003ea: 74 10 je 801003fc <cprintf+0x5b>
consputc(c);
801003ec: 8b 45 e4 mov -0x1c(%ebp),%eax
801003ef: 89 04 24 mov %eax,(%esp)
801003f2: e8 cb 06 00 00 call 80100ac2 <consputc>
continue;
801003f7: e9 06 01 00 00 jmp 80100502 <cprintf+0x161>
}
c = fmt[++i] & 0xff;
801003fc: 8b 55 08 mov 0x8(%ebp),%edx
801003ff: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80100403: 8b 45 f4 mov -0xc(%ebp),%eax
80100406: 01 d0 add %edx,%eax
80100408: 0f b6 00 movzbl (%eax),%eax
8010040b: 0f be c0 movsbl %al,%eax
8010040e: 25 ff 00 00 00 and $0xff,%eax
80100413: 89 45 e4 mov %eax,-0x1c(%ebp)
if(c == 0)
80100416: 83 7d e4 00 cmpl $0x0,-0x1c(%ebp)
8010041a: 0f 84 08 01 00 00 je 80100528 <cprintf+0x187>
break;
switch(c){
80100420: 8b 45 e4 mov -0x1c(%ebp),%eax
80100423: 83 f8 70 cmp $0x70,%eax
80100426: 74 4d je 80100475 <cprintf+0xd4>
80100428: 83 f8 70 cmp $0x70,%eax
8010042b: 7f 13 jg 80100440 <cprintf+0x9f>
8010042d: 83 f8 25 cmp $0x25,%eax
80100430: 0f 84 a6 00 00 00 je 801004dc <cprintf+0x13b>
80100436: 83 f8 64 cmp $0x64,%eax
80100439: 74 14 je 8010044f <cprintf+0xae>
8010043b: e9 aa 00 00 00 jmp 801004ea <cprintf+0x149>
80100440: 83 f8 73 cmp $0x73,%eax
80100443: 74 53 je 80100498 <cprintf+0xf7>
80100445: 83 f8 78 cmp $0x78,%eax
80100448: 74 2b je 80100475 <cprintf+0xd4>
8010044a: e9 9b 00 00 00 jmp 801004ea <cprintf+0x149>
case 'd':
printint(*argp++, 10, 1);
8010044f: 8b 45 f0 mov -0x10(%ebp),%eax
80100452: 8b 00 mov (%eax),%eax
80100454: 83 45 f0 04 addl $0x4,-0x10(%ebp)
80100458: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
8010045f: 00
80100460: c7 44 24 04 0a 00 00 movl $0xa,0x4(%esp)
80100467: 00
80100468: 89 04 24 mov %eax,(%esp)
8010046b: e8 8e fe ff ff call 801002fe <printint>
break;
80100470: e9 8d 00 00 00 jmp 80100502 <cprintf+0x161>
case 'x':
case 'p':
printint(*argp++, 16, 0);
80100475: 8b 45 f0 mov -0x10(%ebp),%eax
80100478: 8b 00 mov (%eax),%eax
8010047a: 83 45 f0 04 addl $0x4,-0x10(%ebp)
8010047e: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80100485: 00
80100486: c7 44 24 04 10 00 00 movl $0x10,0x4(%esp)
8010048d: 00
8010048e: 89 04 24 mov %eax,(%esp)
80100491: e8 68 fe ff ff call 801002fe <printint>
break;
80100496: eb 6a jmp 80100502 <cprintf+0x161>
case 's':
if((s = (char*)*argp++) == 0)
80100498: 8b 45 f0 mov -0x10(%ebp),%eax
8010049b: 8b 00 mov (%eax),%eax
8010049d: 89 45 ec mov %eax,-0x14(%ebp)
801004a0: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
801004a4: 0f 94 c0 sete %al
801004a7: 83 45 f0 04 addl $0x4,-0x10(%ebp)
801004ab: 84 c0 test %al,%al
801004ad: 74 20 je 801004cf <cprintf+0x12e>
s = "(null)";
801004af: c7 45 ec e3 92 10 80 movl $0x801092e3,-0x14(%ebp)
for(; *s; s++)
801004b6: eb 17 jmp 801004cf <cprintf+0x12e>
consputc(*s);
801004b8: 8b 45 ec mov -0x14(%ebp),%eax
801004bb: 0f b6 00 movzbl (%eax),%eax
801004be: 0f be c0 movsbl %al,%eax
801004c1: 89 04 24 mov %eax,(%esp)
801004c4: e8 f9 05 00 00 call 80100ac2 <consputc>
printint(*argp++, 16, 0);
break;
case 's':
if((s = (char*)*argp++) == 0)
s = "(null)";
for(; *s; s++)
801004c9: 83 45 ec 01 addl $0x1,-0x14(%ebp)
801004cd: eb 01 jmp 801004d0 <cprintf+0x12f>
801004cf: 90 nop
801004d0: 8b 45 ec mov -0x14(%ebp),%eax
801004d3: 0f b6 00 movzbl (%eax),%eax
801004d6: 84 c0 test %al,%al
801004d8: 75 de jne 801004b8 <cprintf+0x117>
consputc(*s);
break;
801004da: eb 26 jmp 80100502 <cprintf+0x161>
case '%':
consputc('%');
801004dc: c7 04 24 25 00 00 00 movl $0x25,(%esp)
801004e3: e8 da 05 00 00 call 80100ac2 <consputc>
break;
801004e8: eb 18 jmp 80100502 <cprintf+0x161>
default:
// Print unknown % sequence to draw attention.
consputc('%');
801004ea: c7 04 24 25 00 00 00 movl $0x25,(%esp)
801004f1: e8 cc 05 00 00 call 80100ac2 <consputc>
consputc(c);
801004f6: 8b 45 e4 mov -0x1c(%ebp),%eax
801004f9: 89 04 24 mov %eax,(%esp)
801004fc: e8 c1 05 00 00 call 80100ac2 <consputc>
break;
80100501: 90 nop
if (fmt == 0)
panic("null fmt");
argp = (uint*)(void*)(&fmt + 1);
for(i = 0; (c = fmt[i] & 0xff) != 0; i++){
80100502: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80100506: 8b 55 08 mov 0x8(%ebp),%edx
80100509: 8b 45 f4 mov -0xc(%ebp),%eax
8010050c: 01 d0 add %edx,%eax
8010050e: 0f b6 00 movzbl (%eax),%eax
80100511: 0f be c0 movsbl %al,%eax
80100514: 25 ff 00 00 00 and $0xff,%eax
80100519: 89 45 e4 mov %eax,-0x1c(%ebp)
8010051c: 83 7d e4 00 cmpl $0x0,-0x1c(%ebp)
80100520: 0f 85 c0 fe ff ff jne 801003e6 <cprintf+0x45>
80100526: eb 01 jmp 80100529 <cprintf+0x188>
consputc(c);
continue;
}
c = fmt[++i] & 0xff;
if(c == 0)
break;
80100528: 90 nop
consputc(c);
break;
}
}
if(locking)
80100529: 83 7d e8 00 cmpl $0x0,-0x18(%ebp)
8010052d: 74 0c je 8010053b <cprintf+0x19a>
release(&cons.lock);
8010052f: c7 04 24 e0 c5 10 80 movl $0x8010c5e0,(%esp)
80100536: e8 d2 56 00 00 call 80105c0d <release>
}
8010053b: c9 leave
8010053c: c3 ret
8010053d <panic>:
void
panic(char *s)
{
8010053d: 55 push %ebp
8010053e: 89 e5 mov %esp,%ebp
80100540: 83 ec 48 sub $0x48,%esp
int i;
uint pcs[10];
cli();
80100543: e8 b0 fd ff ff call 801002f8 <cli>
cons.locking = 0;
80100548: c7 05 14 c6 10 80 00 movl $0x0,0x8010c614
8010054f: 00 00 00
cprintf("cpu%d: panic: ", cpu->id);
80100552: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80100558: 0f b6 00 movzbl (%eax),%eax
8010055b: 0f b6 c0 movzbl %al,%eax
8010055e: 89 44 24 04 mov %eax,0x4(%esp)
80100562: c7 04 24 ea 92 10 80 movl $0x801092ea,(%esp)
80100569: e8 33 fe ff ff call 801003a1 <cprintf>
cprintf(s);
8010056e: 8b 45 08 mov 0x8(%ebp),%eax
80100571: 89 04 24 mov %eax,(%esp)
80100574: e8 28 fe ff ff call 801003a1 <cprintf>
cprintf("\n");
80100579: c7 04 24 f9 92 10 80 movl $0x801092f9,(%esp)
80100580: e8 1c fe ff ff call 801003a1 <cprintf>
getcallerpcs(&s, pcs);
80100585: 8d 45 cc lea -0x34(%ebp),%eax
80100588: 89 44 24 04 mov %eax,0x4(%esp)
8010058c: 8d 45 08 lea 0x8(%ebp),%eax
8010058f: 89 04 24 mov %eax,(%esp)
80100592: e8 c5 56 00 00 call 80105c5c <getcallerpcs>
for(i=0; i<10; i++)
80100597: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
8010059e: eb 1b jmp 801005bb <panic+0x7e>
cprintf(" %p", pcs[i]);
801005a0: 8b 45 f4 mov -0xc(%ebp),%eax
801005a3: 8b 44 85 cc mov -0x34(%ebp,%eax,4),%eax
801005a7: 89 44 24 04 mov %eax,0x4(%esp)
801005ab: c7 04 24 fb 92 10 80 movl $0x801092fb,(%esp)
801005b2: e8 ea fd ff ff call 801003a1 <cprintf>
cons.locking = 0;
cprintf("cpu%d: panic: ", cpu->id);
cprintf(s);
cprintf("\n");
getcallerpcs(&s, pcs);
for(i=0; i<10; i++)
801005b7: 83 45 f4 01 addl $0x1,-0xc(%ebp)
801005bb: 83 7d f4 09 cmpl $0x9,-0xc(%ebp)
801005bf: 7e df jle 801005a0 <panic+0x63>
cprintf(" %p", pcs[i]);
panicked = 1; // freeze other CPU
801005c1: c7 05 cc c5 10 80 01 movl $0x1,0x8010c5cc
801005c8: 00 00 00
for(;;)
;
801005cb: eb fe jmp 801005cb <panic+0x8e>
801005cd <modThatDealsWithNegatives>:
static int tmpPos = 0;
static ushort *crt = (ushort*)P2V(0xb8000); // CGA memory
int
modThatDealsWithNegatives(int num1, int num2){
801005cd: 55 push %ebp
801005ce: 89 e5 mov %esp,%ebp
801005d0: 83 ec 10 sub $0x10,%esp
int r = num1 % num2;
801005d3: 8b 45 08 mov 0x8(%ebp),%eax
801005d6: 89 c2 mov %eax,%edx
801005d8: c1 fa 1f sar $0x1f,%edx
801005db: f7 7d 0c idivl 0xc(%ebp)
801005de: 89 55 fc mov %edx,-0x4(%ebp)
if(r<0)
801005e1: 83 7d fc 00 cmpl $0x0,-0x4(%ebp)
801005e5: 79 0a jns 801005f1 <modThatDealsWithNegatives+0x24>
return r+num2;
801005e7: 8b 45 0c mov 0xc(%ebp),%eax
801005ea: 8b 55 fc mov -0x4(%ebp),%edx
801005ed: 01 d0 add %edx,%eax
801005ef: eb 03 jmp 801005f4 <modThatDealsWithNegatives+0x27>
else return r;
801005f1: 8b 45 fc mov -0x4(%ebp),%eax
}
801005f4: c9 leave
801005f5: c3 ret
801005f6 <cgaputc>:
static void
cgaputc(int c)
{
801005f6: 55 push %ebp
801005f7: 89 e5 mov %esp,%ebp
801005f9: 53 push %ebx
801005fa: 83 ec 44 sub $0x44,%esp
int pos;
// Cursor position: col + 80*row.
outb(CRTPORT, 14);
801005fd: c7 44 24 04 0e 00 00 movl $0xe,0x4(%esp)
80100604: 00
80100605: c7 04 24 d4 03 00 00 movl $0x3d4,(%esp)
8010060c: e8 c9 fc ff ff call 801002da <outb>
pos = inb(CRTPORT+1) << 8;
80100611: c7 04 24 d5 03 00 00 movl $0x3d5,(%esp)
80100618: e8 93 fc ff ff call 801002b0 <inb>
8010061d: 0f b6 c0 movzbl %al,%eax
80100620: c1 e0 08 shl $0x8,%eax
80100623: 89 45 f4 mov %eax,-0xc(%ebp)
outb(CRTPORT, 15);
80100626: c7 44 24 04 0f 00 00 movl $0xf,0x4(%esp)
8010062d: 00
8010062e: c7 04 24 d4 03 00 00 movl $0x3d4,(%esp)
80100635: e8 a0 fc ff ff call 801002da <outb>
pos |= inb(CRTPORT+1);
8010063a: c7 04 24 d5 03 00 00 movl $0x3d5,(%esp)
80100641: e8 6a fc ff ff call 801002b0 <inb>
80100646: 0f b6 c0 movzbl %al,%eax
80100649: 09 45 f4 or %eax,-0xc(%ebp)
if(c == '\n'){
8010064c: 8b 45 08 mov 0x8(%ebp),%eax
8010064f: 83 f8 0a cmp $0xa,%eax
80100652: 75 3d jne 80100691 <cgaputc+0x9b>
pos += 80 - pos%80;
80100654: 8b 4d f4 mov -0xc(%ebp),%ecx
80100657: ba 67 66 66 66 mov $0x66666667,%edx
8010065c: 89 c8 mov %ecx,%eax
8010065e: f7 ea imul %edx
80100660: c1 fa 05 sar $0x5,%edx
80100663: 89 c8 mov %ecx,%eax
80100665: c1 f8 1f sar $0x1f,%eax
80100668: 29 c2 sub %eax,%edx
8010066a: 89 d0 mov %edx,%eax
8010066c: c1 e0 02 shl $0x2,%eax
8010066f: 01 d0 add %edx,%eax
80100671: c1 e0 04 shl $0x4,%eax
80100674: 89 ca mov %ecx,%edx
80100676: 29 c2 sub %eax,%edx
80100678: b8 50 00 00 00 mov $0x50,%eax
8010067d: 29 d0 sub %edx,%eax
8010067f: 01 45 f4 add %eax,-0xc(%ebp)
tmpPos = 0; // tmpPos means the offset to the right, means how many you need to go right to get to the end
80100682: c7 05 18 c6 10 80 00 movl $0x0,0x8010c618
80100689: 00 00 00
8010068c: e9 2e 03 00 00 jmp 801009bf <cgaputc+0x3c9>
}
else if(c == BACKSPACE){
80100691: 8b 45 08 mov 0x8(%ebp),%eax
80100694: 3d 00 01 00 00 cmp $0x100,%eax
80100699: 75 7a jne 80100715 <cgaputc+0x11f>
if(pos > 0) {
8010069b: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
8010069f: 0f 8e 1a 03 00 00 jle 801009bf <cgaputc+0x3c9>
--pos;
801006a5: 83 6d f4 01 subl $0x1,-0xc(%ebp)
int startingPos = pos;
801006a9: 8b 45 f4 mov -0xc(%ebp),%eax
801006ac: 89 45 f0 mov %eax,-0x10(%ebp)
int i;
for (i = 0 ; i < tmpPos ; i++){
801006af: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp)
801006b6: eb 37 jmp 801006ef <cgaputc+0xf9>
memmove(crt+startingPos, crt+startingPos+1, 1); // take the rest of the line on the right 1 place to the left
801006b8: a1 00 a0 10 80 mov 0x8010a000,%eax
801006bd: 8b 55 f0 mov -0x10(%ebp),%edx
801006c0: 83 c2 01 add $0x1,%edx
801006c3: 01 d2 add %edx,%edx
801006c5: 01 c2 add %eax,%edx
801006c7: a1 00 a0 10 80 mov 0x8010a000,%eax
801006cc: 8b 4d f0 mov -0x10(%ebp),%ecx
801006cf: 01 c9 add %ecx,%ecx
801006d1: 01 c8 add %ecx,%eax
801006d3: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
801006da: 00
801006db: 89 54 24 04 mov %edx,0x4(%esp)
801006df: 89 04 24 mov %eax,(%esp)
801006e2: e8 e6 57 00 00 call 80105ecd <memmove>
startingPos++;
801006e7: 83 45 f0 01 addl $0x1,-0x10(%ebp)
else if(c == BACKSPACE){
if(pos > 0) {
--pos;
int startingPos = pos;
int i;
for (i = 0 ; i < tmpPos ; i++){
801006eb: 83 45 ec 01 addl $0x1,-0x14(%ebp)
801006ef: a1 18 c6 10 80 mov 0x8010c618,%eax
801006f4: 39 45 ec cmp %eax,-0x14(%ebp)
801006f7: 7c bf jl 801006b8 <cgaputc+0xc2>
memmove(crt+startingPos, crt+startingPos+1, 1); // take the rest of the line on the right 1 place to the left
startingPos++;
}
crt[pos+tmpPos] = ' ' | 0x0700; // the last place which held the last char should now be blank
801006f9: 8b 15 00 a0 10 80 mov 0x8010a000,%edx
801006ff: a1 18 c6 10 80 mov 0x8010c618,%eax
80100704: 03 45 f4 add -0xc(%ebp),%eax
80100707: 01 c0 add %eax,%eax
80100709: 01 d0 add %edx,%eax
8010070b: 66 c7 00 20 07 movw $0x720,(%eax)
80100710: e9 aa 02 00 00 jmp 801009bf <cgaputc+0x3c9>
}
}
else if (c == KEY_LF) {
80100715: 8b 45 08 mov 0x8(%ebp),%eax
80100718: 3d e4 00 00 00 cmp $0xe4,%eax
8010071d: 75 20 jne 8010073f <cgaputc+0x149>
if (pos > 0) {
8010071f: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80100723: 0f 8e 96 02 00 00 jle 801009bf <cgaputc+0x3c9>
--pos;
80100729: 83 6d f4 01 subl $0x1,-0xc(%ebp)
tmpPos++; // counter for how left are we from the last char in the line
8010072d: a1 18 c6 10 80 mov 0x8010c618,%eax
80100732: 83 c0 01 add $0x1,%eax
80100735: a3 18 c6 10 80 mov %eax,0x8010c618
8010073a: e9 80 02 00 00 jmp 801009bf <cgaputc+0x3c9>
}
}
else if (c == KEY_RT) {
8010073f: 8b 45 08 mov 0x8(%ebp),%eax
80100742: 3d e5 00 00 00 cmp $0xe5,%eax
80100747: 75 23 jne 8010076c <cgaputc+0x176>
if (tmpPos > 0) {
80100749: a1 18 c6 10 80 mov 0x8010c618,%eax
8010074e: 85 c0 test %eax,%eax
80100750: 0f 8e 69 02 00 00 jle 801009bf <cgaputc+0x3c9>
++pos;
80100756: 83 45 f4 01 addl $0x1,-0xc(%ebp)
tmpPos--; // counter for how left are we from the last char in the line
8010075a: a1 18 c6 10 80 mov 0x8010c618,%eax
8010075f: 83 e8 01 sub $0x1,%eax
80100762: a3 18 c6 10 80 mov %eax,0x8010c618
80100767: e9 53 02 00 00 jmp 801009bf <cgaputc+0x3c9>
}
}
else if(c == KEY_UP) { // take the historyCommand of calculated current index and copy it to crt, command not executed gets deleted once pressing up
8010076c: 8b 45 08 mov 0x8(%ebp),%eax
8010076f: 3d e2 00 00 00 cmp $0xe2,%eax
80100774: 0f 85 cd 00 00 00 jne 80100847 <cgaputc+0x251>
int historyIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
8010077a: 8b 15 c0 c5 10 80 mov 0x8010c5c0,%edx
80100780: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100785: 89 d1 mov %edx,%ecx
80100787: 29 c1 sub %eax,%ecx
80100789: 89 c8 mov %ecx,%eax
8010078b: c7 44 24 04 10 00 00 movl $0x10,0x4(%esp)
80100792: 00
80100793: 89 04 24 mov %eax,(%esp)
80100796: e8 32 fe ff ff call 801005cd <modThatDealsWithNegatives>
8010079b: 89 45 d8 mov %eax,-0x28(%ebp)
int i;
for (i = 0; i < strlen(historyArray[historyIndex])-1 ; i++) {
8010079e: c7 45 e8 00 00 00 00 movl $0x0,-0x18(%ebp)
801007a5: eb 5b jmp 80100802 <cgaputc+0x20c>
c = historyArray[historyIndex][i];
801007a7: 8b 45 d8 mov -0x28(%ebp),%eax
801007aa: c1 e0 07 shl $0x7,%eax
801007ad: 03 45 e8 add -0x18(%ebp),%eax
801007b0: 05 60 18 11 80 add $0x80111860,%eax
801007b5: 0f b6 00 movzbl (%eax),%eax
801007b8: 0f be c0 movsbl %al,%eax
801007bb: 89 45 08 mov %eax,0x8(%ebp)
memmove(crt+pos, &c, 1);
801007be: a1 00 a0 10 80 mov 0x8010a000,%eax
801007c3: 8b 55 f4 mov -0xc(%ebp),%edx
801007c6: 01 d2 add %edx,%edx
801007c8: 01 d0 add %edx,%eax
801007ca: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
801007d1: 00
801007d2: 8d 55 08 lea 0x8(%ebp),%edx
801007d5: 89 54 24 04 mov %edx,0x4(%esp)
801007d9: 89 04 24 mov %eax,(%esp)
801007dc: e8 ec 56 00 00 call 80105ecd <memmove>
crt[pos++] = (c&0xff) | 0x0700; // black on white
801007e1: a1 00 a0 10 80 mov 0x8010a000,%eax
801007e6: 8b 55 f4 mov -0xc(%ebp),%edx
801007e9: 01 d2 add %edx,%edx
801007eb: 01 c2 add %eax,%edx
801007ed: 8b 45 08 mov 0x8(%ebp),%eax
801007f0: 66 25 ff 00 and $0xff,%ax
801007f4: 80 cc 07 or $0x7,%ah
801007f7: 66 89 02 mov %ax,(%edx)
801007fa: 83 45 f4 01 addl $0x1,-0xc(%ebp)
}
}
else if(c == KEY_UP) { // take the historyCommand of calculated current index and copy it to crt, command not executed gets deleted once pressing up
int historyIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
int i;
for (i = 0; i < strlen(historyArray[historyIndex])-1 ; i++) {
801007fe: 83 45 e8 01 addl $0x1,-0x18(%ebp)
80100802: 8b 45 d8 mov -0x28(%ebp),%eax
80100805: c1 e0 07 shl $0x7,%eax
80100808: 05 60 18 11 80 add $0x80111860,%eax
8010080d: 89 04 24 mov %eax,(%esp)
80100810: e8 63 58 00 00 call 80106078 <strlen>
80100815: 83 e8 01 sub $0x1,%eax
80100818: 3b 45 e8 cmp -0x18(%ebp),%eax
8010081b: 7f 8a jg 801007a7 <cgaputc+0x1b1>
c = historyArray[historyIndex][i];
memmove(crt+pos, &c, 1);
crt[pos++] = (c&0xff) | 0x0700; // black on white
}
crt[pos+strlen(historyArray[historyIndex])] = ' ' | 0x0700;
8010081d: 8b 1d 00 a0 10 80 mov 0x8010a000,%ebx
80100823: 8b 45 d8 mov -0x28(%ebp),%eax
80100826: c1 e0 07 shl $0x7,%eax
80100829: 05 60 18 11 80 add $0x80111860,%eax
8010082e: 89 04 24 mov %eax,(%esp)
80100831: e8 42 58 00 00 call 80106078 <strlen>
80100836: 03 45 f4 add -0xc(%ebp),%eax
80100839: 01 c0 add %eax,%eax
8010083b: 01 d8 add %ebx,%eax
8010083d: 66 c7 00 20 07 movw $0x720,(%eax)
80100842: e9 78 01 00 00 jmp 801009bf <cgaputc+0x3c9>
}
else if(c == KEY_DN) {
80100847: 8b 45 08 mov 0x8(%ebp),%eax
8010084a: 3d e3 00 00 00 cmp $0xe3,%eax
8010084f: 0f 85 cd 00 00 00 jne 80100922 <cgaputc+0x32c>
int historyIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
80100855: 8b 15 c0 c5 10 80 mov 0x8010c5c0,%edx
8010085b: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100860: 89 d1 mov %edx,%ecx
80100862: 29 c1 sub %eax,%ecx
80100864: 89 c8 mov %ecx,%eax
80100866: c7 44 24 04 10 00 00 movl $0x10,0x4(%esp)
8010086d: 00
8010086e: 89 04 24 mov %eax,(%esp)
80100871: e8 57 fd ff ff call 801005cd <modThatDealsWithNegatives>
80100876: 89 45 d4 mov %eax,-0x2c(%ebp)
int i2;
for (i2 = 0; i2 < strlen(historyArray[historyIndex])-1 ; i2++) {
80100879: c7 45 e4 00 00 00 00 movl $0x0,-0x1c(%ebp)
80100880: eb 5b jmp 801008dd <cgaputc+0x2e7>
c = historyArray[historyIndex][i2];
80100882: 8b 45 d4 mov -0x2c(%ebp),%eax
80100885: c1 e0 07 shl $0x7,%eax
80100888: 03 45 e4 add -0x1c(%ebp),%eax
8010088b: 05 60 18 11 80 add $0x80111860,%eax
80100890: 0f b6 00 movzbl (%eax),%eax
80100893: 0f be c0 movsbl %al,%eax
80100896: 89 45 08 mov %eax,0x8(%ebp)
memmove(crt+pos, &c, 1);
80100899: a1 00 a0 10 80 mov 0x8010a000,%eax
8010089e: 8b 55 f4 mov -0xc(%ebp),%edx
801008a1: 01 d2 add %edx,%edx
801008a3: 01 d0 add %edx,%eax
801008a5: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
801008ac: 00
801008ad: 8d 55 08 lea 0x8(%ebp),%edx
801008b0: 89 54 24 04 mov %edx,0x4(%esp)
801008b4: 89 04 24 mov %eax,(%esp)
801008b7: e8 11 56 00 00 call 80105ecd <memmove>
crt[pos++] = (c&0xff) | 0x0700;
801008bc: a1 00 a0 10 80 mov 0x8010a000,%eax
801008c1: 8b 55 f4 mov -0xc(%ebp),%edx
801008c4: 01 d2 add %edx,%edx
801008c6: 01 c2 add %eax,%edx
801008c8: 8b 45 08 mov 0x8(%ebp),%eax
801008cb: 66 25 ff 00 and $0xff,%ax
801008cf: 80 cc 07 or $0x7,%ah
801008d2: 66 89 02 mov %ax,(%edx)
801008d5: 83 45 f4 01 addl $0x1,-0xc(%ebp)
}
else if(c == KEY_DN) {
int historyIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
int i2;
for (i2 = 0; i2 < strlen(historyArray[historyIndex])-1 ; i2++) {
801008d9: 83 45 e4 01 addl $0x1,-0x1c(%ebp)
801008dd: 8b 45 d4 mov -0x2c(%ebp),%eax
801008e0: c1 e0 07 shl $0x7,%eax
801008e3: 05 60 18 11 80 add $0x80111860,%eax
801008e8: 89 04 24 mov %eax,(%esp)
801008eb: e8 88 57 00 00 call 80106078 <strlen>
801008f0: 83 e8 01 sub $0x1,%eax
801008f3: 3b 45 e4 cmp -0x1c(%ebp),%eax
801008f6: 7f 8a jg 80100882 <cgaputc+0x28c>
c = historyArray[historyIndex][i2];
memmove(crt+pos, &c, 1);
crt[pos++] = (c&0xff) | 0x0700;
}
crt[pos+strlen(historyArray[historyIndex])] = ' ' | 0x0700;
801008f8: 8b 1d 00 a0 10 80 mov 0x8010a000,%ebx
801008fe: 8b 45 d4 mov -0x2c(%ebp),%eax
80100901: c1 e0 07 shl $0x7,%eax
80100904: 05 60 18 11 80 add $0x80111860,%eax
80100909: 89 04 24 mov %eax,(%esp)
8010090c: e8 67 57 00 00 call 80106078 <strlen>
80100911: 03 45 f4 add -0xc(%ebp),%eax
80100914: 01 c0 add %eax,%eax
80100916: 01 d8 add %ebx,%eax
80100918: 66 c7 00 20 07 movw $0x720,(%eax)
8010091d: e9 9d 00 00 00 jmp 801009bf <cgaputc+0x3c9>
}
else
if ( !tmpPos ) { // if we are at the end of the line, just write c to crt (tmpPos = 0 => the most right, !tmpPos=1 means we can write regular)
80100922: a1 18 c6 10 80 mov 0x8010c618,%eax
80100927: 85 c0 test %eax,%eax
80100929: 75 1f jne 8010094a <cgaputc+0x354>
crt[pos++] = (c&0xff) | 0x0700;
8010092b: a1 00 a0 10 80 mov 0x8010a000,%eax
80100930: 8b 55 f4 mov -0xc(%ebp),%edx
80100933: 01 d2 add %edx,%edx
80100935: 01 c2 add %eax,%edx
80100937: 8b 45 08 mov 0x8(%ebp),%eax
8010093a: 66 25 ff 00 and $0xff,%ax
8010093e: 80 cc 07 or $0x7,%ah
80100941: 66 89 02 mov %ax,(%edx)
80100944: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80100948: eb 75 jmp 801009bf <cgaputc+0x3c9>
}
else { // if we're typing in the middle of the command, we shift the remaining right sentene from tmpPos to the right and write c
int endPos = pos + tmpPos -1; // go to the end of the line
8010094a: a1 18 c6 10 80 mov 0x8010c618,%eax
8010094f: 03 45 f4 add -0xc(%ebp),%eax
80100952: 83 e8 01 sub $0x1,%eax
80100955: 89 45 e0 mov %eax,-0x20(%ebp)
int i;
for (i = 0; i < tmpPos ; i++) {
80100958: c7 45 dc 00 00 00 00 movl $0x0,-0x24(%ebp)
8010095f: eb 37 jmp 80100998 <cgaputc+0x3a2>
memmove(crt+endPos+1, crt+endPos, 1); // go backwards and copy forward in the process
80100961: a1 00 a0 10 80 mov 0x8010a000,%eax
80100966: 8b 55 e0 mov -0x20(%ebp),%edx
80100969: 01 d2 add %edx,%edx
8010096b: 01 c2 add %eax,%edx
8010096d: a1 00 a0 10 80 mov 0x8010a000,%eax
80100972: 8b 4d e0 mov -0x20(%ebp),%ecx
80100975: 83 c1 01 add $0x1,%ecx
80100978: 01 c9 add %ecx,%ecx
8010097a: 01 c8 add %ecx,%eax
8010097c: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
80100983: 00
80100984: 89 54 24 04 mov %edx,0x4(%esp)
80100988: 89 04 24 mov %eax,(%esp)
8010098b: e8 3d 55 00 00 call 80105ecd <memmove>
endPos--;
80100990: 83 6d e0 01 subl $0x1,-0x20(%ebp)
crt[pos++] = (c&0xff) | 0x0700;
}
else { // if we're typing in the middle of the command, we shift the remaining right sentene from tmpPos to the right and write c
int endPos = pos + tmpPos -1; // go to the end of the line
int i;
for (i = 0; i < tmpPos ; i++) {
80100994: 83 45 dc 01 addl $0x1,-0x24(%ebp)
80100998: a1 18 c6 10 80 mov 0x8010c618,%eax
8010099d: 39 45 dc cmp %eax,-0x24(%ebp)
801009a0: 7c bf jl 80100961 <cgaputc+0x36b>
memmove(crt+endPos+1, crt+endPos, 1); // go backwards and copy forward in the process
endPos--;
}
crt[pos++] = (c&0xff) | 0x0700;
801009a2: a1 00 a0 10 80 mov 0x8010a000,%eax
801009a7: 8b 55 f4 mov -0xc(%ebp),%edx
801009aa: 01 d2 add %edx,%edx
801009ac: 01 c2 add %eax,%edx
801009ae: 8b 45 08 mov 0x8(%ebp),%eax
801009b1: 66 25 ff 00 and $0xff,%ax
801009b5: 80 cc 07 or $0x7,%ah
801009b8: 66 89 02 mov %ax,(%edx)
801009bb: 83 45 f4 01 addl $0x1,-0xc(%ebp)
}
if((pos/80) >= 24){ // Scroll up.
801009bf: 81 7d f4 7f 07 00 00 cmpl $0x77f,-0xc(%ebp)
801009c6: 7e 53 jle 80100a1b <cgaputc+0x425>
memmove(crt, crt+80, sizeof(crt[0])*23*80);
801009c8: a1 00 a0 10 80 mov 0x8010a000,%eax
801009cd: 8d 90 a0 00 00 00 lea 0xa0(%eax),%edx
801009d3: a1 00 a0 10 80 mov 0x8010a000,%eax
801009d8: c7 44 24 08 60 0e 00 movl $0xe60,0x8(%esp)
801009df: 00
801009e0: 89 54 24 04 mov %edx,0x4(%esp)
801009e4: 89 04 24 mov %eax,(%esp)
801009e7: e8 e1 54 00 00 call 80105ecd <memmove>
pos -= 80;
801009ec: 83 6d f4 50 subl $0x50,-0xc(%ebp)
memset(crt+pos, 0, sizeof(crt[0])*(24*80 - pos));
801009f0: b8 80 07 00 00 mov $0x780,%eax
801009f5: 2b 45 f4 sub -0xc(%ebp),%eax
801009f8: 01 c0 add %eax,%eax
801009fa: 8b 15 00 a0 10 80 mov 0x8010a000,%edx
80100a00: 8b 4d f4 mov -0xc(%ebp),%ecx
80100a03: 01 c9 add %ecx,%ecx
80100a05: 01 ca add %ecx,%edx
80100a07: 89 44 24 08 mov %eax,0x8(%esp)
80100a0b: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80100a12: 00
80100a13: 89 14 24 mov %edx,(%esp)
80100a16: e8 df 53 00 00 call 80105dfa <memset>
}
outb(CRTPORT, 14);
80100a1b: c7 44 24 04 0e 00 00 movl $0xe,0x4(%esp)
80100a22: 00
80100a23: c7 04 24 d4 03 00 00 movl $0x3d4,(%esp)
80100a2a: e8 ab f8 ff ff call 801002da <outb>
outb(CRTPORT+1, pos>>8);
80100a2f: 8b 45 f4 mov -0xc(%ebp),%eax
80100a32: c1 f8 08 sar $0x8,%eax
80100a35: 0f b6 c0 movzbl %al,%eax
80100a38: 89 44 24 04 mov %eax,0x4(%esp)
80100a3c: c7 04 24 d5 03 00 00 movl $0x3d5,(%esp)
80100a43: e8 92 f8 ff ff call 801002da <outb>
outb(CRTPORT, 15);
80100a48: c7 44 24 04 0f 00 00 movl $0xf,0x4(%esp)
80100a4f: 00
80100a50: c7 04 24 d4 03 00 00 movl $0x3d4,(%esp)
80100a57: e8 7e f8 ff ff call 801002da <outb>
outb(CRTPORT+1, pos);
80100a5c: 8b 45 f4 mov -0xc(%ebp),%eax
80100a5f: 0f b6 c0 movzbl %al,%eax
80100a62: 89 44 24 04 mov %eax,0x4(%esp)
80100a66: c7 04 24 d5 03 00 00 movl $0x3d5,(%esp)
80100a6d: e8 68 f8 ff ff call 801002da <outb>
if (c != KEY_LF && c != KEY_RT && c != KEY_UP && c != KEY_DN && c != '\n' && !tmpPos )
80100a72: 8b 45 08 mov 0x8(%ebp),%eax
80100a75: 3d e4 00 00 00 cmp $0xe4,%eax
80100a7a: 74 40 je 80100abc <cgaputc+0x4c6>
80100a7c: 8b 45 08 mov 0x8(%ebp),%eax
80100a7f: 3d e5 00 00 00 cmp $0xe5,%eax
80100a84: 74 36 je 80100abc <cgaputc+0x4c6>
80100a86: 8b 45 08 mov 0x8(%ebp),%eax
80100a89: 3d e2 00 00 00 cmp $0xe2,%eax
80100a8e: 74 2c je 80100abc <cgaputc+0x4c6>
80100a90: 8b 45 08 mov 0x8(%ebp),%eax
80100a93: 3d e3 00 00 00 cmp $0xe3,%eax
80100a98: 74 22 je 80100abc <cgaputc+0x4c6>
80100a9a: 8b 45 08 mov 0x8(%ebp),%eax
80100a9d: 83 f8 0a cmp $0xa,%eax
80100aa0: 74 1a je 80100abc <cgaputc+0x4c6>
80100aa2: a1 18 c6 10 80 mov 0x8010c618,%eax
80100aa7: 85 c0 test %eax,%eax
80100aa9: 75 11 jne 80100abc <cgaputc+0x4c6>
crt[pos] = ' ' | 0x0700;
80100aab: a1 00 a0 10 80 mov 0x8010a000,%eax
80100ab0: 8b 55 f4 mov -0xc(%ebp),%edx
80100ab3: 01 d2 add %edx,%edx
80100ab5: 01 d0 add %edx,%eax
80100ab7: 66 c7 00 20 07 movw $0x720,(%eax)
}
80100abc: 83 c4 44 add $0x44,%esp
80100abf: 5b pop %ebx
80100ac0: 5d pop %ebp
80100ac1: c3 ret
80100ac2 <consputc>:
void
consputc(int c)
{
80100ac2: 55 push %ebp
80100ac3: 89 e5 mov %esp,%ebp
80100ac5: 83 ec 18 sub $0x18,%esp
if(panicked){
80100ac8: a1 cc c5 10 80 mov 0x8010c5cc,%eax
80100acd: 85 c0 test %eax,%eax
80100acf: 74 07 je 80100ad8 <consputc+0x16>
cli();
80100ad1: e8 22 f8 ff ff call 801002f8 <cli>
for(;;)
;
80100ad6: eb fe jmp 80100ad6 <consputc+0x14>
}
switch(c) {
80100ad8: 8b 45 08 mov 0x8(%ebp),%eax
80100adb: 3d 00 01 00 00 cmp $0x100,%eax
80100ae0: 75 26 jne 80100b08 <consputc+0x46>
case BACKSPACE:
uartputc('\b'); uartputc(' '); uartputc('\b'); break;
80100ae2: c7 04 24 08 00 00 00 movl $0x8,(%esp)
80100ae9: e8 17 6e 00 00 call 80107905 <uartputc>
80100aee: c7 04 24 20 00 00 00 movl $0x20,(%esp)
80100af5: e8 0b 6e 00 00 call 80107905 <uartputc>
80100afa: c7 04 24 08 00 00 00 movl $0x8,(%esp)
80100b01: e8 ff 6d 00 00 call 80107905 <uartputc>
80100b06: eb 0b jmp 80100b13 <consputc+0x51>
default:
uartputc(c);
80100b08: 8b 45 08 mov 0x8(%ebp),%eax
80100b0b: 89 04 24 mov %eax,(%esp)
80100b0e: e8 f2 6d 00 00 call 80107905 <uartputc>
}
cgaputc(c);
80100b13: 8b 45 08 mov 0x8(%ebp),%eax
80100b16: 89 04 24 mov %eax,(%esp)
80100b19: e8 d8 fa ff ff call 801005f6 <cgaputc>
}
80100b1e: c9 leave
80100b1f: c3 ret
80100b20 <DeleteCurrentUnfinishedCommand>:
#define C(x) ((x)-'@') // Control-x
void
DeleteCurrentUnfinishedCommand()
{
80100b20: 55 push %ebp
80100b21: 89 e5 mov %esp,%ebp
80100b23: 83 ec 18 sub $0x18,%esp
while(input.w < input.e) { // if we're in the middle of the command - go to the right
80100b26: eb 19 jmp 80100b41 <DeleteCurrentUnfinishedCommand+0x21>
input.w++;
80100b28: a1 58 18 11 80 mov 0x80111858,%eax
80100b2d: 83 c0 01 add $0x1,%eax
80100b30: a3 58 18 11 80 mov %eax,0x80111858
consputc(KEY_RT);
80100b35: c7 04 24 e5 00 00 00 movl $0xe5,(%esp)
80100b3c: e8 81 ff ff ff call 80100ac2 <consputc>
void
DeleteCurrentUnfinishedCommand()
{
while(input.w < input.e) { // if we're in the middle of the command - go to the right
80100b41: 8b 15 58 18 11 80 mov 0x80111858,%edx
80100b47: a1 5c 18 11 80 mov 0x8011185c,%eax
80100b4c: 39 c2 cmp %eax,%edx
80100b4e: 72 d8 jb 80100b28 <DeleteCurrentUnfinishedCommand+0x8>
input.w++;
consputc(KEY_RT);
}
while(input.e != input.r && input.buf[(input.e-1) % INPUT_BUF] != '\n'){ // same as BACKSPACE: do it for entire line
80100b50: eb 35 jmp 80100b87 <DeleteCurrentUnfinishedCommand+0x67>
input.e--;
80100b52: a1 5c 18 11 80 mov 0x8011185c,%eax
80100b57: 83 e8 01 sub $0x1,%eax
80100b5a: a3 5c 18 11 80 mov %eax,0x8011185c
if(input.w != input.r)
80100b5f: 8b 15 58 18 11 80 mov 0x80111858,%edx
80100b65: a1 54 18 11 80 mov 0x80111854,%eax
80100b6a: 39 c2 cmp %eax,%edx
80100b6c: 74 0d je 80100b7b <DeleteCurrentUnfinishedCommand+0x5b>
input.w--;
80100b6e: a1 58 18 11 80 mov 0x80111858,%eax
80100b73: 83 e8 01 sub $0x1,%eax
80100b76: a3 58 18 11 80 mov %eax,0x80111858
consputc(BACKSPACE);
80100b7b: c7 04 24 00 01 00 00 movl $0x100,(%esp)
80100b82: e8 3b ff ff ff call 80100ac2 <consputc>
{
while(input.w < input.e) { // if we're in the middle of the command - go to the right
input.w++;
consputc(KEY_RT);
}
while(input.e != input.r && input.buf[(input.e-1) % INPUT_BUF] != '\n'){ // same as BACKSPACE: do it for entire line
80100b87: 8b 15 5c 18 11 80 mov 0x8011185c,%edx
80100b8d: a1 54 18 11 80 mov 0x80111854,%eax
80100b92: 39 c2 cmp %eax,%edx
80100b94: 74 16 je 80100bac <DeleteCurrentUnfinishedCommand+0x8c>
80100b96: a1 5c 18 11 80 mov 0x8011185c,%eax
80100b9b: 83 e8 01 sub $0x1,%eax
80100b9e: 83 e0 7f and $0x7f,%eax
80100ba1: 0f b6 80 d4 17 11 80 movzbl -0x7feee82c(%eax),%eax
80100ba8: 3c 0a cmp $0xa,%al
80100baa: 75 a6 jne 80100b52 <DeleteCurrentUnfinishedCommand+0x32>
input.e--;
if(input.w != input.r)
input.w--;
consputc(BACKSPACE);
}
}
80100bac: c9 leave
80100bad: c3 ret
80100bae <consoleintr>:
void
consoleintr(int (*getc)(void))
{
80100bae: 55 push %ebp
80100baf: 89 e5 mov %esp,%ebp
80100bb1: 53 push %ebx
80100bb2: 83 ec 44 sub $0x44,%esp
int c;
acquire(&input.lock);
80100bb5: c7 04 24 a0 17 11 80 movl $0x801117a0,(%esp)
80100bbc: e8 ea 4f 00 00 call 80105bab <acquire>
while((c = getc()) >= 0){
80100bc1: e9 5a 05 00 00 jmp 80101120 <consoleintr+0x572>
switch(c){
80100bc6: 8b 45 d8 mov -0x28(%ebp),%eax
80100bc9: 83 f8 7f cmp $0x7f,%eax
80100bcc: 0f 84 ae 00 00 00 je 80100c80 <consoleintr+0xd2>
80100bd2: 83 f8 7f cmp $0x7f,%eax
80100bd5: 7f 18 jg 80100bef <consoleintr+0x41>
80100bd7: 83 f8 10 cmp $0x10,%eax
80100bda: 74 50 je 80100c2c <consoleintr+0x7e>
80100bdc: 83 f8 15 cmp $0x15,%eax
80100bdf: 74 70 je 80100c51 <consoleintr+0xa3>
80100be1: 83 f8 08 cmp $0x8,%eax
80100be4: 0f 84 96 00 00 00 je 80100c80 <consoleintr+0xd2>
80100bea: e9 5e 03 00 00 jmp 80100f4d <consoleintr+0x39f>
80100bef: 3d e3 00 00 00 cmp $0xe3,%eax
80100bf4: 0f 84 75 02 00 00 je 80100e6f <consoleintr+0x2c1>
80100bfa: 3d e3 00 00 00 cmp $0xe3,%eax
80100bff: 7f 10 jg 80100c11 <consoleintr+0x63>
80100c01: 3d e2 00 00 00 cmp $0xe2,%eax
80100c06: 0f 84 6b 01 00 00 je 80100d77 <consoleintr+0x1c9>
80100c0c: e9 3c 03 00 00 jmp 80100f4d <consoleintr+0x39f>
80100c11: 3d e4 00 00 00 cmp $0xe4,%eax
80100c16: 0f 84 f9 00 00 00 je 80100d15 <consoleintr+0x167>
80100c1c: 3d e5 00 00 00 cmp $0xe5,%eax
80100c21: 0f 84 1f 01 00 00 je 80100d46 <consoleintr+0x198>
80100c27: e9 21 03 00 00 jmp 80100f4d <consoleintr+0x39f>
case C('P'): // Process listing.
procdump();
80100c2c: e8 1d 4c 00 00 call 8010584e <procdump>
break;
80100c31: e9 ea 04 00 00 jmp 80101120 <consoleintr+0x572>
case C('U'): // Kill line.
while(input.e != input.w && input.buf[(input.e-1) % INPUT_BUF] != '\n'){
input.e--;
80100c36: a1 5c 18 11 80 mov 0x8011185c,%eax
80100c3b: 83 e8 01 sub $0x1,%eax
80100c3e: a3 5c 18 11 80 mov %eax,0x8011185c
consputc(BACKSPACE);
80100c43: c7 04 24 00 01 00 00 movl $0x100,(%esp)
80100c4a: e8 73 fe ff ff call 80100ac2 <consputc>
80100c4f: eb 01 jmp 80100c52 <consoleintr+0xa4>
switch(c){
case C('P'): // Process listing.
procdump();
break;
case C('U'): // Kill line.
while(input.e != input.w && input.buf[(input.e-1) % INPUT_BUF] != '\n'){
80100c51: 90 nop
80100c52: 8b 15 5c 18 11 80 mov 0x8011185c,%edx
80100c58: a1 58 18 11 80 mov 0x80111858,%eax
80100c5d: 39 c2 cmp %eax,%edx
80100c5f: 0f 84 a5 04 00 00 je 8010110a <consoleintr+0x55c>
80100c65: a1 5c 18 11 80 mov 0x8011185c,%eax
80100c6a: 83 e8 01 sub $0x1,%eax
80100c6d: 83 e0 7f and $0x7f,%eax
80100c70: 0f b6 80 d4 17 11 80 movzbl -0x7feee82c(%eax),%eax
80100c77: 3c 0a cmp $0xa,%al
80100c79: 75 bb jne 80100c36 <consoleintr+0x88>
input.e--;
consputc(BACKSPACE);
}
break;
80100c7b: e9 8a 04 00 00 jmp 8010110a <consoleintr+0x55c>
case C('H'): case '\x7f': // Backspace
if(input.w != input.r) {
80100c80: 8b 15 58 18 11 80 mov 0x80111858,%edx
80100c86: a1 54 18 11 80 mov 0x80111854,%eax
80100c8b: 39 c2 cmp %eax,%edx
80100c8d: 0f 84 7a 04 00 00 je 8010110d <consoleintr+0x55f>
int forwardPos = input.w;
80100c93: a1 58 18 11 80 mov 0x80111858,%eax
80100c98: 89 45 f4 mov %eax,-0xc(%ebp)
int j;
for (j = 0 ; j < input.e-input.w ; j++){ // take the rest of the line on the right 1 place to the left
80100c9b: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
80100ca2: eb 2d jmp 80100cd1 <consoleintr+0x123>
input.buf[forwardPos-1 % INPUT_BUF] = input.buf[forwardPos % INPUT_BUF];
80100ca4: 8b 45 f4 mov -0xc(%ebp),%eax
80100ca7: 8d 48 ff lea -0x1(%eax),%ecx
80100caa: 8b 45 f4 mov -0xc(%ebp),%eax
80100cad: 89 c2 mov %eax,%edx
80100caf: c1 fa 1f sar $0x1f,%edx
80100cb2: c1 ea 19 shr $0x19,%edx
80100cb5: 01 d0 add %edx,%eax
80100cb7: 83 e0 7f and $0x7f,%eax
80100cba: 29 d0 sub %edx,%eax
80100cbc: 0f b6 80 d4 17 11 80 movzbl -0x7feee82c(%eax),%eax
80100cc3: 88 81 d4 17 11 80 mov %al,-0x7feee82c(%ecx)
forwardPos++;
80100cc9: 83 45 f4 01 addl $0x1,-0xc(%ebp)
break;
case C('H'): case '\x7f': // Backspace
if(input.w != input.r) {
int forwardPos = input.w;
int j;
for (j = 0 ; j < input.e-input.w ; j++){ // take the rest of the line on the right 1 place to the left
80100ccd: 83 45 f0 01 addl $0x1,-0x10(%ebp)
80100cd1: 8b 45 f0 mov -0x10(%ebp),%eax
80100cd4: 8b 0d 5c 18 11 80 mov 0x8011185c,%ecx
80100cda: 8b 15 58 18 11 80 mov 0x80111858,%edx
80100ce0: 89 cb mov %ecx,%ebx
80100ce2: 29 d3 sub %edx,%ebx
80100ce4: 89 da mov %ebx,%edx
80100ce6: 39 d0 cmp %edx,%eax
80100ce8: 72 ba jb 80100ca4 <consoleintr+0xf6>
input.buf[forwardPos-1 % INPUT_BUF] = input.buf[forwardPos % INPUT_BUF];
forwardPos++;
}
input.e--;
80100cea: a1 5c 18 11 80 mov 0x8011185c,%eax
80100cef: 83 e8 01 sub $0x1,%eax
80100cf2: a3 5c 18 11 80 mov %eax,0x8011185c
input.w--;
80100cf7: a1 58 18 11 80 mov 0x80111858,%eax
80100cfc: 83 e8 01 sub $0x1,%eax
80100cff: a3 58 18 11 80 mov %eax,0x80111858
consputc(BACKSPACE);
80100d04: c7 04 24 00 01 00 00 movl $0x100,(%esp)
80100d0b: e8 b2 fd ff ff call 80100ac2 <consputc>
}
break;
80100d10: e9 f8 03 00 00 jmp 8010110d <consoleintr+0x55f>
case KEY_LF:
if(input.r < input.w) {
80100d15: 8b 15 54 18 11 80 mov 0x80111854,%edx
80100d1b: a1 58 18 11 80 mov 0x80111858,%eax
80100d20: 39 c2 cmp %eax,%edx
80100d22: 0f 83 e8 03 00 00 jae 80101110 <consoleintr+0x562>
input.w--;
80100d28: a1 58 18 11 80 mov 0x80111858,%eax
80100d2d: 83 e8 01 sub $0x1,%eax
80100d30: a3 58 18 11 80 mov %eax,0x80111858
consputc(KEY_LF);
80100d35: c7 04 24 e4 00 00 00 movl $0xe4,(%esp)
80100d3c: e8 81 fd ff ff call 80100ac2 <consputc>
}
break;
80100d41: e9 ca 03 00 00 jmp 80101110 <consoleintr+0x562>
case KEY_RT:
if(input.w < input.e) {
80100d46: 8b 15 58 18 11 80 mov 0x80111858,%edx
80100d4c: a1 5c 18 11 80 mov 0x8011185c,%eax
80100d51: 39 c2 cmp %eax,%edx
80100d53: 0f 83 ba 03 00 00 jae 80101113 <consoleintr+0x565>
input.w++;
80100d59: a1 58 18 11 80 mov 0x80111858,%eax
80100d5e: 83 c0 01 add $0x1,%eax
80100d61: a3 58 18 11 80 mov %eax,0x80111858
consputc(KEY_RT);
80100d66: c7 04 24 e5 00 00 00 movl $0xe5,(%esp)
80100d6d: e8 50 fd ff ff call 80100ac2 <consputc>
}
break;
80100d72: e9 9c 03 00 00 jmp 80101113 <consoleintr+0x565>
case KEY_UP:
if (commandExecuted == 0 && historyArrayIsFull == 0) { // no history yet, nothing been executed
80100d77: a1 c0 c5 10 80 mov 0x8010c5c0,%eax
80100d7c: 85 c0 test %eax,%eax
80100d7e: 75 0d jne 80100d8d <consoleintr+0x1df>
80100d80: a1 c4 c5 10 80 mov 0x8010c5c4,%eax
80100d85: 85 c0 test %eax,%eax
80100d87: 0f 84 93 03 00 00 je 80101120 <consoleintr+0x572>
break;
}
else if (commandExecuted-currentHistoryPos == 0 && historyArrayIsFull==0) { // we are at the last command executed, can't go up
80100d8d: 8b 15 c0 c5 10 80 mov 0x8010c5c0,%edx
80100d93: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100d98: 39 c2 cmp %eax,%edx
80100d9a: 75 0d jne 80100da9 <consoleintr+0x1fb>
80100d9c: a1 c4 c5 10 80 mov 0x8010c5c4,%eax
80100da1: 85 c0 test %eax,%eax
80100da3: 0f 84 77 03 00 00 je 80101120 <consoleintr+0x572>
break;
}
else if (currentHistoryPos != MAX_HISTORY) { // can perform history execution.
80100da9: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100dae: 83 f8 10 cmp $0x10,%eax
80100db1: 0f 84 5f 03 00 00 je 80101116 <consoleintr+0x568>
if(currentHistoryPos < MAX_HISTORY){
80100db7: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100dbc: 83 f8 0f cmp $0xf,%eax
80100dbf: 7f 0d jg 80100dce <consoleintr+0x220>
currentHistoryPos = currentHistoryPos + 1;
80100dc1: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100dc6: 83 c0 01 add $0x1,%eax
80100dc9: a3 c8 c5 10 80 mov %eax,0x8010c5c8
}
DeleteCurrentUnfinishedCommand();
80100dce: e8 4d fd ff ff call 80100b20 <DeleteCurrentUnfinishedCommand>
int tmpIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
80100dd3: 8b 15 c0 c5 10 80 mov 0x8010c5c0,%edx
80100dd9: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100dde: 89 d1 mov %edx,%ecx
80100de0: 29 c1 sub %eax,%ecx
80100de2: 89 c8 mov %ecx,%eax
80100de4: c7 44 24 04 10 00 00 movl $0x10,0x4(%esp)
80100deb: 00
80100dec: 89 04 24 mov %eax,(%esp)
80100def: e8 d9 f7 ff ff call 801005cd <modThatDealsWithNegatives>
80100df4: 89 45 d4 mov %eax,-0x2c(%ebp)
int j;
for (j = 0 ; j<strlen(historyArray[tmpIndex])-1 ; j++){
80100df7: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp)
80100dfe: eb 43 jmp 80100e43 <consoleintr+0x295>
c = historyArray[tmpIndex][j];
80100e00: 8b 45 d4 mov -0x2c(%ebp),%eax
80100e03: c1 e0 07 shl $0x7,%eax
80100e06: 03 45 ec add -0x14(%ebp),%eax
80100e09: 05 60 18 11 80 add $0x80111860,%eax
80100e0e: 0f b6 00 movzbl (%eax),%eax
80100e11: 0f be c0 movsbl %al,%eax
80100e14: 89 45 d8 mov %eax,-0x28(%ebp)
input.buf[input.w++ % INPUT_BUF] = c;
80100e17: a1 58 18 11 80 mov 0x80111858,%eax
80100e1c: 89 c1 mov %eax,%ecx
80100e1e: 83 e1 7f and $0x7f,%ecx
80100e21: 8b 55 d8 mov -0x28(%ebp),%edx
80100e24: 88 91 d4 17 11 80 mov %dl,-0x7feee82c(%ecx)
80100e2a: 83 c0 01 add $0x1,%eax
80100e2d: a3 58 18 11 80 mov %eax,0x80111858
input.e++;
80100e32: a1 5c 18 11 80 mov 0x8011185c,%eax
80100e37: 83 c0 01 add $0x1,%eax
80100e3a: a3 5c 18 11 80 mov %eax,0x8011185c
currentHistoryPos = currentHistoryPos + 1;
}
DeleteCurrentUnfinishedCommand();
int tmpIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
int j;
for (j = 0 ; j<strlen(historyArray[tmpIndex])-1 ; j++){
80100e3f: 83 45 ec 01 addl $0x1,-0x14(%ebp)
80100e43: 8b 45 d4 mov -0x2c(%ebp),%eax
80100e46: c1 e0 07 shl $0x7,%eax
80100e49: 05 60 18 11 80 add $0x80111860,%eax
80100e4e: 89 04 24 mov %eax,(%esp)
80100e51: e8 22 52 00 00 call 80106078 <strlen>
80100e56: 83 e8 01 sub $0x1,%eax
80100e59: 3b 45 ec cmp -0x14(%ebp),%eax
80100e5c: 7f a2 jg 80100e00 <consoleintr+0x252>
c = historyArray[tmpIndex][j];
input.buf[input.w++ % INPUT_BUF] = c;
input.e++;
}
consputc(KEY_UP);
80100e5e: c7 04 24 e2 00 00 00 movl $0xe2,(%esp)
80100e65: e8 58 fc ff ff call 80100ac2 <consputc>
}
break;
80100e6a: e9 a7 02 00 00 jmp 80101116 <consoleintr+0x568>
case KEY_DN:
if (commandExecuted == 0 && historyArrayIsFull == 0) {
80100e6f: a1 c0 c5 10 80 mov 0x8010c5c0,%eax
80100e74: 85 c0 test %eax,%eax
80100e76: 75 0d jne 80100e85 <consoleintr+0x2d7>
80100e78: a1 c4 c5 10 80 mov 0x8010c5c4,%eax
80100e7d: 85 c0 test %eax,%eax
80100e7f: 0f 84 9b 02 00 00 je 80101120 <consoleintr+0x572>
break;
}
else if (currentHistoryPos==0 ) {
80100e85: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100e8a: 85 c0 test %eax,%eax
80100e8c: 0f 84 87 02 00 00 je 80101119 <consoleintr+0x56b>
break;
}
else if (currentHistoryPos) {
80100e92: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100e97: 85 c0 test %eax,%eax
80100e99: 0f 84 7d 02 00 00 je 8010111c <consoleintr+0x56e>
currentHistoryPos = currentHistoryPos - 1;
80100e9f: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100ea4: 83 e8 01 sub $0x1,%eax
80100ea7: a3 c8 c5 10 80 mov %eax,0x8010c5c8
DeleteCurrentUnfinishedCommand();
80100eac: e8 6f fc ff ff call 80100b20 <DeleteCurrentUnfinishedCommand>
int tmpIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
80100eb1: 8b 15 c0 c5 10 80 mov 0x8010c5c0,%edx
80100eb7: a1 c8 c5 10 80 mov 0x8010c5c8,%eax
80100ebc: 89 d3 mov %edx,%ebx
80100ebe: 29 c3 sub %eax,%ebx
80100ec0: 89 d8 mov %ebx,%eax
80100ec2: c7 44 24 04 10 00 00 movl $0x10,0x4(%esp)
80100ec9: 00
80100eca: 89 04 24 mov %eax,(%esp)
80100ecd: e8 fb f6 ff ff call 801005cd <modThatDealsWithNegatives>
80100ed2: 89 45 d0 mov %eax,-0x30(%ebp)
int j;
for (j = 0 ; j<strlen(historyArray[tmpIndex])-1 ; j++){
80100ed5: c7 45 e8 00 00 00 00 movl $0x0,-0x18(%ebp)
80100edc: eb 43 jmp 80100f21 <consoleintr+0x373>
c = historyArray[tmpIndex][j];
80100ede: 8b 45 d0 mov -0x30(%ebp),%eax
80100ee1: c1 e0 07 shl $0x7,%eax
80100ee4: 03 45 e8 add -0x18(%ebp),%eax
80100ee7: 05 60 18 11 80 add $0x80111860,%eax
80100eec: 0f b6 00 movzbl (%eax),%eax
80100eef: 0f be c0 movsbl %al,%eax
80100ef2: 89 45 d8 mov %eax,-0x28(%ebp)
input.buf[input.w++ % INPUT_BUF] = c;
80100ef5: a1 58 18 11 80 mov 0x80111858,%eax
80100efa: 89 c1 mov %eax,%ecx
80100efc: 83 e1 7f and $0x7f,%ecx
80100eff: 8b 55 d8 mov -0x28(%ebp),%edx
80100f02: 88 91 d4 17 11 80 mov %dl,-0x7feee82c(%ecx)
80100f08: 83 c0 01 add $0x1,%eax
80100f0b: a3 58 18 11 80 mov %eax,0x80111858
input.e++;
80100f10: a1 5c 18 11 80 mov 0x8011185c,%eax
80100f15: 83 c0 01 add $0x1,%eax
80100f18: a3 5c 18 11 80 mov %eax,0x8011185c
else if (currentHistoryPos) {
currentHistoryPos = currentHistoryPos - 1;
DeleteCurrentUnfinishedCommand();
int tmpIndex = modThatDealsWithNegatives((commandExecuted - currentHistoryPos), MAX_HISTORY);
int j;
for (j = 0 ; j<strlen(historyArray[tmpIndex])-1 ; j++){
80100f1d: 83 45 e8 01 addl $0x1,-0x18(%ebp)
80100f21: 8b 45 d0 mov -0x30(%ebp),%eax
80100f24: c1 e0 07 shl $0x7,%eax
80100f27: 05 60 18 11 80 add $0x80111860,%eax
80100f2c: 89 04 24 mov %eax,(%esp)
80100f2f: e8 44 51 00 00 call 80106078 <strlen>
80100f34: 83 e8 01 sub $0x1,%eax
80100f37: 3b 45 e8 cmp -0x18(%ebp),%eax
80100f3a: 7f a2 jg 80100ede <consoleintr+0x330>
c = historyArray[tmpIndex][j];
input.buf[input.w++ % INPUT_BUF] = c;
input.e++;
}
consputc(KEY_DN);
80100f3c: c7 04 24 e3 00 00 00 movl $0xe3,(%esp)
80100f43: e8 7a fb ff ff call 80100ac2 <consputc>
}
break;
80100f48: e9 cf 01 00 00 jmp 8010111c <consoleintr+0x56e>
default:
if(c != 0 && input.e-input.r < INPUT_BUF){
80100f4d: 83 7d d8 00 cmpl $0x0,-0x28(%ebp)
80100f51: 0f 84 c8 01 00 00 je 8010111f <consoleintr+0x571>
80100f57: 8b 15 5c 18 11 80 mov 0x8011185c,%edx
80100f5d: a1 54 18 11 80 mov 0x80111854,%eax
80100f62: 89 d1 mov %edx,%ecx
80100f64: 29 c1 sub %eax,%ecx
80100f66: 89 c8 mov %ecx,%eax
80100f68: 83 f8 7f cmp $0x7f,%eax
80100f6b: 0f 87 ae 01 00 00 ja 8010111f <consoleintr+0x571>
c = (c == '\r') ? '\n' : c;
80100f71: 83 7d d8 0d cmpl $0xd,-0x28(%ebp)
80100f75: 74 05 je 80100f7c <consoleintr+0x3ce>
80100f77: 8b 45 d8 mov -0x28(%ebp),%eax
80100f7a: eb 05 jmp 80100f81 <consoleintr+0x3d3>
80100f7c: b8 0a 00 00 00 mov $0xa,%eax
80100f81: 89 45 d8 mov %eax,-0x28(%ebp)
if (c != '\n') { // regular write, not execute
80100f84: 83 7d d8 0a cmpl $0xa,-0x28(%ebp)
80100f88: 0f 84 81 00 00 00 je 8010100f <consoleintr+0x461>
int forwardPos = input.e;
80100f8e: a1 5c 18 11 80 mov 0x8011185c,%eax
80100f93: 89 45 e4 mov %eax,-0x1c(%ebp)
int j;
for (j = 0 ; j<input.e-input.w ; j++){
80100f96: c7 45 e0 00 00 00 00 movl $0x0,-0x20(%ebp)
80100f9d: eb 2d jmp 80100fcc <consoleintr+0x41e>
input.buf[forwardPos % INPUT_BUF] = input.buf[forwardPos-1 % INPUT_BUF];
80100f9f: 8b 45 e4 mov -0x1c(%ebp),%eax
80100fa2: 89 c2 mov %eax,%edx
80100fa4: c1 fa 1f sar $0x1f,%edx
80100fa7: c1 ea 19 shr $0x19,%edx
80100faa: 01 d0 add %edx,%eax
80100fac: 83 e0 7f and $0x7f,%eax
80100faf: 29 d0 sub %edx,%eax
80100fb1: 8b 55 e4 mov -0x1c(%ebp),%edx
80100fb4: 83 ea 01 sub $0x1,%edx
80100fb7: 0f b6 92 d4 17 11 80 movzbl -0x7feee82c(%edx),%edx
80100fbe: 88 90 d4 17 11 80 mov %dl,-0x7feee82c(%eax)
forwardPos--;
80100fc4: 83 6d e4 01 subl $0x1,-0x1c(%ebp)
if(c != 0 && input.e-input.r < INPUT_BUF){
c = (c == '\r') ? '\n' : c;
if (c != '\n') { // regular write, not execute
int forwardPos = input.e;
int j;
for (j = 0 ; j<input.e-input.w ; j++){
80100fc8: 83 45 e0 01 addl $0x1,-0x20(%ebp)
80100fcc: 8b 45 e0 mov -0x20(%ebp),%eax
80100fcf: 8b 0d 5c 18 11 80 mov 0x8011185c,%ecx
80100fd5: 8b 15 58 18 11 80 mov 0x80111858,%edx
80100fdb: 89 cb mov %ecx,%ebx
80100fdd: 29 d3 sub %edx,%ebx
80100fdf: 89 da mov %ebx,%edx
80100fe1: 39 d0 cmp %edx,%eax
80100fe3: 72 ba jb 80100f9f <consoleintr+0x3f1>
input.buf[forwardPos % INPUT_BUF] = input.buf[forwardPos-1 % INPUT_BUF];
forwardPos--;
}
input.buf[input.w++ % INPUT_BUF] = c;
80100fe5: a1 58 18 11 80 mov 0x80111858,%eax
80100fea: 89 c1 mov %eax,%ecx
80100fec: 83 e1 7f and $0x7f,%ecx
80100fef: 8b 55 d8 mov -0x28(%ebp),%edx
80100ff2: 88 91 d4 17 11 80 mov %dl,-0x7feee82c(%ecx)
80100ff8: 83 c0 01 add $0x1,%eax
80100ffb: a3 58 18 11 80 mov %eax,0x80111858
input.e++;
80101000: a1 5c 18 11 80 mov 0x8011185c,%eax
80101005: 83 c0 01 add $0x1,%eax
80101008: a3 5c 18 11 80 mov %eax,0x8011185c
8010100d: eb 1b jmp 8010102a <consoleintr+0x47c>
}
else {
input.buf[input.e++ % INPUT_BUF] = c;
8010100f: a1 5c 18 11 80 mov 0x8011185c,%eax
80101014: 89 c1 mov %eax,%ecx
80101016: 83 e1 7f and $0x7f,%ecx
80101019: 8b 55 d8 mov -0x28(%ebp),%edx
8010101c: 88 91 d4 17 11 80 mov %dl,-0x7feee82c(%ecx)
80101022: 83 c0 01 add $0x1,%eax
80101025: a3 5c 18 11 80 mov %eax,0x8011185c
}
consputc(c);
8010102a: 8b 45 d8 mov -0x28(%ebp),%eax
8010102d: 89 04 24 mov %eax,(%esp)
80101030: e8 8d fa ff ff call 80100ac2 <consputc>
if(c == '\n' || c == C('D') || input.e == input.r+INPUT_BUF){
80101035: 83 7d d8 0a cmpl $0xa,-0x28(%ebp)
80101039: 74 1c je 80101057 <consoleintr+0x4a9>
8010103b: 83 7d d8 04 cmpl $0x4,-0x28(%ebp)
8010103f: 74 16 je 80101057 <consoleintr+0x4a9>
80101041: a1 5c 18 11 80 mov 0x8011185c,%eax
80101046: 8b 15 54 18 11 80 mov 0x80111854,%edx
8010104c: 83 ea 80 sub $0xffffff80,%edx
8010104f: 39 d0 cmp %edx,%eax
80101051: 0f 85 c8 00 00 00 jne 8010111f <consoleintr+0x571>
currentHistoryPos=0;
80101057: c7 05 c8 c5 10 80 00 movl $0x0,0x8010c5c8
8010105e: 00 00 00
int tmpHistoryIndex;
for (tmpHistoryIndex = 0 ; tmpHistoryIndex < input.e-input.r ; tmpHistoryIndex++){ // copy the command from the buffer to the historyArray at current position
80101061: c7 45 dc 00 00 00 00 movl $0x0,-0x24(%ebp)
80101068: eb 3b jmp 801010a5 <consoleintr+0x4f7>
historyArray[commandExecuted][tmpHistoryIndex] = input.buf[input.r+tmpHistoryIndex % INPUT_BUF]; // copy chars from buffer to array
8010106a: 8b 0d c0 c5 10 80 mov 0x8010c5c0,%ecx
80101070: 8b 1d 54 18 11 80 mov 0x80111854,%ebx
80101076: 8b 45 dc mov -0x24(%ebp),%eax
80101079: 89 c2 mov %eax,%edx
8010107b: c1 fa 1f sar $0x1f,%edx
8010107e: c1 ea 19 shr $0x19,%edx
80101081: 01 d0 add %edx,%eax
80101083: 83 e0 7f and $0x7f,%eax
80101086: 29 d0 sub %edx,%eax
80101088: 01 d8 add %ebx,%eax
8010108a: 0f b6 80 d4 17 11 80 movzbl -0x7feee82c(%eax),%eax
80101091: 89 ca mov %ecx,%edx
80101093: c1 e2 07 shl $0x7,%edx
80101096: 03 55 dc add -0x24(%ebp),%edx
80101099: 81 c2 60 18 11 80 add $0x80111860,%edx
8010109f: 88 02 mov %al,(%edx)
}
consputc(c);
if(c == '\n' || c == C('D') || input.e == input.r+INPUT_BUF){
currentHistoryPos=0;
int tmpHistoryIndex;
for (tmpHistoryIndex = 0 ; tmpHistoryIndex < input.e-input.r ; tmpHistoryIndex++){ // copy the command from the buffer to the historyArray at current position
801010a1: 83 45 dc 01 addl $0x1,-0x24(%ebp)
801010a5: 8b 45 dc mov -0x24(%ebp),%eax
801010a8: 8b 0d 5c 18 11 80 mov 0x8011185c,%ecx
801010ae: 8b 15 54 18 11 80 mov 0x80111854,%edx
801010b4: 89 cb mov %ecx,%ebx
801010b6: 29 d3 sub %edx,%ebx
801010b8: 89 da mov %ebx,%edx
801010ba: 39 d0 cmp %edx,%eax
801010bc: 72 ac jb 8010106a <consoleintr+0x4bc>
historyArray[commandExecuted][tmpHistoryIndex] = input.buf[input.r+tmpHistoryIndex % INPUT_BUF]; // copy chars from buffer to array
}
if (commandExecuted == MAX_HISTORY-1)
801010be: a1 c0 c5 10 80 mov 0x8010c5c0,%eax
801010c3: 83 f8 0f cmp $0xf,%eax
801010c6: 75 0a jne 801010d2 <consoleintr+0x524>
historyArrayIsFull = 1;
801010c8: c7 05 c4 c5 10 80 01 movl $0x1,0x8010c5c4
801010cf: 00 00 00
commandExecuted = (commandExecuted+1) % MAX_HISTORY;
801010d2: a1 c0 c5 10 80 mov 0x8010c5c0,%eax
801010d7: 8d 50 01 lea 0x1(%eax),%edx
801010da: 89 d0 mov %edx,%eax
801010dc: c1 f8 1f sar $0x1f,%eax
801010df: c1 e8 1c shr $0x1c,%eax
801010e2: 01 c2 add %eax,%edx
801010e4: 83 e2 0f and $0xf,%edx
801010e7: 89 d1 mov %edx,%ecx
801010e9: 29 c1 sub %eax,%ecx
801010eb: 89 c8 mov %ecx,%eax
801010ed: a3 c0 c5 10 80 mov %eax,0x8010c5c0
input.w = input.e;
801010f2: a1 5c 18 11 80 mov 0x8011185c,%eax
801010f7: a3 58 18 11 80 mov %eax,0x80111858
wakeup(&input.r);
801010fc: c7 04 24 54 18 11 80 movl $0x80111854,(%esp)
80101103: e8 a0 46 00 00 call 801057a8 <wakeup>
}
}
break;
80101108: eb 15 jmp 8010111f <consoleintr+0x571>
case C('U'): // Kill line.
while(input.e != input.w && input.buf[(input.e-1) % INPUT_BUF] != '\n'){
input.e--;
consputc(BACKSPACE);
}
break;
8010110a: 90 nop
8010110b: eb 13 jmp 80101120 <consoleintr+0x572>
}
input.e--;
input.w--;
consputc(BACKSPACE);
}
break;
8010110d: 90 nop
8010110e: eb 10 jmp 80101120 <consoleintr+0x572>
case KEY_LF:
if(input.r < input.w) {
input.w--;
consputc(KEY_LF);
}
break;
80101110: 90 nop
80101111: eb 0d jmp 80101120 <consoleintr+0x572>
case KEY_RT:
if(input.w < input.e) {
input.w++;
consputc(KEY_RT);
}
break;
80101113: 90 nop
80101114: eb 0a jmp 80101120 <consoleintr+0x572>
input.buf[input.w++ % INPUT_BUF] = c;
input.e++;
}
consputc(KEY_UP);
}
break;
80101116: 90 nop
80101117: eb 07 jmp 80101120 <consoleintr+0x572>
case KEY_DN:
if (commandExecuted == 0 && historyArrayIsFull == 0) {
break;
}
else if (currentHistoryPos==0 ) {
break;
80101119: 90 nop
8010111a: eb 04 jmp 80101120 <consoleintr+0x572>
input.buf[input.w++ % INPUT_BUF] = c;
input.e++;
}
consputc(KEY_DN);
}
break;
8010111c: 90 nop
8010111d: eb 01 jmp 80101120 <consoleintr+0x572>
input.w = input.e;
wakeup(&input.r);
}
}
break;
8010111f: 90 nop
consoleintr(int (*getc)(void))
{
int c;
acquire(&input.lock);
while((c = getc()) >= 0){
80101120: 8b 45 08 mov 0x8(%ebp),%eax
80101123: ff d0 call *%eax
80101125: 89 45 d8 mov %eax,-0x28(%ebp)
80101128: 83 7d d8 00 cmpl $0x0,-0x28(%ebp)
8010112c: 0f 89 94 fa ff ff jns 80100bc6 <consoleintr+0x18>
}
}
break;
}
}
release(&input.lock);
80101132: c7 04 24 a0 17 11 80 movl $0x801117a0,(%esp)
80101139: e8 cf 4a 00 00 call 80105c0d <release>
}
8010113e: 83 c4 44 add $0x44,%esp
80101141: 5b pop %ebx
80101142: 5d pop %ebp
80101143: c3 ret
80101144 <consoleread>:
int
consoleread(struct inode *ip, char *dst, int n)
{
80101144: 55 push %ebp
80101145: 89 e5 mov %esp,%ebp
80101147: 83 ec 28 sub $0x28,%esp
uint target;
int c;
iunlock(ip);
8010114a: 8b 45 08 mov 0x8(%ebp),%eax
8010114d: 89 04 24 mov %eax,(%esp)
80101150: e8 04 11 00 00 call 80102259 <iunlock>
target = n;
80101155: 8b 45 10 mov 0x10(%ebp),%eax
80101158: 89 45 f4 mov %eax,-0xc(%ebp)
acquire(&input.lock);
8010115b: c7 04 24 a0 17 11 80 movl $0x801117a0,(%esp)
80101162: e8 44 4a 00 00 call 80105bab <acquire>
while(n > 0){
80101167: e9 a8 00 00 00 jmp 80101214 <consoleread+0xd0>
while(input.r == input.w){
if(proc->killed){
8010116c: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80101172: 8b 40 24 mov 0x24(%eax),%eax
80101175: 85 c0 test %eax,%eax
80101177: 74 21 je 8010119a <consoleread+0x56>
release(&input.lock);
80101179: c7 04 24 a0 17 11 80 movl $0x801117a0,(%esp)
80101180: e8 88 4a 00 00 call 80105c0d <release>
ilock(ip);
80101185: 8b 45 08 mov 0x8(%ebp),%eax
80101188: 89 04 24 mov %eax,(%esp)
8010118b: e8 75 0f 00 00 call 80102105 <ilock>
return -1;
80101190: b8 ff ff ff ff mov $0xffffffff,%eax
80101195: e9 a9 00 00 00 jmp 80101243 <consoleread+0xff>
}
sleep(&input.r, &input.lock);
8010119a: c7 44 24 04 a0 17 11 movl $0x801117a0,0x4(%esp)
801011a1: 80
801011a2: c7 04 24 54 18 11 80 movl $0x80111854,(%esp)
801011a9: e8 11 45 00 00 call 801056bf <sleep>
801011ae: eb 01 jmp 801011b1 <consoleread+0x6d>
iunlock(ip);
target = n;
acquire(&input.lock);
while(n > 0){
while(input.r == input.w){
801011b0: 90 nop
801011b1: 8b 15 54 18 11 80 mov 0x80111854,%edx
801011b7: a1 58 18 11 80 mov 0x80111858,%eax
801011bc: 39 c2 cmp %eax,%edx
801011be: 74 ac je 8010116c <consoleread+0x28>
ilock(ip);
return -1;
}
sleep(&input.r, &input.lock);
}
c = input.buf[input.r++ % INPUT_BUF];
801011c0: a1 54 18 11 80 mov 0x80111854,%eax
801011c5: 89 c2 mov %eax,%edx
801011c7: 83 e2 7f and $0x7f,%edx
801011ca: 0f b6 92 d4 17 11 80 movzbl -0x7feee82c(%edx),%edx
801011d1: 0f be d2 movsbl %dl,%edx
801011d4: 89 55 f0 mov %edx,-0x10(%ebp)
801011d7: 83 c0 01 add $0x1,%eax
801011da: a3 54 18 11 80 mov %eax,0x80111854
if(c == C('D')){ // EOF
801011df: 83 7d f0 04 cmpl $0x4,-0x10(%ebp)
801011e3: 75 17 jne 801011fc <consoleread+0xb8>
if(n < target){
801011e5: 8b 45 10 mov 0x10(%ebp),%eax
801011e8: 3b 45 f4 cmp -0xc(%ebp),%eax
801011eb: 73 2f jae 8010121c <consoleread+0xd8>
// Save ^D for next time, to make sure
// caller gets a 0-byte result.
input.r--;
801011ed: a1 54 18 11 80 mov 0x80111854,%eax
801011f2: 83 e8 01 sub $0x1,%eax
801011f5: a3 54 18 11 80 mov %eax,0x80111854
}
break;
801011fa: eb 20 jmp 8010121c <consoleread+0xd8>
}
*dst++ = c;
801011fc: 8b 45 f0 mov -0x10(%ebp),%eax
801011ff: 89 c2 mov %eax,%edx
80101201: 8b 45 0c mov 0xc(%ebp),%eax
80101204: 88 10 mov %dl,(%eax)
80101206: 83 45 0c 01 addl $0x1,0xc(%ebp)
--n;
8010120a: 83 6d 10 01 subl $0x1,0x10(%ebp)
if(c == '\n')
8010120e: 83 7d f0 0a cmpl $0xa,-0x10(%ebp)
80101212: 74 0b je 8010121f <consoleread+0xdb>
int c;
iunlock(ip);
target = n;
acquire(&input.lock);
while(n > 0){
80101214: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80101218: 7f 96 jg 801011b0 <consoleread+0x6c>
8010121a: eb 04 jmp 80101220 <consoleread+0xdc>
if(n < target){
// Save ^D for next time, to make sure
// caller gets a 0-byte result.
input.r--;
}
break;
8010121c: 90 nop
8010121d: eb 01 jmp 80101220 <consoleread+0xdc>
}
*dst++ = c;
--n;
if(c == '\n')
break;
8010121f: 90 nop
}
release(&input.lock);
80101220: c7 04 24 a0 17 11 80 movl $0x801117a0,(%esp)
80101227: e8 e1 49 00 00 call 80105c0d <release>
ilock(ip);
8010122c: 8b 45 08 mov 0x8(%ebp),%eax
8010122f: 89 04 24 mov %eax,(%esp)
80101232: e8 ce 0e 00 00 call 80102105 <ilock>
return target - n;
80101237: 8b 45 10 mov 0x10(%ebp),%eax
8010123a: 8b 55 f4 mov -0xc(%ebp),%edx
8010123d: 89 d1 mov %edx,%ecx
8010123f: 29 c1 sub %eax,%ecx
80101241: 89 c8 mov %ecx,%eax
}
80101243: c9 leave
80101244: c3 ret
80101245 <consolewrite>:
int
consolewrite(struct inode *ip, char *buf, int n)
{
80101245: 55 push %ebp
80101246: 89 e5 mov %esp,%ebp
80101248: 83 ec 28 sub $0x28,%esp
int i;
iunlock(ip);
8010124b: 8b 45 08 mov 0x8(%ebp),%eax
8010124e: 89 04 24 mov %eax,(%esp)
80101251: e8 03 10 00 00 call 80102259 <iunlock>
acquire(&cons.lock);
80101256: c7 04 24 e0 c5 10 80 movl $0x8010c5e0,(%esp)
8010125d: e8 49 49 00 00 call 80105bab <acquire>
for(i = 0; i < n; i++)
80101262: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80101269: eb 1d jmp 80101288 <consolewrite+0x43>
consputc(buf[i] & 0xff);
8010126b: 8b 45 f4 mov -0xc(%ebp),%eax
8010126e: 03 45 0c add 0xc(%ebp),%eax
80101271: 0f b6 00 movzbl (%eax),%eax
80101274: 0f be c0 movsbl %al,%eax
80101277: 25 ff 00 00 00 and $0xff,%eax
8010127c: 89 04 24 mov %eax,(%esp)
8010127f: e8 3e f8 ff ff call 80100ac2 <consputc>
{
int i;
iunlock(ip);
acquire(&cons.lock);
for(i = 0; i < n; i++)
80101284: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80101288: 8b 45 f4 mov -0xc(%ebp),%eax
8010128b: 3b 45 10 cmp 0x10(%ebp),%eax
8010128e: 7c db jl 8010126b <consolewrite+0x26>
consputc(buf[i] & 0xff);
release(&cons.lock);
80101290: c7 04 24 e0 c5 10 80 movl $0x8010c5e0,(%esp)
80101297: e8 71 49 00 00 call 80105c0d <release>
ilock(ip);
8010129c: 8b 45 08 mov 0x8(%ebp),%eax
8010129f: 89 04 24 mov %eax,(%esp)
801012a2: e8 5e 0e 00 00 call 80102105 <ilock>
return n;
801012a7: 8b 45 10 mov 0x10(%ebp),%eax
}
801012aa: c9 leave
801012ab: c3 ret
801012ac <consoleinit>:
void
consoleinit(void)
{
801012ac: 55 push %ebp
801012ad: 89 e5 mov %esp,%ebp
801012af: 83 ec 18 sub $0x18,%esp
initlock(&cons.lock, "console");
801012b2: c7 44 24 04 ff 92 10 movl $0x801092ff,0x4(%esp)
801012b9: 80
801012ba: c7 04 24 e0 c5 10 80 movl $0x8010c5e0,(%esp)
801012c1: e8 c4 48 00 00 call 80105b8a <initlock>
initlock(&input.lock, "input");
801012c6: c7 44 24 04 07 93 10 movl $0x80109307,0x4(%esp)
801012cd: 80
801012ce: c7 04 24 a0 17 11 80 movl $0x801117a0,(%esp)
801012d5: e8 b0 48 00 00 call 80105b8a <initlock>
devsw[CONSOLE].write = consolewrite;
801012da: c7 05 0c 2a 11 80 45 movl $0x80101245,0x80112a0c
801012e1: 12 10 80
devsw[CONSOLE].read = consoleread;
801012e4: c7 05 08 2a 11 80 44 movl $0x80101144,0x80112a08
801012eb: 11 10 80
cons.locking = 1;
801012ee: c7 05 14 c6 10 80 01 movl $0x1,0x8010c614
801012f5: 00 00 00
picenable(IRQ_KBD);
801012f8: c7 04 24 01 00 00 00 movl $0x1,(%esp)
801012ff: e8 d1 33 00 00 call 801046d5 <picenable>
ioapicenable(IRQ_KBD, 0);
80101304: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
8010130b: 00
8010130c: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80101313: e8 36 1f 00 00 call 8010324e <ioapicenable>
}
80101318: c9 leave
80101319: c3 ret
...
8010131c <exec>:
#include "x86.h"
#include "elf.h"
int
exec(char *path, char **argv)
{
8010131c: 55 push %ebp
8010131d: 89 e5 mov %esp,%ebp
8010131f: 81 ec 38 01 00 00 sub $0x138,%esp
struct elfhdr elf;
struct inode *ip;
struct proghdr ph;
pde_t *pgdir, *oldpgdir;
begin_op();
80101325: e8 f7 29 00 00 call 80103d21 <begin_op>
if((ip = namei(path)) == 0){
8010132a: 8b 45 08 mov 0x8(%ebp),%eax
8010132d: 89 04 24 mov %eax,(%esp)
80101330: e8 78 19 00 00 call 80102cad <namei>
80101335: 89 45 d8 mov %eax,-0x28(%ebp)
80101338: 83 7d d8 00 cmpl $0x0,-0x28(%ebp)
8010133c: 75 0f jne 8010134d <exec+0x31>
end_op();
8010133e: e8 5f 2a 00 00 call 80103da2 <end_op>
return -1;
80101343: b8 ff ff ff ff mov $0xffffffff,%eax
80101348: e9 ed 03 00 00 jmp 8010173a <exec+0x41e>
}
ilock(ip);
8010134d: 8b 45 d8 mov -0x28(%ebp),%eax
80101350: 89 04 24 mov %eax,(%esp)
80101353: e8 ad 0d 00 00 call 80102105 <ilock>
pgdir = 0;
80101358: c7 45 d4 00 00 00 00 movl $0x0,-0x2c(%ebp)
// Check ELF header
if(readi(ip, (char*)&elf, 0, sizeof(elf)) < sizeof(elf))
8010135f: c7 44 24 0c 34 00 00 movl $0x34,0xc(%esp)
80101366: 00
80101367: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
8010136e: 00
8010136f: 8d 85 0c ff ff ff lea -0xf4(%ebp),%eax
80101375: 89 44 24 04 mov %eax,0x4(%esp)
80101379: 8b 45 d8 mov -0x28(%ebp),%eax
8010137c: 89 04 24 mov %eax,(%esp)
8010137f: e8 7d 12 00 00 call 80102601 <readi>
80101384: 83 f8 33 cmp $0x33,%eax
80101387: 0f 86 62 03 00 00 jbe 801016ef <exec+0x3d3>
goto bad;
if(elf.magic != ELF_MAGIC)
8010138d: 8b 85 0c ff ff ff mov -0xf4(%ebp),%eax
80101393: 3d 7f 45 4c 46 cmp $0x464c457f,%eax
80101398: 0f 85 54 03 00 00 jne 801016f2 <exec+0x3d6>
goto bad;
if((pgdir = setupkvm()) == 0)
8010139e: e8 a6 76 00 00 call 80108a49 <setupkvm>
801013a3: 89 45 d4 mov %eax,-0x2c(%ebp)
801013a6: 83 7d d4 00 cmpl $0x0,-0x2c(%ebp)
801013aa: 0f 84 45 03 00 00 je 801016f5 <exec+0x3d9>
goto bad;
// Load program into memory.
sz = 0;
801013b0: c7 45 e0 00 00 00 00 movl $0x0,-0x20(%ebp)
for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){
801013b7: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp)
801013be: 8b 85 28 ff ff ff mov -0xd8(%ebp),%eax
801013c4: 89 45 e8 mov %eax,-0x18(%ebp)
801013c7: e9 c5 00 00 00 jmp 80101491 <exec+0x175>
if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph))
801013cc: 8b 45 e8 mov -0x18(%ebp),%eax
801013cf: c7 44 24 0c 20 00 00 movl $0x20,0xc(%esp)
801013d6: 00
801013d7: 89 44 24 08 mov %eax,0x8(%esp)
801013db: 8d 85 ec fe ff ff lea -0x114(%ebp),%eax
801013e1: 89 44 24 04 mov %eax,0x4(%esp)
801013e5: 8b 45 d8 mov -0x28(%ebp),%eax
801013e8: 89 04 24 mov %eax,(%esp)
801013eb: e8 11 12 00 00 call 80102601 <readi>
801013f0: 83 f8 20 cmp $0x20,%eax
801013f3: 0f 85 ff 02 00 00 jne 801016f8 <exec+0x3dc>
goto bad;
if(ph.type != ELF_PROG_LOAD)
801013f9: 8b 85 ec fe ff ff mov -0x114(%ebp),%eax
801013ff: 83 f8 01 cmp $0x1,%eax
80101402: 75 7f jne 80101483 <exec+0x167>
continue;
if(ph.memsz < ph.filesz)
80101404: 8b 95 00 ff ff ff mov -0x100(%ebp),%edx
8010140a: 8b 85 fc fe ff ff mov -0x104(%ebp),%eax
80101410: 39 c2 cmp %eax,%edx
80101412: 0f 82 e3 02 00 00 jb 801016fb <exec+0x3df>
goto bad;
if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0)
80101418: 8b 95 f4 fe ff ff mov -0x10c(%ebp),%edx
8010141e: 8b 85 00 ff ff ff mov -0x100(%ebp),%eax
80101424: 01 d0 add %edx,%eax
80101426: 89 44 24 08 mov %eax,0x8(%esp)
8010142a: 8b 45 e0 mov -0x20(%ebp),%eax
8010142d: 89 44 24 04 mov %eax,0x4(%esp)
80101431: 8b 45 d4 mov -0x2c(%ebp),%eax
80101434: 89 04 24 mov %eax,(%esp)
80101437: e8 df 79 00 00 call 80108e1b <allocuvm>
8010143c: 89 45 e0 mov %eax,-0x20(%ebp)
8010143f: 83 7d e0 00 cmpl $0x0,-0x20(%ebp)
80101443: 0f 84 b5 02 00 00 je 801016fe <exec+0x3e2>
goto bad;
if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0)
80101449: 8b 8d fc fe ff ff mov -0x104(%ebp),%ecx
8010144f: 8b 95 f0 fe ff ff mov -0x110(%ebp),%edx
80101455: 8b 85 f4 fe ff ff mov -0x10c(%ebp),%eax
8010145b: 89 4c 24 10 mov %ecx,0x10(%esp)
8010145f: 89 54 24 0c mov %edx,0xc(%esp)
80101463: 8b 55 d8 mov -0x28(%ebp),%edx
80101466: 89 54 24 08 mov %edx,0x8(%esp)
8010146a: 89 44 24 04 mov %eax,0x4(%esp)
8010146e: 8b 45 d4 mov -0x2c(%ebp),%eax
80101471: 89 04 24 mov %eax,(%esp)
80101474: e8 b3 78 00 00 call 80108d2c <loaduvm>
80101479: 85 c0 test %eax,%eax
8010147b: 0f 88 80 02 00 00 js 80101701 <exec+0x3e5>
80101481: eb 01 jmp 80101484 <exec+0x168>
sz = 0;
for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){
if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph))
goto bad;
if(ph.type != ELF_PROG_LOAD)
continue;
80101483: 90 nop
if((pgdir = setupkvm()) == 0)
goto bad;
// Load program into memory.
sz = 0;
for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){
80101484: 83 45 ec 01 addl $0x1,-0x14(%ebp)
80101488: 8b 45 e8 mov -0x18(%ebp),%eax
8010148b: 83 c0 20 add $0x20,%eax
8010148e: 89 45 e8 mov %eax,-0x18(%ebp)
80101491: 0f b7 85 38 ff ff ff movzwl -0xc8(%ebp),%eax
80101498: 0f b7 c0 movzwl %ax,%eax
8010149b: 3b 45 ec cmp -0x14(%ebp),%eax
8010149e: 0f 8f 28 ff ff ff jg 801013cc <exec+0xb0>
if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0)
goto bad;
if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0)
goto bad;
}
iunlockput(ip);
801014a4: 8b 45 d8 mov -0x28(%ebp),%eax
801014a7: 89 04 24 mov %eax,(%esp)
801014aa: e8 e0 0e 00 00 call 8010238f <iunlockput>
end_op();
801014af: e8 ee 28 00 00 call 80103da2 <end_op>
ip = 0;
801014b4: c7 45 d8 00 00 00 00 movl $0x0,-0x28(%ebp)
// Allocate two pages at the next page boundary.
// Make the first inaccessible. Use the second as the user stack.
sz = PGROUNDUP(sz);
801014bb: 8b 45 e0 mov -0x20(%ebp),%eax
801014be: 05 ff 0f 00 00 add $0xfff,%eax
801014c3: 25 00 f0 ff ff and $0xfffff000,%eax
801014c8: 89 45 e0 mov %eax,-0x20(%ebp)
if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0)
801014cb: 8b 45 e0 mov -0x20(%ebp),%eax
801014ce: 05 00 20 00 00 add $0x2000,%eax
801014d3: 89 44 24 08 mov %eax,0x8(%esp)
801014d7: 8b 45 e0 mov -0x20(%ebp),%eax
801014da: 89 44 24 04 mov %eax,0x4(%esp)
801014de: 8b 45 d4 mov -0x2c(%ebp),%eax
801014e1: 89 04 24 mov %eax,(%esp)
801014e4: e8 32 79 00 00 call 80108e1b <allocuvm>
801014e9: 89 45 e0 mov %eax,-0x20(%ebp)
801014ec: 83 7d e0 00 cmpl $0x0,-0x20(%ebp)
801014f0: 0f 84 0e 02 00 00 je 80101704 <exec+0x3e8>
goto bad;
clearpteu(pgdir, (char*)(sz - 2*PGSIZE));
801014f6: 8b 45 e0 mov -0x20(%ebp),%eax
801014f9: 2d 00 20 00 00 sub $0x2000,%eax
801014fe: 89 44 24 04 mov %eax,0x4(%esp)
80101502: 8b 45 d4 mov -0x2c(%ebp),%eax
80101505: 89 04 24 mov %eax,(%esp)
80101508: e8 32 7b 00 00 call 8010903f <clearpteu>
sp = sz;
8010150d: 8b 45 e0 mov -0x20(%ebp),%eax
80101510: 89 45 dc mov %eax,-0x24(%ebp)
// Push argument strings, prepare rest of stack in ustack.
for(argc = 0; argv[argc]; argc++) {
80101513: c7 45 e4 00 00 00 00 movl $0x0,-0x1c(%ebp)
8010151a: e9 81 00 00 00 jmp 801015a0 <exec+0x284>
if(argc >= MAXARG)
8010151f: 83 7d e4 1f cmpl $0x1f,-0x1c(%ebp)
80101523: 0f 87 de 01 00 00 ja 80101707 <exec+0x3eb>
goto bad;
sp = (sp - (strlen(argv[argc]) + 1)) & ~3;
80101529: 8b 45 e4 mov -0x1c(%ebp),%eax
8010152c: c1 e0 02 shl $0x2,%eax
8010152f: 03 45 0c add 0xc(%ebp),%eax
80101532: 8b 00 mov (%eax),%eax
80101534: 89 04 24 mov %eax,(%esp)
80101537: e8 3c 4b 00 00 call 80106078 <strlen>
8010153c: f7 d0 not %eax
8010153e: 03 45 dc add -0x24(%ebp),%eax
80101541: 83 e0 fc and $0xfffffffc,%eax
80101544: 89 45 dc mov %eax,-0x24(%ebp)
if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0)
80101547: 8b 45 e4 mov -0x1c(%ebp),%eax
8010154a: c1 e0 02 shl $0x2,%eax
8010154d: 03 45 0c add 0xc(%ebp),%eax
80101550: 8b 00 mov (%eax),%eax
80101552: 89 04 24 mov %eax,(%esp)
80101555: e8 1e 4b 00 00 call 80106078 <strlen>
8010155a: 83 c0 01 add $0x1,%eax
8010155d: 89 c2 mov %eax,%edx
8010155f: 8b 45 e4 mov -0x1c(%ebp),%eax
80101562: c1 e0 02 shl $0x2,%eax
80101565: 03 45 0c add 0xc(%ebp),%eax
80101568: 8b 00 mov (%eax),%eax
8010156a: 89 54 24 0c mov %edx,0xc(%esp)
8010156e: 89 44 24 08 mov %eax,0x8(%esp)
80101572: 8b 45 dc mov -0x24(%ebp),%eax
80101575: 89 44 24 04 mov %eax,0x4(%esp)
80101579: 8b 45 d4 mov -0x2c(%ebp),%eax
8010157c: 89 04 24 mov %eax,(%esp)
8010157f: e8 80 7c 00 00 call 80109204 <copyout>
80101584: 85 c0 test %eax,%eax
80101586: 0f 88 7e 01 00 00 js 8010170a <exec+0x3ee>
goto bad;
ustack[3+argc] = sp;
8010158c: 8b 45 e4 mov -0x1c(%ebp),%eax
8010158f: 8d 50 03 lea 0x3(%eax),%edx
80101592: 8b 45 dc mov -0x24(%ebp),%eax
80101595: 89 84 95 40 ff ff ff mov %eax,-0xc0(%ebp,%edx,4)
goto bad;
clearpteu(pgdir, (char*)(sz - 2*PGSIZE));
sp = sz;
// Push argument strings, prepare rest of stack in ustack.
for(argc = 0; argv[argc]; argc++) {
8010159c: 83 45 e4 01 addl $0x1,-0x1c(%ebp)
801015a0: 8b 45 e4 mov -0x1c(%ebp),%eax
801015a3: c1 e0 02 shl $0x2,%eax
801015a6: 03 45 0c add 0xc(%ebp),%eax
801015a9: 8b 00 mov (%eax),%eax
801015ab: 85 c0 test %eax,%eax
801015ad: 0f 85 6c ff ff ff jne 8010151f <exec+0x203>
sp = (sp - (strlen(argv[argc]) + 1)) & ~3;
if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0)
goto bad;
ustack[3+argc] = sp;
}
ustack[3+argc] = 0;
801015b3: 8b 45 e4 mov -0x1c(%ebp),%eax
801015b6: 83 c0 03 add $0x3,%eax
801015b9: c7 84 85 40 ff ff ff movl $0x0,-0xc0(%ebp,%eax,4)
801015c0: 00 00 00 00
ustack[0] = 0xffffffff; // fake return PC
801015c4: c7 85 40 ff ff ff ff movl $0xffffffff,-0xc0(%ebp)
801015cb: ff ff ff
ustack[1] = argc;
801015ce: 8b 45 e4 mov -0x1c(%ebp),%eax
801015d1: 89 85 44 ff ff ff mov %eax,-0xbc(%ebp)
ustack[2] = sp - (argc+1)*4; // argv pointer
801015d7: 8b 45 e4 mov -0x1c(%ebp),%eax
801015da: 83 c0 01 add $0x1,%eax
801015dd: 8d 14 85 00 00 00 00 lea 0x0(,%eax,4),%edx
801015e4: 8b 45 dc mov -0x24(%ebp),%eax
801015e7: 29 d0 sub %edx,%eax
801015e9: 89 85 48 ff ff ff mov %eax,-0xb8(%ebp)
sp -= (3+argc+1) * 4;
801015ef: 8b 45 e4 mov -0x1c(%ebp),%eax
801015f2: 83 c0 04 add $0x4,%eax
801015f5: c1 e0 02 shl $0x2,%eax
801015f8: 29 45 dc sub %eax,-0x24(%ebp)
if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0)
801015fb: 8b 45 e4 mov -0x1c(%ebp),%eax
801015fe: 83 c0 04 add $0x4,%eax
80101601: c1 e0 02 shl $0x2,%eax
80101604: 89 44 24 0c mov %eax,0xc(%esp)
80101608: 8d 85 40 ff ff ff lea -0xc0(%ebp),%eax
8010160e: 89 44 24 08 mov %eax,0x8(%esp)
80101612: 8b 45 dc mov -0x24(%ebp),%eax
80101615: 89 44 24 04 mov %eax,0x4(%esp)
80101619: 8b 45 d4 mov -0x2c(%ebp),%eax
8010161c: 89 04 24 mov %eax,(%esp)
8010161f: e8 e0 7b 00 00 call 80109204 <copyout>
80101624: 85 c0 test %eax,%eax
80101626: 0f 88 e1 00 00 00 js 8010170d <exec+0x3f1>
goto bad;
// Save program name for debugging.
for(last=s=path; *s; s++)
8010162c: 8b 45 08 mov 0x8(%ebp),%eax
8010162f: 89 45 f4 mov %eax,-0xc(%ebp)
80101632: 8b 45 f4 mov -0xc(%ebp),%eax
80101635: 89 45 f0 mov %eax,-0x10(%ebp)
80101638: eb 17 jmp 80101651 <exec+0x335>
if(*s == '/')
8010163a: 8b 45 f4 mov -0xc(%ebp),%eax
8010163d: 0f b6 00 movzbl (%eax),%eax
80101640: 3c 2f cmp $0x2f,%al
80101642: 75 09 jne 8010164d <exec+0x331>
last = s+1;
80101644: 8b 45 f4 mov -0xc(%ebp),%eax
80101647: 83 c0 01 add $0x1,%eax
8010164a: 89 45 f0 mov %eax,-0x10(%ebp)
sp -= (3+argc+1) * 4;
if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0)
goto bad;
// Save program name for debugging.
for(last=s=path; *s; s++)
8010164d: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80101651: 8b 45 f4 mov -0xc(%ebp),%eax
80101654: 0f b6 00 movzbl (%eax),%eax
80101657: 84 c0 test %al,%al
80101659: 75 df jne 8010163a <exec+0x31e>
if(*s == '/')
last = s+1;
safestrcpy(proc->name, last, sizeof(proc->name));
8010165b: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80101661: 8d 50 6c lea 0x6c(%eax),%edx
80101664: c7 44 24 08 10 00 00 movl $0x10,0x8(%esp)
8010166b: 00
8010166c: 8b 45 f0 mov -0x10(%ebp),%eax
8010166f: 89 44 24 04 mov %eax,0x4(%esp)
80101673: 89 14 24 mov %edx,(%esp)
80101676: e8 af 49 00 00 call 8010602a <safestrcpy>
// Commit to the user image.
oldpgdir = proc->pgdir;
8010167b: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80101681: 8b 40 04 mov 0x4(%eax),%eax
80101684: 89 45 d0 mov %eax,-0x30(%ebp)
proc->pgdir = pgdir;
80101687: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010168d: 8b 55 d4 mov -0x2c(%ebp),%edx
80101690: 89 50 04 mov %edx,0x4(%eax)
proc->sz = sz;
80101693: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80101699: 8b 55 e0 mov -0x20(%ebp),%edx
8010169c: 89 10 mov %edx,(%eax)
proc->tf->eip = elf.entry; // main
8010169e: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801016a4: 8b 40 18 mov 0x18(%eax),%eax
801016a7: 8b 95 24 ff ff ff mov -0xdc(%ebp),%edx
801016ad: 89 50 38 mov %edx,0x38(%eax)
proc->tf->esp = sp;
801016b0: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801016b6: 8b 40 18 mov 0x18(%eax),%eax
801016b9: 8b 55 dc mov -0x24(%ebp),%edx
801016bc: 89 50 44 mov %edx,0x44(%eax)
#if SCHEDFLAG == DML
proc->priority=DEF_PRIORITY;
801016bf: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801016c5: c7 80 8c 00 00 00 02 movl $0x2,0x8c(%eax)
801016cc: 00 00 00
#endif
switchuvm(proc);
801016cf: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801016d5: 89 04 24 mov %eax,(%esp)
801016d8: e8 5d 74 00 00 call 80108b3a <switchuvm>
freevm(oldpgdir);
801016dd: 8b 45 d0 mov -0x30(%ebp),%eax
801016e0: 89 04 24 mov %eax,(%esp)
801016e3: e8 c9 78 00 00 call 80108fb1 <freevm>
return 0;
801016e8: b8 00 00 00 00 mov $0x0,%eax
801016ed: eb 4b jmp 8010173a <exec+0x41e>
ilock(ip);
pgdir = 0;
// Check ELF header
if(readi(ip, (char*)&elf, 0, sizeof(elf)) < sizeof(elf))
goto bad;
801016ef: 90 nop
801016f0: eb 1c jmp 8010170e <exec+0x3f2>
if(elf.magic != ELF_MAGIC)
goto bad;
801016f2: 90 nop
801016f3: eb 19 jmp 8010170e <exec+0x3f2>
if((pgdir = setupkvm()) == 0)
goto bad;
801016f5: 90 nop
801016f6: eb 16 jmp 8010170e <exec+0x3f2>
// Load program into memory.
sz = 0;
for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){
if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph))
goto bad;
801016f8: 90 nop
801016f9: eb 13 jmp 8010170e <exec+0x3f2>
if(ph.type != ELF_PROG_LOAD)
continue;
if(ph.memsz < ph.filesz)
goto bad;
801016fb: 90 nop
801016fc: eb 10 jmp 8010170e <exec+0x3f2>
if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0)
goto bad;
801016fe: 90 nop
801016ff: eb 0d jmp 8010170e <exec+0x3f2>
if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0)
goto bad;
80101701: 90 nop
80101702: eb 0a jmp 8010170e <exec+0x3f2>
// Allocate two pages at the next page boundary.
// Make the first inaccessible. Use the second as the user stack.
sz = PGROUNDUP(sz);
if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0)
goto bad;
80101704: 90 nop
80101705: eb 07 jmp 8010170e <exec+0x3f2>
sp = sz;
// Push argument strings, prepare rest of stack in ustack.
for(argc = 0; argv[argc]; argc++) {
if(argc >= MAXARG)
goto bad;
80101707: 90 nop
80101708: eb 04 jmp 8010170e <exec+0x3f2>
sp = (sp - (strlen(argv[argc]) + 1)) & ~3;
if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0)
goto bad;
8010170a: 90 nop
8010170b: eb 01 jmp 8010170e <exec+0x3f2>
ustack[1] = argc;
ustack[2] = sp - (argc+1)*4; // argv pointer
sp -= (3+argc+1) * 4;
if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0)
goto bad;
8010170d: 90 nop
switchuvm(proc);
freevm(oldpgdir);
return 0;
bad:
if(pgdir)
8010170e: 83 7d d4 00 cmpl $0x0,-0x2c(%ebp)
80101712: 74 0b je 8010171f <exec+0x403>
freevm(pgdir);
80101714: 8b 45 d4 mov -0x2c(%ebp),%eax
80101717: 89 04 24 mov %eax,(%esp)
8010171a: e8 92 78 00 00 call 80108fb1 <freevm>
if(ip){
8010171f: 83 7d d8 00 cmpl $0x0,-0x28(%ebp)
80101723: 74 10 je 80101735 <exec+0x419>
iunlockput(ip);
80101725: 8b 45 d8 mov -0x28(%ebp),%eax
80101728: 89 04 24 mov %eax,(%esp)
8010172b: e8 5f 0c 00 00 call 8010238f <iunlockput>
end_op();
80101730: e8 6d 26 00 00 call 80103da2 <end_op>
}
return -1;
80101735: b8 ff ff ff ff mov $0xffffffff,%eax
}
8010173a: c9 leave
8010173b: c3 ret
8010173c <fileinit>:
struct file file[NFILE];
} ftable;
void
fileinit(void)
{
8010173c: 55 push %ebp
8010173d: 89 e5 mov %esp,%ebp
8010173f: 83 ec 18 sub $0x18,%esp
initlock(&ftable.lock, "ftable");
80101742: c7 44 24 04 0d 93 10 movl $0x8010930d,0x4(%esp)
80101749: 80
8010174a: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
80101751: e8 34 44 00 00 call 80105b8a <initlock>
}
80101756: c9 leave
80101757: c3 ret
80101758 <filealloc>:
// Allocate a file structure.
struct file*
filealloc(void)
{
80101758: 55 push %ebp
80101759: 89 e5 mov %esp,%ebp
8010175b: 83 ec 28 sub $0x28,%esp
struct file *f;
acquire(&ftable.lock);
8010175e: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
80101765: e8 41 44 00 00 call 80105bab <acquire>
for(f = ftable.file; f < ftable.file + NFILE; f++){
8010176a: c7 45 f4 94 20 11 80 movl $0x80112094,-0xc(%ebp)
80101771: eb 29 jmp 8010179c <filealloc+0x44>
if(f->ref == 0){
80101773: 8b 45 f4 mov -0xc(%ebp),%eax
80101776: 8b 40 04 mov 0x4(%eax),%eax
80101779: 85 c0 test %eax,%eax
8010177b: 75 1b jne 80101798 <filealloc+0x40>
f->ref = 1;
8010177d: 8b 45 f4 mov -0xc(%ebp),%eax
80101780: c7 40 04 01 00 00 00 movl $0x1,0x4(%eax)
release(&ftable.lock);
80101787: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
8010178e: e8 7a 44 00 00 call 80105c0d <release>
return f;
80101793: 8b 45 f4 mov -0xc(%ebp),%eax
80101796: eb 1e jmp 801017b6 <filealloc+0x5e>
filealloc(void)
{
struct file *f;
acquire(&ftable.lock);
for(f = ftable.file; f < ftable.file + NFILE; f++){
80101798: 83 45 f4 18 addl $0x18,-0xc(%ebp)
8010179c: 81 7d f4 f4 29 11 80 cmpl $0x801129f4,-0xc(%ebp)
801017a3: 72 ce jb 80101773 <filealloc+0x1b>
f->ref = 1;
release(&ftable.lock);
return f;
}
}
release(&ftable.lock);
801017a5: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
801017ac: e8 5c 44 00 00 call 80105c0d <release>
return 0;
801017b1: b8 00 00 00 00 mov $0x0,%eax
}
801017b6: c9 leave
801017b7: c3 ret
801017b8 <filedup>:
// Increment ref count for file f.
struct file*
filedup(struct file *f)
{
801017b8: 55 push %ebp
801017b9: 89 e5 mov %esp,%ebp
801017bb: 83 ec 18 sub $0x18,%esp
acquire(&ftable.lock);
801017be: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
801017c5: e8 e1 43 00 00 call 80105bab <acquire>
if(f->ref < 1)
801017ca: 8b 45 08 mov 0x8(%ebp),%eax
801017cd: 8b 40 04 mov 0x4(%eax),%eax
801017d0: 85 c0 test %eax,%eax
801017d2: 7f 0c jg 801017e0 <filedup+0x28>
panic("filedup");
801017d4: c7 04 24 14 93 10 80 movl $0x80109314,(%esp)
801017db: e8 5d ed ff ff call 8010053d <panic>
f->ref++;
801017e0: 8b 45 08 mov 0x8(%ebp),%eax
801017e3: 8b 40 04 mov 0x4(%eax),%eax
801017e6: 8d 50 01 lea 0x1(%eax),%edx
801017e9: 8b 45 08 mov 0x8(%ebp),%eax
801017ec: 89 50 04 mov %edx,0x4(%eax)
release(&ftable.lock);
801017ef: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
801017f6: e8 12 44 00 00 call 80105c0d <release>
return f;
801017fb: 8b 45 08 mov 0x8(%ebp),%eax
}
801017fe: c9 leave
801017ff: c3 ret
80101800 <fileclose>:
// Close file f. (Decrement ref count, close when reaches 0.)
void
fileclose(struct file *f)
{
80101800: 55 push %ebp
80101801: 89 e5 mov %esp,%ebp
80101803: 83 ec 38 sub $0x38,%esp
struct file ff;
acquire(&ftable.lock);
80101806: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
8010180d: e8 99 43 00 00 call 80105bab <acquire>
if(f->ref < 1)
80101812: 8b 45 08 mov 0x8(%ebp),%eax
80101815: 8b 40 04 mov 0x4(%eax),%eax
80101818: 85 c0 test %eax,%eax
8010181a: 7f 0c jg 80101828 <fileclose+0x28>
panic("fileclose");
8010181c: c7 04 24 1c 93 10 80 movl $0x8010931c,(%esp)
80101823: e8 15 ed ff ff call 8010053d <panic>
if(--f->ref > 0){
80101828: 8b 45 08 mov 0x8(%ebp),%eax
8010182b: 8b 40 04 mov 0x4(%eax),%eax
8010182e: 8d 50 ff lea -0x1(%eax),%edx
80101831: 8b 45 08 mov 0x8(%ebp),%eax
80101834: 89 50 04 mov %edx,0x4(%eax)
80101837: 8b 45 08 mov 0x8(%ebp),%eax
8010183a: 8b 40 04 mov 0x4(%eax),%eax
8010183d: 85 c0 test %eax,%eax
8010183f: 7e 11 jle 80101852 <fileclose+0x52>
release(&ftable.lock);
80101841: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
80101848: e8 c0 43 00 00 call 80105c0d <release>
return;
8010184d: e9 82 00 00 00 jmp 801018d4 <fileclose+0xd4>
}
ff = *f;
80101852: 8b 45 08 mov 0x8(%ebp),%eax
80101855: 8b 10 mov (%eax),%edx
80101857: 89 55 e0 mov %edx,-0x20(%ebp)
8010185a: 8b 50 04 mov 0x4(%eax),%edx
8010185d: 89 55 e4 mov %edx,-0x1c(%ebp)
80101860: 8b 50 08 mov 0x8(%eax),%edx
80101863: 89 55 e8 mov %edx,-0x18(%ebp)
80101866: 8b 50 0c mov 0xc(%eax),%edx
80101869: 89 55 ec mov %edx,-0x14(%ebp)
8010186c: 8b 50 10 mov 0x10(%eax),%edx
8010186f: 89 55 f0 mov %edx,-0x10(%ebp)
80101872: 8b 40 14 mov 0x14(%eax),%eax
80101875: 89 45 f4 mov %eax,-0xc(%ebp)
f->ref = 0;
80101878: 8b 45 08 mov 0x8(%ebp),%eax
8010187b: c7 40 04 00 00 00 00 movl $0x0,0x4(%eax)
f->type = FD_NONE;
80101882: 8b 45 08 mov 0x8(%ebp),%eax
80101885: c7 00 00 00 00 00 movl $0x0,(%eax)
release(&ftable.lock);
8010188b: c7 04 24 60 20 11 80 movl $0x80112060,(%esp)
80101892: e8 76 43 00 00 call 80105c0d <release>
if(ff.type == FD_PIPE)
80101897: 8b 45 e0 mov -0x20(%ebp),%eax
8010189a: 83 f8 01 cmp $0x1,%eax
8010189d: 75 18 jne 801018b7 <fileclose+0xb7>
pipeclose(ff.pipe, ff.writable);
8010189f: 0f b6 45 e9 movzbl -0x17(%ebp),%eax
801018a3: 0f be d0 movsbl %al,%edx
801018a6: 8b 45 ec mov -0x14(%ebp),%eax
801018a9: 89 54 24 04 mov %edx,0x4(%esp)
801018ad: 89 04 24 mov %eax,(%esp)
801018b0: e8 da 30 00 00 call 8010498f <pipeclose>
801018b5: eb 1d jmp 801018d4 <fileclose+0xd4>
else if(ff.type == FD_INODE){
801018b7: 8b 45 e0 mov -0x20(%ebp),%eax
801018ba: 83 f8 02 cmp $0x2,%eax
801018bd: 75 15 jne 801018d4 <fileclose+0xd4>
begin_op();
801018bf: e8 5d 24 00 00 call 80103d21 <begin_op>
iput(ff.ip);
801018c4: 8b 45 f0 mov -0x10(%ebp),%eax
801018c7: 89 04 24 mov %eax,(%esp)
801018ca: e8 ef 09 00 00 call 801022be <iput>
end_op();
801018cf: e8 ce 24 00 00 call 80103da2 <end_op>
}
}
801018d4: c9 leave
801018d5: c3 ret
801018d6 <filestat>:
// Get metadata about file f.
int
filestat(struct file *f, struct stat *st)
{
801018d6: 55 push %ebp
801018d7: 89 e5 mov %esp,%ebp
801018d9: 83 ec 18 sub $0x18,%esp
if(f->type == FD_INODE){
801018dc: 8b 45 08 mov 0x8(%ebp),%eax
801018df: 8b 00 mov (%eax),%eax
801018e1: 83 f8 02 cmp $0x2,%eax
801018e4: 75 38 jne 8010191e <filestat+0x48>
ilock(f->ip);
801018e6: 8b 45 08 mov 0x8(%ebp),%eax
801018e9: 8b 40 10 mov 0x10(%eax),%eax
801018ec: 89 04 24 mov %eax,(%esp)
801018ef: e8 11 08 00 00 call 80102105 <ilock>
stati(f->ip, st);
801018f4: 8b 45 08 mov 0x8(%ebp),%eax
801018f7: 8b 40 10 mov 0x10(%eax),%eax
801018fa: 8b 55 0c mov 0xc(%ebp),%edx
801018fd: 89 54 24 04 mov %edx,0x4(%esp)
80101901: 89 04 24 mov %eax,(%esp)
80101904: e8 b3 0c 00 00 call 801025bc <stati>
iunlock(f->ip);
80101909: 8b 45 08 mov 0x8(%ebp),%eax
8010190c: 8b 40 10 mov 0x10(%eax),%eax
8010190f: 89 04 24 mov %eax,(%esp)
80101912: e8 42 09 00 00 call 80102259 <iunlock>
return 0;
80101917: b8 00 00 00 00 mov $0x0,%eax
8010191c: eb 05 jmp 80101923 <filestat+0x4d>
}
return -1;
8010191e: b8 ff ff ff ff mov $0xffffffff,%eax
}
80101923: c9 leave
80101924: c3 ret
80101925 <fileread>:
// Read from file f.
int
fileread(struct file *f, char *addr, int n)
{
80101925: 55 push %ebp
80101926: 89 e5 mov %esp,%ebp
80101928: 83 ec 28 sub $0x28,%esp
int r;
if(f->readable == 0)
8010192b: 8b 45 08 mov 0x8(%ebp),%eax
8010192e: 0f b6 40 08 movzbl 0x8(%eax),%eax
80101932: 84 c0 test %al,%al
80101934: 75 0a jne 80101940 <fileread+0x1b>
return -1;
80101936: b8 ff ff ff ff mov $0xffffffff,%eax
8010193b: e9 9f 00 00 00 jmp 801019df <fileread+0xba>
if(f->type == FD_PIPE)
80101940: 8b 45 08 mov 0x8(%ebp),%eax
80101943: 8b 00 mov (%eax),%eax
80101945: 83 f8 01 cmp $0x1,%eax
80101948: 75 1e jne 80101968 <fileread+0x43>
return piperead(f->pipe, addr, n);
8010194a: 8b 45 08 mov 0x8(%ebp),%eax
8010194d: 8b 40 0c mov 0xc(%eax),%eax
80101950: 8b 55 10 mov 0x10(%ebp),%edx
80101953: 89 54 24 08 mov %edx,0x8(%esp)
80101957: 8b 55 0c mov 0xc(%ebp),%edx
8010195a: 89 54 24 04 mov %edx,0x4(%esp)
8010195e: 89 04 24 mov %eax,(%esp)
80101961: e8 ab 31 00 00 call 80104b11 <piperead>
80101966: eb 77 jmp 801019df <fileread+0xba>
if(f->type == FD_INODE){
80101968: 8b 45 08 mov 0x8(%ebp),%eax
8010196b: 8b 00 mov (%eax),%eax
8010196d: 83 f8 02 cmp $0x2,%eax
80101970: 75 61 jne 801019d3 <fileread+0xae>
ilock(f->ip);
80101972: 8b 45 08 mov 0x8(%ebp),%eax
80101975: 8b 40 10 mov 0x10(%eax),%eax
80101978: 89 04 24 mov %eax,(%esp)
8010197b: e8 85 07 00 00 call 80102105 <ilock>
if((r = readi(f->ip, addr, f->off, n)) > 0)
80101980: 8b 4d 10 mov 0x10(%ebp),%ecx
80101983: 8b 45 08 mov 0x8(%ebp),%eax
80101986: 8b 50 14 mov 0x14(%eax),%edx
80101989: 8b 45 08 mov 0x8(%ebp),%eax
8010198c: 8b 40 10 mov 0x10(%eax),%eax
8010198f: 89 4c 24 0c mov %ecx,0xc(%esp)
80101993: 89 54 24 08 mov %edx,0x8(%esp)
80101997: 8b 55 0c mov 0xc(%ebp),%edx
8010199a: 89 54 24 04 mov %edx,0x4(%esp)
8010199e: 89 04 24 mov %eax,(%esp)
801019a1: e8 5b 0c 00 00 call 80102601 <readi>
801019a6: 89 45 f4 mov %eax,-0xc(%ebp)
801019a9: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801019ad: 7e 11 jle 801019c0 <fileread+0x9b>
f->off += r;
801019af: 8b 45 08 mov 0x8(%ebp),%eax
801019b2: 8b 50 14 mov 0x14(%eax),%edx
801019b5: 8b 45 f4 mov -0xc(%ebp),%eax
801019b8: 01 c2 add %eax,%edx
801019ba: 8b 45 08 mov 0x8(%ebp),%eax
801019bd: 89 50 14 mov %edx,0x14(%eax)
iunlock(f->ip);
801019c0: 8b 45 08 mov 0x8(%ebp),%eax
801019c3: 8b 40 10 mov 0x10(%eax),%eax
801019c6: 89 04 24 mov %eax,(%esp)
801019c9: e8 8b 08 00 00 call 80102259 <iunlock>
return r;
801019ce: 8b 45 f4 mov -0xc(%ebp),%eax
801019d1: eb 0c jmp 801019df <fileread+0xba>
}
panic("fileread");
801019d3: c7 04 24 26 93 10 80 movl $0x80109326,(%esp)
801019da: e8 5e eb ff ff call 8010053d <panic>
}
801019df: c9 leave
801019e0: c3 ret
801019e1 <filewrite>:
//PAGEBREAK!
// Write to file f.
int
filewrite(struct file *f, char *addr, int n)
{
801019e1: 55 push %ebp
801019e2: 89 e5 mov %esp,%ebp
801019e4: 53 push %ebx
801019e5: 83 ec 24 sub $0x24,%esp
int r;
if(f->writable == 0)
801019e8: 8b 45 08 mov 0x8(%ebp),%eax
801019eb: 0f b6 40 09 movzbl 0x9(%eax),%eax
801019ef: 84 c0 test %al,%al
801019f1: 75 0a jne 801019fd <filewrite+0x1c>
return -1;
801019f3: b8 ff ff ff ff mov $0xffffffff,%eax
801019f8: e9 23 01 00 00 jmp 80101b20 <filewrite+0x13f>
if(f->type == FD_PIPE)
801019fd: 8b 45 08 mov 0x8(%ebp),%eax
80101a00: 8b 00 mov (%eax),%eax
80101a02: 83 f8 01 cmp $0x1,%eax
80101a05: 75 21 jne 80101a28 <filewrite+0x47>
return pipewrite(f->pipe, addr, n);
80101a07: 8b 45 08 mov 0x8(%ebp),%eax
80101a0a: 8b 40 0c mov 0xc(%eax),%eax
80101a0d: 8b 55 10 mov 0x10(%ebp),%edx
80101a10: 89 54 24 08 mov %edx,0x8(%esp)
80101a14: 8b 55 0c mov 0xc(%ebp),%edx
80101a17: 89 54 24 04 mov %edx,0x4(%esp)
80101a1b: 89 04 24 mov %eax,(%esp)
80101a1e: e8 fe 2f 00 00 call 80104a21 <pipewrite>
80101a23: e9 f8 00 00 00 jmp 80101b20 <filewrite+0x13f>
if(f->type == FD_INODE){
80101a28: 8b 45 08 mov 0x8(%ebp),%eax
80101a2b: 8b 00 mov (%eax),%eax
80101a2d: 83 f8 02 cmp $0x2,%eax
80101a30: 0f 85 de 00 00 00 jne 80101b14 <filewrite+0x133>
// the maximum log transaction size, including
// i-node, indirect block, allocation blocks,
// and 2 blocks of slop for non-aligned writes.
// this really belongs lower down, since writei()
// might be writing a device like the console.
int max = ((LOGSIZE-1-1-2) / 2) * 512;
80101a36: c7 45 ec 00 1a 00 00 movl $0x1a00,-0x14(%ebp)
int i = 0;
80101a3d: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
while(i < n){
80101a44: e9 a8 00 00 00 jmp 80101af1 <filewrite+0x110>
int n1 = n - i;
80101a49: 8b 45 f4 mov -0xc(%ebp),%eax
80101a4c: 8b 55 10 mov 0x10(%ebp),%edx
80101a4f: 89 d1 mov %edx,%ecx
80101a51: 29 c1 sub %eax,%ecx
80101a53: 89 c8 mov %ecx,%eax
80101a55: 89 45 f0 mov %eax,-0x10(%ebp)
if(n1 > max)
80101a58: 8b 45 f0 mov -0x10(%ebp),%eax
80101a5b: 3b 45 ec cmp -0x14(%ebp),%eax
80101a5e: 7e 06 jle 80101a66 <filewrite+0x85>
n1 = max;
80101a60: 8b 45 ec mov -0x14(%ebp),%eax
80101a63: 89 45 f0 mov %eax,-0x10(%ebp)
begin_op();
80101a66: e8 b6 22 00 00 call 80103d21 <begin_op>
ilock(f->ip);
80101a6b: 8b 45 08 mov 0x8(%ebp),%eax
80101a6e: 8b 40 10 mov 0x10(%eax),%eax
80101a71: 89 04 24 mov %eax,(%esp)
80101a74: e8 8c 06 00 00 call 80102105 <ilock>
if ((r = writei(f->ip, addr + i, f->off, n1)) > 0)
80101a79: 8b 5d f0 mov -0x10(%ebp),%ebx
80101a7c: 8b 45 08 mov 0x8(%ebp),%eax
80101a7f: 8b 48 14 mov 0x14(%eax),%ecx
80101a82: 8b 45 f4 mov -0xc(%ebp),%eax
80101a85: 89 c2 mov %eax,%edx
80101a87: 03 55 0c add 0xc(%ebp),%edx
80101a8a: 8b 45 08 mov 0x8(%ebp),%eax
80101a8d: 8b 40 10 mov 0x10(%eax),%eax
80101a90: 89 5c 24 0c mov %ebx,0xc(%esp)
80101a94: 89 4c 24 08 mov %ecx,0x8(%esp)
80101a98: 89 54 24 04 mov %edx,0x4(%esp)
80101a9c: 89 04 24 mov %eax,(%esp)
80101a9f: e8 c8 0c 00 00 call 8010276c <writei>
80101aa4: 89 45 e8 mov %eax,-0x18(%ebp)
80101aa7: 83 7d e8 00 cmpl $0x0,-0x18(%ebp)
80101aab: 7e 11 jle 80101abe <filewrite+0xdd>
f->off += r;
80101aad: 8b 45 08 mov 0x8(%ebp),%eax
80101ab0: 8b 50 14 mov 0x14(%eax),%edx
80101ab3: 8b 45 e8 mov -0x18(%ebp),%eax
80101ab6: 01 c2 add %eax,%edx
80101ab8: 8b 45 08 mov 0x8(%ebp),%eax
80101abb: 89 50 14 mov %edx,0x14(%eax)
iunlock(f->ip);
80101abe: 8b 45 08 mov 0x8(%ebp),%eax
80101ac1: 8b 40 10 mov 0x10(%eax),%eax
80101ac4: 89 04 24 mov %eax,(%esp)
80101ac7: e8 8d 07 00 00 call 80102259 <iunlock>
end_op();
80101acc: e8 d1 22 00 00 call 80103da2 <end_op>
if(r < 0)
80101ad1: 83 7d e8 00 cmpl $0x0,-0x18(%ebp)
80101ad5: 78 28 js 80101aff <filewrite+0x11e>
break;
if(r != n1)
80101ad7: 8b 45 e8 mov -0x18(%ebp),%eax
80101ada: 3b 45 f0 cmp -0x10(%ebp),%eax
80101add: 74 0c je 80101aeb <filewrite+0x10a>
panic("short filewrite");
80101adf: c7 04 24 2f 93 10 80 movl $0x8010932f,(%esp)
80101ae6: e8 52 ea ff ff call 8010053d <panic>
i += r;
80101aeb: 8b 45 e8 mov -0x18(%ebp),%eax
80101aee: 01 45 f4 add %eax,-0xc(%ebp)
// and 2 blocks of slop for non-aligned writes.
// this really belongs lower down, since writei()
// might be writing a device like the console.
int max = ((LOGSIZE-1-1-2) / 2) * 512;
int i = 0;
while(i < n){
80101af1: 8b 45 f4 mov -0xc(%ebp),%eax
80101af4: 3b 45 10 cmp 0x10(%ebp),%eax
80101af7: 0f 8c 4c ff ff ff jl 80101a49 <filewrite+0x68>
80101afd: eb 01 jmp 80101b00 <filewrite+0x11f>
f->off += r;
iunlock(f->ip);
end_op();
if(r < 0)
break;
80101aff: 90 nop
if(r != n1)
panic("short filewrite");
i += r;
}
return i == n ? n : -1;
80101b00: 8b 45 f4 mov -0xc(%ebp),%eax
80101b03: 3b 45 10 cmp 0x10(%ebp),%eax
80101b06: 75 05 jne 80101b0d <filewrite+0x12c>
80101b08: 8b 45 10 mov 0x10(%ebp),%eax
80101b0b: eb 05 jmp 80101b12 <filewrite+0x131>
80101b0d: b8 ff ff ff ff mov $0xffffffff,%eax
80101b12: eb 0c jmp 80101b20 <filewrite+0x13f>
}
panic("filewrite");
80101b14: c7 04 24 3f 93 10 80 movl $0x8010933f,(%esp)
80101b1b: e8 1d ea ff ff call 8010053d <panic>
}
80101b20: 83 c4 24 add $0x24,%esp
80101b23: 5b pop %ebx
80101b24: 5d pop %ebp
80101b25: c3 ret
...
80101b28 <readsb>:
struct superblock sb; // there should be one per dev, but we run with one dev
// Read the super block.
void
readsb(int dev, struct superblock *sb)
{
80101b28: 55 push %ebp
80101b29: 89 e5 mov %esp,%ebp
80101b2b: 83 ec 28 sub $0x28,%esp
struct buf *bp;
bp = bread(dev, 1);
80101b2e: 8b 45 08 mov 0x8(%ebp),%eax
80101b31: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80101b38: 00
80101b39: 89 04 24 mov %eax,(%esp)
80101b3c: e8 65 e6 ff ff call 801001a6 <bread>
80101b41: 89 45 f4 mov %eax,-0xc(%ebp)
memmove(sb, bp->data, sizeof(*sb));
80101b44: 8b 45 f4 mov -0xc(%ebp),%eax
80101b47: 83 c0 18 add $0x18,%eax
80101b4a: c7 44 24 08 1c 00 00 movl $0x1c,0x8(%esp)
80101b51: 00
80101b52: 89 44 24 04 mov %eax,0x4(%esp)
80101b56: 8b 45 0c mov 0xc(%ebp),%eax
80101b59: 89 04 24 mov %eax,(%esp)
80101b5c: e8 6c 43 00 00 call 80105ecd <memmove>
brelse(bp);
80101b61: 8b 45 f4 mov -0xc(%ebp),%eax
80101b64: 89 04 24 mov %eax,(%esp)
80101b67: e8 ab e6 ff ff call 80100217 <brelse>
}
80101b6c: c9 leave
80101b6d: c3 ret
80101b6e <bzero>:
// Zero a block.
static void
bzero(int dev, int bno)
{
80101b6e: 55 push %ebp
80101b6f: 89 e5 mov %esp,%ebp
80101b71: 83 ec 28 sub $0x28,%esp
struct buf *bp;
bp = bread(dev, bno);
80101b74: 8b 55 0c mov 0xc(%ebp),%edx
80101b77: 8b 45 08 mov 0x8(%ebp),%eax
80101b7a: 89 54 24 04 mov %edx,0x4(%esp)
80101b7e: 89 04 24 mov %eax,(%esp)
80101b81: e8 20 e6 ff ff call 801001a6 <bread>
80101b86: 89 45 f4 mov %eax,-0xc(%ebp)
memset(bp->data, 0, BSIZE);
80101b89: 8b 45 f4 mov -0xc(%ebp),%eax
80101b8c: 83 c0 18 add $0x18,%eax
80101b8f: c7 44 24 08 00 02 00 movl $0x200,0x8(%esp)
80101b96: 00
80101b97: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80101b9e: 00
80101b9f: 89 04 24 mov %eax,(%esp)
80101ba2: e8 53 42 00 00 call 80105dfa <memset>
log_write(bp);
80101ba7: 8b 45 f4 mov -0xc(%ebp),%eax
80101baa: 89 04 24 mov %eax,(%esp)
80101bad: e8 74 23 00 00 call 80103f26 <log_write>
brelse(bp);
80101bb2: 8b 45 f4 mov -0xc(%ebp),%eax
80101bb5: 89 04 24 mov %eax,(%esp)
80101bb8: e8 5a e6 ff ff call 80100217 <brelse>
}
80101bbd: c9 leave
80101bbe: c3 ret
80101bbf <balloc>:
// Blocks.
// Allocate a zeroed disk block.
static uint
balloc(uint dev)
{
80101bbf: 55 push %ebp
80101bc0: 89 e5 mov %esp,%ebp
80101bc2: 53 push %ebx
80101bc3: 83 ec 24 sub $0x24,%esp
int b, bi, m;
struct buf *bp;
bp = 0;
80101bc6: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp)
for(b = 0; b < sb.size; b += BPB){
80101bcd: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80101bd4: e9 11 01 00 00 jmp 80101cea <balloc+0x12b>
bp = bread(dev, BBLOCK(b, sb));
80101bd9: 8b 45 f4 mov -0xc(%ebp),%eax
80101bdc: 8d 90 ff 0f 00 00 lea 0xfff(%eax),%edx
80101be2: 85 c0 test %eax,%eax
80101be4: 0f 48 c2 cmovs %edx,%eax
80101be7: c1 f8 0c sar $0xc,%eax
80101bea: 89 c2 mov %eax,%edx
80101bec: a1 78 2a 11 80 mov 0x80112a78,%eax
80101bf1: 01 d0 add %edx,%eax
80101bf3: 89 44 24 04 mov %eax,0x4(%esp)
80101bf7: 8b 45 08 mov 0x8(%ebp),%eax
80101bfa: 89 04 24 mov %eax,(%esp)
80101bfd: e8 a4 e5 ff ff call 801001a6 <bread>
80101c02: 89 45 ec mov %eax,-0x14(%ebp)
for(bi = 0; bi < BPB && b + bi < sb.size; bi++){
80101c05: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
80101c0c: e9 a7 00 00 00 jmp 80101cb8 <balloc+0xf9>
m = 1 << (bi % 8);
80101c11: 8b 45 f0 mov -0x10(%ebp),%eax
80101c14: 89 c2 mov %eax,%edx
80101c16: c1 fa 1f sar $0x1f,%edx
80101c19: c1 ea 1d shr $0x1d,%edx
80101c1c: 01 d0 add %edx,%eax
80101c1e: 83 e0 07 and $0x7,%eax
80101c21: 29 d0 sub %edx,%eax
80101c23: ba 01 00 00 00 mov $0x1,%edx
80101c28: 89 d3 mov %edx,%ebx
80101c2a: 89 c1 mov %eax,%ecx
80101c2c: d3 e3 shl %cl,%ebx
80101c2e: 89 d8 mov %ebx,%eax
80101c30: 89 45 e8 mov %eax,-0x18(%ebp)
if((bp->data[bi/8] & m) == 0){ // Is block free?
80101c33: 8b 45 f0 mov -0x10(%ebp),%eax
80101c36: 8d 50 07 lea 0x7(%eax),%edx
80101c39: 85 c0 test %eax,%eax
80101c3b: 0f 48 c2 cmovs %edx,%eax
80101c3e: c1 f8 03 sar $0x3,%eax
80101c41: 8b 55 ec mov -0x14(%ebp),%edx
80101c44: 0f b6 44 02 18 movzbl 0x18(%edx,%eax,1),%eax
80101c49: 0f b6 c0 movzbl %al,%eax
80101c4c: 23 45 e8 and -0x18(%ebp),%eax
80101c4f: 85 c0 test %eax,%eax
80101c51: 75 61 jne 80101cb4 <balloc+0xf5>
bp->data[bi/8] |= m; // Mark block in use.
80101c53: 8b 45 f0 mov -0x10(%ebp),%eax
80101c56: 8d 50 07 lea 0x7(%eax),%edx
80101c59: 85 c0 test %eax,%eax
80101c5b: 0f 48 c2 cmovs %edx,%eax
80101c5e: c1 f8 03 sar $0x3,%eax
80101c61: 8b 55 ec mov -0x14(%ebp),%edx
80101c64: 0f b6 54 02 18 movzbl 0x18(%edx,%eax,1),%edx
80101c69: 89 d1 mov %edx,%ecx
80101c6b: 8b 55 e8 mov -0x18(%ebp),%edx
80101c6e: 09 ca or %ecx,%edx
80101c70: 89 d1 mov %edx,%ecx
80101c72: 8b 55 ec mov -0x14(%ebp),%edx
80101c75: 88 4c 02 18 mov %cl,0x18(%edx,%eax,1)
log_write(bp);
80101c79: 8b 45 ec mov -0x14(%ebp),%eax
80101c7c: 89 04 24 mov %eax,(%esp)
80101c7f: e8 a2 22 00 00 call 80103f26 <log_write>
brelse(bp);
80101c84: 8b 45 ec mov -0x14(%ebp),%eax
80101c87: 89 04 24 mov %eax,(%esp)
80101c8a: e8 88 e5 ff ff call 80100217 <brelse>
bzero(dev, b + bi);
80101c8f: 8b 45 f0 mov -0x10(%ebp),%eax
80101c92: 8b 55 f4 mov -0xc(%ebp),%edx
80101c95: 01 c2 add %eax,%edx
80101c97: 8b 45 08 mov 0x8(%ebp),%eax
80101c9a: 89 54 24 04 mov %edx,0x4(%esp)
80101c9e: 89 04 24 mov %eax,(%esp)
80101ca1: e8 c8 fe ff ff call 80101b6e <bzero>
return b + bi;
80101ca6: 8b 45 f0 mov -0x10(%ebp),%eax
80101ca9: 8b 55 f4 mov -0xc(%ebp),%edx
80101cac: 01 d0 add %edx,%eax
}
}
brelse(bp);
}
panic("balloc: out of blocks");
}
80101cae: 83 c4 24 add $0x24,%esp
80101cb1: 5b pop %ebx
80101cb2: 5d pop %ebp
80101cb3: c3 ret
struct buf *bp;
bp = 0;
for(b = 0; b < sb.size; b += BPB){
bp = bread(dev, BBLOCK(b, sb));
for(bi = 0; bi < BPB && b + bi < sb.size; bi++){
80101cb4: 83 45 f0 01 addl $0x1,-0x10(%ebp)
80101cb8: 81 7d f0 ff 0f 00 00 cmpl $0xfff,-0x10(%ebp)
80101cbf: 7f 17 jg 80101cd8 <balloc+0x119>
80101cc1: 8b 45 f0 mov -0x10(%ebp),%eax
80101cc4: 8b 55 f4 mov -0xc(%ebp),%edx
80101cc7: 01 d0 add %edx,%eax
80101cc9: 89 c2 mov %eax,%edx
80101ccb: a1 60 2a 11 80 mov 0x80112a60,%eax
80101cd0: 39 c2 cmp %eax,%edx
80101cd2: 0f 82 39 ff ff ff jb 80101c11 <balloc+0x52>
brelse(bp);
bzero(dev, b + bi);
return b + bi;
}
}
brelse(bp);
80101cd8: 8b 45 ec mov -0x14(%ebp),%eax
80101cdb: 89 04 24 mov %eax,(%esp)
80101cde: e8 34 e5 ff ff call 80100217 <brelse>
{
int b, bi, m;
struct buf *bp;
bp = 0;
for(b = 0; b < sb.size; b += BPB){
80101ce3: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
80101cea: 8b 55 f4 mov -0xc(%ebp),%edx
80101ced: a1 60 2a 11 80 mov 0x80112a60,%eax
80101cf2: 39 c2 cmp %eax,%edx
80101cf4: 0f 82 df fe ff ff jb 80101bd9 <balloc+0x1a>
return b + bi;
}
}
brelse(bp);
}
panic("balloc: out of blocks");
80101cfa: c7 04 24 4c 93 10 80 movl $0x8010934c,(%esp)
80101d01: e8 37 e8 ff ff call 8010053d <panic>
80101d06 <bfree>:
}
// Free a disk block.
static void
bfree(int dev, uint b)
{
80101d06: 55 push %ebp
80101d07: 89 e5 mov %esp,%ebp
80101d09: 53 push %ebx
80101d0a: 83 ec 24 sub $0x24,%esp
struct buf *bp;
int bi, m;
readsb(dev, &sb);
80101d0d: c7 44 24 04 60 2a 11 movl $0x80112a60,0x4(%esp)
80101d14: 80
80101d15: 8b 45 08 mov 0x8(%ebp),%eax
80101d18: 89 04 24 mov %eax,(%esp)
80101d1b: e8 08 fe ff ff call 80101b28 <readsb>
bp = bread(dev, BBLOCK(b, sb));
80101d20: 8b 45 0c mov 0xc(%ebp),%eax
80101d23: 89 c2 mov %eax,%edx
80101d25: c1 ea 0c shr $0xc,%edx
80101d28: a1 78 2a 11 80 mov 0x80112a78,%eax
80101d2d: 01 c2 add %eax,%edx
80101d2f: 8b 45 08 mov 0x8(%ebp),%eax
80101d32: 89 54 24 04 mov %edx,0x4(%esp)
80101d36: 89 04 24 mov %eax,(%esp)
80101d39: e8 68 e4 ff ff call 801001a6 <bread>
80101d3e: 89 45 f4 mov %eax,-0xc(%ebp)
bi = b % BPB;
80101d41: 8b 45 0c mov 0xc(%ebp),%eax
80101d44: 25 ff 0f 00 00 and $0xfff,%eax
80101d49: 89 45 f0 mov %eax,-0x10(%ebp)
m = 1 << (bi % 8);
80101d4c: 8b 45 f0 mov -0x10(%ebp),%eax
80101d4f: 89 c2 mov %eax,%edx
80101d51: c1 fa 1f sar $0x1f,%edx
80101d54: c1 ea 1d shr $0x1d,%edx
80101d57: 01 d0 add %edx,%eax
80101d59: 83 e0 07 and $0x7,%eax
80101d5c: 29 d0 sub %edx,%eax
80101d5e: ba 01 00 00 00 mov $0x1,%edx
80101d63: 89 d3 mov %edx,%ebx
80101d65: 89 c1 mov %eax,%ecx
80101d67: d3 e3 shl %cl,%ebx
80101d69: 89 d8 mov %ebx,%eax
80101d6b: 89 45 ec mov %eax,-0x14(%ebp)
if((bp->data[bi/8] & m) == 0)
80101d6e: 8b 45 f0 mov -0x10(%ebp),%eax
80101d71: 8d 50 07 lea 0x7(%eax),%edx
80101d74: 85 c0 test %eax,%eax
80101d76: 0f 48 c2 cmovs %edx,%eax
80101d79: c1 f8 03 sar $0x3,%eax
80101d7c: 8b 55 f4 mov -0xc(%ebp),%edx
80101d7f: 0f b6 44 02 18 movzbl 0x18(%edx,%eax,1),%eax
80101d84: 0f b6 c0 movzbl %al,%eax
80101d87: 23 45 ec and -0x14(%ebp),%eax
80101d8a: 85 c0 test %eax,%eax
80101d8c: 75 0c jne 80101d9a <bfree+0x94>
panic("freeing free block");
80101d8e: c7 04 24 62 93 10 80 movl $0x80109362,(%esp)
80101d95: e8 a3 e7 ff ff call 8010053d <panic>
bp->data[bi/8] &= ~m;
80101d9a: 8b 45 f0 mov -0x10(%ebp),%eax
80101d9d: 8d 50 07 lea 0x7(%eax),%edx
80101da0: 85 c0 test %eax,%eax
80101da2: 0f 48 c2 cmovs %edx,%eax
80101da5: c1 f8 03 sar $0x3,%eax
80101da8: 8b 55 f4 mov -0xc(%ebp),%edx
80101dab: 0f b6 54 02 18 movzbl 0x18(%edx,%eax,1),%edx
80101db0: 8b 4d ec mov -0x14(%ebp),%ecx
80101db3: f7 d1 not %ecx
80101db5: 21 ca and %ecx,%edx
80101db7: 89 d1 mov %edx,%ecx
80101db9: 8b 55 f4 mov -0xc(%ebp),%edx
80101dbc: 88 4c 02 18 mov %cl,0x18(%edx,%eax,1)
log_write(bp);
80101dc0: 8b 45 f4 mov -0xc(%ebp),%eax
80101dc3: 89 04 24 mov %eax,(%esp)
80101dc6: e8 5b 21 00 00 call 80103f26 <log_write>
brelse(bp);
80101dcb: 8b 45 f4 mov -0xc(%ebp),%eax
80101dce: 89 04 24 mov %eax,(%esp)
80101dd1: e8 41 e4 ff ff call 80100217 <brelse>
}
80101dd6: 83 c4 24 add $0x24,%esp
80101dd9: 5b pop %ebx
80101dda: 5d pop %ebp
80101ddb: c3 ret
80101ddc <iinit>:
struct inode inode[NINODE];
} icache;
void
iinit(int dev)
{
80101ddc: 55 push %ebp
80101ddd: 89 e5 mov %esp,%ebp
80101ddf: 57 push %edi
80101de0: 56 push %esi
80101de1: 53 push %ebx
80101de2: 83 ec 3c sub $0x3c,%esp
initlock(&icache.lock, "icache");
80101de5: c7 44 24 04 75 93 10 movl $0x80109375,0x4(%esp)
80101dec: 80
80101ded: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
80101df4: e8 91 3d 00 00 call 80105b8a <initlock>
readsb(dev, &sb);
80101df9: c7 44 24 04 60 2a 11 movl $0x80112a60,0x4(%esp)
80101e00: 80
80101e01: 8b 45 08 mov 0x8(%ebp),%eax
80101e04: 89 04 24 mov %eax,(%esp)
80101e07: e8 1c fd ff ff call 80101b28 <readsb>
cprintf("sb: size %d nblocks %d ninodes %d nlog %d logstart %d inodestart %d bmap start %d\n", sb.size,
80101e0c: a1 78 2a 11 80 mov 0x80112a78,%eax
80101e11: 89 45 e4 mov %eax,-0x1c(%ebp)
80101e14: 8b 3d 74 2a 11 80 mov 0x80112a74,%edi
80101e1a: 8b 35 70 2a 11 80 mov 0x80112a70,%esi
80101e20: 8b 1d 6c 2a 11 80 mov 0x80112a6c,%ebx
80101e26: 8b 0d 68 2a 11 80 mov 0x80112a68,%ecx
80101e2c: 8b 15 64 2a 11 80 mov 0x80112a64,%edx
80101e32: a1 60 2a 11 80 mov 0x80112a60,%eax
80101e37: 89 45 e0 mov %eax,-0x20(%ebp)
80101e3a: 8b 45 e4 mov -0x1c(%ebp),%eax
80101e3d: 89 44 24 1c mov %eax,0x1c(%esp)
80101e41: 89 7c 24 18 mov %edi,0x18(%esp)
80101e45: 89 74 24 14 mov %esi,0x14(%esp)
80101e49: 89 5c 24 10 mov %ebx,0x10(%esp)
80101e4d: 89 4c 24 0c mov %ecx,0xc(%esp)
80101e51: 89 54 24 08 mov %edx,0x8(%esp)
80101e55: 8b 45 e0 mov -0x20(%ebp),%eax
80101e58: 89 44 24 04 mov %eax,0x4(%esp)
80101e5c: c7 04 24 7c 93 10 80 movl $0x8010937c,(%esp)
80101e63: e8 39 e5 ff ff call 801003a1 <cprintf>
sb.nblocks, sb.ninodes, sb.nlog, sb.logstart, sb.inodestart, sb.bmapstart);
}
80101e68: 83 c4 3c add $0x3c,%esp
80101e6b: 5b pop %ebx
80101e6c: 5e pop %esi
80101e6d: 5f pop %edi
80101e6e: 5d pop %ebp
80101e6f: c3 ret
80101e70 <ialloc>:
//PAGEBREAK!
// Allocate a new inode with the given type on device dev.
// A free inode has a type of zero.
struct inode*
ialloc(uint dev, short type)
{
80101e70: 55 push %ebp
80101e71: 89 e5 mov %esp,%ebp
80101e73: 83 ec 38 sub $0x38,%esp
80101e76: 8b 45 0c mov 0xc(%ebp),%eax
80101e79: 66 89 45 e4 mov %ax,-0x1c(%ebp)
int inum;
struct buf *bp;
struct dinode *dip;
for(inum = 1; inum < sb.ninodes; inum++){
80101e7d: c7 45 f4 01 00 00 00 movl $0x1,-0xc(%ebp)
80101e84: e9 9e 00 00 00 jmp 80101f27 <ialloc+0xb7>
bp = bread(dev, IBLOCK(inum, sb));
80101e89: 8b 45 f4 mov -0xc(%ebp),%eax
80101e8c: 89 c2 mov %eax,%edx
80101e8e: c1 ea 03 shr $0x3,%edx
80101e91: a1 74 2a 11 80 mov 0x80112a74,%eax
80101e96: 01 d0 add %edx,%eax
80101e98: 89 44 24 04 mov %eax,0x4(%esp)
80101e9c: 8b 45 08 mov 0x8(%ebp),%eax
80101e9f: 89 04 24 mov %eax,(%esp)
80101ea2: e8 ff e2 ff ff call 801001a6 <bread>
80101ea7: 89 45 f0 mov %eax,-0x10(%ebp)
dip = (struct dinode*)bp->data + inum%IPB;
80101eaa: 8b 45 f0 mov -0x10(%ebp),%eax
80101ead: 8d 50 18 lea 0x18(%eax),%edx
80101eb0: 8b 45 f4 mov -0xc(%ebp),%eax
80101eb3: 83 e0 07 and $0x7,%eax
80101eb6: c1 e0 06 shl $0x6,%eax
80101eb9: 01 d0 add %edx,%eax
80101ebb: 89 45 ec mov %eax,-0x14(%ebp)
if(dip->type == 0){ // a free inode
80101ebe: 8b 45 ec mov -0x14(%ebp),%eax
80101ec1: 0f b7 00 movzwl (%eax),%eax
80101ec4: 66 85 c0 test %ax,%ax
80101ec7: 75 4f jne 80101f18 <ialloc+0xa8>
memset(dip, 0, sizeof(*dip));
80101ec9: c7 44 24 08 40 00 00 movl $0x40,0x8(%esp)
80101ed0: 00
80101ed1: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80101ed8: 00
80101ed9: 8b 45 ec mov -0x14(%ebp),%eax
80101edc: 89 04 24 mov %eax,(%esp)
80101edf: e8 16 3f 00 00 call 80105dfa <memset>
dip->type = type;
80101ee4: 8b 45 ec mov -0x14(%ebp),%eax
80101ee7: 0f b7 55 e4 movzwl -0x1c(%ebp),%edx
80101eeb: 66 89 10 mov %dx,(%eax)
log_write(bp); // mark it allocated on the disk
80101eee: 8b 45 f0 mov -0x10(%ebp),%eax
80101ef1: 89 04 24 mov %eax,(%esp)
80101ef4: e8 2d 20 00 00 call 80103f26 <log_write>
brelse(bp);
80101ef9: 8b 45 f0 mov -0x10(%ebp),%eax
80101efc: 89 04 24 mov %eax,(%esp)
80101eff: e8 13 e3 ff ff call 80100217 <brelse>
return iget(dev, inum);
80101f04: 8b 45 f4 mov -0xc(%ebp),%eax
80101f07: 89 44 24 04 mov %eax,0x4(%esp)
80101f0b: 8b 45 08 mov 0x8(%ebp),%eax
80101f0e: 89 04 24 mov %eax,(%esp)
80101f11: e8 eb 00 00 00 call 80102001 <iget>
}
brelse(bp);
}
panic("ialloc: no inodes");
}
80101f16: c9 leave
80101f17: c3 ret
dip->type = type;
log_write(bp); // mark it allocated on the disk
brelse(bp);
return iget(dev, inum);
}
brelse(bp);
80101f18: 8b 45 f0 mov -0x10(%ebp),%eax
80101f1b: 89 04 24 mov %eax,(%esp)
80101f1e: e8 f4 e2 ff ff call 80100217 <brelse>
{
int inum;
struct buf *bp;
struct dinode *dip;
for(inum = 1; inum < sb.ninodes; inum++){
80101f23: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80101f27: 8b 55 f4 mov -0xc(%ebp),%edx
80101f2a: a1 68 2a 11 80 mov 0x80112a68,%eax
80101f2f: 39 c2 cmp %eax,%edx
80101f31: 0f 82 52 ff ff ff jb 80101e89 <ialloc+0x19>
brelse(bp);
return iget(dev, inum);
}
brelse(bp);
}
panic("ialloc: no inodes");
80101f37: c7 04 24 cf 93 10 80 movl $0x801093cf,(%esp)
80101f3e: e8 fa e5 ff ff call 8010053d <panic>
80101f43 <iupdate>:
}
// Copy a modified in-memory inode to disk.
void
iupdate(struct inode *ip)
{
80101f43: 55 push %ebp
80101f44: 89 e5 mov %esp,%ebp
80101f46: 83 ec 28 sub $0x28,%esp
struct buf *bp;
struct dinode *dip;
bp = bread(ip->dev, IBLOCK(ip->inum, sb));
80101f49: 8b 45 08 mov 0x8(%ebp),%eax
80101f4c: 8b 40 04 mov 0x4(%eax),%eax
80101f4f: 89 c2 mov %eax,%edx
80101f51: c1 ea 03 shr $0x3,%edx
80101f54: a1 74 2a 11 80 mov 0x80112a74,%eax
80101f59: 01 c2 add %eax,%edx
80101f5b: 8b 45 08 mov 0x8(%ebp),%eax
80101f5e: 8b 00 mov (%eax),%eax
80101f60: 89 54 24 04 mov %edx,0x4(%esp)
80101f64: 89 04 24 mov %eax,(%esp)
80101f67: e8 3a e2 ff ff call 801001a6 <bread>
80101f6c: 89 45 f4 mov %eax,-0xc(%ebp)
dip = (struct dinode*)bp->data + ip->inum%IPB;
80101f6f: 8b 45 f4 mov -0xc(%ebp),%eax
80101f72: 8d 50 18 lea 0x18(%eax),%edx
80101f75: 8b 45 08 mov 0x8(%ebp),%eax
80101f78: 8b 40 04 mov 0x4(%eax),%eax
80101f7b: 83 e0 07 and $0x7,%eax
80101f7e: c1 e0 06 shl $0x6,%eax
80101f81: 01 d0 add %edx,%eax
80101f83: 89 45 f0 mov %eax,-0x10(%ebp)
dip->type = ip->type;
80101f86: 8b 45 08 mov 0x8(%ebp),%eax
80101f89: 0f b7 50 10 movzwl 0x10(%eax),%edx
80101f8d: 8b 45 f0 mov -0x10(%ebp),%eax
80101f90: 66 89 10 mov %dx,(%eax)
dip->major = ip->major;
80101f93: 8b 45 08 mov 0x8(%ebp),%eax
80101f96: 0f b7 50 12 movzwl 0x12(%eax),%edx
80101f9a: 8b 45 f0 mov -0x10(%ebp),%eax
80101f9d: 66 89 50 02 mov %dx,0x2(%eax)
dip->minor = ip->minor;
80101fa1: 8b 45 08 mov 0x8(%ebp),%eax
80101fa4: 0f b7 50 14 movzwl 0x14(%eax),%edx
80101fa8: 8b 45 f0 mov -0x10(%ebp),%eax
80101fab: 66 89 50 04 mov %dx,0x4(%eax)
dip->nlink = ip->nlink;
80101faf: 8b 45 08 mov 0x8(%ebp),%eax
80101fb2: 0f b7 50 16 movzwl 0x16(%eax),%edx
80101fb6: 8b 45 f0 mov -0x10(%ebp),%eax
80101fb9: 66 89 50 06 mov %dx,0x6(%eax)
dip->size = ip->size;
80101fbd: 8b 45 08 mov 0x8(%ebp),%eax
80101fc0: 8b 50 18 mov 0x18(%eax),%edx
80101fc3: 8b 45 f0 mov -0x10(%ebp),%eax
80101fc6: 89 50 08 mov %edx,0x8(%eax)
memmove(dip->addrs, ip->addrs, sizeof(ip->addrs));
80101fc9: 8b 45 08 mov 0x8(%ebp),%eax
80101fcc: 8d 50 1c lea 0x1c(%eax),%edx
80101fcf: 8b 45 f0 mov -0x10(%ebp),%eax
80101fd2: 83 c0 0c add $0xc,%eax
80101fd5: c7 44 24 08 34 00 00 movl $0x34,0x8(%esp)
80101fdc: 00
80101fdd: 89 54 24 04 mov %edx,0x4(%esp)
80101fe1: 89 04 24 mov %eax,(%esp)
80101fe4: e8 e4 3e 00 00 call 80105ecd <memmove>
log_write(bp);
80101fe9: 8b 45 f4 mov -0xc(%ebp),%eax
80101fec: 89 04 24 mov %eax,(%esp)
80101fef: e8 32 1f 00 00 call 80103f26 <log_write>
brelse(bp);
80101ff4: 8b 45 f4 mov -0xc(%ebp),%eax
80101ff7: 89 04 24 mov %eax,(%esp)
80101ffa: e8 18 e2 ff ff call 80100217 <brelse>
}
80101fff: c9 leave
80102000: c3 ret
80102001 <iget>:
// Find the inode with number inum on device dev
// and return the in-memory copy. Does not lock
// the inode and does not read it from disk.
static struct inode*
iget(uint dev, uint inum)
{
80102001: 55 push %ebp
80102002: 89 e5 mov %esp,%ebp
80102004: 83 ec 28 sub $0x28,%esp
struct inode *ip, *empty;
acquire(&icache.lock);
80102007: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
8010200e: e8 98 3b 00 00 call 80105bab <acquire>
// Is the inode already cached?
empty = 0;
80102013: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){
8010201a: c7 45 f4 b4 2a 11 80 movl $0x80112ab4,-0xc(%ebp)
80102021: eb 59 jmp 8010207c <iget+0x7b>
if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){
80102023: 8b 45 f4 mov -0xc(%ebp),%eax
80102026: 8b 40 08 mov 0x8(%eax),%eax
80102029: 85 c0 test %eax,%eax
8010202b: 7e 35 jle 80102062 <iget+0x61>
8010202d: 8b 45 f4 mov -0xc(%ebp),%eax
80102030: 8b 00 mov (%eax),%eax
80102032: 3b 45 08 cmp 0x8(%ebp),%eax
80102035: 75 2b jne 80102062 <iget+0x61>
80102037: 8b 45 f4 mov -0xc(%ebp),%eax
8010203a: 8b 40 04 mov 0x4(%eax),%eax
8010203d: 3b 45 0c cmp 0xc(%ebp),%eax
80102040: 75 20 jne 80102062 <iget+0x61>
ip->ref++;
80102042: 8b 45 f4 mov -0xc(%ebp),%eax
80102045: 8b 40 08 mov 0x8(%eax),%eax
80102048: 8d 50 01 lea 0x1(%eax),%edx
8010204b: 8b 45 f4 mov -0xc(%ebp),%eax
8010204e: 89 50 08 mov %edx,0x8(%eax)
release(&icache.lock);
80102051: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
80102058: e8 b0 3b 00 00 call 80105c0d <release>
return ip;
8010205d: 8b 45 f4 mov -0xc(%ebp),%eax
80102060: eb 6f jmp 801020d1 <iget+0xd0>
}
if(empty == 0 && ip->ref == 0) // Remember empty slot.
80102062: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80102066: 75 10 jne 80102078 <iget+0x77>
80102068: 8b 45 f4 mov -0xc(%ebp),%eax
8010206b: 8b 40 08 mov 0x8(%eax),%eax
8010206e: 85 c0 test %eax,%eax
80102070: 75 06 jne 80102078 <iget+0x77>
empty = ip;
80102072: 8b 45 f4 mov -0xc(%ebp),%eax
80102075: 89 45 f0 mov %eax,-0x10(%ebp)
acquire(&icache.lock);
// Is the inode already cached?
empty = 0;
for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){
80102078: 83 45 f4 50 addl $0x50,-0xc(%ebp)
8010207c: 81 7d f4 54 3a 11 80 cmpl $0x80113a54,-0xc(%ebp)
80102083: 72 9e jb 80102023 <iget+0x22>
if(empty == 0 && ip->ref == 0) // Remember empty slot.
empty = ip;
}
// Recycle an inode cache entry.
if(empty == 0)
80102085: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80102089: 75 0c jne 80102097 <iget+0x96>
panic("iget: no inodes");
8010208b: c7 04 24 e1 93 10 80 movl $0x801093e1,(%esp)
80102092: e8 a6 e4 ff ff call 8010053d <panic>
ip = empty;
80102097: 8b 45 f0 mov -0x10(%ebp),%eax
8010209a: 89 45 f4 mov %eax,-0xc(%ebp)
ip->dev = dev;
8010209d: 8b 45 f4 mov -0xc(%ebp),%eax
801020a0: 8b 55 08 mov 0x8(%ebp),%edx
801020a3: 89 10 mov %edx,(%eax)
ip->inum = inum;
801020a5: 8b 45 f4 mov -0xc(%ebp),%eax
801020a8: 8b 55 0c mov 0xc(%ebp),%edx
801020ab: 89 50 04 mov %edx,0x4(%eax)
ip->ref = 1;
801020ae: 8b 45 f4 mov -0xc(%ebp),%eax
801020b1: c7 40 08 01 00 00 00 movl $0x1,0x8(%eax)
ip->flags = 0;
801020b8: 8b 45 f4 mov -0xc(%ebp),%eax
801020bb: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
release(&icache.lock);
801020c2: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
801020c9: e8 3f 3b 00 00 call 80105c0d <release>
return ip;
801020ce: 8b 45 f4 mov -0xc(%ebp),%eax
}
801020d1: c9 leave
801020d2: c3 ret
801020d3 <idup>:
// Increment reference count for ip.
// Returns ip to enable ip = idup(ip1) idiom.
struct inode*
idup(struct inode *ip)
{
801020d3: 55 push %ebp
801020d4: 89 e5 mov %esp,%ebp
801020d6: 83 ec 18 sub $0x18,%esp
acquire(&icache.lock);
801020d9: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
801020e0: e8 c6 3a 00 00 call 80105bab <acquire>
ip->ref++;
801020e5: 8b 45 08 mov 0x8(%ebp),%eax
801020e8: 8b 40 08 mov 0x8(%eax),%eax
801020eb: 8d 50 01 lea 0x1(%eax),%edx
801020ee: 8b 45 08 mov 0x8(%ebp),%eax
801020f1: 89 50 08 mov %edx,0x8(%eax)
release(&icache.lock);
801020f4: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
801020fb: e8 0d 3b 00 00 call 80105c0d <release>
return ip;
80102100: 8b 45 08 mov 0x8(%ebp),%eax
}
80102103: c9 leave
80102104: c3 ret
80102105 <ilock>:
// Lock the given inode.
// Reads the inode from disk if necessary.
void
ilock(struct inode *ip)
{
80102105: 55 push %ebp
80102106: 89 e5 mov %esp,%ebp
80102108: 83 ec 28 sub $0x28,%esp
struct buf *bp;
struct dinode *dip;
if(ip == 0 || ip->ref < 1)
8010210b: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
8010210f: 74 0a je 8010211b <ilock+0x16>
80102111: 8b 45 08 mov 0x8(%ebp),%eax
80102114: 8b 40 08 mov 0x8(%eax),%eax
80102117: 85 c0 test %eax,%eax
80102119: 7f 0c jg 80102127 <ilock+0x22>
panic("ilock");
8010211b: c7 04 24 f1 93 10 80 movl $0x801093f1,(%esp)
80102122: e8 16 e4 ff ff call 8010053d <panic>
acquire(&icache.lock);
80102127: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
8010212e: e8 78 3a 00 00 call 80105bab <acquire>
while(ip->flags & I_BUSY)
80102133: eb 13 jmp 80102148 <ilock+0x43>
sleep(ip, &icache.lock);
80102135: c7 44 24 04 80 2a 11 movl $0x80112a80,0x4(%esp)
8010213c: 80
8010213d: 8b 45 08 mov 0x8(%ebp),%eax
80102140: 89 04 24 mov %eax,(%esp)
80102143: e8 77 35 00 00 call 801056bf <sleep>
if(ip == 0 || ip->ref < 1)
panic("ilock");
acquire(&icache.lock);
while(ip->flags & I_BUSY)
80102148: 8b 45 08 mov 0x8(%ebp),%eax
8010214b: 8b 40 0c mov 0xc(%eax),%eax
8010214e: 83 e0 01 and $0x1,%eax
80102151: 84 c0 test %al,%al
80102153: 75 e0 jne 80102135 <ilock+0x30>
sleep(ip, &icache.lock);
ip->flags |= I_BUSY;
80102155: 8b 45 08 mov 0x8(%ebp),%eax
80102158: 8b 40 0c mov 0xc(%eax),%eax
8010215b: 89 c2 mov %eax,%edx
8010215d: 83 ca 01 or $0x1,%edx
80102160: 8b 45 08 mov 0x8(%ebp),%eax
80102163: 89 50 0c mov %edx,0xc(%eax)
release(&icache.lock);
80102166: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
8010216d: e8 9b 3a 00 00 call 80105c0d <release>
if(!(ip->flags & I_VALID)){
80102172: 8b 45 08 mov 0x8(%ebp),%eax
80102175: 8b 40 0c mov 0xc(%eax),%eax
80102178: 83 e0 02 and $0x2,%eax
8010217b: 85 c0 test %eax,%eax
8010217d: 0f 85 d4 00 00 00 jne 80102257 <ilock+0x152>
bp = bread(ip->dev, IBLOCK(ip->inum, sb));
80102183: 8b 45 08 mov 0x8(%ebp),%eax
80102186: 8b 40 04 mov 0x4(%eax),%eax
80102189: 89 c2 mov %eax,%edx
8010218b: c1 ea 03 shr $0x3,%edx
8010218e: a1 74 2a 11 80 mov 0x80112a74,%eax
80102193: 01 c2 add %eax,%edx
80102195: 8b 45 08 mov 0x8(%ebp),%eax
80102198: 8b 00 mov (%eax),%eax
8010219a: 89 54 24 04 mov %edx,0x4(%esp)
8010219e: 89 04 24 mov %eax,(%esp)
801021a1: e8 00 e0 ff ff call 801001a6 <bread>
801021a6: 89 45 f4 mov %eax,-0xc(%ebp)
dip = (struct dinode*)bp->data + ip->inum%IPB;
801021a9: 8b 45 f4 mov -0xc(%ebp),%eax
801021ac: 8d 50 18 lea 0x18(%eax),%edx
801021af: 8b 45 08 mov 0x8(%ebp),%eax
801021b2: 8b 40 04 mov 0x4(%eax),%eax
801021b5: 83 e0 07 and $0x7,%eax
801021b8: c1 e0 06 shl $0x6,%eax
801021bb: 01 d0 add %edx,%eax
801021bd: 89 45 f0 mov %eax,-0x10(%ebp)
ip->type = dip->type;
801021c0: 8b 45 f0 mov -0x10(%ebp),%eax
801021c3: 0f b7 10 movzwl (%eax),%edx
801021c6: 8b 45 08 mov 0x8(%ebp),%eax
801021c9: 66 89 50 10 mov %dx,0x10(%eax)
ip->major = dip->major;
801021cd: 8b 45 f0 mov -0x10(%ebp),%eax
801021d0: 0f b7 50 02 movzwl 0x2(%eax),%edx
801021d4: 8b 45 08 mov 0x8(%ebp),%eax
801021d7: 66 89 50 12 mov %dx,0x12(%eax)
ip->minor = dip->minor;
801021db: 8b 45 f0 mov -0x10(%ebp),%eax
801021de: 0f b7 50 04 movzwl 0x4(%eax),%edx
801021e2: 8b 45 08 mov 0x8(%ebp),%eax
801021e5: 66 89 50 14 mov %dx,0x14(%eax)
ip->nlink = dip->nlink;
801021e9: 8b 45 f0 mov -0x10(%ebp),%eax
801021ec: 0f b7 50 06 movzwl 0x6(%eax),%edx
801021f0: 8b 45 08 mov 0x8(%ebp),%eax
801021f3: 66 89 50 16 mov %dx,0x16(%eax)
ip->size = dip->size;
801021f7: 8b 45 f0 mov -0x10(%ebp),%eax
801021fa: 8b 50 08 mov 0x8(%eax),%edx
801021fd: 8b 45 08 mov 0x8(%ebp),%eax
80102200: 89 50 18 mov %edx,0x18(%eax)
memmove(ip->addrs, dip->addrs, sizeof(ip->addrs));
80102203: 8b 45 f0 mov -0x10(%ebp),%eax
80102206: 8d 50 0c lea 0xc(%eax),%edx
80102209: 8b 45 08 mov 0x8(%ebp),%eax
8010220c: 83 c0 1c add $0x1c,%eax
8010220f: c7 44 24 08 34 00 00 movl $0x34,0x8(%esp)
80102216: 00
80102217: 89 54 24 04 mov %edx,0x4(%esp)
8010221b: 89 04 24 mov %eax,(%esp)
8010221e: e8 aa 3c 00 00 call 80105ecd <memmove>
brelse(bp);
80102223: 8b 45 f4 mov -0xc(%ebp),%eax
80102226: 89 04 24 mov %eax,(%esp)
80102229: e8 e9 df ff ff call 80100217 <brelse>
ip->flags |= I_VALID;
8010222e: 8b 45 08 mov 0x8(%ebp),%eax
80102231: 8b 40 0c mov 0xc(%eax),%eax
80102234: 89 c2 mov %eax,%edx
80102236: 83 ca 02 or $0x2,%edx
80102239: 8b 45 08 mov 0x8(%ebp),%eax
8010223c: 89 50 0c mov %edx,0xc(%eax)
if(ip->type == 0)
8010223f: 8b 45 08 mov 0x8(%ebp),%eax
80102242: 0f b7 40 10 movzwl 0x10(%eax),%eax
80102246: 66 85 c0 test %ax,%ax
80102249: 75 0c jne 80102257 <ilock+0x152>
panic("ilock: no type");
8010224b: c7 04 24 f7 93 10 80 movl $0x801093f7,(%esp)
80102252: e8 e6 e2 ff ff call 8010053d <panic>
}
}
80102257: c9 leave
80102258: c3 ret
80102259 <iunlock>:
// Unlock the given inode.
void
iunlock(struct inode *ip)
{
80102259: 55 push %ebp
8010225a: 89 e5 mov %esp,%ebp
8010225c: 83 ec 18 sub $0x18,%esp
if(ip == 0 || !(ip->flags & I_BUSY) || ip->ref < 1)
8010225f: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80102263: 74 17 je 8010227c <iunlock+0x23>
80102265: 8b 45 08 mov 0x8(%ebp),%eax
80102268: 8b 40 0c mov 0xc(%eax),%eax
8010226b: 83 e0 01 and $0x1,%eax
8010226e: 85 c0 test %eax,%eax
80102270: 74 0a je 8010227c <iunlock+0x23>
80102272: 8b 45 08 mov 0x8(%ebp),%eax
80102275: 8b 40 08 mov 0x8(%eax),%eax
80102278: 85 c0 test %eax,%eax
8010227a: 7f 0c jg 80102288 <iunlock+0x2f>
panic("iunlock");
8010227c: c7 04 24 06 94 10 80 movl $0x80109406,(%esp)
80102283: e8 b5 e2 ff ff call 8010053d <panic>
acquire(&icache.lock);
80102288: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
8010228f: e8 17 39 00 00 call 80105bab <acquire>
ip->flags &= ~I_BUSY;
80102294: 8b 45 08 mov 0x8(%ebp),%eax
80102297: 8b 40 0c mov 0xc(%eax),%eax
8010229a: 89 c2 mov %eax,%edx
8010229c: 83 e2 fe and $0xfffffffe,%edx
8010229f: 8b 45 08 mov 0x8(%ebp),%eax
801022a2: 89 50 0c mov %edx,0xc(%eax)
wakeup(ip);
801022a5: 8b 45 08 mov 0x8(%ebp),%eax
801022a8: 89 04 24 mov %eax,(%esp)
801022ab: e8 f8 34 00 00 call 801057a8 <wakeup>
release(&icache.lock);
801022b0: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
801022b7: e8 51 39 00 00 call 80105c0d <release>
}
801022bc: c9 leave
801022bd: c3 ret
801022be <iput>:
// to it, free the inode (and its content) on disk.
// All calls to iput() must be inside a transaction in
// case it has to free the inode.
void
iput(struct inode *ip)
{
801022be: 55 push %ebp
801022bf: 89 e5 mov %esp,%ebp
801022c1: 83 ec 18 sub $0x18,%esp
acquire(&icache.lock);
801022c4: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
801022cb: e8 db 38 00 00 call 80105bab <acquire>
if(ip->ref == 1 && (ip->flags & I_VALID) && ip->nlink == 0){
801022d0: 8b 45 08 mov 0x8(%ebp),%eax
801022d3: 8b 40 08 mov 0x8(%eax),%eax
801022d6: 83 f8 01 cmp $0x1,%eax
801022d9: 0f 85 93 00 00 00 jne 80102372 <iput+0xb4>
801022df: 8b 45 08 mov 0x8(%ebp),%eax
801022e2: 8b 40 0c mov 0xc(%eax),%eax
801022e5: 83 e0 02 and $0x2,%eax
801022e8: 85 c0 test %eax,%eax
801022ea: 0f 84 82 00 00 00 je 80102372 <iput+0xb4>
801022f0: 8b 45 08 mov 0x8(%ebp),%eax
801022f3: 0f b7 40 16 movzwl 0x16(%eax),%eax
801022f7: 66 85 c0 test %ax,%ax
801022fa: 75 76 jne 80102372 <iput+0xb4>
// inode has no links and no other references: truncate and free.
if(ip->flags & I_BUSY)
801022fc: 8b 45 08 mov 0x8(%ebp),%eax
801022ff: 8b 40 0c mov 0xc(%eax),%eax
80102302: 83 e0 01 and $0x1,%eax
80102305: 84 c0 test %al,%al
80102307: 74 0c je 80102315 <iput+0x57>
panic("iput busy");
80102309: c7 04 24 0e 94 10 80 movl $0x8010940e,(%esp)
80102310: e8 28 e2 ff ff call 8010053d <panic>
ip->flags |= I_BUSY;
80102315: 8b 45 08 mov 0x8(%ebp),%eax
80102318: 8b 40 0c mov 0xc(%eax),%eax
8010231b: 89 c2 mov %eax,%edx
8010231d: 83 ca 01 or $0x1,%edx
80102320: 8b 45 08 mov 0x8(%ebp),%eax
80102323: 89 50 0c mov %edx,0xc(%eax)
release(&icache.lock);
80102326: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
8010232d: e8 db 38 00 00 call 80105c0d <release>
itrunc(ip);
80102332: 8b 45 08 mov 0x8(%ebp),%eax
80102335: 89 04 24 mov %eax,(%esp)
80102338: e8 72 01 00 00 call 801024af <itrunc>
ip->type = 0;
8010233d: 8b 45 08 mov 0x8(%ebp),%eax
80102340: 66 c7 40 10 00 00 movw $0x0,0x10(%eax)
iupdate(ip);
80102346: 8b 45 08 mov 0x8(%ebp),%eax
80102349: 89 04 24 mov %eax,(%esp)
8010234c: e8 f2 fb ff ff call 80101f43 <iupdate>
acquire(&icache.lock);
80102351: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
80102358: e8 4e 38 00 00 call 80105bab <acquire>
ip->flags = 0;
8010235d: 8b 45 08 mov 0x8(%ebp),%eax
80102360: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
wakeup(ip);
80102367: 8b 45 08 mov 0x8(%ebp),%eax
8010236a: 89 04 24 mov %eax,(%esp)
8010236d: e8 36 34 00 00 call 801057a8 <wakeup>
}
ip->ref--;
80102372: 8b 45 08 mov 0x8(%ebp),%eax
80102375: 8b 40 08 mov 0x8(%eax),%eax
80102378: 8d 50 ff lea -0x1(%eax),%edx
8010237b: 8b 45 08 mov 0x8(%ebp),%eax
8010237e: 89 50 08 mov %edx,0x8(%eax)
release(&icache.lock);
80102381: c7 04 24 80 2a 11 80 movl $0x80112a80,(%esp)
80102388: e8 80 38 00 00 call 80105c0d <release>
}
8010238d: c9 leave
8010238e: c3 ret
8010238f <iunlockput>:
// Common idiom: unlock, then put.
void
iunlockput(struct inode *ip)
{
8010238f: 55 push %ebp
80102390: 89 e5 mov %esp,%ebp
80102392: 83 ec 18 sub $0x18,%esp
iunlock(ip);
80102395: 8b 45 08 mov 0x8(%ebp),%eax
80102398: 89 04 24 mov %eax,(%esp)
8010239b: e8 b9 fe ff ff call 80102259 <iunlock>
iput(ip);
801023a0: 8b 45 08 mov 0x8(%ebp),%eax
801023a3: 89 04 24 mov %eax,(%esp)
801023a6: e8 13 ff ff ff call 801022be <iput>
}
801023ab: c9 leave
801023ac: c3 ret
801023ad <bmap>:
// Return the disk block address of the nth block in inode ip.
// If there is no such block, bmap allocates one.
static uint
bmap(struct inode *ip, uint bn)
{
801023ad: 55 push %ebp
801023ae: 89 e5 mov %esp,%ebp
801023b0: 53 push %ebx
801023b1: 83 ec 24 sub $0x24,%esp
uint addr, *a;
struct buf *bp;
if(bn < NDIRECT){
801023b4: 83 7d 0c 0b cmpl $0xb,0xc(%ebp)
801023b8: 77 3e ja 801023f8 <bmap+0x4b>
if((addr = ip->addrs[bn]) == 0)
801023ba: 8b 45 08 mov 0x8(%ebp),%eax
801023bd: 8b 55 0c mov 0xc(%ebp),%edx
801023c0: 83 c2 04 add $0x4,%edx
801023c3: 8b 44 90 0c mov 0xc(%eax,%edx,4),%eax
801023c7: 89 45 f4 mov %eax,-0xc(%ebp)
801023ca: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801023ce: 75 20 jne 801023f0 <bmap+0x43>
ip->addrs[bn] = addr = balloc(ip->dev);
801023d0: 8b 45 08 mov 0x8(%ebp),%eax
801023d3: 8b 00 mov (%eax),%eax
801023d5: 89 04 24 mov %eax,(%esp)
801023d8: e8 e2 f7 ff ff call 80101bbf <balloc>
801023dd: 89 45 f4 mov %eax,-0xc(%ebp)
801023e0: 8b 45 08 mov 0x8(%ebp),%eax
801023e3: 8b 55 0c mov 0xc(%ebp),%edx
801023e6: 8d 4a 04 lea 0x4(%edx),%ecx
801023e9: 8b 55 f4 mov -0xc(%ebp),%edx
801023ec: 89 54 88 0c mov %edx,0xc(%eax,%ecx,4)
return addr;
801023f0: 8b 45 f4 mov -0xc(%ebp),%eax
801023f3: e9 b1 00 00 00 jmp 801024a9 <bmap+0xfc>
}
bn -= NDIRECT;
801023f8: 83 6d 0c 0c subl $0xc,0xc(%ebp)
if(bn < NINDIRECT){
801023fc: 83 7d 0c 7f cmpl $0x7f,0xc(%ebp)
80102400: 0f 87 97 00 00 00 ja 8010249d <bmap+0xf0>
// Load indirect block, allocating if necessary.
if((addr = ip->addrs[NDIRECT]) == 0)
80102406: 8b 45 08 mov 0x8(%ebp),%eax
80102409: 8b 40 4c mov 0x4c(%eax),%eax
8010240c: 89 45 f4 mov %eax,-0xc(%ebp)
8010240f: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80102413: 75 19 jne 8010242e <bmap+0x81>
ip->addrs[NDIRECT] = addr = balloc(ip->dev);
80102415: 8b 45 08 mov 0x8(%ebp),%eax
80102418: 8b 00 mov (%eax),%eax
8010241a: 89 04 24 mov %eax,(%esp)
8010241d: e8 9d f7 ff ff call 80101bbf <balloc>
80102422: 89 45 f4 mov %eax,-0xc(%ebp)
80102425: 8b 45 08 mov 0x8(%ebp),%eax
80102428: 8b 55 f4 mov -0xc(%ebp),%edx
8010242b: 89 50 4c mov %edx,0x4c(%eax)
bp = bread(ip->dev, addr);
8010242e: 8b 45 08 mov 0x8(%ebp),%eax
80102431: 8b 00 mov (%eax),%eax
80102433: 8b 55 f4 mov -0xc(%ebp),%edx
80102436: 89 54 24 04 mov %edx,0x4(%esp)
8010243a: 89 04 24 mov %eax,(%esp)
8010243d: e8 64 dd ff ff call 801001a6 <bread>
80102442: 89 45 f0 mov %eax,-0x10(%ebp)
a = (uint*)bp->data;
80102445: 8b 45 f0 mov -0x10(%ebp),%eax
80102448: 83 c0 18 add $0x18,%eax
8010244b: 89 45 ec mov %eax,-0x14(%ebp)
if((addr = a[bn]) == 0){
8010244e: 8b 45 0c mov 0xc(%ebp),%eax
80102451: c1 e0 02 shl $0x2,%eax
80102454: 03 45 ec add -0x14(%ebp),%eax
80102457: 8b 00 mov (%eax),%eax
80102459: 89 45 f4 mov %eax,-0xc(%ebp)
8010245c: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80102460: 75 2b jne 8010248d <bmap+0xe0>
a[bn] = addr = balloc(ip->dev);
80102462: 8b 45 0c mov 0xc(%ebp),%eax
80102465: c1 e0 02 shl $0x2,%eax
80102468: 89 c3 mov %eax,%ebx
8010246a: 03 5d ec add -0x14(%ebp),%ebx
8010246d: 8b 45 08 mov 0x8(%ebp),%eax
80102470: 8b 00 mov (%eax),%eax
80102472: 89 04 24 mov %eax,(%esp)
80102475: e8 45 f7 ff ff call 80101bbf <balloc>
8010247a: 89 45 f4 mov %eax,-0xc(%ebp)
8010247d: 8b 45 f4 mov -0xc(%ebp),%eax
80102480: 89 03 mov %eax,(%ebx)
log_write(bp);
80102482: 8b 45 f0 mov -0x10(%ebp),%eax
80102485: 89 04 24 mov %eax,(%esp)
80102488: e8 99 1a 00 00 call 80103f26 <log_write>
}
brelse(bp);
8010248d: 8b 45 f0 mov -0x10(%ebp),%eax
80102490: 89 04 24 mov %eax,(%esp)
80102493: e8 7f dd ff ff call 80100217 <brelse>
return addr;
80102498: 8b 45 f4 mov -0xc(%ebp),%eax
8010249b: eb 0c jmp 801024a9 <bmap+0xfc>
}
panic("bmap: out of range");
8010249d: c7 04 24 18 94 10 80 movl $0x80109418,(%esp)
801024a4: e8 94 e0 ff ff call 8010053d <panic>
}
801024a9: 83 c4 24 add $0x24,%esp
801024ac: 5b pop %ebx
801024ad: 5d pop %ebp
801024ae: c3 ret
801024af <itrunc>:
// to it (no directory entries referring to it)
// and has no in-memory reference to it (is
// not an open file or current directory).
static void
itrunc(struct inode *ip)
{
801024af: 55 push %ebp
801024b0: 89 e5 mov %esp,%ebp
801024b2: 83 ec 28 sub $0x28,%esp
int i, j;
struct buf *bp;
uint *a;
for(i = 0; i < NDIRECT; i++){
801024b5: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
801024bc: eb 44 jmp 80102502 <itrunc+0x53>
if(ip->addrs[i]){
801024be: 8b 45 08 mov 0x8(%ebp),%eax
801024c1: 8b 55 f4 mov -0xc(%ebp),%edx
801024c4: 83 c2 04 add $0x4,%edx
801024c7: 8b 44 90 0c mov 0xc(%eax,%edx,4),%eax
801024cb: 85 c0 test %eax,%eax
801024cd: 74 2f je 801024fe <itrunc+0x4f>
bfree(ip->dev, ip->addrs[i]);
801024cf: 8b 45 08 mov 0x8(%ebp),%eax
801024d2: 8b 55 f4 mov -0xc(%ebp),%edx
801024d5: 83 c2 04 add $0x4,%edx
801024d8: 8b 54 90 0c mov 0xc(%eax,%edx,4),%edx
801024dc: 8b 45 08 mov 0x8(%ebp),%eax
801024df: 8b 00 mov (%eax),%eax
801024e1: 89 54 24 04 mov %edx,0x4(%esp)
801024e5: 89 04 24 mov %eax,(%esp)
801024e8: e8 19 f8 ff ff call 80101d06 <bfree>
ip->addrs[i] = 0;
801024ed: 8b 45 08 mov 0x8(%ebp),%eax
801024f0: 8b 55 f4 mov -0xc(%ebp),%edx
801024f3: 83 c2 04 add $0x4,%edx
801024f6: c7 44 90 0c 00 00 00 movl $0x0,0xc(%eax,%edx,4)
801024fd: 00
{
int i, j;
struct buf *bp;
uint *a;
for(i = 0; i < NDIRECT; i++){
801024fe: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80102502: 83 7d f4 0b cmpl $0xb,-0xc(%ebp)
80102506: 7e b6 jle 801024be <itrunc+0xf>
bfree(ip->dev, ip->addrs[i]);
ip->addrs[i] = 0;
}
}
if(ip->addrs[NDIRECT]){
80102508: 8b 45 08 mov 0x8(%ebp),%eax
8010250b: 8b 40 4c mov 0x4c(%eax),%eax
8010250e: 85 c0 test %eax,%eax
80102510: 0f 84 8f 00 00 00 je 801025a5 <itrunc+0xf6>
bp = bread(ip->dev, ip->addrs[NDIRECT]);
80102516: 8b 45 08 mov 0x8(%ebp),%eax
80102519: 8b 50 4c mov 0x4c(%eax),%edx
8010251c: 8b 45 08 mov 0x8(%ebp),%eax
8010251f: 8b 00 mov (%eax),%eax
80102521: 89 54 24 04 mov %edx,0x4(%esp)
80102525: 89 04 24 mov %eax,(%esp)
80102528: e8 79 dc ff ff call 801001a6 <bread>
8010252d: 89 45 ec mov %eax,-0x14(%ebp)
a = (uint*)bp->data;
80102530: 8b 45 ec mov -0x14(%ebp),%eax
80102533: 83 c0 18 add $0x18,%eax
80102536: 89 45 e8 mov %eax,-0x18(%ebp)
for(j = 0; j < NINDIRECT; j++){
80102539: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
80102540: eb 2f jmp 80102571 <itrunc+0xc2>
if(a[j])
80102542: 8b 45 f0 mov -0x10(%ebp),%eax
80102545: c1 e0 02 shl $0x2,%eax
80102548: 03 45 e8 add -0x18(%ebp),%eax
8010254b: 8b 00 mov (%eax),%eax
8010254d: 85 c0 test %eax,%eax
8010254f: 74 1c je 8010256d <itrunc+0xbe>
bfree(ip->dev, a[j]);
80102551: 8b 45 f0 mov -0x10(%ebp),%eax
80102554: c1 e0 02 shl $0x2,%eax
80102557: 03 45 e8 add -0x18(%ebp),%eax
8010255a: 8b 10 mov (%eax),%edx
8010255c: 8b 45 08 mov 0x8(%ebp),%eax
8010255f: 8b 00 mov (%eax),%eax
80102561: 89 54 24 04 mov %edx,0x4(%esp)
80102565: 89 04 24 mov %eax,(%esp)
80102568: e8 99 f7 ff ff call 80101d06 <bfree>
}
if(ip->addrs[NDIRECT]){
bp = bread(ip->dev, ip->addrs[NDIRECT]);
a = (uint*)bp->data;
for(j = 0; j < NINDIRECT; j++){
8010256d: 83 45 f0 01 addl $0x1,-0x10(%ebp)
80102571: 8b 45 f0 mov -0x10(%ebp),%eax
80102574: 83 f8 7f cmp $0x7f,%eax
80102577: 76 c9 jbe 80102542 <itrunc+0x93>
if(a[j])
bfree(ip->dev, a[j]);
}
brelse(bp);
80102579: 8b 45 ec mov -0x14(%ebp),%eax
8010257c: 89 04 24 mov %eax,(%esp)
8010257f: e8 93 dc ff ff call 80100217 <brelse>
bfree(ip->dev, ip->addrs[NDIRECT]);
80102584: 8b 45 08 mov 0x8(%ebp),%eax
80102587: 8b 50 4c mov 0x4c(%eax),%edx
8010258a: 8b 45 08 mov 0x8(%ebp),%eax
8010258d: 8b 00 mov (%eax),%eax
8010258f: 89 54 24 04 mov %edx,0x4(%esp)
80102593: 89 04 24 mov %eax,(%esp)
80102596: e8 6b f7 ff ff call 80101d06 <bfree>
ip->addrs[NDIRECT] = 0;
8010259b: 8b 45 08 mov 0x8(%ebp),%eax
8010259e: c7 40 4c 00 00 00 00 movl $0x0,0x4c(%eax)
}
ip->size = 0;
801025a5: 8b 45 08 mov 0x8(%ebp),%eax
801025a8: c7 40 18 00 00 00 00 movl $0x0,0x18(%eax)
iupdate(ip);
801025af: 8b 45 08 mov 0x8(%ebp),%eax
801025b2: 89 04 24 mov %eax,(%esp)
801025b5: e8 89 f9 ff ff call 80101f43 <iupdate>
}
801025ba: c9 leave
801025bb: c3 ret
801025bc <stati>:
// Copy stat information from inode.
void
stati(struct inode *ip, struct stat *st)
{
801025bc: 55 push %ebp
801025bd: 89 e5 mov %esp,%ebp
st->dev = ip->dev;
801025bf: 8b 45 08 mov 0x8(%ebp),%eax
801025c2: 8b 00 mov (%eax),%eax
801025c4: 89 c2 mov %eax,%edx
801025c6: 8b 45 0c mov 0xc(%ebp),%eax
801025c9: 89 50 04 mov %edx,0x4(%eax)
st->ino = ip->inum;
801025cc: 8b 45 08 mov 0x8(%ebp),%eax
801025cf: 8b 50 04 mov 0x4(%eax),%edx
801025d2: 8b 45 0c mov 0xc(%ebp),%eax
801025d5: 89 50 08 mov %edx,0x8(%eax)
st->type = ip->type;
801025d8: 8b 45 08 mov 0x8(%ebp),%eax
801025db: 0f b7 50 10 movzwl 0x10(%eax),%edx
801025df: 8b 45 0c mov 0xc(%ebp),%eax
801025e2: 66 89 10 mov %dx,(%eax)
st->nlink = ip->nlink;
801025e5: 8b 45 08 mov 0x8(%ebp),%eax
801025e8: 0f b7 50 16 movzwl 0x16(%eax),%edx
801025ec: 8b 45 0c mov 0xc(%ebp),%eax
801025ef: 66 89 50 0c mov %dx,0xc(%eax)
st->size = ip->size;
801025f3: 8b 45 08 mov 0x8(%ebp),%eax
801025f6: 8b 50 18 mov 0x18(%eax),%edx
801025f9: 8b 45 0c mov 0xc(%ebp),%eax
801025fc: 89 50 10 mov %edx,0x10(%eax)
}
801025ff: 5d pop %ebp
80102600: c3 ret
80102601 <readi>:
//PAGEBREAK!
// Read data from inode.
int
readi(struct inode *ip, char *dst, uint off, uint n)
{
80102601: 55 push %ebp
80102602: 89 e5 mov %esp,%ebp
80102604: 53 push %ebx
80102605: 83 ec 24 sub $0x24,%esp
uint tot, m;
struct buf *bp;
if(ip->type == T_DEV){
80102608: 8b 45 08 mov 0x8(%ebp),%eax
8010260b: 0f b7 40 10 movzwl 0x10(%eax),%eax
8010260f: 66 83 f8 03 cmp $0x3,%ax
80102613: 75 60 jne 80102675 <readi+0x74>
if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read)
80102615: 8b 45 08 mov 0x8(%ebp),%eax
80102618: 0f b7 40 12 movzwl 0x12(%eax),%eax
8010261c: 66 85 c0 test %ax,%ax
8010261f: 78 20 js 80102641 <readi+0x40>
80102621: 8b 45 08 mov 0x8(%ebp),%eax
80102624: 0f b7 40 12 movzwl 0x12(%eax),%eax
80102628: 66 83 f8 09 cmp $0x9,%ax
8010262c: 7f 13 jg 80102641 <readi+0x40>
8010262e: 8b 45 08 mov 0x8(%ebp),%eax
80102631: 0f b7 40 12 movzwl 0x12(%eax),%eax
80102635: 98 cwtl
80102636: 8b 04 c5 00 2a 11 80 mov -0x7feed600(,%eax,8),%eax
8010263d: 85 c0 test %eax,%eax
8010263f: 75 0a jne 8010264b <readi+0x4a>
return -1;
80102641: b8 ff ff ff ff mov $0xffffffff,%eax
80102646: e9 1b 01 00 00 jmp 80102766 <readi+0x165>
return devsw[ip->major].read(ip, dst, n);
8010264b: 8b 45 08 mov 0x8(%ebp),%eax
8010264e: 0f b7 40 12 movzwl 0x12(%eax),%eax
80102652: 98 cwtl
80102653: 8b 14 c5 00 2a 11 80 mov -0x7feed600(,%eax,8),%edx
8010265a: 8b 45 14 mov 0x14(%ebp),%eax
8010265d: 89 44 24 08 mov %eax,0x8(%esp)
80102661: 8b 45 0c mov 0xc(%ebp),%eax
80102664: 89 44 24 04 mov %eax,0x4(%esp)
80102668: 8b 45 08 mov 0x8(%ebp),%eax
8010266b: 89 04 24 mov %eax,(%esp)
8010266e: ff d2 call *%edx
80102670: e9 f1 00 00 00 jmp 80102766 <readi+0x165>
}
if(off > ip->size || off + n < off)
80102675: 8b 45 08 mov 0x8(%ebp),%eax
80102678: 8b 40 18 mov 0x18(%eax),%eax
8010267b: 3b 45 10 cmp 0x10(%ebp),%eax
8010267e: 72 0d jb 8010268d <readi+0x8c>
80102680: 8b 45 14 mov 0x14(%ebp),%eax
80102683: 8b 55 10 mov 0x10(%ebp),%edx
80102686: 01 d0 add %edx,%eax
80102688: 3b 45 10 cmp 0x10(%ebp),%eax
8010268b: 73 0a jae 80102697 <readi+0x96>
return -1;
8010268d: b8 ff ff ff ff mov $0xffffffff,%eax
80102692: e9 cf 00 00 00 jmp 80102766 <readi+0x165>
if(off + n > ip->size)
80102697: 8b 45 14 mov 0x14(%ebp),%eax
8010269a: 8b 55 10 mov 0x10(%ebp),%edx
8010269d: 01 c2 add %eax,%edx
8010269f: 8b 45 08 mov 0x8(%ebp),%eax
801026a2: 8b 40 18 mov 0x18(%eax),%eax
801026a5: 39 c2 cmp %eax,%edx
801026a7: 76 0c jbe 801026b5 <readi+0xb4>
n = ip->size - off;
801026a9: 8b 45 08 mov 0x8(%ebp),%eax
801026ac: 8b 40 18 mov 0x18(%eax),%eax
801026af: 2b 45 10 sub 0x10(%ebp),%eax
801026b2: 89 45 14 mov %eax,0x14(%ebp)
for(tot=0; tot<n; tot+=m, off+=m, dst+=m){
801026b5: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
801026bc: e9 96 00 00 00 jmp 80102757 <readi+0x156>
bp = bread(ip->dev, bmap(ip, off/BSIZE));
801026c1: 8b 45 10 mov 0x10(%ebp),%eax
801026c4: c1 e8 09 shr $0x9,%eax
801026c7: 89 44 24 04 mov %eax,0x4(%esp)
801026cb: 8b 45 08 mov 0x8(%ebp),%eax
801026ce: 89 04 24 mov %eax,(%esp)
801026d1: e8 d7 fc ff ff call 801023ad <bmap>
801026d6: 8b 55 08 mov 0x8(%ebp),%edx
801026d9: 8b 12 mov (%edx),%edx
801026db: 89 44 24 04 mov %eax,0x4(%esp)
801026df: 89 14 24 mov %edx,(%esp)
801026e2: e8 bf da ff ff call 801001a6 <bread>
801026e7: 89 45 f0 mov %eax,-0x10(%ebp)
m = min(n - tot, BSIZE - off%BSIZE);
801026ea: 8b 45 10 mov 0x10(%ebp),%eax
801026ed: 89 c2 mov %eax,%edx
801026ef: 81 e2 ff 01 00 00 and $0x1ff,%edx
801026f5: b8 00 02 00 00 mov $0x200,%eax
801026fa: 89 c1 mov %eax,%ecx
801026fc: 29 d1 sub %edx,%ecx
801026fe: 89 ca mov %ecx,%edx
80102700: 8b 45 f4 mov -0xc(%ebp),%eax
80102703: 8b 4d 14 mov 0x14(%ebp),%ecx
80102706: 89 cb mov %ecx,%ebx
80102708: 29 c3 sub %eax,%ebx
8010270a: 89 d8 mov %ebx,%eax
8010270c: 39 c2 cmp %eax,%edx
8010270e: 0f 46 c2 cmovbe %edx,%eax
80102711: 89 45 ec mov %eax,-0x14(%ebp)
memmove(dst, bp->data + off%BSIZE, m);
80102714: 8b 45 f0 mov -0x10(%ebp),%eax
80102717: 8d 50 18 lea 0x18(%eax),%edx
8010271a: 8b 45 10 mov 0x10(%ebp),%eax
8010271d: 25 ff 01 00 00 and $0x1ff,%eax
80102722: 01 c2 add %eax,%edx
80102724: 8b 45 ec mov -0x14(%ebp),%eax
80102727: 89 44 24 08 mov %eax,0x8(%esp)
8010272b: 89 54 24 04 mov %edx,0x4(%esp)
8010272f: 8b 45 0c mov 0xc(%ebp),%eax
80102732: 89 04 24 mov %eax,(%esp)
80102735: e8 93 37 00 00 call 80105ecd <memmove>
brelse(bp);
8010273a: 8b 45 f0 mov -0x10(%ebp),%eax
8010273d: 89 04 24 mov %eax,(%esp)
80102740: e8 d2 da ff ff call 80100217 <brelse>
if(off > ip->size || off + n < off)
return -1;
if(off + n > ip->size)
n = ip->size - off;
for(tot=0; tot<n; tot+=m, off+=m, dst+=m){
80102745: 8b 45 ec mov -0x14(%ebp),%eax
80102748: 01 45 f4 add %eax,-0xc(%ebp)
8010274b: 8b 45 ec mov -0x14(%ebp),%eax
8010274e: 01 45 10 add %eax,0x10(%ebp)
80102751: 8b 45 ec mov -0x14(%ebp),%eax
80102754: 01 45 0c add %eax,0xc(%ebp)
80102757: 8b 45 f4 mov -0xc(%ebp),%eax
8010275a: 3b 45 14 cmp 0x14(%ebp),%eax
8010275d: 0f 82 5e ff ff ff jb 801026c1 <readi+0xc0>
bp = bread(ip->dev, bmap(ip, off/BSIZE));
m = min(n - tot, BSIZE - off%BSIZE);
memmove(dst, bp->data + off%BSIZE, m);
brelse(bp);
}
return n;
80102763: 8b 45 14 mov 0x14(%ebp),%eax
}
80102766: 83 c4 24 add $0x24,%esp
80102769: 5b pop %ebx
8010276a: 5d pop %ebp
8010276b: c3 ret
8010276c <writei>:
// PAGEBREAK!
// Write data to inode.
int
writei(struct inode *ip, char *src, uint off, uint n)
{
8010276c: 55 push %ebp
8010276d: 89 e5 mov %esp,%ebp
8010276f: 53 push %ebx
80102770: 83 ec 24 sub $0x24,%esp
uint tot, m;
struct buf *bp;
if(ip->type == T_DEV){
80102773: 8b 45 08 mov 0x8(%ebp),%eax
80102776: 0f b7 40 10 movzwl 0x10(%eax),%eax
8010277a: 66 83 f8 03 cmp $0x3,%ax
8010277e: 75 60 jne 801027e0 <writei+0x74>
if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write)
80102780: 8b 45 08 mov 0x8(%ebp),%eax
80102783: 0f b7 40 12 movzwl 0x12(%eax),%eax
80102787: 66 85 c0 test %ax,%ax
8010278a: 78 20 js 801027ac <writei+0x40>
8010278c: 8b 45 08 mov 0x8(%ebp),%eax
8010278f: 0f b7 40 12 movzwl 0x12(%eax),%eax
80102793: 66 83 f8 09 cmp $0x9,%ax
80102797: 7f 13 jg 801027ac <writei+0x40>
80102799: 8b 45 08 mov 0x8(%ebp),%eax
8010279c: 0f b7 40 12 movzwl 0x12(%eax),%eax
801027a0: 98 cwtl
801027a1: 8b 04 c5 04 2a 11 80 mov -0x7feed5fc(,%eax,8),%eax
801027a8: 85 c0 test %eax,%eax
801027aa: 75 0a jne 801027b6 <writei+0x4a>
return -1;
801027ac: b8 ff ff ff ff mov $0xffffffff,%eax
801027b1: e9 46 01 00 00 jmp 801028fc <writei+0x190>
return devsw[ip->major].write(ip, src, n);
801027b6: 8b 45 08 mov 0x8(%ebp),%eax
801027b9: 0f b7 40 12 movzwl 0x12(%eax),%eax
801027bd: 98 cwtl
801027be: 8b 14 c5 04 2a 11 80 mov -0x7feed5fc(,%eax,8),%edx
801027c5: 8b 45 14 mov 0x14(%ebp),%eax
801027c8: 89 44 24 08 mov %eax,0x8(%esp)
801027cc: 8b 45 0c mov 0xc(%ebp),%eax
801027cf: 89 44 24 04 mov %eax,0x4(%esp)
801027d3: 8b 45 08 mov 0x8(%ebp),%eax
801027d6: 89 04 24 mov %eax,(%esp)
801027d9: ff d2 call *%edx
801027db: e9 1c 01 00 00 jmp 801028fc <writei+0x190>
}
if(off > ip->size || off + n < off)
801027e0: 8b 45 08 mov 0x8(%ebp),%eax
801027e3: 8b 40 18 mov 0x18(%eax),%eax
801027e6: 3b 45 10 cmp 0x10(%ebp),%eax
801027e9: 72 0d jb 801027f8 <writei+0x8c>
801027eb: 8b 45 14 mov 0x14(%ebp),%eax
801027ee: 8b 55 10 mov 0x10(%ebp),%edx
801027f1: 01 d0 add %edx,%eax
801027f3: 3b 45 10 cmp 0x10(%ebp),%eax
801027f6: 73 0a jae 80102802 <writei+0x96>
return -1;
801027f8: b8 ff ff ff ff mov $0xffffffff,%eax
801027fd: e9 fa 00 00 00 jmp 801028fc <writei+0x190>
if(off + n > MAXFILE*BSIZE)
80102802: 8b 45 14 mov 0x14(%ebp),%eax
80102805: 8b 55 10 mov 0x10(%ebp),%edx
80102808: 01 d0 add %edx,%eax
8010280a: 3d 00 18 01 00 cmp $0x11800,%eax
8010280f: 76 0a jbe 8010281b <writei+0xaf>
return -1;
80102811: b8 ff ff ff ff mov $0xffffffff,%eax
80102816: e9 e1 00 00 00 jmp 801028fc <writei+0x190>
for(tot=0; tot<n; tot+=m, off+=m, src+=m){
8010281b: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80102822: e9 a1 00 00 00 jmp 801028c8 <writei+0x15c>
bp = bread(ip->dev, bmap(ip, off/BSIZE));
80102827: 8b 45 10 mov 0x10(%ebp),%eax
8010282a: c1 e8 09 shr $0x9,%eax
8010282d: 89 44 24 04 mov %eax,0x4(%esp)
80102831: 8b 45 08 mov 0x8(%ebp),%eax
80102834: 89 04 24 mov %eax,(%esp)
80102837: e8 71 fb ff ff call 801023ad <bmap>
8010283c: 8b 55 08 mov 0x8(%ebp),%edx
8010283f: 8b 12 mov (%edx),%edx
80102841: 89 44 24 04 mov %eax,0x4(%esp)
80102845: 89 14 24 mov %edx,(%esp)
80102848: e8 59 d9 ff ff call 801001a6 <bread>
8010284d: 89 45 f0 mov %eax,-0x10(%ebp)
m = min(n - tot, BSIZE - off%BSIZE);
80102850: 8b 45 10 mov 0x10(%ebp),%eax
80102853: 89 c2 mov %eax,%edx
80102855: 81 e2 ff 01 00 00 and $0x1ff,%edx
8010285b: b8 00 02 00 00 mov $0x200,%eax
80102860: 89 c1 mov %eax,%ecx
80102862: 29 d1 sub %edx,%ecx
80102864: 89 ca mov %ecx,%edx
80102866: 8b 45 f4 mov -0xc(%ebp),%eax
80102869: 8b 4d 14 mov 0x14(%ebp),%ecx
8010286c: 89 cb mov %ecx,%ebx
8010286e: 29 c3 sub %eax,%ebx
80102870: 89 d8 mov %ebx,%eax
80102872: 39 c2 cmp %eax,%edx
80102874: 0f 46 c2 cmovbe %edx,%eax
80102877: 89 45 ec mov %eax,-0x14(%ebp)
memmove(bp->data + off%BSIZE, src, m);
8010287a: 8b 45 f0 mov -0x10(%ebp),%eax
8010287d: 8d 50 18 lea 0x18(%eax),%edx
80102880: 8b 45 10 mov 0x10(%ebp),%eax
80102883: 25 ff 01 00 00 and $0x1ff,%eax
80102888: 01 c2 add %eax,%edx
8010288a: 8b 45 ec mov -0x14(%ebp),%eax
8010288d: 89 44 24 08 mov %eax,0x8(%esp)
80102891: 8b 45 0c mov 0xc(%ebp),%eax
80102894: 89 44 24 04 mov %eax,0x4(%esp)
80102898: 89 14 24 mov %edx,(%esp)
8010289b: e8 2d 36 00 00 call 80105ecd <memmove>
log_write(bp);
801028a0: 8b 45 f0 mov -0x10(%ebp),%eax
801028a3: 89 04 24 mov %eax,(%esp)
801028a6: e8 7b 16 00 00 call 80103f26 <log_write>
brelse(bp);
801028ab: 8b 45 f0 mov -0x10(%ebp),%eax
801028ae: 89 04 24 mov %eax,(%esp)
801028b1: e8 61 d9 ff ff call 80100217 <brelse>
if(off > ip->size || off + n < off)
return -1;
if(off + n > MAXFILE*BSIZE)
return -1;
for(tot=0; tot<n; tot+=m, off+=m, src+=m){
801028b6: 8b 45 ec mov -0x14(%ebp),%eax
801028b9: 01 45 f4 add %eax,-0xc(%ebp)
801028bc: 8b 45 ec mov -0x14(%ebp),%eax
801028bf: 01 45 10 add %eax,0x10(%ebp)
801028c2: 8b 45 ec mov -0x14(%ebp),%eax
801028c5: 01 45 0c add %eax,0xc(%ebp)
801028c8: 8b 45 f4 mov -0xc(%ebp),%eax
801028cb: 3b 45 14 cmp 0x14(%ebp),%eax
801028ce: 0f 82 53 ff ff ff jb 80102827 <writei+0xbb>
memmove(bp->data + off%BSIZE, src, m);
log_write(bp);
brelse(bp);
}
if(n > 0 && off > ip->size){
801028d4: 83 7d 14 00 cmpl $0x0,0x14(%ebp)
801028d8: 74 1f je 801028f9 <writei+0x18d>
801028da: 8b 45 08 mov 0x8(%ebp),%eax
801028dd: 8b 40 18 mov 0x18(%eax),%eax
801028e0: 3b 45 10 cmp 0x10(%ebp),%eax
801028e3: 73 14 jae 801028f9 <writei+0x18d>
ip->size = off;
801028e5: 8b 45 08 mov 0x8(%ebp),%eax
801028e8: 8b 55 10 mov 0x10(%ebp),%edx
801028eb: 89 50 18 mov %edx,0x18(%eax)
iupdate(ip);
801028ee: 8b 45 08 mov 0x8(%ebp),%eax
801028f1: 89 04 24 mov %eax,(%esp)
801028f4: e8 4a f6 ff ff call 80101f43 <iupdate>
}
return n;
801028f9: 8b 45 14 mov 0x14(%ebp),%eax
}
801028fc: 83 c4 24 add $0x24,%esp
801028ff: 5b pop %ebx
80102900: 5d pop %ebp
80102901: c3 ret
80102902 <namecmp>:
//PAGEBREAK!
// Directories
int
namecmp(const char *s, const char *t)
{
80102902: 55 push %ebp
80102903: 89 e5 mov %esp,%ebp
80102905: 83 ec 18 sub $0x18,%esp
return strncmp(s, t, DIRSIZ);
80102908: c7 44 24 08 0e 00 00 movl $0xe,0x8(%esp)
8010290f: 00
80102910: 8b 45 0c mov 0xc(%ebp),%eax
80102913: 89 44 24 04 mov %eax,0x4(%esp)
80102917: 8b 45 08 mov 0x8(%ebp),%eax
8010291a: 89 04 24 mov %eax,(%esp)
8010291d: e8 4f 36 00 00 call 80105f71 <strncmp>
}
80102922: c9 leave
80102923: c3 ret
80102924 <dirlookup>:
// Look for a directory entry in a directory.
// If found, set *poff to byte offset of entry.
struct inode*
dirlookup(struct inode *dp, char *name, uint *poff)
{
80102924: 55 push %ebp
80102925: 89 e5 mov %esp,%ebp
80102927: 83 ec 38 sub $0x38,%esp
uint off, inum;
struct dirent de;
if(dp->type != T_DIR)
8010292a: 8b 45 08 mov 0x8(%ebp),%eax
8010292d: 0f b7 40 10 movzwl 0x10(%eax),%eax
80102931: 66 83 f8 01 cmp $0x1,%ax
80102935: 74 0c je 80102943 <dirlookup+0x1f>
panic("dirlookup not DIR");
80102937: c7 04 24 2b 94 10 80 movl $0x8010942b,(%esp)
8010293e: e8 fa db ff ff call 8010053d <panic>
for(off = 0; off < dp->size; off += sizeof(de)){
80102943: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
8010294a: e9 87 00 00 00 jmp 801029d6 <dirlookup+0xb2>
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
8010294f: c7 44 24 0c 10 00 00 movl $0x10,0xc(%esp)
80102956: 00
80102957: 8b 45 f4 mov -0xc(%ebp),%eax
8010295a: 89 44 24 08 mov %eax,0x8(%esp)
8010295e: 8d 45 e0 lea -0x20(%ebp),%eax
80102961: 89 44 24 04 mov %eax,0x4(%esp)
80102965: 8b 45 08 mov 0x8(%ebp),%eax
80102968: 89 04 24 mov %eax,(%esp)
8010296b: e8 91 fc ff ff call 80102601 <readi>
80102970: 83 f8 10 cmp $0x10,%eax
80102973: 74 0c je 80102981 <dirlookup+0x5d>
panic("dirlink read");
80102975: c7 04 24 3d 94 10 80 movl $0x8010943d,(%esp)
8010297c: e8 bc db ff ff call 8010053d <panic>
if(de.inum == 0)
80102981: 0f b7 45 e0 movzwl -0x20(%ebp),%eax
80102985: 66 85 c0 test %ax,%ax
80102988: 74 47 je 801029d1 <dirlookup+0xad>
continue;
if(namecmp(name, de.name) == 0){
8010298a: 8d 45 e0 lea -0x20(%ebp),%eax
8010298d: 83 c0 02 add $0x2,%eax
80102990: 89 44 24 04 mov %eax,0x4(%esp)
80102994: 8b 45 0c mov 0xc(%ebp),%eax
80102997: 89 04 24 mov %eax,(%esp)
8010299a: e8 63 ff ff ff call 80102902 <namecmp>
8010299f: 85 c0 test %eax,%eax
801029a1: 75 2f jne 801029d2 <dirlookup+0xae>
// entry matches path element
if(poff)
801029a3: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
801029a7: 74 08 je 801029b1 <dirlookup+0x8d>
*poff = off;
801029a9: 8b 45 10 mov 0x10(%ebp),%eax
801029ac: 8b 55 f4 mov -0xc(%ebp),%edx
801029af: 89 10 mov %edx,(%eax)
inum = de.inum;
801029b1: 0f b7 45 e0 movzwl -0x20(%ebp),%eax
801029b5: 0f b7 c0 movzwl %ax,%eax
801029b8: 89 45 f0 mov %eax,-0x10(%ebp)
return iget(dp->dev, inum);
801029bb: 8b 45 08 mov 0x8(%ebp),%eax
801029be: 8b 00 mov (%eax),%eax
801029c0: 8b 55 f0 mov -0x10(%ebp),%edx
801029c3: 89 54 24 04 mov %edx,0x4(%esp)
801029c7: 89 04 24 mov %eax,(%esp)
801029ca: e8 32 f6 ff ff call 80102001 <iget>
801029cf: eb 19 jmp 801029ea <dirlookup+0xc6>
for(off = 0; off < dp->size; off += sizeof(de)){
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
panic("dirlink read");
if(de.inum == 0)
continue;
801029d1: 90 nop
struct dirent de;
if(dp->type != T_DIR)
panic("dirlookup not DIR");
for(off = 0; off < dp->size; off += sizeof(de)){
801029d2: 83 45 f4 10 addl $0x10,-0xc(%ebp)
801029d6: 8b 45 08 mov 0x8(%ebp),%eax
801029d9: 8b 40 18 mov 0x18(%eax),%eax
801029dc: 3b 45 f4 cmp -0xc(%ebp),%eax
801029df: 0f 87 6a ff ff ff ja 8010294f <dirlookup+0x2b>
inum = de.inum;
return iget(dp->dev, inum);
}
}
return 0;
801029e5: b8 00 00 00 00 mov $0x0,%eax
}
801029ea: c9 leave
801029eb: c3 ret
801029ec <dirlink>:
// Write a new directory entry (name, inum) into the directory dp.
int
dirlink(struct inode *dp, char *name, uint inum)
{
801029ec: 55 push %ebp
801029ed: 89 e5 mov %esp,%ebp
801029ef: 83 ec 38 sub $0x38,%esp
int off;
struct dirent de;
struct inode *ip;
// Check that name is not present.
if((ip = dirlookup(dp, name, 0)) != 0){
801029f2: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
801029f9: 00
801029fa: 8b 45 0c mov 0xc(%ebp),%eax
801029fd: 89 44 24 04 mov %eax,0x4(%esp)
80102a01: 8b 45 08 mov 0x8(%ebp),%eax
80102a04: 89 04 24 mov %eax,(%esp)
80102a07: e8 18 ff ff ff call 80102924 <dirlookup>
80102a0c: 89 45 f0 mov %eax,-0x10(%ebp)
80102a0f: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80102a13: 74 15 je 80102a2a <dirlink+0x3e>
iput(ip);
80102a15: 8b 45 f0 mov -0x10(%ebp),%eax
80102a18: 89 04 24 mov %eax,(%esp)
80102a1b: e8 9e f8 ff ff call 801022be <iput>
return -1;
80102a20: b8 ff ff ff ff mov $0xffffffff,%eax
80102a25: e9 b8 00 00 00 jmp 80102ae2 <dirlink+0xf6>
}
// Look for an empty dirent.
for(off = 0; off < dp->size; off += sizeof(de)){
80102a2a: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80102a31: eb 44 jmp 80102a77 <dirlink+0x8b>
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
80102a33: 8b 45 f4 mov -0xc(%ebp),%eax
80102a36: c7 44 24 0c 10 00 00 movl $0x10,0xc(%esp)
80102a3d: 00
80102a3e: 89 44 24 08 mov %eax,0x8(%esp)
80102a42: 8d 45 e0 lea -0x20(%ebp),%eax
80102a45: 89 44 24 04 mov %eax,0x4(%esp)
80102a49: 8b 45 08 mov 0x8(%ebp),%eax
80102a4c: 89 04 24 mov %eax,(%esp)
80102a4f: e8 ad fb ff ff call 80102601 <readi>
80102a54: 83 f8 10 cmp $0x10,%eax
80102a57: 74 0c je 80102a65 <dirlink+0x79>
panic("dirlink read");
80102a59: c7 04 24 3d 94 10 80 movl $0x8010943d,(%esp)
80102a60: e8 d8 da ff ff call 8010053d <panic>
if(de.inum == 0)
80102a65: 0f b7 45 e0 movzwl -0x20(%ebp),%eax
80102a69: 66 85 c0 test %ax,%ax
80102a6c: 74 18 je 80102a86 <dirlink+0x9a>
iput(ip);
return -1;
}
// Look for an empty dirent.
for(off = 0; off < dp->size; off += sizeof(de)){
80102a6e: 8b 45 f4 mov -0xc(%ebp),%eax
80102a71: 83 c0 10 add $0x10,%eax
80102a74: 89 45 f4 mov %eax,-0xc(%ebp)
80102a77: 8b 55 f4 mov -0xc(%ebp),%edx
80102a7a: 8b 45 08 mov 0x8(%ebp),%eax
80102a7d: 8b 40 18 mov 0x18(%eax),%eax
80102a80: 39 c2 cmp %eax,%edx
80102a82: 72 af jb 80102a33 <dirlink+0x47>
80102a84: eb 01 jmp 80102a87 <dirlink+0x9b>
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
panic("dirlink read");
if(de.inum == 0)
break;
80102a86: 90 nop
}
strncpy(de.name, name, DIRSIZ);
80102a87: c7 44 24 08 0e 00 00 movl $0xe,0x8(%esp)
80102a8e: 00
80102a8f: 8b 45 0c mov 0xc(%ebp),%eax
80102a92: 89 44 24 04 mov %eax,0x4(%esp)
80102a96: 8d 45 e0 lea -0x20(%ebp),%eax
80102a99: 83 c0 02 add $0x2,%eax
80102a9c: 89 04 24 mov %eax,(%esp)
80102a9f: e8 25 35 00 00 call 80105fc9 <strncpy>
de.inum = inum;
80102aa4: 8b 45 10 mov 0x10(%ebp),%eax
80102aa7: 66 89 45 e0 mov %ax,-0x20(%ebp)
if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
80102aab: 8b 45 f4 mov -0xc(%ebp),%eax
80102aae: c7 44 24 0c 10 00 00 movl $0x10,0xc(%esp)
80102ab5: 00
80102ab6: 89 44 24 08 mov %eax,0x8(%esp)
80102aba: 8d 45 e0 lea -0x20(%ebp),%eax
80102abd: 89 44 24 04 mov %eax,0x4(%esp)
80102ac1: 8b 45 08 mov 0x8(%ebp),%eax
80102ac4: 89 04 24 mov %eax,(%esp)
80102ac7: e8 a0 fc ff ff call 8010276c <writei>
80102acc: 83 f8 10 cmp $0x10,%eax
80102acf: 74 0c je 80102add <dirlink+0xf1>
panic("dirlink");
80102ad1: c7 04 24 4a 94 10 80 movl $0x8010944a,(%esp)
80102ad8: e8 60 da ff ff call 8010053d <panic>
return 0;
80102add: b8 00 00 00 00 mov $0x0,%eax
}
80102ae2: c9 leave
80102ae3: c3 ret
80102ae4 <skipelem>:
// skipelem("a", name) = "", setting name = "a"
// skipelem("", name) = skipelem("////", name) = 0
//
static char*
skipelem(char *path, char *name)
{
80102ae4: 55 push %ebp
80102ae5: 89 e5 mov %esp,%ebp
80102ae7: 83 ec 28 sub $0x28,%esp
char *s;
int len;
while(*path == '/')
80102aea: eb 04 jmp 80102af0 <skipelem+0xc>
path++;
80102aec: 83 45 08 01 addl $0x1,0x8(%ebp)
skipelem(char *path, char *name)
{
char *s;
int len;
while(*path == '/')
80102af0: 8b 45 08 mov 0x8(%ebp),%eax
80102af3: 0f b6 00 movzbl (%eax),%eax
80102af6: 3c 2f cmp $0x2f,%al
80102af8: 74 f2 je 80102aec <skipelem+0x8>
path++;
if(*path == 0)
80102afa: 8b 45 08 mov 0x8(%ebp),%eax
80102afd: 0f b6 00 movzbl (%eax),%eax
80102b00: 84 c0 test %al,%al
80102b02: 75 0a jne 80102b0e <skipelem+0x2a>
return 0;
80102b04: b8 00 00 00 00 mov $0x0,%eax
80102b09: e9 86 00 00 00 jmp 80102b94 <skipelem+0xb0>
s = path;
80102b0e: 8b 45 08 mov 0x8(%ebp),%eax
80102b11: 89 45 f4 mov %eax,-0xc(%ebp)
while(*path != '/' && *path != 0)
80102b14: eb 04 jmp 80102b1a <skipelem+0x36>
path++;
80102b16: 83 45 08 01 addl $0x1,0x8(%ebp)
while(*path == '/')
path++;
if(*path == 0)
return 0;
s = path;
while(*path != '/' && *path != 0)
80102b1a: 8b 45 08 mov 0x8(%ebp),%eax
80102b1d: 0f b6 00 movzbl (%eax),%eax
80102b20: 3c 2f cmp $0x2f,%al
80102b22: 74 0a je 80102b2e <skipelem+0x4a>
80102b24: 8b 45 08 mov 0x8(%ebp),%eax
80102b27: 0f b6 00 movzbl (%eax),%eax
80102b2a: 84 c0 test %al,%al
80102b2c: 75 e8 jne 80102b16 <skipelem+0x32>
path++;
len = path - s;
80102b2e: 8b 55 08 mov 0x8(%ebp),%edx
80102b31: 8b 45 f4 mov -0xc(%ebp),%eax
80102b34: 89 d1 mov %edx,%ecx
80102b36: 29 c1 sub %eax,%ecx
80102b38: 89 c8 mov %ecx,%eax
80102b3a: 89 45 f0 mov %eax,-0x10(%ebp)
if(len >= DIRSIZ)
80102b3d: 83 7d f0 0d cmpl $0xd,-0x10(%ebp)
80102b41: 7e 1c jle 80102b5f <skipelem+0x7b>
memmove(name, s, DIRSIZ);
80102b43: c7 44 24 08 0e 00 00 movl $0xe,0x8(%esp)
80102b4a: 00
80102b4b: 8b 45 f4 mov -0xc(%ebp),%eax
80102b4e: 89 44 24 04 mov %eax,0x4(%esp)
80102b52: 8b 45 0c mov 0xc(%ebp),%eax
80102b55: 89 04 24 mov %eax,(%esp)
80102b58: e8 70 33 00 00 call 80105ecd <memmove>
else {
memmove(name, s, len);
name[len] = 0;
}
while(*path == '/')
80102b5d: eb 28 jmp 80102b87 <skipelem+0xa3>
path++;
len = path - s;
if(len >= DIRSIZ)
memmove(name, s, DIRSIZ);
else {
memmove(name, s, len);
80102b5f: 8b 45 f0 mov -0x10(%ebp),%eax
80102b62: 89 44 24 08 mov %eax,0x8(%esp)
80102b66: 8b 45 f4 mov -0xc(%ebp),%eax
80102b69: 89 44 24 04 mov %eax,0x4(%esp)
80102b6d: 8b 45 0c mov 0xc(%ebp),%eax
80102b70: 89 04 24 mov %eax,(%esp)
80102b73: e8 55 33 00 00 call 80105ecd <memmove>
name[len] = 0;
80102b78: 8b 45 f0 mov -0x10(%ebp),%eax
80102b7b: 03 45 0c add 0xc(%ebp),%eax
80102b7e: c6 00 00 movb $0x0,(%eax)
}
while(*path == '/')
80102b81: eb 04 jmp 80102b87 <skipelem+0xa3>
path++;
80102b83: 83 45 08 01 addl $0x1,0x8(%ebp)
memmove(name, s, DIRSIZ);
else {
memmove(name, s, len);
name[len] = 0;
}
while(*path == '/')
80102b87: 8b 45 08 mov 0x8(%ebp),%eax
80102b8a: 0f b6 00 movzbl (%eax),%eax
80102b8d: 3c 2f cmp $0x2f,%al
80102b8f: 74 f2 je 80102b83 <skipelem+0x9f>
path++;
return path;
80102b91: 8b 45 08 mov 0x8(%ebp),%eax
}
80102b94: c9 leave
80102b95: c3 ret
80102b96 <namex>:
// If parent != 0, return the inode for the parent and copy the final
// path element into name, which must have room for DIRSIZ bytes.
// Must be called inside a transaction since it calls iput().
static struct inode*
namex(char *path, int nameiparent, char *name)
{
80102b96: 55 push %ebp
80102b97: 89 e5 mov %esp,%ebp
80102b99: 83 ec 28 sub $0x28,%esp
struct inode *ip, *next;
if(*path == '/')
80102b9c: 8b 45 08 mov 0x8(%ebp),%eax
80102b9f: 0f b6 00 movzbl (%eax),%eax
80102ba2: 3c 2f cmp $0x2f,%al
80102ba4: 75 1c jne 80102bc2 <namex+0x2c>
ip = iget(ROOTDEV, ROOTINO);
80102ba6: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80102bad: 00
80102bae: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80102bb5: e8 47 f4 ff ff call 80102001 <iget>
80102bba: 89 45 f4 mov %eax,-0xc(%ebp)
else
ip = idup(proc->cwd);
while((path = skipelem(path, name)) != 0){
80102bbd: e9 af 00 00 00 jmp 80102c71 <namex+0xdb>
struct inode *ip, *next;
if(*path == '/')
ip = iget(ROOTDEV, ROOTINO);
else
ip = idup(proc->cwd);
80102bc2: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80102bc8: 8b 40 68 mov 0x68(%eax),%eax
80102bcb: 89 04 24 mov %eax,(%esp)
80102bce: e8 00 f5 ff ff call 801020d3 <idup>
80102bd3: 89 45 f4 mov %eax,-0xc(%ebp)
while((path = skipelem(path, name)) != 0){
80102bd6: e9 96 00 00 00 jmp 80102c71 <namex+0xdb>
ilock(ip);
80102bdb: 8b 45 f4 mov -0xc(%ebp),%eax
80102bde: 89 04 24 mov %eax,(%esp)
80102be1: e8 1f f5 ff ff call 80102105 <ilock>
if(ip->type != T_DIR){
80102be6: 8b 45 f4 mov -0xc(%ebp),%eax
80102be9: 0f b7 40 10 movzwl 0x10(%eax),%eax
80102bed: 66 83 f8 01 cmp $0x1,%ax
80102bf1: 74 15 je 80102c08 <namex+0x72>
iunlockput(ip);
80102bf3: 8b 45 f4 mov -0xc(%ebp),%eax
80102bf6: 89 04 24 mov %eax,(%esp)
80102bf9: e8 91 f7 ff ff call 8010238f <iunlockput>
return 0;
80102bfe: b8 00 00 00 00 mov $0x0,%eax
80102c03: e9 a3 00 00 00 jmp 80102cab <namex+0x115>
}
if(nameiparent && *path == '\0'){
80102c08: 83 7d 0c 00 cmpl $0x0,0xc(%ebp)
80102c0c: 74 1d je 80102c2b <namex+0x95>
80102c0e: 8b 45 08 mov 0x8(%ebp),%eax
80102c11: 0f b6 00 movzbl (%eax),%eax
80102c14: 84 c0 test %al,%al
80102c16: 75 13 jne 80102c2b <namex+0x95>
// Stop one level early.
iunlock(ip);
80102c18: 8b 45 f4 mov -0xc(%ebp),%eax
80102c1b: 89 04 24 mov %eax,(%esp)
80102c1e: e8 36 f6 ff ff call 80102259 <iunlock>
return ip;
80102c23: 8b 45 f4 mov -0xc(%ebp),%eax
80102c26: e9 80 00 00 00 jmp 80102cab <namex+0x115>
}
if((next = dirlookup(ip, name, 0)) == 0){
80102c2b: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80102c32: 00
80102c33: 8b 45 10 mov 0x10(%ebp),%eax
80102c36: 89 44 24 04 mov %eax,0x4(%esp)
80102c3a: 8b 45 f4 mov -0xc(%ebp),%eax
80102c3d: 89 04 24 mov %eax,(%esp)
80102c40: e8 df fc ff ff call 80102924 <dirlookup>
80102c45: 89 45 f0 mov %eax,-0x10(%ebp)
80102c48: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80102c4c: 75 12 jne 80102c60 <namex+0xca>
iunlockput(ip);
80102c4e: 8b 45 f4 mov -0xc(%ebp),%eax
80102c51: 89 04 24 mov %eax,(%esp)
80102c54: e8 36 f7 ff ff call 8010238f <iunlockput>
return 0;
80102c59: b8 00 00 00 00 mov $0x0,%eax
80102c5e: eb 4b jmp 80102cab <namex+0x115>
}
iunlockput(ip);
80102c60: 8b 45 f4 mov -0xc(%ebp),%eax
80102c63: 89 04 24 mov %eax,(%esp)
80102c66: e8 24 f7 ff ff call 8010238f <iunlockput>
ip = next;
80102c6b: 8b 45 f0 mov -0x10(%ebp),%eax
80102c6e: 89 45 f4 mov %eax,-0xc(%ebp)
if(*path == '/')
ip = iget(ROOTDEV, ROOTINO);
else
ip = idup(proc->cwd);
while((path = skipelem(path, name)) != 0){
80102c71: 8b 45 10 mov 0x10(%ebp),%eax
80102c74: 89 44 24 04 mov %eax,0x4(%esp)
80102c78: 8b 45 08 mov 0x8(%ebp),%eax
80102c7b: 89 04 24 mov %eax,(%esp)
80102c7e: e8 61 fe ff ff call 80102ae4 <skipelem>
80102c83: 89 45 08 mov %eax,0x8(%ebp)
80102c86: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80102c8a: 0f 85 4b ff ff ff jne 80102bdb <namex+0x45>
return 0;
}
iunlockput(ip);
ip = next;
}
if(nameiparent){
80102c90: 83 7d 0c 00 cmpl $0x0,0xc(%ebp)
80102c94: 74 12 je 80102ca8 <namex+0x112>
iput(ip);
80102c96: 8b 45 f4 mov -0xc(%ebp),%eax
80102c99: 89 04 24 mov %eax,(%esp)
80102c9c: e8 1d f6 ff ff call 801022be <iput>
return 0;
80102ca1: b8 00 00 00 00 mov $0x0,%eax
80102ca6: eb 03 jmp 80102cab <namex+0x115>
}
return ip;
80102ca8: 8b 45 f4 mov -0xc(%ebp),%eax
}
80102cab: c9 leave
80102cac: c3 ret
80102cad <namei>:
struct inode*
namei(char *path)
{
80102cad: 55 push %ebp
80102cae: 89 e5 mov %esp,%ebp
80102cb0: 83 ec 28 sub $0x28,%esp
char name[DIRSIZ];
return namex(path, 0, name);
80102cb3: 8d 45 ea lea -0x16(%ebp),%eax
80102cb6: 89 44 24 08 mov %eax,0x8(%esp)
80102cba: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80102cc1: 00
80102cc2: 8b 45 08 mov 0x8(%ebp),%eax
80102cc5: 89 04 24 mov %eax,(%esp)
80102cc8: e8 c9 fe ff ff call 80102b96 <namex>
}
80102ccd: c9 leave
80102cce: c3 ret
80102ccf <nameiparent>:
struct inode*
nameiparent(char *path, char *name)
{
80102ccf: 55 push %ebp
80102cd0: 89 e5 mov %esp,%ebp
80102cd2: 83 ec 18 sub $0x18,%esp
return namex(path, 1, name);
80102cd5: 8b 45 0c mov 0xc(%ebp),%eax
80102cd8: 89 44 24 08 mov %eax,0x8(%esp)
80102cdc: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80102ce3: 00
80102ce4: 8b 45 08 mov 0x8(%ebp),%eax
80102ce7: 89 04 24 mov %eax,(%esp)
80102cea: e8 a7 fe ff ff call 80102b96 <namex>
}
80102cef: c9 leave
80102cf0: c3 ret
80102cf1: 00 00 add %al,(%eax)
...
80102cf4 <inb>:
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
80102cf4: 55 push %ebp
80102cf5: 89 e5 mov %esp,%ebp
80102cf7: 53 push %ebx
80102cf8: 83 ec 14 sub $0x14,%esp
80102cfb: 8b 45 08 mov 0x8(%ebp),%eax
80102cfe: 66 89 45 e8 mov %ax,-0x18(%ebp)
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
80102d02: 0f b7 55 e8 movzwl -0x18(%ebp),%edx
80102d06: 66 89 55 ea mov %dx,-0x16(%ebp)
80102d0a: 0f b7 55 ea movzwl -0x16(%ebp),%edx
80102d0e: ec in (%dx),%al
80102d0f: 89 c3 mov %eax,%ebx
80102d11: 88 5d fb mov %bl,-0x5(%ebp)
return data;
80102d14: 0f b6 45 fb movzbl -0x5(%ebp),%eax
}
80102d18: 83 c4 14 add $0x14,%esp
80102d1b: 5b pop %ebx
80102d1c: 5d pop %ebp
80102d1d: c3 ret
80102d1e <insl>:
static inline void
insl(int port, void *addr, int cnt)
{
80102d1e: 55 push %ebp
80102d1f: 89 e5 mov %esp,%ebp
80102d21: 57 push %edi
80102d22: 53 push %ebx
asm volatile("cld; rep insl" :
80102d23: 8b 55 08 mov 0x8(%ebp),%edx
80102d26: 8b 4d 0c mov 0xc(%ebp),%ecx
80102d29: 8b 45 10 mov 0x10(%ebp),%eax
80102d2c: 89 cb mov %ecx,%ebx
80102d2e: 89 df mov %ebx,%edi
80102d30: 89 c1 mov %eax,%ecx
80102d32: fc cld
80102d33: f3 6d rep insl (%dx),%es:(%edi)
80102d35: 89 c8 mov %ecx,%eax
80102d37: 89 fb mov %edi,%ebx
80102d39: 89 5d 0c mov %ebx,0xc(%ebp)
80102d3c: 89 45 10 mov %eax,0x10(%ebp)
"=D" (addr), "=c" (cnt) :
"d" (port), "0" (addr), "1" (cnt) :
"memory", "cc");
}
80102d3f: 5b pop %ebx
80102d40: 5f pop %edi
80102d41: 5d pop %ebp
80102d42: c3 ret
80102d43 <outb>:
static inline void
outb(ushort port, uchar data)
{
80102d43: 55 push %ebp
80102d44: 89 e5 mov %esp,%ebp
80102d46: 83 ec 08 sub $0x8,%esp
80102d49: 8b 55 08 mov 0x8(%ebp),%edx
80102d4c: 8b 45 0c mov 0xc(%ebp),%eax
80102d4f: 66 89 55 fc mov %dx,-0x4(%ebp)
80102d53: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
80102d56: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
80102d5a: 0f b7 55 fc movzwl -0x4(%ebp),%edx
80102d5e: ee out %al,(%dx)
}
80102d5f: c9 leave
80102d60: c3 ret
80102d61 <outsl>:
asm volatile("out %0,%1" : : "a" (data), "d" (port));
}
static inline void
outsl(int port, const void *addr, int cnt)
{
80102d61: 55 push %ebp
80102d62: 89 e5 mov %esp,%ebp
80102d64: 56 push %esi
80102d65: 53 push %ebx
asm volatile("cld; rep outsl" :
80102d66: 8b 55 08 mov 0x8(%ebp),%edx
80102d69: 8b 4d 0c mov 0xc(%ebp),%ecx
80102d6c: 8b 45 10 mov 0x10(%ebp),%eax
80102d6f: 89 cb mov %ecx,%ebx
80102d71: 89 de mov %ebx,%esi
80102d73: 89 c1 mov %eax,%ecx
80102d75: fc cld
80102d76: f3 6f rep outsl %ds:(%esi),(%dx)
80102d78: 89 c8 mov %ecx,%eax
80102d7a: 89 f3 mov %esi,%ebx
80102d7c: 89 5d 0c mov %ebx,0xc(%ebp)
80102d7f: 89 45 10 mov %eax,0x10(%ebp)
"=S" (addr), "=c" (cnt) :
"d" (port), "0" (addr), "1" (cnt) :
"cc");
}
80102d82: 5b pop %ebx
80102d83: 5e pop %esi
80102d84: 5d pop %ebp
80102d85: c3 ret
80102d86 <idewait>:
static void idestart(struct buf*);
// Wait for IDE disk to become ready.
static int
idewait(int checkerr)
{
80102d86: 55 push %ebp
80102d87: 89 e5 mov %esp,%ebp
80102d89: 83 ec 14 sub $0x14,%esp
int r;
while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY)
80102d8c: 90 nop
80102d8d: c7 04 24 f7 01 00 00 movl $0x1f7,(%esp)
80102d94: e8 5b ff ff ff call 80102cf4 <inb>
80102d99: 0f b6 c0 movzbl %al,%eax
80102d9c: 89 45 fc mov %eax,-0x4(%ebp)
80102d9f: 8b 45 fc mov -0x4(%ebp),%eax
80102da2: 25 c0 00 00 00 and $0xc0,%eax
80102da7: 83 f8 40 cmp $0x40,%eax
80102daa: 75 e1 jne 80102d8d <idewait+0x7>
;
if(checkerr && (r & (IDE_DF|IDE_ERR)) != 0)
80102dac: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80102db0: 74 11 je 80102dc3 <idewait+0x3d>
80102db2: 8b 45 fc mov -0x4(%ebp),%eax
80102db5: 83 e0 21 and $0x21,%eax
80102db8: 85 c0 test %eax,%eax
80102dba: 74 07 je 80102dc3 <idewait+0x3d>
return -1;
80102dbc: b8 ff ff ff ff mov $0xffffffff,%eax
80102dc1: eb 05 jmp 80102dc8 <idewait+0x42>
return 0;
80102dc3: b8 00 00 00 00 mov $0x0,%eax
}
80102dc8: c9 leave
80102dc9: c3 ret
80102dca <ideinit>:
void
ideinit(void)
{
80102dca: 55 push %ebp
80102dcb: 89 e5 mov %esp,%ebp
80102dcd: 83 ec 28 sub $0x28,%esp
int i;
initlock(&idelock, "ide");
80102dd0: c7 44 24 04 52 94 10 movl $0x80109452,0x4(%esp)
80102dd7: 80
80102dd8: c7 04 24 20 c6 10 80 movl $0x8010c620,(%esp)
80102ddf: e8 a6 2d 00 00 call 80105b8a <initlock>
picenable(IRQ_IDE);
80102de4: c7 04 24 0e 00 00 00 movl $0xe,(%esp)
80102deb: e8 e5 18 00 00 call 801046d5 <picenable>
ioapicenable(IRQ_IDE, ncpu - 1);
80102df0: a1 80 41 11 80 mov 0x80114180,%eax
80102df5: 83 e8 01 sub $0x1,%eax
80102df8: 89 44 24 04 mov %eax,0x4(%esp)
80102dfc: c7 04 24 0e 00 00 00 movl $0xe,(%esp)
80102e03: e8 46 04 00 00 call 8010324e <ioapicenable>
idewait(0);
80102e08: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80102e0f: e8 72 ff ff ff call 80102d86 <idewait>
// Check if disk 1 is present
outb(0x1f6, 0xe0 | (1<<4));
80102e14: c7 44 24 04 f0 00 00 movl $0xf0,0x4(%esp)
80102e1b: 00
80102e1c: c7 04 24 f6 01 00 00 movl $0x1f6,(%esp)
80102e23: e8 1b ff ff ff call 80102d43 <outb>
for(i=0; i<1000; i++){
80102e28: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80102e2f: eb 20 jmp 80102e51 <ideinit+0x87>
if(inb(0x1f7) != 0){
80102e31: c7 04 24 f7 01 00 00 movl $0x1f7,(%esp)
80102e38: e8 b7 fe ff ff call 80102cf4 <inb>
80102e3d: 84 c0 test %al,%al
80102e3f: 74 0c je 80102e4d <ideinit+0x83>
havedisk1 = 1;
80102e41: c7 05 58 c6 10 80 01 movl $0x1,0x8010c658
80102e48: 00 00 00
break;
80102e4b: eb 0d jmp 80102e5a <ideinit+0x90>
ioapicenable(IRQ_IDE, ncpu - 1);
idewait(0);
// Check if disk 1 is present
outb(0x1f6, 0xe0 | (1<<4));
for(i=0; i<1000; i++){
80102e4d: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80102e51: 81 7d f4 e7 03 00 00 cmpl $0x3e7,-0xc(%ebp)
80102e58: 7e d7 jle 80102e31 <ideinit+0x67>
break;
}
}
// Switch back to disk 0.
outb(0x1f6, 0xe0 | (0<<4));
80102e5a: c7 44 24 04 e0 00 00 movl $0xe0,0x4(%esp)
80102e61: 00
80102e62: c7 04 24 f6 01 00 00 movl $0x1f6,(%esp)
80102e69: e8 d5 fe ff ff call 80102d43 <outb>
}
80102e6e: c9 leave
80102e6f: c3 ret
80102e70 <idestart>:
// Start the request for b. Caller must hold idelock.
static void
idestart(struct buf *b)
{
80102e70: 55 push %ebp
80102e71: 89 e5 mov %esp,%ebp
80102e73: 83 ec 28 sub $0x28,%esp
if(b == 0)
80102e76: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80102e7a: 75 0c jne 80102e88 <idestart+0x18>
panic("idestart");
80102e7c: c7 04 24 56 94 10 80 movl $0x80109456,(%esp)
80102e83: e8 b5 d6 ff ff call 8010053d <panic>
if(b->blockno >= FSSIZE)
80102e88: 8b 45 08 mov 0x8(%ebp),%eax
80102e8b: 8b 40 08 mov 0x8(%eax),%eax
80102e8e: 3d e7 03 00 00 cmp $0x3e7,%eax
80102e93: 76 0c jbe 80102ea1 <idestart+0x31>
panic("incorrect blockno");
80102e95: c7 04 24 5f 94 10 80 movl $0x8010945f,(%esp)
80102e9c: e8 9c d6 ff ff call 8010053d <panic>
int sector_per_block = BSIZE/SECTOR_SIZE;
80102ea1: c7 45 f4 01 00 00 00 movl $0x1,-0xc(%ebp)
int sector = b->blockno * sector_per_block;
80102ea8: 8b 45 08 mov 0x8(%ebp),%eax
80102eab: 8b 50 08 mov 0x8(%eax),%edx
80102eae: 8b 45 f4 mov -0xc(%ebp),%eax
80102eb1: 0f af c2 imul %edx,%eax
80102eb4: 89 45 f0 mov %eax,-0x10(%ebp)
if (sector_per_block > 7) panic("idestart");
80102eb7: 83 7d f4 07 cmpl $0x7,-0xc(%ebp)
80102ebb: 7e 0c jle 80102ec9 <idestart+0x59>
80102ebd: c7 04 24 56 94 10 80 movl $0x80109456,(%esp)
80102ec4: e8 74 d6 ff ff call 8010053d <panic>
idewait(0);
80102ec9: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80102ed0: e8 b1 fe ff ff call 80102d86 <idewait>
outb(0x3f6, 0); // generate interrupt
80102ed5: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80102edc: 00
80102edd: c7 04 24 f6 03 00 00 movl $0x3f6,(%esp)
80102ee4: e8 5a fe ff ff call 80102d43 <outb>
outb(0x1f2, sector_per_block); // number of sectors
80102ee9: 8b 45 f4 mov -0xc(%ebp),%eax
80102eec: 0f b6 c0 movzbl %al,%eax
80102eef: 89 44 24 04 mov %eax,0x4(%esp)
80102ef3: c7 04 24 f2 01 00 00 movl $0x1f2,(%esp)
80102efa: e8 44 fe ff ff call 80102d43 <outb>
outb(0x1f3, sector & 0xff);
80102eff: 8b 45 f0 mov -0x10(%ebp),%eax
80102f02: 0f b6 c0 movzbl %al,%eax
80102f05: 89 44 24 04 mov %eax,0x4(%esp)
80102f09: c7 04 24 f3 01 00 00 movl $0x1f3,(%esp)
80102f10: e8 2e fe ff ff call 80102d43 <outb>
outb(0x1f4, (sector >> 8) & 0xff);
80102f15: 8b 45 f0 mov -0x10(%ebp),%eax
80102f18: c1 f8 08 sar $0x8,%eax
80102f1b: 0f b6 c0 movzbl %al,%eax
80102f1e: 89 44 24 04 mov %eax,0x4(%esp)
80102f22: c7 04 24 f4 01 00 00 movl $0x1f4,(%esp)
80102f29: e8 15 fe ff ff call 80102d43 <outb>
outb(0x1f5, (sector >> 16) & 0xff);
80102f2e: 8b 45 f0 mov -0x10(%ebp),%eax
80102f31: c1 f8 10 sar $0x10,%eax
80102f34: 0f b6 c0 movzbl %al,%eax
80102f37: 89 44 24 04 mov %eax,0x4(%esp)
80102f3b: c7 04 24 f5 01 00 00 movl $0x1f5,(%esp)
80102f42: e8 fc fd ff ff call 80102d43 <outb>
outb(0x1f6, 0xe0 | ((b->dev&1)<<4) | ((sector>>24)&0x0f));
80102f47: 8b 45 08 mov 0x8(%ebp),%eax
80102f4a: 8b 40 04 mov 0x4(%eax),%eax
80102f4d: 83 e0 01 and $0x1,%eax
80102f50: 89 c2 mov %eax,%edx
80102f52: c1 e2 04 shl $0x4,%edx
80102f55: 8b 45 f0 mov -0x10(%ebp),%eax
80102f58: c1 f8 18 sar $0x18,%eax
80102f5b: 83 e0 0f and $0xf,%eax
80102f5e: 09 d0 or %edx,%eax
80102f60: 83 c8 e0 or $0xffffffe0,%eax
80102f63: 0f b6 c0 movzbl %al,%eax
80102f66: 89 44 24 04 mov %eax,0x4(%esp)
80102f6a: c7 04 24 f6 01 00 00 movl $0x1f6,(%esp)
80102f71: e8 cd fd ff ff call 80102d43 <outb>
if(b->flags & B_DIRTY){
80102f76: 8b 45 08 mov 0x8(%ebp),%eax
80102f79: 8b 00 mov (%eax),%eax
80102f7b: 83 e0 04 and $0x4,%eax
80102f7e: 85 c0 test %eax,%eax
80102f80: 74 34 je 80102fb6 <idestart+0x146>
outb(0x1f7, IDE_CMD_WRITE);
80102f82: c7 44 24 04 30 00 00 movl $0x30,0x4(%esp)
80102f89: 00
80102f8a: c7 04 24 f7 01 00 00 movl $0x1f7,(%esp)
80102f91: e8 ad fd ff ff call 80102d43 <outb>
outsl(0x1f0, b->data, BSIZE/4);
80102f96: 8b 45 08 mov 0x8(%ebp),%eax
80102f99: 83 c0 18 add $0x18,%eax
80102f9c: c7 44 24 08 80 00 00 movl $0x80,0x8(%esp)
80102fa3: 00
80102fa4: 89 44 24 04 mov %eax,0x4(%esp)
80102fa8: c7 04 24 f0 01 00 00 movl $0x1f0,(%esp)
80102faf: e8 ad fd ff ff call 80102d61 <outsl>
80102fb4: eb 14 jmp 80102fca <idestart+0x15a>
} else {
outb(0x1f7, IDE_CMD_READ);
80102fb6: c7 44 24 04 20 00 00 movl $0x20,0x4(%esp)
80102fbd: 00
80102fbe: c7 04 24 f7 01 00 00 movl $0x1f7,(%esp)
80102fc5: e8 79 fd ff ff call 80102d43 <outb>
}
}
80102fca: c9 leave
80102fcb: c3 ret
80102fcc <ideintr>:
// Interrupt handler.
void
ideintr(void)
{
80102fcc: 55 push %ebp
80102fcd: 89 e5 mov %esp,%ebp
80102fcf: 83 ec 28 sub $0x28,%esp
struct buf *b;
// First queued buffer is the active request.
acquire(&idelock);
80102fd2: c7 04 24 20 c6 10 80 movl $0x8010c620,(%esp)
80102fd9: e8 cd 2b 00 00 call 80105bab <acquire>
if((b = idequeue) == 0){
80102fde: a1 54 c6 10 80 mov 0x8010c654,%eax
80102fe3: 89 45 f4 mov %eax,-0xc(%ebp)
80102fe6: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80102fea: 75 11 jne 80102ffd <ideintr+0x31>
release(&idelock);
80102fec: c7 04 24 20 c6 10 80 movl $0x8010c620,(%esp)
80102ff3: e8 15 2c 00 00 call 80105c0d <release>
// cprintf("spurious IDE interrupt\n");
return;
80102ff8: e9 90 00 00 00 jmp 8010308d <ideintr+0xc1>
}
idequeue = b->qnext;
80102ffd: 8b 45 f4 mov -0xc(%ebp),%eax
80103000: 8b 40 14 mov 0x14(%eax),%eax
80103003: a3 54 c6 10 80 mov %eax,0x8010c654
// Read data if needed.
if(!(b->flags & B_DIRTY) && idewait(1) >= 0)
80103008: 8b 45 f4 mov -0xc(%ebp),%eax
8010300b: 8b 00 mov (%eax),%eax
8010300d: 83 e0 04 and $0x4,%eax
80103010: 85 c0 test %eax,%eax
80103012: 75 2e jne 80103042 <ideintr+0x76>
80103014: c7 04 24 01 00 00 00 movl $0x1,(%esp)
8010301b: e8 66 fd ff ff call 80102d86 <idewait>
80103020: 85 c0 test %eax,%eax
80103022: 78 1e js 80103042 <ideintr+0x76>
insl(0x1f0, b->data, BSIZE/4);
80103024: 8b 45 f4 mov -0xc(%ebp),%eax
80103027: 83 c0 18 add $0x18,%eax
8010302a: c7 44 24 08 80 00 00 movl $0x80,0x8(%esp)
80103031: 00
80103032: 89 44 24 04 mov %eax,0x4(%esp)
80103036: c7 04 24 f0 01 00 00 movl $0x1f0,(%esp)
8010303d: e8 dc fc ff ff call 80102d1e <insl>
// Wake process waiting for this buf.
b->flags |= B_VALID;
80103042: 8b 45 f4 mov -0xc(%ebp),%eax
80103045: 8b 00 mov (%eax),%eax
80103047: 89 c2 mov %eax,%edx
80103049: 83 ca 02 or $0x2,%edx
8010304c: 8b 45 f4 mov -0xc(%ebp),%eax
8010304f: 89 10 mov %edx,(%eax)
b->flags &= ~B_DIRTY;
80103051: 8b 45 f4 mov -0xc(%ebp),%eax
80103054: 8b 00 mov (%eax),%eax
80103056: 89 c2 mov %eax,%edx
80103058: 83 e2 fb and $0xfffffffb,%edx
8010305b: 8b 45 f4 mov -0xc(%ebp),%eax
8010305e: 89 10 mov %edx,(%eax)
wakeup(b);
80103060: 8b 45 f4 mov -0xc(%ebp),%eax
80103063: 89 04 24 mov %eax,(%esp)
80103066: e8 3d 27 00 00 call 801057a8 <wakeup>
// Start disk on next buf in queue.
if(idequeue != 0)
8010306b: a1 54 c6 10 80 mov 0x8010c654,%eax
80103070: 85 c0 test %eax,%eax
80103072: 74 0d je 80103081 <ideintr+0xb5>
idestart(idequeue);
80103074: a1 54 c6 10 80 mov 0x8010c654,%eax
80103079: 89 04 24 mov %eax,(%esp)
8010307c: e8 ef fd ff ff call 80102e70 <idestart>
release(&idelock);
80103081: c7 04 24 20 c6 10 80 movl $0x8010c620,(%esp)
80103088: e8 80 2b 00 00 call 80105c0d <release>
}
8010308d: c9 leave
8010308e: c3 ret
8010308f <iderw>:
// Sync buf with disk.
// If B_DIRTY is set, write buf to disk, clear B_DIRTY, set B_VALID.
// Else if B_VALID is not set, read buf from disk, set B_VALID.
void
iderw(struct buf *b)
{
8010308f: 55 push %ebp
80103090: 89 e5 mov %esp,%ebp
80103092: 83 ec 28 sub $0x28,%esp
struct buf **pp;
if(!(b->flags & B_BUSY))
80103095: 8b 45 08 mov 0x8(%ebp),%eax
80103098: 8b 00 mov (%eax),%eax
8010309a: 83 e0 01 and $0x1,%eax
8010309d: 85 c0 test %eax,%eax
8010309f: 75 0c jne 801030ad <iderw+0x1e>
panic("iderw: buf not busy");
801030a1: c7 04 24 71 94 10 80 movl $0x80109471,(%esp)
801030a8: e8 90 d4 ff ff call 8010053d <panic>
if((b->flags & (B_VALID|B_DIRTY)) == B_VALID)
801030ad: 8b 45 08 mov 0x8(%ebp),%eax
801030b0: 8b 00 mov (%eax),%eax
801030b2: 83 e0 06 and $0x6,%eax
801030b5: 83 f8 02 cmp $0x2,%eax
801030b8: 75 0c jne 801030c6 <iderw+0x37>
panic("iderw: nothing to do");
801030ba: c7 04 24 85 94 10 80 movl $0x80109485,(%esp)
801030c1: e8 77 d4 ff ff call 8010053d <panic>
if(b->dev != 0 && !havedisk1)
801030c6: 8b 45 08 mov 0x8(%ebp),%eax
801030c9: 8b 40 04 mov 0x4(%eax),%eax
801030cc: 85 c0 test %eax,%eax
801030ce: 74 15 je 801030e5 <iderw+0x56>
801030d0: a1 58 c6 10 80 mov 0x8010c658,%eax
801030d5: 85 c0 test %eax,%eax
801030d7: 75 0c jne 801030e5 <iderw+0x56>
panic("iderw: ide disk 1 not present");
801030d9: c7 04 24 9a 94 10 80 movl $0x8010949a,(%esp)
801030e0: e8 58 d4 ff ff call 8010053d <panic>
acquire(&idelock); //DOC:acquire-lock
801030e5: c7 04 24 20 c6 10 80 movl $0x8010c620,(%esp)
801030ec: e8 ba 2a 00 00 call 80105bab <acquire>
// Append b to idequeue.
b->qnext = 0;
801030f1: 8b 45 08 mov 0x8(%ebp),%eax
801030f4: c7 40 14 00 00 00 00 movl $0x0,0x14(%eax)
for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue
801030fb: c7 45 f4 54 c6 10 80 movl $0x8010c654,-0xc(%ebp)
80103102: eb 0b jmp 8010310f <iderw+0x80>
80103104: 8b 45 f4 mov -0xc(%ebp),%eax
80103107: 8b 00 mov (%eax),%eax
80103109: 83 c0 14 add $0x14,%eax
8010310c: 89 45 f4 mov %eax,-0xc(%ebp)
8010310f: 8b 45 f4 mov -0xc(%ebp),%eax
80103112: 8b 00 mov (%eax),%eax
80103114: 85 c0 test %eax,%eax
80103116: 75 ec jne 80103104 <iderw+0x75>
;
*pp = b;
80103118: 8b 45 f4 mov -0xc(%ebp),%eax
8010311b: 8b 55 08 mov 0x8(%ebp),%edx
8010311e: 89 10 mov %edx,(%eax)
// Start disk if necessary.
if(idequeue == b)
80103120: a1 54 c6 10 80 mov 0x8010c654,%eax
80103125: 3b 45 08 cmp 0x8(%ebp),%eax
80103128: 75 22 jne 8010314c <iderw+0xbd>
idestart(b);
8010312a: 8b 45 08 mov 0x8(%ebp),%eax
8010312d: 89 04 24 mov %eax,(%esp)
80103130: e8 3b fd ff ff call 80102e70 <idestart>
// Wait for request to finish.
while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){
80103135: eb 15 jmp 8010314c <iderw+0xbd>
sleep(b, &idelock);
80103137: c7 44 24 04 20 c6 10 movl $0x8010c620,0x4(%esp)
8010313e: 80
8010313f: 8b 45 08 mov 0x8(%ebp),%eax
80103142: 89 04 24 mov %eax,(%esp)
80103145: e8 75 25 00 00 call 801056bf <sleep>
8010314a: eb 01 jmp 8010314d <iderw+0xbe>
// Start disk if necessary.
if(idequeue == b)
idestart(b);
// Wait for request to finish.
while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){
8010314c: 90 nop
8010314d: 8b 45 08 mov 0x8(%ebp),%eax
80103150: 8b 00 mov (%eax),%eax
80103152: 83 e0 06 and $0x6,%eax
80103155: 83 f8 02 cmp $0x2,%eax
80103158: 75 dd jne 80103137 <iderw+0xa8>
sleep(b, &idelock);
}
release(&idelock);
8010315a: c7 04 24 20 c6 10 80 movl $0x8010c620,(%esp)
80103161: e8 a7 2a 00 00 call 80105c0d <release>
}
80103166: c9 leave
80103167: c3 ret
80103168 <ioapicread>:
uint data;
};
static uint
ioapicread(int reg)
{
80103168: 55 push %ebp
80103169: 89 e5 mov %esp,%ebp
ioapic->reg = reg;
8010316b: a1 54 3a 11 80 mov 0x80113a54,%eax
80103170: 8b 55 08 mov 0x8(%ebp),%edx
80103173: 89 10 mov %edx,(%eax)
return ioapic->data;
80103175: a1 54 3a 11 80 mov 0x80113a54,%eax
8010317a: 8b 40 10 mov 0x10(%eax),%eax
}
8010317d: 5d pop %ebp
8010317e: c3 ret
8010317f <ioapicwrite>:
static void
ioapicwrite(int reg, uint data)
{
8010317f: 55 push %ebp
80103180: 89 e5 mov %esp,%ebp
ioapic->reg = reg;
80103182: a1 54 3a 11 80 mov 0x80113a54,%eax
80103187: 8b 55 08 mov 0x8(%ebp),%edx
8010318a: 89 10 mov %edx,(%eax)
ioapic->data = data;
8010318c: a1 54 3a 11 80 mov 0x80113a54,%eax
80103191: 8b 55 0c mov 0xc(%ebp),%edx
80103194: 89 50 10 mov %edx,0x10(%eax)
}
80103197: 5d pop %ebp
80103198: c3 ret
80103199 <ioapicinit>:
void
ioapicinit(void)
{
80103199: 55 push %ebp
8010319a: 89 e5 mov %esp,%ebp
8010319c: 83 ec 28 sub $0x28,%esp
int i, id, maxintr;
if(!ismp)
8010319f: a1 84 3b 11 80 mov 0x80113b84,%eax
801031a4: 85 c0 test %eax,%eax
801031a6: 0f 84 9f 00 00 00 je 8010324b <ioapicinit+0xb2>
return;
ioapic = (volatile struct ioapic*)IOAPIC;
801031ac: c7 05 54 3a 11 80 00 movl $0xfec00000,0x80113a54
801031b3: 00 c0 fe
maxintr = (ioapicread(REG_VER) >> 16) & 0xFF;
801031b6: c7 04 24 01 00 00 00 movl $0x1,(%esp)
801031bd: e8 a6 ff ff ff call 80103168 <ioapicread>
801031c2: c1 e8 10 shr $0x10,%eax
801031c5: 25 ff 00 00 00 and $0xff,%eax
801031ca: 89 45 f0 mov %eax,-0x10(%ebp)
id = ioapicread(REG_ID) >> 24;
801031cd: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801031d4: e8 8f ff ff ff call 80103168 <ioapicread>
801031d9: c1 e8 18 shr $0x18,%eax
801031dc: 89 45 ec mov %eax,-0x14(%ebp)
if(id != ioapicid)
801031df: 0f b6 05 80 3b 11 80 movzbl 0x80113b80,%eax
801031e6: 0f b6 c0 movzbl %al,%eax
801031e9: 3b 45 ec cmp -0x14(%ebp),%eax
801031ec: 74 0c je 801031fa <ioapicinit+0x61>
cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n");
801031ee: c7 04 24 b8 94 10 80 movl $0x801094b8,(%esp)
801031f5: e8 a7 d1 ff ff call 801003a1 <cprintf>
// Mark all interrupts edge-triggered, active high, disabled,
// and not routed to any CPUs.
for(i = 0; i <= maxintr; i++){
801031fa: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80103201: eb 3e jmp 80103241 <ioapicinit+0xa8>
ioapicwrite(REG_TABLE+2*i, INT_DISABLED | (T_IRQ0 + i));
80103203: 8b 45 f4 mov -0xc(%ebp),%eax
80103206: 83 c0 20 add $0x20,%eax
80103209: 0d 00 00 01 00 or $0x10000,%eax
8010320e: 8b 55 f4 mov -0xc(%ebp),%edx
80103211: 83 c2 08 add $0x8,%edx
80103214: 01 d2 add %edx,%edx
80103216: 89 44 24 04 mov %eax,0x4(%esp)
8010321a: 89 14 24 mov %edx,(%esp)
8010321d: e8 5d ff ff ff call 8010317f <ioapicwrite>
ioapicwrite(REG_TABLE+2*i+1, 0);
80103222: 8b 45 f4 mov -0xc(%ebp),%eax
80103225: 83 c0 08 add $0x8,%eax
80103228: 01 c0 add %eax,%eax
8010322a: 83 c0 01 add $0x1,%eax
8010322d: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80103234: 00
80103235: 89 04 24 mov %eax,(%esp)
80103238: e8 42 ff ff ff call 8010317f <ioapicwrite>
if(id != ioapicid)
cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n");
// Mark all interrupts edge-triggered, active high, disabled,
// and not routed to any CPUs.
for(i = 0; i <= maxintr; i++){
8010323d: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80103241: 8b 45 f4 mov -0xc(%ebp),%eax
80103244: 3b 45 f0 cmp -0x10(%ebp),%eax
80103247: 7e ba jle 80103203 <ioapicinit+0x6a>
80103249: eb 01 jmp 8010324c <ioapicinit+0xb3>
ioapicinit(void)
{
int i, id, maxintr;
if(!ismp)
return;
8010324b: 90 nop
// and not routed to any CPUs.
for(i = 0; i <= maxintr; i++){
ioapicwrite(REG_TABLE+2*i, INT_DISABLED | (T_IRQ0 + i));
ioapicwrite(REG_TABLE+2*i+1, 0);
}
}
8010324c: c9 leave
8010324d: c3 ret
8010324e <ioapicenable>:
void
ioapicenable(int irq, int cpunum)
{
8010324e: 55 push %ebp
8010324f: 89 e5 mov %esp,%ebp
80103251: 83 ec 08 sub $0x8,%esp
if(!ismp)
80103254: a1 84 3b 11 80 mov 0x80113b84,%eax
80103259: 85 c0 test %eax,%eax
8010325b: 74 39 je 80103296 <ioapicenable+0x48>
return;
// Mark interrupt edge-triggered, active high,
// enabled, and routed to the given cpunum,
// which happens to be that cpu's APIC ID.
ioapicwrite(REG_TABLE+2*irq, T_IRQ0 + irq);
8010325d: 8b 45 08 mov 0x8(%ebp),%eax
80103260: 83 c0 20 add $0x20,%eax
80103263: 8b 55 08 mov 0x8(%ebp),%edx
80103266: 83 c2 08 add $0x8,%edx
80103269: 01 d2 add %edx,%edx
8010326b: 89 44 24 04 mov %eax,0x4(%esp)
8010326f: 89 14 24 mov %edx,(%esp)
80103272: e8 08 ff ff ff call 8010317f <ioapicwrite>
ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24);
80103277: 8b 45 0c mov 0xc(%ebp),%eax
8010327a: c1 e0 18 shl $0x18,%eax
8010327d: 8b 55 08 mov 0x8(%ebp),%edx
80103280: 83 c2 08 add $0x8,%edx
80103283: 01 d2 add %edx,%edx
80103285: 83 c2 01 add $0x1,%edx
80103288: 89 44 24 04 mov %eax,0x4(%esp)
8010328c: 89 14 24 mov %edx,(%esp)
8010328f: e8 eb fe ff ff call 8010317f <ioapicwrite>
80103294: eb 01 jmp 80103297 <ioapicenable+0x49>
void
ioapicenable(int irq, int cpunum)
{
if(!ismp)
return;
80103296: 90 nop
// Mark interrupt edge-triggered, active high,
// enabled, and routed to the given cpunum,
// which happens to be that cpu's APIC ID.
ioapicwrite(REG_TABLE+2*irq, T_IRQ0 + irq);
ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24);
}
80103297: c9 leave
80103298: c3 ret
80103299: 00 00 add %al,(%eax)
...
8010329c <v2p>:
#define KERNBASE 0x80000000 // First kernel virtual address
#define KERNLINK (KERNBASE+EXTMEM) // Address where kernel is linked
#ifndef __ASSEMBLER__
static inline uint v2p(void *a) { return ((uint) (a)) - KERNBASE; }
8010329c: 55 push %ebp
8010329d: 89 e5 mov %esp,%ebp
8010329f: 8b 45 08 mov 0x8(%ebp),%eax
801032a2: 05 00 00 00 80 add $0x80000000,%eax
801032a7: 5d pop %ebp
801032a8: c3 ret
801032a9 <kinit1>:
// the pages mapped by entrypgdir on free list.
// 2. main() calls kinit2() with the rest of the physical pages
// after installing a full page table that maps them on all cores.
void
kinit1(void *vstart, void *vend)
{
801032a9: 55 push %ebp
801032aa: 89 e5 mov %esp,%ebp
801032ac: 83 ec 18 sub $0x18,%esp
initlock(&kmem.lock, "kmem");
801032af: c7 44 24 04 ea 94 10 movl $0x801094ea,0x4(%esp)
801032b6: 80
801032b7: c7 04 24 60 3a 11 80 movl $0x80113a60,(%esp)
801032be: e8 c7 28 00 00 call 80105b8a <initlock>
kmem.use_lock = 0;
801032c3: c7 05 94 3a 11 80 00 movl $0x0,0x80113a94
801032ca: 00 00 00
freerange(vstart, vend);
801032cd: 8b 45 0c mov 0xc(%ebp),%eax
801032d0: 89 44 24 04 mov %eax,0x4(%esp)
801032d4: 8b 45 08 mov 0x8(%ebp),%eax
801032d7: 89 04 24 mov %eax,(%esp)
801032da: e8 26 00 00 00 call 80103305 <freerange>
}
801032df: c9 leave
801032e0: c3 ret
801032e1 <kinit2>:
void
kinit2(void *vstart, void *vend)
{
801032e1: 55 push %ebp
801032e2: 89 e5 mov %esp,%ebp
801032e4: 83 ec 18 sub $0x18,%esp
freerange(vstart, vend);
801032e7: 8b 45 0c mov 0xc(%ebp),%eax
801032ea: 89 44 24 04 mov %eax,0x4(%esp)
801032ee: 8b 45 08 mov 0x8(%ebp),%eax
801032f1: 89 04 24 mov %eax,(%esp)
801032f4: e8 0c 00 00 00 call 80103305 <freerange>
kmem.use_lock = 1;
801032f9: c7 05 94 3a 11 80 01 movl $0x1,0x80113a94
80103300: 00 00 00
}
80103303: c9 leave
80103304: c3 ret
80103305 <freerange>:
void
freerange(void *vstart, void *vend)
{
80103305: 55 push %ebp
80103306: 89 e5 mov %esp,%ebp
80103308: 83 ec 28 sub $0x28,%esp
char *p;
p = (char*)PGROUNDUP((uint)vstart);
8010330b: 8b 45 08 mov 0x8(%ebp),%eax
8010330e: 05 ff 0f 00 00 add $0xfff,%eax
80103313: 25 00 f0 ff ff and $0xfffff000,%eax
80103318: 89 45 f4 mov %eax,-0xc(%ebp)
for(; p + PGSIZE <= (char*)vend; p += PGSIZE)
8010331b: eb 12 jmp 8010332f <freerange+0x2a>
kfree(p);
8010331d: 8b 45 f4 mov -0xc(%ebp),%eax
80103320: 89 04 24 mov %eax,(%esp)
80103323: e8 16 00 00 00 call 8010333e <kfree>
void
freerange(void *vstart, void *vend)
{
char *p;
p = (char*)PGROUNDUP((uint)vstart);
for(; p + PGSIZE <= (char*)vend; p += PGSIZE)
80103328: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
8010332f: 8b 45 f4 mov -0xc(%ebp),%eax
80103332: 05 00 10 00 00 add $0x1000,%eax
80103337: 3b 45 0c cmp 0xc(%ebp),%eax
8010333a: 76 e1 jbe 8010331d <freerange+0x18>
kfree(p);
}
8010333c: c9 leave
8010333d: c3 ret
8010333e <kfree>:
// which normally should have been returned by a
// call to kalloc(). (The exception is when
// initializing the allocator; see kinit above.)
void
kfree(char *v)
{
8010333e: 55 push %ebp
8010333f: 89 e5 mov %esp,%ebp
80103341: 83 ec 28 sub $0x28,%esp
struct run *r;
if((uint)v % PGSIZE || v < end || v2p(v) >= PHYSTOP)
80103344: 8b 45 08 mov 0x8(%ebp),%eax
80103347: 25 ff 0f 00 00 and $0xfff,%eax
8010334c: 85 c0 test %eax,%eax
8010334e: 75 1b jne 8010336b <kfree+0x2d>
80103350: 81 7d 08 7c 6e 11 80 cmpl $0x80116e7c,0x8(%ebp)
80103357: 72 12 jb 8010336b <kfree+0x2d>
80103359: 8b 45 08 mov 0x8(%ebp),%eax
8010335c: 89 04 24 mov %eax,(%esp)
8010335f: e8 38 ff ff ff call 8010329c <v2p>
80103364: 3d ff ff ff 0d cmp $0xdffffff,%eax
80103369: 76 0c jbe 80103377 <kfree+0x39>
panic("kfree");
8010336b: c7 04 24 ef 94 10 80 movl $0x801094ef,(%esp)
80103372: e8 c6 d1 ff ff call 8010053d <panic>
// Fill with junk to catch dangling refs.
memset(v, 1, PGSIZE);
80103377: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
8010337e: 00
8010337f: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80103386: 00
80103387: 8b 45 08 mov 0x8(%ebp),%eax
8010338a: 89 04 24 mov %eax,(%esp)
8010338d: e8 68 2a 00 00 call 80105dfa <memset>
if(kmem.use_lock)
80103392: a1 94 3a 11 80 mov 0x80113a94,%eax
80103397: 85 c0 test %eax,%eax
80103399: 74 0c je 801033a7 <kfree+0x69>
acquire(&kmem.lock);
8010339b: c7 04 24 60 3a 11 80 movl $0x80113a60,(%esp)
801033a2: e8 04 28 00 00 call 80105bab <acquire>
r = (struct run*)v;
801033a7: 8b 45 08 mov 0x8(%ebp),%eax
801033aa: 89 45 f4 mov %eax,-0xc(%ebp)
r->next = kmem.freelist;
801033ad: 8b 15 98 3a 11 80 mov 0x80113a98,%edx
801033b3: 8b 45 f4 mov -0xc(%ebp),%eax
801033b6: 89 10 mov %edx,(%eax)
kmem.freelist = r;
801033b8: 8b 45 f4 mov -0xc(%ebp),%eax
801033bb: a3 98 3a 11 80 mov %eax,0x80113a98
if(kmem.use_lock)
801033c0: a1 94 3a 11 80 mov 0x80113a94,%eax
801033c5: 85 c0 test %eax,%eax
801033c7: 74 0c je 801033d5 <kfree+0x97>
release(&kmem.lock);
801033c9: c7 04 24 60 3a 11 80 movl $0x80113a60,(%esp)
801033d0: e8 38 28 00 00 call 80105c0d <release>
}
801033d5: c9 leave
801033d6: c3 ret
801033d7 <kalloc>:
// Allocate one 4096-byte page of physical memory.
// Returns a pointer that the kernel can use.
// Returns 0 if the memory cannot be allocated.
char*
kalloc(void)
{
801033d7: 55 push %ebp
801033d8: 89 e5 mov %esp,%ebp
801033da: 83 ec 28 sub $0x28,%esp
struct run *r;
if(kmem.use_lock)
801033dd: a1 94 3a 11 80 mov 0x80113a94,%eax
801033e2: 85 c0 test %eax,%eax
801033e4: 74 0c je 801033f2 <kalloc+0x1b>
acquire(&kmem.lock);
801033e6: c7 04 24 60 3a 11 80 movl $0x80113a60,(%esp)
801033ed: e8 b9 27 00 00 call 80105bab <acquire>
r = kmem.freelist;
801033f2: a1 98 3a 11 80 mov 0x80113a98,%eax
801033f7: 89 45 f4 mov %eax,-0xc(%ebp)
if(r)
801033fa: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801033fe: 74 0a je 8010340a <kalloc+0x33>
kmem.freelist = r->next;
80103400: 8b 45 f4 mov -0xc(%ebp),%eax
80103403: 8b 00 mov (%eax),%eax
80103405: a3 98 3a 11 80 mov %eax,0x80113a98
if(kmem.use_lock)
8010340a: a1 94 3a 11 80 mov 0x80113a94,%eax
8010340f: 85 c0 test %eax,%eax
80103411: 74 0c je 8010341f <kalloc+0x48>
release(&kmem.lock);
80103413: c7 04 24 60 3a 11 80 movl $0x80113a60,(%esp)
8010341a: e8 ee 27 00 00 call 80105c0d <release>
return (char*)r;
8010341f: 8b 45 f4 mov -0xc(%ebp),%eax
}
80103422: c9 leave
80103423: c3 ret
80103424 <inb>:
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
80103424: 55 push %ebp
80103425: 89 e5 mov %esp,%ebp
80103427: 53 push %ebx
80103428: 83 ec 14 sub $0x14,%esp
8010342b: 8b 45 08 mov 0x8(%ebp),%eax
8010342e: 66 89 45 e8 mov %ax,-0x18(%ebp)
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
80103432: 0f b7 55 e8 movzwl -0x18(%ebp),%edx
80103436: 66 89 55 ea mov %dx,-0x16(%ebp)
8010343a: 0f b7 55 ea movzwl -0x16(%ebp),%edx
8010343e: ec in (%dx),%al
8010343f: 89 c3 mov %eax,%ebx
80103441: 88 5d fb mov %bl,-0x5(%ebp)
return data;
80103444: 0f b6 45 fb movzbl -0x5(%ebp),%eax
}
80103448: 83 c4 14 add $0x14,%esp
8010344b: 5b pop %ebx
8010344c: 5d pop %ebp
8010344d: c3 ret
8010344e <kbdgetc>:
#include "defs.h"
#include "kbd.h"
int
kbdgetc(void)
{
8010344e: 55 push %ebp
8010344f: 89 e5 mov %esp,%ebp
80103451: 83 ec 14 sub $0x14,%esp
static uchar *charcode[4] = {
normalmap, shiftmap, ctlmap, ctlmap
};
uint st, data, c;
st = inb(KBSTATP);
80103454: c7 04 24 64 00 00 00 movl $0x64,(%esp)
8010345b: e8 c4 ff ff ff call 80103424 <inb>
80103460: 0f b6 c0 movzbl %al,%eax
80103463: 89 45 f4 mov %eax,-0xc(%ebp)
if((st & KBS_DIB) == 0)
80103466: 8b 45 f4 mov -0xc(%ebp),%eax
80103469: 83 e0 01 and $0x1,%eax
8010346c: 85 c0 test %eax,%eax
8010346e: 75 0a jne 8010347a <kbdgetc+0x2c>
return -1;
80103470: b8 ff ff ff ff mov $0xffffffff,%eax
80103475: e9 23 01 00 00 jmp 8010359d <kbdgetc+0x14f>
data = inb(KBDATAP);
8010347a: c7 04 24 60 00 00 00 movl $0x60,(%esp)
80103481: e8 9e ff ff ff call 80103424 <inb>
80103486: 0f b6 c0 movzbl %al,%eax
80103489: 89 45 fc mov %eax,-0x4(%ebp)
if(data == 0xE0){
8010348c: 81 7d fc e0 00 00 00 cmpl $0xe0,-0x4(%ebp)
80103493: 75 17 jne 801034ac <kbdgetc+0x5e>
shift |= E0ESC;
80103495: a1 5c c6 10 80 mov 0x8010c65c,%eax
8010349a: 83 c8 40 or $0x40,%eax
8010349d: a3 5c c6 10 80 mov %eax,0x8010c65c
return 0;
801034a2: b8 00 00 00 00 mov $0x0,%eax
801034a7: e9 f1 00 00 00 jmp 8010359d <kbdgetc+0x14f>
} else if(data & 0x80){
801034ac: 8b 45 fc mov -0x4(%ebp),%eax
801034af: 25 80 00 00 00 and $0x80,%eax
801034b4: 85 c0 test %eax,%eax
801034b6: 74 45 je 801034fd <kbdgetc+0xaf>
// Key released
data = (shift & E0ESC ? data : data & 0x7F);
801034b8: a1 5c c6 10 80 mov 0x8010c65c,%eax
801034bd: 83 e0 40 and $0x40,%eax
801034c0: 85 c0 test %eax,%eax
801034c2: 75 08 jne 801034cc <kbdgetc+0x7e>
801034c4: 8b 45 fc mov -0x4(%ebp),%eax
801034c7: 83 e0 7f and $0x7f,%eax
801034ca: eb 03 jmp 801034cf <kbdgetc+0x81>
801034cc: 8b 45 fc mov -0x4(%ebp),%eax
801034cf: 89 45 fc mov %eax,-0x4(%ebp)
shift &= ~(shiftcode[data] | E0ESC);
801034d2: 8b 45 fc mov -0x4(%ebp),%eax
801034d5: 05 20 a0 10 80 add $0x8010a020,%eax
801034da: 0f b6 00 movzbl (%eax),%eax
801034dd: 83 c8 40 or $0x40,%eax
801034e0: 0f b6 c0 movzbl %al,%eax
801034e3: f7 d0 not %eax
801034e5: 89 c2 mov %eax,%edx
801034e7: a1 5c c6 10 80 mov 0x8010c65c,%eax
801034ec: 21 d0 and %edx,%eax
801034ee: a3 5c c6 10 80 mov %eax,0x8010c65c
return 0;
801034f3: b8 00 00 00 00 mov $0x0,%eax
801034f8: e9 a0 00 00 00 jmp 8010359d <kbdgetc+0x14f>
} else if(shift & E0ESC){
801034fd: a1 5c c6 10 80 mov 0x8010c65c,%eax
80103502: 83 e0 40 and $0x40,%eax
80103505: 85 c0 test %eax,%eax
80103507: 74 14 je 8010351d <kbdgetc+0xcf>
// Last character was an E0 escape; or with 0x80
data |= 0x80;
80103509: 81 4d fc 80 00 00 00 orl $0x80,-0x4(%ebp)
shift &= ~E0ESC;
80103510: a1 5c c6 10 80 mov 0x8010c65c,%eax
80103515: 83 e0 bf and $0xffffffbf,%eax
80103518: a3 5c c6 10 80 mov %eax,0x8010c65c
}
shift |= shiftcode[data];
8010351d: 8b 45 fc mov -0x4(%ebp),%eax
80103520: 05 20 a0 10 80 add $0x8010a020,%eax
80103525: 0f b6 00 movzbl (%eax),%eax
80103528: 0f b6 d0 movzbl %al,%edx
8010352b: a1 5c c6 10 80 mov 0x8010c65c,%eax
80103530: 09 d0 or %edx,%eax
80103532: a3 5c c6 10 80 mov %eax,0x8010c65c
shift ^= togglecode[data];
80103537: 8b 45 fc mov -0x4(%ebp),%eax
8010353a: 05 20 a1 10 80 add $0x8010a120,%eax
8010353f: 0f b6 00 movzbl (%eax),%eax
80103542: 0f b6 d0 movzbl %al,%edx
80103545: a1 5c c6 10 80 mov 0x8010c65c,%eax
8010354a: 31 d0 xor %edx,%eax
8010354c: a3 5c c6 10 80 mov %eax,0x8010c65c
c = charcode[shift & (CTL | SHIFT)][data];
80103551: a1 5c c6 10 80 mov 0x8010c65c,%eax
80103556: 83 e0 03 and $0x3,%eax
80103559: 8b 04 85 20 a5 10 80 mov -0x7fef5ae0(,%eax,4),%eax
80103560: 03 45 fc add -0x4(%ebp),%eax
80103563: 0f b6 00 movzbl (%eax),%eax
80103566: 0f b6 c0 movzbl %al,%eax
80103569: 89 45 f8 mov %eax,-0x8(%ebp)
if(shift & CAPSLOCK){
8010356c: a1 5c c6 10 80 mov 0x8010c65c,%eax
80103571: 83 e0 08 and $0x8,%eax
80103574: 85 c0 test %eax,%eax
80103576: 74 22 je 8010359a <kbdgetc+0x14c>
if('a' <= c && c <= 'z')
80103578: 83 7d f8 60 cmpl $0x60,-0x8(%ebp)
8010357c: 76 0c jbe 8010358a <kbdgetc+0x13c>
8010357e: 83 7d f8 7a cmpl $0x7a,-0x8(%ebp)
80103582: 77 06 ja 8010358a <kbdgetc+0x13c>
c += 'A' - 'a';
80103584: 83 6d f8 20 subl $0x20,-0x8(%ebp)
80103588: eb 10 jmp 8010359a <kbdgetc+0x14c>
else if('A' <= c && c <= 'Z')
8010358a: 83 7d f8 40 cmpl $0x40,-0x8(%ebp)
8010358e: 76 0a jbe 8010359a <kbdgetc+0x14c>
80103590: 83 7d f8 5a cmpl $0x5a,-0x8(%ebp)
80103594: 77 04 ja 8010359a <kbdgetc+0x14c>
c += 'a' - 'A';
80103596: 83 45 f8 20 addl $0x20,-0x8(%ebp)
}
return c;
8010359a: 8b 45 f8 mov -0x8(%ebp),%eax
}
8010359d: c9 leave
8010359e: c3 ret
8010359f <kbdintr>:
void
kbdintr(void)
{
8010359f: 55 push %ebp
801035a0: 89 e5 mov %esp,%ebp
801035a2: 83 ec 18 sub $0x18,%esp
consoleintr(kbdgetc);
801035a5: c7 04 24 4e 34 10 80 movl $0x8010344e,(%esp)
801035ac: e8 fd d5 ff ff call 80100bae <consoleintr>
}
801035b1: c9 leave
801035b2: c3 ret
...
801035b4 <inb>:
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
801035b4: 55 push %ebp
801035b5: 89 e5 mov %esp,%ebp
801035b7: 53 push %ebx
801035b8: 83 ec 14 sub $0x14,%esp
801035bb: 8b 45 08 mov 0x8(%ebp),%eax
801035be: 66 89 45 e8 mov %ax,-0x18(%ebp)
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
801035c2: 0f b7 55 e8 movzwl -0x18(%ebp),%edx
801035c6: 66 89 55 ea mov %dx,-0x16(%ebp)
801035ca: 0f b7 55 ea movzwl -0x16(%ebp),%edx
801035ce: ec in (%dx),%al
801035cf: 89 c3 mov %eax,%ebx
801035d1: 88 5d fb mov %bl,-0x5(%ebp)
return data;
801035d4: 0f b6 45 fb movzbl -0x5(%ebp),%eax
}
801035d8: 83 c4 14 add $0x14,%esp
801035db: 5b pop %ebx
801035dc: 5d pop %ebp
801035dd: c3 ret
801035de <outb>:
"memory", "cc");
}
static inline void
outb(ushort port, uchar data)
{
801035de: 55 push %ebp
801035df: 89 e5 mov %esp,%ebp
801035e1: 83 ec 08 sub $0x8,%esp
801035e4: 8b 55 08 mov 0x8(%ebp),%edx
801035e7: 8b 45 0c mov 0xc(%ebp),%eax
801035ea: 66 89 55 fc mov %dx,-0x4(%ebp)
801035ee: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
801035f1: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
801035f5: 0f b7 55 fc movzwl -0x4(%ebp),%edx
801035f9: ee out %al,(%dx)
}
801035fa: c9 leave
801035fb: c3 ret
801035fc <readeflags>:
asm volatile("ltr %0" : : "r" (sel));
}
static inline uint
readeflags(void)
{
801035fc: 55 push %ebp
801035fd: 89 e5 mov %esp,%ebp
801035ff: 53 push %ebx
80103600: 83 ec 10 sub $0x10,%esp
uint eflags;
asm volatile("pushfl; popl %0" : "=r" (eflags));
80103603: 9c pushf
80103604: 5b pop %ebx
80103605: 89 5d f8 mov %ebx,-0x8(%ebp)
return eflags;
80103608: 8b 45 f8 mov -0x8(%ebp),%eax
}
8010360b: 83 c4 10 add $0x10,%esp
8010360e: 5b pop %ebx
8010360f: 5d pop %ebp
80103610: c3 ret
80103611 <lapicw>:
volatile uint *lapic; // Initialized in mp.c
static void
lapicw(int index, int value)
{
80103611: 55 push %ebp
80103612: 89 e5 mov %esp,%ebp
lapic[index] = value;
80103614: a1 9c 3a 11 80 mov 0x80113a9c,%eax
80103619: 8b 55 08 mov 0x8(%ebp),%edx
8010361c: c1 e2 02 shl $0x2,%edx
8010361f: 01 c2 add %eax,%edx
80103621: 8b 45 0c mov 0xc(%ebp),%eax
80103624: 89 02 mov %eax,(%edx)
lapic[ID]; // wait for write to finish, by reading
80103626: a1 9c 3a 11 80 mov 0x80113a9c,%eax
8010362b: 83 c0 20 add $0x20,%eax
8010362e: 8b 00 mov (%eax),%eax
}
80103630: 5d pop %ebp
80103631: c3 ret
80103632 <lapicinit>:
//PAGEBREAK!
void
lapicinit(void)
{
80103632: 55 push %ebp
80103633: 89 e5 mov %esp,%ebp
80103635: 83 ec 08 sub $0x8,%esp
if(!lapic)
80103638: a1 9c 3a 11 80 mov 0x80113a9c,%eax
8010363d: 85 c0 test %eax,%eax
8010363f: 0f 84 47 01 00 00 je 8010378c <lapicinit+0x15a>
return;
// Enable local APIC; set spurious interrupt vector.
lapicw(SVR, ENABLE | (T_IRQ0 + IRQ_SPURIOUS));
80103645: c7 44 24 04 3f 01 00 movl $0x13f,0x4(%esp)
8010364c: 00
8010364d: c7 04 24 3c 00 00 00 movl $0x3c,(%esp)
80103654: e8 b8 ff ff ff call 80103611 <lapicw>
// The timer repeatedly counts down at bus frequency
// from lapic[TICR] and then issues an interrupt.
// If xv6 cared more about precise timekeeping,
// TICR would be calibrated using an external time source.
lapicw(TDCR, X1);
80103659: c7 44 24 04 0b 00 00 movl $0xb,0x4(%esp)
80103660: 00
80103661: c7 04 24 f8 00 00 00 movl $0xf8,(%esp)
80103668: e8 a4 ff ff ff call 80103611 <lapicw>
lapicw(TIMER, PERIODIC | (T_IRQ0 + IRQ_TIMER));
8010366d: c7 44 24 04 20 00 02 movl $0x20020,0x4(%esp)
80103674: 00
80103675: c7 04 24 c8 00 00 00 movl $0xc8,(%esp)
8010367c: e8 90 ff ff ff call 80103611 <lapicw>
lapicw(TICR, 10000000);
80103681: c7 44 24 04 80 96 98 movl $0x989680,0x4(%esp)
80103688: 00
80103689: c7 04 24 e0 00 00 00 movl $0xe0,(%esp)
80103690: e8 7c ff ff ff call 80103611 <lapicw>
// Disable logical interrupt lines.
lapicw(LINT0, MASKED);
80103695: c7 44 24 04 00 00 01 movl $0x10000,0x4(%esp)
8010369c: 00
8010369d: c7 04 24 d4 00 00 00 movl $0xd4,(%esp)
801036a4: e8 68 ff ff ff call 80103611 <lapicw>
lapicw(LINT1, MASKED);
801036a9: c7 44 24 04 00 00 01 movl $0x10000,0x4(%esp)
801036b0: 00
801036b1: c7 04 24 d8 00 00 00 movl $0xd8,(%esp)
801036b8: e8 54 ff ff ff call 80103611 <lapicw>
// Disable performance counter overflow interrupts
// on machines that provide that interrupt entry.
if(((lapic[VER]>>16) & 0xFF) >= 4)
801036bd: a1 9c 3a 11 80 mov 0x80113a9c,%eax
801036c2: 83 c0 30 add $0x30,%eax
801036c5: 8b 00 mov (%eax),%eax
801036c7: c1 e8 10 shr $0x10,%eax
801036ca: 25 ff 00 00 00 and $0xff,%eax
801036cf: 83 f8 03 cmp $0x3,%eax
801036d2: 76 14 jbe 801036e8 <lapicinit+0xb6>
lapicw(PCINT, MASKED);
801036d4: c7 44 24 04 00 00 01 movl $0x10000,0x4(%esp)
801036db: 00
801036dc: c7 04 24 d0 00 00 00 movl $0xd0,(%esp)
801036e3: e8 29 ff ff ff call 80103611 <lapicw>
// Map error interrupt to IRQ_ERROR.
lapicw(ERROR, T_IRQ0 + IRQ_ERROR);
801036e8: c7 44 24 04 33 00 00 movl $0x33,0x4(%esp)
801036ef: 00
801036f0: c7 04 24 dc 00 00 00 movl $0xdc,(%esp)
801036f7: e8 15 ff ff ff call 80103611 <lapicw>
// Clear error status register (requires back-to-back writes).
lapicw(ESR, 0);
801036fc: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80103703: 00
80103704: c7 04 24 a0 00 00 00 movl $0xa0,(%esp)
8010370b: e8 01 ff ff ff call 80103611 <lapicw>
lapicw(ESR, 0);
80103710: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80103717: 00
80103718: c7 04 24 a0 00 00 00 movl $0xa0,(%esp)
8010371f: e8 ed fe ff ff call 80103611 <lapicw>
// Ack any outstanding interrupts.
lapicw(EOI, 0);
80103724: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
8010372b: 00
8010372c: c7 04 24 2c 00 00 00 movl $0x2c,(%esp)
80103733: e8 d9 fe ff ff call 80103611 <lapicw>
// Send an Init Level De-Assert to synchronise arbitration ID's.
lapicw(ICRHI, 0);
80103738: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
8010373f: 00
80103740: c7 04 24 c4 00 00 00 movl $0xc4,(%esp)
80103747: e8 c5 fe ff ff call 80103611 <lapicw>
lapicw(ICRLO, BCAST | INIT | LEVEL);
8010374c: c7 44 24 04 00 85 08 movl $0x88500,0x4(%esp)
80103753: 00
80103754: c7 04 24 c0 00 00 00 movl $0xc0,(%esp)
8010375b: e8 b1 fe ff ff call 80103611 <lapicw>
while(lapic[ICRLO] & DELIVS)
80103760: 90 nop
80103761: a1 9c 3a 11 80 mov 0x80113a9c,%eax
80103766: 05 00 03 00 00 add $0x300,%eax
8010376b: 8b 00 mov (%eax),%eax
8010376d: 25 00 10 00 00 and $0x1000,%eax
80103772: 85 c0 test %eax,%eax
80103774: 75 eb jne 80103761 <lapicinit+0x12f>
;
// Enable interrupts on the APIC (but not on the processor).
lapicw(TPR, 0);
80103776: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
8010377d: 00
8010377e: c7 04 24 20 00 00 00 movl $0x20,(%esp)
80103785: e8 87 fe ff ff call 80103611 <lapicw>
8010378a: eb 01 jmp 8010378d <lapicinit+0x15b>
void
lapicinit(void)
{
if(!lapic)
return;
8010378c: 90 nop
while(lapic[ICRLO] & DELIVS)
;
// Enable interrupts on the APIC (but not on the processor).
lapicw(TPR, 0);
}
8010378d: c9 leave
8010378e: c3 ret
8010378f <cpunum>:
int
cpunum(void)
{
8010378f: 55 push %ebp
80103790: 89 e5 mov %esp,%ebp
80103792: 83 ec 18 sub $0x18,%esp
// Cannot call cpu when interrupts are enabled:
// result not guaranteed to last long enough to be used!
// Would prefer to panic but even printing is chancy here:
// almost everything, including cprintf and panic, calls cpu,
// often indirectly through acquire and release.
if(readeflags()&FL_IF){
80103795: e8 62 fe ff ff call 801035fc <readeflags>
8010379a: 25 00 02 00 00 and $0x200,%eax
8010379f: 85 c0 test %eax,%eax
801037a1: 74 29 je 801037cc <cpunum+0x3d>
static int n;
if(n++ == 0)
801037a3: a1 60 c6 10 80 mov 0x8010c660,%eax
801037a8: 85 c0 test %eax,%eax
801037aa: 0f 94 c2 sete %dl
801037ad: 83 c0 01 add $0x1,%eax
801037b0: a3 60 c6 10 80 mov %eax,0x8010c660
801037b5: 84 d2 test %dl,%dl
801037b7: 74 13 je 801037cc <cpunum+0x3d>
cprintf("cpu called from %x with interrupts enabled\n",
801037b9: 8b 45 04 mov 0x4(%ebp),%eax
801037bc: 89 44 24 04 mov %eax,0x4(%esp)
801037c0: c7 04 24 f8 94 10 80 movl $0x801094f8,(%esp)
801037c7: e8 d5 cb ff ff call 801003a1 <cprintf>
__builtin_return_address(0));
}
if(lapic)
801037cc: a1 9c 3a 11 80 mov 0x80113a9c,%eax
801037d1: 85 c0 test %eax,%eax
801037d3: 74 0f je 801037e4 <cpunum+0x55>
return lapic[ID]>>24;
801037d5: a1 9c 3a 11 80 mov 0x80113a9c,%eax
801037da: 83 c0 20 add $0x20,%eax
801037dd: 8b 00 mov (%eax),%eax
801037df: c1 e8 18 shr $0x18,%eax
801037e2: eb 05 jmp 801037e9 <cpunum+0x5a>
return 0;
801037e4: b8 00 00 00 00 mov $0x0,%eax
}
801037e9: c9 leave
801037ea: c3 ret
801037eb <lapiceoi>:
// Acknowledge interrupt.
void
lapiceoi(void)
{
801037eb: 55 push %ebp
801037ec: 89 e5 mov %esp,%ebp
801037ee: 83 ec 08 sub $0x8,%esp
if(lapic)
801037f1: a1 9c 3a 11 80 mov 0x80113a9c,%eax
801037f6: 85 c0 test %eax,%eax
801037f8: 74 14 je 8010380e <lapiceoi+0x23>
lapicw(EOI, 0);
801037fa: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80103801: 00
80103802: c7 04 24 2c 00 00 00 movl $0x2c,(%esp)
80103809: e8 03 fe ff ff call 80103611 <lapicw>
}
8010380e: c9 leave
8010380f: c3 ret
80103810 <microdelay>:
// Spin for a given number of microseconds.
// On real hardware would want to tune this dynamically.
void
microdelay(int us)
{
80103810: 55 push %ebp
80103811: 89 e5 mov %esp,%ebp
}
80103813: 5d pop %ebp
80103814: c3 ret
80103815 <lapicstartap>:
// Start additional processor running entry code at addr.
// See Appendix B of MultiProcessor Specification.
void
lapicstartap(uchar apicid, uint addr)
{
80103815: 55 push %ebp
80103816: 89 e5 mov %esp,%ebp
80103818: 83 ec 1c sub $0x1c,%esp
8010381b: 8b 45 08 mov 0x8(%ebp),%eax
8010381e: 88 45 ec mov %al,-0x14(%ebp)
ushort *wrv;
// "The BSP must initialize CMOS shutdown code to 0AH
// and the warm reset vector (DWORD based at 40:67) to point at
// the AP startup code prior to the [universal startup algorithm]."
outb(CMOS_PORT, 0xF); // offset 0xF is shutdown code
80103821: c7 44 24 04 0f 00 00 movl $0xf,0x4(%esp)
80103828: 00
80103829: c7 04 24 70 00 00 00 movl $0x70,(%esp)
80103830: e8 a9 fd ff ff call 801035de <outb>
outb(CMOS_PORT+1, 0x0A);
80103835: c7 44 24 04 0a 00 00 movl $0xa,0x4(%esp)
8010383c: 00
8010383d: c7 04 24 71 00 00 00 movl $0x71,(%esp)
80103844: e8 95 fd ff ff call 801035de <outb>
wrv = (ushort*)P2V((0x40<<4 | 0x67)); // Warm reset vector
80103849: c7 45 f8 67 04 00 80 movl $0x80000467,-0x8(%ebp)
wrv[0] = 0;
80103850: 8b 45 f8 mov -0x8(%ebp),%eax
80103853: 66 c7 00 00 00 movw $0x0,(%eax)
wrv[1] = addr >> 4;
80103858: 8b 45 f8 mov -0x8(%ebp),%eax
8010385b: 8d 50 02 lea 0x2(%eax),%edx
8010385e: 8b 45 0c mov 0xc(%ebp),%eax
80103861: c1 e8 04 shr $0x4,%eax
80103864: 66 89 02 mov %ax,(%edx)
// "Universal startup algorithm."
// Send INIT (level-triggered) interrupt to reset other CPU.
lapicw(ICRHI, apicid<<24);
80103867: 0f b6 45 ec movzbl -0x14(%ebp),%eax
8010386b: c1 e0 18 shl $0x18,%eax
8010386e: 89 44 24 04 mov %eax,0x4(%esp)
80103872: c7 04 24 c4 00 00 00 movl $0xc4,(%esp)
80103879: e8 93 fd ff ff call 80103611 <lapicw>
lapicw(ICRLO, INIT | LEVEL | ASSERT);
8010387e: c7 44 24 04 00 c5 00 movl $0xc500,0x4(%esp)
80103885: 00
80103886: c7 04 24 c0 00 00 00 movl $0xc0,(%esp)
8010388d: e8 7f fd ff ff call 80103611 <lapicw>
microdelay(200);
80103892: c7 04 24 c8 00 00 00 movl $0xc8,(%esp)
80103899: e8 72 ff ff ff call 80103810 <microdelay>
lapicw(ICRLO, INIT | LEVEL);
8010389e: c7 44 24 04 00 85 00 movl $0x8500,0x4(%esp)
801038a5: 00
801038a6: c7 04 24 c0 00 00 00 movl $0xc0,(%esp)
801038ad: e8 5f fd ff ff call 80103611 <lapicw>
microdelay(100); // should be 10ms, but too slow in Bochs!
801038b2: c7 04 24 64 00 00 00 movl $0x64,(%esp)
801038b9: e8 52 ff ff ff call 80103810 <microdelay>
// Send startup IPI (twice!) to enter code.
// Regular hardware is supposed to only accept a STARTUP
// when it is in the halted state due to an INIT. So the second
// should be ignored, but it is part of the official Intel algorithm.
// Bochs complains about the second one. Too bad for Bochs.
for(i = 0; i < 2; i++){
801038be: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp)
801038c5: eb 40 jmp 80103907 <lapicstartap+0xf2>
lapicw(ICRHI, apicid<<24);
801038c7: 0f b6 45 ec movzbl -0x14(%ebp),%eax
801038cb: c1 e0 18 shl $0x18,%eax
801038ce: 89 44 24 04 mov %eax,0x4(%esp)
801038d2: c7 04 24 c4 00 00 00 movl $0xc4,(%esp)
801038d9: e8 33 fd ff ff call 80103611 <lapicw>
lapicw(ICRLO, STARTUP | (addr>>12));
801038de: 8b 45 0c mov 0xc(%ebp),%eax
801038e1: c1 e8 0c shr $0xc,%eax
801038e4: 80 cc 06 or $0x6,%ah
801038e7: 89 44 24 04 mov %eax,0x4(%esp)
801038eb: c7 04 24 c0 00 00 00 movl $0xc0,(%esp)
801038f2: e8 1a fd ff ff call 80103611 <lapicw>
microdelay(200);
801038f7: c7 04 24 c8 00 00 00 movl $0xc8,(%esp)
801038fe: e8 0d ff ff ff call 80103810 <microdelay>
// Send startup IPI (twice!) to enter code.
// Regular hardware is supposed to only accept a STARTUP
// when it is in the halted state due to an INIT. So the second
// should be ignored, but it is part of the official Intel algorithm.
// Bochs complains about the second one. Too bad for Bochs.
for(i = 0; i < 2; i++){
80103903: 83 45 fc 01 addl $0x1,-0x4(%ebp)
80103907: 83 7d fc 01 cmpl $0x1,-0x4(%ebp)
8010390b: 7e ba jle 801038c7 <lapicstartap+0xb2>
lapicw(ICRHI, apicid<<24);
lapicw(ICRLO, STARTUP | (addr>>12));
microdelay(200);
}
}
8010390d: c9 leave
8010390e: c3 ret
8010390f <cmos_read>:
#define DAY 0x07
#define MONTH 0x08
#define YEAR 0x09
static uint cmos_read(uint reg)
{
8010390f: 55 push %ebp
80103910: 89 e5 mov %esp,%ebp
80103912: 83 ec 08 sub $0x8,%esp
outb(CMOS_PORT, reg);
80103915: 8b 45 08 mov 0x8(%ebp),%eax
80103918: 0f b6 c0 movzbl %al,%eax
8010391b: 89 44 24 04 mov %eax,0x4(%esp)
8010391f: c7 04 24 70 00 00 00 movl $0x70,(%esp)
80103926: e8 b3 fc ff ff call 801035de <outb>
microdelay(200);
8010392b: c7 04 24 c8 00 00 00 movl $0xc8,(%esp)
80103932: e8 d9 fe ff ff call 80103810 <microdelay>
return inb(CMOS_RETURN);
80103937: c7 04 24 71 00 00 00 movl $0x71,(%esp)
8010393e: e8 71 fc ff ff call 801035b4 <inb>
80103943: 0f b6 c0 movzbl %al,%eax
}
80103946: c9 leave
80103947: c3 ret
80103948 <fill_rtcdate>:
static void fill_rtcdate(struct rtcdate *r)
{
80103948: 55 push %ebp
80103949: 89 e5 mov %esp,%ebp
8010394b: 83 ec 04 sub $0x4,%esp
r->second = cmos_read(SECS);
8010394e: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80103955: e8 b5 ff ff ff call 8010390f <cmos_read>
8010395a: 8b 55 08 mov 0x8(%ebp),%edx
8010395d: 89 02 mov %eax,(%edx)
r->minute = cmos_read(MINS);
8010395f: c7 04 24 02 00 00 00 movl $0x2,(%esp)
80103966: e8 a4 ff ff ff call 8010390f <cmos_read>
8010396b: 8b 55 08 mov 0x8(%ebp),%edx
8010396e: 89 42 04 mov %eax,0x4(%edx)
r->hour = cmos_read(HOURS);
80103971: c7 04 24 04 00 00 00 movl $0x4,(%esp)
80103978: e8 92 ff ff ff call 8010390f <cmos_read>
8010397d: 8b 55 08 mov 0x8(%ebp),%edx
80103980: 89 42 08 mov %eax,0x8(%edx)
r->day = cmos_read(DAY);
80103983: c7 04 24 07 00 00 00 movl $0x7,(%esp)
8010398a: e8 80 ff ff ff call 8010390f <cmos_read>
8010398f: 8b 55 08 mov 0x8(%ebp),%edx
80103992: 89 42 0c mov %eax,0xc(%edx)
r->month = cmos_read(MONTH);
80103995: c7 04 24 08 00 00 00 movl $0x8,(%esp)
8010399c: e8 6e ff ff ff call 8010390f <cmos_read>
801039a1: 8b 55 08 mov 0x8(%ebp),%edx
801039a4: 89 42 10 mov %eax,0x10(%edx)
r->year = cmos_read(YEAR);
801039a7: c7 04 24 09 00 00 00 movl $0x9,(%esp)
801039ae: e8 5c ff ff ff call 8010390f <cmos_read>
801039b3: 8b 55 08 mov 0x8(%ebp),%edx
801039b6: 89 42 14 mov %eax,0x14(%edx)
}
801039b9: c9 leave
801039ba: c3 ret
801039bb <cmostime>:
// qemu seems to use 24-hour GWT and the values are BCD encoded
void cmostime(struct rtcdate *r)
{
801039bb: 55 push %ebp
801039bc: 89 e5 mov %esp,%ebp
801039be: 83 ec 58 sub $0x58,%esp
struct rtcdate t1, t2;
int sb, bcd;
sb = cmos_read(CMOS_STATB);
801039c1: c7 04 24 0b 00 00 00 movl $0xb,(%esp)
801039c8: e8 42 ff ff ff call 8010390f <cmos_read>
801039cd: 89 45 f4 mov %eax,-0xc(%ebp)
bcd = (sb & (1 << 2)) == 0;
801039d0: 8b 45 f4 mov -0xc(%ebp),%eax
801039d3: 83 e0 04 and $0x4,%eax
801039d6: 85 c0 test %eax,%eax
801039d8: 0f 94 c0 sete %al
801039db: 0f b6 c0 movzbl %al,%eax
801039de: 89 45 f0 mov %eax,-0x10(%ebp)
801039e1: eb 01 jmp 801039e4 <cmostime+0x29>
if (cmos_read(CMOS_STATA) & CMOS_UIP)
continue;
fill_rtcdate(&t2);
if (memcmp(&t1, &t2, sizeof(t1)) == 0)
break;
}
801039e3: 90 nop
bcd = (sb & (1 << 2)) == 0;
// make sure CMOS doesn't modify time while we read it
for (;;) {
fill_rtcdate(&t1);
801039e4: 8d 45 d8 lea -0x28(%ebp),%eax
801039e7: 89 04 24 mov %eax,(%esp)
801039ea: e8 59 ff ff ff call 80103948 <fill_rtcdate>
if (cmos_read(CMOS_STATA) & CMOS_UIP)
801039ef: c7 04 24 0a 00 00 00 movl $0xa,(%esp)
801039f6: e8 14 ff ff ff call 8010390f <cmos_read>
801039fb: 25 80 00 00 00 and $0x80,%eax
80103a00: 85 c0 test %eax,%eax
80103a02: 75 2b jne 80103a2f <cmostime+0x74>
continue;
fill_rtcdate(&t2);
80103a04: 8d 45 c0 lea -0x40(%ebp),%eax
80103a07: 89 04 24 mov %eax,(%esp)
80103a0a: e8 39 ff ff ff call 80103948 <fill_rtcdate>
if (memcmp(&t1, &t2, sizeof(t1)) == 0)
80103a0f: c7 44 24 08 18 00 00 movl $0x18,0x8(%esp)
80103a16: 00
80103a17: 8d 45 c0 lea -0x40(%ebp),%eax
80103a1a: 89 44 24 04 mov %eax,0x4(%esp)
80103a1e: 8d 45 d8 lea -0x28(%ebp),%eax
80103a21: 89 04 24 mov %eax,(%esp)
80103a24: e8 48 24 00 00 call 80105e71 <memcmp>
80103a29: 85 c0 test %eax,%eax
80103a2b: 75 b6 jne 801039e3 <cmostime+0x28>
break;
80103a2d: eb 03 jmp 80103a32 <cmostime+0x77>
// make sure CMOS doesn't modify time while we read it
for (;;) {
fill_rtcdate(&t1);
if (cmos_read(CMOS_STATA) & CMOS_UIP)
continue;
80103a2f: 90 nop
fill_rtcdate(&t2);
if (memcmp(&t1, &t2, sizeof(t1)) == 0)
break;
}
80103a30: eb b1 jmp 801039e3 <cmostime+0x28>
// convert
if (bcd) {
80103a32: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80103a36: 0f 84 a8 00 00 00 je 80103ae4 <cmostime+0x129>
#define CONV(x) (t1.x = ((t1.x >> 4) * 10) + (t1.x & 0xf))
CONV(second);
80103a3c: 8b 45 d8 mov -0x28(%ebp),%eax
80103a3f: 89 c2 mov %eax,%edx
80103a41: c1 ea 04 shr $0x4,%edx
80103a44: 89 d0 mov %edx,%eax
80103a46: c1 e0 02 shl $0x2,%eax
80103a49: 01 d0 add %edx,%eax
80103a4b: 01 c0 add %eax,%eax
80103a4d: 8b 55 d8 mov -0x28(%ebp),%edx
80103a50: 83 e2 0f and $0xf,%edx
80103a53: 01 d0 add %edx,%eax
80103a55: 89 45 d8 mov %eax,-0x28(%ebp)
CONV(minute);
80103a58: 8b 45 dc mov -0x24(%ebp),%eax
80103a5b: 89 c2 mov %eax,%edx
80103a5d: c1 ea 04 shr $0x4,%edx
80103a60: 89 d0 mov %edx,%eax
80103a62: c1 e0 02 shl $0x2,%eax
80103a65: 01 d0 add %edx,%eax
80103a67: 01 c0 add %eax,%eax
80103a69: 8b 55 dc mov -0x24(%ebp),%edx
80103a6c: 83 e2 0f and $0xf,%edx
80103a6f: 01 d0 add %edx,%eax
80103a71: 89 45 dc mov %eax,-0x24(%ebp)
CONV(hour );
80103a74: 8b 45 e0 mov -0x20(%ebp),%eax
80103a77: 89 c2 mov %eax,%edx
80103a79: c1 ea 04 shr $0x4,%edx
80103a7c: 89 d0 mov %edx,%eax
80103a7e: c1 e0 02 shl $0x2,%eax
80103a81: 01 d0 add %edx,%eax
80103a83: 01 c0 add %eax,%eax
80103a85: 8b 55 e0 mov -0x20(%ebp),%edx
80103a88: 83 e2 0f and $0xf,%edx
80103a8b: 01 d0 add %edx,%eax
80103a8d: 89 45 e0 mov %eax,-0x20(%ebp)
CONV(day );
80103a90: 8b 45 e4 mov -0x1c(%ebp),%eax
80103a93: 89 c2 mov %eax,%edx
80103a95: c1 ea 04 shr $0x4,%edx
80103a98: 89 d0 mov %edx,%eax
80103a9a: c1 e0 02 shl $0x2,%eax
80103a9d: 01 d0 add %edx,%eax
80103a9f: 01 c0 add %eax,%eax
80103aa1: 8b 55 e4 mov -0x1c(%ebp),%edx
80103aa4: 83 e2 0f and $0xf,%edx
80103aa7: 01 d0 add %edx,%eax
80103aa9: 89 45 e4 mov %eax,-0x1c(%ebp)
CONV(month );
80103aac: 8b 45 e8 mov -0x18(%ebp),%eax
80103aaf: 89 c2 mov %eax,%edx
80103ab1: c1 ea 04 shr $0x4,%edx
80103ab4: 89 d0 mov %edx,%eax
80103ab6: c1 e0 02 shl $0x2,%eax
80103ab9: 01 d0 add %edx,%eax
80103abb: 01 c0 add %eax,%eax
80103abd: 8b 55 e8 mov -0x18(%ebp),%edx
80103ac0: 83 e2 0f and $0xf,%edx
80103ac3: 01 d0 add %edx,%eax
80103ac5: 89 45 e8 mov %eax,-0x18(%ebp)
CONV(year );
80103ac8: 8b 45 ec mov -0x14(%ebp),%eax
80103acb: 89 c2 mov %eax,%edx
80103acd: c1 ea 04 shr $0x4,%edx
80103ad0: 89 d0 mov %edx,%eax
80103ad2: c1 e0 02 shl $0x2,%eax
80103ad5: 01 d0 add %edx,%eax
80103ad7: 01 c0 add %eax,%eax
80103ad9: 8b 55 ec mov -0x14(%ebp),%edx
80103adc: 83 e2 0f and $0xf,%edx
80103adf: 01 d0 add %edx,%eax
80103ae1: 89 45 ec mov %eax,-0x14(%ebp)
#undef CONV
}
*r = t1;
80103ae4: 8b 45 08 mov 0x8(%ebp),%eax
80103ae7: 8b 55 d8 mov -0x28(%ebp),%edx
80103aea: 89 10 mov %edx,(%eax)
80103aec: 8b 55 dc mov -0x24(%ebp),%edx
80103aef: 89 50 04 mov %edx,0x4(%eax)
80103af2: 8b 55 e0 mov -0x20(%ebp),%edx
80103af5: 89 50 08 mov %edx,0x8(%eax)
80103af8: 8b 55 e4 mov -0x1c(%ebp),%edx
80103afb: 89 50 0c mov %edx,0xc(%eax)
80103afe: 8b 55 e8 mov -0x18(%ebp),%edx
80103b01: 89 50 10 mov %edx,0x10(%eax)
80103b04: 8b 55 ec mov -0x14(%ebp),%edx
80103b07: 89 50 14 mov %edx,0x14(%eax)
r->year += 2000;
80103b0a: 8b 45 08 mov 0x8(%ebp),%eax
80103b0d: 8b 40 14 mov 0x14(%eax),%eax
80103b10: 8d 90 d0 07 00 00 lea 0x7d0(%eax),%edx
80103b16: 8b 45 08 mov 0x8(%ebp),%eax
80103b19: 89 50 14 mov %edx,0x14(%eax)
}
80103b1c: c9 leave
80103b1d: c3 ret
...
80103b20 <initlog>:
static void recover_from_log(void);
static void commit();
void
initlog(int dev)
{
80103b20: 55 push %ebp
80103b21: 89 e5 mov %esp,%ebp
80103b23: 83 ec 38 sub $0x38,%esp
if (sizeof(struct logheader) >= BSIZE)
panic("initlog: too big logheader");
struct superblock sb;
initlock(&log.lock, "log");
80103b26: c7 44 24 04 24 95 10 movl $0x80109524,0x4(%esp)
80103b2d: 80
80103b2e: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103b35: e8 50 20 00 00 call 80105b8a <initlock>
readsb(dev, &sb);
80103b3a: 8d 45 dc lea -0x24(%ebp),%eax
80103b3d: 89 44 24 04 mov %eax,0x4(%esp)
80103b41: 8b 45 08 mov 0x8(%ebp),%eax
80103b44: 89 04 24 mov %eax,(%esp)
80103b47: e8 dc df ff ff call 80101b28 <readsb>
log.start = sb.logstart;
80103b4c: 8b 45 ec mov -0x14(%ebp),%eax
80103b4f: a3 d4 3a 11 80 mov %eax,0x80113ad4
log.size = sb.nlog;
80103b54: 8b 45 e8 mov -0x18(%ebp),%eax
80103b57: a3 d8 3a 11 80 mov %eax,0x80113ad8
log.dev = dev;
80103b5c: 8b 45 08 mov 0x8(%ebp),%eax
80103b5f: a3 e4 3a 11 80 mov %eax,0x80113ae4
recover_from_log();
80103b64: e8 97 01 00 00 call 80103d00 <recover_from_log>
}
80103b69: c9 leave
80103b6a: c3 ret
80103b6b <install_trans>:
// Copy committed blocks from log to their home location
static void
install_trans(void)
{
80103b6b: 55 push %ebp
80103b6c: 89 e5 mov %esp,%ebp
80103b6e: 83 ec 28 sub $0x28,%esp
int tail;
for (tail = 0; tail < log.lh.n; tail++) {
80103b71: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80103b78: e9 89 00 00 00 jmp 80103c06 <install_trans+0x9b>
struct buf *lbuf = bread(log.dev, log.start+tail+1); // read log block
80103b7d: a1 d4 3a 11 80 mov 0x80113ad4,%eax
80103b82: 03 45 f4 add -0xc(%ebp),%eax
80103b85: 83 c0 01 add $0x1,%eax
80103b88: 89 c2 mov %eax,%edx
80103b8a: a1 e4 3a 11 80 mov 0x80113ae4,%eax
80103b8f: 89 54 24 04 mov %edx,0x4(%esp)
80103b93: 89 04 24 mov %eax,(%esp)
80103b96: e8 0b c6 ff ff call 801001a6 <bread>
80103b9b: 89 45 f0 mov %eax,-0x10(%ebp)
struct buf *dbuf = bread(log.dev, log.lh.block[tail]); // read dst
80103b9e: 8b 45 f4 mov -0xc(%ebp),%eax
80103ba1: 83 c0 10 add $0x10,%eax
80103ba4: 8b 04 85 ac 3a 11 80 mov -0x7feec554(,%eax,4),%eax
80103bab: 89 c2 mov %eax,%edx
80103bad: a1 e4 3a 11 80 mov 0x80113ae4,%eax
80103bb2: 89 54 24 04 mov %edx,0x4(%esp)
80103bb6: 89 04 24 mov %eax,(%esp)
80103bb9: e8 e8 c5 ff ff call 801001a6 <bread>
80103bbe: 89 45 ec mov %eax,-0x14(%ebp)
memmove(dbuf->data, lbuf->data, BSIZE); // copy block to dst
80103bc1: 8b 45 f0 mov -0x10(%ebp),%eax
80103bc4: 8d 50 18 lea 0x18(%eax),%edx
80103bc7: 8b 45 ec mov -0x14(%ebp),%eax
80103bca: 83 c0 18 add $0x18,%eax
80103bcd: c7 44 24 08 00 02 00 movl $0x200,0x8(%esp)
80103bd4: 00
80103bd5: 89 54 24 04 mov %edx,0x4(%esp)
80103bd9: 89 04 24 mov %eax,(%esp)
80103bdc: e8 ec 22 00 00 call 80105ecd <memmove>
bwrite(dbuf); // write dst to disk
80103be1: 8b 45 ec mov -0x14(%ebp),%eax
80103be4: 89 04 24 mov %eax,(%esp)
80103be7: e8 f1 c5 ff ff call 801001dd <bwrite>
brelse(lbuf);
80103bec: 8b 45 f0 mov -0x10(%ebp),%eax
80103bef: 89 04 24 mov %eax,(%esp)
80103bf2: e8 20 c6 ff ff call 80100217 <brelse>
brelse(dbuf);
80103bf7: 8b 45 ec mov -0x14(%ebp),%eax
80103bfa: 89 04 24 mov %eax,(%esp)
80103bfd: e8 15 c6 ff ff call 80100217 <brelse>
static void
install_trans(void)
{
int tail;
for (tail = 0; tail < log.lh.n; tail++) {
80103c02: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80103c06: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103c0b: 3b 45 f4 cmp -0xc(%ebp),%eax
80103c0e: 0f 8f 69 ff ff ff jg 80103b7d <install_trans+0x12>
memmove(dbuf->data, lbuf->data, BSIZE); // copy block to dst
bwrite(dbuf); // write dst to disk
brelse(lbuf);
brelse(dbuf);
}
}
80103c14: c9 leave
80103c15: c3 ret
80103c16 <read_head>:
// Read the log header from disk into the in-memory log header
static void
read_head(void)
{
80103c16: 55 push %ebp
80103c17: 89 e5 mov %esp,%ebp
80103c19: 83 ec 28 sub $0x28,%esp
struct buf *buf = bread(log.dev, log.start);
80103c1c: a1 d4 3a 11 80 mov 0x80113ad4,%eax
80103c21: 89 c2 mov %eax,%edx
80103c23: a1 e4 3a 11 80 mov 0x80113ae4,%eax
80103c28: 89 54 24 04 mov %edx,0x4(%esp)
80103c2c: 89 04 24 mov %eax,(%esp)
80103c2f: e8 72 c5 ff ff call 801001a6 <bread>
80103c34: 89 45 f0 mov %eax,-0x10(%ebp)
struct logheader *lh = (struct logheader *) (buf->data);
80103c37: 8b 45 f0 mov -0x10(%ebp),%eax
80103c3a: 83 c0 18 add $0x18,%eax
80103c3d: 89 45 ec mov %eax,-0x14(%ebp)
int i;
log.lh.n = lh->n;
80103c40: 8b 45 ec mov -0x14(%ebp),%eax
80103c43: 8b 00 mov (%eax),%eax
80103c45: a3 e8 3a 11 80 mov %eax,0x80113ae8
for (i = 0; i < log.lh.n; i++) {
80103c4a: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80103c51: eb 1b jmp 80103c6e <read_head+0x58>
log.lh.block[i] = lh->block[i];
80103c53: 8b 45 ec mov -0x14(%ebp),%eax
80103c56: 8b 55 f4 mov -0xc(%ebp),%edx
80103c59: 8b 44 90 04 mov 0x4(%eax,%edx,4),%eax
80103c5d: 8b 55 f4 mov -0xc(%ebp),%edx
80103c60: 83 c2 10 add $0x10,%edx
80103c63: 89 04 95 ac 3a 11 80 mov %eax,-0x7feec554(,%edx,4)
{
struct buf *buf = bread(log.dev, log.start);
struct logheader *lh = (struct logheader *) (buf->data);
int i;
log.lh.n = lh->n;
for (i = 0; i < log.lh.n; i++) {
80103c6a: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80103c6e: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103c73: 3b 45 f4 cmp -0xc(%ebp),%eax
80103c76: 7f db jg 80103c53 <read_head+0x3d>
log.lh.block[i] = lh->block[i];
}
brelse(buf);
80103c78: 8b 45 f0 mov -0x10(%ebp),%eax
80103c7b: 89 04 24 mov %eax,(%esp)
80103c7e: e8 94 c5 ff ff call 80100217 <brelse>
}
80103c83: c9 leave
80103c84: c3 ret
80103c85 <write_head>:
// Write in-memory log header to disk.
// This is the true point at which the
// current transaction commits.
static void
write_head(void)
{
80103c85: 55 push %ebp
80103c86: 89 e5 mov %esp,%ebp
80103c88: 83 ec 28 sub $0x28,%esp
struct buf *buf = bread(log.dev, log.start);
80103c8b: a1 d4 3a 11 80 mov 0x80113ad4,%eax
80103c90: 89 c2 mov %eax,%edx
80103c92: a1 e4 3a 11 80 mov 0x80113ae4,%eax
80103c97: 89 54 24 04 mov %edx,0x4(%esp)
80103c9b: 89 04 24 mov %eax,(%esp)
80103c9e: e8 03 c5 ff ff call 801001a6 <bread>
80103ca3: 89 45 f0 mov %eax,-0x10(%ebp)
struct logheader *hb = (struct logheader *) (buf->data);
80103ca6: 8b 45 f0 mov -0x10(%ebp),%eax
80103ca9: 83 c0 18 add $0x18,%eax
80103cac: 89 45 ec mov %eax,-0x14(%ebp)
int i;
hb->n = log.lh.n;
80103caf: 8b 15 e8 3a 11 80 mov 0x80113ae8,%edx
80103cb5: 8b 45 ec mov -0x14(%ebp),%eax
80103cb8: 89 10 mov %edx,(%eax)
for (i = 0; i < log.lh.n; i++) {
80103cba: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80103cc1: eb 1b jmp 80103cde <write_head+0x59>
hb->block[i] = log.lh.block[i];
80103cc3: 8b 45 f4 mov -0xc(%ebp),%eax
80103cc6: 83 c0 10 add $0x10,%eax
80103cc9: 8b 0c 85 ac 3a 11 80 mov -0x7feec554(,%eax,4),%ecx
80103cd0: 8b 45 ec mov -0x14(%ebp),%eax
80103cd3: 8b 55 f4 mov -0xc(%ebp),%edx
80103cd6: 89 4c 90 04 mov %ecx,0x4(%eax,%edx,4)
{
struct buf *buf = bread(log.dev, log.start);
struct logheader *hb = (struct logheader *) (buf->data);
int i;
hb->n = log.lh.n;
for (i = 0; i < log.lh.n; i++) {
80103cda: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80103cde: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103ce3: 3b 45 f4 cmp -0xc(%ebp),%eax
80103ce6: 7f db jg 80103cc3 <write_head+0x3e>
hb->block[i] = log.lh.block[i];
}
bwrite(buf);
80103ce8: 8b 45 f0 mov -0x10(%ebp),%eax
80103ceb: 89 04 24 mov %eax,(%esp)
80103cee: e8 ea c4 ff ff call 801001dd <bwrite>
brelse(buf);
80103cf3: 8b 45 f0 mov -0x10(%ebp),%eax
80103cf6: 89 04 24 mov %eax,(%esp)
80103cf9: e8 19 c5 ff ff call 80100217 <brelse>
}
80103cfe: c9 leave
80103cff: c3 ret
80103d00 <recover_from_log>:
static void
recover_from_log(void)
{
80103d00: 55 push %ebp
80103d01: 89 e5 mov %esp,%ebp
80103d03: 83 ec 08 sub $0x8,%esp
read_head();
80103d06: e8 0b ff ff ff call 80103c16 <read_head>
install_trans(); // if committed, copy from log to disk
80103d0b: e8 5b fe ff ff call 80103b6b <install_trans>
log.lh.n = 0;
80103d10: c7 05 e8 3a 11 80 00 movl $0x0,0x80113ae8
80103d17: 00 00 00
write_head(); // clear the log
80103d1a: e8 66 ff ff ff call 80103c85 <write_head>
}
80103d1f: c9 leave
80103d20: c3 ret
80103d21 <begin_op>:
// called at the start of each FS system call.
void
begin_op(void)
{
80103d21: 55 push %ebp
80103d22: 89 e5 mov %esp,%ebp
80103d24: 83 ec 18 sub $0x18,%esp
acquire(&log.lock);
80103d27: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103d2e: e8 78 1e 00 00 call 80105bab <acquire>
while(1){
if(log.committing){
80103d33: a1 e0 3a 11 80 mov 0x80113ae0,%eax
80103d38: 85 c0 test %eax,%eax
80103d3a: 74 16 je 80103d52 <begin_op+0x31>
sleep(&log, &log.lock);
80103d3c: c7 44 24 04 a0 3a 11 movl $0x80113aa0,0x4(%esp)
80103d43: 80
80103d44: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103d4b: e8 6f 19 00 00 call 801056bf <sleep>
} else {
log.outstanding += 1;
release(&log.lock);
break;
}
}
80103d50: eb e1 jmp 80103d33 <begin_op+0x12>
{
acquire(&log.lock);
while(1){
if(log.committing){
sleep(&log, &log.lock);
} else if(log.lh.n + (log.outstanding+1)*MAXOPBLOCKS > LOGSIZE){
80103d52: 8b 0d e8 3a 11 80 mov 0x80113ae8,%ecx
80103d58: a1 dc 3a 11 80 mov 0x80113adc,%eax
80103d5d: 8d 50 01 lea 0x1(%eax),%edx
80103d60: 89 d0 mov %edx,%eax
80103d62: c1 e0 02 shl $0x2,%eax
80103d65: 01 d0 add %edx,%eax
80103d67: 01 c0 add %eax,%eax
80103d69: 01 c8 add %ecx,%eax
80103d6b: 83 f8 1e cmp $0x1e,%eax
80103d6e: 7e 16 jle 80103d86 <begin_op+0x65>
// this op might exhaust log space; wait for commit.
sleep(&log, &log.lock);
80103d70: c7 44 24 04 a0 3a 11 movl $0x80113aa0,0x4(%esp)
80103d77: 80
80103d78: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103d7f: e8 3b 19 00 00 call 801056bf <sleep>
} else {
log.outstanding += 1;
release(&log.lock);
break;
}
}
80103d84: eb ad jmp 80103d33 <begin_op+0x12>
sleep(&log, &log.lock);
} else if(log.lh.n + (log.outstanding+1)*MAXOPBLOCKS > LOGSIZE){
// this op might exhaust log space; wait for commit.
sleep(&log, &log.lock);
} else {
log.outstanding += 1;
80103d86: a1 dc 3a 11 80 mov 0x80113adc,%eax
80103d8b: 83 c0 01 add $0x1,%eax
80103d8e: a3 dc 3a 11 80 mov %eax,0x80113adc
release(&log.lock);
80103d93: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103d9a: e8 6e 1e 00 00 call 80105c0d <release>
break;
80103d9f: 90 nop
}
}
}
80103da0: c9 leave
80103da1: c3 ret
80103da2 <end_op>:
// called at the end of each FS system call.
// commits if this was the last outstanding operation.
void
end_op(void)
{
80103da2: 55 push %ebp
80103da3: 89 e5 mov %esp,%ebp
80103da5: 83 ec 28 sub $0x28,%esp
int do_commit = 0;
80103da8: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
acquire(&log.lock);
80103daf: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103db6: e8 f0 1d 00 00 call 80105bab <acquire>
log.outstanding -= 1;
80103dbb: a1 dc 3a 11 80 mov 0x80113adc,%eax
80103dc0: 83 e8 01 sub $0x1,%eax
80103dc3: a3 dc 3a 11 80 mov %eax,0x80113adc
if(log.committing)
80103dc8: a1 e0 3a 11 80 mov 0x80113ae0,%eax
80103dcd: 85 c0 test %eax,%eax
80103dcf: 74 0c je 80103ddd <end_op+0x3b>
panic("log.committing");
80103dd1: c7 04 24 28 95 10 80 movl $0x80109528,(%esp)
80103dd8: e8 60 c7 ff ff call 8010053d <panic>
if(log.outstanding == 0){
80103ddd: a1 dc 3a 11 80 mov 0x80113adc,%eax
80103de2: 85 c0 test %eax,%eax
80103de4: 75 13 jne 80103df9 <end_op+0x57>
do_commit = 1;
80103de6: c7 45 f4 01 00 00 00 movl $0x1,-0xc(%ebp)
log.committing = 1;
80103ded: c7 05 e0 3a 11 80 01 movl $0x1,0x80113ae0
80103df4: 00 00 00
80103df7: eb 0c jmp 80103e05 <end_op+0x63>
} else {
// begin_op() may be waiting for log space.
wakeup(&log);
80103df9: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103e00: e8 a3 19 00 00 call 801057a8 <wakeup>
}
release(&log.lock);
80103e05: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103e0c: e8 fc 1d 00 00 call 80105c0d <release>
if(do_commit){
80103e11: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80103e15: 74 33 je 80103e4a <end_op+0xa8>
// call commit w/o holding locks, since not allowed
// to sleep with locks.
commit();
80103e17: e8 db 00 00 00 call 80103ef7 <commit>
acquire(&log.lock);
80103e1c: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103e23: e8 83 1d 00 00 call 80105bab <acquire>
log.committing = 0;
80103e28: c7 05 e0 3a 11 80 00 movl $0x0,0x80113ae0
80103e2f: 00 00 00
wakeup(&log);
80103e32: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103e39: e8 6a 19 00 00 call 801057a8 <wakeup>
release(&log.lock);
80103e3e: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103e45: e8 c3 1d 00 00 call 80105c0d <release>
}
}
80103e4a: c9 leave
80103e4b: c3 ret
80103e4c <write_log>:
// Copy modified blocks from cache to log.
static void
write_log(void)
{
80103e4c: 55 push %ebp
80103e4d: 89 e5 mov %esp,%ebp
80103e4f: 83 ec 28 sub $0x28,%esp
int tail;
for (tail = 0; tail < log.lh.n; tail++) {
80103e52: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80103e59: e9 89 00 00 00 jmp 80103ee7 <write_log+0x9b>
struct buf *to = bread(log.dev, log.start+tail+1); // log block
80103e5e: a1 d4 3a 11 80 mov 0x80113ad4,%eax
80103e63: 03 45 f4 add -0xc(%ebp),%eax
80103e66: 83 c0 01 add $0x1,%eax
80103e69: 89 c2 mov %eax,%edx
80103e6b: a1 e4 3a 11 80 mov 0x80113ae4,%eax
80103e70: 89 54 24 04 mov %edx,0x4(%esp)
80103e74: 89 04 24 mov %eax,(%esp)
80103e77: e8 2a c3 ff ff call 801001a6 <bread>
80103e7c: 89 45 f0 mov %eax,-0x10(%ebp)
struct buf *from = bread(log.dev, log.lh.block[tail]); // cache block
80103e7f: 8b 45 f4 mov -0xc(%ebp),%eax
80103e82: 83 c0 10 add $0x10,%eax
80103e85: 8b 04 85 ac 3a 11 80 mov -0x7feec554(,%eax,4),%eax
80103e8c: 89 c2 mov %eax,%edx
80103e8e: a1 e4 3a 11 80 mov 0x80113ae4,%eax
80103e93: 89 54 24 04 mov %edx,0x4(%esp)
80103e97: 89 04 24 mov %eax,(%esp)
80103e9a: e8 07 c3 ff ff call 801001a6 <bread>
80103e9f: 89 45 ec mov %eax,-0x14(%ebp)
memmove(to->data, from->data, BSIZE);
80103ea2: 8b 45 ec mov -0x14(%ebp),%eax
80103ea5: 8d 50 18 lea 0x18(%eax),%edx
80103ea8: 8b 45 f0 mov -0x10(%ebp),%eax
80103eab: 83 c0 18 add $0x18,%eax
80103eae: c7 44 24 08 00 02 00 movl $0x200,0x8(%esp)
80103eb5: 00
80103eb6: 89 54 24 04 mov %edx,0x4(%esp)
80103eba: 89 04 24 mov %eax,(%esp)
80103ebd: e8 0b 20 00 00 call 80105ecd <memmove>
bwrite(to); // write the log
80103ec2: 8b 45 f0 mov -0x10(%ebp),%eax
80103ec5: 89 04 24 mov %eax,(%esp)
80103ec8: e8 10 c3 ff ff call 801001dd <bwrite>
brelse(from);
80103ecd: 8b 45 ec mov -0x14(%ebp),%eax
80103ed0: 89 04 24 mov %eax,(%esp)
80103ed3: e8 3f c3 ff ff call 80100217 <brelse>
brelse(to);
80103ed8: 8b 45 f0 mov -0x10(%ebp),%eax
80103edb: 89 04 24 mov %eax,(%esp)
80103ede: e8 34 c3 ff ff call 80100217 <brelse>
static void
write_log(void)
{
int tail;
for (tail = 0; tail < log.lh.n; tail++) {
80103ee3: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80103ee7: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103eec: 3b 45 f4 cmp -0xc(%ebp),%eax
80103eef: 0f 8f 69 ff ff ff jg 80103e5e <write_log+0x12>
memmove(to->data, from->data, BSIZE);
bwrite(to); // write the log
brelse(from);
brelse(to);
}
}
80103ef5: c9 leave
80103ef6: c3 ret
80103ef7 <commit>:
static void
commit()
{
80103ef7: 55 push %ebp
80103ef8: 89 e5 mov %esp,%ebp
80103efa: 83 ec 08 sub $0x8,%esp
if (log.lh.n > 0) {
80103efd: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103f02: 85 c0 test %eax,%eax
80103f04: 7e 1e jle 80103f24 <commit+0x2d>
write_log(); // Write modified blocks from cache to log
80103f06: e8 41 ff ff ff call 80103e4c <write_log>
write_head(); // Write header to disk -- the real commit
80103f0b: e8 75 fd ff ff call 80103c85 <write_head>
install_trans(); // Now install writes to home locations
80103f10: e8 56 fc ff ff call 80103b6b <install_trans>
log.lh.n = 0;
80103f15: c7 05 e8 3a 11 80 00 movl $0x0,0x80113ae8
80103f1c: 00 00 00
write_head(); // Erase the transaction from the log
80103f1f: e8 61 fd ff ff call 80103c85 <write_head>
}
}
80103f24: c9 leave
80103f25: c3 ret
80103f26 <log_write>:
// modify bp->data[]
// log_write(bp)
// brelse(bp)
void
log_write(struct buf *b)
{
80103f26: 55 push %ebp
80103f27: 89 e5 mov %esp,%ebp
80103f29: 83 ec 28 sub $0x28,%esp
int i;
if (log.lh.n >= LOGSIZE || log.lh.n >= log.size - 1)
80103f2c: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103f31: 83 f8 1d cmp $0x1d,%eax
80103f34: 7f 12 jg 80103f48 <log_write+0x22>
80103f36: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103f3b: 8b 15 d8 3a 11 80 mov 0x80113ad8,%edx
80103f41: 83 ea 01 sub $0x1,%edx
80103f44: 39 d0 cmp %edx,%eax
80103f46: 7c 0c jl 80103f54 <log_write+0x2e>
panic("too big a transaction");
80103f48: c7 04 24 37 95 10 80 movl $0x80109537,(%esp)
80103f4f: e8 e9 c5 ff ff call 8010053d <panic>
if (log.outstanding < 1)
80103f54: a1 dc 3a 11 80 mov 0x80113adc,%eax
80103f59: 85 c0 test %eax,%eax
80103f5b: 7f 0c jg 80103f69 <log_write+0x43>
panic("log_write outside of trans");
80103f5d: c7 04 24 4d 95 10 80 movl $0x8010954d,(%esp)
80103f64: e8 d4 c5 ff ff call 8010053d <panic>
acquire(&log.lock);
80103f69: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103f70: e8 36 1c 00 00 call 80105bab <acquire>
for (i = 0; i < log.lh.n; i++) {
80103f75: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80103f7c: eb 1d jmp 80103f9b <log_write+0x75>
if (log.lh.block[i] == b->blockno) // log absorbtion
80103f7e: 8b 45 f4 mov -0xc(%ebp),%eax
80103f81: 83 c0 10 add $0x10,%eax
80103f84: 8b 04 85 ac 3a 11 80 mov -0x7feec554(,%eax,4),%eax
80103f8b: 89 c2 mov %eax,%edx
80103f8d: 8b 45 08 mov 0x8(%ebp),%eax
80103f90: 8b 40 08 mov 0x8(%eax),%eax
80103f93: 39 c2 cmp %eax,%edx
80103f95: 74 10 je 80103fa7 <log_write+0x81>
panic("too big a transaction");
if (log.outstanding < 1)
panic("log_write outside of trans");
acquire(&log.lock);
for (i = 0; i < log.lh.n; i++) {
80103f97: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80103f9b: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103fa0: 3b 45 f4 cmp -0xc(%ebp),%eax
80103fa3: 7f d9 jg 80103f7e <log_write+0x58>
80103fa5: eb 01 jmp 80103fa8 <log_write+0x82>
if (log.lh.block[i] == b->blockno) // log absorbtion
break;
80103fa7: 90 nop
}
log.lh.block[i] = b->blockno;
80103fa8: 8b 45 08 mov 0x8(%ebp),%eax
80103fab: 8b 40 08 mov 0x8(%eax),%eax
80103fae: 8b 55 f4 mov -0xc(%ebp),%edx
80103fb1: 83 c2 10 add $0x10,%edx
80103fb4: 89 04 95 ac 3a 11 80 mov %eax,-0x7feec554(,%edx,4)
if (i == log.lh.n)
80103fbb: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103fc0: 3b 45 f4 cmp -0xc(%ebp),%eax
80103fc3: 75 0d jne 80103fd2 <log_write+0xac>
log.lh.n++;
80103fc5: a1 e8 3a 11 80 mov 0x80113ae8,%eax
80103fca: 83 c0 01 add $0x1,%eax
80103fcd: a3 e8 3a 11 80 mov %eax,0x80113ae8
b->flags |= B_DIRTY; // prevent eviction
80103fd2: 8b 45 08 mov 0x8(%ebp),%eax
80103fd5: 8b 00 mov (%eax),%eax
80103fd7: 89 c2 mov %eax,%edx
80103fd9: 83 ca 04 or $0x4,%edx
80103fdc: 8b 45 08 mov 0x8(%ebp),%eax
80103fdf: 89 10 mov %edx,(%eax)
release(&log.lock);
80103fe1: c7 04 24 a0 3a 11 80 movl $0x80113aa0,(%esp)
80103fe8: e8 20 1c 00 00 call 80105c0d <release>
}
80103fed: c9 leave
80103fee: c3 ret
...
80103ff0 <v2p>:
80103ff0: 55 push %ebp
80103ff1: 89 e5 mov %esp,%ebp
80103ff3: 8b 45 08 mov 0x8(%ebp),%eax
80103ff6: 05 00 00 00 80 add $0x80000000,%eax
80103ffb: 5d pop %ebp
80103ffc: c3 ret
80103ffd <p2v>:
static inline void *p2v(uint a) { return (void *) ((a) + KERNBASE); }
80103ffd: 55 push %ebp
80103ffe: 89 e5 mov %esp,%ebp
80104000: 8b 45 08 mov 0x8(%ebp),%eax
80104003: 05 00 00 00 80 add $0x80000000,%eax
80104008: 5d pop %ebp
80104009: c3 ret
8010400a <xchg>:
asm volatile("sti");
}
static inline uint
xchg(volatile uint *addr, uint newval)
{
8010400a: 55 push %ebp
8010400b: 89 e5 mov %esp,%ebp
8010400d: 53 push %ebx
8010400e: 83 ec 10 sub $0x10,%esp
uint result;
// The + in "+m" denotes a read-modify-write operand.
asm volatile("lock; xchgl %0, %1" :
"+m" (*addr), "=a" (result) :
80104011: 8b 55 08 mov 0x8(%ebp),%edx
xchg(volatile uint *addr, uint newval)
{
uint result;
// The + in "+m" denotes a read-modify-write operand.
asm volatile("lock; xchgl %0, %1" :
80104014: 8b 45 0c mov 0xc(%ebp),%eax
"+m" (*addr), "=a" (result) :
80104017: 8b 4d 08 mov 0x8(%ebp),%ecx
xchg(volatile uint *addr, uint newval)
{
uint result;
// The + in "+m" denotes a read-modify-write operand.
asm volatile("lock; xchgl %0, %1" :
8010401a: 89 c3 mov %eax,%ebx
8010401c: 89 d8 mov %ebx,%eax
8010401e: f0 87 02 lock xchg %eax,(%edx)
80104021: 89 c3 mov %eax,%ebx
80104023: 89 5d f8 mov %ebx,-0x8(%ebp)
"+m" (*addr), "=a" (result) :
"1" (newval) :
"cc");
return result;
80104026: 8b 45 f8 mov -0x8(%ebp),%eax
}
80104029: 83 c4 10 add $0x10,%esp
8010402c: 5b pop %ebx
8010402d: 5d pop %ebp
8010402e: c3 ret
8010402f <main>:
// Bootstrap processor starts running C code here.
// Allocate a real stack and switch to it, first
// doing some setup required for memory allocator to work.
int
main(void)
{
8010402f: 55 push %ebp
80104030: 89 e5 mov %esp,%ebp
80104032: 83 e4 f0 and $0xfffffff0,%esp
80104035: 83 ec 10 sub $0x10,%esp
kinit1(end, P2V(4*1024*1024)); // phys page allocator
80104038: c7 44 24 04 00 00 40 movl $0x80400000,0x4(%esp)
8010403f: 80
80104040: c7 04 24 7c 6e 11 80 movl $0x80116e7c,(%esp)
80104047: e8 5d f2 ff ff call 801032a9 <kinit1>
kvmalloc(); // kernel page table
8010404c: e8 b5 4a 00 00 call 80108b06 <kvmalloc>
mpinit(); // collect info about this machine
80104051: e8 4f 04 00 00 call 801044a5 <mpinit>
lapicinit();
80104056: e8 d7 f5 ff ff call 80103632 <lapicinit>
seginit(); // set up segments
8010405b: e8 49 44 00 00 call 801084a9 <seginit>
cprintf("\ncpu%d: starting xv6\n\n", cpu->id);
80104060: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80104066: 0f b6 00 movzbl (%eax),%eax
80104069: 0f b6 c0 movzbl %al,%eax
8010406c: 89 44 24 04 mov %eax,0x4(%esp)
80104070: c7 04 24 68 95 10 80 movl $0x80109568,(%esp)
80104077: e8 25 c3 ff ff call 801003a1 <cprintf>
picinit(); // interrupt controller
8010407c: e8 89 06 00 00 call 8010470a <picinit>
ioapicinit(); // another interrupt controller
80104081: e8 13 f1 ff ff call 80103199 <ioapicinit>
consoleinit(); // I/O devices & their interrupts
80104086: e8 21 d2 ff ff call 801012ac <consoleinit>
uartinit(); // serial port
8010408b: e8 64 37 00 00 call 801077f4 <uartinit>
pinit(); // process table
80104090: e8 8a 0b 00 00 call 80104c1f <pinit>
tvinit(); // trap vectors
80104095: e8 a1 32 00 00 call 8010733b <tvinit>
binit(); // buffer cache
8010409a: e8 95 bf ff ff call 80100034 <binit>
fileinit(); // file table
8010409f: e8 98 d6 ff ff call 8010173c <fileinit>
ideinit(); // disk
801040a4: e8 21 ed ff ff call 80102dca <ideinit>
if(!ismp)
801040a9: a1 84 3b 11 80 mov 0x80113b84,%eax
801040ae: 85 c0 test %eax,%eax
801040b0: 75 05 jne 801040b7 <main+0x88>
timerinit(); // uniprocessor timer
801040b2: e8 c7 31 00 00 call 8010727e <timerinit>
startothers(); // start other processors
801040b7: e8 7f 00 00 00 call 8010413b <startothers>
kinit2(P2V(4*1024*1024), P2V(PHYSTOP)); // must come after startothers()
801040bc: c7 44 24 04 00 00 00 movl $0x8e000000,0x4(%esp)
801040c3: 8e
801040c4: c7 04 24 00 00 40 80 movl $0x80400000,(%esp)
801040cb: e8 11 f2 ff ff call 801032e1 <kinit2>
userinit(); // first user process
801040d0: e8 75 0c 00 00 call 80104d4a <userinit>
// Finish setting up this processor in mpmain.
mpmain();
801040d5: e8 1a 00 00 00 call 801040f4 <mpmain>
801040da <mpenter>:
}
// Other CPUs jump here from entryother.S.
static void
mpenter(void)
{
801040da: 55 push %ebp
801040db: 89 e5 mov %esp,%ebp
801040dd: 83 ec 08 sub $0x8,%esp
switchkvm();
801040e0: e8 38 4a 00 00 call 80108b1d <switchkvm>
seginit();
801040e5: e8 bf 43 00 00 call 801084a9 <seginit>
lapicinit();
801040ea: e8 43 f5 ff ff call 80103632 <lapicinit>
mpmain();
801040ef: e8 00 00 00 00 call 801040f4 <mpmain>
801040f4 <mpmain>:
}
// Common CPU setup code.
static void
mpmain(void)
{
801040f4: 55 push %ebp
801040f5: 89 e5 mov %esp,%ebp
801040f7: 83 ec 18 sub $0x18,%esp
cprintf("cpu%d: starting\n", cpu->id);
801040fa: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80104100: 0f b6 00 movzbl (%eax),%eax
80104103: 0f b6 c0 movzbl %al,%eax
80104106: 89 44 24 04 mov %eax,0x4(%esp)
8010410a: c7 04 24 7f 95 10 80 movl $0x8010957f,(%esp)
80104111: e8 8b c2 ff ff call 801003a1 <cprintf>
idtinit(); // load idt register
80104116: e8 94 33 00 00 call 801074af <idtinit>
xchg(&cpu->started, 1); // tell startothers() we're up
8010411b: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80104121: 05 a8 00 00 00 add $0xa8,%eax
80104126: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
8010412d: 00
8010412e: 89 04 24 mov %eax,(%esp)
80104131: e8 d4 fe ff ff call 8010400a <xchg>
scheduler(); // start running processes
80104136: e8 56 14 00 00 call 80105591 <scheduler>
8010413b <startothers>:
pde_t entrypgdir[]; // For entry.S
// Start the non-boot (AP) processors.
static void
startothers(void)
{
8010413b: 55 push %ebp
8010413c: 89 e5 mov %esp,%ebp
8010413e: 53 push %ebx
8010413f: 83 ec 24 sub $0x24,%esp
char *stack;
// Write entry code to unused memory at 0x7000.
// The linker has placed the image of entryother.S in
// _binary_entryother_start.
code = p2v(0x7000);
80104142: c7 04 24 00 70 00 00 movl $0x7000,(%esp)
80104149: e8 af fe ff ff call 80103ffd <p2v>
8010414e: 89 45 f0 mov %eax,-0x10(%ebp)
memmove(code, _binary_entryother_start, (uint)_binary_entryother_size);
80104151: b8 8a 00 00 00 mov $0x8a,%eax
80104156: 89 44 24 08 mov %eax,0x8(%esp)
8010415a: c7 44 24 04 2c c5 10 movl $0x8010c52c,0x4(%esp)
80104161: 80
80104162: 8b 45 f0 mov -0x10(%ebp),%eax
80104165: 89 04 24 mov %eax,(%esp)
80104168: e8 60 1d 00 00 call 80105ecd <memmove>
for(c = cpus; c < cpus+ncpu; c++){
8010416d: c7 45 f4 a0 3b 11 80 movl $0x80113ba0,-0xc(%ebp)
80104174: e9 86 00 00 00 jmp 801041ff <startothers+0xc4>
if(c == cpus+cpunum()) // We've started already.
80104179: e8 11 f6 ff ff call 8010378f <cpunum>
8010417e: 69 c0 bc 00 00 00 imul $0xbc,%eax,%eax
80104184: 05 a0 3b 11 80 add $0x80113ba0,%eax
80104189: 3b 45 f4 cmp -0xc(%ebp),%eax
8010418c: 74 69 je 801041f7 <startothers+0xbc>
continue;
// Tell entryother.S what stack to use, where to enter, and what
// pgdir to use. We cannot use kpgdir yet, because the AP processor
// is running in low memory, so we use entrypgdir for the APs too.
stack = kalloc();
8010418e: e8 44 f2 ff ff call 801033d7 <kalloc>
80104193: 89 45 ec mov %eax,-0x14(%ebp)
*(void**)(code-4) = stack + KSTACKSIZE;
80104196: 8b 45 f0 mov -0x10(%ebp),%eax
80104199: 83 e8 04 sub $0x4,%eax
8010419c: 8b 55 ec mov -0x14(%ebp),%edx
8010419f: 81 c2 00 10 00 00 add $0x1000,%edx
801041a5: 89 10 mov %edx,(%eax)
*(void**)(code-8) = mpenter;
801041a7: 8b 45 f0 mov -0x10(%ebp),%eax
801041aa: 83 e8 08 sub $0x8,%eax
801041ad: c7 00 da 40 10 80 movl $0x801040da,(%eax)
*(int**)(code-12) = (void *) v2p(entrypgdir);
801041b3: 8b 45 f0 mov -0x10(%ebp),%eax
801041b6: 8d 58 f4 lea -0xc(%eax),%ebx
801041b9: c7 04 24 00 b0 10 80 movl $0x8010b000,(%esp)
801041c0: e8 2b fe ff ff call 80103ff0 <v2p>
801041c5: 89 03 mov %eax,(%ebx)
lapicstartap(c->id, v2p(code));
801041c7: 8b 45 f0 mov -0x10(%ebp),%eax
801041ca: 89 04 24 mov %eax,(%esp)
801041cd: e8 1e fe ff ff call 80103ff0 <v2p>
801041d2: 8b 55 f4 mov -0xc(%ebp),%edx
801041d5: 0f b6 12 movzbl (%edx),%edx
801041d8: 0f b6 d2 movzbl %dl,%edx
801041db: 89 44 24 04 mov %eax,0x4(%esp)
801041df: 89 14 24 mov %edx,(%esp)
801041e2: e8 2e f6 ff ff call 80103815 <lapicstartap>
// wait for cpu to finish mpmain()
while(c->started == 0)
801041e7: 90 nop
801041e8: 8b 45 f4 mov -0xc(%ebp),%eax
801041eb: 8b 80 a8 00 00 00 mov 0xa8(%eax),%eax
801041f1: 85 c0 test %eax,%eax
801041f3: 74 f3 je 801041e8 <startothers+0xad>
801041f5: eb 01 jmp 801041f8 <startothers+0xbd>
code = p2v(0x7000);
memmove(code, _binary_entryother_start, (uint)_binary_entryother_size);
for(c = cpus; c < cpus+ncpu; c++){
if(c == cpus+cpunum()) // We've started already.
continue;
801041f7: 90 nop
// The linker has placed the image of entryother.S in
// _binary_entryother_start.
code = p2v(0x7000);
memmove(code, _binary_entryother_start, (uint)_binary_entryother_size);
for(c = cpus; c < cpus+ncpu; c++){
801041f8: 81 45 f4 bc 00 00 00 addl $0xbc,-0xc(%ebp)
801041ff: a1 80 41 11 80 mov 0x80114180,%eax
80104204: 69 c0 bc 00 00 00 imul $0xbc,%eax,%eax
8010420a: 05 a0 3b 11 80 add $0x80113ba0,%eax
8010420f: 3b 45 f4 cmp -0xc(%ebp),%eax
80104212: 0f 87 61 ff ff ff ja 80104179 <startothers+0x3e>
// wait for cpu to finish mpmain()
while(c->started == 0)
;
}
}
80104218: 83 c4 24 add $0x24,%esp
8010421b: 5b pop %ebx
8010421c: 5d pop %ebp
8010421d: c3 ret
...
80104220 <p2v>:
80104220: 55 push %ebp
80104221: 89 e5 mov %esp,%ebp
80104223: 8b 45 08 mov 0x8(%ebp),%eax
80104226: 05 00 00 00 80 add $0x80000000,%eax
8010422b: 5d pop %ebp
8010422c: c3 ret
8010422d <inb>:
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
8010422d: 55 push %ebp
8010422e: 89 e5 mov %esp,%ebp
80104230: 53 push %ebx
80104231: 83 ec 14 sub $0x14,%esp
80104234: 8b 45 08 mov 0x8(%ebp),%eax
80104237: 66 89 45 e8 mov %ax,-0x18(%ebp)
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
8010423b: 0f b7 55 e8 movzwl -0x18(%ebp),%edx
8010423f: 66 89 55 ea mov %dx,-0x16(%ebp)
80104243: 0f b7 55 ea movzwl -0x16(%ebp),%edx
80104247: ec in (%dx),%al
80104248: 89 c3 mov %eax,%ebx
8010424a: 88 5d fb mov %bl,-0x5(%ebp)
return data;
8010424d: 0f b6 45 fb movzbl -0x5(%ebp),%eax
}
80104251: 83 c4 14 add $0x14,%esp
80104254: 5b pop %ebx
80104255: 5d pop %ebp
80104256: c3 ret
80104257 <outb>:
"memory", "cc");
}
static inline void
outb(ushort port, uchar data)
{
80104257: 55 push %ebp
80104258: 89 e5 mov %esp,%ebp
8010425a: 83 ec 08 sub $0x8,%esp
8010425d: 8b 55 08 mov 0x8(%ebp),%edx
80104260: 8b 45 0c mov 0xc(%ebp),%eax
80104263: 66 89 55 fc mov %dx,-0x4(%ebp)
80104267: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
8010426a: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
8010426e: 0f b7 55 fc movzwl -0x4(%ebp),%edx
80104272: ee out %al,(%dx)
}
80104273: c9 leave
80104274: c3 ret
80104275 <mpbcpu>:
int ncpu;
uchar ioapicid;
int
mpbcpu(void)
{
80104275: 55 push %ebp
80104276: 89 e5 mov %esp,%ebp
return bcpu-cpus;
80104278: a1 64 c6 10 80 mov 0x8010c664,%eax
8010427d: 89 c2 mov %eax,%edx
8010427f: b8 a0 3b 11 80 mov $0x80113ba0,%eax
80104284: 89 d1 mov %edx,%ecx
80104286: 29 c1 sub %eax,%ecx
80104288: 89 c8 mov %ecx,%eax
8010428a: c1 f8 02 sar $0x2,%eax
8010428d: 69 c0 cf 46 7d 67 imul $0x677d46cf,%eax,%eax
}
80104293: 5d pop %ebp
80104294: c3 ret
80104295 <sum>:
static uchar
sum(uchar *addr, int len)
{
80104295: 55 push %ebp
80104296: 89 e5 mov %esp,%ebp
80104298: 83 ec 10 sub $0x10,%esp
int i, sum;
sum = 0;
8010429b: c7 45 f8 00 00 00 00 movl $0x0,-0x8(%ebp)
for(i=0; i<len; i++)
801042a2: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp)
801042a9: eb 13 jmp 801042be <sum+0x29>
sum += addr[i];
801042ab: 8b 45 fc mov -0x4(%ebp),%eax
801042ae: 03 45 08 add 0x8(%ebp),%eax
801042b1: 0f b6 00 movzbl (%eax),%eax
801042b4: 0f b6 c0 movzbl %al,%eax
801042b7: 01 45 f8 add %eax,-0x8(%ebp)
sum(uchar *addr, int len)
{
int i, sum;
sum = 0;
for(i=0; i<len; i++)
801042ba: 83 45 fc 01 addl $0x1,-0x4(%ebp)
801042be: 8b 45 fc mov -0x4(%ebp),%eax
801042c1: 3b 45 0c cmp 0xc(%ebp),%eax
801042c4: 7c e5 jl 801042ab <sum+0x16>
sum += addr[i];
return sum;
801042c6: 8b 45 f8 mov -0x8(%ebp),%eax
}
801042c9: c9 leave
801042ca: c3 ret
801042cb <mpsearch1>:
// Look for an MP structure in the len bytes at addr.
static struct mp*
mpsearch1(uint a, int len)
{
801042cb: 55 push %ebp
801042cc: 89 e5 mov %esp,%ebp
801042ce: 83 ec 28 sub $0x28,%esp
uchar *e, *p, *addr;
addr = p2v(a);
801042d1: 8b 45 08 mov 0x8(%ebp),%eax
801042d4: 89 04 24 mov %eax,(%esp)
801042d7: e8 44 ff ff ff call 80104220 <p2v>
801042dc: 89 45 f0 mov %eax,-0x10(%ebp)
e = addr+len;
801042df: 8b 45 0c mov 0xc(%ebp),%eax
801042e2: 03 45 f0 add -0x10(%ebp),%eax
801042e5: 89 45 ec mov %eax,-0x14(%ebp)
for(p = addr; p < e; p += sizeof(struct mp))
801042e8: 8b 45 f0 mov -0x10(%ebp),%eax
801042eb: 89 45 f4 mov %eax,-0xc(%ebp)
801042ee: eb 3f jmp 8010432f <mpsearch1+0x64>
if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0)
801042f0: c7 44 24 08 04 00 00 movl $0x4,0x8(%esp)
801042f7: 00
801042f8: c7 44 24 04 90 95 10 movl $0x80109590,0x4(%esp)
801042ff: 80
80104300: 8b 45 f4 mov -0xc(%ebp),%eax
80104303: 89 04 24 mov %eax,(%esp)
80104306: e8 66 1b 00 00 call 80105e71 <memcmp>
8010430b: 85 c0 test %eax,%eax
8010430d: 75 1c jne 8010432b <mpsearch1+0x60>
8010430f: c7 44 24 04 10 00 00 movl $0x10,0x4(%esp)
80104316: 00
80104317: 8b 45 f4 mov -0xc(%ebp),%eax
8010431a: 89 04 24 mov %eax,(%esp)
8010431d: e8 73 ff ff ff call 80104295 <sum>
80104322: 84 c0 test %al,%al
80104324: 75 05 jne 8010432b <mpsearch1+0x60>
return (struct mp*)p;
80104326: 8b 45 f4 mov -0xc(%ebp),%eax
80104329: eb 11 jmp 8010433c <mpsearch1+0x71>
{
uchar *e, *p, *addr;
addr = p2v(a);
e = addr+len;
for(p = addr; p < e; p += sizeof(struct mp))
8010432b: 83 45 f4 10 addl $0x10,-0xc(%ebp)
8010432f: 8b 45 f4 mov -0xc(%ebp),%eax
80104332: 3b 45 ec cmp -0x14(%ebp),%eax
80104335: 72 b9 jb 801042f0 <mpsearch1+0x25>
if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0)
return (struct mp*)p;
return 0;
80104337: b8 00 00 00 00 mov $0x0,%eax
}
8010433c: c9 leave
8010433d: c3 ret
8010433e <mpsearch>:
// 1) in the first KB of the EBDA;
// 2) in the last KB of system base memory;
// 3) in the BIOS ROM between 0xE0000 and 0xFFFFF.
static struct mp*
mpsearch(void)
{
8010433e: 55 push %ebp
8010433f: 89 e5 mov %esp,%ebp
80104341: 83 ec 28 sub $0x28,%esp
uchar *bda;
uint p;
struct mp *mp;
bda = (uchar *) P2V(0x400);
80104344: c7 45 f4 00 04 00 80 movl $0x80000400,-0xc(%ebp)
if((p = ((bda[0x0F]<<8)| bda[0x0E]) << 4)){
8010434b: 8b 45 f4 mov -0xc(%ebp),%eax
8010434e: 83 c0 0f add $0xf,%eax
80104351: 0f b6 00 movzbl (%eax),%eax
80104354: 0f b6 c0 movzbl %al,%eax
80104357: 89 c2 mov %eax,%edx
80104359: c1 e2 08 shl $0x8,%edx
8010435c: 8b 45 f4 mov -0xc(%ebp),%eax
8010435f: 83 c0 0e add $0xe,%eax
80104362: 0f b6 00 movzbl (%eax),%eax
80104365: 0f b6 c0 movzbl %al,%eax
80104368: 09 d0 or %edx,%eax
8010436a: c1 e0 04 shl $0x4,%eax
8010436d: 89 45 f0 mov %eax,-0x10(%ebp)
80104370: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80104374: 74 21 je 80104397 <mpsearch+0x59>
if((mp = mpsearch1(p, 1024)))
80104376: c7 44 24 04 00 04 00 movl $0x400,0x4(%esp)
8010437d: 00
8010437e: 8b 45 f0 mov -0x10(%ebp),%eax
80104381: 89 04 24 mov %eax,(%esp)
80104384: e8 42 ff ff ff call 801042cb <mpsearch1>
80104389: 89 45 ec mov %eax,-0x14(%ebp)
8010438c: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
80104390: 74 50 je 801043e2 <mpsearch+0xa4>
return mp;
80104392: 8b 45 ec mov -0x14(%ebp),%eax
80104395: eb 5f jmp 801043f6 <mpsearch+0xb8>
} else {
p = ((bda[0x14]<<8)|bda[0x13])*1024;
80104397: 8b 45 f4 mov -0xc(%ebp),%eax
8010439a: 83 c0 14 add $0x14,%eax
8010439d: 0f b6 00 movzbl (%eax),%eax
801043a0: 0f b6 c0 movzbl %al,%eax
801043a3: 89 c2 mov %eax,%edx
801043a5: c1 e2 08 shl $0x8,%edx
801043a8: 8b 45 f4 mov -0xc(%ebp),%eax
801043ab: 83 c0 13 add $0x13,%eax
801043ae: 0f b6 00 movzbl (%eax),%eax
801043b1: 0f b6 c0 movzbl %al,%eax
801043b4: 09 d0 or %edx,%eax
801043b6: c1 e0 0a shl $0xa,%eax
801043b9: 89 45 f0 mov %eax,-0x10(%ebp)
if((mp = mpsearch1(p-1024, 1024)))
801043bc: 8b 45 f0 mov -0x10(%ebp),%eax
801043bf: 2d 00 04 00 00 sub $0x400,%eax
801043c4: c7 44 24 04 00 04 00 movl $0x400,0x4(%esp)
801043cb: 00
801043cc: 89 04 24 mov %eax,(%esp)
801043cf: e8 f7 fe ff ff call 801042cb <mpsearch1>
801043d4: 89 45 ec mov %eax,-0x14(%ebp)
801043d7: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
801043db: 74 05 je 801043e2 <mpsearch+0xa4>
return mp;
801043dd: 8b 45 ec mov -0x14(%ebp),%eax
801043e0: eb 14 jmp 801043f6 <mpsearch+0xb8>
}
return mpsearch1(0xF0000, 0x10000);
801043e2: c7 44 24 04 00 00 01 movl $0x10000,0x4(%esp)
801043e9: 00
801043ea: c7 04 24 00 00 0f 00 movl $0xf0000,(%esp)
801043f1: e8 d5 fe ff ff call 801042cb <mpsearch1>
}
801043f6: c9 leave
801043f7: c3 ret
801043f8 <mpconfig>:
// Check for correct signature, calculate the checksum and,
// if correct, check the version.
// To do: check extended table checksum.
static struct mpconf*
mpconfig(struct mp **pmp)
{
801043f8: 55 push %ebp
801043f9: 89 e5 mov %esp,%ebp
801043fb: 83 ec 28 sub $0x28,%esp
struct mpconf *conf;
struct mp *mp;
if((mp = mpsearch()) == 0 || mp->physaddr == 0)
801043fe: e8 3b ff ff ff call 8010433e <mpsearch>
80104403: 89 45 f4 mov %eax,-0xc(%ebp)
80104406: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
8010440a: 74 0a je 80104416 <mpconfig+0x1e>
8010440c: 8b 45 f4 mov -0xc(%ebp),%eax
8010440f: 8b 40 04 mov 0x4(%eax),%eax
80104412: 85 c0 test %eax,%eax
80104414: 75 0a jne 80104420 <mpconfig+0x28>
return 0;
80104416: b8 00 00 00 00 mov $0x0,%eax
8010441b: e9 83 00 00 00 jmp 801044a3 <mpconfig+0xab>
conf = (struct mpconf*) p2v((uint) mp->physaddr);
80104420: 8b 45 f4 mov -0xc(%ebp),%eax
80104423: 8b 40 04 mov 0x4(%eax),%eax
80104426: 89 04 24 mov %eax,(%esp)
80104429: e8 f2 fd ff ff call 80104220 <p2v>
8010442e: 89 45 f0 mov %eax,-0x10(%ebp)
if(memcmp(conf, "PCMP", 4) != 0)
80104431: c7 44 24 08 04 00 00 movl $0x4,0x8(%esp)
80104438: 00
80104439: c7 44 24 04 95 95 10 movl $0x80109595,0x4(%esp)
80104440: 80
80104441: 8b 45 f0 mov -0x10(%ebp),%eax
80104444: 89 04 24 mov %eax,(%esp)
80104447: e8 25 1a 00 00 call 80105e71 <memcmp>
8010444c: 85 c0 test %eax,%eax
8010444e: 74 07 je 80104457 <mpconfig+0x5f>
return 0;
80104450: b8 00 00 00 00 mov $0x0,%eax
80104455: eb 4c jmp 801044a3 <mpconfig+0xab>
if(conf->version != 1 && conf->version != 4)
80104457: 8b 45 f0 mov -0x10(%ebp),%eax
8010445a: 0f b6 40 06 movzbl 0x6(%eax),%eax
8010445e: 3c 01 cmp $0x1,%al
80104460: 74 12 je 80104474 <mpconfig+0x7c>
80104462: 8b 45 f0 mov -0x10(%ebp),%eax
80104465: 0f b6 40 06 movzbl 0x6(%eax),%eax
80104469: 3c 04 cmp $0x4,%al
8010446b: 74 07 je 80104474 <mpconfig+0x7c>
return 0;
8010446d: b8 00 00 00 00 mov $0x0,%eax
80104472: eb 2f jmp 801044a3 <mpconfig+0xab>
if(sum((uchar*)conf, conf->length) != 0)
80104474: 8b 45 f0 mov -0x10(%ebp),%eax
80104477: 0f b7 40 04 movzwl 0x4(%eax),%eax
8010447b: 0f b7 c0 movzwl %ax,%eax
8010447e: 89 44 24 04 mov %eax,0x4(%esp)
80104482: 8b 45 f0 mov -0x10(%ebp),%eax
80104485: 89 04 24 mov %eax,(%esp)
80104488: e8 08 fe ff ff call 80104295 <sum>
8010448d: 84 c0 test %al,%al
8010448f: 74 07 je 80104498 <mpconfig+0xa0>
return 0;
80104491: b8 00 00 00 00 mov $0x0,%eax
80104496: eb 0b jmp 801044a3 <mpconfig+0xab>
*pmp = mp;
80104498: 8b 45 08 mov 0x8(%ebp),%eax
8010449b: 8b 55 f4 mov -0xc(%ebp),%edx
8010449e: 89 10 mov %edx,(%eax)
return conf;
801044a0: 8b 45 f0 mov -0x10(%ebp),%eax
}
801044a3: c9 leave
801044a4: c3 ret
801044a5 <mpinit>:
void
mpinit(void)
{
801044a5: 55 push %ebp
801044a6: 89 e5 mov %esp,%ebp
801044a8: 83 ec 38 sub $0x38,%esp
struct mp *mp;
struct mpconf *conf;
struct mpproc *proc;
struct mpioapic *ioapic;
bcpu = &cpus[0];
801044ab: c7 05 64 c6 10 80 a0 movl $0x80113ba0,0x8010c664
801044b2: 3b 11 80
if((conf = mpconfig(&mp)) == 0)
801044b5: 8d 45 e0 lea -0x20(%ebp),%eax
801044b8: 89 04 24 mov %eax,(%esp)
801044bb: e8 38 ff ff ff call 801043f8 <mpconfig>
801044c0: 89 45 f0 mov %eax,-0x10(%ebp)
801044c3: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
801044c7: 0f 84 9c 01 00 00 je 80104669 <mpinit+0x1c4>
return;
ismp = 1;
801044cd: c7 05 84 3b 11 80 01 movl $0x1,0x80113b84
801044d4: 00 00 00
lapic = (uint*)conf->lapicaddr;
801044d7: 8b 45 f0 mov -0x10(%ebp),%eax
801044da: 8b 40 24 mov 0x24(%eax),%eax
801044dd: a3 9c 3a 11 80 mov %eax,0x80113a9c
for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){
801044e2: 8b 45 f0 mov -0x10(%ebp),%eax
801044e5: 83 c0 2c add $0x2c,%eax
801044e8: 89 45 f4 mov %eax,-0xc(%ebp)
801044eb: 8b 45 f0 mov -0x10(%ebp),%eax
801044ee: 0f b7 40 04 movzwl 0x4(%eax),%eax
801044f2: 0f b7 c0 movzwl %ax,%eax
801044f5: 03 45 f0 add -0x10(%ebp),%eax
801044f8: 89 45 ec mov %eax,-0x14(%ebp)
801044fb: e9 f4 00 00 00 jmp 801045f4 <mpinit+0x14f>
switch(*p){
80104500: 8b 45 f4 mov -0xc(%ebp),%eax
80104503: 0f b6 00 movzbl (%eax),%eax
80104506: 0f b6 c0 movzbl %al,%eax
80104509: 83 f8 04 cmp $0x4,%eax
8010450c: 0f 87 bf 00 00 00 ja 801045d1 <mpinit+0x12c>
80104512: 8b 04 85 d8 95 10 80 mov -0x7fef6a28(,%eax,4),%eax
80104519: ff e0 jmp *%eax
case MPPROC:
proc = (struct mpproc*)p;
8010451b: 8b 45 f4 mov -0xc(%ebp),%eax
8010451e: 89 45 e8 mov %eax,-0x18(%ebp)
if(ncpu != proc->apicid){
80104521: 8b 45 e8 mov -0x18(%ebp),%eax
80104524: 0f b6 40 01 movzbl 0x1(%eax),%eax
80104528: 0f b6 d0 movzbl %al,%edx
8010452b: a1 80 41 11 80 mov 0x80114180,%eax
80104530: 39 c2 cmp %eax,%edx
80104532: 74 2d je 80104561 <mpinit+0xbc>
cprintf("mpinit: ncpu=%d apicid=%d\n", ncpu, proc->apicid);
80104534: 8b 45 e8 mov -0x18(%ebp),%eax
80104537: 0f b6 40 01 movzbl 0x1(%eax),%eax
8010453b: 0f b6 d0 movzbl %al,%edx
8010453e: a1 80 41 11 80 mov 0x80114180,%eax
80104543: 89 54 24 08 mov %edx,0x8(%esp)
80104547: 89 44 24 04 mov %eax,0x4(%esp)
8010454b: c7 04 24 9a 95 10 80 movl $0x8010959a,(%esp)
80104552: e8 4a be ff ff call 801003a1 <cprintf>
ismp = 0;
80104557: c7 05 84 3b 11 80 00 movl $0x0,0x80113b84
8010455e: 00 00 00
}
if(proc->flags & MPBOOT)
80104561: 8b 45 e8 mov -0x18(%ebp),%eax
80104564: 0f b6 40 03 movzbl 0x3(%eax),%eax
80104568: 0f b6 c0 movzbl %al,%eax
8010456b: 83 e0 02 and $0x2,%eax
8010456e: 85 c0 test %eax,%eax
80104570: 74 15 je 80104587 <mpinit+0xe2>
bcpu = &cpus[ncpu];
80104572: a1 80 41 11 80 mov 0x80114180,%eax
80104577: 69 c0 bc 00 00 00 imul $0xbc,%eax,%eax
8010457d: 05 a0 3b 11 80 add $0x80113ba0,%eax
80104582: a3 64 c6 10 80 mov %eax,0x8010c664
cpus[ncpu].id = ncpu;
80104587: 8b 15 80 41 11 80 mov 0x80114180,%edx
8010458d: a1 80 41 11 80 mov 0x80114180,%eax
80104592: 69 d2 bc 00 00 00 imul $0xbc,%edx,%edx
80104598: 81 c2 a0 3b 11 80 add $0x80113ba0,%edx
8010459e: 88 02 mov %al,(%edx)
ncpu++;
801045a0: a1 80 41 11 80 mov 0x80114180,%eax
801045a5: 83 c0 01 add $0x1,%eax
801045a8: a3 80 41 11 80 mov %eax,0x80114180
p += sizeof(struct mpproc);
801045ad: 83 45 f4 14 addl $0x14,-0xc(%ebp)
continue;
801045b1: eb 41 jmp 801045f4 <mpinit+0x14f>
case MPIOAPIC:
ioapic = (struct mpioapic*)p;
801045b3: 8b 45 f4 mov -0xc(%ebp),%eax
801045b6: 89 45 e4 mov %eax,-0x1c(%ebp)
ioapicid = ioapic->apicno;
801045b9: 8b 45 e4 mov -0x1c(%ebp),%eax
801045bc: 0f b6 40 01 movzbl 0x1(%eax),%eax
801045c0: a2 80 3b 11 80 mov %al,0x80113b80
p += sizeof(struct mpioapic);
801045c5: 83 45 f4 08 addl $0x8,-0xc(%ebp)
continue;
801045c9: eb 29 jmp 801045f4 <mpinit+0x14f>
case MPBUS:
case MPIOINTR:
case MPLINTR:
p += 8;
801045cb: 83 45 f4 08 addl $0x8,-0xc(%ebp)
continue;
801045cf: eb 23 jmp 801045f4 <mpinit+0x14f>
default:
cprintf("mpinit: unknown config type %x\n", *p);
801045d1: 8b 45 f4 mov -0xc(%ebp),%eax
801045d4: 0f b6 00 movzbl (%eax),%eax
801045d7: 0f b6 c0 movzbl %al,%eax
801045da: 89 44 24 04 mov %eax,0x4(%esp)
801045de: c7 04 24 b8 95 10 80 movl $0x801095b8,(%esp)
801045e5: e8 b7 bd ff ff call 801003a1 <cprintf>
ismp = 0;
801045ea: c7 05 84 3b 11 80 00 movl $0x0,0x80113b84
801045f1: 00 00 00
bcpu = &cpus[0];
if((conf = mpconfig(&mp)) == 0)
return;
ismp = 1;
lapic = (uint*)conf->lapicaddr;
for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){
801045f4: 8b 45 f4 mov -0xc(%ebp),%eax
801045f7: 3b 45 ec cmp -0x14(%ebp),%eax
801045fa: 0f 82 00 ff ff ff jb 80104500 <mpinit+0x5b>
default:
cprintf("mpinit: unknown config type %x\n", *p);
ismp = 0;
}
}
if(!ismp){
80104600: a1 84 3b 11 80 mov 0x80113b84,%eax
80104605: 85 c0 test %eax,%eax
80104607: 75 1d jne 80104626 <mpinit+0x181>
// Didn't like what we found; fall back to no MP.
ncpu = 1;
80104609: c7 05 80 41 11 80 01 movl $0x1,0x80114180
80104610: 00 00 00
lapic = 0;
80104613: c7 05 9c 3a 11 80 00 movl $0x0,0x80113a9c
8010461a: 00 00 00
ioapicid = 0;
8010461d: c6 05 80 3b 11 80 00 movb $0x0,0x80113b80
return;
80104624: eb 44 jmp 8010466a <mpinit+0x1c5>
}
if(mp->imcrp){
80104626: 8b 45 e0 mov -0x20(%ebp),%eax
80104629: 0f b6 40 0c movzbl 0xc(%eax),%eax
8010462d: 84 c0 test %al,%al
8010462f: 74 39 je 8010466a <mpinit+0x1c5>
// Bochs doesn't support IMCR, so this doesn't run on Bochs.
// But it would on real hardware.
outb(0x22, 0x70); // Select IMCR
80104631: c7 44 24 04 70 00 00 movl $0x70,0x4(%esp)
80104638: 00
80104639: c7 04 24 22 00 00 00 movl $0x22,(%esp)
80104640: e8 12 fc ff ff call 80104257 <outb>
outb(0x23, inb(0x23) | 1); // Mask external interrupts.
80104645: c7 04 24 23 00 00 00 movl $0x23,(%esp)
8010464c: e8 dc fb ff ff call 8010422d <inb>
80104651: 83 c8 01 or $0x1,%eax
80104654: 0f b6 c0 movzbl %al,%eax
80104657: 89 44 24 04 mov %eax,0x4(%esp)
8010465b: c7 04 24 23 00 00 00 movl $0x23,(%esp)
80104662: e8 f0 fb ff ff call 80104257 <outb>
80104667: eb 01 jmp 8010466a <mpinit+0x1c5>
struct mpproc *proc;
struct mpioapic *ioapic;
bcpu = &cpus[0];
if((conf = mpconfig(&mp)) == 0)
return;
80104669: 90 nop
// Bochs doesn't support IMCR, so this doesn't run on Bochs.
// But it would on real hardware.
outb(0x22, 0x70); // Select IMCR
outb(0x23, inb(0x23) | 1); // Mask external interrupts.
}
}
8010466a: c9 leave
8010466b: c3 ret
8010466c <outb>:
"memory", "cc");
}
static inline void
outb(ushort port, uchar data)
{
8010466c: 55 push %ebp
8010466d: 89 e5 mov %esp,%ebp
8010466f: 83 ec 08 sub $0x8,%esp
80104672: 8b 55 08 mov 0x8(%ebp),%edx
80104675: 8b 45 0c mov 0xc(%ebp),%eax
80104678: 66 89 55 fc mov %dx,-0x4(%ebp)
8010467c: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
8010467f: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
80104683: 0f b7 55 fc movzwl -0x4(%ebp),%edx
80104687: ee out %al,(%dx)
}
80104688: c9 leave
80104689: c3 ret
8010468a <picsetmask>:
// Initial IRQ mask has interrupt 2 enabled (for slave 8259A).
static ushort irqmask = 0xFFFF & ~(1<<IRQ_SLAVE);
static void
picsetmask(ushort mask)
{
8010468a: 55 push %ebp
8010468b: 89 e5 mov %esp,%ebp
8010468d: 83 ec 0c sub $0xc,%esp
80104690: 8b 45 08 mov 0x8(%ebp),%eax
80104693: 66 89 45 fc mov %ax,-0x4(%ebp)
irqmask = mask;
80104697: 0f b7 45 fc movzwl -0x4(%ebp),%eax
8010469b: 66 a3 00 c0 10 80 mov %ax,0x8010c000
outb(IO_PIC1+1, mask);
801046a1: 0f b7 45 fc movzwl -0x4(%ebp),%eax
801046a5: 0f b6 c0 movzbl %al,%eax
801046a8: 89 44 24 04 mov %eax,0x4(%esp)
801046ac: c7 04 24 21 00 00 00 movl $0x21,(%esp)
801046b3: e8 b4 ff ff ff call 8010466c <outb>
outb(IO_PIC2+1, mask >> 8);
801046b8: 0f b7 45 fc movzwl -0x4(%ebp),%eax
801046bc: 66 c1 e8 08 shr $0x8,%ax
801046c0: 0f b6 c0 movzbl %al,%eax
801046c3: 89 44 24 04 mov %eax,0x4(%esp)
801046c7: c7 04 24 a1 00 00 00 movl $0xa1,(%esp)
801046ce: e8 99 ff ff ff call 8010466c <outb>
}
801046d3: c9 leave
801046d4: c3 ret
801046d5 <picenable>:
void
picenable(int irq)
{
801046d5: 55 push %ebp
801046d6: 89 e5 mov %esp,%ebp
801046d8: 53 push %ebx
801046d9: 83 ec 04 sub $0x4,%esp
picsetmask(irqmask & ~(1<<irq));
801046dc: 8b 45 08 mov 0x8(%ebp),%eax
801046df: ba 01 00 00 00 mov $0x1,%edx
801046e4: 89 d3 mov %edx,%ebx
801046e6: 89 c1 mov %eax,%ecx
801046e8: d3 e3 shl %cl,%ebx
801046ea: 89 d8 mov %ebx,%eax
801046ec: 89 c2 mov %eax,%edx
801046ee: f7 d2 not %edx
801046f0: 0f b7 05 00 c0 10 80 movzwl 0x8010c000,%eax
801046f7: 21 d0 and %edx,%eax
801046f9: 0f b7 c0 movzwl %ax,%eax
801046fc: 89 04 24 mov %eax,(%esp)
801046ff: e8 86 ff ff ff call 8010468a <picsetmask>
}
80104704: 83 c4 04 add $0x4,%esp
80104707: 5b pop %ebx
80104708: 5d pop %ebp
80104709: c3 ret
8010470a <picinit>:
// Initialize the 8259A interrupt controllers.
void
picinit(void)
{
8010470a: 55 push %ebp
8010470b: 89 e5 mov %esp,%ebp
8010470d: 83 ec 08 sub $0x8,%esp
// mask all interrupts
outb(IO_PIC1+1, 0xFF);
80104710: c7 44 24 04 ff 00 00 movl $0xff,0x4(%esp)
80104717: 00
80104718: c7 04 24 21 00 00 00 movl $0x21,(%esp)
8010471f: e8 48 ff ff ff call 8010466c <outb>
outb(IO_PIC2+1, 0xFF);
80104724: c7 44 24 04 ff 00 00 movl $0xff,0x4(%esp)
8010472b: 00
8010472c: c7 04 24 a1 00 00 00 movl $0xa1,(%esp)
80104733: e8 34 ff ff ff call 8010466c <outb>
// ICW1: 0001g0hi
// g: 0 = edge triggering, 1 = level triggering
// h: 0 = cascaded PICs, 1 = master only
// i: 0 = no ICW4, 1 = ICW4 required
outb(IO_PIC1, 0x11);
80104738: c7 44 24 04 11 00 00 movl $0x11,0x4(%esp)
8010473f: 00
80104740: c7 04 24 20 00 00 00 movl $0x20,(%esp)
80104747: e8 20 ff ff ff call 8010466c <outb>
// ICW2: Vector offset
outb(IO_PIC1+1, T_IRQ0);
8010474c: c7 44 24 04 20 00 00 movl $0x20,0x4(%esp)
80104753: 00
80104754: c7 04 24 21 00 00 00 movl $0x21,(%esp)
8010475b: e8 0c ff ff ff call 8010466c <outb>
// ICW3: (master PIC) bit mask of IR lines connected to slaves
// (slave PIC) 3-bit # of slave's connection to master
outb(IO_PIC1+1, 1<<IRQ_SLAVE);
80104760: c7 44 24 04 04 00 00 movl $0x4,0x4(%esp)
80104767: 00
80104768: c7 04 24 21 00 00 00 movl $0x21,(%esp)
8010476f: e8 f8 fe ff ff call 8010466c <outb>
// m: 0 = slave PIC, 1 = master PIC
// (ignored when b is 0, as the master/slave role
// can be hardwired).
// a: 1 = Automatic EOI mode
// p: 0 = MCS-80/85 mode, 1 = intel x86 mode
outb(IO_PIC1+1, 0x3);
80104774: c7 44 24 04 03 00 00 movl $0x3,0x4(%esp)
8010477b: 00
8010477c: c7 04 24 21 00 00 00 movl $0x21,(%esp)
80104783: e8 e4 fe ff ff call 8010466c <outb>
// Set up slave (8259A-2)
outb(IO_PIC2, 0x11); // ICW1
80104788: c7 44 24 04 11 00 00 movl $0x11,0x4(%esp)
8010478f: 00
80104790: c7 04 24 a0 00 00 00 movl $0xa0,(%esp)
80104797: e8 d0 fe ff ff call 8010466c <outb>
outb(IO_PIC2+1, T_IRQ0 + 8); // ICW2
8010479c: c7 44 24 04 28 00 00 movl $0x28,0x4(%esp)
801047a3: 00
801047a4: c7 04 24 a1 00 00 00 movl $0xa1,(%esp)
801047ab: e8 bc fe ff ff call 8010466c <outb>
outb(IO_PIC2+1, IRQ_SLAVE); // ICW3
801047b0: c7 44 24 04 02 00 00 movl $0x2,0x4(%esp)
801047b7: 00
801047b8: c7 04 24 a1 00 00 00 movl $0xa1,(%esp)
801047bf: e8 a8 fe ff ff call 8010466c <outb>
// NB Automatic EOI mode doesn't tend to work on the slave.
// Linux source code says it's "to be investigated".
outb(IO_PIC2+1, 0x3); // ICW4
801047c4: c7 44 24 04 03 00 00 movl $0x3,0x4(%esp)
801047cb: 00
801047cc: c7 04 24 a1 00 00 00 movl $0xa1,(%esp)
801047d3: e8 94 fe ff ff call 8010466c <outb>
// OCW3: 0ef01prs
// ef: 0x = NOP, 10 = clear specific mask, 11 = set specific mask
// p: 0 = no polling, 1 = polling mode
// rs: 0x = NOP, 10 = read IRR, 11 = read ISR
outb(IO_PIC1, 0x68); // clear specific mask
801047d8: c7 44 24 04 68 00 00 movl $0x68,0x4(%esp)
801047df: 00
801047e0: c7 04 24 20 00 00 00 movl $0x20,(%esp)
801047e7: e8 80 fe ff ff call 8010466c <outb>
outb(IO_PIC1, 0x0a); // read IRR by default
801047ec: c7 44 24 04 0a 00 00 movl $0xa,0x4(%esp)
801047f3: 00
801047f4: c7 04 24 20 00 00 00 movl $0x20,(%esp)
801047fb: e8 6c fe ff ff call 8010466c <outb>
outb(IO_PIC2, 0x68); // OCW3
80104800: c7 44 24 04 68 00 00 movl $0x68,0x4(%esp)
80104807: 00
80104808: c7 04 24 a0 00 00 00 movl $0xa0,(%esp)
8010480f: e8 58 fe ff ff call 8010466c <outb>
outb(IO_PIC2, 0x0a); // OCW3
80104814: c7 44 24 04 0a 00 00 movl $0xa,0x4(%esp)
8010481b: 00
8010481c: c7 04 24 a0 00 00 00 movl $0xa0,(%esp)
80104823: e8 44 fe ff ff call 8010466c <outb>
if(irqmask != 0xFFFF)
80104828: 0f b7 05 00 c0 10 80 movzwl 0x8010c000,%eax
8010482f: 66 83 f8 ff cmp $0xffff,%ax
80104833: 74 12 je 80104847 <picinit+0x13d>
picsetmask(irqmask);
80104835: 0f b7 05 00 c0 10 80 movzwl 0x8010c000,%eax
8010483c: 0f b7 c0 movzwl %ax,%eax
8010483f: 89 04 24 mov %eax,(%esp)
80104842: e8 43 fe ff ff call 8010468a <picsetmask>
}
80104847: c9 leave
80104848: c3 ret
80104849: 00 00 add %al,(%eax)
...
8010484c <pipealloc>:
int writeopen; // write fd is still open
};
int
pipealloc(struct file **f0, struct file **f1)
{
8010484c: 55 push %ebp
8010484d: 89 e5 mov %esp,%ebp
8010484f: 83 ec 28 sub $0x28,%esp
struct pipe *p;
p = 0;
80104852: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
*f0 = *f1 = 0;
80104859: 8b 45 0c mov 0xc(%ebp),%eax
8010485c: c7 00 00 00 00 00 movl $0x0,(%eax)
80104862: 8b 45 0c mov 0xc(%ebp),%eax
80104865: 8b 10 mov (%eax),%edx
80104867: 8b 45 08 mov 0x8(%ebp),%eax
8010486a: 89 10 mov %edx,(%eax)
if((*f0 = filealloc()) == 0 || (*f1 = filealloc()) == 0)
8010486c: e8 e7 ce ff ff call 80101758 <filealloc>
80104871: 8b 55 08 mov 0x8(%ebp),%edx
80104874: 89 02 mov %eax,(%edx)
80104876: 8b 45 08 mov 0x8(%ebp),%eax
80104879: 8b 00 mov (%eax),%eax
8010487b: 85 c0 test %eax,%eax
8010487d: 0f 84 c8 00 00 00 je 8010494b <pipealloc+0xff>
80104883: e8 d0 ce ff ff call 80101758 <filealloc>
80104888: 8b 55 0c mov 0xc(%ebp),%edx
8010488b: 89 02 mov %eax,(%edx)
8010488d: 8b 45 0c mov 0xc(%ebp),%eax
80104890: 8b 00 mov (%eax),%eax
80104892: 85 c0 test %eax,%eax
80104894: 0f 84 b1 00 00 00 je 8010494b <pipealloc+0xff>
goto bad;
if((p = (struct pipe*)kalloc()) == 0)
8010489a: e8 38 eb ff ff call 801033d7 <kalloc>
8010489f: 89 45 f4 mov %eax,-0xc(%ebp)
801048a2: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801048a6: 0f 84 9e 00 00 00 je 8010494a <pipealloc+0xfe>
goto bad;
p->readopen = 1;
801048ac: 8b 45 f4 mov -0xc(%ebp),%eax
801048af: c7 80 3c 02 00 00 01 movl $0x1,0x23c(%eax)
801048b6: 00 00 00
p->writeopen = 1;
801048b9: 8b 45 f4 mov -0xc(%ebp),%eax
801048bc: c7 80 40 02 00 00 01 movl $0x1,0x240(%eax)
801048c3: 00 00 00
p->nwrite = 0;
801048c6: 8b 45 f4 mov -0xc(%ebp),%eax
801048c9: c7 80 38 02 00 00 00 movl $0x0,0x238(%eax)
801048d0: 00 00 00
p->nread = 0;
801048d3: 8b 45 f4 mov -0xc(%ebp),%eax
801048d6: c7 80 34 02 00 00 00 movl $0x0,0x234(%eax)
801048dd: 00 00 00
initlock(&p->lock, "pipe");
801048e0: 8b 45 f4 mov -0xc(%ebp),%eax
801048e3: c7 44 24 04 ec 95 10 movl $0x801095ec,0x4(%esp)
801048ea: 80
801048eb: 89 04 24 mov %eax,(%esp)
801048ee: e8 97 12 00 00 call 80105b8a <initlock>
(*f0)->type = FD_PIPE;
801048f3: 8b 45 08 mov 0x8(%ebp),%eax
801048f6: 8b 00 mov (%eax),%eax
801048f8: c7 00 01 00 00 00 movl $0x1,(%eax)
(*f0)->readable = 1;
801048fe: 8b 45 08 mov 0x8(%ebp),%eax
80104901: 8b 00 mov (%eax),%eax
80104903: c6 40 08 01 movb $0x1,0x8(%eax)
(*f0)->writable = 0;
80104907: 8b 45 08 mov 0x8(%ebp),%eax
8010490a: 8b 00 mov (%eax),%eax
8010490c: c6 40 09 00 movb $0x0,0x9(%eax)
(*f0)->pipe = p;
80104910: 8b 45 08 mov 0x8(%ebp),%eax
80104913: 8b 00 mov (%eax),%eax
80104915: 8b 55 f4 mov -0xc(%ebp),%edx
80104918: 89 50 0c mov %edx,0xc(%eax)
(*f1)->type = FD_PIPE;
8010491b: 8b 45 0c mov 0xc(%ebp),%eax
8010491e: 8b 00 mov (%eax),%eax
80104920: c7 00 01 00 00 00 movl $0x1,(%eax)
(*f1)->readable = 0;
80104926: 8b 45 0c mov 0xc(%ebp),%eax
80104929: 8b 00 mov (%eax),%eax
8010492b: c6 40 08 00 movb $0x0,0x8(%eax)
(*f1)->writable = 1;
8010492f: 8b 45 0c mov 0xc(%ebp),%eax
80104932: 8b 00 mov (%eax),%eax
80104934: c6 40 09 01 movb $0x1,0x9(%eax)
(*f1)->pipe = p;
80104938: 8b 45 0c mov 0xc(%ebp),%eax
8010493b: 8b 00 mov (%eax),%eax
8010493d: 8b 55 f4 mov -0xc(%ebp),%edx
80104940: 89 50 0c mov %edx,0xc(%eax)
return 0;
80104943: b8 00 00 00 00 mov $0x0,%eax
80104948: eb 43 jmp 8010498d <pipealloc+0x141>
p = 0;
*f0 = *f1 = 0;
if((*f0 = filealloc()) == 0 || (*f1 = filealloc()) == 0)
goto bad;
if((p = (struct pipe*)kalloc()) == 0)
goto bad;
8010494a: 90 nop
(*f1)->pipe = p;
return 0;
//PAGEBREAK: 20
bad:
if(p)
8010494b: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
8010494f: 74 0b je 8010495c <pipealloc+0x110>
kfree((char*)p);
80104951: 8b 45 f4 mov -0xc(%ebp),%eax
80104954: 89 04 24 mov %eax,(%esp)
80104957: e8 e2 e9 ff ff call 8010333e <kfree>
if(*f0)
8010495c: 8b 45 08 mov 0x8(%ebp),%eax
8010495f: 8b 00 mov (%eax),%eax
80104961: 85 c0 test %eax,%eax
80104963: 74 0d je 80104972 <pipealloc+0x126>
fileclose(*f0);
80104965: 8b 45 08 mov 0x8(%ebp),%eax
80104968: 8b 00 mov (%eax),%eax
8010496a: 89 04 24 mov %eax,(%esp)
8010496d: e8 8e ce ff ff call 80101800 <fileclose>
if(*f1)
80104972: 8b 45 0c mov 0xc(%ebp),%eax
80104975: 8b 00 mov (%eax),%eax
80104977: 85 c0 test %eax,%eax
80104979: 74 0d je 80104988 <pipealloc+0x13c>
fileclose(*f1);
8010497b: 8b 45 0c mov 0xc(%ebp),%eax
8010497e: 8b 00 mov (%eax),%eax
80104980: 89 04 24 mov %eax,(%esp)
80104983: e8 78 ce ff ff call 80101800 <fileclose>
return -1;
80104988: b8 ff ff ff ff mov $0xffffffff,%eax
}
8010498d: c9 leave
8010498e: c3 ret
8010498f <pipeclose>:
void
pipeclose(struct pipe *p, int writable)
{
8010498f: 55 push %ebp
80104990: 89 e5 mov %esp,%ebp
80104992: 83 ec 18 sub $0x18,%esp
acquire(&p->lock);
80104995: 8b 45 08 mov 0x8(%ebp),%eax
80104998: 89 04 24 mov %eax,(%esp)
8010499b: e8 0b 12 00 00 call 80105bab <acquire>
if(writable){
801049a0: 83 7d 0c 00 cmpl $0x0,0xc(%ebp)
801049a4: 74 1f je 801049c5 <pipeclose+0x36>
p->writeopen = 0;
801049a6: 8b 45 08 mov 0x8(%ebp),%eax
801049a9: c7 80 40 02 00 00 00 movl $0x0,0x240(%eax)
801049b0: 00 00 00
wakeup(&p->nread);
801049b3: 8b 45 08 mov 0x8(%ebp),%eax
801049b6: 05 34 02 00 00 add $0x234,%eax
801049bb: 89 04 24 mov %eax,(%esp)
801049be: e8 e5 0d 00 00 call 801057a8 <wakeup>
801049c3: eb 1d jmp 801049e2 <pipeclose+0x53>
} else {
p->readopen = 0;
801049c5: 8b 45 08 mov 0x8(%ebp),%eax
801049c8: c7 80 3c 02 00 00 00 movl $0x0,0x23c(%eax)
801049cf: 00 00 00
wakeup(&p->nwrite);
801049d2: 8b 45 08 mov 0x8(%ebp),%eax
801049d5: 05 38 02 00 00 add $0x238,%eax
801049da: 89 04 24 mov %eax,(%esp)
801049dd: e8 c6 0d 00 00 call 801057a8 <wakeup>
}
if(p->readopen == 0 && p->writeopen == 0){
801049e2: 8b 45 08 mov 0x8(%ebp),%eax
801049e5: 8b 80 3c 02 00 00 mov 0x23c(%eax),%eax
801049eb: 85 c0 test %eax,%eax
801049ed: 75 25 jne 80104a14 <pipeclose+0x85>
801049ef: 8b 45 08 mov 0x8(%ebp),%eax
801049f2: 8b 80 40 02 00 00 mov 0x240(%eax),%eax
801049f8: 85 c0 test %eax,%eax
801049fa: 75 18 jne 80104a14 <pipeclose+0x85>
release(&p->lock);
801049fc: 8b 45 08 mov 0x8(%ebp),%eax
801049ff: 89 04 24 mov %eax,(%esp)
80104a02: e8 06 12 00 00 call 80105c0d <release>
kfree((char*)p);
80104a07: 8b 45 08 mov 0x8(%ebp),%eax
80104a0a: 89 04 24 mov %eax,(%esp)
80104a0d: e8 2c e9 ff ff call 8010333e <kfree>
80104a12: eb 0b jmp 80104a1f <pipeclose+0x90>
} else
release(&p->lock);
80104a14: 8b 45 08 mov 0x8(%ebp),%eax
80104a17: 89 04 24 mov %eax,(%esp)
80104a1a: e8 ee 11 00 00 call 80105c0d <release>
}
80104a1f: c9 leave
80104a20: c3 ret
80104a21 <pipewrite>:
//PAGEBREAK: 40
int
pipewrite(struct pipe *p, char *addr, int n)
{
80104a21: 55 push %ebp
80104a22: 89 e5 mov %esp,%ebp
80104a24: 53 push %ebx
80104a25: 83 ec 24 sub $0x24,%esp
int i;
acquire(&p->lock);
80104a28: 8b 45 08 mov 0x8(%ebp),%eax
80104a2b: 89 04 24 mov %eax,(%esp)
80104a2e: e8 78 11 00 00 call 80105bab <acquire>
for(i = 0; i < n; i++){
80104a33: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80104a3a: e9 a6 00 00 00 jmp 80104ae5 <pipewrite+0xc4>
while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full
if(p->readopen == 0 || proc->killed){
80104a3f: 8b 45 08 mov 0x8(%ebp),%eax
80104a42: 8b 80 3c 02 00 00 mov 0x23c(%eax),%eax
80104a48: 85 c0 test %eax,%eax
80104a4a: 74 0d je 80104a59 <pipewrite+0x38>
80104a4c: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104a52: 8b 40 24 mov 0x24(%eax),%eax
80104a55: 85 c0 test %eax,%eax
80104a57: 74 15 je 80104a6e <pipewrite+0x4d>
release(&p->lock);
80104a59: 8b 45 08 mov 0x8(%ebp),%eax
80104a5c: 89 04 24 mov %eax,(%esp)
80104a5f: e8 a9 11 00 00 call 80105c0d <release>
return -1;
80104a64: b8 ff ff ff ff mov $0xffffffff,%eax
80104a69: e9 9d 00 00 00 jmp 80104b0b <pipewrite+0xea>
}
wakeup(&p->nread);
80104a6e: 8b 45 08 mov 0x8(%ebp),%eax
80104a71: 05 34 02 00 00 add $0x234,%eax
80104a76: 89 04 24 mov %eax,(%esp)
80104a79: e8 2a 0d 00 00 call 801057a8 <wakeup>
sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep
80104a7e: 8b 45 08 mov 0x8(%ebp),%eax
80104a81: 8b 55 08 mov 0x8(%ebp),%edx
80104a84: 81 c2 38 02 00 00 add $0x238,%edx
80104a8a: 89 44 24 04 mov %eax,0x4(%esp)
80104a8e: 89 14 24 mov %edx,(%esp)
80104a91: e8 29 0c 00 00 call 801056bf <sleep>
80104a96: eb 01 jmp 80104a99 <pipewrite+0x78>
{
int i;
acquire(&p->lock);
for(i = 0; i < n; i++){
while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full
80104a98: 90 nop
80104a99: 8b 45 08 mov 0x8(%ebp),%eax
80104a9c: 8b 90 38 02 00 00 mov 0x238(%eax),%edx
80104aa2: 8b 45 08 mov 0x8(%ebp),%eax
80104aa5: 8b 80 34 02 00 00 mov 0x234(%eax),%eax
80104aab: 05 00 02 00 00 add $0x200,%eax
80104ab0: 39 c2 cmp %eax,%edx
80104ab2: 74 8b je 80104a3f <pipewrite+0x1e>
return -1;
}
wakeup(&p->nread);
sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep
}
p->data[p->nwrite++ % PIPESIZE] = addr[i];
80104ab4: 8b 45 08 mov 0x8(%ebp),%eax
80104ab7: 8b 80 38 02 00 00 mov 0x238(%eax),%eax
80104abd: 89 c3 mov %eax,%ebx
80104abf: 81 e3 ff 01 00 00 and $0x1ff,%ebx
80104ac5: 8b 55 f4 mov -0xc(%ebp),%edx
80104ac8: 03 55 0c add 0xc(%ebp),%edx
80104acb: 0f b6 0a movzbl (%edx),%ecx
80104ace: 8b 55 08 mov 0x8(%ebp),%edx
80104ad1: 88 4c 1a 34 mov %cl,0x34(%edx,%ebx,1)
80104ad5: 8d 50 01 lea 0x1(%eax),%edx
80104ad8: 8b 45 08 mov 0x8(%ebp),%eax
80104adb: 89 90 38 02 00 00 mov %edx,0x238(%eax)
pipewrite(struct pipe *p, char *addr, int n)
{
int i;
acquire(&p->lock);
for(i = 0; i < n; i++){
80104ae1: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80104ae5: 8b 45 f4 mov -0xc(%ebp),%eax
80104ae8: 3b 45 10 cmp 0x10(%ebp),%eax
80104aeb: 7c ab jl 80104a98 <pipewrite+0x77>
wakeup(&p->nread);
sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep
}
p->data[p->nwrite++ % PIPESIZE] = addr[i];
}
wakeup(&p->nread); //DOC: pipewrite-wakeup1
80104aed: 8b 45 08 mov 0x8(%ebp),%eax
80104af0: 05 34 02 00 00 add $0x234,%eax
80104af5: 89 04 24 mov %eax,(%esp)
80104af8: e8 ab 0c 00 00 call 801057a8 <wakeup>
release(&p->lock);
80104afd: 8b 45 08 mov 0x8(%ebp),%eax
80104b00: 89 04 24 mov %eax,(%esp)
80104b03: e8 05 11 00 00 call 80105c0d <release>
return n;
80104b08: 8b 45 10 mov 0x10(%ebp),%eax
}
80104b0b: 83 c4 24 add $0x24,%esp
80104b0e: 5b pop %ebx
80104b0f: 5d pop %ebp
80104b10: c3 ret
80104b11 <piperead>:
int
piperead(struct pipe *p, char *addr, int n)
{
80104b11: 55 push %ebp
80104b12: 89 e5 mov %esp,%ebp
80104b14: 53 push %ebx
80104b15: 83 ec 24 sub $0x24,%esp
int i;
acquire(&p->lock);
80104b18: 8b 45 08 mov 0x8(%ebp),%eax
80104b1b: 89 04 24 mov %eax,(%esp)
80104b1e: e8 88 10 00 00 call 80105bab <acquire>
while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty
80104b23: eb 3a jmp 80104b5f <piperead+0x4e>
if(proc->killed){
80104b25: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104b2b: 8b 40 24 mov 0x24(%eax),%eax
80104b2e: 85 c0 test %eax,%eax
80104b30: 74 15 je 80104b47 <piperead+0x36>
release(&p->lock);
80104b32: 8b 45 08 mov 0x8(%ebp),%eax
80104b35: 89 04 24 mov %eax,(%esp)
80104b38: e8 d0 10 00 00 call 80105c0d <release>
return -1;
80104b3d: b8 ff ff ff ff mov $0xffffffff,%eax
80104b42: e9 b6 00 00 00 jmp 80104bfd <piperead+0xec>
}
sleep(&p->nread, &p->lock); //DOC: piperead-sleep
80104b47: 8b 45 08 mov 0x8(%ebp),%eax
80104b4a: 8b 55 08 mov 0x8(%ebp),%edx
80104b4d: 81 c2 34 02 00 00 add $0x234,%edx
80104b53: 89 44 24 04 mov %eax,0x4(%esp)
80104b57: 89 14 24 mov %edx,(%esp)
80104b5a: e8 60 0b 00 00 call 801056bf <sleep>
piperead(struct pipe *p, char *addr, int n)
{
int i;
acquire(&p->lock);
while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty
80104b5f: 8b 45 08 mov 0x8(%ebp),%eax
80104b62: 8b 90 34 02 00 00 mov 0x234(%eax),%edx
80104b68: 8b 45 08 mov 0x8(%ebp),%eax
80104b6b: 8b 80 38 02 00 00 mov 0x238(%eax),%eax
80104b71: 39 c2 cmp %eax,%edx
80104b73: 75 0d jne 80104b82 <piperead+0x71>
80104b75: 8b 45 08 mov 0x8(%ebp),%eax
80104b78: 8b 80 40 02 00 00 mov 0x240(%eax),%eax
80104b7e: 85 c0 test %eax,%eax
80104b80: 75 a3 jne 80104b25 <piperead+0x14>
release(&p->lock);
return -1;
}
sleep(&p->nread, &p->lock); //DOC: piperead-sleep
}
for(i = 0; i < n; i++){ //DOC: piperead-copy
80104b82: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80104b89: eb 49 jmp 80104bd4 <piperead+0xc3>
if(p->nread == p->nwrite)
80104b8b: 8b 45 08 mov 0x8(%ebp),%eax
80104b8e: 8b 90 34 02 00 00 mov 0x234(%eax),%edx
80104b94: 8b 45 08 mov 0x8(%ebp),%eax
80104b97: 8b 80 38 02 00 00 mov 0x238(%eax),%eax
80104b9d: 39 c2 cmp %eax,%edx
80104b9f: 74 3d je 80104bde <piperead+0xcd>
break;
addr[i] = p->data[p->nread++ % PIPESIZE];
80104ba1: 8b 45 f4 mov -0xc(%ebp),%eax
80104ba4: 89 c2 mov %eax,%edx
80104ba6: 03 55 0c add 0xc(%ebp),%edx
80104ba9: 8b 45 08 mov 0x8(%ebp),%eax
80104bac: 8b 80 34 02 00 00 mov 0x234(%eax),%eax
80104bb2: 89 c3 mov %eax,%ebx
80104bb4: 81 e3 ff 01 00 00 and $0x1ff,%ebx
80104bba: 8b 4d 08 mov 0x8(%ebp),%ecx
80104bbd: 0f b6 4c 19 34 movzbl 0x34(%ecx,%ebx,1),%ecx
80104bc2: 88 0a mov %cl,(%edx)
80104bc4: 8d 50 01 lea 0x1(%eax),%edx
80104bc7: 8b 45 08 mov 0x8(%ebp),%eax
80104bca: 89 90 34 02 00 00 mov %edx,0x234(%eax)
release(&p->lock);
return -1;
}
sleep(&p->nread, &p->lock); //DOC: piperead-sleep
}
for(i = 0; i < n; i++){ //DOC: piperead-copy
80104bd0: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80104bd4: 8b 45 f4 mov -0xc(%ebp),%eax
80104bd7: 3b 45 10 cmp 0x10(%ebp),%eax
80104bda: 7c af jl 80104b8b <piperead+0x7a>
80104bdc: eb 01 jmp 80104bdf <piperead+0xce>
if(p->nread == p->nwrite)
break;
80104bde: 90 nop
addr[i] = p->data[p->nread++ % PIPESIZE];
}
wakeup(&p->nwrite); //DOC: piperead-wakeup
80104bdf: 8b 45 08 mov 0x8(%ebp),%eax
80104be2: 05 38 02 00 00 add $0x238,%eax
80104be7: 89 04 24 mov %eax,(%esp)
80104bea: e8 b9 0b 00 00 call 801057a8 <wakeup>
release(&p->lock);
80104bef: 8b 45 08 mov 0x8(%ebp),%eax
80104bf2: 89 04 24 mov %eax,(%esp)
80104bf5: e8 13 10 00 00 call 80105c0d <release>
return i;
80104bfa: 8b 45 f4 mov -0xc(%ebp),%eax
}
80104bfd: 83 c4 24 add $0x24,%esp
80104c00: 5b pop %ebx
80104c01: 5d pop %ebp
80104c02: c3 ret
...
80104c04 <readeflags>:
asm volatile("ltr %0" : : "r" (sel));
}
static inline uint
readeflags(void)
{
80104c04: 55 push %ebp
80104c05: 89 e5 mov %esp,%ebp
80104c07: 53 push %ebx
80104c08: 83 ec 10 sub $0x10,%esp
uint eflags;
asm volatile("pushfl; popl %0" : "=r" (eflags));
80104c0b: 9c pushf
80104c0c: 5b pop %ebx
80104c0d: 89 5d f8 mov %ebx,-0x8(%ebp)
return eflags;
80104c10: 8b 45 f8 mov -0x8(%ebp),%eax
}
80104c13: 83 c4 10 add $0x10,%esp
80104c16: 5b pop %ebx
80104c17: 5d pop %ebp
80104c18: c3 ret
80104c19 <sti>:
asm volatile("cli");
}
static inline void
sti(void)
{
80104c19: 55 push %ebp
80104c1a: 89 e5 mov %esp,%ebp
asm volatile("sti");
80104c1c: fb sti
}
80104c1d: 5d pop %ebp
80104c1e: c3 ret
80104c1f <pinit>:
static void wakeup1(void *chan);
void
pinit(void)
{
80104c1f: 55 push %ebp
80104c20: 89 e5 mov %esp,%ebp
80104c22: 83 ec 18 sub $0x18,%esp
initlock(&ptable.lock, "ptable");
80104c25: c7 44 24 04 f1 95 10 movl $0x801095f1,0x4(%esp)
80104c2c: 80
80104c2d: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80104c34: e8 51 0f 00 00 call 80105b8a <initlock>
}
80104c39: c9 leave
80104c3a: c3 ret
80104c3b <allocproc>:
// If found, change state to EMBRYO and initialize
// state required to run in the kernel.
// Otherwise return 0.
static struct proc*
allocproc(void)
{
80104c3b: 55 push %ebp
80104c3c: 89 e5 mov %esp,%ebp
80104c3e: 83 ec 28 sub $0x28,%esp
struct proc *p;
char *sp;
acquire(&ptable.lock);
80104c41: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80104c48: e8 5e 0f 00 00 call 80105bab <acquire>
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
80104c4d: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
80104c54: eb 11 jmp 80104c67 <allocproc+0x2c>
if(p->state == UNUSED)
80104c56: 8b 45 f4 mov -0xc(%ebp),%eax
80104c59: 8b 40 0c mov 0xc(%eax),%eax
80104c5c: 85 c0 test %eax,%eax
80104c5e: 74 26 je 80104c86 <allocproc+0x4b>
{
struct proc *p;
char *sp;
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
80104c60: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
80104c67: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
80104c6e: 72 e6 jb 80104c56 <allocproc+0x1b>
if(p->state == UNUSED)
goto found;
release(&ptable.lock);
80104c70: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80104c77: e8 91 0f 00 00 call 80105c0d <release>
return 0;
80104c7c: b8 00 00 00 00 mov $0x0,%eax
80104c81: e9 c2 00 00 00 jmp 80104d48 <allocproc+0x10d>
char *sp;
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
if(p->state == UNUSED)
goto found;
80104c86: 90 nop
release(&ptable.lock);
return 0;
found:
p->state = EMBRYO;
80104c87: 8b 45 f4 mov -0xc(%ebp),%eax
80104c8a: c7 40 0c 01 00 00 00 movl $0x1,0xc(%eax)
p->pid = nextpid++;
80104c91: a1 04 c0 10 80 mov 0x8010c004,%eax
80104c96: 8b 55 f4 mov -0xc(%ebp),%edx
80104c99: 89 42 10 mov %eax,0x10(%edx)
80104c9c: 83 c0 01 add $0x1,%eax
80104c9f: a3 04 c0 10 80 mov %eax,0x8010c004
p->priority=DEF_PRIORITY;
80104ca4: 8b 45 f4 mov -0xc(%ebp),%eax
80104ca7: c7 80 8c 00 00 00 02 movl $0x2,0x8c(%eax)
80104cae: 00 00 00
release(&ptable.lock);
80104cb1: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80104cb8: e8 50 0f 00 00 call 80105c0d <release>
// Allocate kernel stack.
if((p->kstack = kalloc()) == 0){
80104cbd: e8 15 e7 ff ff call 801033d7 <kalloc>
80104cc2: 8b 55 f4 mov -0xc(%ebp),%edx
80104cc5: 89 42 08 mov %eax,0x8(%edx)
80104cc8: 8b 45 f4 mov -0xc(%ebp),%eax
80104ccb: 8b 40 08 mov 0x8(%eax),%eax
80104cce: 85 c0 test %eax,%eax
80104cd0: 75 11 jne 80104ce3 <allocproc+0xa8>
p->state = UNUSED;
80104cd2: 8b 45 f4 mov -0xc(%ebp),%eax
80104cd5: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
return 0;
80104cdc: b8 00 00 00 00 mov $0x0,%eax
80104ce1: eb 65 jmp 80104d48 <allocproc+0x10d>
}
sp = p->kstack + KSTACKSIZE;
80104ce3: 8b 45 f4 mov -0xc(%ebp),%eax
80104ce6: 8b 40 08 mov 0x8(%eax),%eax
80104ce9: 05 00 10 00 00 add $0x1000,%eax
80104cee: 89 45 f0 mov %eax,-0x10(%ebp)
// Leave room for trap frame.
sp -= sizeof *p->tf;
80104cf1: 83 6d f0 4c subl $0x4c,-0x10(%ebp)
p->tf = (struct trapframe*)sp;
80104cf5: 8b 45 f4 mov -0xc(%ebp),%eax
80104cf8: 8b 55 f0 mov -0x10(%ebp),%edx
80104cfb: 89 50 18 mov %edx,0x18(%eax)
// Set up new context to start executing at forkret,
// which returns to trapret.
sp -= 4;
80104cfe: 83 6d f0 04 subl $0x4,-0x10(%ebp)
*(uint*)sp = (uint)trapret;
80104d02: ba f0 72 10 80 mov $0x801072f0,%edx
80104d07: 8b 45 f0 mov -0x10(%ebp),%eax
80104d0a: 89 10 mov %edx,(%eax)
sp -= sizeof *p->context;
80104d0c: 83 6d f0 14 subl $0x14,-0x10(%ebp)
p->context = (struct context*)sp;
80104d10: 8b 45 f4 mov -0xc(%ebp),%eax
80104d13: 8b 55 f0 mov -0x10(%ebp),%edx
80104d16: 89 50 1c mov %edx,0x1c(%eax)
memset(p->context, 0, sizeof *p->context);
80104d19: 8b 45 f4 mov -0xc(%ebp),%eax
80104d1c: 8b 40 1c mov 0x1c(%eax),%eax
80104d1f: c7 44 24 08 14 00 00 movl $0x14,0x8(%esp)
80104d26: 00
80104d27: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80104d2e: 00
80104d2f: 89 04 24 mov %eax,(%esp)
80104d32: e8 c3 10 00 00 call 80105dfa <memset>
p->context->eip = (uint)forkret;
80104d37: 8b 45 f4 mov -0xc(%ebp),%eax
80104d3a: 8b 40 1c mov 0x1c(%eax),%eax
80104d3d: ba 80 56 10 80 mov $0x80105680,%edx
80104d42: 89 50 10 mov %edx,0x10(%eax)
return p;
80104d45: 8b 45 f4 mov -0xc(%ebp),%eax
}
80104d48: c9 leave
80104d49: c3 ret
80104d4a <userinit>:
//PAGEBREAK: 32
// Set up first user process.
void
userinit(void)
{
80104d4a: 55 push %ebp
80104d4b: 89 e5 mov %esp,%ebp
80104d4d: 83 ec 28 sub $0x28,%esp
struct proc *p;
extern char _binary_initcode_start[], _binary_initcode_size[];
p = allocproc();
80104d50: e8 e6 fe ff ff call 80104c3b <allocproc>
80104d55: 89 45 f4 mov %eax,-0xc(%ebp)
initproc = p;
80104d58: 8b 45 f4 mov -0xc(%ebp),%eax
80104d5b: a3 68 c6 10 80 mov %eax,0x8010c668
if((p->pgdir = setupkvm()) == 0)
80104d60: e8 e4 3c 00 00 call 80108a49 <setupkvm>
80104d65: 8b 55 f4 mov -0xc(%ebp),%edx
80104d68: 89 42 04 mov %eax,0x4(%edx)
80104d6b: 8b 45 f4 mov -0xc(%ebp),%eax
80104d6e: 8b 40 04 mov 0x4(%eax),%eax
80104d71: 85 c0 test %eax,%eax
80104d73: 75 0c jne 80104d81 <userinit+0x37>
panic("userinit: out of memory?");
80104d75: c7 04 24 f8 95 10 80 movl $0x801095f8,(%esp)
80104d7c: e8 bc b7 ff ff call 8010053d <panic>
inituvm(p->pgdir, _binary_initcode_start, (int)_binary_initcode_size);
80104d81: ba 2c 00 00 00 mov $0x2c,%edx
80104d86: 8b 45 f4 mov -0xc(%ebp),%eax
80104d89: 8b 40 04 mov 0x4(%eax),%eax
80104d8c: 89 54 24 08 mov %edx,0x8(%esp)
80104d90: c7 44 24 04 00 c5 10 movl $0x8010c500,0x4(%esp)
80104d97: 80
80104d98: 89 04 24 mov %eax,(%esp)
80104d9b: e8 01 3f 00 00 call 80108ca1 <inituvm>
p->sz = PGSIZE;
80104da0: 8b 45 f4 mov -0xc(%ebp),%eax
80104da3: c7 00 00 10 00 00 movl $0x1000,(%eax)
memset(p->tf, 0, sizeof(*p->tf));
80104da9: 8b 45 f4 mov -0xc(%ebp),%eax
80104dac: 8b 40 18 mov 0x18(%eax),%eax
80104daf: c7 44 24 08 4c 00 00 movl $0x4c,0x8(%esp)
80104db6: 00
80104db7: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80104dbe: 00
80104dbf: 89 04 24 mov %eax,(%esp)
80104dc2: e8 33 10 00 00 call 80105dfa <memset>
p->tf->cs = (SEG_UCODE << 3) | DPL_USER;
80104dc7: 8b 45 f4 mov -0xc(%ebp),%eax
80104dca: 8b 40 18 mov 0x18(%eax),%eax
80104dcd: 66 c7 40 3c 23 00 movw $0x23,0x3c(%eax)
p->tf->ds = (SEG_UDATA << 3) | DPL_USER;
80104dd3: 8b 45 f4 mov -0xc(%ebp),%eax
80104dd6: 8b 40 18 mov 0x18(%eax),%eax
80104dd9: 66 c7 40 2c 2b 00 movw $0x2b,0x2c(%eax)
p->tf->es = p->tf->ds;
80104ddf: 8b 45 f4 mov -0xc(%ebp),%eax
80104de2: 8b 40 18 mov 0x18(%eax),%eax
80104de5: 8b 55 f4 mov -0xc(%ebp),%edx
80104de8: 8b 52 18 mov 0x18(%edx),%edx
80104deb: 0f b7 52 2c movzwl 0x2c(%edx),%edx
80104def: 66 89 50 28 mov %dx,0x28(%eax)
p->tf->ss = p->tf->ds;
80104df3: 8b 45 f4 mov -0xc(%ebp),%eax
80104df6: 8b 40 18 mov 0x18(%eax),%eax
80104df9: 8b 55 f4 mov -0xc(%ebp),%edx
80104dfc: 8b 52 18 mov 0x18(%edx),%edx
80104dff: 0f b7 52 2c movzwl 0x2c(%edx),%edx
80104e03: 66 89 50 48 mov %dx,0x48(%eax)
p->tf->eflags = FL_IF;
80104e07: 8b 45 f4 mov -0xc(%ebp),%eax
80104e0a: 8b 40 18 mov 0x18(%eax),%eax
80104e0d: c7 40 40 00 02 00 00 movl $0x200,0x40(%eax)
p->tf->esp = PGSIZE;
80104e14: 8b 45 f4 mov -0xc(%ebp),%eax
80104e17: 8b 40 18 mov 0x18(%eax),%eax
80104e1a: c7 40 44 00 10 00 00 movl $0x1000,0x44(%eax)
p->tf->eip = 0; // beginning of initcode.S
80104e21: 8b 45 f4 mov -0xc(%ebp),%eax
80104e24: 8b 40 18 mov 0x18(%eax),%eax
80104e27: c7 40 38 00 00 00 00 movl $0x0,0x38(%eax)
safestrcpy(p->name, "initcode", sizeof(p->name));
80104e2e: 8b 45 f4 mov -0xc(%ebp),%eax
80104e31: 83 c0 6c add $0x6c,%eax
80104e34: c7 44 24 08 10 00 00 movl $0x10,0x8(%esp)
80104e3b: 00
80104e3c: c7 44 24 04 11 96 10 movl $0x80109611,0x4(%esp)
80104e43: 80
80104e44: 89 04 24 mov %eax,(%esp)
80104e47: e8 de 11 00 00 call 8010602a <safestrcpy>
p->cwd = namei("/");
80104e4c: c7 04 24 1a 96 10 80 movl $0x8010961a,(%esp)
80104e53: e8 55 de ff ff call 80102cad <namei>
80104e58: 8b 55 f4 mov -0xc(%ebp),%edx
80104e5b: 89 42 68 mov %eax,0x68(%edx)
p->state = RUNNABLE;
80104e5e: 8b 45 f4 mov -0xc(%ebp),%eax
80104e61: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax)
}
80104e68: c9 leave
80104e69: c3 ret
80104e6a <growproc>:
// Grow current process's memory by n bytes.
// Return 0 on success, -1 on failure.
int
growproc(int n)
{
80104e6a: 55 push %ebp
80104e6b: 89 e5 mov %esp,%ebp
80104e6d: 83 ec 28 sub $0x28,%esp
uint sz;
sz = proc->sz;
80104e70: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104e76: 8b 00 mov (%eax),%eax
80104e78: 89 45 f4 mov %eax,-0xc(%ebp)
if(n > 0){
80104e7b: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80104e7f: 7e 34 jle 80104eb5 <growproc+0x4b>
if((sz = allocuvm(proc->pgdir, sz, sz + n)) == 0)
80104e81: 8b 45 08 mov 0x8(%ebp),%eax
80104e84: 89 c2 mov %eax,%edx
80104e86: 03 55 f4 add -0xc(%ebp),%edx
80104e89: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104e8f: 8b 40 04 mov 0x4(%eax),%eax
80104e92: 89 54 24 08 mov %edx,0x8(%esp)
80104e96: 8b 55 f4 mov -0xc(%ebp),%edx
80104e99: 89 54 24 04 mov %edx,0x4(%esp)
80104e9d: 89 04 24 mov %eax,(%esp)
80104ea0: e8 76 3f 00 00 call 80108e1b <allocuvm>
80104ea5: 89 45 f4 mov %eax,-0xc(%ebp)
80104ea8: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80104eac: 75 41 jne 80104eef <growproc+0x85>
return -1;
80104eae: b8 ff ff ff ff mov $0xffffffff,%eax
80104eb3: eb 58 jmp 80104f0d <growproc+0xa3>
} else if(n < 0){
80104eb5: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80104eb9: 79 34 jns 80104eef <growproc+0x85>
if((sz = deallocuvm(proc->pgdir, sz, sz + n)) == 0)
80104ebb: 8b 45 08 mov 0x8(%ebp),%eax
80104ebe: 89 c2 mov %eax,%edx
80104ec0: 03 55 f4 add -0xc(%ebp),%edx
80104ec3: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104ec9: 8b 40 04 mov 0x4(%eax),%eax
80104ecc: 89 54 24 08 mov %edx,0x8(%esp)
80104ed0: 8b 55 f4 mov -0xc(%ebp),%edx
80104ed3: 89 54 24 04 mov %edx,0x4(%esp)
80104ed7: 89 04 24 mov %eax,(%esp)
80104eda: e8 16 40 00 00 call 80108ef5 <deallocuvm>
80104edf: 89 45 f4 mov %eax,-0xc(%ebp)
80104ee2: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80104ee6: 75 07 jne 80104eef <growproc+0x85>
return -1;
80104ee8: b8 ff ff ff ff mov $0xffffffff,%eax
80104eed: eb 1e jmp 80104f0d <growproc+0xa3>
}
proc->sz = sz;
80104eef: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104ef5: 8b 55 f4 mov -0xc(%ebp),%edx
80104ef8: 89 10 mov %edx,(%eax)
switchuvm(proc);
80104efa: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104f00: 89 04 24 mov %eax,(%esp)
80104f03: e8 32 3c 00 00 call 80108b3a <switchuvm>
return 0;
80104f08: b8 00 00 00 00 mov $0x0,%eax
}
80104f0d: c9 leave
80104f0e: c3 ret
80104f0f <fork>:
// Create a new process copying p as the parent.
// Sets up stack to return as if from system call.
// Caller must set state of returned proc to RUNNABLE.
int
fork(void)
{
80104f0f: 55 push %ebp
80104f10: 89 e5 mov %esp,%ebp
80104f12: 57 push %edi
80104f13: 56 push %esi
80104f14: 53 push %ebx
80104f15: 83 ec 2c sub $0x2c,%esp
int i, pid;
struct proc *np;
// Allocate process.
if((np = allocproc()) == 0)
80104f18: e8 1e fd ff ff call 80104c3b <allocproc>
80104f1d: 89 45 e0 mov %eax,-0x20(%ebp)
80104f20: 83 7d e0 00 cmpl $0x0,-0x20(%ebp)
80104f24: 75 0a jne 80104f30 <fork+0x21>
return -1;
80104f26: b8 ff ff ff ff mov $0xffffffff,%eax
80104f2b: e9 8e 01 00 00 jmp 801050be <fork+0x1af>
// Copy process state from p.
if((np->pgdir = copyuvm(proc->pgdir, proc->sz)) == 0){
80104f30: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104f36: 8b 10 mov (%eax),%edx
80104f38: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104f3e: 8b 40 04 mov 0x4(%eax),%eax
80104f41: 89 54 24 04 mov %edx,0x4(%esp)
80104f45: 89 04 24 mov %eax,(%esp)
80104f48: e8 38 41 00 00 call 80109085 <copyuvm>
80104f4d: 8b 55 e0 mov -0x20(%ebp),%edx
80104f50: 89 42 04 mov %eax,0x4(%edx)
80104f53: 8b 45 e0 mov -0x20(%ebp),%eax
80104f56: 8b 40 04 mov 0x4(%eax),%eax
80104f59: 85 c0 test %eax,%eax
80104f5b: 75 2c jne 80104f89 <fork+0x7a>
kfree(np->kstack);
80104f5d: 8b 45 e0 mov -0x20(%ebp),%eax
80104f60: 8b 40 08 mov 0x8(%eax),%eax
80104f63: 89 04 24 mov %eax,(%esp)
80104f66: e8 d3 e3 ff ff call 8010333e <kfree>
np->kstack = 0;
80104f6b: 8b 45 e0 mov -0x20(%ebp),%eax
80104f6e: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax)
np->state = UNUSED;
80104f75: 8b 45 e0 mov -0x20(%ebp),%eax
80104f78: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
return -1;
80104f7f: b8 ff ff ff ff mov $0xffffffff,%eax
80104f84: e9 35 01 00 00 jmp 801050be <fork+0x1af>
}
np->sz = proc->sz;
80104f89: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104f8f: 8b 10 mov (%eax),%edx
80104f91: 8b 45 e0 mov -0x20(%ebp),%eax
80104f94: 89 10 mov %edx,(%eax)
np->parent = proc;
80104f96: 65 8b 15 04 00 00 00 mov %gs:0x4,%edx
80104f9d: 8b 45 e0 mov -0x20(%ebp),%eax
80104fa0: 89 50 14 mov %edx,0x14(%eax)
np->retime=0;
80104fa3: 8b 45 e0 mov -0x20(%ebp),%eax
80104fa6: c7 80 84 00 00 00 00 movl $0x0,0x84(%eax)
80104fad: 00 00 00
np->rutime=0;
80104fb0: 8b 45 e0 mov -0x20(%ebp),%eax
80104fb3: c7 80 88 00 00 00 00 movl $0x0,0x88(%eax)
80104fba: 00 00 00
np->stime=0;
80104fbd: 8b 45 e0 mov -0x20(%ebp),%eax
80104fc0: c7 80 80 00 00 00 00 movl $0x0,0x80(%eax)
80104fc7: 00 00 00
np->priority=proc->priority;
80104fca: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104fd0: 8b 90 8c 00 00 00 mov 0x8c(%eax),%edx
80104fd6: 8b 45 e0 mov -0x20(%ebp),%eax
80104fd9: 89 90 8c 00 00 00 mov %edx,0x8c(%eax)
*np->tf = *proc->tf;
80104fdf: 8b 45 e0 mov -0x20(%ebp),%eax
80104fe2: 8b 50 18 mov 0x18(%eax),%edx
80104fe5: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80104feb: 8b 40 18 mov 0x18(%eax),%eax
80104fee: 89 c3 mov %eax,%ebx
80104ff0: b8 13 00 00 00 mov $0x13,%eax
80104ff5: 89 d7 mov %edx,%edi
80104ff7: 89 de mov %ebx,%esi
80104ff9: 89 c1 mov %eax,%ecx
80104ffb: f3 a5 rep movsl %ds:(%esi),%es:(%edi)
// Clear %eax so that fork returns 0 in the child.
np->tf->eax = 0;
80104ffd: 8b 45 e0 mov -0x20(%ebp),%eax
80105000: 8b 40 18 mov 0x18(%eax),%eax
80105003: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%eax)
for(i = 0; i < NOFILE; i++)
8010500a: c7 45 e4 00 00 00 00 movl $0x0,-0x1c(%ebp)
80105011: eb 3d jmp 80105050 <fork+0x141>
if(proc->ofile[i])
80105013: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105019: 8b 55 e4 mov -0x1c(%ebp),%edx
8010501c: 83 c2 08 add $0x8,%edx
8010501f: 8b 44 90 08 mov 0x8(%eax,%edx,4),%eax
80105023: 85 c0 test %eax,%eax
80105025: 74 25 je 8010504c <fork+0x13d>
np->ofile[i] = filedup(proc->ofile[i]);
80105027: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010502d: 8b 55 e4 mov -0x1c(%ebp),%edx
80105030: 83 c2 08 add $0x8,%edx
80105033: 8b 44 90 08 mov 0x8(%eax,%edx,4),%eax
80105037: 89 04 24 mov %eax,(%esp)
8010503a: e8 79 c7 ff ff call 801017b8 <filedup>
8010503f: 8b 55 e0 mov -0x20(%ebp),%edx
80105042: 8b 4d e4 mov -0x1c(%ebp),%ecx
80105045: 83 c1 08 add $0x8,%ecx
80105048: 89 44 8a 08 mov %eax,0x8(%edx,%ecx,4)
*np->tf = *proc->tf;
// Clear %eax so that fork returns 0 in the child.
np->tf->eax = 0;
for(i = 0; i < NOFILE; i++)
8010504c: 83 45 e4 01 addl $0x1,-0x1c(%ebp)
80105050: 83 7d e4 0f cmpl $0xf,-0x1c(%ebp)
80105054: 7e bd jle 80105013 <fork+0x104>
if(proc->ofile[i])
np->ofile[i] = filedup(proc->ofile[i]);
np->cwd = idup(proc->cwd);
80105056: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010505c: 8b 40 68 mov 0x68(%eax),%eax
8010505f: 89 04 24 mov %eax,(%esp)
80105062: e8 6c d0 ff ff call 801020d3 <idup>
80105067: 8b 55 e0 mov -0x20(%ebp),%edx
8010506a: 89 42 68 mov %eax,0x68(%edx)
safestrcpy(np->name, proc->name, sizeof(proc->name));
8010506d: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105073: 8d 50 6c lea 0x6c(%eax),%edx
80105076: 8b 45 e0 mov -0x20(%ebp),%eax
80105079: 83 c0 6c add $0x6c,%eax
8010507c: c7 44 24 08 10 00 00 movl $0x10,0x8(%esp)
80105083: 00
80105084: 89 54 24 04 mov %edx,0x4(%esp)
80105088: 89 04 24 mov %eax,(%esp)
8010508b: e8 9a 0f 00 00 call 8010602a <safestrcpy>
pid = np->pid;
80105090: 8b 45 e0 mov -0x20(%ebp),%eax
80105093: 8b 40 10 mov 0x10(%eax),%eax
80105096: 89 45 dc mov %eax,-0x24(%ebp)
// lock to force the compiler to emit the np->state write last.
acquire(&ptable.lock);
80105099: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801050a0: e8 06 0b 00 00 call 80105bab <acquire>
np->state = RUNNABLE;
801050a5: 8b 45 e0 mov -0x20(%ebp),%eax
801050a8: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax)
release(&ptable.lock);
801050af: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801050b6: e8 52 0b 00 00 call 80105c0d <release>
return pid;
801050bb: 8b 45 dc mov -0x24(%ebp),%eax
}
801050be: 83 c4 2c add $0x2c,%esp
801050c1: 5b pop %ebx
801050c2: 5e pop %esi
801050c3: 5f pop %edi
801050c4: 5d pop %ebp
801050c5: c3 ret
801050c6 <exit>:
// Exit the current process. Does not return.
// An exited process remains in the zombie state
// until its parent calls wait() to find out it exited.
void
exit(void)
{
801050c6: 55 push %ebp
801050c7: 89 e5 mov %esp,%ebp
801050c9: 83 ec 28 sub $0x28,%esp
struct proc *p;
int fd;
if(proc == initproc)
801050cc: 65 8b 15 04 00 00 00 mov %gs:0x4,%edx
801050d3: a1 68 c6 10 80 mov 0x8010c668,%eax
801050d8: 39 c2 cmp %eax,%edx
801050da: 75 0c jne 801050e8 <exit+0x22>
panic("init exiting");
801050dc: c7 04 24 1c 96 10 80 movl $0x8010961c,(%esp)
801050e3: e8 55 b4 ff ff call 8010053d <panic>
// Close all open files.
for(fd = 0; fd < NOFILE; fd++){
801050e8: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
801050ef: eb 44 jmp 80105135 <exit+0x6f>
if(proc->ofile[fd]){
801050f1: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801050f7: 8b 55 f0 mov -0x10(%ebp),%edx
801050fa: 83 c2 08 add $0x8,%edx
801050fd: 8b 44 90 08 mov 0x8(%eax,%edx,4),%eax
80105101: 85 c0 test %eax,%eax
80105103: 74 2c je 80105131 <exit+0x6b>
fileclose(proc->ofile[fd]);
80105105: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010510b: 8b 55 f0 mov -0x10(%ebp),%edx
8010510e: 83 c2 08 add $0x8,%edx
80105111: 8b 44 90 08 mov 0x8(%eax,%edx,4),%eax
80105115: 89 04 24 mov %eax,(%esp)
80105118: e8 e3 c6 ff ff call 80101800 <fileclose>
proc->ofile[fd] = 0;
8010511d: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105123: 8b 55 f0 mov -0x10(%ebp),%edx
80105126: 83 c2 08 add $0x8,%edx
80105129: c7 44 90 08 00 00 00 movl $0x0,0x8(%eax,%edx,4)
80105130: 00
if(proc == initproc)
panic("init exiting");
// Close all open files.
for(fd = 0; fd < NOFILE; fd++){
80105131: 83 45 f0 01 addl $0x1,-0x10(%ebp)
80105135: 83 7d f0 0f cmpl $0xf,-0x10(%ebp)
80105139: 7e b6 jle 801050f1 <exit+0x2b>
fileclose(proc->ofile[fd]);
proc->ofile[fd] = 0;
}
}
begin_op();
8010513b: e8 e1 eb ff ff call 80103d21 <begin_op>
iput(proc->cwd);
80105140: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105146: 8b 40 68 mov 0x68(%eax),%eax
80105149: 89 04 24 mov %eax,(%esp)
8010514c: e8 6d d1 ff ff call 801022be <iput>
end_op();
80105151: e8 4c ec ff ff call 80103da2 <end_op>
proc->cwd = 0;
80105156: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010515c: c7 40 68 00 00 00 00 movl $0x0,0x68(%eax)
acquire(&ptable.lock);
80105163: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010516a: e8 3c 0a 00 00 call 80105bab <acquire>
// Parent might be sleeping in wait().
wakeup1(proc->parent);
8010516f: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105175: 8b 40 14 mov 0x14(%eax),%eax
80105178: 89 04 24 mov %eax,(%esp)
8010517b: e8 da 05 00 00 call 8010575a <wakeup1>
// Pass abandoned children to init.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105180: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
80105187: eb 3b jmp 801051c4 <exit+0xfe>
if(p->parent == proc){
80105189: 8b 45 f4 mov -0xc(%ebp),%eax
8010518c: 8b 50 14 mov 0x14(%eax),%edx
8010518f: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105195: 39 c2 cmp %eax,%edx
80105197: 75 24 jne 801051bd <exit+0xf7>
p->parent = initproc;
80105199: 8b 15 68 c6 10 80 mov 0x8010c668,%edx
8010519f: 8b 45 f4 mov -0xc(%ebp),%eax
801051a2: 89 50 14 mov %edx,0x14(%eax)
if(p->state == ZOMBIE)
801051a5: 8b 45 f4 mov -0xc(%ebp),%eax
801051a8: 8b 40 0c mov 0xc(%eax),%eax
801051ab: 83 f8 05 cmp $0x5,%eax
801051ae: 75 0d jne 801051bd <exit+0xf7>
wakeup1(initproc);
801051b0: a1 68 c6 10 80 mov 0x8010c668,%eax
801051b5: 89 04 24 mov %eax,(%esp)
801051b8: e8 9d 05 00 00 call 8010575a <wakeup1>
// Parent might be sleeping in wait().
wakeup1(proc->parent);
// Pass abandoned children to init.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801051bd: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
801051c4: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
801051cb: 72 bc jb 80105189 <exit+0xc3>
wakeup1(initproc);
}
}
// Jump into the scheduler, never to return.
proc->state = ZOMBIE;
801051cd: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801051d3: c7 40 0c 05 00 00 00 movl $0x5,0xc(%eax)
sched();
801051da: e8 bd 03 00 00 call 8010559c <sched>
panic("zombie exit");
801051df: c7 04 24 29 96 10 80 movl $0x80109629,(%esp)
801051e6: e8 52 b3 ff ff call 8010053d <panic>
801051eb <wait>:
// Wait for a child process to exit and return its pid.
// Return -1 if this process has no children.
int
wait(void)
{
801051eb: 55 push %ebp
801051ec: 89 e5 mov %esp,%ebp
801051ee: 83 ec 28 sub $0x28,%esp
struct proc *p;
int havekids, pid;
acquire(&ptable.lock);
801051f1: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801051f8: e8 ae 09 00 00 call 80105bab <acquire>
for(;;){
// Scan through table looking for zombie children.
havekids = 0;
801051fd: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105204: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
8010520b: e9 9d 00 00 00 jmp 801052ad <wait+0xc2>
if(p->parent != proc)
80105210: 8b 45 f4 mov -0xc(%ebp),%eax
80105213: 8b 50 14 mov 0x14(%eax),%edx
80105216: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010521c: 39 c2 cmp %eax,%edx
8010521e: 0f 85 81 00 00 00 jne 801052a5 <wait+0xba>
continue;
havekids = 1;
80105224: c7 45 f0 01 00 00 00 movl $0x1,-0x10(%ebp)
if(p->state == ZOMBIE){
8010522b: 8b 45 f4 mov -0xc(%ebp),%eax
8010522e: 8b 40 0c mov 0xc(%eax),%eax
80105231: 83 f8 05 cmp $0x5,%eax
80105234: 75 70 jne 801052a6 <wait+0xbb>
// Found one.
pid = p->pid;
80105236: 8b 45 f4 mov -0xc(%ebp),%eax
80105239: 8b 40 10 mov 0x10(%eax),%eax
8010523c: 89 45 ec mov %eax,-0x14(%ebp)
kfree(p->kstack);
8010523f: 8b 45 f4 mov -0xc(%ebp),%eax
80105242: 8b 40 08 mov 0x8(%eax),%eax
80105245: 89 04 24 mov %eax,(%esp)
80105248: e8 f1 e0 ff ff call 8010333e <kfree>
p->kstack = 0;
8010524d: 8b 45 f4 mov -0xc(%ebp),%eax
80105250: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax)
freevm(p->pgdir);
80105257: 8b 45 f4 mov -0xc(%ebp),%eax
8010525a: 8b 40 04 mov 0x4(%eax),%eax
8010525d: 89 04 24 mov %eax,(%esp)
80105260: e8 4c 3d 00 00 call 80108fb1 <freevm>
p->state = UNUSED;
80105265: 8b 45 f4 mov -0xc(%ebp),%eax
80105268: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
p->pid = 0;
8010526f: 8b 45 f4 mov -0xc(%ebp),%eax
80105272: c7 40 10 00 00 00 00 movl $0x0,0x10(%eax)
p->parent = 0;
80105279: 8b 45 f4 mov -0xc(%ebp),%eax
8010527c: c7 40 14 00 00 00 00 movl $0x0,0x14(%eax)
p->name[0] = 0;
80105283: 8b 45 f4 mov -0xc(%ebp),%eax
80105286: c6 40 6c 00 movb $0x0,0x6c(%eax)
p->killed = 0;
8010528a: 8b 45 f4 mov -0xc(%ebp),%eax
8010528d: c7 40 24 00 00 00 00 movl $0x0,0x24(%eax)
release(&ptable.lock);
80105294: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010529b: e8 6d 09 00 00 call 80105c0d <release>
return pid;
801052a0: 8b 45 ec mov -0x14(%ebp),%eax
801052a3: eb 56 jmp 801052fb <wait+0x110>
for(;;){
// Scan through table looking for zombie children.
havekids = 0;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->parent != proc)
continue;
801052a5: 90 nop
acquire(&ptable.lock);
for(;;){
// Scan through table looking for zombie children.
havekids = 0;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801052a6: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
801052ad: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
801052b4: 0f 82 56 ff ff ff jb 80105210 <wait+0x25>
return pid;
}
}
// No point waiting if we don't have any children.
if(!havekids || proc->killed){
801052ba: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
801052be: 74 0d je 801052cd <wait+0xe2>
801052c0: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801052c6: 8b 40 24 mov 0x24(%eax),%eax
801052c9: 85 c0 test %eax,%eax
801052cb: 74 13 je 801052e0 <wait+0xf5>
release(&ptable.lock);
801052cd: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801052d4: e8 34 09 00 00 call 80105c0d <release>
return -1;
801052d9: b8 ff ff ff ff mov $0xffffffff,%eax
801052de: eb 1b jmp 801052fb <wait+0x110>
}
// Wait for children to exit. (See wakeup1 call in proc_exit.)
sleep(proc, &ptable.lock); //DOC: wait-sleep
801052e0: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801052e6: c7 44 24 04 a0 41 11 movl $0x801141a0,0x4(%esp)
801052ed: 80
801052ee: 89 04 24 mov %eax,(%esp)
801052f1: e8 c9 03 00 00 call 801056bf <sleep>
}
801052f6: e9 02 ff ff ff jmp 801051fd <wait+0x12>
}
801052fb: c9 leave
801052fc: c3 ret
801052fd <scheduler_def>:
// - eventually that process transfers control
// via swtch back to the scheduler.
void
scheduler_def(void) {
801052fd: 55 push %ebp
801052fe: 89 e5 mov %esp,%ebp
80105300: 83 ec 28 sub $0x28,%esp
struct proc *p;
for(;;){
// Enable interrupts on this processor.
sti();
80105303: e8 11 f9 ff ff call 80104c19 <sti>
// Loop over process table looking for process to run.
acquire(&ptable.lock);
80105308: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010530f: e8 97 08 00 00 call 80105bab <acquire>
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105314: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
8010531b: eb 62 jmp 8010537f <scheduler_def+0x82>
if(p->state != RUNNABLE)
8010531d: 8b 45 f4 mov -0xc(%ebp),%eax
80105320: 8b 40 0c mov 0xc(%eax),%eax
80105323: 83 f8 03 cmp $0x3,%eax
80105326: 75 4f jne 80105377 <scheduler_def+0x7a>
continue;
// Switch to chosen process. It is the process's job
// to release ptable.lock and then reacquire it
// before jumping back to us.
proc = p;
80105328: 8b 45 f4 mov -0xc(%ebp),%eax
8010532b: 65 a3 04 00 00 00 mov %eax,%gs:0x4
switchuvm(p);
80105331: 8b 45 f4 mov -0xc(%ebp),%eax
80105334: 89 04 24 mov %eax,(%esp)
80105337: e8 fe 37 00 00 call 80108b3a <switchuvm>
p->state = RUNNING;
8010533c: 8b 45 f4 mov -0xc(%ebp),%eax
8010533f: c7 40 0c 04 00 00 00 movl $0x4,0xc(%eax)
swtch(&cpu->scheduler, proc->context);
80105346: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010534c: 8b 40 1c mov 0x1c(%eax),%eax
8010534f: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
80105356: 83 c2 04 add $0x4,%edx
80105359: 89 44 24 04 mov %eax,0x4(%esp)
8010535d: 89 14 24 mov %edx,(%esp)
80105360: e8 3b 0d 00 00 call 801060a0 <swtch>
switchkvm();
80105365: e8 b3 37 00 00 call 80108b1d <switchkvm>
// Process is done running for now.
// It should have changed its p->state before coming back.
proc = 0;
8010536a: 65 c7 05 04 00 00 00 movl $0x0,%gs:0x4
80105371: 00 00 00 00
80105375: eb 01 jmp 80105378 <scheduler_def+0x7b>
// Loop over process table looking for process to run.
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->state != RUNNABLE)
continue;
80105377: 90 nop
// Enable interrupts on this processor.
sti();
// Loop over process table looking for process to run.
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105378: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
8010537f: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
80105386: 72 95 jb 8010531d <scheduler_def+0x20>
// Process is done running for now.
// It should have changed its p->state before coming back.
proc = 0;
}
release(&ptable.lock);
80105388: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010538f: e8 79 08 00 00 call 80105c0d <release>
}
80105394: e9 6a ff ff ff jmp 80105303 <scheduler_def+0x6>
80105399 <scheduler_fcfs>:
}
void
scheduler_fcfs(void) {
80105399: 55 push %ebp
8010539a: 89 e5 mov %esp,%ebp
8010539c: 83 ec 28 sub $0x28,%esp
struct proc *p,*chosenProc;
for(;;){
// Enable interrupts on this processor.
sti();
8010539f: e8 75 f8 ff ff call 80104c19 <sti>
// Loop over process table looking for process to run.
acquire(&ptable.lock);
801053a4: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801053ab: e8 fb 07 00 00 call 80105bab <acquire>
chosenProc=0;
801053b0: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
//Set chosenProc to the runnable proc with the minimum creation time.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801053b7: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
801053be: eb 2e jmp 801053ee <scheduler_fcfs+0x55>
if(p->state == RUNNABLE && (!chosenProc || (p->ctime < chosenProc->ctime)))
801053c0: 8b 45 f4 mov -0xc(%ebp),%eax
801053c3: 8b 40 0c mov 0xc(%eax),%eax
801053c6: 83 f8 03 cmp $0x3,%eax
801053c9: 75 1c jne 801053e7 <scheduler_fcfs+0x4e>
801053cb: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
801053cf: 74 10 je 801053e1 <scheduler_fcfs+0x48>
801053d1: 8b 45 f4 mov -0xc(%ebp),%eax
801053d4: 8b 50 7c mov 0x7c(%eax),%edx
801053d7: 8b 45 f0 mov -0x10(%ebp),%eax
801053da: 8b 40 7c mov 0x7c(%eax),%eax
801053dd: 39 c2 cmp %eax,%edx
801053df: 73 06 jae 801053e7 <scheduler_fcfs+0x4e>
chosenProc=p;
801053e1: 8b 45 f4 mov -0xc(%ebp),%eax
801053e4: 89 45 f0 mov %eax,-0x10(%ebp)
// Loop over process table looking for process to run.
acquire(&ptable.lock);
chosenProc=0;
//Set chosenProc to the runnable proc with the minimum creation time.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801053e7: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
801053ee: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
801053f5: 72 c9 jb 801053c0 <scheduler_fcfs+0x27>
if(p->state == RUNNABLE && (!chosenProc || (p->ctime < chosenProc->ctime)))
chosenProc=p;
}
if (!chosenProc) {
801053f7: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
801053fb: 75 0f jne 8010540c <scheduler_fcfs+0x73>
release(&ptable.lock);
801053fd: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105404: e8 04 08 00 00 call 80105c0d <release>
continue;
80105409: 90 nop
// Process is done running for now.
// It should have changed its p->state before coming back.
proc = 0;
release(&ptable.lock);
}
8010540a: eb 93 jmp 8010539f <scheduler_fcfs+0x6>
}
// Switch to chosen process. It is the process's job
// to release ptable.lock and then reacquire it
// before jumping back to us.
proc=chosenProc;
8010540c: 8b 45 f0 mov -0x10(%ebp),%eax
8010540f: 65 a3 04 00 00 00 mov %eax,%gs:0x4
//run process untill its no longer need cpu time
while(proc->state==RUNNABLE) {
80105415: eb 39 jmp 80105450 <scheduler_fcfs+0xb7>
switchuvm(chosenProc);
80105417: 8b 45 f0 mov -0x10(%ebp),%eax
8010541a: 89 04 24 mov %eax,(%esp)
8010541d: e8 18 37 00 00 call 80108b3a <switchuvm>
chosenProc->state = RUNNING;
80105422: 8b 45 f0 mov -0x10(%ebp),%eax
80105425: c7 40 0c 04 00 00 00 movl $0x4,0xc(%eax)
swtch(&cpu->scheduler, proc->context);
8010542c: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105432: 8b 40 1c mov 0x1c(%eax),%eax
80105435: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
8010543c: 83 c2 04 add $0x4,%edx
8010543f: 89 44 24 04 mov %eax,0x4(%esp)
80105443: 89 14 24 mov %edx,(%esp)
80105446: e8 55 0c 00 00 call 801060a0 <swtch>
switchkvm();
8010544b: e8 cd 36 00 00 call 80108b1d <switchkvm>
// to release ptable.lock and then reacquire it
// before jumping back to us.
proc=chosenProc;
//run process untill its no longer need cpu time
while(proc->state==RUNNABLE) {
80105450: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105456: 8b 40 0c mov 0xc(%eax),%eax
80105459: 83 f8 03 cmp $0x3,%eax
8010545c: 74 b9 je 80105417 <scheduler_fcfs+0x7e>
switchkvm();
}
// Process is done running for now.
// It should have changed its p->state before coming back.
proc = 0;
8010545e: 65 c7 05 04 00 00 00 movl $0x0,%gs:0x4
80105465: 00 00 00 00
release(&ptable.lock);
80105469: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105470: e8 98 07 00 00 call 80105c0d <release>
}
80105475: e9 25 ff ff ff jmp 8010539f <scheduler_fcfs+0x6>
8010547a <scheduler_sml>:
}
void
scheduler_sml(void) {
8010547a: 55 push %ebp
8010547b: 89 e5 mov %esp,%ebp
8010547d: 83 ec 28 sub $0x28,%esp
struct proc *p,*chosenProc=0;
80105480: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
uint priority;
int beenInside=0;
80105487: c7 45 e8 00 00 00 00 movl $0x0,-0x18(%ebp)
for(;;){
// Enable interrupts on this processor.
sti();
8010548e: e8 86 f7 ff ff call 80104c19 <sti>
acquire(&ptable.lock);
80105493: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010549a: e8 0c 07 00 00 call 80105bab <acquire>
//we start at MAX_PRIORITY, if we didnt find a process then we decrease the priority. if we found one, we resets it to max priority.
if (beenInside && !chosenProc && priority>MIN_PRIORITY)
8010549f: 83 7d e8 00 cmpl $0x0,-0x18(%ebp)
801054a3: 74 12 je 801054b7 <scheduler_sml+0x3d>
801054a5: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
801054a9: 75 0c jne 801054b7 <scheduler_sml+0x3d>
801054ab: 83 7d ec 01 cmpl $0x1,-0x14(%ebp)
801054af: 76 06 jbe 801054b7 <scheduler_sml+0x3d>
priority--;
801054b1: 83 6d ec 01 subl $0x1,-0x14(%ebp)
801054b5: eb 07 jmp 801054be <scheduler_sml+0x44>
else
priority=MAX_PRIORITY;
801054b7: c7 45 ec 03 00 00 00 movl $0x3,-0x14(%ebp)
chosenProc=0;
801054be: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
beenInside=1;
801054c5: c7 45 e8 01 00 00 00 movl $0x1,-0x18(%ebp)
// Loop over process table looking for process to run.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801054cc: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
801054d3: e9 90 00 00 00 jmp 80105568 <scheduler_sml+0xee>
if((p->state != RUNNABLE) || (p->priority!=priority))
801054d8: 8b 45 f4 mov -0xc(%ebp),%eax
801054db: 8b 40 0c mov 0xc(%eax),%eax
801054de: 83 f8 03 cmp $0x3,%eax
801054e1: 75 7d jne 80105560 <scheduler_sml+0xe6>
801054e3: 8b 45 f4 mov -0xc(%ebp),%eax
801054e6: 8b 80 8c 00 00 00 mov 0x8c(%eax),%eax
801054ec: 3b 45 ec cmp -0x14(%ebp),%eax
801054ef: 75 6f jne 80105560 <scheduler_sml+0xe6>
continue;
// Switch to chosen process. It is the process's job
// to release ptable.lock and then reacquire it
// before jumping back to us.
chosenProc=p;
801054f1: 8b 45 f4 mov -0xc(%ebp),%eax
801054f4: 89 45 f0 mov %eax,-0x10(%ebp)
proc = p;
801054f7: 8b 45 f4 mov -0xc(%ebp),%eax
801054fa: 65 a3 04 00 00 00 mov %eax,%gs:0x4
switchuvm(p);
80105500: 8b 45 f4 mov -0xc(%ebp),%eax
80105503: 89 04 24 mov %eax,(%esp)
80105506: e8 2f 36 00 00 call 80108b3a <switchuvm>
p->state = RUNNING;
8010550b: 8b 45 f4 mov -0xc(%ebp),%eax
8010550e: c7 40 0c 04 00 00 00 movl $0x4,0xc(%eax)
swtch(&cpu->scheduler, proc->context);
80105515: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010551b: 8b 40 1c mov 0x1c(%eax),%eax
8010551e: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
80105525: 83 c2 04 add $0x4,%edx
80105528: 89 44 24 04 mov %eax,0x4(%esp)
8010552c: 89 14 24 mov %edx,(%esp)
8010552f: e8 6c 0b 00 00 call 801060a0 <swtch>
switchkvm();
80105534: e8 e4 35 00 00 call 80108b1d <switchkvm>
// If a system call to change priority has been made, we need to relate this.
if (p->priority>priority)
80105539: 8b 45 f4 mov -0xc(%ebp),%eax
8010553c: 8b 80 8c 00 00 00 mov 0x8c(%eax),%eax
80105542: 3b 45 ec cmp -0x14(%ebp),%eax
80105545: 76 0c jbe 80105553 <scheduler_sml+0xd9>
priority=p->priority;
80105547: 8b 45 f4 mov -0xc(%ebp),%eax
8010554a: 8b 80 8c 00 00 00 mov 0x8c(%eax),%eax
80105550: 89 45 ec mov %eax,-0x14(%ebp)
// Process is done running for now.
// It should have changed its p->state before coming back.
proc = 0;
80105553: 65 c7 05 04 00 00 00 movl $0x0,%gs:0x4
8010555a: 00 00 00 00
8010555e: eb 01 jmp 80105561 <scheduler_sml+0xe7>
chosenProc=0;
beenInside=1;
// Loop over process table looking for process to run.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if((p->state != RUNNABLE) || (p->priority!=priority))
continue;
80105560: 90 nop
priority=MAX_PRIORITY;
chosenProc=0;
beenInside=1;
// Loop over process table looking for process to run.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105561: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
80105568: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
8010556f: 0f 82 63 ff ff ff jb 801054d8 <scheduler_sml+0x5e>
// Process is done running for now.
// It should have changed its p->state before coming back.
proc = 0;
}
release(&ptable.lock);
80105575: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010557c: e8 8c 06 00 00 call 80105c0d <release>
}
80105581: e9 08 ff ff ff jmp 8010548e <scheduler_sml+0x14>
80105586 <scheduler_dml>:
}
void
scheduler_dml(void) {
80105586: 55 push %ebp
80105587: 89 e5 mov %esp,%ebp
80105589: 83 ec 08 sub $0x8,%esp
scheduler_sml();
8010558c: e8 e9 fe ff ff call 8010547a <scheduler_sml>
80105591 <scheduler>:
}
void
scheduler(void)
{
80105591: 55 push %ebp
80105592: 89 e5 mov %esp,%ebp
80105594: 83 ec 08 sub $0x8,%esp
#elif SCHEDFLAG == FCFS
scheduler_fcfs();
#elif SCHEDFLAG == SML
scheduler_sml();
#elif SCHEDFLAG == DML
scheduler_dml();
80105597: e8 ea ff ff ff call 80105586 <scheduler_dml>
8010559c <sched>:
// Enter scheduler. Must hold only ptable.lock
// and have changed proc->state.
void
sched(void)
{
8010559c: 55 push %ebp
8010559d: 89 e5 mov %esp,%ebp
8010559f: 83 ec 28 sub $0x28,%esp
int intena;
if(!holding(&ptable.lock))
801055a2: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801055a9: e8 1b 07 00 00 call 80105cc9 <holding>
801055ae: 85 c0 test %eax,%eax
801055b0: 75 0c jne 801055be <sched+0x22>
panic("sched ptable.lock");
801055b2: c7 04 24 35 96 10 80 movl $0x80109635,(%esp)
801055b9: e8 7f af ff ff call 8010053d <panic>
if(cpu->ncli != 1)
801055be: 65 a1 00 00 00 00 mov %gs:0x0,%eax
801055c4: 8b 80 ac 00 00 00 mov 0xac(%eax),%eax
801055ca: 83 f8 01 cmp $0x1,%eax
801055cd: 74 0c je 801055db <sched+0x3f>
panic("sched locks");
801055cf: c7 04 24 47 96 10 80 movl $0x80109647,(%esp)
801055d6: e8 62 af ff ff call 8010053d <panic>
if(proc->state == RUNNING)
801055db: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801055e1: 8b 40 0c mov 0xc(%eax),%eax
801055e4: 83 f8 04 cmp $0x4,%eax
801055e7: 75 0c jne 801055f5 <sched+0x59>
panic("sched running");
801055e9: c7 04 24 53 96 10 80 movl $0x80109653,(%esp)
801055f0: e8 48 af ff ff call 8010053d <panic>
if(readeflags()&FL_IF)
801055f5: e8 0a f6 ff ff call 80104c04 <readeflags>
801055fa: 25 00 02 00 00 and $0x200,%eax
801055ff: 85 c0 test %eax,%eax
80105601: 74 0c je 8010560f <sched+0x73>
panic("sched interruptible");
80105603: c7 04 24 61 96 10 80 movl $0x80109661,(%esp)
8010560a: e8 2e af ff ff call 8010053d <panic>
intena = cpu->intena;
8010560f: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105615: 8b 80 b0 00 00 00 mov 0xb0(%eax),%eax
8010561b: 89 45 f4 mov %eax,-0xc(%ebp)
swtch(&proc->context, cpu->scheduler);
8010561e: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105624: 8b 40 04 mov 0x4(%eax),%eax
80105627: 65 8b 15 04 00 00 00 mov %gs:0x4,%edx
8010562e: 83 c2 1c add $0x1c,%edx
80105631: 89 44 24 04 mov %eax,0x4(%esp)
80105635: 89 14 24 mov %edx,(%esp)
80105638: e8 63 0a 00 00 call 801060a0 <swtch>
cpu->intena = intena;
8010563d: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105643: 8b 55 f4 mov -0xc(%ebp),%edx
80105646: 89 90 b0 00 00 00 mov %edx,0xb0(%eax)
}
8010564c: c9 leave
8010564d: c3 ret
8010564e <yield>:
// Give up the CPU for one scheduling round.
void
yield(void)
{
8010564e: 55 push %ebp
8010564f: 89 e5 mov %esp,%ebp
80105651: 83 ec 18 sub $0x18,%esp
acquire(&ptable.lock); //DOC: yieldlock
80105654: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010565b: e8 4b 05 00 00 call 80105bab <acquire>
proc->state = RUNNABLE;
80105660: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105666: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax)
sched();
8010566d: e8 2a ff ff ff call 8010559c <sched>
release(&ptable.lock);
80105672: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105679: e8 8f 05 00 00 call 80105c0d <release>
}
8010567e: c9 leave
8010567f: c3 ret
80105680 <forkret>:
// A fork child's very first scheduling by scheduler()
// will swtch here. "Return" to user space.
void
forkret(void)
{
80105680: 55 push %ebp
80105681: 89 e5 mov %esp,%ebp
80105683: 83 ec 18 sub $0x18,%esp
static int first = 1;
// Still holding ptable.lock from scheduler.
release(&ptable.lock);
80105686: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010568d: e8 7b 05 00 00 call 80105c0d <release>
if (first) {
80105692: a1 20 c0 10 80 mov 0x8010c020,%eax
80105697: 85 c0 test %eax,%eax
80105699: 74 22 je 801056bd <forkret+0x3d>
// Some initialization functions must be run in the context
// of a regular process (e.g., they call sleep), and thus cannot
// be run from main().
first = 0;
8010569b: c7 05 20 c0 10 80 00 movl $0x0,0x8010c020
801056a2: 00 00 00
iinit(ROOTDEV);
801056a5: c7 04 24 01 00 00 00 movl $0x1,(%esp)
801056ac: e8 2b c7 ff ff call 80101ddc <iinit>
initlog(ROOTDEV);
801056b1: c7 04 24 01 00 00 00 movl $0x1,(%esp)
801056b8: e8 63 e4 ff ff call 80103b20 <initlog>
}
// Return to "caller", actually trapret (see allocproc).
}
801056bd: c9 leave
801056be: c3 ret
801056bf <sleep>:
// Atomically release lock and sleep on chan.
// Reacquires lock when awakened.
void
sleep(void *chan, struct spinlock *lk)
{
801056bf: 55 push %ebp
801056c0: 89 e5 mov %esp,%ebp
801056c2: 83 ec 18 sub $0x18,%esp
if(proc == 0)
801056c5: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801056cb: 85 c0 test %eax,%eax
801056cd: 75 0c jne 801056db <sleep+0x1c>
panic("sleep");
801056cf: c7 04 24 75 96 10 80 movl $0x80109675,(%esp)
801056d6: e8 62 ae ff ff call 8010053d <panic>
if(lk == 0)
801056db: 83 7d 0c 00 cmpl $0x0,0xc(%ebp)
801056df: 75 0c jne 801056ed <sleep+0x2e>
panic("sleep without lk");
801056e1: c7 04 24 7b 96 10 80 movl $0x8010967b,(%esp)
801056e8: e8 50 ae ff ff call 8010053d <panic>
// change p->state and then call sched.
// Once we hold ptable.lock, we can be
// guaranteed that we won't miss any wakeup
// (wakeup runs with ptable.lock locked),
// so it's okay to release lk.
if(lk != &ptable.lock){ //DOC: sleeplock0
801056ed: 81 7d 0c a0 41 11 80 cmpl $0x801141a0,0xc(%ebp)
801056f4: 74 17 je 8010570d <sleep+0x4e>
acquire(&ptable.lock); //DOC: sleeplock1
801056f6: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801056fd: e8 a9 04 00 00 call 80105bab <acquire>
release(lk);
80105702: 8b 45 0c mov 0xc(%ebp),%eax
80105705: 89 04 24 mov %eax,(%esp)
80105708: e8 00 05 00 00 call 80105c0d <release>
}
// Go to sleep.
proc->chan = chan;
8010570d: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105713: 8b 55 08 mov 0x8(%ebp),%edx
80105716: 89 50 20 mov %edx,0x20(%eax)
proc->state = SLEEPING;
80105719: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010571f: c7 40 0c 02 00 00 00 movl $0x2,0xc(%eax)
sched();
80105726: e8 71 fe ff ff call 8010559c <sched>
// Tidy up.
proc->chan = 0;
8010572b: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105731: c7 40 20 00 00 00 00 movl $0x0,0x20(%eax)
// Reacquire original lock.
if(lk != &ptable.lock){ //DOC: sleeplock2
80105738: 81 7d 0c a0 41 11 80 cmpl $0x801141a0,0xc(%ebp)
8010573f: 74 17 je 80105758 <sleep+0x99>
release(&ptable.lock);
80105741: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105748: e8 c0 04 00 00 call 80105c0d <release>
acquire(lk);
8010574d: 8b 45 0c mov 0xc(%ebp),%eax
80105750: 89 04 24 mov %eax,(%esp)
80105753: e8 53 04 00 00 call 80105bab <acquire>
}
}
80105758: c9 leave
80105759: c3 ret
8010575a <wakeup1>:
//PAGEBREAK!
// Wake up all processes sleeping on chan.
// The ptable lock must be held.
static void
wakeup1(void *chan)
{
8010575a: 55 push %ebp
8010575b: 89 e5 mov %esp,%ebp
8010575d: 83 ec 10 sub $0x10,%esp
struct proc *p;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
80105760: c7 45 fc d4 41 11 80 movl $0x801141d4,-0x4(%ebp)
80105767: eb 34 jmp 8010579d <wakeup1+0x43>
if(p->state == SLEEPING && p->chan == chan){
80105769: 8b 45 fc mov -0x4(%ebp),%eax
8010576c: 8b 40 0c mov 0xc(%eax),%eax
8010576f: 83 f8 02 cmp $0x2,%eax
80105772: 75 22 jne 80105796 <wakeup1+0x3c>
80105774: 8b 45 fc mov -0x4(%ebp),%eax
80105777: 8b 40 20 mov 0x20(%eax),%eax
8010577a: 3b 45 08 cmp 0x8(%ebp),%eax
8010577d: 75 17 jne 80105796 <wakeup1+0x3c>
#if SCHEDFLAG == DML
p->priority=MAX_PRIORITY;
8010577f: 8b 45 fc mov -0x4(%ebp),%eax
80105782: c7 80 8c 00 00 00 03 movl $0x3,0x8c(%eax)
80105789: 00 00 00
#endif
p->state = RUNNABLE;
8010578c: 8b 45 fc mov -0x4(%ebp),%eax
8010578f: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax)
static void
wakeup1(void *chan)
{
struct proc *p;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
80105796: 81 45 fc 90 00 00 00 addl $0x90,-0x4(%ebp)
8010579d: 81 7d fc d4 65 11 80 cmpl $0x801165d4,-0x4(%ebp)
801057a4: 72 c3 jb 80105769 <wakeup1+0xf>
p->priority=MAX_PRIORITY;
#endif
p->state = RUNNABLE;
}
}
801057a6: c9 leave
801057a7: c3 ret
801057a8 <wakeup>:
// Wake up all processes sleeping on chan.
void
wakeup(void *chan)
{
801057a8: 55 push %ebp
801057a9: 89 e5 mov %esp,%ebp
801057ab: 83 ec 18 sub $0x18,%esp
acquire(&ptable.lock);
801057ae: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801057b5: e8 f1 03 00 00 call 80105bab <acquire>
wakeup1(chan);
801057ba: 8b 45 08 mov 0x8(%ebp),%eax
801057bd: 89 04 24 mov %eax,(%esp)
801057c0: e8 95 ff ff ff call 8010575a <wakeup1>
release(&ptable.lock);
801057c5: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801057cc: e8 3c 04 00 00 call 80105c0d <release>
}
801057d1: c9 leave
801057d2: c3 ret
801057d3 <kill>:
// Kill the process with the given pid.
// Process won't exit until it returns
// to user space (see trap in trap.c).
int
kill(int pid)
{
801057d3: 55 push %ebp
801057d4: 89 e5 mov %esp,%ebp
801057d6: 83 ec 28 sub $0x28,%esp
struct proc *p;
acquire(&ptable.lock);
801057d9: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801057e0: e8 c6 03 00 00 call 80105bab <acquire>
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801057e5: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
801057ec: eb 44 jmp 80105832 <kill+0x5f>
if(p->pid == pid){
801057ee: 8b 45 f4 mov -0xc(%ebp),%eax
801057f1: 8b 40 10 mov 0x10(%eax),%eax
801057f4: 3b 45 08 cmp 0x8(%ebp),%eax
801057f7: 75 32 jne 8010582b <kill+0x58>
p->killed = 1;
801057f9: 8b 45 f4 mov -0xc(%ebp),%eax
801057fc: c7 40 24 01 00 00 00 movl $0x1,0x24(%eax)
// Wake process from sleep if necessary.
if(p->state == SLEEPING)
80105803: 8b 45 f4 mov -0xc(%ebp),%eax
80105806: 8b 40 0c mov 0xc(%eax),%eax
80105809: 83 f8 02 cmp $0x2,%eax
8010580c: 75 0a jne 80105818 <kill+0x45>
p->state = RUNNABLE;
8010580e: 8b 45 f4 mov -0xc(%ebp),%eax
80105811: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax)
release(&ptable.lock);
80105818: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
8010581f: e8 e9 03 00 00 call 80105c0d <release>
return 0;
80105824: b8 00 00 00 00 mov $0x0,%eax
80105829: eb 21 jmp 8010584c <kill+0x79>
kill(int pid)
{
struct proc *p;
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
8010582b: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
80105832: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
80105839: 72 b3 jb 801057ee <kill+0x1b>
p->state = RUNNABLE;
release(&ptable.lock);
return 0;
}
}
release(&ptable.lock);
8010583b: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105842: e8 c6 03 00 00 call 80105c0d <release>
return -1;
80105847: b8 ff ff ff ff mov $0xffffffff,%eax
}
8010584c: c9 leave
8010584d: c3 ret
8010584e <procdump>:
// Print a process listing to console. For debugging.
// Runs when user types ^P on console.
// No lock to avoid wedging a stuck machine further.
void
procdump(void)
{
8010584e: 55 push %ebp
8010584f: 89 e5 mov %esp,%ebp
80105851: 83 ec 58 sub $0x58,%esp
int i;
struct proc *p;
char *state;
uint pc[10];
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105854: c7 45 f0 d4 41 11 80 movl $0x801141d4,-0x10(%ebp)
8010585b: e9 db 00 00 00 jmp 8010593b <procdump+0xed>
if(p->state == UNUSED)
80105860: 8b 45 f0 mov -0x10(%ebp),%eax
80105863: 8b 40 0c mov 0xc(%eax),%eax
80105866: 85 c0 test %eax,%eax
80105868: 0f 84 c5 00 00 00 je 80105933 <procdump+0xe5>
continue;
if(p->state >= 0 && p->state < NELEM(states) && states[p->state])
8010586e: 8b 45 f0 mov -0x10(%ebp),%eax
80105871: 8b 40 0c mov 0xc(%eax),%eax
80105874: 83 f8 05 cmp $0x5,%eax
80105877: 77 23 ja 8010589c <procdump+0x4e>
80105879: 8b 45 f0 mov -0x10(%ebp),%eax
8010587c: 8b 40 0c mov 0xc(%eax),%eax
8010587f: 8b 04 85 08 c0 10 80 mov -0x7fef3ff8(,%eax,4),%eax
80105886: 85 c0 test %eax,%eax
80105888: 74 12 je 8010589c <procdump+0x4e>
state = states[p->state];
8010588a: 8b 45 f0 mov -0x10(%ebp),%eax
8010588d: 8b 40 0c mov 0xc(%eax),%eax
80105890: 8b 04 85 08 c0 10 80 mov -0x7fef3ff8(,%eax,4),%eax
80105897: 89 45 ec mov %eax,-0x14(%ebp)
8010589a: eb 07 jmp 801058a3 <procdump+0x55>
else
state = "???";
8010589c: c7 45 ec 8c 96 10 80 movl $0x8010968c,-0x14(%ebp)
cprintf("%d %s %s", p->pid, state, p->name);
801058a3: 8b 45 f0 mov -0x10(%ebp),%eax
801058a6: 8d 50 6c lea 0x6c(%eax),%edx
801058a9: 8b 45 f0 mov -0x10(%ebp),%eax
801058ac: 8b 40 10 mov 0x10(%eax),%eax
801058af: 89 54 24 0c mov %edx,0xc(%esp)
801058b3: 8b 55 ec mov -0x14(%ebp),%edx
801058b6: 89 54 24 08 mov %edx,0x8(%esp)
801058ba: 89 44 24 04 mov %eax,0x4(%esp)
801058be: c7 04 24 90 96 10 80 movl $0x80109690,(%esp)
801058c5: e8 d7 aa ff ff call 801003a1 <cprintf>
if(p->state == SLEEPING){
801058ca: 8b 45 f0 mov -0x10(%ebp),%eax
801058cd: 8b 40 0c mov 0xc(%eax),%eax
801058d0: 83 f8 02 cmp $0x2,%eax
801058d3: 75 50 jne 80105925 <procdump+0xd7>
getcallerpcs((uint*)p->context->ebp+2, pc);
801058d5: 8b 45 f0 mov -0x10(%ebp),%eax
801058d8: 8b 40 1c mov 0x1c(%eax),%eax
801058db: 8b 40 0c mov 0xc(%eax),%eax
801058de: 83 c0 08 add $0x8,%eax
801058e1: 8d 55 c4 lea -0x3c(%ebp),%edx
801058e4: 89 54 24 04 mov %edx,0x4(%esp)
801058e8: 89 04 24 mov %eax,(%esp)
801058eb: e8 6c 03 00 00 call 80105c5c <getcallerpcs>
for(i=0; i<10 && pc[i] != 0; i++)
801058f0: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
801058f7: eb 1b jmp 80105914 <procdump+0xc6>
cprintf(" %p", pc[i]);
801058f9: 8b 45 f4 mov -0xc(%ebp),%eax
801058fc: 8b 44 85 c4 mov -0x3c(%ebp,%eax,4),%eax
80105900: 89 44 24 04 mov %eax,0x4(%esp)
80105904: c7 04 24 99 96 10 80 movl $0x80109699,(%esp)
8010590b: e8 91 aa ff ff call 801003a1 <cprintf>
else
state = "???";
cprintf("%d %s %s", p->pid, state, p->name);
if(p->state == SLEEPING){
getcallerpcs((uint*)p->context->ebp+2, pc);
for(i=0; i<10 && pc[i] != 0; i++)
80105910: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80105914: 83 7d f4 09 cmpl $0x9,-0xc(%ebp)
80105918: 7f 0b jg 80105925 <procdump+0xd7>
8010591a: 8b 45 f4 mov -0xc(%ebp),%eax
8010591d: 8b 44 85 c4 mov -0x3c(%ebp,%eax,4),%eax
80105921: 85 c0 test %eax,%eax
80105923: 75 d4 jne 801058f9 <procdump+0xab>
cprintf(" %p", pc[i]);
}
cprintf("\n");
80105925: c7 04 24 9d 96 10 80 movl $0x8010969d,(%esp)
8010592c: e8 70 aa ff ff call 801003a1 <cprintf>
80105931: eb 01 jmp 80105934 <procdump+0xe6>
char *state;
uint pc[10];
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->state == UNUSED)
continue;
80105933: 90 nop
int i;
struct proc *p;
char *state;
uint pc[10];
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105934: 81 45 f0 90 00 00 00 addl $0x90,-0x10(%ebp)
8010593b: 81 7d f0 d4 65 11 80 cmpl $0x801165d4,-0x10(%ebp)
80105942: 0f 82 18 ff ff ff jb 80105860 <procdump+0x12>
for(i=0; i<10 && pc[i] != 0; i++)
cprintf(" %p", pc[i]);
}
cprintf("\n");
}
}
80105948: c9 leave
80105949: c3 ret
8010594a <updateTimes>:
void
updateTimes()
{
8010594a: 55 push %ebp
8010594b: 89 e5 mov %esp,%ebp
8010594d: 83 ec 10 sub $0x10,%esp
struct proc *p;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105950: c7 45 fc d4 41 11 80 movl $0x801141d4,-0x4(%ebp)
80105957: eb 67 jmp 801059c0 <updateTimes+0x76>
if(p->state == RUNNABLE)
80105959: 8b 45 fc mov -0x4(%ebp),%eax
8010595c: 8b 40 0c mov 0xc(%eax),%eax
8010595f: 83 f8 03 cmp $0x3,%eax
80105962: 75 15 jne 80105979 <updateTimes+0x2f>
p->retime++;
80105964: 8b 45 fc mov -0x4(%ebp),%eax
80105967: 8b 80 84 00 00 00 mov 0x84(%eax),%eax
8010596d: 8d 50 01 lea 0x1(%eax),%edx
80105970: 8b 45 fc mov -0x4(%ebp),%eax
80105973: 89 90 84 00 00 00 mov %edx,0x84(%eax)
if(p->state == RUNNING)
80105979: 8b 45 fc mov -0x4(%ebp),%eax
8010597c: 8b 40 0c mov 0xc(%eax),%eax
8010597f: 83 f8 04 cmp $0x4,%eax
80105982: 75 15 jne 80105999 <updateTimes+0x4f>
p->rutime++;
80105984: 8b 45 fc mov -0x4(%ebp),%eax
80105987: 8b 80 88 00 00 00 mov 0x88(%eax),%eax
8010598d: 8d 50 01 lea 0x1(%eax),%edx
80105990: 8b 45 fc mov -0x4(%ebp),%eax
80105993: 89 90 88 00 00 00 mov %edx,0x88(%eax)
if(p->state == SLEEPING)
80105999: 8b 45 fc mov -0x4(%ebp),%eax
8010599c: 8b 40 0c mov 0xc(%eax),%eax
8010599f: 83 f8 02 cmp $0x2,%eax
801059a2: 75 15 jne 801059b9 <updateTimes+0x6f>
p->stime++;
801059a4: 8b 45 fc mov -0x4(%ebp),%eax
801059a7: 8b 80 80 00 00 00 mov 0x80(%eax),%eax
801059ad: 8d 50 01 lea 0x1(%eax),%edx
801059b0: 8b 45 fc mov -0x4(%ebp),%eax
801059b3: 89 90 80 00 00 00 mov %edx,0x80(%eax)
void
updateTimes()
{
struct proc *p;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801059b9: 81 45 fc 90 00 00 00 addl $0x90,-0x4(%ebp)
801059c0: 81 7d fc d4 65 11 80 cmpl $0x801165d4,-0x4(%ebp)
801059c7: 72 90 jb 80105959 <updateTimes+0xf>
if(p->state == RUNNING)
p->rutime++;
if(p->state == SLEEPING)
p->stime++;
}
}
801059c9: c9 leave
801059ca: c3 ret
801059cb <wait2>:
int
wait2(int *retime, int *rutime, int* stime) {
801059cb: 55 push %ebp
801059cc: 89 e5 mov %esp,%ebp
801059ce: 83 ec 28 sub $0x28,%esp
struct proc *p;
int havekids, pid;
acquire(&ptable.lock);
801059d1: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
801059d8: e8 ce 01 00 00 call 80105bab <acquire>
for(;;){
// Scan through table looking for zombie children.
havekids = 0;
801059dd: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
801059e4: c7 45 f4 d4 41 11 80 movl $0x801141d4,-0xc(%ebp)
801059eb: e9 f8 00 00 00 jmp 80105ae8 <wait2+0x11d>
if(p->parent != proc)
801059f0: 8b 45 f4 mov -0xc(%ebp),%eax
801059f3: 8b 50 14 mov 0x14(%eax),%edx
801059f6: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801059fc: 39 c2 cmp %eax,%edx
801059fe: 0f 85 dc 00 00 00 jne 80105ae0 <wait2+0x115>
continue;
havekids = 1;
80105a04: c7 45 f0 01 00 00 00 movl $0x1,-0x10(%ebp)
if(p->state == ZOMBIE){
80105a0b: 8b 45 f4 mov -0xc(%ebp),%eax
80105a0e: 8b 40 0c mov 0xc(%eax),%eax
80105a11: 83 f8 05 cmp $0x5,%eax
80105a14: 0f 85 c7 00 00 00 jne 80105ae1 <wait2+0x116>
// Found one.
*retime=p->retime;
80105a1a: 8b 45 f4 mov -0xc(%ebp),%eax
80105a1d: 8b 80 84 00 00 00 mov 0x84(%eax),%eax
80105a23: 89 c2 mov %eax,%edx
80105a25: 8b 45 08 mov 0x8(%ebp),%eax
80105a28: 89 10 mov %edx,(%eax)
*rutime=p->rutime;
80105a2a: 8b 45 f4 mov -0xc(%ebp),%eax
80105a2d: 8b 80 88 00 00 00 mov 0x88(%eax),%eax
80105a33: 89 c2 mov %eax,%edx
80105a35: 8b 45 0c mov 0xc(%ebp),%eax
80105a38: 89 10 mov %edx,(%eax)
*stime=p->stime;
80105a3a: 8b 45 f4 mov -0xc(%ebp),%eax
80105a3d: 8b 80 80 00 00 00 mov 0x80(%eax),%eax
80105a43: 89 c2 mov %eax,%edx
80105a45: 8b 45 10 mov 0x10(%ebp),%eax
80105a48: 89 10 mov %edx,(%eax)
p->retime=0;
80105a4a: 8b 45 f4 mov -0xc(%ebp),%eax
80105a4d: c7 80 84 00 00 00 00 movl $0x0,0x84(%eax)
80105a54: 00 00 00
p->rutime=0;
80105a57: 8b 45 f4 mov -0xc(%ebp),%eax
80105a5a: c7 80 88 00 00 00 00 movl $0x0,0x88(%eax)
80105a61: 00 00 00
p->stime=0;
80105a64: 8b 45 f4 mov -0xc(%ebp),%eax
80105a67: c7 80 80 00 00 00 00 movl $0x0,0x80(%eax)
80105a6e: 00 00 00
pid = p->pid;
80105a71: 8b 45 f4 mov -0xc(%ebp),%eax
80105a74: 8b 40 10 mov 0x10(%eax),%eax
80105a77: 89 45 ec mov %eax,-0x14(%ebp)
kfree(p->kstack);
80105a7a: 8b 45 f4 mov -0xc(%ebp),%eax
80105a7d: 8b 40 08 mov 0x8(%eax),%eax
80105a80: 89 04 24 mov %eax,(%esp)
80105a83: e8 b6 d8 ff ff call 8010333e <kfree>
p->kstack = 0;
80105a88: 8b 45 f4 mov -0xc(%ebp),%eax
80105a8b: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax)
freevm(p->pgdir);
80105a92: 8b 45 f4 mov -0xc(%ebp),%eax
80105a95: 8b 40 04 mov 0x4(%eax),%eax
80105a98: 89 04 24 mov %eax,(%esp)
80105a9b: e8 11 35 00 00 call 80108fb1 <freevm>
p->state = UNUSED;
80105aa0: 8b 45 f4 mov -0xc(%ebp),%eax
80105aa3: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
p->pid = 0;
80105aaa: 8b 45 f4 mov -0xc(%ebp),%eax
80105aad: c7 40 10 00 00 00 00 movl $0x0,0x10(%eax)
p->parent = 0;
80105ab4: 8b 45 f4 mov -0xc(%ebp),%eax
80105ab7: c7 40 14 00 00 00 00 movl $0x0,0x14(%eax)
p->name[0] = 0;
80105abe: 8b 45 f4 mov -0xc(%ebp),%eax
80105ac1: c6 40 6c 00 movb $0x0,0x6c(%eax)
p->killed = 0;
80105ac5: 8b 45 f4 mov -0xc(%ebp),%eax
80105ac8: c7 40 24 00 00 00 00 movl $0x0,0x24(%eax)
release(&ptable.lock);
80105acf: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105ad6: e8 32 01 00 00 call 80105c0d <release>
return pid;
80105adb: 8b 45 ec mov -0x14(%ebp),%eax
80105ade: eb 56 jmp 80105b36 <wait2+0x16b>
for(;;){
// Scan through table looking for zombie children.
havekids = 0;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->parent != proc)
continue;
80105ae0: 90 nop
acquire(&ptable.lock);
for(;;){
// Scan through table looking for zombie children.
havekids = 0;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
80105ae1: 81 45 f4 90 00 00 00 addl $0x90,-0xc(%ebp)
80105ae8: 81 7d f4 d4 65 11 80 cmpl $0x801165d4,-0xc(%ebp)
80105aef: 0f 82 fb fe ff ff jb 801059f0 <wait2+0x25>
return pid;
}
}
// No point waiting if we don't have any children.
if(!havekids || proc->killed){
80105af5: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80105af9: 74 0d je 80105b08 <wait2+0x13d>
80105afb: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105b01: 8b 40 24 mov 0x24(%eax),%eax
80105b04: 85 c0 test %eax,%eax
80105b06: 74 13 je 80105b1b <wait2+0x150>
release(&ptable.lock);
80105b08: c7 04 24 a0 41 11 80 movl $0x801141a0,(%esp)
80105b0f: e8 f9 00 00 00 call 80105c0d <release>
return -1;
80105b14: b8 ff ff ff ff mov $0xffffffff,%eax
80105b19: eb 1b jmp 80105b36 <wait2+0x16b>
}
// Wait for children to exit. (See wakeup1 call in proc_exit.)
sleep(proc, &ptable.lock); //DOC: wait-sleep
80105b1b: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80105b21: c7 44 24 04 a0 41 11 movl $0x801141a0,0x4(%esp)
80105b28: 80
80105b29: 89 04 24 mov %eax,(%esp)
80105b2c: e8 8e fb ff ff call 801056bf <sleep>
}
80105b31: e9 a7 fe ff ff jmp 801059dd <wait2+0x12>
}
80105b36: c9 leave
80105b37: c3 ret
80105b38 <set_prio>:
int
set_prio(int priority){
80105b38: 55 push %ebp
80105b39: 89 e5 mov %esp,%ebp
#if SCHEDFLAG == DML
return -1;
80105b3b: b8 ff ff ff ff mov $0xffffffff,%eax
#endif
if ((priority>MAX_PRIORITY) | (priority<MIN_PRIORITY))
return -1;
proc->priority=priority;
return 0;
}
80105b40: 5d pop %ebp
80105b41: c3 ret
...
80105b44 <readeflags>:
asm volatile("ltr %0" : : "r" (sel));
}
static inline uint
readeflags(void)
{
80105b44: 55 push %ebp
80105b45: 89 e5 mov %esp,%ebp
80105b47: 53 push %ebx
80105b48: 83 ec 10 sub $0x10,%esp
uint eflags;
asm volatile("pushfl; popl %0" : "=r" (eflags));
80105b4b: 9c pushf
80105b4c: 5b pop %ebx
80105b4d: 89 5d f8 mov %ebx,-0x8(%ebp)
return eflags;
80105b50: 8b 45 f8 mov -0x8(%ebp),%eax
}
80105b53: 83 c4 10 add $0x10,%esp
80105b56: 5b pop %ebx
80105b57: 5d pop %ebp
80105b58: c3 ret
80105b59 <cli>:
asm volatile("movw %0, %%gs" : : "r" (v));
}
static inline void
cli(void)
{
80105b59: 55 push %ebp
80105b5a: 89 e5 mov %esp,%ebp
asm volatile("cli");
80105b5c: fa cli
}
80105b5d: 5d pop %ebp
80105b5e: c3 ret
80105b5f <sti>:
static inline void
sti(void)
{
80105b5f: 55 push %ebp
80105b60: 89 e5 mov %esp,%ebp
asm volatile("sti");
80105b62: fb sti
}
80105b63: 5d pop %ebp
80105b64: c3 ret
80105b65 <xchg>:
static inline uint
xchg(volatile uint *addr, uint newval)
{
80105b65: 55 push %ebp
80105b66: 89 e5 mov %esp,%ebp
80105b68: 53 push %ebx
80105b69: 83 ec 10 sub $0x10,%esp
uint result;
// The + in "+m" denotes a read-modify-write operand.
asm volatile("lock; xchgl %0, %1" :
"+m" (*addr), "=a" (result) :
80105b6c: 8b 55 08 mov 0x8(%ebp),%edx
xchg(volatile uint *addr, uint newval)
{
uint result;
// The + in "+m" denotes a read-modify-write operand.
asm volatile("lock; xchgl %0, %1" :
80105b6f: 8b 45 0c mov 0xc(%ebp),%eax
"+m" (*addr), "=a" (result) :
80105b72: 8b 4d 08 mov 0x8(%ebp),%ecx
xchg(volatile uint *addr, uint newval)
{
uint result;
// The + in "+m" denotes a read-modify-write operand.
asm volatile("lock; xchgl %0, %1" :
80105b75: 89 c3 mov %eax,%ebx
80105b77: 89 d8 mov %ebx,%eax
80105b79: f0 87 02 lock xchg %eax,(%edx)
80105b7c: 89 c3 mov %eax,%ebx
80105b7e: 89 5d f8 mov %ebx,-0x8(%ebp)
"+m" (*addr), "=a" (result) :
"1" (newval) :
"cc");
return result;
80105b81: 8b 45 f8 mov -0x8(%ebp),%eax
}
80105b84: 83 c4 10 add $0x10,%esp
80105b87: 5b pop %ebx
80105b88: 5d pop %ebp
80105b89: c3 ret
80105b8a <initlock>:
#include "proc.h"
#include "spinlock.h"
void
initlock(struct spinlock *lk, char *name)
{
80105b8a: 55 push %ebp
80105b8b: 89 e5 mov %esp,%ebp
lk->name = name;
80105b8d: 8b 45 08 mov 0x8(%ebp),%eax
80105b90: 8b 55 0c mov 0xc(%ebp),%edx
80105b93: 89 50 04 mov %edx,0x4(%eax)
lk->locked = 0;
80105b96: 8b 45 08 mov 0x8(%ebp),%eax
80105b99: c7 00 00 00 00 00 movl $0x0,(%eax)
lk->cpu = 0;
80105b9f: 8b 45 08 mov 0x8(%ebp),%eax
80105ba2: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax)
}
80105ba9: 5d pop %ebp
80105baa: c3 ret
80105bab <acquire>:
// Loops (spins) until the lock is acquired.
// Holding a lock for a long time may cause
// other CPUs to waste time spinning to acquire it.
void
acquire(struct spinlock *lk)
{
80105bab: 55 push %ebp
80105bac: 89 e5 mov %esp,%ebp
80105bae: 83 ec 18 sub $0x18,%esp
pushcli(); // disable interrupts to avoid deadlock.
80105bb1: e8 3d 01 00 00 call 80105cf3 <pushcli>
if(holding(lk))
80105bb6: 8b 45 08 mov 0x8(%ebp),%eax
80105bb9: 89 04 24 mov %eax,(%esp)
80105bbc: e8 08 01 00 00 call 80105cc9 <holding>
80105bc1: 85 c0 test %eax,%eax
80105bc3: 74 0c je 80105bd1 <acquire+0x26>
panic("acquire");
80105bc5: c7 04 24 c9 96 10 80 movl $0x801096c9,(%esp)
80105bcc: e8 6c a9 ff ff call 8010053d <panic>
// The xchg is atomic.
// It also serializes, so that reads after acquire are not
// reordered before it.
while(xchg(&lk->locked, 1) != 0)
80105bd1: 90 nop
80105bd2: 8b 45 08 mov 0x8(%ebp),%eax
80105bd5: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80105bdc: 00
80105bdd: 89 04 24 mov %eax,(%esp)
80105be0: e8 80 ff ff ff call 80105b65 <xchg>
80105be5: 85 c0 test %eax,%eax
80105be7: 75 e9 jne 80105bd2 <acquire+0x27>
;
// Record info about lock acquisition for debugging.
lk->cpu = cpu;
80105be9: 8b 45 08 mov 0x8(%ebp),%eax
80105bec: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
80105bf3: 89 50 08 mov %edx,0x8(%eax)
getcallerpcs(&lk, lk->pcs);
80105bf6: 8b 45 08 mov 0x8(%ebp),%eax
80105bf9: 83 c0 0c add $0xc,%eax
80105bfc: 89 44 24 04 mov %eax,0x4(%esp)
80105c00: 8d 45 08 lea 0x8(%ebp),%eax
80105c03: 89 04 24 mov %eax,(%esp)
80105c06: e8 51 00 00 00 call 80105c5c <getcallerpcs>
}
80105c0b: c9 leave
80105c0c: c3 ret
80105c0d <release>:
// Release the lock.
void
release(struct spinlock *lk)
{
80105c0d: 55 push %ebp
80105c0e: 89 e5 mov %esp,%ebp
80105c10: 83 ec 18 sub $0x18,%esp
if(!holding(lk))
80105c13: 8b 45 08 mov 0x8(%ebp),%eax
80105c16: 89 04 24 mov %eax,(%esp)
80105c19: e8 ab 00 00 00 call 80105cc9 <holding>
80105c1e: 85 c0 test %eax,%eax
80105c20: 75 0c jne 80105c2e <release+0x21>
panic("release");
80105c22: c7 04 24 d1 96 10 80 movl $0x801096d1,(%esp)
80105c29: e8 0f a9 ff ff call 8010053d <panic>
lk->pcs[0] = 0;
80105c2e: 8b 45 08 mov 0x8(%ebp),%eax
80105c31: c7 40 0c 00 00 00 00 movl $0x0,0xc(%eax)
lk->cpu = 0;
80105c38: 8b 45 08 mov 0x8(%ebp),%eax
80105c3b: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax)
// But the 2007 Intel 64 Architecture Memory Ordering White
// Paper says that Intel 64 and IA-32 will not move a load
// after a store. So lock->locked = 0 would work here.
// The xchg being asm volatile ensures gcc emits it after
// the above assignments (and after the critical section).
xchg(&lk->locked, 0);
80105c42: 8b 45 08 mov 0x8(%ebp),%eax
80105c45: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80105c4c: 00
80105c4d: 89 04 24 mov %eax,(%esp)
80105c50: e8 10 ff ff ff call 80105b65 <xchg>
popcli();
80105c55: e8 e1 00 00 00 call 80105d3b <popcli>
}
80105c5a: c9 leave
80105c5b: c3 ret
80105c5c <getcallerpcs>:
// Record the current call stack in pcs[] by following the %ebp chain.
void
getcallerpcs(void *v, uint pcs[])
{
80105c5c: 55 push %ebp
80105c5d: 89 e5 mov %esp,%ebp
80105c5f: 83 ec 10 sub $0x10,%esp
uint *ebp;
int i;
ebp = (uint*)v - 2;
80105c62: 8b 45 08 mov 0x8(%ebp),%eax
80105c65: 83 e8 08 sub $0x8,%eax
80105c68: 89 45 fc mov %eax,-0x4(%ebp)
for(i = 0; i < 10; i++){
80105c6b: c7 45 f8 00 00 00 00 movl $0x0,-0x8(%ebp)
80105c72: eb 32 jmp 80105ca6 <getcallerpcs+0x4a>
if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff)
80105c74: 83 7d fc 00 cmpl $0x0,-0x4(%ebp)
80105c78: 74 47 je 80105cc1 <getcallerpcs+0x65>
80105c7a: 81 7d fc ff ff ff 7f cmpl $0x7fffffff,-0x4(%ebp)
80105c81: 76 3e jbe 80105cc1 <getcallerpcs+0x65>
80105c83: 83 7d fc ff cmpl $0xffffffff,-0x4(%ebp)
80105c87: 74 38 je 80105cc1 <getcallerpcs+0x65>
break;
pcs[i] = ebp[1]; // saved %eip
80105c89: 8b 45 f8 mov -0x8(%ebp),%eax
80105c8c: c1 e0 02 shl $0x2,%eax
80105c8f: 03 45 0c add 0xc(%ebp),%eax
80105c92: 8b 55 fc mov -0x4(%ebp),%edx
80105c95: 8b 52 04 mov 0x4(%edx),%edx
80105c98: 89 10 mov %edx,(%eax)
ebp = (uint*)ebp[0]; // saved %ebp
80105c9a: 8b 45 fc mov -0x4(%ebp),%eax
80105c9d: 8b 00 mov (%eax),%eax
80105c9f: 89 45 fc mov %eax,-0x4(%ebp)
{
uint *ebp;
int i;
ebp = (uint*)v - 2;
for(i = 0; i < 10; i++){
80105ca2: 83 45 f8 01 addl $0x1,-0x8(%ebp)
80105ca6: 83 7d f8 09 cmpl $0x9,-0x8(%ebp)
80105caa: 7e c8 jle 80105c74 <getcallerpcs+0x18>
if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff)
break;
pcs[i] = ebp[1]; // saved %eip
ebp = (uint*)ebp[0]; // saved %ebp
}
for(; i < 10; i++)
80105cac: eb 13 jmp 80105cc1 <getcallerpcs+0x65>
pcs[i] = 0;
80105cae: 8b 45 f8 mov -0x8(%ebp),%eax
80105cb1: c1 e0 02 shl $0x2,%eax
80105cb4: 03 45 0c add 0xc(%ebp),%eax
80105cb7: c7 00 00 00 00 00 movl $0x0,(%eax)
if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff)
break;
pcs[i] = ebp[1]; // saved %eip
ebp = (uint*)ebp[0]; // saved %ebp
}
for(; i < 10; i++)
80105cbd: 83 45 f8 01 addl $0x1,-0x8(%ebp)
80105cc1: 83 7d f8 09 cmpl $0x9,-0x8(%ebp)
80105cc5: 7e e7 jle 80105cae <getcallerpcs+0x52>
pcs[i] = 0;
}
80105cc7: c9 leave
80105cc8: c3 ret
80105cc9 <holding>:
// Check whether this cpu is holding the lock.
int
holding(struct spinlock *lock)
{
80105cc9: 55 push %ebp
80105cca: 89 e5 mov %esp,%ebp
return lock->locked && lock->cpu == cpu;
80105ccc: 8b 45 08 mov 0x8(%ebp),%eax
80105ccf: 8b 00 mov (%eax),%eax
80105cd1: 85 c0 test %eax,%eax
80105cd3: 74 17 je 80105cec <holding+0x23>
80105cd5: 8b 45 08 mov 0x8(%ebp),%eax
80105cd8: 8b 50 08 mov 0x8(%eax),%edx
80105cdb: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105ce1: 39 c2 cmp %eax,%edx
80105ce3: 75 07 jne 80105cec <holding+0x23>
80105ce5: b8 01 00 00 00 mov $0x1,%eax
80105cea: eb 05 jmp 80105cf1 <holding+0x28>
80105cec: b8 00 00 00 00 mov $0x0,%eax
}
80105cf1: 5d pop %ebp
80105cf2: c3 ret
80105cf3 <pushcli>:
// it takes two popcli to undo two pushcli. Also, if interrupts
// are off, then pushcli, popcli leaves them off.
void
pushcli(void)
{
80105cf3: 55 push %ebp
80105cf4: 89 e5 mov %esp,%ebp
80105cf6: 83 ec 10 sub $0x10,%esp
int eflags;
eflags = readeflags();
80105cf9: e8 46 fe ff ff call 80105b44 <readeflags>
80105cfe: 89 45 fc mov %eax,-0x4(%ebp)
cli();
80105d01: e8 53 fe ff ff call 80105b59 <cli>
if(cpu->ncli++ == 0)
80105d06: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105d0c: 8b 90 ac 00 00 00 mov 0xac(%eax),%edx
80105d12: 85 d2 test %edx,%edx
80105d14: 0f 94 c1 sete %cl
80105d17: 83 c2 01 add $0x1,%edx
80105d1a: 89 90 ac 00 00 00 mov %edx,0xac(%eax)
80105d20: 84 c9 test %cl,%cl
80105d22: 74 15 je 80105d39 <pushcli+0x46>
cpu->intena = eflags & FL_IF;
80105d24: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105d2a: 8b 55 fc mov -0x4(%ebp),%edx
80105d2d: 81 e2 00 02 00 00 and $0x200,%edx
80105d33: 89 90 b0 00 00 00 mov %edx,0xb0(%eax)
}
80105d39: c9 leave
80105d3a: c3 ret
80105d3b <popcli>:
void
popcli(void)
{
80105d3b: 55 push %ebp
80105d3c: 89 e5 mov %esp,%ebp
80105d3e: 83 ec 18 sub $0x18,%esp
if(readeflags()&FL_IF)
80105d41: e8 fe fd ff ff call 80105b44 <readeflags>
80105d46: 25 00 02 00 00 and $0x200,%eax
80105d4b: 85 c0 test %eax,%eax
80105d4d: 74 0c je 80105d5b <popcli+0x20>
panic("popcli - interruptible");
80105d4f: c7 04 24 d9 96 10 80 movl $0x801096d9,(%esp)
80105d56: e8 e2 a7 ff ff call 8010053d <panic>
if(--cpu->ncli < 0)
80105d5b: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105d61: 8b 90 ac 00 00 00 mov 0xac(%eax),%edx
80105d67: 83 ea 01 sub $0x1,%edx
80105d6a: 89 90 ac 00 00 00 mov %edx,0xac(%eax)
80105d70: 8b 80 ac 00 00 00 mov 0xac(%eax),%eax
80105d76: 85 c0 test %eax,%eax
80105d78: 79 0c jns 80105d86 <popcli+0x4b>
panic("popcli");
80105d7a: c7 04 24 f0 96 10 80 movl $0x801096f0,(%esp)
80105d81: e8 b7 a7 ff ff call 8010053d <panic>
if(cpu->ncli == 0 && cpu->intena)
80105d86: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105d8c: 8b 80 ac 00 00 00 mov 0xac(%eax),%eax
80105d92: 85 c0 test %eax,%eax
80105d94: 75 15 jne 80105dab <popcli+0x70>
80105d96: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80105d9c: 8b 80 b0 00 00 00 mov 0xb0(%eax),%eax
80105da2: 85 c0 test %eax,%eax
80105da4: 74 05 je 80105dab <popcli+0x70>
sti();
80105da6: e8 b4 fd ff ff call 80105b5f <sti>
}
80105dab: c9 leave
80105dac: c3 ret
80105dad: 00 00 add %al,(%eax)
...
80105db0 <stosb>:
"cc");
}
static inline void
stosb(void *addr, int data, int cnt)
{
80105db0: 55 push %ebp
80105db1: 89 e5 mov %esp,%ebp
80105db3: 57 push %edi
80105db4: 53 push %ebx
asm volatile("cld; rep stosb" :
80105db5: 8b 4d 08 mov 0x8(%ebp),%ecx
80105db8: 8b 55 10 mov 0x10(%ebp),%edx
80105dbb: 8b 45 0c mov 0xc(%ebp),%eax
80105dbe: 89 cb mov %ecx,%ebx
80105dc0: 89 df mov %ebx,%edi
80105dc2: 89 d1 mov %edx,%ecx
80105dc4: fc cld
80105dc5: f3 aa rep stos %al,%es:(%edi)
80105dc7: 89 ca mov %ecx,%edx
80105dc9: 89 fb mov %edi,%ebx
80105dcb: 89 5d 08 mov %ebx,0x8(%ebp)
80105dce: 89 55 10 mov %edx,0x10(%ebp)
"=D" (addr), "=c" (cnt) :
"0" (addr), "1" (cnt), "a" (data) :
"memory", "cc");
}
80105dd1: 5b pop %ebx
80105dd2: 5f pop %edi
80105dd3: 5d pop %ebp
80105dd4: c3 ret
80105dd5 <stosl>:
static inline void
stosl(void *addr, int data, int cnt)
{
80105dd5: 55 push %ebp
80105dd6: 89 e5 mov %esp,%ebp
80105dd8: 57 push %edi
80105dd9: 53 push %ebx
asm volatile("cld; rep stosl" :
80105dda: 8b 4d 08 mov 0x8(%ebp),%ecx
80105ddd: 8b 55 10 mov 0x10(%ebp),%edx
80105de0: 8b 45 0c mov 0xc(%ebp),%eax
80105de3: 89 cb mov %ecx,%ebx
80105de5: 89 df mov %ebx,%edi
80105de7: 89 d1 mov %edx,%ecx
80105de9: fc cld
80105dea: f3 ab rep stos %eax,%es:(%edi)
80105dec: 89 ca mov %ecx,%edx
80105dee: 89 fb mov %edi,%ebx
80105df0: 89 5d 08 mov %ebx,0x8(%ebp)
80105df3: 89 55 10 mov %edx,0x10(%ebp)
"=D" (addr), "=c" (cnt) :
"0" (addr), "1" (cnt), "a" (data) :
"memory", "cc");
}
80105df6: 5b pop %ebx
80105df7: 5f pop %edi
80105df8: 5d pop %ebp
80105df9: c3 ret
80105dfa <memset>:
#include "types.h"
#include "x86.h"
void*
memset(void *dst, int c, uint n)
{
80105dfa: 55 push %ebp
80105dfb: 89 e5 mov %esp,%ebp
80105dfd: 83 ec 0c sub $0xc,%esp
if ((int)dst%4 == 0 && n%4 == 0){
80105e00: 8b 45 08 mov 0x8(%ebp),%eax
80105e03: 83 e0 03 and $0x3,%eax
80105e06: 85 c0 test %eax,%eax
80105e08: 75 49 jne 80105e53 <memset+0x59>
80105e0a: 8b 45 10 mov 0x10(%ebp),%eax
80105e0d: 83 e0 03 and $0x3,%eax
80105e10: 85 c0 test %eax,%eax
80105e12: 75 3f jne 80105e53 <memset+0x59>
c &= 0xFF;
80105e14: 81 65 0c ff 00 00 00 andl $0xff,0xc(%ebp)
stosl(dst, (c<<24)|(c<<16)|(c<<8)|c, n/4);
80105e1b: 8b 45 10 mov 0x10(%ebp),%eax
80105e1e: c1 e8 02 shr $0x2,%eax
80105e21: 89 c2 mov %eax,%edx
80105e23: 8b 45 0c mov 0xc(%ebp),%eax
80105e26: 89 c1 mov %eax,%ecx
80105e28: c1 e1 18 shl $0x18,%ecx
80105e2b: 8b 45 0c mov 0xc(%ebp),%eax
80105e2e: c1 e0 10 shl $0x10,%eax
80105e31: 09 c1 or %eax,%ecx
80105e33: 8b 45 0c mov 0xc(%ebp),%eax
80105e36: c1 e0 08 shl $0x8,%eax
80105e39: 09 c8 or %ecx,%eax
80105e3b: 0b 45 0c or 0xc(%ebp),%eax
80105e3e: 89 54 24 08 mov %edx,0x8(%esp)
80105e42: 89 44 24 04 mov %eax,0x4(%esp)
80105e46: 8b 45 08 mov 0x8(%ebp),%eax
80105e49: 89 04 24 mov %eax,(%esp)
80105e4c: e8 84 ff ff ff call 80105dd5 <stosl>
80105e51: eb 19 jmp 80105e6c <memset+0x72>
} else
stosb(dst, c, n);
80105e53: 8b 45 10 mov 0x10(%ebp),%eax
80105e56: 89 44 24 08 mov %eax,0x8(%esp)
80105e5a: 8b 45 0c mov 0xc(%ebp),%eax
80105e5d: 89 44 24 04 mov %eax,0x4(%esp)
80105e61: 8b 45 08 mov 0x8(%ebp),%eax
80105e64: 89 04 24 mov %eax,(%esp)
80105e67: e8 44 ff ff ff call 80105db0 <stosb>
return dst;
80105e6c: 8b 45 08 mov 0x8(%ebp),%eax
}
80105e6f: c9 leave
80105e70: c3 ret
80105e71 <memcmp>:
int
memcmp(const void *v1, const void *v2, uint n)
{
80105e71: 55 push %ebp
80105e72: 89 e5 mov %esp,%ebp
80105e74: 83 ec 10 sub $0x10,%esp
const uchar *s1, *s2;
s1 = v1;
80105e77: 8b 45 08 mov 0x8(%ebp),%eax
80105e7a: 89 45 fc mov %eax,-0x4(%ebp)
s2 = v2;
80105e7d: 8b 45 0c mov 0xc(%ebp),%eax
80105e80: 89 45 f8 mov %eax,-0x8(%ebp)
while(n-- > 0){
80105e83: eb 32 jmp 80105eb7 <memcmp+0x46>
if(*s1 != *s2)
80105e85: 8b 45 fc mov -0x4(%ebp),%eax
80105e88: 0f b6 10 movzbl (%eax),%edx
80105e8b: 8b 45 f8 mov -0x8(%ebp),%eax
80105e8e: 0f b6 00 movzbl (%eax),%eax
80105e91: 38 c2 cmp %al,%dl
80105e93: 74 1a je 80105eaf <memcmp+0x3e>
return *s1 - *s2;
80105e95: 8b 45 fc mov -0x4(%ebp),%eax
80105e98: 0f b6 00 movzbl (%eax),%eax
80105e9b: 0f b6 d0 movzbl %al,%edx
80105e9e: 8b 45 f8 mov -0x8(%ebp),%eax
80105ea1: 0f b6 00 movzbl (%eax),%eax
80105ea4: 0f b6 c0 movzbl %al,%eax
80105ea7: 89 d1 mov %edx,%ecx
80105ea9: 29 c1 sub %eax,%ecx
80105eab: 89 c8 mov %ecx,%eax
80105ead: eb 1c jmp 80105ecb <memcmp+0x5a>
s1++, s2++;
80105eaf: 83 45 fc 01 addl $0x1,-0x4(%ebp)
80105eb3: 83 45 f8 01 addl $0x1,-0x8(%ebp)
{
const uchar *s1, *s2;
s1 = v1;
s2 = v2;
while(n-- > 0){
80105eb7: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80105ebb: 0f 95 c0 setne %al
80105ebe: 83 6d 10 01 subl $0x1,0x10(%ebp)
80105ec2: 84 c0 test %al,%al
80105ec4: 75 bf jne 80105e85 <memcmp+0x14>
if(*s1 != *s2)
return *s1 - *s2;
s1++, s2++;
}
return 0;
80105ec6: b8 00 00 00 00 mov $0x0,%eax
}
80105ecb: c9 leave
80105ecc: c3 ret
80105ecd <memmove>:
void*
memmove(void *dst, const void *src, uint n)
{
80105ecd: 55 push %ebp
80105ece: 89 e5 mov %esp,%ebp
80105ed0: 83 ec 10 sub $0x10,%esp
const char *s;
char *d;
s = src;
80105ed3: 8b 45 0c mov 0xc(%ebp),%eax
80105ed6: 89 45 fc mov %eax,-0x4(%ebp)
d = dst;
80105ed9: 8b 45 08 mov 0x8(%ebp),%eax
80105edc: 89 45 f8 mov %eax,-0x8(%ebp)
if(s < d && s + n > d){
80105edf: 8b 45 fc mov -0x4(%ebp),%eax
80105ee2: 3b 45 f8 cmp -0x8(%ebp),%eax
80105ee5: 73 54 jae 80105f3b <memmove+0x6e>
80105ee7: 8b 45 10 mov 0x10(%ebp),%eax
80105eea: 8b 55 fc mov -0x4(%ebp),%edx
80105eed: 01 d0 add %edx,%eax
80105eef: 3b 45 f8 cmp -0x8(%ebp),%eax
80105ef2: 76 47 jbe 80105f3b <memmove+0x6e>
s += n;
80105ef4: 8b 45 10 mov 0x10(%ebp),%eax
80105ef7: 01 45 fc add %eax,-0x4(%ebp)
d += n;
80105efa: 8b 45 10 mov 0x10(%ebp),%eax
80105efd: 01 45 f8 add %eax,-0x8(%ebp)
while(n-- > 0)
80105f00: eb 13 jmp 80105f15 <memmove+0x48>
*--d = *--s;
80105f02: 83 6d f8 01 subl $0x1,-0x8(%ebp)
80105f06: 83 6d fc 01 subl $0x1,-0x4(%ebp)
80105f0a: 8b 45 fc mov -0x4(%ebp),%eax
80105f0d: 0f b6 10 movzbl (%eax),%edx
80105f10: 8b 45 f8 mov -0x8(%ebp),%eax
80105f13: 88 10 mov %dl,(%eax)
s = src;
d = dst;
if(s < d && s + n > d){
s += n;
d += n;
while(n-- > 0)
80105f15: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80105f19: 0f 95 c0 setne %al
80105f1c: 83 6d 10 01 subl $0x1,0x10(%ebp)
80105f20: 84 c0 test %al,%al
80105f22: 75 de jne 80105f02 <memmove+0x35>
const char *s;
char *d;
s = src;
d = dst;
if(s < d && s + n > d){
80105f24: eb 25 jmp 80105f4b <memmove+0x7e>
d += n;
while(n-- > 0)
*--d = *--s;
} else
while(n-- > 0)
*d++ = *s++;
80105f26: 8b 45 fc mov -0x4(%ebp),%eax
80105f29: 0f b6 10 movzbl (%eax),%edx
80105f2c: 8b 45 f8 mov -0x8(%ebp),%eax
80105f2f: 88 10 mov %dl,(%eax)
80105f31: 83 45 f8 01 addl $0x1,-0x8(%ebp)
80105f35: 83 45 fc 01 addl $0x1,-0x4(%ebp)
80105f39: eb 01 jmp 80105f3c <memmove+0x6f>
s += n;
d += n;
while(n-- > 0)
*--d = *--s;
} else
while(n-- > 0)
80105f3b: 90 nop
80105f3c: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80105f40: 0f 95 c0 setne %al
80105f43: 83 6d 10 01 subl $0x1,0x10(%ebp)
80105f47: 84 c0 test %al,%al
80105f49: 75 db jne 80105f26 <memmove+0x59>
*d++ = *s++;
return dst;
80105f4b: 8b 45 08 mov 0x8(%ebp),%eax
}
80105f4e: c9 leave
80105f4f: c3 ret
80105f50 <memcpy>:
// memcpy exists to placate GCC. Use memmove.
void*
memcpy(void *dst, const void *src, uint n)
{
80105f50: 55 push %ebp
80105f51: 89 e5 mov %esp,%ebp
80105f53: 83 ec 0c sub $0xc,%esp
return memmove(dst, src, n);
80105f56: 8b 45 10 mov 0x10(%ebp),%eax
80105f59: 89 44 24 08 mov %eax,0x8(%esp)
80105f5d: 8b 45 0c mov 0xc(%ebp),%eax
80105f60: 89 44 24 04 mov %eax,0x4(%esp)
80105f64: 8b 45 08 mov 0x8(%ebp),%eax
80105f67: 89 04 24 mov %eax,(%esp)
80105f6a: e8 5e ff ff ff call 80105ecd <memmove>
}
80105f6f: c9 leave
80105f70: c3 ret
80105f71 <strncmp>:
int
strncmp(const char *p, const char *q, uint n)
{
80105f71: 55 push %ebp
80105f72: 89 e5 mov %esp,%ebp
while(n > 0 && *p && *p == *q)
80105f74: eb 0c jmp 80105f82 <strncmp+0x11>
n--, p++, q++;
80105f76: 83 6d 10 01 subl $0x1,0x10(%ebp)
80105f7a: 83 45 08 01 addl $0x1,0x8(%ebp)
80105f7e: 83 45 0c 01 addl $0x1,0xc(%ebp)
}
int
strncmp(const char *p, const char *q, uint n)
{
while(n > 0 && *p && *p == *q)
80105f82: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80105f86: 74 1a je 80105fa2 <strncmp+0x31>
80105f88: 8b 45 08 mov 0x8(%ebp),%eax
80105f8b: 0f b6 00 movzbl (%eax),%eax
80105f8e: 84 c0 test %al,%al
80105f90: 74 10 je 80105fa2 <strncmp+0x31>
80105f92: 8b 45 08 mov 0x8(%ebp),%eax
80105f95: 0f b6 10 movzbl (%eax),%edx
80105f98: 8b 45 0c mov 0xc(%ebp),%eax
80105f9b: 0f b6 00 movzbl (%eax),%eax
80105f9e: 38 c2 cmp %al,%dl
80105fa0: 74 d4 je 80105f76 <strncmp+0x5>
n--, p++, q++;
if(n == 0)
80105fa2: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80105fa6: 75 07 jne 80105faf <strncmp+0x3e>
return 0;
80105fa8: b8 00 00 00 00 mov $0x0,%eax
80105fad: eb 18 jmp 80105fc7 <strncmp+0x56>
return (uchar)*p - (uchar)*q;
80105faf: 8b 45 08 mov 0x8(%ebp),%eax
80105fb2: 0f b6 00 movzbl (%eax),%eax
80105fb5: 0f b6 d0 movzbl %al,%edx
80105fb8: 8b 45 0c mov 0xc(%ebp),%eax
80105fbb: 0f b6 00 movzbl (%eax),%eax
80105fbe: 0f b6 c0 movzbl %al,%eax
80105fc1: 89 d1 mov %edx,%ecx
80105fc3: 29 c1 sub %eax,%ecx
80105fc5: 89 c8 mov %ecx,%eax
}
80105fc7: 5d pop %ebp
80105fc8: c3 ret
80105fc9 <strncpy>:
char*
strncpy(char *s, const char *t, int n)
{
80105fc9: 55 push %ebp
80105fca: 89 e5 mov %esp,%ebp
80105fcc: 83 ec 10 sub $0x10,%esp
char *os;
os = s;
80105fcf: 8b 45 08 mov 0x8(%ebp),%eax
80105fd2: 89 45 fc mov %eax,-0x4(%ebp)
while(n-- > 0 && (*s++ = *t++) != 0)
80105fd5: 90 nop
80105fd6: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80105fda: 0f 9f c0 setg %al
80105fdd: 83 6d 10 01 subl $0x1,0x10(%ebp)
80105fe1: 84 c0 test %al,%al
80105fe3: 74 30 je 80106015 <strncpy+0x4c>
80105fe5: 8b 45 0c mov 0xc(%ebp),%eax
80105fe8: 0f b6 10 movzbl (%eax),%edx
80105feb: 8b 45 08 mov 0x8(%ebp),%eax
80105fee: 88 10 mov %dl,(%eax)
80105ff0: 8b 45 08 mov 0x8(%ebp),%eax
80105ff3: 0f b6 00 movzbl (%eax),%eax
80105ff6: 84 c0 test %al,%al
80105ff8: 0f 95 c0 setne %al
80105ffb: 83 45 08 01 addl $0x1,0x8(%ebp)
80105fff: 83 45 0c 01 addl $0x1,0xc(%ebp)
80106003: 84 c0 test %al,%al
80106005: 75 cf jne 80105fd6 <strncpy+0xd>
;
while(n-- > 0)
80106007: eb 0c jmp 80106015 <strncpy+0x4c>
*s++ = 0;
80106009: 8b 45 08 mov 0x8(%ebp),%eax
8010600c: c6 00 00 movb $0x0,(%eax)
8010600f: 83 45 08 01 addl $0x1,0x8(%ebp)
80106013: eb 01 jmp 80106016 <strncpy+0x4d>
char *os;
os = s;
while(n-- > 0 && (*s++ = *t++) != 0)
;
while(n-- > 0)
80106015: 90 nop
80106016: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
8010601a: 0f 9f c0 setg %al
8010601d: 83 6d 10 01 subl $0x1,0x10(%ebp)
80106021: 84 c0 test %al,%al
80106023: 75 e4 jne 80106009 <strncpy+0x40>
*s++ = 0;
return os;
80106025: 8b 45 fc mov -0x4(%ebp),%eax
}
80106028: c9 leave
80106029: c3 ret
8010602a <safestrcpy>:
// Like strncpy but guaranteed to NUL-terminate.
char*
safestrcpy(char *s, const char *t, int n)
{
8010602a: 55 push %ebp
8010602b: 89 e5 mov %esp,%ebp
8010602d: 83 ec 10 sub $0x10,%esp
char *os;
os = s;
80106030: 8b 45 08 mov 0x8(%ebp),%eax
80106033: 89 45 fc mov %eax,-0x4(%ebp)
if(n <= 0)
80106036: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
8010603a: 7f 05 jg 80106041 <safestrcpy+0x17>
return os;
8010603c: 8b 45 fc mov -0x4(%ebp),%eax
8010603f: eb 35 jmp 80106076 <safestrcpy+0x4c>
while(--n > 0 && (*s++ = *t++) != 0)
80106041: 83 6d 10 01 subl $0x1,0x10(%ebp)
80106045: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80106049: 7e 22 jle 8010606d <safestrcpy+0x43>
8010604b: 8b 45 0c mov 0xc(%ebp),%eax
8010604e: 0f b6 10 movzbl (%eax),%edx
80106051: 8b 45 08 mov 0x8(%ebp),%eax
80106054: 88 10 mov %dl,(%eax)
80106056: 8b 45 08 mov 0x8(%ebp),%eax
80106059: 0f b6 00 movzbl (%eax),%eax
8010605c: 84 c0 test %al,%al
8010605e: 0f 95 c0 setne %al
80106061: 83 45 08 01 addl $0x1,0x8(%ebp)
80106065: 83 45 0c 01 addl $0x1,0xc(%ebp)
80106069: 84 c0 test %al,%al
8010606b: 75 d4 jne 80106041 <safestrcpy+0x17>
;
*s = 0;
8010606d: 8b 45 08 mov 0x8(%ebp),%eax
80106070: c6 00 00 movb $0x0,(%eax)
return os;
80106073: 8b 45 fc mov -0x4(%ebp),%eax
}
80106076: c9 leave
80106077: c3 ret
80106078 <strlen>:
int
strlen(const char *s)
{
80106078: 55 push %ebp
80106079: 89 e5 mov %esp,%ebp
8010607b: 83 ec 10 sub $0x10,%esp
int n;
for(n = 0; s[n]; n++)
8010607e: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp)
80106085: eb 04 jmp 8010608b <strlen+0x13>
80106087: 83 45 fc 01 addl $0x1,-0x4(%ebp)
8010608b: 8b 45 fc mov -0x4(%ebp),%eax
8010608e: 03 45 08 add 0x8(%ebp),%eax
80106091: 0f b6 00 movzbl (%eax),%eax
80106094: 84 c0 test %al,%al
80106096: 75 ef jne 80106087 <strlen+0xf>
;
return n;
80106098: 8b 45 fc mov -0x4(%ebp),%eax
}
8010609b: c9 leave
8010609c: c3 ret
8010609d: 00 00 add %al,(%eax)
...
801060a0 <swtch>:
# Save current register context in old
# and then load register context from new.
.globl swtch
swtch:
movl 4(%esp), %eax
801060a0: 8b 44 24 04 mov 0x4(%esp),%eax
movl 8(%esp), %edx
801060a4: 8b 54 24 08 mov 0x8(%esp),%edx
# Save old callee-save registers
pushl %ebp
801060a8: 55 push %ebp
pushl %ebx
801060a9: 53 push %ebx
pushl %esi
801060aa: 56 push %esi
pushl %edi
801060ab: 57 push %edi
# Switch stacks
movl %esp, (%eax)
801060ac: 89 20 mov %esp,(%eax)
movl %edx, %esp
801060ae: 89 d4 mov %edx,%esp
# Load new callee-save registers
popl %edi
801060b0: 5f pop %edi
popl %esi
801060b1: 5e pop %esi
popl %ebx
801060b2: 5b pop %ebx
popl %ebp
801060b3: 5d pop %ebp
ret
801060b4: c3 ret
801060b5: 00 00 add %al,(%eax)
...
801060b8 <fetchint>:
// to a saved program counter, and then the first argument.
// Fetch the int at addr from the current process.
int
fetchint(uint addr, int *ip)
{
801060b8: 55 push %ebp
801060b9: 89 e5 mov %esp,%ebp
if(addr >= proc->sz || addr+4 > proc->sz)
801060bb: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801060c1: 8b 00 mov (%eax),%eax
801060c3: 3b 45 08 cmp 0x8(%ebp),%eax
801060c6: 76 12 jbe 801060da <fetchint+0x22>
801060c8: 8b 45 08 mov 0x8(%ebp),%eax
801060cb: 8d 50 04 lea 0x4(%eax),%edx
801060ce: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801060d4: 8b 00 mov (%eax),%eax
801060d6: 39 c2 cmp %eax,%edx
801060d8: 76 07 jbe 801060e1 <fetchint+0x29>
return -1;
801060da: b8 ff ff ff ff mov $0xffffffff,%eax
801060df: eb 0f jmp 801060f0 <fetchint+0x38>
*ip = *(int*)(addr);
801060e1: 8b 45 08 mov 0x8(%ebp),%eax
801060e4: 8b 10 mov (%eax),%edx
801060e6: 8b 45 0c mov 0xc(%ebp),%eax
801060e9: 89 10 mov %edx,(%eax)
return 0;
801060eb: b8 00 00 00 00 mov $0x0,%eax
}
801060f0: 5d pop %ebp
801060f1: c3 ret
801060f2 <fetchstr>:
// Fetch the nul-terminated string at addr from the current process.
// Doesn't actually copy the string - just sets *pp to point at it.
// Returns length of string, not including nul.
int
fetchstr(uint addr, char **pp)
{
801060f2: 55 push %ebp
801060f3: 89 e5 mov %esp,%ebp
801060f5: 83 ec 10 sub $0x10,%esp
char *s, *ep;
if(addr >= proc->sz)
801060f8: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801060fe: 8b 00 mov (%eax),%eax
80106100: 3b 45 08 cmp 0x8(%ebp),%eax
80106103: 77 07 ja 8010610c <fetchstr+0x1a>
return -1;
80106105: b8 ff ff ff ff mov $0xffffffff,%eax
8010610a: eb 48 jmp 80106154 <fetchstr+0x62>
*pp = (char*)addr;
8010610c: 8b 55 08 mov 0x8(%ebp),%edx
8010610f: 8b 45 0c mov 0xc(%ebp),%eax
80106112: 89 10 mov %edx,(%eax)
ep = (char*)proc->sz;
80106114: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010611a: 8b 00 mov (%eax),%eax
8010611c: 89 45 f8 mov %eax,-0x8(%ebp)
for(s = *pp; s < ep; s++)
8010611f: 8b 45 0c mov 0xc(%ebp),%eax
80106122: 8b 00 mov (%eax),%eax
80106124: 89 45 fc mov %eax,-0x4(%ebp)
80106127: eb 1e jmp 80106147 <fetchstr+0x55>
if(*s == 0)
80106129: 8b 45 fc mov -0x4(%ebp),%eax
8010612c: 0f b6 00 movzbl (%eax),%eax
8010612f: 84 c0 test %al,%al
80106131: 75 10 jne 80106143 <fetchstr+0x51>
return s - *pp;
80106133: 8b 55 fc mov -0x4(%ebp),%edx
80106136: 8b 45 0c mov 0xc(%ebp),%eax
80106139: 8b 00 mov (%eax),%eax
8010613b: 89 d1 mov %edx,%ecx
8010613d: 29 c1 sub %eax,%ecx
8010613f: 89 c8 mov %ecx,%eax
80106141: eb 11 jmp 80106154 <fetchstr+0x62>
if(addr >= proc->sz)
return -1;
*pp = (char*)addr;
ep = (char*)proc->sz;
for(s = *pp; s < ep; s++)
80106143: 83 45 fc 01 addl $0x1,-0x4(%ebp)
80106147: 8b 45 fc mov -0x4(%ebp),%eax
8010614a: 3b 45 f8 cmp -0x8(%ebp),%eax
8010614d: 72 da jb 80106129 <fetchstr+0x37>
if(*s == 0)
return s - *pp;
return -1;
8010614f: b8 ff ff ff ff mov $0xffffffff,%eax
}
80106154: c9 leave
80106155: c3 ret
80106156 <argint>:
// Fetch the nth 32-bit system call argument.
int
argint(int n, int *ip)
{
80106156: 55 push %ebp
80106157: 89 e5 mov %esp,%ebp
80106159: 83 ec 08 sub $0x8,%esp
return fetchint(proc->tf->esp + 4 + 4*n, ip);
8010615c: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80106162: 8b 40 18 mov 0x18(%eax),%eax
80106165: 8b 50 44 mov 0x44(%eax),%edx
80106168: 8b 45 08 mov 0x8(%ebp),%eax
8010616b: c1 e0 02 shl $0x2,%eax
8010616e: 01 d0 add %edx,%eax
80106170: 8d 50 04 lea 0x4(%eax),%edx
80106173: 8b 45 0c mov 0xc(%ebp),%eax
80106176: 89 44 24 04 mov %eax,0x4(%esp)
8010617a: 89 14 24 mov %edx,(%esp)
8010617d: e8 36 ff ff ff call 801060b8 <fetchint>
}
80106182: c9 leave
80106183: c3 ret
80106184 <argptr>:
// Fetch the nth word-sized system call argument as a pointer
// to a block of memory of size n bytes. Check that the pointer
// lies within the process address space.
int
argptr(int n, char **pp, int size)
{
80106184: 55 push %ebp
80106185: 89 e5 mov %esp,%ebp
80106187: 83 ec 18 sub $0x18,%esp
int i;
if(argint(n, &i) < 0)
8010618a: 8d 45 fc lea -0x4(%ebp),%eax
8010618d: 89 44 24 04 mov %eax,0x4(%esp)
80106191: 8b 45 08 mov 0x8(%ebp),%eax
80106194: 89 04 24 mov %eax,(%esp)
80106197: e8 ba ff ff ff call 80106156 <argint>
8010619c: 85 c0 test %eax,%eax
8010619e: 79 07 jns 801061a7 <argptr+0x23>
return -1;
801061a0: b8 ff ff ff ff mov $0xffffffff,%eax
801061a5: eb 3d jmp 801061e4 <argptr+0x60>
if((uint)i >= proc->sz || (uint)i+size > proc->sz)
801061a7: 8b 45 fc mov -0x4(%ebp),%eax
801061aa: 89 c2 mov %eax,%edx
801061ac: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801061b2: 8b 00 mov (%eax),%eax
801061b4: 39 c2 cmp %eax,%edx
801061b6: 73 16 jae 801061ce <argptr+0x4a>
801061b8: 8b 45 fc mov -0x4(%ebp),%eax
801061bb: 89 c2 mov %eax,%edx
801061bd: 8b 45 10 mov 0x10(%ebp),%eax
801061c0: 01 c2 add %eax,%edx
801061c2: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801061c8: 8b 00 mov (%eax),%eax
801061ca: 39 c2 cmp %eax,%edx
801061cc: 76 07 jbe 801061d5 <argptr+0x51>
return -1;
801061ce: b8 ff ff ff ff mov $0xffffffff,%eax
801061d3: eb 0f jmp 801061e4 <argptr+0x60>
*pp = (char*)i;
801061d5: 8b 45 fc mov -0x4(%ebp),%eax
801061d8: 89 c2 mov %eax,%edx
801061da: 8b 45 0c mov 0xc(%ebp),%eax
801061dd: 89 10 mov %edx,(%eax)
return 0;
801061df: b8 00 00 00 00 mov $0x0,%eax
}
801061e4: c9 leave
801061e5: c3 ret
801061e6 <argstr>:
// Check that the pointer is valid and the string is nul-terminated.
// (There is no shared writable memory, so the string can't change
// between this check and being used by the kernel.)
int
argstr(int n, char **pp)
{
801061e6: 55 push %ebp
801061e7: 89 e5 mov %esp,%ebp
801061e9: 83 ec 18 sub $0x18,%esp
int addr;
if(argint(n, &addr) < 0)
801061ec: 8d 45 fc lea -0x4(%ebp),%eax
801061ef: 89 44 24 04 mov %eax,0x4(%esp)
801061f3: 8b 45 08 mov 0x8(%ebp),%eax
801061f6: 89 04 24 mov %eax,(%esp)
801061f9: e8 58 ff ff ff call 80106156 <argint>
801061fe: 85 c0 test %eax,%eax
80106200: 79 07 jns 80106209 <argstr+0x23>
return -1;
80106202: b8 ff ff ff ff mov $0xffffffff,%eax
80106207: eb 12 jmp 8010621b <argstr+0x35>
return fetchstr(addr, pp);
80106209: 8b 45 fc mov -0x4(%ebp),%eax
8010620c: 8b 55 0c mov 0xc(%ebp),%edx
8010620f: 89 54 24 04 mov %edx,0x4(%esp)
80106213: 89 04 24 mov %eax,(%esp)
80106216: e8 d7 fe ff ff call 801060f2 <fetchstr>
}
8010621b: c9 leave
8010621c: c3 ret
8010621d <syscall>:
[SYS_yield] sys_yield,
};
void
syscall(void)
{
8010621d: 55 push %ebp
8010621e: 89 e5 mov %esp,%ebp
80106220: 53 push %ebx
80106221: 83 ec 24 sub $0x24,%esp
int num;
num = proc->tf->eax;
80106224: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010622a: 8b 40 18 mov 0x18(%eax),%eax
8010622d: 8b 40 1c mov 0x1c(%eax),%eax
80106230: 89 45 f4 mov %eax,-0xc(%ebp)
if(num > 0 && num < NELEM(syscalls) && syscalls[num]) {
80106233: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106237: 7e 30 jle 80106269 <syscall+0x4c>
80106239: 8b 45 f4 mov -0xc(%ebp),%eax
8010623c: 83 f8 18 cmp $0x18,%eax
8010623f: 77 28 ja 80106269 <syscall+0x4c>
80106241: 8b 45 f4 mov -0xc(%ebp),%eax
80106244: 8b 04 85 40 c0 10 80 mov -0x7fef3fc0(,%eax,4),%eax
8010624b: 85 c0 test %eax,%eax
8010624d: 74 1a je 80106269 <syscall+0x4c>
proc->tf->eax = syscalls[num]();
8010624f: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80106255: 8b 58 18 mov 0x18(%eax),%ebx
80106258: 8b 45 f4 mov -0xc(%ebp),%eax
8010625b: 8b 04 85 40 c0 10 80 mov -0x7fef3fc0(,%eax,4),%eax
80106262: ff d0 call *%eax
80106264: 89 43 1c mov %eax,0x1c(%ebx)
80106267: eb 3d jmp 801062a6 <syscall+0x89>
} else {
cprintf("%d %s: unknown sys call %d\n",
proc->pid, proc->name, num);
80106269: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010626f: 8d 48 6c lea 0x6c(%eax),%ecx
80106272: 65 a1 04 00 00 00 mov %gs:0x4,%eax
num = proc->tf->eax;
if(num > 0 && num < NELEM(syscalls) && syscalls[num]) {
proc->tf->eax = syscalls[num]();
} else {
cprintf("%d %s: unknown sys call %d\n",
80106278: 8b 40 10 mov 0x10(%eax),%eax
8010627b: 8b 55 f4 mov -0xc(%ebp),%edx
8010627e: 89 54 24 0c mov %edx,0xc(%esp)
80106282: 89 4c 24 08 mov %ecx,0x8(%esp)
80106286: 89 44 24 04 mov %eax,0x4(%esp)
8010628a: c7 04 24 f7 96 10 80 movl $0x801096f7,(%esp)
80106291: e8 0b a1 ff ff call 801003a1 <cprintf>
proc->pid, proc->name, num);
proc->tf->eax = -1;
80106296: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010629c: 8b 40 18 mov 0x18(%eax),%eax
8010629f: c7 40 1c ff ff ff ff movl $0xffffffff,0x1c(%eax)
}
}
801062a6: 83 c4 24 add $0x24,%esp
801062a9: 5b pop %ebx
801062aa: 5d pop %ebp
801062ab: c3 ret
801062ac <argfd>:
// Fetch the nth word-sized system call argument as a file descriptor
// and return both the descriptor and the corresponding struct file.
static int
argfd(int n, int *pfd, struct file **pf)
{
801062ac: 55 push %ebp
801062ad: 89 e5 mov %esp,%ebp
801062af: 83 ec 28 sub $0x28,%esp
int fd;
struct file *f;
if(argint(n, &fd) < 0)
801062b2: 8d 45 f0 lea -0x10(%ebp),%eax
801062b5: 89 44 24 04 mov %eax,0x4(%esp)
801062b9: 8b 45 08 mov 0x8(%ebp),%eax
801062bc: 89 04 24 mov %eax,(%esp)
801062bf: e8 92 fe ff ff call 80106156 <argint>
801062c4: 85 c0 test %eax,%eax
801062c6: 79 07 jns 801062cf <argfd+0x23>
return -1;
801062c8: b8 ff ff ff ff mov $0xffffffff,%eax
801062cd: eb 50 jmp 8010631f <argfd+0x73>
if(fd < 0 || fd >= NOFILE || (f=proc->ofile[fd]) == 0)
801062cf: 8b 45 f0 mov -0x10(%ebp),%eax
801062d2: 85 c0 test %eax,%eax
801062d4: 78 21 js 801062f7 <argfd+0x4b>
801062d6: 8b 45 f0 mov -0x10(%ebp),%eax
801062d9: 83 f8 0f cmp $0xf,%eax
801062dc: 7f 19 jg 801062f7 <argfd+0x4b>
801062de: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801062e4: 8b 55 f0 mov -0x10(%ebp),%edx
801062e7: 83 c2 08 add $0x8,%edx
801062ea: 8b 44 90 08 mov 0x8(%eax,%edx,4),%eax
801062ee: 89 45 f4 mov %eax,-0xc(%ebp)
801062f1: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801062f5: 75 07 jne 801062fe <argfd+0x52>
return -1;
801062f7: b8 ff ff ff ff mov $0xffffffff,%eax
801062fc: eb 21 jmp 8010631f <argfd+0x73>
if(pfd)
801062fe: 83 7d 0c 00 cmpl $0x0,0xc(%ebp)
80106302: 74 08 je 8010630c <argfd+0x60>
*pfd = fd;
80106304: 8b 55 f0 mov -0x10(%ebp),%edx
80106307: 8b 45 0c mov 0xc(%ebp),%eax
8010630a: 89 10 mov %edx,(%eax)
if(pf)
8010630c: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
80106310: 74 08 je 8010631a <argfd+0x6e>
*pf = f;
80106312: 8b 45 10 mov 0x10(%ebp),%eax
80106315: 8b 55 f4 mov -0xc(%ebp),%edx
80106318: 89 10 mov %edx,(%eax)
return 0;
8010631a: b8 00 00 00 00 mov $0x0,%eax
}
8010631f: c9 leave
80106320: c3 ret
80106321 <fdalloc>:
// Allocate a file descriptor for the given file.
// Takes over file reference from caller on success.
static int
fdalloc(struct file *f)
{
80106321: 55 push %ebp
80106322: 89 e5 mov %esp,%ebp
80106324: 83 ec 10 sub $0x10,%esp
int fd;
for(fd = 0; fd < NOFILE; fd++){
80106327: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp)
8010632e: eb 30 jmp 80106360 <fdalloc+0x3f>
if(proc->ofile[fd] == 0){
80106330: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80106336: 8b 55 fc mov -0x4(%ebp),%edx
80106339: 83 c2 08 add $0x8,%edx
8010633c: 8b 44 90 08 mov 0x8(%eax,%edx,4),%eax
80106340: 85 c0 test %eax,%eax
80106342: 75 18 jne 8010635c <fdalloc+0x3b>
proc->ofile[fd] = f;
80106344: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010634a: 8b 55 fc mov -0x4(%ebp),%edx
8010634d: 8d 4a 08 lea 0x8(%edx),%ecx
80106350: 8b 55 08 mov 0x8(%ebp),%edx
80106353: 89 54 88 08 mov %edx,0x8(%eax,%ecx,4)
return fd;
80106357: 8b 45 fc mov -0x4(%ebp),%eax
8010635a: eb 0f jmp 8010636b <fdalloc+0x4a>
static int
fdalloc(struct file *f)
{
int fd;
for(fd = 0; fd < NOFILE; fd++){
8010635c: 83 45 fc 01 addl $0x1,-0x4(%ebp)
80106360: 83 7d fc 0f cmpl $0xf,-0x4(%ebp)
80106364: 7e ca jle 80106330 <fdalloc+0xf>
if(proc->ofile[fd] == 0){
proc->ofile[fd] = f;
return fd;
}
}
return -1;
80106366: b8 ff ff ff ff mov $0xffffffff,%eax
}
8010636b: c9 leave
8010636c: c3 ret
8010636d <sys_dup>:
int
sys_dup(void)
{
8010636d: 55 push %ebp
8010636e: 89 e5 mov %esp,%ebp
80106370: 83 ec 28 sub $0x28,%esp
struct file *f;
int fd;
if(argfd(0, 0, &f) < 0)
80106373: 8d 45 f0 lea -0x10(%ebp),%eax
80106376: 89 44 24 08 mov %eax,0x8(%esp)
8010637a: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80106381: 00
80106382: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106389: e8 1e ff ff ff call 801062ac <argfd>
8010638e: 85 c0 test %eax,%eax
80106390: 79 07 jns 80106399 <sys_dup+0x2c>
return -1;
80106392: b8 ff ff ff ff mov $0xffffffff,%eax
80106397: eb 29 jmp 801063c2 <sys_dup+0x55>
if((fd=fdalloc(f)) < 0)
80106399: 8b 45 f0 mov -0x10(%ebp),%eax
8010639c: 89 04 24 mov %eax,(%esp)
8010639f: e8 7d ff ff ff call 80106321 <fdalloc>
801063a4: 89 45 f4 mov %eax,-0xc(%ebp)
801063a7: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801063ab: 79 07 jns 801063b4 <sys_dup+0x47>
return -1;
801063ad: b8 ff ff ff ff mov $0xffffffff,%eax
801063b2: eb 0e jmp 801063c2 <sys_dup+0x55>
filedup(f);
801063b4: 8b 45 f0 mov -0x10(%ebp),%eax
801063b7: 89 04 24 mov %eax,(%esp)
801063ba: e8 f9 b3 ff ff call 801017b8 <filedup>
return fd;
801063bf: 8b 45 f4 mov -0xc(%ebp),%eax
}
801063c2: c9 leave
801063c3: c3 ret
801063c4 <sys_read>:
int
sys_read(void)
{
801063c4: 55 push %ebp
801063c5: 89 e5 mov %esp,%ebp
801063c7: 83 ec 28 sub $0x28,%esp
struct file *f;
int n;
char *p;
if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0)
801063ca: 8d 45 f4 lea -0xc(%ebp),%eax
801063cd: 89 44 24 08 mov %eax,0x8(%esp)
801063d1: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
801063d8: 00
801063d9: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801063e0: e8 c7 fe ff ff call 801062ac <argfd>
801063e5: 85 c0 test %eax,%eax
801063e7: 78 35 js 8010641e <sys_read+0x5a>
801063e9: 8d 45 f0 lea -0x10(%ebp),%eax
801063ec: 89 44 24 04 mov %eax,0x4(%esp)
801063f0: c7 04 24 02 00 00 00 movl $0x2,(%esp)
801063f7: e8 5a fd ff ff call 80106156 <argint>
801063fc: 85 c0 test %eax,%eax
801063fe: 78 1e js 8010641e <sys_read+0x5a>
80106400: 8b 45 f0 mov -0x10(%ebp),%eax
80106403: 89 44 24 08 mov %eax,0x8(%esp)
80106407: 8d 45 ec lea -0x14(%ebp),%eax
8010640a: 89 44 24 04 mov %eax,0x4(%esp)
8010640e: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106415: e8 6a fd ff ff call 80106184 <argptr>
8010641a: 85 c0 test %eax,%eax
8010641c: 79 07 jns 80106425 <sys_read+0x61>
return -1;
8010641e: b8 ff ff ff ff mov $0xffffffff,%eax
80106423: eb 19 jmp 8010643e <sys_read+0x7a>
return fileread(f, p, n);
80106425: 8b 4d f0 mov -0x10(%ebp),%ecx
80106428: 8b 55 ec mov -0x14(%ebp),%edx
8010642b: 8b 45 f4 mov -0xc(%ebp),%eax
8010642e: 89 4c 24 08 mov %ecx,0x8(%esp)
80106432: 89 54 24 04 mov %edx,0x4(%esp)
80106436: 89 04 24 mov %eax,(%esp)
80106439: e8 e7 b4 ff ff call 80101925 <fileread>
}
8010643e: c9 leave
8010643f: c3 ret
80106440 <sys_write>:
int
sys_write(void)
{
80106440: 55 push %ebp
80106441: 89 e5 mov %esp,%ebp
80106443: 83 ec 28 sub $0x28,%esp
struct file *f;
int n;
char *p;
if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0)
80106446: 8d 45 f4 lea -0xc(%ebp),%eax
80106449: 89 44 24 08 mov %eax,0x8(%esp)
8010644d: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80106454: 00
80106455: c7 04 24 00 00 00 00 movl $0x0,(%esp)
8010645c: e8 4b fe ff ff call 801062ac <argfd>
80106461: 85 c0 test %eax,%eax
80106463: 78 35 js 8010649a <sys_write+0x5a>
80106465: 8d 45 f0 lea -0x10(%ebp),%eax
80106468: 89 44 24 04 mov %eax,0x4(%esp)
8010646c: c7 04 24 02 00 00 00 movl $0x2,(%esp)
80106473: e8 de fc ff ff call 80106156 <argint>
80106478: 85 c0 test %eax,%eax
8010647a: 78 1e js 8010649a <sys_write+0x5a>
8010647c: 8b 45 f0 mov -0x10(%ebp),%eax
8010647f: 89 44 24 08 mov %eax,0x8(%esp)
80106483: 8d 45 ec lea -0x14(%ebp),%eax
80106486: 89 44 24 04 mov %eax,0x4(%esp)
8010648a: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106491: e8 ee fc ff ff call 80106184 <argptr>
80106496: 85 c0 test %eax,%eax
80106498: 79 07 jns 801064a1 <sys_write+0x61>
return -1;
8010649a: b8 ff ff ff ff mov $0xffffffff,%eax
8010649f: eb 19 jmp 801064ba <sys_write+0x7a>
return filewrite(f, p, n);
801064a1: 8b 4d f0 mov -0x10(%ebp),%ecx
801064a4: 8b 55 ec mov -0x14(%ebp),%edx
801064a7: 8b 45 f4 mov -0xc(%ebp),%eax
801064aa: 89 4c 24 08 mov %ecx,0x8(%esp)
801064ae: 89 54 24 04 mov %edx,0x4(%esp)
801064b2: 89 04 24 mov %eax,(%esp)
801064b5: e8 27 b5 ff ff call 801019e1 <filewrite>
}
801064ba: c9 leave
801064bb: c3 ret
801064bc <sys_close>:
int
sys_close(void)
{
801064bc: 55 push %ebp
801064bd: 89 e5 mov %esp,%ebp
801064bf: 83 ec 28 sub $0x28,%esp
int fd;
struct file *f;
if(argfd(0, &fd, &f) < 0)
801064c2: 8d 45 f0 lea -0x10(%ebp),%eax
801064c5: 89 44 24 08 mov %eax,0x8(%esp)
801064c9: 8d 45 f4 lea -0xc(%ebp),%eax
801064cc: 89 44 24 04 mov %eax,0x4(%esp)
801064d0: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801064d7: e8 d0 fd ff ff call 801062ac <argfd>
801064dc: 85 c0 test %eax,%eax
801064de: 79 07 jns 801064e7 <sys_close+0x2b>
return -1;
801064e0: b8 ff ff ff ff mov $0xffffffff,%eax
801064e5: eb 24 jmp 8010650b <sys_close+0x4f>
proc->ofile[fd] = 0;
801064e7: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801064ed: 8b 55 f4 mov -0xc(%ebp),%edx
801064f0: 83 c2 08 add $0x8,%edx
801064f3: c7 44 90 08 00 00 00 movl $0x0,0x8(%eax,%edx,4)
801064fa: 00
fileclose(f);
801064fb: 8b 45 f0 mov -0x10(%ebp),%eax
801064fe: 89 04 24 mov %eax,(%esp)
80106501: e8 fa b2 ff ff call 80101800 <fileclose>
return 0;
80106506: b8 00 00 00 00 mov $0x0,%eax
}
8010650b: c9 leave
8010650c: c3 ret
8010650d <sys_fstat>:
int
sys_fstat(void)
{
8010650d: 55 push %ebp
8010650e: 89 e5 mov %esp,%ebp
80106510: 83 ec 28 sub $0x28,%esp
struct file *f;
struct stat *st;
if(argfd(0, 0, &f) < 0 || argptr(1, (void*)&st, sizeof(*st)) < 0)
80106513: 8d 45 f4 lea -0xc(%ebp),%eax
80106516: 89 44 24 08 mov %eax,0x8(%esp)
8010651a: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80106521: 00
80106522: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106529: e8 7e fd ff ff call 801062ac <argfd>
8010652e: 85 c0 test %eax,%eax
80106530: 78 1f js 80106551 <sys_fstat+0x44>
80106532: c7 44 24 08 14 00 00 movl $0x14,0x8(%esp)
80106539: 00
8010653a: 8d 45 f0 lea -0x10(%ebp),%eax
8010653d: 89 44 24 04 mov %eax,0x4(%esp)
80106541: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106548: e8 37 fc ff ff call 80106184 <argptr>
8010654d: 85 c0 test %eax,%eax
8010654f: 79 07 jns 80106558 <sys_fstat+0x4b>
return -1;
80106551: b8 ff ff ff ff mov $0xffffffff,%eax
80106556: eb 12 jmp 8010656a <sys_fstat+0x5d>
return filestat(f, st);
80106558: 8b 55 f0 mov -0x10(%ebp),%edx
8010655b: 8b 45 f4 mov -0xc(%ebp),%eax
8010655e: 89 54 24 04 mov %edx,0x4(%esp)
80106562: 89 04 24 mov %eax,(%esp)
80106565: e8 6c b3 ff ff call 801018d6 <filestat>
}
8010656a: c9 leave
8010656b: c3 ret
8010656c <sys_link>:
// Create the path new as a link to the same inode as old.
int
sys_link(void)
{
8010656c: 55 push %ebp
8010656d: 89 e5 mov %esp,%ebp
8010656f: 83 ec 38 sub $0x38,%esp
char name[DIRSIZ], *new, *old;
struct inode *dp, *ip;
if(argstr(0, &old) < 0 || argstr(1, &new) < 0)
80106572: 8d 45 d8 lea -0x28(%ebp),%eax
80106575: 89 44 24 04 mov %eax,0x4(%esp)
80106579: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106580: e8 61 fc ff ff call 801061e6 <argstr>
80106585: 85 c0 test %eax,%eax
80106587: 78 17 js 801065a0 <sys_link+0x34>
80106589: 8d 45 dc lea -0x24(%ebp),%eax
8010658c: 89 44 24 04 mov %eax,0x4(%esp)
80106590: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106597: e8 4a fc ff ff call 801061e6 <argstr>
8010659c: 85 c0 test %eax,%eax
8010659e: 79 0a jns 801065aa <sys_link+0x3e>
return -1;
801065a0: b8 ff ff ff ff mov $0xffffffff,%eax
801065a5: e9 41 01 00 00 jmp 801066eb <sys_link+0x17f>
begin_op();
801065aa: e8 72 d7 ff ff call 80103d21 <begin_op>
if((ip = namei(old)) == 0){
801065af: 8b 45 d8 mov -0x28(%ebp),%eax
801065b2: 89 04 24 mov %eax,(%esp)
801065b5: e8 f3 c6 ff ff call 80102cad <namei>
801065ba: 89 45 f4 mov %eax,-0xc(%ebp)
801065bd: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801065c1: 75 0f jne 801065d2 <sys_link+0x66>
end_op();
801065c3: e8 da d7 ff ff call 80103da2 <end_op>
return -1;
801065c8: b8 ff ff ff ff mov $0xffffffff,%eax
801065cd: e9 19 01 00 00 jmp 801066eb <sys_link+0x17f>
}
ilock(ip);
801065d2: 8b 45 f4 mov -0xc(%ebp),%eax
801065d5: 89 04 24 mov %eax,(%esp)
801065d8: e8 28 bb ff ff call 80102105 <ilock>
if(ip->type == T_DIR){
801065dd: 8b 45 f4 mov -0xc(%ebp),%eax
801065e0: 0f b7 40 10 movzwl 0x10(%eax),%eax
801065e4: 66 83 f8 01 cmp $0x1,%ax
801065e8: 75 1a jne 80106604 <sys_link+0x98>
iunlockput(ip);
801065ea: 8b 45 f4 mov -0xc(%ebp),%eax
801065ed: 89 04 24 mov %eax,(%esp)
801065f0: e8 9a bd ff ff call 8010238f <iunlockput>
end_op();
801065f5: e8 a8 d7 ff ff call 80103da2 <end_op>
return -1;
801065fa: b8 ff ff ff ff mov $0xffffffff,%eax
801065ff: e9 e7 00 00 00 jmp 801066eb <sys_link+0x17f>
}
ip->nlink++;
80106604: 8b 45 f4 mov -0xc(%ebp),%eax
80106607: 0f b7 40 16 movzwl 0x16(%eax),%eax
8010660b: 8d 50 01 lea 0x1(%eax),%edx
8010660e: 8b 45 f4 mov -0xc(%ebp),%eax
80106611: 66 89 50 16 mov %dx,0x16(%eax)
iupdate(ip);
80106615: 8b 45 f4 mov -0xc(%ebp),%eax
80106618: 89 04 24 mov %eax,(%esp)
8010661b: e8 23 b9 ff ff call 80101f43 <iupdate>
iunlock(ip);
80106620: 8b 45 f4 mov -0xc(%ebp),%eax
80106623: 89 04 24 mov %eax,(%esp)
80106626: e8 2e bc ff ff call 80102259 <iunlock>
if((dp = nameiparent(new, name)) == 0)
8010662b: 8b 45 dc mov -0x24(%ebp),%eax
8010662e: 8d 55 e2 lea -0x1e(%ebp),%edx
80106631: 89 54 24 04 mov %edx,0x4(%esp)
80106635: 89 04 24 mov %eax,(%esp)
80106638: e8 92 c6 ff ff call 80102ccf <nameiparent>
8010663d: 89 45 f0 mov %eax,-0x10(%ebp)
80106640: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106644: 74 68 je 801066ae <sys_link+0x142>
goto bad;
ilock(dp);
80106646: 8b 45 f0 mov -0x10(%ebp),%eax
80106649: 89 04 24 mov %eax,(%esp)
8010664c: e8 b4 ba ff ff call 80102105 <ilock>
if(dp->dev != ip->dev || dirlink(dp, name, ip->inum) < 0){
80106651: 8b 45 f0 mov -0x10(%ebp),%eax
80106654: 8b 10 mov (%eax),%edx
80106656: 8b 45 f4 mov -0xc(%ebp),%eax
80106659: 8b 00 mov (%eax),%eax
8010665b: 39 c2 cmp %eax,%edx
8010665d: 75 20 jne 8010667f <sys_link+0x113>
8010665f: 8b 45 f4 mov -0xc(%ebp),%eax
80106662: 8b 40 04 mov 0x4(%eax),%eax
80106665: 89 44 24 08 mov %eax,0x8(%esp)
80106669: 8d 45 e2 lea -0x1e(%ebp),%eax
8010666c: 89 44 24 04 mov %eax,0x4(%esp)
80106670: 8b 45 f0 mov -0x10(%ebp),%eax
80106673: 89 04 24 mov %eax,(%esp)
80106676: e8 71 c3 ff ff call 801029ec <dirlink>
8010667b: 85 c0 test %eax,%eax
8010667d: 79 0d jns 8010668c <sys_link+0x120>
iunlockput(dp);
8010667f: 8b 45 f0 mov -0x10(%ebp),%eax
80106682: 89 04 24 mov %eax,(%esp)
80106685: e8 05 bd ff ff call 8010238f <iunlockput>
goto bad;
8010668a: eb 23 jmp 801066af <sys_link+0x143>
}
iunlockput(dp);
8010668c: 8b 45 f0 mov -0x10(%ebp),%eax
8010668f: 89 04 24 mov %eax,(%esp)
80106692: e8 f8 bc ff ff call 8010238f <iunlockput>
iput(ip);
80106697: 8b 45 f4 mov -0xc(%ebp),%eax
8010669a: 89 04 24 mov %eax,(%esp)
8010669d: e8 1c bc ff ff call 801022be <iput>
end_op();
801066a2: e8 fb d6 ff ff call 80103da2 <end_op>
return 0;
801066a7: b8 00 00 00 00 mov $0x0,%eax
801066ac: eb 3d jmp 801066eb <sys_link+0x17f>
ip->nlink++;
iupdate(ip);
iunlock(ip);
if((dp = nameiparent(new, name)) == 0)
goto bad;
801066ae: 90 nop
end_op();
return 0;
bad:
ilock(ip);
801066af: 8b 45 f4 mov -0xc(%ebp),%eax
801066b2: 89 04 24 mov %eax,(%esp)
801066b5: e8 4b ba ff ff call 80102105 <ilock>
ip->nlink--;
801066ba: 8b 45 f4 mov -0xc(%ebp),%eax
801066bd: 0f b7 40 16 movzwl 0x16(%eax),%eax
801066c1: 8d 50 ff lea -0x1(%eax),%edx
801066c4: 8b 45 f4 mov -0xc(%ebp),%eax
801066c7: 66 89 50 16 mov %dx,0x16(%eax)
iupdate(ip);
801066cb: 8b 45 f4 mov -0xc(%ebp),%eax
801066ce: 89 04 24 mov %eax,(%esp)
801066d1: e8 6d b8 ff ff call 80101f43 <iupdate>
iunlockput(ip);
801066d6: 8b 45 f4 mov -0xc(%ebp),%eax
801066d9: 89 04 24 mov %eax,(%esp)
801066dc: e8 ae bc ff ff call 8010238f <iunlockput>
end_op();
801066e1: e8 bc d6 ff ff call 80103da2 <end_op>
return -1;
801066e6: b8 ff ff ff ff mov $0xffffffff,%eax
}
801066eb: c9 leave
801066ec: c3 ret
801066ed <isdirempty>:
// Is the directory dp empty except for "." and ".." ?
static int
isdirempty(struct inode *dp)
{
801066ed: 55 push %ebp
801066ee: 89 e5 mov %esp,%ebp
801066f0: 83 ec 38 sub $0x38,%esp
int off;
struct dirent de;
for(off=2*sizeof(de); off<dp->size; off+=sizeof(de)){
801066f3: c7 45 f4 20 00 00 00 movl $0x20,-0xc(%ebp)
801066fa: eb 4b jmp 80106747 <isdirempty+0x5a>
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
801066fc: 8b 45 f4 mov -0xc(%ebp),%eax
801066ff: c7 44 24 0c 10 00 00 movl $0x10,0xc(%esp)
80106706: 00
80106707: 89 44 24 08 mov %eax,0x8(%esp)
8010670b: 8d 45 e4 lea -0x1c(%ebp),%eax
8010670e: 89 44 24 04 mov %eax,0x4(%esp)
80106712: 8b 45 08 mov 0x8(%ebp),%eax
80106715: 89 04 24 mov %eax,(%esp)
80106718: e8 e4 be ff ff call 80102601 <readi>
8010671d: 83 f8 10 cmp $0x10,%eax
80106720: 74 0c je 8010672e <isdirempty+0x41>
panic("isdirempty: readi");
80106722: c7 04 24 13 97 10 80 movl $0x80109713,(%esp)
80106729: e8 0f 9e ff ff call 8010053d <panic>
if(de.inum != 0)
8010672e: 0f b7 45 e4 movzwl -0x1c(%ebp),%eax
80106732: 66 85 c0 test %ax,%ax
80106735: 74 07 je 8010673e <isdirempty+0x51>
return 0;
80106737: b8 00 00 00 00 mov $0x0,%eax
8010673c: eb 1b jmp 80106759 <isdirempty+0x6c>
isdirempty(struct inode *dp)
{
int off;
struct dirent de;
for(off=2*sizeof(de); off<dp->size; off+=sizeof(de)){
8010673e: 8b 45 f4 mov -0xc(%ebp),%eax
80106741: 83 c0 10 add $0x10,%eax
80106744: 89 45 f4 mov %eax,-0xc(%ebp)
80106747: 8b 55 f4 mov -0xc(%ebp),%edx
8010674a: 8b 45 08 mov 0x8(%ebp),%eax
8010674d: 8b 40 18 mov 0x18(%eax),%eax
80106750: 39 c2 cmp %eax,%edx
80106752: 72 a8 jb 801066fc <isdirempty+0xf>
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
panic("isdirempty: readi");
if(de.inum != 0)
return 0;
}
return 1;
80106754: b8 01 00 00 00 mov $0x1,%eax
}
80106759: c9 leave
8010675a: c3 ret
8010675b <sys_unlink>:
//PAGEBREAK!
int
sys_unlink(void)
{
8010675b: 55 push %ebp
8010675c: 89 e5 mov %esp,%ebp
8010675e: 83 ec 48 sub $0x48,%esp
struct inode *ip, *dp;
struct dirent de;
char name[DIRSIZ], *path;
uint off;
if(argstr(0, &path) < 0)
80106761: 8d 45 cc lea -0x34(%ebp),%eax
80106764: 89 44 24 04 mov %eax,0x4(%esp)
80106768: c7 04 24 00 00 00 00 movl $0x0,(%esp)
8010676f: e8 72 fa ff ff call 801061e6 <argstr>
80106774: 85 c0 test %eax,%eax
80106776: 79 0a jns 80106782 <sys_unlink+0x27>
return -1;
80106778: b8 ff ff ff ff mov $0xffffffff,%eax
8010677d: e9 af 01 00 00 jmp 80106931 <sys_unlink+0x1d6>
begin_op();
80106782: e8 9a d5 ff ff call 80103d21 <begin_op>
if((dp = nameiparent(path, name)) == 0){
80106787: 8b 45 cc mov -0x34(%ebp),%eax
8010678a: 8d 55 d2 lea -0x2e(%ebp),%edx
8010678d: 89 54 24 04 mov %edx,0x4(%esp)
80106791: 89 04 24 mov %eax,(%esp)
80106794: e8 36 c5 ff ff call 80102ccf <nameiparent>
80106799: 89 45 f4 mov %eax,-0xc(%ebp)
8010679c: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
801067a0: 75 0f jne 801067b1 <sys_unlink+0x56>
end_op();
801067a2: e8 fb d5 ff ff call 80103da2 <end_op>
return -1;
801067a7: b8 ff ff ff ff mov $0xffffffff,%eax
801067ac: e9 80 01 00 00 jmp 80106931 <sys_unlink+0x1d6>
}
ilock(dp);
801067b1: 8b 45 f4 mov -0xc(%ebp),%eax
801067b4: 89 04 24 mov %eax,(%esp)
801067b7: e8 49 b9 ff ff call 80102105 <ilock>
// Cannot unlink "." or "..".
if(namecmp(name, ".") == 0 || namecmp(name, "..") == 0)
801067bc: c7 44 24 04 25 97 10 movl $0x80109725,0x4(%esp)
801067c3: 80
801067c4: 8d 45 d2 lea -0x2e(%ebp),%eax
801067c7: 89 04 24 mov %eax,(%esp)
801067ca: e8 33 c1 ff ff call 80102902 <namecmp>
801067cf: 85 c0 test %eax,%eax
801067d1: 0f 84 45 01 00 00 je 8010691c <sys_unlink+0x1c1>
801067d7: c7 44 24 04 27 97 10 movl $0x80109727,0x4(%esp)
801067de: 80
801067df: 8d 45 d2 lea -0x2e(%ebp),%eax
801067e2: 89 04 24 mov %eax,(%esp)
801067e5: e8 18 c1 ff ff call 80102902 <namecmp>
801067ea: 85 c0 test %eax,%eax
801067ec: 0f 84 2a 01 00 00 je 8010691c <sys_unlink+0x1c1>
goto bad;
if((ip = dirlookup(dp, name, &off)) == 0)
801067f2: 8d 45 c8 lea -0x38(%ebp),%eax
801067f5: 89 44 24 08 mov %eax,0x8(%esp)
801067f9: 8d 45 d2 lea -0x2e(%ebp),%eax
801067fc: 89 44 24 04 mov %eax,0x4(%esp)
80106800: 8b 45 f4 mov -0xc(%ebp),%eax
80106803: 89 04 24 mov %eax,(%esp)
80106806: e8 19 c1 ff ff call 80102924 <dirlookup>
8010680b: 89 45 f0 mov %eax,-0x10(%ebp)
8010680e: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106812: 0f 84 03 01 00 00 je 8010691b <sys_unlink+0x1c0>
goto bad;
ilock(ip);
80106818: 8b 45 f0 mov -0x10(%ebp),%eax
8010681b: 89 04 24 mov %eax,(%esp)
8010681e: e8 e2 b8 ff ff call 80102105 <ilock>
if(ip->nlink < 1)
80106823: 8b 45 f0 mov -0x10(%ebp),%eax
80106826: 0f b7 40 16 movzwl 0x16(%eax),%eax
8010682a: 66 85 c0 test %ax,%ax
8010682d: 7f 0c jg 8010683b <sys_unlink+0xe0>
panic("unlink: nlink < 1");
8010682f: c7 04 24 2a 97 10 80 movl $0x8010972a,(%esp)
80106836: e8 02 9d ff ff call 8010053d <panic>
if(ip->type == T_DIR && !isdirempty(ip)){
8010683b: 8b 45 f0 mov -0x10(%ebp),%eax
8010683e: 0f b7 40 10 movzwl 0x10(%eax),%eax
80106842: 66 83 f8 01 cmp $0x1,%ax
80106846: 75 1f jne 80106867 <sys_unlink+0x10c>
80106848: 8b 45 f0 mov -0x10(%ebp),%eax
8010684b: 89 04 24 mov %eax,(%esp)
8010684e: e8 9a fe ff ff call 801066ed <isdirempty>
80106853: 85 c0 test %eax,%eax
80106855: 75 10 jne 80106867 <sys_unlink+0x10c>
iunlockput(ip);
80106857: 8b 45 f0 mov -0x10(%ebp),%eax
8010685a: 89 04 24 mov %eax,(%esp)
8010685d: e8 2d bb ff ff call 8010238f <iunlockput>
goto bad;
80106862: e9 b5 00 00 00 jmp 8010691c <sys_unlink+0x1c1>
}
memset(&de, 0, sizeof(de));
80106867: c7 44 24 08 10 00 00 movl $0x10,0x8(%esp)
8010686e: 00
8010686f: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80106876: 00
80106877: 8d 45 e0 lea -0x20(%ebp),%eax
8010687a: 89 04 24 mov %eax,(%esp)
8010687d: e8 78 f5 ff ff call 80105dfa <memset>
if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
80106882: 8b 45 c8 mov -0x38(%ebp),%eax
80106885: c7 44 24 0c 10 00 00 movl $0x10,0xc(%esp)
8010688c: 00
8010688d: 89 44 24 08 mov %eax,0x8(%esp)
80106891: 8d 45 e0 lea -0x20(%ebp),%eax
80106894: 89 44 24 04 mov %eax,0x4(%esp)
80106898: 8b 45 f4 mov -0xc(%ebp),%eax
8010689b: 89 04 24 mov %eax,(%esp)
8010689e: e8 c9 be ff ff call 8010276c <writei>
801068a3: 83 f8 10 cmp $0x10,%eax
801068a6: 74 0c je 801068b4 <sys_unlink+0x159>
panic("unlink: writei");
801068a8: c7 04 24 3c 97 10 80 movl $0x8010973c,(%esp)
801068af: e8 89 9c ff ff call 8010053d <panic>
if(ip->type == T_DIR){
801068b4: 8b 45 f0 mov -0x10(%ebp),%eax
801068b7: 0f b7 40 10 movzwl 0x10(%eax),%eax
801068bb: 66 83 f8 01 cmp $0x1,%ax
801068bf: 75 1c jne 801068dd <sys_unlink+0x182>
dp->nlink--;
801068c1: 8b 45 f4 mov -0xc(%ebp),%eax
801068c4: 0f b7 40 16 movzwl 0x16(%eax),%eax
801068c8: 8d 50 ff lea -0x1(%eax),%edx
801068cb: 8b 45 f4 mov -0xc(%ebp),%eax
801068ce: 66 89 50 16 mov %dx,0x16(%eax)
iupdate(dp);
801068d2: 8b 45 f4 mov -0xc(%ebp),%eax
801068d5: 89 04 24 mov %eax,(%esp)
801068d8: e8 66 b6 ff ff call 80101f43 <iupdate>
}
iunlockput(dp);
801068dd: 8b 45 f4 mov -0xc(%ebp),%eax
801068e0: 89 04 24 mov %eax,(%esp)
801068e3: e8 a7 ba ff ff call 8010238f <iunlockput>
ip->nlink--;
801068e8: 8b 45 f0 mov -0x10(%ebp),%eax
801068eb: 0f b7 40 16 movzwl 0x16(%eax),%eax
801068ef: 8d 50 ff lea -0x1(%eax),%edx
801068f2: 8b 45 f0 mov -0x10(%ebp),%eax
801068f5: 66 89 50 16 mov %dx,0x16(%eax)
iupdate(ip);
801068f9: 8b 45 f0 mov -0x10(%ebp),%eax
801068fc: 89 04 24 mov %eax,(%esp)
801068ff: e8 3f b6 ff ff call 80101f43 <iupdate>
iunlockput(ip);
80106904: 8b 45 f0 mov -0x10(%ebp),%eax
80106907: 89 04 24 mov %eax,(%esp)
8010690a: e8 80 ba ff ff call 8010238f <iunlockput>
end_op();
8010690f: e8 8e d4 ff ff call 80103da2 <end_op>
return 0;
80106914: b8 00 00 00 00 mov $0x0,%eax
80106919: eb 16 jmp 80106931 <sys_unlink+0x1d6>
// Cannot unlink "." or "..".
if(namecmp(name, ".") == 0 || namecmp(name, "..") == 0)
goto bad;
if((ip = dirlookup(dp, name, &off)) == 0)
goto bad;
8010691b: 90 nop
end_op();
return 0;
bad:
iunlockput(dp);
8010691c: 8b 45 f4 mov -0xc(%ebp),%eax
8010691f: 89 04 24 mov %eax,(%esp)
80106922: e8 68 ba ff ff call 8010238f <iunlockput>
end_op();
80106927: e8 76 d4 ff ff call 80103da2 <end_op>
return -1;
8010692c: b8 ff ff ff ff mov $0xffffffff,%eax
}
80106931: c9 leave
80106932: c3 ret
80106933 <create>:
static struct inode*
create(char *path, short type, short major, short minor)
{
80106933: 55 push %ebp
80106934: 89 e5 mov %esp,%ebp
80106936: 83 ec 48 sub $0x48,%esp
80106939: 8b 4d 0c mov 0xc(%ebp),%ecx
8010693c: 8b 55 10 mov 0x10(%ebp),%edx
8010693f: 8b 45 14 mov 0x14(%ebp),%eax
80106942: 66 89 4d d4 mov %cx,-0x2c(%ebp)
80106946: 66 89 55 d0 mov %dx,-0x30(%ebp)
8010694a: 66 89 45 cc mov %ax,-0x34(%ebp)
uint off;
struct inode *ip, *dp;
char name[DIRSIZ];
if((dp = nameiparent(path, name)) == 0)
8010694e: 8d 45 de lea -0x22(%ebp),%eax
80106951: 89 44 24 04 mov %eax,0x4(%esp)
80106955: 8b 45 08 mov 0x8(%ebp),%eax
80106958: 89 04 24 mov %eax,(%esp)
8010695b: e8 6f c3 ff ff call 80102ccf <nameiparent>
80106960: 89 45 f4 mov %eax,-0xc(%ebp)
80106963: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106967: 75 0a jne 80106973 <create+0x40>
return 0;
80106969: b8 00 00 00 00 mov $0x0,%eax
8010696e: e9 7e 01 00 00 jmp 80106af1 <create+0x1be>
ilock(dp);
80106973: 8b 45 f4 mov -0xc(%ebp),%eax
80106976: 89 04 24 mov %eax,(%esp)
80106979: e8 87 b7 ff ff call 80102105 <ilock>
if((ip = dirlookup(dp, name, &off)) != 0){
8010697e: 8d 45 ec lea -0x14(%ebp),%eax
80106981: 89 44 24 08 mov %eax,0x8(%esp)
80106985: 8d 45 de lea -0x22(%ebp),%eax
80106988: 89 44 24 04 mov %eax,0x4(%esp)
8010698c: 8b 45 f4 mov -0xc(%ebp),%eax
8010698f: 89 04 24 mov %eax,(%esp)
80106992: e8 8d bf ff ff call 80102924 <dirlookup>
80106997: 89 45 f0 mov %eax,-0x10(%ebp)
8010699a: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
8010699e: 74 47 je 801069e7 <create+0xb4>
iunlockput(dp);
801069a0: 8b 45 f4 mov -0xc(%ebp),%eax
801069a3: 89 04 24 mov %eax,(%esp)
801069a6: e8 e4 b9 ff ff call 8010238f <iunlockput>
ilock(ip);
801069ab: 8b 45 f0 mov -0x10(%ebp),%eax
801069ae: 89 04 24 mov %eax,(%esp)
801069b1: e8 4f b7 ff ff call 80102105 <ilock>
if(type == T_FILE && ip->type == T_FILE)
801069b6: 66 83 7d d4 02 cmpw $0x2,-0x2c(%ebp)
801069bb: 75 15 jne 801069d2 <create+0x9f>
801069bd: 8b 45 f0 mov -0x10(%ebp),%eax
801069c0: 0f b7 40 10 movzwl 0x10(%eax),%eax
801069c4: 66 83 f8 02 cmp $0x2,%ax
801069c8: 75 08 jne 801069d2 <create+0x9f>
return ip;
801069ca: 8b 45 f0 mov -0x10(%ebp),%eax
801069cd: e9 1f 01 00 00 jmp 80106af1 <create+0x1be>
iunlockput(ip);
801069d2: 8b 45 f0 mov -0x10(%ebp),%eax
801069d5: 89 04 24 mov %eax,(%esp)
801069d8: e8 b2 b9 ff ff call 8010238f <iunlockput>
return 0;
801069dd: b8 00 00 00 00 mov $0x0,%eax
801069e2: e9 0a 01 00 00 jmp 80106af1 <create+0x1be>
}
if((ip = ialloc(dp->dev, type)) == 0)
801069e7: 0f bf 55 d4 movswl -0x2c(%ebp),%edx
801069eb: 8b 45 f4 mov -0xc(%ebp),%eax
801069ee: 8b 00 mov (%eax),%eax
801069f0: 89 54 24 04 mov %edx,0x4(%esp)
801069f4: 89 04 24 mov %eax,(%esp)
801069f7: e8 74 b4 ff ff call 80101e70 <ialloc>
801069fc: 89 45 f0 mov %eax,-0x10(%ebp)
801069ff: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106a03: 75 0c jne 80106a11 <create+0xde>
panic("create: ialloc");
80106a05: c7 04 24 4b 97 10 80 movl $0x8010974b,(%esp)
80106a0c: e8 2c 9b ff ff call 8010053d <panic>
ilock(ip);
80106a11: 8b 45 f0 mov -0x10(%ebp),%eax
80106a14: 89 04 24 mov %eax,(%esp)
80106a17: e8 e9 b6 ff ff call 80102105 <ilock>
ip->major = major;
80106a1c: 8b 45 f0 mov -0x10(%ebp),%eax
80106a1f: 0f b7 55 d0 movzwl -0x30(%ebp),%edx
80106a23: 66 89 50 12 mov %dx,0x12(%eax)
ip->minor = minor;
80106a27: 8b 45 f0 mov -0x10(%ebp),%eax
80106a2a: 0f b7 55 cc movzwl -0x34(%ebp),%edx
80106a2e: 66 89 50 14 mov %dx,0x14(%eax)
ip->nlink = 1;
80106a32: 8b 45 f0 mov -0x10(%ebp),%eax
80106a35: 66 c7 40 16 01 00 movw $0x1,0x16(%eax)
iupdate(ip);
80106a3b: 8b 45 f0 mov -0x10(%ebp),%eax
80106a3e: 89 04 24 mov %eax,(%esp)
80106a41: e8 fd b4 ff ff call 80101f43 <iupdate>
if(type == T_DIR){ // Create . and .. entries.
80106a46: 66 83 7d d4 01 cmpw $0x1,-0x2c(%ebp)
80106a4b: 75 6a jne 80106ab7 <create+0x184>
dp->nlink++; // for ".."
80106a4d: 8b 45 f4 mov -0xc(%ebp),%eax
80106a50: 0f b7 40 16 movzwl 0x16(%eax),%eax
80106a54: 8d 50 01 lea 0x1(%eax),%edx
80106a57: 8b 45 f4 mov -0xc(%ebp),%eax
80106a5a: 66 89 50 16 mov %dx,0x16(%eax)
iupdate(dp);
80106a5e: 8b 45 f4 mov -0xc(%ebp),%eax
80106a61: 89 04 24 mov %eax,(%esp)
80106a64: e8 da b4 ff ff call 80101f43 <iupdate>
// No ip->nlink++ for ".": avoid cyclic ref count.
if(dirlink(ip, ".", ip->inum) < 0 || dirlink(ip, "..", dp->inum) < 0)
80106a69: 8b 45 f0 mov -0x10(%ebp),%eax
80106a6c: 8b 40 04 mov 0x4(%eax),%eax
80106a6f: 89 44 24 08 mov %eax,0x8(%esp)
80106a73: c7 44 24 04 25 97 10 movl $0x80109725,0x4(%esp)
80106a7a: 80
80106a7b: 8b 45 f0 mov -0x10(%ebp),%eax
80106a7e: 89 04 24 mov %eax,(%esp)
80106a81: e8 66 bf ff ff call 801029ec <dirlink>
80106a86: 85 c0 test %eax,%eax
80106a88: 78 21 js 80106aab <create+0x178>
80106a8a: 8b 45 f4 mov -0xc(%ebp),%eax
80106a8d: 8b 40 04 mov 0x4(%eax),%eax
80106a90: 89 44 24 08 mov %eax,0x8(%esp)
80106a94: c7 44 24 04 27 97 10 movl $0x80109727,0x4(%esp)
80106a9b: 80
80106a9c: 8b 45 f0 mov -0x10(%ebp),%eax
80106a9f: 89 04 24 mov %eax,(%esp)
80106aa2: e8 45 bf ff ff call 801029ec <dirlink>
80106aa7: 85 c0 test %eax,%eax
80106aa9: 79 0c jns 80106ab7 <create+0x184>
panic("create dots");
80106aab: c7 04 24 5a 97 10 80 movl $0x8010975a,(%esp)
80106ab2: e8 86 9a ff ff call 8010053d <panic>
}
if(dirlink(dp, name, ip->inum) < 0)
80106ab7: 8b 45 f0 mov -0x10(%ebp),%eax
80106aba: 8b 40 04 mov 0x4(%eax),%eax
80106abd: 89 44 24 08 mov %eax,0x8(%esp)
80106ac1: 8d 45 de lea -0x22(%ebp),%eax
80106ac4: 89 44 24 04 mov %eax,0x4(%esp)
80106ac8: 8b 45 f4 mov -0xc(%ebp),%eax
80106acb: 89 04 24 mov %eax,(%esp)
80106ace: e8 19 bf ff ff call 801029ec <dirlink>
80106ad3: 85 c0 test %eax,%eax
80106ad5: 79 0c jns 80106ae3 <create+0x1b0>
panic("create: dirlink");
80106ad7: c7 04 24 66 97 10 80 movl $0x80109766,(%esp)
80106ade: e8 5a 9a ff ff call 8010053d <panic>
iunlockput(dp);
80106ae3: 8b 45 f4 mov -0xc(%ebp),%eax
80106ae6: 89 04 24 mov %eax,(%esp)
80106ae9: e8 a1 b8 ff ff call 8010238f <iunlockput>
return ip;
80106aee: 8b 45 f0 mov -0x10(%ebp),%eax
}
80106af1: c9 leave
80106af2: c3 ret
80106af3 <sys_open>:
int
sys_open(void)
{
80106af3: 55 push %ebp
80106af4: 89 e5 mov %esp,%ebp
80106af6: 83 ec 38 sub $0x38,%esp
char *path;
int fd, omode;
struct file *f;
struct inode *ip;
if(argstr(0, &path) < 0 || argint(1, &omode) < 0)
80106af9: 8d 45 e8 lea -0x18(%ebp),%eax
80106afc: 89 44 24 04 mov %eax,0x4(%esp)
80106b00: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106b07: e8 da f6 ff ff call 801061e6 <argstr>
80106b0c: 85 c0 test %eax,%eax
80106b0e: 78 17 js 80106b27 <sys_open+0x34>
80106b10: 8d 45 e4 lea -0x1c(%ebp),%eax
80106b13: 89 44 24 04 mov %eax,0x4(%esp)
80106b17: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106b1e: e8 33 f6 ff ff call 80106156 <argint>
80106b23: 85 c0 test %eax,%eax
80106b25: 79 0a jns 80106b31 <sys_open+0x3e>
return -1;
80106b27: b8 ff ff ff ff mov $0xffffffff,%eax
80106b2c: e9 5a 01 00 00 jmp 80106c8b <sys_open+0x198>
begin_op();
80106b31: e8 eb d1 ff ff call 80103d21 <begin_op>
if(omode & O_CREATE){
80106b36: 8b 45 e4 mov -0x1c(%ebp),%eax
80106b39: 25 00 02 00 00 and $0x200,%eax
80106b3e: 85 c0 test %eax,%eax
80106b40: 74 3b je 80106b7d <sys_open+0x8a>
ip = create(path, T_FILE, 0, 0);
80106b42: 8b 45 e8 mov -0x18(%ebp),%eax
80106b45: c7 44 24 0c 00 00 00 movl $0x0,0xc(%esp)
80106b4c: 00
80106b4d: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80106b54: 00
80106b55: c7 44 24 04 02 00 00 movl $0x2,0x4(%esp)
80106b5c: 00
80106b5d: 89 04 24 mov %eax,(%esp)
80106b60: e8 ce fd ff ff call 80106933 <create>
80106b65: 89 45 f4 mov %eax,-0xc(%ebp)
if(ip == 0){
80106b68: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106b6c: 75 6b jne 80106bd9 <sys_open+0xe6>
end_op();
80106b6e: e8 2f d2 ff ff call 80103da2 <end_op>
return -1;
80106b73: b8 ff ff ff ff mov $0xffffffff,%eax
80106b78: e9 0e 01 00 00 jmp 80106c8b <sys_open+0x198>
}
} else {
if((ip = namei(path)) == 0){
80106b7d: 8b 45 e8 mov -0x18(%ebp),%eax
80106b80: 89 04 24 mov %eax,(%esp)
80106b83: e8 25 c1 ff ff call 80102cad <namei>
80106b88: 89 45 f4 mov %eax,-0xc(%ebp)
80106b8b: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106b8f: 75 0f jne 80106ba0 <sys_open+0xad>
end_op();
80106b91: e8 0c d2 ff ff call 80103da2 <end_op>
return -1;
80106b96: b8 ff ff ff ff mov $0xffffffff,%eax
80106b9b: e9 eb 00 00 00 jmp 80106c8b <sys_open+0x198>
}
ilock(ip);
80106ba0: 8b 45 f4 mov -0xc(%ebp),%eax
80106ba3: 89 04 24 mov %eax,(%esp)
80106ba6: e8 5a b5 ff ff call 80102105 <ilock>
if(ip->type == T_DIR && omode != O_RDONLY){
80106bab: 8b 45 f4 mov -0xc(%ebp),%eax
80106bae: 0f b7 40 10 movzwl 0x10(%eax),%eax
80106bb2: 66 83 f8 01 cmp $0x1,%ax
80106bb6: 75 21 jne 80106bd9 <sys_open+0xe6>
80106bb8: 8b 45 e4 mov -0x1c(%ebp),%eax
80106bbb: 85 c0 test %eax,%eax
80106bbd: 74 1a je 80106bd9 <sys_open+0xe6>
iunlockput(ip);
80106bbf: 8b 45 f4 mov -0xc(%ebp),%eax
80106bc2: 89 04 24 mov %eax,(%esp)
80106bc5: e8 c5 b7 ff ff call 8010238f <iunlockput>
end_op();
80106bca: e8 d3 d1 ff ff call 80103da2 <end_op>
return -1;
80106bcf: b8 ff ff ff ff mov $0xffffffff,%eax
80106bd4: e9 b2 00 00 00 jmp 80106c8b <sys_open+0x198>
}
}
if((f = filealloc()) == 0 || (fd = fdalloc(f)) < 0){
80106bd9: e8 7a ab ff ff call 80101758 <filealloc>
80106bde: 89 45 f0 mov %eax,-0x10(%ebp)
80106be1: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106be5: 74 14 je 80106bfb <sys_open+0x108>
80106be7: 8b 45 f0 mov -0x10(%ebp),%eax
80106bea: 89 04 24 mov %eax,(%esp)
80106bed: e8 2f f7 ff ff call 80106321 <fdalloc>
80106bf2: 89 45 ec mov %eax,-0x14(%ebp)
80106bf5: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
80106bf9: 79 28 jns 80106c23 <sys_open+0x130>
if(f)
80106bfb: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106bff: 74 0b je 80106c0c <sys_open+0x119>
fileclose(f);
80106c01: 8b 45 f0 mov -0x10(%ebp),%eax
80106c04: 89 04 24 mov %eax,(%esp)
80106c07: e8 f4 ab ff ff call 80101800 <fileclose>
iunlockput(ip);
80106c0c: 8b 45 f4 mov -0xc(%ebp),%eax
80106c0f: 89 04 24 mov %eax,(%esp)
80106c12: e8 78 b7 ff ff call 8010238f <iunlockput>
end_op();
80106c17: e8 86 d1 ff ff call 80103da2 <end_op>
return -1;
80106c1c: b8 ff ff ff ff mov $0xffffffff,%eax
80106c21: eb 68 jmp 80106c8b <sys_open+0x198>
}
iunlock(ip);
80106c23: 8b 45 f4 mov -0xc(%ebp),%eax
80106c26: 89 04 24 mov %eax,(%esp)
80106c29: e8 2b b6 ff ff call 80102259 <iunlock>
end_op();
80106c2e: e8 6f d1 ff ff call 80103da2 <end_op>
f->type = FD_INODE;
80106c33: 8b 45 f0 mov -0x10(%ebp),%eax
80106c36: c7 00 02 00 00 00 movl $0x2,(%eax)
f->ip = ip;
80106c3c: 8b 45 f0 mov -0x10(%ebp),%eax
80106c3f: 8b 55 f4 mov -0xc(%ebp),%edx
80106c42: 89 50 10 mov %edx,0x10(%eax)
f->off = 0;
80106c45: 8b 45 f0 mov -0x10(%ebp),%eax
80106c48: c7 40 14 00 00 00 00 movl $0x0,0x14(%eax)
f->readable = !(omode & O_WRONLY);
80106c4f: 8b 45 e4 mov -0x1c(%ebp),%eax
80106c52: 83 e0 01 and $0x1,%eax
80106c55: 85 c0 test %eax,%eax
80106c57: 0f 94 c2 sete %dl
80106c5a: 8b 45 f0 mov -0x10(%ebp),%eax
80106c5d: 88 50 08 mov %dl,0x8(%eax)
f->writable = (omode & O_WRONLY) || (omode & O_RDWR);
80106c60: 8b 45 e4 mov -0x1c(%ebp),%eax
80106c63: 83 e0 01 and $0x1,%eax
80106c66: 84 c0 test %al,%al
80106c68: 75 0a jne 80106c74 <sys_open+0x181>
80106c6a: 8b 45 e4 mov -0x1c(%ebp),%eax
80106c6d: 83 e0 02 and $0x2,%eax
80106c70: 85 c0 test %eax,%eax
80106c72: 74 07 je 80106c7b <sys_open+0x188>
80106c74: b8 01 00 00 00 mov $0x1,%eax
80106c79: eb 05 jmp 80106c80 <sys_open+0x18d>
80106c7b: b8 00 00 00 00 mov $0x0,%eax
80106c80: 89 c2 mov %eax,%edx
80106c82: 8b 45 f0 mov -0x10(%ebp),%eax
80106c85: 88 50 09 mov %dl,0x9(%eax)
return fd;
80106c88: 8b 45 ec mov -0x14(%ebp),%eax
}
80106c8b: c9 leave
80106c8c: c3 ret
80106c8d <sys_mkdir>:
int
sys_mkdir(void)
{
80106c8d: 55 push %ebp
80106c8e: 89 e5 mov %esp,%ebp
80106c90: 83 ec 28 sub $0x28,%esp
char *path;
struct inode *ip;
begin_op();
80106c93: e8 89 d0 ff ff call 80103d21 <begin_op>
if(argstr(0, &path) < 0 || (ip = create(path, T_DIR, 0, 0)) == 0){
80106c98: 8d 45 f0 lea -0x10(%ebp),%eax
80106c9b: 89 44 24 04 mov %eax,0x4(%esp)
80106c9f: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106ca6: e8 3b f5 ff ff call 801061e6 <argstr>
80106cab: 85 c0 test %eax,%eax
80106cad: 78 2c js 80106cdb <sys_mkdir+0x4e>
80106caf: 8b 45 f0 mov -0x10(%ebp),%eax
80106cb2: c7 44 24 0c 00 00 00 movl $0x0,0xc(%esp)
80106cb9: 00
80106cba: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80106cc1: 00
80106cc2: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80106cc9: 00
80106cca: 89 04 24 mov %eax,(%esp)
80106ccd: e8 61 fc ff ff call 80106933 <create>
80106cd2: 89 45 f4 mov %eax,-0xc(%ebp)
80106cd5: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106cd9: 75 0c jne 80106ce7 <sys_mkdir+0x5a>
end_op();
80106cdb: e8 c2 d0 ff ff call 80103da2 <end_op>
return -1;
80106ce0: b8 ff ff ff ff mov $0xffffffff,%eax
80106ce5: eb 15 jmp 80106cfc <sys_mkdir+0x6f>
}
iunlockput(ip);
80106ce7: 8b 45 f4 mov -0xc(%ebp),%eax
80106cea: 89 04 24 mov %eax,(%esp)
80106ced: e8 9d b6 ff ff call 8010238f <iunlockput>
end_op();
80106cf2: e8 ab d0 ff ff call 80103da2 <end_op>
return 0;
80106cf7: b8 00 00 00 00 mov $0x0,%eax
}
80106cfc: c9 leave
80106cfd: c3 ret
80106cfe <sys_mknod>:
int
sys_mknod(void)
{
80106cfe: 55 push %ebp
80106cff: 89 e5 mov %esp,%ebp
80106d01: 83 ec 38 sub $0x38,%esp
struct inode *ip;
char *path;
int len;
int major, minor;
begin_op();
80106d04: e8 18 d0 ff ff call 80103d21 <begin_op>
if((len=argstr(0, &path)) < 0 ||
80106d09: 8d 45 ec lea -0x14(%ebp),%eax
80106d0c: 89 44 24 04 mov %eax,0x4(%esp)
80106d10: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106d17: e8 ca f4 ff ff call 801061e6 <argstr>
80106d1c: 89 45 f4 mov %eax,-0xc(%ebp)
80106d1f: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106d23: 78 5e js 80106d83 <sys_mknod+0x85>
argint(1, &major) < 0 ||
80106d25: 8d 45 e8 lea -0x18(%ebp),%eax
80106d28: 89 44 24 04 mov %eax,0x4(%esp)
80106d2c: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106d33: e8 1e f4 ff ff call 80106156 <argint>
char *path;
int len;
int major, minor;
begin_op();
if((len=argstr(0, &path)) < 0 ||
80106d38: 85 c0 test %eax,%eax
80106d3a: 78 47 js 80106d83 <sys_mknod+0x85>
argint(1, &major) < 0 ||
argint(2, &minor) < 0 ||
80106d3c: 8d 45 e4 lea -0x1c(%ebp),%eax
80106d3f: 89 44 24 04 mov %eax,0x4(%esp)
80106d43: c7 04 24 02 00 00 00 movl $0x2,(%esp)
80106d4a: e8 07 f4 ff ff call 80106156 <argint>
int len;
int major, minor;
begin_op();
if((len=argstr(0, &path)) < 0 ||
argint(1, &major) < 0 ||
80106d4f: 85 c0 test %eax,%eax
80106d51: 78 30 js 80106d83 <sys_mknod+0x85>
argint(2, &minor) < 0 ||
(ip = create(path, T_DEV, major, minor)) == 0){
80106d53: 8b 45 e4 mov -0x1c(%ebp),%eax
80106d56: 0f bf c8 movswl %ax,%ecx
80106d59: 8b 45 e8 mov -0x18(%ebp),%eax
80106d5c: 0f bf d0 movswl %ax,%edx
80106d5f: 8b 45 ec mov -0x14(%ebp),%eax
int major, minor;
begin_op();
if((len=argstr(0, &path)) < 0 ||
argint(1, &major) < 0 ||
argint(2, &minor) < 0 ||
80106d62: 89 4c 24 0c mov %ecx,0xc(%esp)
80106d66: 89 54 24 08 mov %edx,0x8(%esp)
80106d6a: c7 44 24 04 03 00 00 movl $0x3,0x4(%esp)
80106d71: 00
80106d72: 89 04 24 mov %eax,(%esp)
80106d75: e8 b9 fb ff ff call 80106933 <create>
80106d7a: 89 45 f0 mov %eax,-0x10(%ebp)
80106d7d: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106d81: 75 0c jne 80106d8f <sys_mknod+0x91>
(ip = create(path, T_DEV, major, minor)) == 0){
end_op();
80106d83: e8 1a d0 ff ff call 80103da2 <end_op>
return -1;
80106d88: b8 ff ff ff ff mov $0xffffffff,%eax
80106d8d: eb 15 jmp 80106da4 <sys_mknod+0xa6>
}
iunlockput(ip);
80106d8f: 8b 45 f0 mov -0x10(%ebp),%eax
80106d92: 89 04 24 mov %eax,(%esp)
80106d95: e8 f5 b5 ff ff call 8010238f <iunlockput>
end_op();
80106d9a: e8 03 d0 ff ff call 80103da2 <end_op>
return 0;
80106d9f: b8 00 00 00 00 mov $0x0,%eax
}
80106da4: c9 leave
80106da5: c3 ret
80106da6 <sys_chdir>:
int
sys_chdir(void)
{
80106da6: 55 push %ebp
80106da7: 89 e5 mov %esp,%ebp
80106da9: 83 ec 28 sub $0x28,%esp
char *path;
struct inode *ip;
begin_op();
80106dac: e8 70 cf ff ff call 80103d21 <begin_op>
if(argstr(0, &path) < 0 || (ip = namei(path)) == 0){
80106db1: 8d 45 f0 lea -0x10(%ebp),%eax
80106db4: 89 44 24 04 mov %eax,0x4(%esp)
80106db8: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106dbf: e8 22 f4 ff ff call 801061e6 <argstr>
80106dc4: 85 c0 test %eax,%eax
80106dc6: 78 14 js 80106ddc <sys_chdir+0x36>
80106dc8: 8b 45 f0 mov -0x10(%ebp),%eax
80106dcb: 89 04 24 mov %eax,(%esp)
80106dce: e8 da be ff ff call 80102cad <namei>
80106dd3: 89 45 f4 mov %eax,-0xc(%ebp)
80106dd6: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106dda: 75 0c jne 80106de8 <sys_chdir+0x42>
end_op();
80106ddc: e8 c1 cf ff ff call 80103da2 <end_op>
return -1;
80106de1: b8 ff ff ff ff mov $0xffffffff,%eax
80106de6: eb 61 jmp 80106e49 <sys_chdir+0xa3>
}
ilock(ip);
80106de8: 8b 45 f4 mov -0xc(%ebp),%eax
80106deb: 89 04 24 mov %eax,(%esp)
80106dee: e8 12 b3 ff ff call 80102105 <ilock>
if(ip->type != T_DIR){
80106df3: 8b 45 f4 mov -0xc(%ebp),%eax
80106df6: 0f b7 40 10 movzwl 0x10(%eax),%eax
80106dfa: 66 83 f8 01 cmp $0x1,%ax
80106dfe: 74 17 je 80106e17 <sys_chdir+0x71>
iunlockput(ip);
80106e00: 8b 45 f4 mov -0xc(%ebp),%eax
80106e03: 89 04 24 mov %eax,(%esp)
80106e06: e8 84 b5 ff ff call 8010238f <iunlockput>
end_op();
80106e0b: e8 92 cf ff ff call 80103da2 <end_op>
return -1;
80106e10: b8 ff ff ff ff mov $0xffffffff,%eax
80106e15: eb 32 jmp 80106e49 <sys_chdir+0xa3>
}
iunlock(ip);
80106e17: 8b 45 f4 mov -0xc(%ebp),%eax
80106e1a: 89 04 24 mov %eax,(%esp)
80106e1d: e8 37 b4 ff ff call 80102259 <iunlock>
iput(proc->cwd);
80106e22: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80106e28: 8b 40 68 mov 0x68(%eax),%eax
80106e2b: 89 04 24 mov %eax,(%esp)
80106e2e: e8 8b b4 ff ff call 801022be <iput>
end_op();
80106e33: e8 6a cf ff ff call 80103da2 <end_op>
proc->cwd = ip;
80106e38: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80106e3e: 8b 55 f4 mov -0xc(%ebp),%edx
80106e41: 89 50 68 mov %edx,0x68(%eax)
return 0;
80106e44: b8 00 00 00 00 mov $0x0,%eax
}
80106e49: c9 leave
80106e4a: c3 ret
80106e4b <sys_exec>:
int
sys_exec(void)
{
80106e4b: 55 push %ebp
80106e4c: 89 e5 mov %esp,%ebp
80106e4e: 81 ec a8 00 00 00 sub $0xa8,%esp
char *path, *argv[MAXARG];
int i;
uint uargv, uarg;
if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){
80106e54: 8d 45 f0 lea -0x10(%ebp),%eax
80106e57: 89 44 24 04 mov %eax,0x4(%esp)
80106e5b: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106e62: e8 7f f3 ff ff call 801061e6 <argstr>
80106e67: 85 c0 test %eax,%eax
80106e69: 78 1a js 80106e85 <sys_exec+0x3a>
80106e6b: 8d 85 6c ff ff ff lea -0x94(%ebp),%eax
80106e71: 89 44 24 04 mov %eax,0x4(%esp)
80106e75: c7 04 24 01 00 00 00 movl $0x1,(%esp)
80106e7c: e8 d5 f2 ff ff call 80106156 <argint>
80106e81: 85 c0 test %eax,%eax
80106e83: 79 0a jns 80106e8f <sys_exec+0x44>
return -1;
80106e85: b8 ff ff ff ff mov $0xffffffff,%eax
80106e8a: e9 cc 00 00 00 jmp 80106f5b <sys_exec+0x110>
}
memset(argv, 0, sizeof(argv));
80106e8f: c7 44 24 08 80 00 00 movl $0x80,0x8(%esp)
80106e96: 00
80106e97: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80106e9e: 00
80106e9f: 8d 85 70 ff ff ff lea -0x90(%ebp),%eax
80106ea5: 89 04 24 mov %eax,(%esp)
80106ea8: e8 4d ef ff ff call 80105dfa <memset>
for(i=0;; i++){
80106ead: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
if(i >= NELEM(argv))
80106eb4: 8b 45 f4 mov -0xc(%ebp),%eax
80106eb7: 83 f8 1f cmp $0x1f,%eax
80106eba: 76 0a jbe 80106ec6 <sys_exec+0x7b>
return -1;
80106ebc: b8 ff ff ff ff mov $0xffffffff,%eax
80106ec1: e9 95 00 00 00 jmp 80106f5b <sys_exec+0x110>
if(fetchint(uargv+4*i, (int*)&uarg) < 0)
80106ec6: 8b 45 f4 mov -0xc(%ebp),%eax
80106ec9: c1 e0 02 shl $0x2,%eax
80106ecc: 89 c2 mov %eax,%edx
80106ece: 8b 85 6c ff ff ff mov -0x94(%ebp),%eax
80106ed4: 01 c2 add %eax,%edx
80106ed6: 8d 85 68 ff ff ff lea -0x98(%ebp),%eax
80106edc: 89 44 24 04 mov %eax,0x4(%esp)
80106ee0: 89 14 24 mov %edx,(%esp)
80106ee3: e8 d0 f1 ff ff call 801060b8 <fetchint>
80106ee8: 85 c0 test %eax,%eax
80106eea: 79 07 jns 80106ef3 <sys_exec+0xa8>
return -1;
80106eec: b8 ff ff ff ff mov $0xffffffff,%eax
80106ef1: eb 68 jmp 80106f5b <sys_exec+0x110>
if(uarg == 0){
80106ef3: 8b 85 68 ff ff ff mov -0x98(%ebp),%eax
80106ef9: 85 c0 test %eax,%eax
80106efb: 75 26 jne 80106f23 <sys_exec+0xd8>
argv[i] = 0;
80106efd: 8b 45 f4 mov -0xc(%ebp),%eax
80106f00: c7 84 85 70 ff ff ff movl $0x0,-0x90(%ebp,%eax,4)
80106f07: 00 00 00 00
break;
80106f0b: 90 nop
}
if(fetchstr(uarg, &argv[i]) < 0)
return -1;
}
return exec(path, argv);
80106f0c: 8b 45 f0 mov -0x10(%ebp),%eax
80106f0f: 8d 95 70 ff ff ff lea -0x90(%ebp),%edx
80106f15: 89 54 24 04 mov %edx,0x4(%esp)
80106f19: 89 04 24 mov %eax,(%esp)
80106f1c: e8 fb a3 ff ff call 8010131c <exec>
80106f21: eb 38 jmp 80106f5b <sys_exec+0x110>
return -1;
if(uarg == 0){
argv[i] = 0;
break;
}
if(fetchstr(uarg, &argv[i]) < 0)
80106f23: 8b 45 f4 mov -0xc(%ebp),%eax
80106f26: 8d 14 85 00 00 00 00 lea 0x0(,%eax,4),%edx
80106f2d: 8d 85 70 ff ff ff lea -0x90(%ebp),%eax
80106f33: 01 c2 add %eax,%edx
80106f35: 8b 85 68 ff ff ff mov -0x98(%ebp),%eax
80106f3b: 89 54 24 04 mov %edx,0x4(%esp)
80106f3f: 89 04 24 mov %eax,(%esp)
80106f42: e8 ab f1 ff ff call 801060f2 <fetchstr>
80106f47: 85 c0 test %eax,%eax
80106f49: 79 07 jns 80106f52 <sys_exec+0x107>
return -1;
80106f4b: b8 ff ff ff ff mov $0xffffffff,%eax
80106f50: eb 09 jmp 80106f5b <sys_exec+0x110>
if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){
return -1;
}
memset(argv, 0, sizeof(argv));
for(i=0;; i++){
80106f52: 83 45 f4 01 addl $0x1,-0xc(%ebp)
argv[i] = 0;
break;
}
if(fetchstr(uarg, &argv[i]) < 0)
return -1;
}
80106f56: e9 59 ff ff ff jmp 80106eb4 <sys_exec+0x69>
return exec(path, argv);
}
80106f5b: c9 leave
80106f5c: c3 ret
80106f5d <sys_pipe>:
int
sys_pipe(void)
{
80106f5d: 55 push %ebp
80106f5e: 89 e5 mov %esp,%ebp
80106f60: 83 ec 38 sub $0x38,%esp
int *fd;
struct file *rf, *wf;
int fd0, fd1;
if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0)
80106f63: c7 44 24 08 08 00 00 movl $0x8,0x8(%esp)
80106f6a: 00
80106f6b: 8d 45 ec lea -0x14(%ebp),%eax
80106f6e: 89 44 24 04 mov %eax,0x4(%esp)
80106f72: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80106f79: e8 06 f2 ff ff call 80106184 <argptr>
80106f7e: 85 c0 test %eax,%eax
80106f80: 79 0a jns 80106f8c <sys_pipe+0x2f>
return -1;
80106f82: b8 ff ff ff ff mov $0xffffffff,%eax
80106f87: e9 9b 00 00 00 jmp 80107027 <sys_pipe+0xca>
if(pipealloc(&rf, &wf) < 0)
80106f8c: 8d 45 e4 lea -0x1c(%ebp),%eax
80106f8f: 89 44 24 04 mov %eax,0x4(%esp)
80106f93: 8d 45 e8 lea -0x18(%ebp),%eax
80106f96: 89 04 24 mov %eax,(%esp)
80106f99: e8 ae d8 ff ff call 8010484c <pipealloc>
80106f9e: 85 c0 test %eax,%eax
80106fa0: 79 07 jns 80106fa9 <sys_pipe+0x4c>
return -1;
80106fa2: b8 ff ff ff ff mov $0xffffffff,%eax
80106fa7: eb 7e jmp 80107027 <sys_pipe+0xca>
fd0 = -1;
80106fa9: c7 45 f4 ff ff ff ff movl $0xffffffff,-0xc(%ebp)
if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){
80106fb0: 8b 45 e8 mov -0x18(%ebp),%eax
80106fb3: 89 04 24 mov %eax,(%esp)
80106fb6: e8 66 f3 ff ff call 80106321 <fdalloc>
80106fbb: 89 45 f4 mov %eax,-0xc(%ebp)
80106fbe: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106fc2: 78 14 js 80106fd8 <sys_pipe+0x7b>
80106fc4: 8b 45 e4 mov -0x1c(%ebp),%eax
80106fc7: 89 04 24 mov %eax,(%esp)
80106fca: e8 52 f3 ff ff call 80106321 <fdalloc>
80106fcf: 89 45 f0 mov %eax,-0x10(%ebp)
80106fd2: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80106fd6: 79 37 jns 8010700f <sys_pipe+0xb2>
if(fd0 >= 0)
80106fd8: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80106fdc: 78 14 js 80106ff2 <sys_pipe+0x95>
proc->ofile[fd0] = 0;
80106fde: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80106fe4: 8b 55 f4 mov -0xc(%ebp),%edx
80106fe7: 83 c2 08 add $0x8,%edx
80106fea: c7 44 90 08 00 00 00 movl $0x0,0x8(%eax,%edx,4)
80106ff1: 00
fileclose(rf);
80106ff2: 8b 45 e8 mov -0x18(%ebp),%eax
80106ff5: 89 04 24 mov %eax,(%esp)
80106ff8: e8 03 a8 ff ff call 80101800 <fileclose>
fileclose(wf);
80106ffd: 8b 45 e4 mov -0x1c(%ebp),%eax
80107000: 89 04 24 mov %eax,(%esp)
80107003: e8 f8 a7 ff ff call 80101800 <fileclose>
return -1;
80107008: b8 ff ff ff ff mov $0xffffffff,%eax
8010700d: eb 18 jmp 80107027 <sys_pipe+0xca>
}
fd[0] = fd0;
8010700f: 8b 45 ec mov -0x14(%ebp),%eax
80107012: 8b 55 f4 mov -0xc(%ebp),%edx
80107015: 89 10 mov %edx,(%eax)
fd[1] = fd1;
80107017: 8b 45 ec mov -0x14(%ebp),%eax
8010701a: 8d 50 04 lea 0x4(%eax),%edx
8010701d: 8b 45 f0 mov -0x10(%ebp),%eax
80107020: 89 02 mov %eax,(%edx)
return 0;
80107022: b8 00 00 00 00 mov $0x0,%eax
}
80107027: c9 leave
80107028: c3 ret
80107029: 00 00 add %al,(%eax)
...
8010702c <sys_fork>:
#include "mmu.h"
#include "proc.h"
int
sys_fork(void)
{
8010702c: 55 push %ebp
8010702d: 89 e5 mov %esp,%ebp
8010702f: 83 ec 08 sub $0x8,%esp
return fork();
80107032: e8 d8 de ff ff call 80104f0f <fork>
}
80107037: c9 leave
80107038: c3 ret
80107039 <sys_exit>:
int
sys_exit(void)
{
80107039: 55 push %ebp
8010703a: 89 e5 mov %esp,%ebp
8010703c: 83 ec 08 sub $0x8,%esp
exit();
8010703f: e8 82 e0 ff ff call 801050c6 <exit>
return 0; // not reached
80107044: b8 00 00 00 00 mov $0x0,%eax
}
80107049: c9 leave
8010704a: c3 ret
8010704b <sys_wait>:
int
sys_wait(void)
{
8010704b: 55 push %ebp
8010704c: 89 e5 mov %esp,%ebp
8010704e: 83 ec 08 sub $0x8,%esp
return wait();
80107051: e8 95 e1 ff ff call 801051eb <wait>
}
80107056: c9 leave
80107057: c3 ret
80107058 <sys_kill>:
int
sys_kill(void)
{
80107058: 55 push %ebp
80107059: 89 e5 mov %esp,%ebp
8010705b: 83 ec 28 sub $0x28,%esp
int pid;
if(argint(0, &pid) < 0)
8010705e: 8d 45 f4 lea -0xc(%ebp),%eax
80107061: 89 44 24 04 mov %eax,0x4(%esp)
80107065: c7 04 24 00 00 00 00 movl $0x0,(%esp)
8010706c: e8 e5 f0 ff ff call 80106156 <argint>
80107071: 85 c0 test %eax,%eax
80107073: 79 07 jns 8010707c <sys_kill+0x24>
return -1;
80107075: b8 ff ff ff ff mov $0xffffffff,%eax
8010707a: eb 0b jmp 80107087 <sys_kill+0x2f>
return kill(pid);
8010707c: 8b 45 f4 mov -0xc(%ebp),%eax
8010707f: 89 04 24 mov %eax,(%esp)
80107082: e8 4c e7 ff ff call 801057d3 <kill>
}
80107087: c9 leave
80107088: c3 ret
80107089 <sys_getpid>:
int
sys_getpid(void)
{
80107089: 55 push %ebp
8010708a: 89 e5 mov %esp,%ebp
return proc->pid;
8010708c: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107092: 8b 40 10 mov 0x10(%eax),%eax
}
80107095: 5d pop %ebp
80107096: c3 ret
80107097 <sys_sbrk>:
int
sys_sbrk(void)
{
80107097: 55 push %ebp
80107098: 89 e5 mov %esp,%ebp
8010709a: 83 ec 28 sub $0x28,%esp
int addr;
int n;
if(argint(0, &n) < 0)
8010709d: 8d 45 f0 lea -0x10(%ebp),%eax
801070a0: 89 44 24 04 mov %eax,0x4(%esp)
801070a4: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801070ab: e8 a6 f0 ff ff call 80106156 <argint>
801070b0: 85 c0 test %eax,%eax
801070b2: 79 07 jns 801070bb <sys_sbrk+0x24>
return -1;
801070b4: b8 ff ff ff ff mov $0xffffffff,%eax
801070b9: eb 24 jmp 801070df <sys_sbrk+0x48>
addr = proc->sz;
801070bb: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801070c1: 8b 00 mov (%eax),%eax
801070c3: 89 45 f4 mov %eax,-0xc(%ebp)
if(growproc(n) < 0)
801070c6: 8b 45 f0 mov -0x10(%ebp),%eax
801070c9: 89 04 24 mov %eax,(%esp)
801070cc: e8 99 dd ff ff call 80104e6a <growproc>
801070d1: 85 c0 test %eax,%eax
801070d3: 79 07 jns 801070dc <sys_sbrk+0x45>
return -1;
801070d5: b8 ff ff ff ff mov $0xffffffff,%eax
801070da: eb 03 jmp 801070df <sys_sbrk+0x48>
return addr;
801070dc: 8b 45 f4 mov -0xc(%ebp),%eax
}
801070df: c9 leave
801070e0: c3 ret
801070e1 <sys_sleep>:
int
sys_sleep(void)
{
801070e1: 55 push %ebp
801070e2: 89 e5 mov %esp,%ebp
801070e4: 83 ec 28 sub $0x28,%esp
int n;
uint ticks0;
if(argint(0, &n) < 0)
801070e7: 8d 45 f0 lea -0x10(%ebp),%eax
801070ea: 89 44 24 04 mov %eax,0x4(%esp)
801070ee: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801070f5: e8 5c f0 ff ff call 80106156 <argint>
801070fa: 85 c0 test %eax,%eax
801070fc: 79 07 jns 80107105 <sys_sleep+0x24>
return -1;
801070fe: b8 ff ff ff ff mov $0xffffffff,%eax
80107103: eb 6c jmp 80107171 <sys_sleep+0x90>
acquire(&tickslock);
80107105: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
8010710c: e8 9a ea ff ff call 80105bab <acquire>
ticks0 = ticks;
80107111: a1 20 6e 11 80 mov 0x80116e20,%eax
80107116: 89 45 f4 mov %eax,-0xc(%ebp)
while(ticks - ticks0 < n){
80107119: eb 34 jmp 8010714f <sys_sleep+0x6e>
if(proc->killed){
8010711b: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107121: 8b 40 24 mov 0x24(%eax),%eax
80107124: 85 c0 test %eax,%eax
80107126: 74 13 je 8010713b <sys_sleep+0x5a>
release(&tickslock);
80107128: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
8010712f: e8 d9 ea ff ff call 80105c0d <release>
return -1;
80107134: b8 ff ff ff ff mov $0xffffffff,%eax
80107139: eb 36 jmp 80107171 <sys_sleep+0x90>
}
sleep(&ticks, &tickslock);
8010713b: c7 44 24 04 e0 65 11 movl $0x801165e0,0x4(%esp)
80107142: 80
80107143: c7 04 24 20 6e 11 80 movl $0x80116e20,(%esp)
8010714a: e8 70 e5 ff ff call 801056bf <sleep>
if(argint(0, &n) < 0)
return -1;
acquire(&tickslock);
ticks0 = ticks;
while(ticks - ticks0 < n){
8010714f: a1 20 6e 11 80 mov 0x80116e20,%eax
80107154: 89 c2 mov %eax,%edx
80107156: 2b 55 f4 sub -0xc(%ebp),%edx
80107159: 8b 45 f0 mov -0x10(%ebp),%eax
8010715c: 39 c2 cmp %eax,%edx
8010715e: 72 bb jb 8010711b <sys_sleep+0x3a>
release(&tickslock);
return -1;
}
sleep(&ticks, &tickslock);
}
release(&tickslock);
80107160: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
80107167: e8 a1 ea ff ff call 80105c0d <release>
return 0;
8010716c: b8 00 00 00 00 mov $0x0,%eax
}
80107171: c9 leave
80107172: c3 ret
80107173 <sys_uptime>:
// return how many clock tick interrupts have occurred
// since start.
int
sys_uptime(void)
{
80107173: 55 push %ebp
80107174: 89 e5 mov %esp,%ebp
80107176: 83 ec 28 sub $0x28,%esp
uint xticks;
acquire(&tickslock);
80107179: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
80107180: e8 26 ea ff ff call 80105bab <acquire>
xticks = ticks;
80107185: a1 20 6e 11 80 mov 0x80116e20,%eax
8010718a: 89 45 f4 mov %eax,-0xc(%ebp)
release(&tickslock);
8010718d: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
80107194: e8 74 ea ff ff call 80105c0d <release>
return xticks;
80107199: 8b 45 f4 mov -0xc(%ebp),%eax
}
8010719c: c9 leave
8010719d: c3 ret
8010719e <sys_wait2>:
int
sys_wait2(void)
{
8010719e: 55 push %ebp
8010719f: 89 e5 mov %esp,%ebp
801071a1: 83 ec 28 sub $0x28,%esp
int retime;
int rutime;
int stime;
if(argint(0,&retime) < 0)
801071a4: 8d 45 f4 lea -0xc(%ebp),%eax
801071a7: 89 44 24 04 mov %eax,0x4(%esp)
801071ab: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801071b2: e8 9f ef ff ff call 80106156 <argint>
801071b7: 85 c0 test %eax,%eax
801071b9: 79 07 jns 801071c2 <sys_wait2+0x24>
return -1;
801071bb: b8 ff ff ff ff mov $0xffffffff,%eax
801071c0: eb 59 jmp 8010721b <sys_wait2+0x7d>
if(argint(1,&rutime) < 0)
801071c2: 8d 45 f0 lea -0x10(%ebp),%eax
801071c5: 89 44 24 04 mov %eax,0x4(%esp)
801071c9: c7 04 24 01 00 00 00 movl $0x1,(%esp)
801071d0: e8 81 ef ff ff call 80106156 <argint>
801071d5: 85 c0 test %eax,%eax
801071d7: 79 07 jns 801071e0 <sys_wait2+0x42>
return -1;
801071d9: b8 ff ff ff ff mov $0xffffffff,%eax
801071de: eb 3b jmp 8010721b <sys_wait2+0x7d>
if(argint(2,&stime) < 0)
801071e0: 8d 45 ec lea -0x14(%ebp),%eax
801071e3: 89 44 24 04 mov %eax,0x4(%esp)
801071e7: c7 04 24 02 00 00 00 movl $0x2,(%esp)
801071ee: e8 63 ef ff ff call 80106156 <argint>
801071f3: 85 c0 test %eax,%eax
801071f5: 79 07 jns 801071fe <sys_wait2+0x60>
return -1;
801071f7: b8 ff ff ff ff mov $0xffffffff,%eax
801071fc: eb 1d jmp 8010721b <sys_wait2+0x7d>
return wait2((int*)retime, (int*)rutime, (int*)stime);
801071fe: 8b 45 ec mov -0x14(%ebp),%eax
80107201: 89 c1 mov %eax,%ecx
80107203: 8b 45 f0 mov -0x10(%ebp),%eax
80107206: 89 c2 mov %eax,%edx
80107208: 8b 45 f4 mov -0xc(%ebp),%eax
8010720b: 89 4c 24 08 mov %ecx,0x8(%esp)
8010720f: 89 54 24 04 mov %edx,0x4(%esp)
80107213: 89 04 24 mov %eax,(%esp)
80107216: e8 b0 e7 ff ff call 801059cb <wait2>
}
8010721b: c9 leave
8010721c: c3 ret
8010721d <sys_set_prio>:
int
sys_set_prio(void)
{
8010721d: 55 push %ebp
8010721e: 89 e5 mov %esp,%ebp
80107220: 83 ec 28 sub $0x28,%esp
int priority;
if (argint(0,&priority) <0)
80107223: 8d 45 f4 lea -0xc(%ebp),%eax
80107226: 89 44 24 04 mov %eax,0x4(%esp)
8010722a: c7 04 24 00 00 00 00 movl $0x0,(%esp)
80107231: e8 20 ef ff ff call 80106156 <argint>
80107236: 85 c0 test %eax,%eax
80107238: 79 07 jns 80107241 <sys_set_prio+0x24>
return -1;
8010723a: b8 ff ff ff ff mov $0xffffffff,%eax
8010723f: eb 0b jmp 8010724c <sys_set_prio+0x2f>
return set_prio(priority);
80107241: 8b 45 f4 mov -0xc(%ebp),%eax
80107244: 89 04 24 mov %eax,(%esp)
80107247: e8 ec e8 ff ff call 80105b38 <set_prio>
}
8010724c: c9 leave
8010724d: c3 ret
8010724e <sys_yield>:
int
sys_yield(void)
{
8010724e: 55 push %ebp
8010724f: 89 e5 mov %esp,%ebp
80107251: 83 ec 08 sub $0x8,%esp
yield();
80107254: e8 f5 e3 ff ff call 8010564e <yield>
return 0;
80107259: b8 00 00 00 00 mov $0x0,%eax
}
8010725e: c9 leave
8010725f: c3 ret
80107260 <outb>:
"memory", "cc");
}
static inline void
outb(ushort port, uchar data)
{
80107260: 55 push %ebp
80107261: 89 e5 mov %esp,%ebp
80107263: 83 ec 08 sub $0x8,%esp
80107266: 8b 55 08 mov 0x8(%ebp),%edx
80107269: 8b 45 0c mov 0xc(%ebp),%eax
8010726c: 66 89 55 fc mov %dx,-0x4(%ebp)
80107270: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
80107273: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
80107277: 0f b7 55 fc movzwl -0x4(%ebp),%edx
8010727b: ee out %al,(%dx)
}
8010727c: c9 leave
8010727d: c3 ret
8010727e <timerinit>:
#define TIMER_RATEGEN 0x04 // mode 2, rate generator
#define TIMER_16BIT 0x30 // r/w counter 16 bits, LSB first
void
timerinit(void)
{
8010727e: 55 push %ebp
8010727f: 89 e5 mov %esp,%ebp
80107281: 83 ec 18 sub $0x18,%esp
// Interrupt 100 times/sec.
outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT);
80107284: c7 44 24 04 34 00 00 movl $0x34,0x4(%esp)
8010728b: 00
8010728c: c7 04 24 43 00 00 00 movl $0x43,(%esp)
80107293: e8 c8 ff ff ff call 80107260 <outb>
outb(IO_TIMER1, TIMER_DIV(100) % 256);
80107298: c7 44 24 04 9c 00 00 movl $0x9c,0x4(%esp)
8010729f: 00
801072a0: c7 04 24 40 00 00 00 movl $0x40,(%esp)
801072a7: e8 b4 ff ff ff call 80107260 <outb>
outb(IO_TIMER1, TIMER_DIV(100) / 256);
801072ac: c7 44 24 04 2e 00 00 movl $0x2e,0x4(%esp)
801072b3: 00
801072b4: c7 04 24 40 00 00 00 movl $0x40,(%esp)
801072bb: e8 a0 ff ff ff call 80107260 <outb>
picenable(IRQ_TIMER);
801072c0: c7 04 24 00 00 00 00 movl $0x0,(%esp)
801072c7: e8 09 d4 ff ff call 801046d5 <picenable>
}
801072cc: c9 leave
801072cd: c3 ret
...
801072d0 <alltraps>:
# vectors.S sends all traps here.
.globl alltraps
alltraps:
# Build trap frame.
pushl %ds
801072d0: 1e push %ds
pushl %es
801072d1: 06 push %es
pushl %fs
801072d2: 0f a0 push %fs
pushl %gs
801072d4: 0f a8 push %gs
pushal
801072d6: 60 pusha
# Set up data and per-cpu segments.
movw $(SEG_KDATA<<3), %ax
801072d7: 66 b8 10 00 mov $0x10,%ax
movw %ax, %ds
801072db: 8e d8 mov %eax,%ds
movw %ax, %es
801072dd: 8e c0 mov %eax,%es
movw $(SEG_KCPU<<3), %ax
801072df: 66 b8 18 00 mov $0x18,%ax
movw %ax, %fs
801072e3: 8e e0 mov %eax,%fs
movw %ax, %gs
801072e5: 8e e8 mov %eax,%gs
# Call trap(tf), where tf=%esp
pushl %esp
801072e7: 54 push %esp
call trap
801072e8: e8 de 01 00 00 call 801074cb <trap>
addl $4, %esp
801072ed: 83 c4 04 add $0x4,%esp
801072f0 <trapret>:
# Return falls through to trapret...
.globl trapret
trapret:
popal
801072f0: 61 popa
popl %gs
801072f1: 0f a9 pop %gs
popl %fs
801072f3: 0f a1 pop %fs
popl %es
801072f5: 07 pop %es
popl %ds
801072f6: 1f pop %ds
addl $0x8, %esp # trapno and errcode
801072f7: 83 c4 08 add $0x8,%esp
iret
801072fa: cf iret
...
801072fc <lidt>:
struct gatedesc;
static inline void
lidt(struct gatedesc *p, int size)
{
801072fc: 55 push %ebp
801072fd: 89 e5 mov %esp,%ebp
801072ff: 83 ec 10 sub $0x10,%esp
volatile ushort pd[3];
pd[0] = size-1;
80107302: 8b 45 0c mov 0xc(%ebp),%eax
80107305: 83 e8 01 sub $0x1,%eax
80107308: 66 89 45 fa mov %ax,-0x6(%ebp)
pd[1] = (uint)p;
8010730c: 8b 45 08 mov 0x8(%ebp),%eax
8010730f: 66 89 45 fc mov %ax,-0x4(%ebp)
pd[2] = (uint)p >> 16;
80107313: 8b 45 08 mov 0x8(%ebp),%eax
80107316: c1 e8 10 shr $0x10,%eax
80107319: 66 89 45 fe mov %ax,-0x2(%ebp)
asm volatile("lidt (%0)" : : "r" (pd));
8010731d: 8d 45 fa lea -0x6(%ebp),%eax
80107320: 0f 01 18 lidtl (%eax)
}
80107323: c9 leave
80107324: c3 ret
80107325 <rcr2>:
return result;
}
static inline uint
rcr2(void)
{
80107325: 55 push %ebp
80107326: 89 e5 mov %esp,%ebp
80107328: 53 push %ebx
80107329: 83 ec 10 sub $0x10,%esp
uint val;
asm volatile("movl %%cr2,%0" : "=r" (val));
8010732c: 0f 20 d3 mov %cr2,%ebx
8010732f: 89 5d f8 mov %ebx,-0x8(%ebp)
return val;
80107332: 8b 45 f8 mov -0x8(%ebp),%eax
}
80107335: 83 c4 10 add $0x10,%esp
80107338: 5b pop %ebx
80107339: 5d pop %ebp
8010733a: c3 ret
8010733b <tvinit>:
struct spinlock tickslock;
uint ticks;
void
tvinit(void)
{
8010733b: 55 push %ebp
8010733c: 89 e5 mov %esp,%ebp
8010733e: 83 ec 28 sub $0x28,%esp
int i;
for(i = 0; i < 256; i++)
80107341: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80107348: e9 c3 00 00 00 jmp 80107410 <tvinit+0xd5>
SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0);
8010734d: 8b 45 f4 mov -0xc(%ebp),%eax
80107350: 8b 04 85 a4 c0 10 80 mov -0x7fef3f5c(,%eax,4),%eax
80107357: 89 c2 mov %eax,%edx
80107359: 8b 45 f4 mov -0xc(%ebp),%eax
8010735c: 66 89 14 c5 20 66 11 mov %dx,-0x7fee99e0(,%eax,8)
80107363: 80
80107364: 8b 45 f4 mov -0xc(%ebp),%eax
80107367: 66 c7 04 c5 22 66 11 movw $0x8,-0x7fee99de(,%eax,8)
8010736e: 80 08 00
80107371: 8b 45 f4 mov -0xc(%ebp),%eax
80107374: 0f b6 14 c5 24 66 11 movzbl -0x7fee99dc(,%eax,8),%edx
8010737b: 80
8010737c: 83 e2 e0 and $0xffffffe0,%edx
8010737f: 88 14 c5 24 66 11 80 mov %dl,-0x7fee99dc(,%eax,8)
80107386: 8b 45 f4 mov -0xc(%ebp),%eax
80107389: 0f b6 14 c5 24 66 11 movzbl -0x7fee99dc(,%eax,8),%edx
80107390: 80
80107391: 83 e2 1f and $0x1f,%edx
80107394: 88 14 c5 24 66 11 80 mov %dl,-0x7fee99dc(,%eax,8)
8010739b: 8b 45 f4 mov -0xc(%ebp),%eax
8010739e: 0f b6 14 c5 25 66 11 movzbl -0x7fee99db(,%eax,8),%edx
801073a5: 80
801073a6: 83 e2 f0 and $0xfffffff0,%edx
801073a9: 83 ca 0e or $0xe,%edx
801073ac: 88 14 c5 25 66 11 80 mov %dl,-0x7fee99db(,%eax,8)
801073b3: 8b 45 f4 mov -0xc(%ebp),%eax
801073b6: 0f b6 14 c5 25 66 11 movzbl -0x7fee99db(,%eax,8),%edx
801073bd: 80
801073be: 83 e2 ef and $0xffffffef,%edx
801073c1: 88 14 c5 25 66 11 80 mov %dl,-0x7fee99db(,%eax,8)
801073c8: 8b 45 f4 mov -0xc(%ebp),%eax
801073cb: 0f b6 14 c5 25 66 11 movzbl -0x7fee99db(,%eax,8),%edx
801073d2: 80
801073d3: 83 e2 9f and $0xffffff9f,%edx
801073d6: 88 14 c5 25 66 11 80 mov %dl,-0x7fee99db(,%eax,8)
801073dd: 8b 45 f4 mov -0xc(%ebp),%eax
801073e0: 0f b6 14 c5 25 66 11 movzbl -0x7fee99db(,%eax,8),%edx
801073e7: 80
801073e8: 83 ca 80 or $0xffffff80,%edx
801073eb: 88 14 c5 25 66 11 80 mov %dl,-0x7fee99db(,%eax,8)
801073f2: 8b 45 f4 mov -0xc(%ebp),%eax
801073f5: 8b 04 85 a4 c0 10 80 mov -0x7fef3f5c(,%eax,4),%eax
801073fc: c1 e8 10 shr $0x10,%eax
801073ff: 89 c2 mov %eax,%edx
80107401: 8b 45 f4 mov -0xc(%ebp),%eax
80107404: 66 89 14 c5 26 66 11 mov %dx,-0x7fee99da(,%eax,8)
8010740b: 80
void
tvinit(void)
{
int i;
for(i = 0; i < 256; i++)
8010740c: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80107410: 81 7d f4 ff 00 00 00 cmpl $0xff,-0xc(%ebp)
80107417: 0f 8e 30 ff ff ff jle 8010734d <tvinit+0x12>
SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0);
SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER);
8010741d: a1 a4 c1 10 80 mov 0x8010c1a4,%eax
80107422: 66 a3 20 68 11 80 mov %ax,0x80116820
80107428: 66 c7 05 22 68 11 80 movw $0x8,0x80116822
8010742f: 08 00
80107431: 0f b6 05 24 68 11 80 movzbl 0x80116824,%eax
80107438: 83 e0 e0 and $0xffffffe0,%eax
8010743b: a2 24 68 11 80 mov %al,0x80116824
80107440: 0f b6 05 24 68 11 80 movzbl 0x80116824,%eax
80107447: 83 e0 1f and $0x1f,%eax
8010744a: a2 24 68 11 80 mov %al,0x80116824
8010744f: 0f b6 05 25 68 11 80 movzbl 0x80116825,%eax
80107456: 83 c8 0f or $0xf,%eax
80107459: a2 25 68 11 80 mov %al,0x80116825
8010745e: 0f b6 05 25 68 11 80 movzbl 0x80116825,%eax
80107465: 83 e0 ef and $0xffffffef,%eax
80107468: a2 25 68 11 80 mov %al,0x80116825
8010746d: 0f b6 05 25 68 11 80 movzbl 0x80116825,%eax
80107474: 83 c8 60 or $0x60,%eax
80107477: a2 25 68 11 80 mov %al,0x80116825
8010747c: 0f b6 05 25 68 11 80 movzbl 0x80116825,%eax
80107483: 83 c8 80 or $0xffffff80,%eax
80107486: a2 25 68 11 80 mov %al,0x80116825
8010748b: a1 a4 c1 10 80 mov 0x8010c1a4,%eax
80107490: c1 e8 10 shr $0x10,%eax
80107493: 66 a3 26 68 11 80 mov %ax,0x80116826
initlock(&tickslock, "time");
80107499: c7 44 24 04 78 97 10 movl $0x80109778,0x4(%esp)
801074a0: 80
801074a1: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
801074a8: e8 dd e6 ff ff call 80105b8a <initlock>
}
801074ad: c9 leave
801074ae: c3 ret
801074af <idtinit>:
void
idtinit(void)
{
801074af: 55 push %ebp
801074b0: 89 e5 mov %esp,%ebp
801074b2: 83 ec 08 sub $0x8,%esp
lidt(idt, sizeof(idt));
801074b5: c7 44 24 04 00 08 00 movl $0x800,0x4(%esp)
801074bc: 00
801074bd: c7 04 24 20 66 11 80 movl $0x80116620,(%esp)
801074c4: e8 33 fe ff ff call 801072fc <lidt>
}
801074c9: c9 leave
801074ca: c3 ret
801074cb <trap>:
//PAGEBREAK: 41
void
trap(struct trapframe *tf)
{
801074cb: 55 push %ebp
801074cc: 89 e5 mov %esp,%ebp
801074ce: 57 push %edi
801074cf: 56 push %esi
801074d0: 53 push %ebx
801074d1: 83 ec 3c sub $0x3c,%esp
if(tf->trapno == T_SYSCALL){
801074d4: 8b 45 08 mov 0x8(%ebp),%eax
801074d7: 8b 40 30 mov 0x30(%eax),%eax
801074da: 83 f8 40 cmp $0x40,%eax
801074dd: 75 3e jne 8010751d <trap+0x52>
if(proc->killed)
801074df: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801074e5: 8b 40 24 mov 0x24(%eax),%eax
801074e8: 85 c0 test %eax,%eax
801074ea: 74 05 je 801074f1 <trap+0x26>
exit();
801074ec: e8 d5 db ff ff call 801050c6 <exit>
proc->tf = tf;
801074f1: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801074f7: 8b 55 08 mov 0x8(%ebp),%edx
801074fa: 89 50 18 mov %edx,0x18(%eax)
syscall();
801074fd: e8 1b ed ff ff call 8010621d <syscall>
if(proc->killed)
80107502: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107508: 8b 40 24 mov 0x24(%eax),%eax
8010750b: 85 c0 test %eax,%eax
8010750d: 0f 84 8e 02 00 00 je 801077a1 <trap+0x2d6>
exit();
80107513: e8 ae db ff ff call 801050c6 <exit>
return;
80107518: e9 84 02 00 00 jmp 801077a1 <trap+0x2d6>
}
switch(tf->trapno){
8010751d: 8b 45 08 mov 0x8(%ebp),%eax
80107520: 8b 40 30 mov 0x30(%eax),%eax
80107523: 83 e8 20 sub $0x20,%eax
80107526: 83 f8 1f cmp $0x1f,%eax
80107529: 0f 87 c1 00 00 00 ja 801075f0 <trap+0x125>
8010752f: 8b 04 85 20 98 10 80 mov -0x7fef67e0(,%eax,4),%eax
80107536: ff e0 jmp *%eax
case T_IRQ0 + IRQ_TIMER:
if(cpu->id == 0){
80107538: 65 a1 00 00 00 00 mov %gs:0x0,%eax
8010753e: 0f b6 00 movzbl (%eax),%eax
80107541: 84 c0 test %al,%al
80107543: 75 36 jne 8010757b <trap+0xb0>
acquire(&tickslock);
80107545: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
8010754c: e8 5a e6 ff ff call 80105bab <acquire>
ticks++;
80107551: a1 20 6e 11 80 mov 0x80116e20,%eax
80107556: 83 c0 01 add $0x1,%eax
80107559: a3 20 6e 11 80 mov %eax,0x80116e20
updateTimes(); // after every tick - updates the times
8010755e: e8 e7 e3 ff ff call 8010594a <updateTimes>
wakeup(&ticks);
80107563: c7 04 24 20 6e 11 80 movl $0x80116e20,(%esp)
8010756a: e8 39 e2 ff ff call 801057a8 <wakeup>
release(&tickslock);
8010756f: c7 04 24 e0 65 11 80 movl $0x801165e0,(%esp)
80107576: e8 92 e6 ff ff call 80105c0d <release>
}
lapiceoi();
8010757b: e8 6b c2 ff ff call 801037eb <lapiceoi>
break;
80107580: e9 41 01 00 00 jmp 801076c6 <trap+0x1fb>
case T_IRQ0 + IRQ_IDE:
ideintr();
80107585: e8 42 ba ff ff call 80102fcc <ideintr>
lapiceoi();
8010758a: e8 5c c2 ff ff call 801037eb <lapiceoi>
break;
8010758f: e9 32 01 00 00 jmp 801076c6 <trap+0x1fb>
case T_IRQ0 + IRQ_IDE+1:
// Bochs generates spurious IDE1 interrupts.
break;
case T_IRQ0 + IRQ_KBD:
kbdintr();
80107594: e8 06 c0 ff ff call 8010359f <kbdintr>
lapiceoi();
80107599: e8 4d c2 ff ff call 801037eb <lapiceoi>
break;
8010759e: e9 23 01 00 00 jmp 801076c6 <trap+0x1fb>
case T_IRQ0 + IRQ_COM1:
uartintr();
801075a3: e8 00 04 00 00 call 801079a8 <uartintr>
lapiceoi();
801075a8: e8 3e c2 ff ff call 801037eb <lapiceoi>
break;
801075ad: e9 14 01 00 00 jmp 801076c6 <trap+0x1fb>
case T_IRQ0 + 7:
case T_IRQ0 + IRQ_SPURIOUS:
cprintf("cpu%d: spurious interrupt at %x:%x\n",
cpu->id, tf->cs, tf->eip);
801075b2: 8b 45 08 mov 0x8(%ebp),%eax
uartintr();
lapiceoi();
break;
case T_IRQ0 + 7:
case T_IRQ0 + IRQ_SPURIOUS:
cprintf("cpu%d: spurious interrupt at %x:%x\n",
801075b5: 8b 48 38 mov 0x38(%eax),%ecx
cpu->id, tf->cs, tf->eip);
801075b8: 8b 45 08 mov 0x8(%ebp),%eax
801075bb: 0f b7 40 3c movzwl 0x3c(%eax),%eax
uartintr();
lapiceoi();
break;
case T_IRQ0 + 7:
case T_IRQ0 + IRQ_SPURIOUS:
cprintf("cpu%d: spurious interrupt at %x:%x\n",
801075bf: 0f b7 d0 movzwl %ax,%edx
cpu->id, tf->cs, tf->eip);
801075c2: 65 a1 00 00 00 00 mov %gs:0x0,%eax
801075c8: 0f b6 00 movzbl (%eax),%eax
uartintr();
lapiceoi();
break;
case T_IRQ0 + 7:
case T_IRQ0 + IRQ_SPURIOUS:
cprintf("cpu%d: spurious interrupt at %x:%x\n",
801075cb: 0f b6 c0 movzbl %al,%eax
801075ce: 89 4c 24 0c mov %ecx,0xc(%esp)
801075d2: 89 54 24 08 mov %edx,0x8(%esp)
801075d6: 89 44 24 04 mov %eax,0x4(%esp)
801075da: c7 04 24 80 97 10 80 movl $0x80109780,(%esp)
801075e1: e8 bb 8d ff ff call 801003a1 <cprintf>
cpu->id, tf->cs, tf->eip);
lapiceoi();
801075e6: e8 00 c2 ff ff call 801037eb <lapiceoi>
break;
801075eb: e9 d6 00 00 00 jmp 801076c6 <trap+0x1fb>
//PAGEBREAK: 13
default:
if(proc == 0 || (tf->cs&3) == 0){
801075f0: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801075f6: 85 c0 test %eax,%eax
801075f8: 74 11 je 8010760b <trap+0x140>
801075fa: 8b 45 08 mov 0x8(%ebp),%eax
801075fd: 0f b7 40 3c movzwl 0x3c(%eax),%eax
80107601: 0f b7 c0 movzwl %ax,%eax
80107604: 83 e0 03 and $0x3,%eax
80107607: 85 c0 test %eax,%eax
80107609: 75 46 jne 80107651 <trap+0x186>
// In kernel, it must be our mistake.
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
8010760b: e8 15 fd ff ff call 80107325 <rcr2>
tf->trapno, cpu->id, tf->eip, rcr2());
80107610: 8b 55 08 mov 0x8(%ebp),%edx
//PAGEBREAK: 13
default:
if(proc == 0 || (tf->cs&3) == 0){
// In kernel, it must be our mistake.
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
80107613: 8b 5a 38 mov 0x38(%edx),%ebx
tf->trapno, cpu->id, tf->eip, rcr2());
80107616: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
8010761d: 0f b6 12 movzbl (%edx),%edx
//PAGEBREAK: 13
default:
if(proc == 0 || (tf->cs&3) == 0){
// In kernel, it must be our mistake.
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
80107620: 0f b6 ca movzbl %dl,%ecx
tf->trapno, cpu->id, tf->eip, rcr2());
80107623: 8b 55 08 mov 0x8(%ebp),%edx
//PAGEBREAK: 13
default:
if(proc == 0 || (tf->cs&3) == 0){
// In kernel, it must be our mistake.
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
80107626: 8b 52 30 mov 0x30(%edx),%edx
80107629: 89 44 24 10 mov %eax,0x10(%esp)
8010762d: 89 5c 24 0c mov %ebx,0xc(%esp)
80107631: 89 4c 24 08 mov %ecx,0x8(%esp)
80107635: 89 54 24 04 mov %edx,0x4(%esp)
80107639: c7 04 24 a4 97 10 80 movl $0x801097a4,(%esp)
80107640: e8 5c 8d ff ff call 801003a1 <cprintf>
tf->trapno, cpu->id, tf->eip, rcr2());
panic("trap");
80107645: c7 04 24 d6 97 10 80 movl $0x801097d6,(%esp)
8010764c: e8 ec 8e ff ff call 8010053d <panic>
}
// In user space, assume process misbehaved.
cprintf("pid %d %s: trap %d err %d on cpu %d "
80107651: e8 cf fc ff ff call 80107325 <rcr2>
80107656: 89 c2 mov %eax,%edx
"eip 0x%x addr 0x%x--kill proc\n",
proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip,
80107658: 8b 45 08 mov 0x8(%ebp),%eax
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
tf->trapno, cpu->id, tf->eip, rcr2());
panic("trap");
}
// In user space, assume process misbehaved.
cprintf("pid %d %s: trap %d err %d on cpu %d "
8010765b: 8b 78 38 mov 0x38(%eax),%edi
"eip 0x%x addr 0x%x--kill proc\n",
proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip,
8010765e: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80107664: 0f b6 00 movzbl (%eax),%eax
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
tf->trapno, cpu->id, tf->eip, rcr2());
panic("trap");
}
// In user space, assume process misbehaved.
cprintf("pid %d %s: trap %d err %d on cpu %d "
80107667: 0f b6 f0 movzbl %al,%esi
"eip 0x%x addr 0x%x--kill proc\n",
proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip,
8010766a: 8b 45 08 mov 0x8(%ebp),%eax
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
tf->trapno, cpu->id, tf->eip, rcr2());
panic("trap");
}
// In user space, assume process misbehaved.
cprintf("pid %d %s: trap %d err %d on cpu %d "
8010766d: 8b 58 34 mov 0x34(%eax),%ebx
"eip 0x%x addr 0x%x--kill proc\n",
proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip,
80107670: 8b 45 08 mov 0x8(%ebp),%eax
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
tf->trapno, cpu->id, tf->eip, rcr2());
panic("trap");
}
// In user space, assume process misbehaved.
cprintf("pid %d %s: trap %d err %d on cpu %d "
80107673: 8b 48 30 mov 0x30(%eax),%ecx
"eip 0x%x addr 0x%x--kill proc\n",
proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip,
80107676: 65 a1 04 00 00 00 mov %gs:0x4,%eax
8010767c: 83 c0 6c add $0x6c,%eax
8010767f: 89 45 e4 mov %eax,-0x1c(%ebp)
80107682: 65 a1 04 00 00 00 mov %gs:0x4,%eax
cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n",
tf->trapno, cpu->id, tf->eip, rcr2());
panic("trap");
}
// In user space, assume process misbehaved.
cprintf("pid %d %s: trap %d err %d on cpu %d "
80107688: 8b 40 10 mov 0x10(%eax),%eax
8010768b: 89 54 24 1c mov %edx,0x1c(%esp)
8010768f: 89 7c 24 18 mov %edi,0x18(%esp)
80107693: 89 74 24 14 mov %esi,0x14(%esp)
80107697: 89 5c 24 10 mov %ebx,0x10(%esp)
8010769b: 89 4c 24 0c mov %ecx,0xc(%esp)
8010769f: 8b 55 e4 mov -0x1c(%ebp),%edx
801076a2: 89 54 24 08 mov %edx,0x8(%esp)
801076a6: 89 44 24 04 mov %eax,0x4(%esp)
801076aa: c7 04 24 dc 97 10 80 movl $0x801097dc,(%esp)
801076b1: e8 eb 8c ff ff call 801003a1 <cprintf>
"eip 0x%x addr 0x%x--kill proc\n",
proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip,
rcr2());
proc->killed = 1;
801076b6: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801076bc: c7 40 24 01 00 00 00 movl $0x1,0x24(%eax)
801076c3: eb 01 jmp 801076c6 <trap+0x1fb>
ideintr();
lapiceoi();
break;
case T_IRQ0 + IRQ_IDE+1:
// Bochs generates spurious IDE1 interrupts.
break;
801076c5: 90 nop
}
// Force process exit if it has been killed and is in user space.
// (If it is still executing in the kernel, let it keep running
// until it gets to the regular system call return.)
if(proc && proc->killed && (tf->cs&3) == DPL_USER)
801076c6: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801076cc: 85 c0 test %eax,%eax
801076ce: 74 24 je 801076f4 <trap+0x229>
801076d0: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801076d6: 8b 40 24 mov 0x24(%eax),%eax
801076d9: 85 c0 test %eax,%eax
801076db: 74 17 je 801076f4 <trap+0x229>
801076dd: 8b 45 08 mov 0x8(%ebp),%eax
801076e0: 0f b7 40 3c movzwl 0x3c(%eax),%eax
801076e4: 0f b7 c0 movzwl %ax,%eax
801076e7: 83 e0 03 and $0x3,%eax
801076ea: 83 f8 03 cmp $0x3,%eax
801076ed: 75 05 jne 801076f4 <trap+0x229>
exit();
801076ef: e8 d2 d9 ff ff call 801050c6 <exit>
// Force process to give up CPU on clock tick.
// If interrupts were on while locks held, would need to check nlock.
if(proc && proc->state == RUNNING && tf->trapno == T_IRQ0+IRQ_TIMER && ticks%QUANTA==0){
801076f4: 65 a1 04 00 00 00 mov %gs:0x4,%eax
801076fa: 85 c0 test %eax,%eax
801076fc: 74 73 je 80107771 <trap+0x2a6>
801076fe: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107704: 8b 40 0c mov 0xc(%eax),%eax
80107707: 83 f8 04 cmp $0x4,%eax
8010770a: 75 65 jne 80107771 <trap+0x2a6>
8010770c: 8b 45 08 mov 0x8(%ebp),%eax
8010770f: 8b 40 30 mov 0x30(%eax),%eax
80107712: 83 f8 20 cmp $0x20,%eax
80107715: 75 5a jne 80107771 <trap+0x2a6>
80107717: 8b 0d 20 6e 11 80 mov 0x80116e20,%ecx
8010771d: ba cd cc cc cc mov $0xcccccccd,%edx
80107722: 89 c8 mov %ecx,%eax
80107724: f7 e2 mul %edx
80107726: c1 ea 02 shr $0x2,%edx
80107729: 89 d0 mov %edx,%eax
8010772b: c1 e0 02 shl $0x2,%eax
8010772e: 01 d0 add %edx,%eax
80107730: 89 ca mov %ecx,%edx
80107732: 29 c2 sub %eax,%edx
80107734: 85 d2 test %edx,%edx
80107736: 75 39 jne 80107771 <trap+0x2a6>
#if SCHEDFLAG == DML
proc->priority=(proc->priority==MIN_PRIORITY)? MIN_PRIORITY : proc->priority-1;
80107738: 65 8b 15 04 00 00 00 mov %gs:0x4,%edx
8010773f: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107745: 8b 80 8c 00 00 00 mov 0x8c(%eax),%eax
8010774b: 83 f8 01 cmp $0x1,%eax
8010774e: 74 11 je 80107761 <trap+0x296>
80107750: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107756: 8b 80 8c 00 00 00 mov 0x8c(%eax),%eax
8010775c: 83 e8 01 sub $0x1,%eax
8010775f: eb 05 jmp 80107766 <trap+0x29b>
80107761: b8 01 00 00 00 mov $0x1,%eax
80107766: 89 82 8c 00 00 00 mov %eax,0x8c(%edx)
#endif
yield();
8010776c: e8 dd de ff ff call 8010564e <yield>
}
// Check if the process has been killed since we yielded
if(proc && proc->killed && (tf->cs&3) == DPL_USER)
80107771: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107777: 85 c0 test %eax,%eax
80107779: 74 27 je 801077a2 <trap+0x2d7>
8010777b: 65 a1 04 00 00 00 mov %gs:0x4,%eax
80107781: 8b 40 24 mov 0x24(%eax),%eax
80107784: 85 c0 test %eax,%eax
80107786: 74 1a je 801077a2 <trap+0x2d7>
80107788: 8b 45 08 mov 0x8(%ebp),%eax
8010778b: 0f b7 40 3c movzwl 0x3c(%eax),%eax
8010778f: 0f b7 c0 movzwl %ax,%eax
80107792: 83 e0 03 and $0x3,%eax
80107795: 83 f8 03 cmp $0x3,%eax
80107798: 75 08 jne 801077a2 <trap+0x2d7>
exit();
8010779a: e8 27 d9 ff ff call 801050c6 <exit>
8010779f: eb 01 jmp 801077a2 <trap+0x2d7>
exit();
proc->tf = tf;
syscall();
if(proc->killed)
exit();
return;
801077a1: 90 nop
}
// Check if the process has been killed since we yielded
if(proc && proc->killed && (tf->cs&3) == DPL_USER)
exit();
}
801077a2: 83 c4 3c add $0x3c,%esp
801077a5: 5b pop %ebx
801077a6: 5e pop %esi
801077a7: 5f pop %edi
801077a8: 5d pop %ebp
801077a9: c3 ret
...
801077ac <inb>:
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
801077ac: 55 push %ebp
801077ad: 89 e5 mov %esp,%ebp
801077af: 53 push %ebx
801077b0: 83 ec 14 sub $0x14,%esp
801077b3: 8b 45 08 mov 0x8(%ebp),%eax
801077b6: 66 89 45 e8 mov %ax,-0x18(%ebp)
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
801077ba: 0f b7 55 e8 movzwl -0x18(%ebp),%edx
801077be: 66 89 55 ea mov %dx,-0x16(%ebp)
801077c2: 0f b7 55 ea movzwl -0x16(%ebp),%edx
801077c6: ec in (%dx),%al
801077c7: 89 c3 mov %eax,%ebx
801077c9: 88 5d fb mov %bl,-0x5(%ebp)
return data;
801077cc: 0f b6 45 fb movzbl -0x5(%ebp),%eax
}
801077d0: 83 c4 14 add $0x14,%esp
801077d3: 5b pop %ebx
801077d4: 5d pop %ebp
801077d5: c3 ret
801077d6 <outb>:
"memory", "cc");
}
static inline void
outb(ushort port, uchar data)
{
801077d6: 55 push %ebp
801077d7: 89 e5 mov %esp,%ebp
801077d9: 83 ec 08 sub $0x8,%esp
801077dc: 8b 55 08 mov 0x8(%ebp),%edx
801077df: 8b 45 0c mov 0xc(%ebp),%eax
801077e2: 66 89 55 fc mov %dx,-0x4(%ebp)
801077e6: 88 45 f8 mov %al,-0x8(%ebp)
asm volatile("out %0,%1" : : "a" (data), "d" (port));
801077e9: 0f b6 45 f8 movzbl -0x8(%ebp),%eax
801077ed: 0f b7 55 fc movzwl -0x4(%ebp),%edx
801077f1: ee out %al,(%dx)
}
801077f2: c9 leave
801077f3: c3 ret
801077f4 <uartinit>:
static int uart; // is there a uart?
void
uartinit(void)
{
801077f4: 55 push %ebp
801077f5: 89 e5 mov %esp,%ebp
801077f7: 83 ec 28 sub $0x28,%esp
char *p;
// Turn off the FIFO
outb(COM1+2, 0);
801077fa: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80107801: 00
80107802: c7 04 24 fa 03 00 00 movl $0x3fa,(%esp)
80107809: e8 c8 ff ff ff call 801077d6 <outb>
// 9600 baud, 8 data bits, 1 stop bit, parity off.
outb(COM1+3, 0x80); // Unlock divisor
8010780e: c7 44 24 04 80 00 00 movl $0x80,0x4(%esp)
80107815: 00
80107816: c7 04 24 fb 03 00 00 movl $0x3fb,(%esp)
8010781d: e8 b4 ff ff ff call 801077d6 <outb>
outb(COM1+0, 115200/9600);
80107822: c7 44 24 04 0c 00 00 movl $0xc,0x4(%esp)
80107829: 00
8010782a: c7 04 24 f8 03 00 00 movl $0x3f8,(%esp)
80107831: e8 a0 ff ff ff call 801077d6 <outb>
outb(COM1+1, 0);
80107836: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
8010783d: 00
8010783e: c7 04 24 f9 03 00 00 movl $0x3f9,(%esp)
80107845: e8 8c ff ff ff call 801077d6 <outb>
outb(COM1+3, 0x03); // Lock divisor, 8 data bits.
8010784a: c7 44 24 04 03 00 00 movl $0x3,0x4(%esp)
80107851: 00
80107852: c7 04 24 fb 03 00 00 movl $0x3fb,(%esp)
80107859: e8 78 ff ff ff call 801077d6 <outb>
outb(COM1+4, 0);
8010785e: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80107865: 00
80107866: c7 04 24 fc 03 00 00 movl $0x3fc,(%esp)
8010786d: e8 64 ff ff ff call 801077d6 <outb>
outb(COM1+1, 0x01); // Enable receive interrupts.
80107872: c7 44 24 04 01 00 00 movl $0x1,0x4(%esp)
80107879: 00
8010787a: c7 04 24 f9 03 00 00 movl $0x3f9,(%esp)
80107881: e8 50 ff ff ff call 801077d6 <outb>
// If status is 0xFF, no serial port.
if(inb(COM1+5) == 0xFF)
80107886: c7 04 24 fd 03 00 00 movl $0x3fd,(%esp)
8010788d: e8 1a ff ff ff call 801077ac <inb>
80107892: 3c ff cmp $0xff,%al
80107894: 74 6c je 80107902 <uartinit+0x10e>
return;
uart = 1;
80107896: c7 05 6c c6 10 80 01 movl $0x1,0x8010c66c
8010789d: 00 00 00
// Acknowledge pre-existing interrupt conditions;
// enable interrupts.
inb(COM1+2);
801078a0: c7 04 24 fa 03 00 00 movl $0x3fa,(%esp)
801078a7: e8 00 ff ff ff call 801077ac <inb>
inb(COM1+0);
801078ac: c7 04 24 f8 03 00 00 movl $0x3f8,(%esp)
801078b3: e8 f4 fe ff ff call 801077ac <inb>
picenable(IRQ_COM1);
801078b8: c7 04 24 04 00 00 00 movl $0x4,(%esp)
801078bf: e8 11 ce ff ff call 801046d5 <picenable>
ioapicenable(IRQ_COM1, 0);
801078c4: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
801078cb: 00
801078cc: c7 04 24 04 00 00 00 movl $0x4,(%esp)
801078d3: e8 76 b9 ff ff call 8010324e <ioapicenable>
// Announce that we're here.
for(p="xv6...\n"; *p; p++)
801078d8: c7 45 f4 a0 98 10 80 movl $0x801098a0,-0xc(%ebp)
801078df: eb 15 jmp 801078f6 <uartinit+0x102>
uartputc(*p);
801078e1: 8b 45 f4 mov -0xc(%ebp),%eax
801078e4: 0f b6 00 movzbl (%eax),%eax
801078e7: 0f be c0 movsbl %al,%eax
801078ea: 89 04 24 mov %eax,(%esp)
801078ed: e8 13 00 00 00 call 80107905 <uartputc>
inb(COM1+0);
picenable(IRQ_COM1);
ioapicenable(IRQ_COM1, 0);
// Announce that we're here.
for(p="xv6...\n"; *p; p++)
801078f2: 83 45 f4 01 addl $0x1,-0xc(%ebp)
801078f6: 8b 45 f4 mov -0xc(%ebp),%eax
801078f9: 0f b6 00 movzbl (%eax),%eax
801078fc: 84 c0 test %al,%al
801078fe: 75 e1 jne 801078e1 <uartinit+0xed>
80107900: eb 01 jmp 80107903 <uartinit+0x10f>
outb(COM1+4, 0);
outb(COM1+1, 0x01); // Enable receive interrupts.
// If status is 0xFF, no serial port.
if(inb(COM1+5) == 0xFF)
return;
80107902: 90 nop
ioapicenable(IRQ_COM1, 0);
// Announce that we're here.
for(p="xv6...\n"; *p; p++)
uartputc(*p);
}
80107903: c9 leave
80107904: c3 ret
80107905 <uartputc>:
void
uartputc(int c)
{
80107905: 55 push %ebp
80107906: 89 e5 mov %esp,%ebp
80107908: 83 ec 28 sub $0x28,%esp
int i;
if(!uart)
8010790b: a1 6c c6 10 80 mov 0x8010c66c,%eax
80107910: 85 c0 test %eax,%eax
80107912: 74 4d je 80107961 <uartputc+0x5c>
return;
for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++)
80107914: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
8010791b: eb 10 jmp 8010792d <uartputc+0x28>
microdelay(10);
8010791d: c7 04 24 0a 00 00 00 movl $0xa,(%esp)
80107924: e8 e7 be ff ff call 80103810 <microdelay>
{
int i;
if(!uart)
return;
for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++)
80107929: 83 45 f4 01 addl $0x1,-0xc(%ebp)
8010792d: 83 7d f4 7f cmpl $0x7f,-0xc(%ebp)
80107931: 7f 16 jg 80107949 <uartputc+0x44>
80107933: c7 04 24 fd 03 00 00 movl $0x3fd,(%esp)
8010793a: e8 6d fe ff ff call 801077ac <inb>
8010793f: 0f b6 c0 movzbl %al,%eax
80107942: 83 e0 20 and $0x20,%eax
80107945: 85 c0 test %eax,%eax
80107947: 74 d4 je 8010791d <uartputc+0x18>
microdelay(10);
outb(COM1+0, c);
80107949: 8b 45 08 mov 0x8(%ebp),%eax
8010794c: 0f b6 c0 movzbl %al,%eax
8010794f: 89 44 24 04 mov %eax,0x4(%esp)
80107953: c7 04 24 f8 03 00 00 movl $0x3f8,(%esp)
8010795a: e8 77 fe ff ff call 801077d6 <outb>
8010795f: eb 01 jmp 80107962 <uartputc+0x5d>
uartputc(int c)
{
int i;
if(!uart)
return;
80107961: 90 nop
for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++)
microdelay(10);
outb(COM1+0, c);
}
80107962: c9 leave
80107963: c3 ret
80107964 <uartgetc>:
static int
uartgetc(void)
{
80107964: 55 push %ebp
80107965: 89 e5 mov %esp,%ebp
80107967: 83 ec 04 sub $0x4,%esp
if(!uart)
8010796a: a1 6c c6 10 80 mov 0x8010c66c,%eax
8010796f: 85 c0 test %eax,%eax
80107971: 75 07 jne 8010797a <uartgetc+0x16>
return -1;
80107973: b8 ff ff ff ff mov $0xffffffff,%eax
80107978: eb 2c jmp 801079a6 <uartgetc+0x42>
if(!(inb(COM1+5) & 0x01))
8010797a: c7 04 24 fd 03 00 00 movl $0x3fd,(%esp)
80107981: e8 26 fe ff ff call 801077ac <inb>
80107986: 0f b6 c0 movzbl %al,%eax
80107989: 83 e0 01 and $0x1,%eax
8010798c: 85 c0 test %eax,%eax
8010798e: 75 07 jne 80107997 <uartgetc+0x33>
return -1;
80107990: b8 ff ff ff ff mov $0xffffffff,%eax
80107995: eb 0f jmp 801079a6 <uartgetc+0x42>
return inb(COM1+0);
80107997: c7 04 24 f8 03 00 00 movl $0x3f8,(%esp)
8010799e: e8 09 fe ff ff call 801077ac <inb>
801079a3: 0f b6 c0 movzbl %al,%eax
}
801079a6: c9 leave
801079a7: c3 ret
801079a8 <uartintr>:
void
uartintr(void)
{
801079a8: 55 push %ebp
801079a9: 89 e5 mov %esp,%ebp
801079ab: 83 ec 18 sub $0x18,%esp
consoleintr(uartgetc);
801079ae: c7 04 24 64 79 10 80 movl $0x80107964,(%esp)
801079b5: e8 f4 91 ff ff call 80100bae <consoleintr>
}
801079ba: c9 leave
801079bb: c3 ret
801079bc <vector0>:
# generated by vectors.pl - do not edit
# handlers
.globl alltraps
.globl vector0
vector0:
pushl $0
801079bc: 6a 00 push $0x0
pushl $0
801079be: 6a 00 push $0x0
jmp alltraps
801079c0: e9 0b f9 ff ff jmp 801072d0 <alltraps>
801079c5 <vector1>:
.globl vector1
vector1:
pushl $0
801079c5: 6a 00 push $0x0
pushl $1
801079c7: 6a 01 push $0x1
jmp alltraps
801079c9: e9 02 f9 ff ff jmp 801072d0 <alltraps>
801079ce <vector2>:
.globl vector2
vector2:
pushl $0
801079ce: 6a 00 push $0x0
pushl $2
801079d0: 6a 02 push $0x2
jmp alltraps
801079d2: e9 f9 f8 ff ff jmp 801072d0 <alltraps>
801079d7 <vector3>:
.globl vector3
vector3:
pushl $0
801079d7: 6a 00 push $0x0
pushl $3
801079d9: 6a 03 push $0x3
jmp alltraps
801079db: e9 f0 f8 ff ff jmp 801072d0 <alltraps>
801079e0 <vector4>:
.globl vector4
vector4:
pushl $0
801079e0: 6a 00 push $0x0
pushl $4
801079e2: 6a 04 push $0x4
jmp alltraps
801079e4: e9 e7 f8 ff ff jmp 801072d0 <alltraps>
801079e9 <vector5>:
.globl vector5
vector5:
pushl $0
801079e9: 6a 00 push $0x0
pushl $5
801079eb: 6a 05 push $0x5
jmp alltraps
801079ed: e9 de f8 ff ff jmp 801072d0 <alltraps>
801079f2 <vector6>:
.globl vector6
vector6:
pushl $0
801079f2: 6a 00 push $0x0
pushl $6
801079f4: 6a 06 push $0x6
jmp alltraps
801079f6: e9 d5 f8 ff ff jmp 801072d0 <alltraps>
801079fb <vector7>:
.globl vector7
vector7:
pushl $0
801079fb: 6a 00 push $0x0
pushl $7
801079fd: 6a 07 push $0x7
jmp alltraps
801079ff: e9 cc f8 ff ff jmp 801072d0 <alltraps>
80107a04 <vector8>:
.globl vector8
vector8:
pushl $8
80107a04: 6a 08 push $0x8
jmp alltraps
80107a06: e9 c5 f8 ff ff jmp 801072d0 <alltraps>
80107a0b <vector9>:
.globl vector9
vector9:
pushl $0
80107a0b: 6a 00 push $0x0
pushl $9
80107a0d: 6a 09 push $0x9
jmp alltraps
80107a0f: e9 bc f8 ff ff jmp 801072d0 <alltraps>
80107a14 <vector10>:
.globl vector10
vector10:
pushl $10
80107a14: 6a 0a push $0xa
jmp alltraps
80107a16: e9 b5 f8 ff ff jmp 801072d0 <alltraps>
80107a1b <vector11>:
.globl vector11
vector11:
pushl $11
80107a1b: 6a 0b push $0xb
jmp alltraps
80107a1d: e9 ae f8 ff ff jmp 801072d0 <alltraps>
80107a22 <vector12>:
.globl vector12
vector12:
pushl $12
80107a22: 6a 0c push $0xc
jmp alltraps
80107a24: e9 a7 f8 ff ff jmp 801072d0 <alltraps>
80107a29 <vector13>:
.globl vector13
vector13:
pushl $13
80107a29: 6a 0d push $0xd
jmp alltraps
80107a2b: e9 a0 f8 ff ff jmp 801072d0 <alltraps>
80107a30 <vector14>:
.globl vector14
vector14:
pushl $14
80107a30: 6a 0e push $0xe
jmp alltraps
80107a32: e9 99 f8 ff ff jmp 801072d0 <alltraps>
80107a37 <vector15>:
.globl vector15
vector15:
pushl $0
80107a37: 6a 00 push $0x0
pushl $15
80107a39: 6a 0f push $0xf
jmp alltraps
80107a3b: e9 90 f8 ff ff jmp 801072d0 <alltraps>
80107a40 <vector16>:
.globl vector16
vector16:
pushl $0
80107a40: 6a 00 push $0x0
pushl $16
80107a42: 6a 10 push $0x10
jmp alltraps
80107a44: e9 87 f8 ff ff jmp 801072d0 <alltraps>
80107a49 <vector17>:
.globl vector17
vector17:
pushl $17
80107a49: 6a 11 push $0x11
jmp alltraps
80107a4b: e9 80 f8 ff ff jmp 801072d0 <alltraps>
80107a50 <vector18>:
.globl vector18
vector18:
pushl $0
80107a50: 6a 00 push $0x0
pushl $18
80107a52: 6a 12 push $0x12
jmp alltraps
80107a54: e9 77 f8 ff ff jmp 801072d0 <alltraps>
80107a59 <vector19>:
.globl vector19
vector19:
pushl $0
80107a59: 6a 00 push $0x0
pushl $19
80107a5b: 6a 13 push $0x13
jmp alltraps
80107a5d: e9 6e f8 ff ff jmp 801072d0 <alltraps>
80107a62 <vector20>:
.globl vector20
vector20:
pushl $0
80107a62: 6a 00 push $0x0
pushl $20
80107a64: 6a 14 push $0x14
jmp alltraps
80107a66: e9 65 f8 ff ff jmp 801072d0 <alltraps>
80107a6b <vector21>:
.globl vector21
vector21:
pushl $0
80107a6b: 6a 00 push $0x0
pushl $21
80107a6d: 6a 15 push $0x15
jmp alltraps
80107a6f: e9 5c f8 ff ff jmp 801072d0 <alltraps>
80107a74 <vector22>:
.globl vector22
vector22:
pushl $0
80107a74: 6a 00 push $0x0
pushl $22
80107a76: 6a 16 push $0x16
jmp alltraps
80107a78: e9 53 f8 ff ff jmp 801072d0 <alltraps>
80107a7d <vector23>:
.globl vector23
vector23:
pushl $0
80107a7d: 6a 00 push $0x0
pushl $23
80107a7f: 6a 17 push $0x17
jmp alltraps
80107a81: e9 4a f8 ff ff jmp 801072d0 <alltraps>
80107a86 <vector24>:
.globl vector24
vector24:
pushl $0
80107a86: 6a 00 push $0x0
pushl $24
80107a88: 6a 18 push $0x18
jmp alltraps
80107a8a: e9 41 f8 ff ff jmp 801072d0 <alltraps>
80107a8f <vector25>:
.globl vector25
vector25:
pushl $0
80107a8f: 6a 00 push $0x0
pushl $25
80107a91: 6a 19 push $0x19
jmp alltraps
80107a93: e9 38 f8 ff ff jmp 801072d0 <alltraps>
80107a98 <vector26>:
.globl vector26
vector26:
pushl $0
80107a98: 6a 00 push $0x0
pushl $26
80107a9a: 6a 1a push $0x1a
jmp alltraps
80107a9c: e9 2f f8 ff ff jmp 801072d0 <alltraps>
80107aa1 <vector27>:
.globl vector27
vector27:
pushl $0
80107aa1: 6a 00 push $0x0
pushl $27
80107aa3: 6a 1b push $0x1b
jmp alltraps
80107aa5: e9 26 f8 ff ff jmp 801072d0 <alltraps>
80107aaa <vector28>:
.globl vector28
vector28:
pushl $0
80107aaa: 6a 00 push $0x0
pushl $28
80107aac: 6a 1c push $0x1c
jmp alltraps
80107aae: e9 1d f8 ff ff jmp 801072d0 <alltraps>
80107ab3 <vector29>:
.globl vector29
vector29:
pushl $0
80107ab3: 6a 00 push $0x0
pushl $29
80107ab5: 6a 1d push $0x1d
jmp alltraps
80107ab7: e9 14 f8 ff ff jmp 801072d0 <alltraps>
80107abc <vector30>:
.globl vector30
vector30:
pushl $0
80107abc: 6a 00 push $0x0
pushl $30
80107abe: 6a 1e push $0x1e
jmp alltraps
80107ac0: e9 0b f8 ff ff jmp 801072d0 <alltraps>
80107ac5 <vector31>:
.globl vector31
vector31:
pushl $0
80107ac5: 6a 00 push $0x0
pushl $31
80107ac7: 6a 1f push $0x1f
jmp alltraps
80107ac9: e9 02 f8 ff ff jmp 801072d0 <alltraps>
80107ace <vector32>:
.globl vector32
vector32:
pushl $0
80107ace: 6a 00 push $0x0
pushl $32
80107ad0: 6a 20 push $0x20
jmp alltraps
80107ad2: e9 f9 f7 ff ff jmp 801072d0 <alltraps>
80107ad7 <vector33>:
.globl vector33
vector33:
pushl $0
80107ad7: 6a 00 push $0x0
pushl $33
80107ad9: 6a 21 push $0x21
jmp alltraps
80107adb: e9 f0 f7 ff ff jmp 801072d0 <alltraps>
80107ae0 <vector34>:
.globl vector34
vector34:
pushl $0
80107ae0: 6a 00 push $0x0
pushl $34
80107ae2: 6a 22 push $0x22
jmp alltraps
80107ae4: e9 e7 f7 ff ff jmp 801072d0 <alltraps>
80107ae9 <vector35>:
.globl vector35
vector35:
pushl $0
80107ae9: 6a 00 push $0x0
pushl $35
80107aeb: 6a 23 push $0x23
jmp alltraps
80107aed: e9 de f7 ff ff jmp 801072d0 <alltraps>
80107af2 <vector36>:
.globl vector36
vector36:
pushl $0
80107af2: 6a 00 push $0x0
pushl $36
80107af4: 6a 24 push $0x24
jmp alltraps
80107af6: e9 d5 f7 ff ff jmp 801072d0 <alltraps>
80107afb <vector37>:
.globl vector37
vector37:
pushl $0
80107afb: 6a 00 push $0x0
pushl $37
80107afd: 6a 25 push $0x25
jmp alltraps
80107aff: e9 cc f7 ff ff jmp 801072d0 <alltraps>
80107b04 <vector38>:
.globl vector38
vector38:
pushl $0
80107b04: 6a 00 push $0x0
pushl $38
80107b06: 6a 26 push $0x26
jmp alltraps
80107b08: e9 c3 f7 ff ff jmp 801072d0 <alltraps>
80107b0d <vector39>:
.globl vector39
vector39:
pushl $0
80107b0d: 6a 00 push $0x0
pushl $39
80107b0f: 6a 27 push $0x27
jmp alltraps
80107b11: e9 ba f7 ff ff jmp 801072d0 <alltraps>
80107b16 <vector40>:
.globl vector40
vector40:
pushl $0
80107b16: 6a 00 push $0x0
pushl $40
80107b18: 6a 28 push $0x28
jmp alltraps
80107b1a: e9 b1 f7 ff ff jmp 801072d0 <alltraps>
80107b1f <vector41>:
.globl vector41
vector41:
pushl $0
80107b1f: 6a 00 push $0x0
pushl $41
80107b21: 6a 29 push $0x29
jmp alltraps
80107b23: e9 a8 f7 ff ff jmp 801072d0 <alltraps>
80107b28 <vector42>:
.globl vector42
vector42:
pushl $0
80107b28: 6a 00 push $0x0
pushl $42
80107b2a: 6a 2a push $0x2a
jmp alltraps
80107b2c: e9 9f f7 ff ff jmp 801072d0 <alltraps>
80107b31 <vector43>:
.globl vector43
vector43:
pushl $0
80107b31: 6a 00 push $0x0
pushl $43
80107b33: 6a 2b push $0x2b
jmp alltraps
80107b35: e9 96 f7 ff ff jmp 801072d0 <alltraps>
80107b3a <vector44>:
.globl vector44
vector44:
pushl $0
80107b3a: 6a 00 push $0x0
pushl $44
80107b3c: 6a 2c push $0x2c
jmp alltraps
80107b3e: e9 8d f7 ff ff jmp 801072d0 <alltraps>
80107b43 <vector45>:
.globl vector45
vector45:
pushl $0
80107b43: 6a 00 push $0x0
pushl $45
80107b45: 6a 2d push $0x2d
jmp alltraps
80107b47: e9 84 f7 ff ff jmp 801072d0 <alltraps>
80107b4c <vector46>:
.globl vector46
vector46:
pushl $0
80107b4c: 6a 00 push $0x0
pushl $46
80107b4e: 6a 2e push $0x2e
jmp alltraps
80107b50: e9 7b f7 ff ff jmp 801072d0 <alltraps>
80107b55 <vector47>:
.globl vector47
vector47:
pushl $0
80107b55: 6a 00 push $0x0
pushl $47
80107b57: 6a 2f push $0x2f
jmp alltraps
80107b59: e9 72 f7 ff ff jmp 801072d0 <alltraps>
80107b5e <vector48>:
.globl vector48
vector48:
pushl $0
80107b5e: 6a 00 push $0x0
pushl $48
80107b60: 6a 30 push $0x30
jmp alltraps
80107b62: e9 69 f7 ff ff jmp 801072d0 <alltraps>
80107b67 <vector49>:
.globl vector49
vector49:
pushl $0
80107b67: 6a 00 push $0x0
pushl $49
80107b69: 6a 31 push $0x31
jmp alltraps
80107b6b: e9 60 f7 ff ff jmp 801072d0 <alltraps>
80107b70 <vector50>:
.globl vector50
vector50:
pushl $0
80107b70: 6a 00 push $0x0
pushl $50
80107b72: 6a 32 push $0x32
jmp alltraps
80107b74: e9 57 f7 ff ff jmp 801072d0 <alltraps>
80107b79 <vector51>:
.globl vector51
vector51:
pushl $0
80107b79: 6a 00 push $0x0
pushl $51
80107b7b: 6a 33 push $0x33
jmp alltraps
80107b7d: e9 4e f7 ff ff jmp 801072d0 <alltraps>
80107b82 <vector52>:
.globl vector52
vector52:
pushl $0
80107b82: 6a 00 push $0x0
pushl $52
80107b84: 6a 34 push $0x34
jmp alltraps
80107b86: e9 45 f7 ff ff jmp 801072d0 <alltraps>
80107b8b <vector53>:
.globl vector53
vector53:
pushl $0
80107b8b: 6a 00 push $0x0
pushl $53
80107b8d: 6a 35 push $0x35
jmp alltraps
80107b8f: e9 3c f7 ff ff jmp 801072d0 <alltraps>
80107b94 <vector54>:
.globl vector54
vector54:
pushl $0
80107b94: 6a 00 push $0x0
pushl $54
80107b96: 6a 36 push $0x36
jmp alltraps
80107b98: e9 33 f7 ff ff jmp 801072d0 <alltraps>
80107b9d <vector55>:
.globl vector55
vector55:
pushl $0
80107b9d: 6a 00 push $0x0
pushl $55
80107b9f: 6a 37 push $0x37
jmp alltraps
80107ba1: e9 2a f7 ff ff jmp 801072d0 <alltraps>
80107ba6 <vector56>:
.globl vector56
vector56:
pushl $0
80107ba6: 6a 00 push $0x0
pushl $56
80107ba8: 6a 38 push $0x38
jmp alltraps
80107baa: e9 21 f7 ff ff jmp 801072d0 <alltraps>
80107baf <vector57>:
.globl vector57
vector57:
pushl $0
80107baf: 6a 00 push $0x0
pushl $57
80107bb1: 6a 39 push $0x39
jmp alltraps
80107bb3: e9 18 f7 ff ff jmp 801072d0 <alltraps>
80107bb8 <vector58>:
.globl vector58
vector58:
pushl $0
80107bb8: 6a 00 push $0x0
pushl $58
80107bba: 6a 3a push $0x3a
jmp alltraps
80107bbc: e9 0f f7 ff ff jmp 801072d0 <alltraps>
80107bc1 <vector59>:
.globl vector59
vector59:
pushl $0
80107bc1: 6a 00 push $0x0
pushl $59
80107bc3: 6a 3b push $0x3b
jmp alltraps
80107bc5: e9 06 f7 ff ff jmp 801072d0 <alltraps>
80107bca <vector60>:
.globl vector60
vector60:
pushl $0
80107bca: 6a 00 push $0x0
pushl $60
80107bcc: 6a 3c push $0x3c
jmp alltraps
80107bce: e9 fd f6 ff ff jmp 801072d0 <alltraps>
80107bd3 <vector61>:
.globl vector61
vector61:
pushl $0
80107bd3: 6a 00 push $0x0
pushl $61
80107bd5: 6a 3d push $0x3d
jmp alltraps
80107bd7: e9 f4 f6 ff ff jmp 801072d0 <alltraps>
80107bdc <vector62>:
.globl vector62
vector62:
pushl $0
80107bdc: 6a 00 push $0x0
pushl $62
80107bde: 6a 3e push $0x3e
jmp alltraps
80107be0: e9 eb f6 ff ff jmp 801072d0 <alltraps>
80107be5 <vector63>:
.globl vector63
vector63:
pushl $0
80107be5: 6a 00 push $0x0
pushl $63
80107be7: 6a 3f push $0x3f
jmp alltraps
80107be9: e9 e2 f6 ff ff jmp 801072d0 <alltraps>
80107bee <vector64>:
.globl vector64
vector64:
pushl $0
80107bee: 6a 00 push $0x0
pushl $64
80107bf0: 6a 40 push $0x40
jmp alltraps
80107bf2: e9 d9 f6 ff ff jmp 801072d0 <alltraps>
80107bf7 <vector65>:
.globl vector65
vector65:
pushl $0
80107bf7: 6a 00 push $0x0
pushl $65
80107bf9: 6a 41 push $0x41
jmp alltraps
80107bfb: e9 d0 f6 ff ff jmp 801072d0 <alltraps>
80107c00 <vector66>:
.globl vector66
vector66:
pushl $0
80107c00: 6a 00 push $0x0
pushl $66
80107c02: 6a 42 push $0x42
jmp alltraps
80107c04: e9 c7 f6 ff ff jmp 801072d0 <alltraps>
80107c09 <vector67>:
.globl vector67
vector67:
pushl $0
80107c09: 6a 00 push $0x0
pushl $67
80107c0b: 6a 43 push $0x43
jmp alltraps
80107c0d: e9 be f6 ff ff jmp 801072d0 <alltraps>
80107c12 <vector68>:
.globl vector68
vector68:
pushl $0
80107c12: 6a 00 push $0x0
pushl $68
80107c14: 6a 44 push $0x44
jmp alltraps
80107c16: e9 b5 f6 ff ff jmp 801072d0 <alltraps>
80107c1b <vector69>:
.globl vector69
vector69:
pushl $0
80107c1b: 6a 00 push $0x0
pushl $69
80107c1d: 6a 45 push $0x45
jmp alltraps
80107c1f: e9 ac f6 ff ff jmp 801072d0 <alltraps>
80107c24 <vector70>:
.globl vector70
vector70:
pushl $0
80107c24: 6a 00 push $0x0
pushl $70
80107c26: 6a 46 push $0x46
jmp alltraps
80107c28: e9 a3 f6 ff ff jmp 801072d0 <alltraps>
80107c2d <vector71>:
.globl vector71
vector71:
pushl $0
80107c2d: 6a 00 push $0x0
pushl $71
80107c2f: 6a 47 push $0x47
jmp alltraps
80107c31: e9 9a f6 ff ff jmp 801072d0 <alltraps>
80107c36 <vector72>:
.globl vector72
vector72:
pushl $0
80107c36: 6a 00 push $0x0
pushl $72
80107c38: 6a 48 push $0x48
jmp alltraps
80107c3a: e9 91 f6 ff ff jmp 801072d0 <alltraps>
80107c3f <vector73>:
.globl vector73
vector73:
pushl $0
80107c3f: 6a 00 push $0x0
pushl $73
80107c41: 6a 49 push $0x49
jmp alltraps
80107c43: e9 88 f6 ff ff jmp 801072d0 <alltraps>
80107c48 <vector74>:
.globl vector74
vector74:
pushl $0
80107c48: 6a 00 push $0x0
pushl $74
80107c4a: 6a 4a push $0x4a
jmp alltraps
80107c4c: e9 7f f6 ff ff jmp 801072d0 <alltraps>
80107c51 <vector75>:
.globl vector75
vector75:
pushl $0
80107c51: 6a 00 push $0x0
pushl $75
80107c53: 6a 4b push $0x4b
jmp alltraps
80107c55: e9 76 f6 ff ff jmp 801072d0 <alltraps>
80107c5a <vector76>:
.globl vector76
vector76:
pushl $0
80107c5a: 6a 00 push $0x0
pushl $76
80107c5c: 6a 4c push $0x4c
jmp alltraps
80107c5e: e9 6d f6 ff ff jmp 801072d0 <alltraps>
80107c63 <vector77>:
.globl vector77
vector77:
pushl $0
80107c63: 6a 00 push $0x0
pushl $77
80107c65: 6a 4d push $0x4d
jmp alltraps
80107c67: e9 64 f6 ff ff jmp 801072d0 <alltraps>
80107c6c <vector78>:
.globl vector78
vector78:
pushl $0
80107c6c: 6a 00 push $0x0
pushl $78
80107c6e: 6a 4e push $0x4e
jmp alltraps
80107c70: e9 5b f6 ff ff jmp 801072d0 <alltraps>
80107c75 <vector79>:
.globl vector79
vector79:
pushl $0
80107c75: 6a 00 push $0x0
pushl $79
80107c77: 6a 4f push $0x4f
jmp alltraps
80107c79: e9 52 f6 ff ff jmp 801072d0 <alltraps>
80107c7e <vector80>:
.globl vector80
vector80:
pushl $0
80107c7e: 6a 00 push $0x0
pushl $80
80107c80: 6a 50 push $0x50
jmp alltraps
80107c82: e9 49 f6 ff ff jmp 801072d0 <alltraps>
80107c87 <vector81>:
.globl vector81
vector81:
pushl $0
80107c87: 6a 00 push $0x0
pushl $81
80107c89: 6a 51 push $0x51
jmp alltraps
80107c8b: e9 40 f6 ff ff jmp 801072d0 <alltraps>
80107c90 <vector82>:
.globl vector82
vector82:
pushl $0
80107c90: 6a 00 push $0x0
pushl $82
80107c92: 6a 52 push $0x52
jmp alltraps
80107c94: e9 37 f6 ff ff jmp 801072d0 <alltraps>
80107c99 <vector83>:
.globl vector83
vector83:
pushl $0
80107c99: 6a 00 push $0x0
pushl $83
80107c9b: 6a 53 push $0x53
jmp alltraps
80107c9d: e9 2e f6 ff ff jmp 801072d0 <alltraps>
80107ca2 <vector84>:
.globl vector84
vector84:
pushl $0
80107ca2: 6a 00 push $0x0
pushl $84
80107ca4: 6a 54 push $0x54
jmp alltraps
80107ca6: e9 25 f6 ff ff jmp 801072d0 <alltraps>
80107cab <vector85>:
.globl vector85
vector85:
pushl $0
80107cab: 6a 00 push $0x0
pushl $85
80107cad: 6a 55 push $0x55
jmp alltraps
80107caf: e9 1c f6 ff ff jmp 801072d0 <alltraps>
80107cb4 <vector86>:
.globl vector86
vector86:
pushl $0
80107cb4: 6a 00 push $0x0
pushl $86
80107cb6: 6a 56 push $0x56
jmp alltraps
80107cb8: e9 13 f6 ff ff jmp 801072d0 <alltraps>
80107cbd <vector87>:
.globl vector87
vector87:
pushl $0
80107cbd: 6a 00 push $0x0
pushl $87
80107cbf: 6a 57 push $0x57
jmp alltraps
80107cc1: e9 0a f6 ff ff jmp 801072d0 <alltraps>
80107cc6 <vector88>:
.globl vector88
vector88:
pushl $0
80107cc6: 6a 00 push $0x0
pushl $88
80107cc8: 6a 58 push $0x58
jmp alltraps
80107cca: e9 01 f6 ff ff jmp 801072d0 <alltraps>
80107ccf <vector89>:
.globl vector89
vector89:
pushl $0
80107ccf: 6a 00 push $0x0
pushl $89
80107cd1: 6a 59 push $0x59
jmp alltraps
80107cd3: e9 f8 f5 ff ff jmp 801072d0 <alltraps>
80107cd8 <vector90>:
.globl vector90
vector90:
pushl $0
80107cd8: 6a 00 push $0x0
pushl $90
80107cda: 6a 5a push $0x5a
jmp alltraps
80107cdc: e9 ef f5 ff ff jmp 801072d0 <alltraps>
80107ce1 <vector91>:
.globl vector91
vector91:
pushl $0
80107ce1: 6a 00 push $0x0
pushl $91
80107ce3: 6a 5b push $0x5b
jmp alltraps
80107ce5: e9 e6 f5 ff ff jmp 801072d0 <alltraps>
80107cea <vector92>:
.globl vector92
vector92:
pushl $0
80107cea: 6a 00 push $0x0
pushl $92
80107cec: 6a 5c push $0x5c
jmp alltraps
80107cee: e9 dd f5 ff ff jmp 801072d0 <alltraps>
80107cf3 <vector93>:
.globl vector93
vector93:
pushl $0
80107cf3: 6a 00 push $0x0
pushl $93
80107cf5: 6a 5d push $0x5d
jmp alltraps
80107cf7: e9 d4 f5 ff ff jmp 801072d0 <alltraps>
80107cfc <vector94>:
.globl vector94
vector94:
pushl $0
80107cfc: 6a 00 push $0x0
pushl $94
80107cfe: 6a 5e push $0x5e
jmp alltraps
80107d00: e9 cb f5 ff ff jmp 801072d0 <alltraps>
80107d05 <vector95>:
.globl vector95
vector95:
pushl $0
80107d05: 6a 00 push $0x0
pushl $95
80107d07: 6a 5f push $0x5f
jmp alltraps
80107d09: e9 c2 f5 ff ff jmp 801072d0 <alltraps>
80107d0e <vector96>:
.globl vector96
vector96:
pushl $0
80107d0e: 6a 00 push $0x0
pushl $96
80107d10: 6a 60 push $0x60
jmp alltraps
80107d12: e9 b9 f5 ff ff jmp 801072d0 <alltraps>
80107d17 <vector97>:
.globl vector97
vector97:
pushl $0
80107d17: 6a 00 push $0x0
pushl $97
80107d19: 6a 61 push $0x61
jmp alltraps
80107d1b: e9 b0 f5 ff ff jmp 801072d0 <alltraps>
80107d20 <vector98>:
.globl vector98
vector98:
pushl $0
80107d20: 6a 00 push $0x0
pushl $98
80107d22: 6a 62 push $0x62
jmp alltraps
80107d24: e9 a7 f5 ff ff jmp 801072d0 <alltraps>
80107d29 <vector99>:
.globl vector99
vector99:
pushl $0
80107d29: 6a 00 push $0x0
pushl $99
80107d2b: 6a 63 push $0x63
jmp alltraps
80107d2d: e9 9e f5 ff ff jmp 801072d0 <alltraps>
80107d32 <vector100>:
.globl vector100
vector100:
pushl $0
80107d32: 6a 00 push $0x0
pushl $100
80107d34: 6a 64 push $0x64
jmp alltraps
80107d36: e9 95 f5 ff ff jmp 801072d0 <alltraps>
80107d3b <vector101>:
.globl vector101
vector101:
pushl $0
80107d3b: 6a 00 push $0x0
pushl $101
80107d3d: 6a 65 push $0x65
jmp alltraps
80107d3f: e9 8c f5 ff ff jmp 801072d0 <alltraps>
80107d44 <vector102>:
.globl vector102
vector102:
pushl $0
80107d44: 6a 00 push $0x0
pushl $102
80107d46: 6a 66 push $0x66
jmp alltraps
80107d48: e9 83 f5 ff ff jmp 801072d0 <alltraps>
80107d4d <vector103>:
.globl vector103
vector103:
pushl $0
80107d4d: 6a 00 push $0x0
pushl $103
80107d4f: 6a 67 push $0x67
jmp alltraps
80107d51: e9 7a f5 ff ff jmp 801072d0 <alltraps>
80107d56 <vector104>:
.globl vector104
vector104:
pushl $0
80107d56: 6a 00 push $0x0
pushl $104
80107d58: 6a 68 push $0x68
jmp alltraps
80107d5a: e9 71 f5 ff ff jmp 801072d0 <alltraps>
80107d5f <vector105>:
.globl vector105
vector105:
pushl $0
80107d5f: 6a 00 push $0x0
pushl $105
80107d61: 6a 69 push $0x69
jmp alltraps
80107d63: e9 68 f5 ff ff jmp 801072d0 <alltraps>
80107d68 <vector106>:
.globl vector106
vector106:
pushl $0
80107d68: 6a 00 push $0x0
pushl $106
80107d6a: 6a 6a push $0x6a
jmp alltraps
80107d6c: e9 5f f5 ff ff jmp 801072d0 <alltraps>
80107d71 <vector107>:
.globl vector107
vector107:
pushl $0
80107d71: 6a 00 push $0x0
pushl $107
80107d73: 6a 6b push $0x6b
jmp alltraps
80107d75: e9 56 f5 ff ff jmp 801072d0 <alltraps>
80107d7a <vector108>:
.globl vector108
vector108:
pushl $0
80107d7a: 6a 00 push $0x0
pushl $108
80107d7c: 6a 6c push $0x6c
jmp alltraps
80107d7e: e9 4d f5 ff ff jmp 801072d0 <alltraps>
80107d83 <vector109>:
.globl vector109
vector109:
pushl $0
80107d83: 6a 00 push $0x0
pushl $109
80107d85: 6a 6d push $0x6d
jmp alltraps
80107d87: e9 44 f5 ff ff jmp 801072d0 <alltraps>
80107d8c <vector110>:
.globl vector110
vector110:
pushl $0
80107d8c: 6a 00 push $0x0
pushl $110
80107d8e: 6a 6e push $0x6e
jmp alltraps
80107d90: e9 3b f5 ff ff jmp 801072d0 <alltraps>
80107d95 <vector111>:
.globl vector111
vector111:
pushl $0
80107d95: 6a 00 push $0x0
pushl $111
80107d97: 6a 6f push $0x6f
jmp alltraps
80107d99: e9 32 f5 ff ff jmp 801072d0 <alltraps>
80107d9e <vector112>:
.globl vector112
vector112:
pushl $0
80107d9e: 6a 00 push $0x0
pushl $112
80107da0: 6a 70 push $0x70
jmp alltraps
80107da2: e9 29 f5 ff ff jmp 801072d0 <alltraps>
80107da7 <vector113>:
.globl vector113
vector113:
pushl $0
80107da7: 6a 00 push $0x0
pushl $113
80107da9: 6a 71 push $0x71
jmp alltraps
80107dab: e9 20 f5 ff ff jmp 801072d0 <alltraps>
80107db0 <vector114>:
.globl vector114
vector114:
pushl $0
80107db0: 6a 00 push $0x0
pushl $114
80107db2: 6a 72 push $0x72
jmp alltraps
80107db4: e9 17 f5 ff ff jmp 801072d0 <alltraps>
80107db9 <vector115>:
.globl vector115
vector115:
pushl $0
80107db9: 6a 00 push $0x0
pushl $115
80107dbb: 6a 73 push $0x73
jmp alltraps
80107dbd: e9 0e f5 ff ff jmp 801072d0 <alltraps>
80107dc2 <vector116>:
.globl vector116
vector116:
pushl $0
80107dc2: 6a 00 push $0x0
pushl $116
80107dc4: 6a 74 push $0x74
jmp alltraps
80107dc6: e9 05 f5 ff ff jmp 801072d0 <alltraps>
80107dcb <vector117>:
.globl vector117
vector117:
pushl $0
80107dcb: 6a 00 push $0x0
pushl $117
80107dcd: 6a 75 push $0x75
jmp alltraps
80107dcf: e9 fc f4 ff ff jmp 801072d0 <alltraps>
80107dd4 <vector118>:
.globl vector118
vector118:
pushl $0
80107dd4: 6a 00 push $0x0
pushl $118
80107dd6: 6a 76 push $0x76
jmp alltraps
80107dd8: e9 f3 f4 ff ff jmp 801072d0 <alltraps>
80107ddd <vector119>:
.globl vector119
vector119:
pushl $0
80107ddd: 6a 00 push $0x0
pushl $119
80107ddf: 6a 77 push $0x77
jmp alltraps
80107de1: e9 ea f4 ff ff jmp 801072d0 <alltraps>
80107de6 <vector120>:
.globl vector120
vector120:
pushl $0
80107de6: 6a 00 push $0x0
pushl $120
80107de8: 6a 78 push $0x78
jmp alltraps
80107dea: e9 e1 f4 ff ff jmp 801072d0 <alltraps>
80107def <vector121>:
.globl vector121
vector121:
pushl $0
80107def: 6a 00 push $0x0
pushl $121
80107df1: 6a 79 push $0x79
jmp alltraps
80107df3: e9 d8 f4 ff ff jmp 801072d0 <alltraps>
80107df8 <vector122>:
.globl vector122
vector122:
pushl $0
80107df8: 6a 00 push $0x0
pushl $122
80107dfa: 6a 7a push $0x7a
jmp alltraps
80107dfc: e9 cf f4 ff ff jmp 801072d0 <alltraps>
80107e01 <vector123>:
.globl vector123
vector123:
pushl $0
80107e01: 6a 00 push $0x0
pushl $123
80107e03: 6a 7b push $0x7b
jmp alltraps
80107e05: e9 c6 f4 ff ff jmp 801072d0 <alltraps>
80107e0a <vector124>:
.globl vector124
vector124:
pushl $0
80107e0a: 6a 00 push $0x0
pushl $124
80107e0c: 6a 7c push $0x7c
jmp alltraps
80107e0e: e9 bd f4 ff ff jmp 801072d0 <alltraps>
80107e13 <vector125>:
.globl vector125
vector125:
pushl $0
80107e13: 6a 00 push $0x0
pushl $125
80107e15: 6a 7d push $0x7d
jmp alltraps
80107e17: e9 b4 f4 ff ff jmp 801072d0 <alltraps>
80107e1c <vector126>:
.globl vector126
vector126:
pushl $0
80107e1c: 6a 00 push $0x0
pushl $126
80107e1e: 6a 7e push $0x7e
jmp alltraps
80107e20: e9 ab f4 ff ff jmp 801072d0 <alltraps>
80107e25 <vector127>:
.globl vector127
vector127:
pushl $0
80107e25: 6a 00 push $0x0
pushl $127
80107e27: 6a 7f push $0x7f
jmp alltraps
80107e29: e9 a2 f4 ff ff jmp 801072d0 <alltraps>
80107e2e <vector128>:
.globl vector128
vector128:
pushl $0
80107e2e: 6a 00 push $0x0
pushl $128
80107e30: 68 80 00 00 00 push $0x80
jmp alltraps
80107e35: e9 96 f4 ff ff jmp 801072d0 <alltraps>
80107e3a <vector129>:
.globl vector129
vector129:
pushl $0
80107e3a: 6a 00 push $0x0
pushl $129
80107e3c: 68 81 00 00 00 push $0x81
jmp alltraps
80107e41: e9 8a f4 ff ff jmp 801072d0 <alltraps>
80107e46 <vector130>:
.globl vector130
vector130:
pushl $0
80107e46: 6a 00 push $0x0
pushl $130
80107e48: 68 82 00 00 00 push $0x82
jmp alltraps
80107e4d: e9 7e f4 ff ff jmp 801072d0 <alltraps>
80107e52 <vector131>:
.globl vector131
vector131:
pushl $0
80107e52: 6a 00 push $0x0
pushl $131
80107e54: 68 83 00 00 00 push $0x83
jmp alltraps
80107e59: e9 72 f4 ff ff jmp 801072d0 <alltraps>
80107e5e <vector132>:
.globl vector132
vector132:
pushl $0
80107e5e: 6a 00 push $0x0
pushl $132
80107e60: 68 84 00 00 00 push $0x84
jmp alltraps
80107e65: e9 66 f4 ff ff jmp 801072d0 <alltraps>
80107e6a <vector133>:
.globl vector133
vector133:
pushl $0
80107e6a: 6a 00 push $0x0
pushl $133
80107e6c: 68 85 00 00 00 push $0x85
jmp alltraps
80107e71: e9 5a f4 ff ff jmp 801072d0 <alltraps>
80107e76 <vector134>:
.globl vector134
vector134:
pushl $0
80107e76: 6a 00 push $0x0
pushl $134
80107e78: 68 86 00 00 00 push $0x86
jmp alltraps
80107e7d: e9 4e f4 ff ff jmp 801072d0 <alltraps>
80107e82 <vector135>:
.globl vector135
vector135:
pushl $0
80107e82: 6a 00 push $0x0
pushl $135
80107e84: 68 87 00 00 00 push $0x87
jmp alltraps
80107e89: e9 42 f4 ff ff jmp 801072d0 <alltraps>
80107e8e <vector136>:
.globl vector136
vector136:
pushl $0
80107e8e: 6a 00 push $0x0
pushl $136
80107e90: 68 88 00 00 00 push $0x88
jmp alltraps
80107e95: e9 36 f4 ff ff jmp 801072d0 <alltraps>
80107e9a <vector137>:
.globl vector137
vector137:
pushl $0
80107e9a: 6a 00 push $0x0
pushl $137
80107e9c: 68 89 00 00 00 push $0x89
jmp alltraps
80107ea1: e9 2a f4 ff ff jmp 801072d0 <alltraps>
80107ea6 <vector138>:
.globl vector138
vector138:
pushl $0
80107ea6: 6a 00 push $0x0
pushl $138
80107ea8: 68 8a 00 00 00 push $0x8a
jmp alltraps
80107ead: e9 1e f4 ff ff jmp 801072d0 <alltraps>
80107eb2 <vector139>:
.globl vector139
vector139:
pushl $0
80107eb2: 6a 00 push $0x0
pushl $139
80107eb4: 68 8b 00 00 00 push $0x8b
jmp alltraps
80107eb9: e9 12 f4 ff ff jmp 801072d0 <alltraps>
80107ebe <vector140>:
.globl vector140
vector140:
pushl $0
80107ebe: 6a 00 push $0x0
pushl $140
80107ec0: 68 8c 00 00 00 push $0x8c
jmp alltraps
80107ec5: e9 06 f4 ff ff jmp 801072d0 <alltraps>
80107eca <vector141>:
.globl vector141
vector141:
pushl $0
80107eca: 6a 00 push $0x0
pushl $141
80107ecc: 68 8d 00 00 00 push $0x8d
jmp alltraps
80107ed1: e9 fa f3 ff ff jmp 801072d0 <alltraps>
80107ed6 <vector142>:
.globl vector142
vector142:
pushl $0
80107ed6: 6a 00 push $0x0
pushl $142
80107ed8: 68 8e 00 00 00 push $0x8e
jmp alltraps
80107edd: e9 ee f3 ff ff jmp 801072d0 <alltraps>
80107ee2 <vector143>:
.globl vector143
vector143:
pushl $0
80107ee2: 6a 00 push $0x0
pushl $143
80107ee4: 68 8f 00 00 00 push $0x8f
jmp alltraps
80107ee9: e9 e2 f3 ff ff jmp 801072d0 <alltraps>
80107eee <vector144>:
.globl vector144
vector144:
pushl $0
80107eee: 6a 00 push $0x0
pushl $144
80107ef0: 68 90 00 00 00 push $0x90
jmp alltraps
80107ef5: e9 d6 f3 ff ff jmp 801072d0 <alltraps>
80107efa <vector145>:
.globl vector145
vector145:
pushl $0
80107efa: 6a 00 push $0x0
pushl $145
80107efc: 68 91 00 00 00 push $0x91
jmp alltraps
80107f01: e9 ca f3 ff ff jmp 801072d0 <alltraps>
80107f06 <vector146>:
.globl vector146
vector146:
pushl $0
80107f06: 6a 00 push $0x0
pushl $146
80107f08: 68 92 00 00 00 push $0x92
jmp alltraps
80107f0d: e9 be f3 ff ff jmp 801072d0 <alltraps>
80107f12 <vector147>:
.globl vector147
vector147:
pushl $0
80107f12: 6a 00 push $0x0
pushl $147
80107f14: 68 93 00 00 00 push $0x93
jmp alltraps
80107f19: e9 b2 f3 ff ff jmp 801072d0 <alltraps>
80107f1e <vector148>:
.globl vector148
vector148:
pushl $0
80107f1e: 6a 00 push $0x0
pushl $148
80107f20: 68 94 00 00 00 push $0x94
jmp alltraps
80107f25: e9 a6 f3 ff ff jmp 801072d0 <alltraps>
80107f2a <vector149>:
.globl vector149
vector149:
pushl $0
80107f2a: 6a 00 push $0x0
pushl $149
80107f2c: 68 95 00 00 00 push $0x95
jmp alltraps
80107f31: e9 9a f3 ff ff jmp 801072d0 <alltraps>
80107f36 <vector150>:
.globl vector150
vector150:
pushl $0
80107f36: 6a 00 push $0x0
pushl $150
80107f38: 68 96 00 00 00 push $0x96
jmp alltraps
80107f3d: e9 8e f3 ff ff jmp 801072d0 <alltraps>
80107f42 <vector151>:
.globl vector151
vector151:
pushl $0
80107f42: 6a 00 push $0x0
pushl $151
80107f44: 68 97 00 00 00 push $0x97
jmp alltraps
80107f49: e9 82 f3 ff ff jmp 801072d0 <alltraps>
80107f4e <vector152>:
.globl vector152
vector152:
pushl $0
80107f4e: 6a 00 push $0x0
pushl $152
80107f50: 68 98 00 00 00 push $0x98
jmp alltraps
80107f55: e9 76 f3 ff ff jmp 801072d0 <alltraps>
80107f5a <vector153>:
.globl vector153
vector153:
pushl $0
80107f5a: 6a 00 push $0x0
pushl $153
80107f5c: 68 99 00 00 00 push $0x99
jmp alltraps
80107f61: e9 6a f3 ff ff jmp 801072d0 <alltraps>
80107f66 <vector154>:
.globl vector154
vector154:
pushl $0
80107f66: 6a 00 push $0x0
pushl $154
80107f68: 68 9a 00 00 00 push $0x9a
jmp alltraps
80107f6d: e9 5e f3 ff ff jmp 801072d0 <alltraps>
80107f72 <vector155>:
.globl vector155
vector155:
pushl $0
80107f72: 6a 00 push $0x0
pushl $155
80107f74: 68 9b 00 00 00 push $0x9b
jmp alltraps
80107f79: e9 52 f3 ff ff jmp 801072d0 <alltraps>
80107f7e <vector156>:
.globl vector156
vector156:
pushl $0
80107f7e: 6a 00 push $0x0
pushl $156
80107f80: 68 9c 00 00 00 push $0x9c
jmp alltraps
80107f85: e9 46 f3 ff ff jmp 801072d0 <alltraps>
80107f8a <vector157>:
.globl vector157
vector157:
pushl $0
80107f8a: 6a 00 push $0x0
pushl $157
80107f8c: 68 9d 00 00 00 push $0x9d
jmp alltraps
80107f91: e9 3a f3 ff ff jmp 801072d0 <alltraps>
80107f96 <vector158>:
.globl vector158
vector158:
pushl $0
80107f96: 6a 00 push $0x0
pushl $158
80107f98: 68 9e 00 00 00 push $0x9e
jmp alltraps
80107f9d: e9 2e f3 ff ff jmp 801072d0 <alltraps>
80107fa2 <vector159>:
.globl vector159
vector159:
pushl $0
80107fa2: 6a 00 push $0x0
pushl $159
80107fa4: 68 9f 00 00 00 push $0x9f
jmp alltraps
80107fa9: e9 22 f3 ff ff jmp 801072d0 <alltraps>
80107fae <vector160>:
.globl vector160
vector160:
pushl $0
80107fae: 6a 00 push $0x0
pushl $160
80107fb0: 68 a0 00 00 00 push $0xa0
jmp alltraps
80107fb5: e9 16 f3 ff ff jmp 801072d0 <alltraps>
80107fba <vector161>:
.globl vector161
vector161:
pushl $0
80107fba: 6a 00 push $0x0
pushl $161
80107fbc: 68 a1 00 00 00 push $0xa1
jmp alltraps
80107fc1: e9 0a f3 ff ff jmp 801072d0 <alltraps>
80107fc6 <vector162>:
.globl vector162
vector162:
pushl $0
80107fc6: 6a 00 push $0x0
pushl $162
80107fc8: 68 a2 00 00 00 push $0xa2
jmp alltraps
80107fcd: e9 fe f2 ff ff jmp 801072d0 <alltraps>
80107fd2 <vector163>:
.globl vector163
vector163:
pushl $0
80107fd2: 6a 00 push $0x0
pushl $163
80107fd4: 68 a3 00 00 00 push $0xa3
jmp alltraps
80107fd9: e9 f2 f2 ff ff jmp 801072d0 <alltraps>
80107fde <vector164>:
.globl vector164
vector164:
pushl $0
80107fde: 6a 00 push $0x0
pushl $164
80107fe0: 68 a4 00 00 00 push $0xa4
jmp alltraps
80107fe5: e9 e6 f2 ff ff jmp 801072d0 <alltraps>
80107fea <vector165>:
.globl vector165
vector165:
pushl $0
80107fea: 6a 00 push $0x0
pushl $165
80107fec: 68 a5 00 00 00 push $0xa5
jmp alltraps
80107ff1: e9 da f2 ff ff jmp 801072d0 <alltraps>
80107ff6 <vector166>:
.globl vector166
vector166:
pushl $0
80107ff6: 6a 00 push $0x0
pushl $166
80107ff8: 68 a6 00 00 00 push $0xa6
jmp alltraps
80107ffd: e9 ce f2 ff ff jmp 801072d0 <alltraps>
80108002 <vector167>:
.globl vector167
vector167:
pushl $0
80108002: 6a 00 push $0x0
pushl $167
80108004: 68 a7 00 00 00 push $0xa7
jmp alltraps
80108009: e9 c2 f2 ff ff jmp 801072d0 <alltraps>
8010800e <vector168>:
.globl vector168
vector168:
pushl $0
8010800e: 6a 00 push $0x0
pushl $168
80108010: 68 a8 00 00 00 push $0xa8
jmp alltraps
80108015: e9 b6 f2 ff ff jmp 801072d0 <alltraps>
8010801a <vector169>:
.globl vector169
vector169:
pushl $0
8010801a: 6a 00 push $0x0
pushl $169
8010801c: 68 a9 00 00 00 push $0xa9
jmp alltraps
80108021: e9 aa f2 ff ff jmp 801072d0 <alltraps>
80108026 <vector170>:
.globl vector170
vector170:
pushl $0
80108026: 6a 00 push $0x0
pushl $170
80108028: 68 aa 00 00 00 push $0xaa
jmp alltraps
8010802d: e9 9e f2 ff ff jmp 801072d0 <alltraps>
80108032 <vector171>:
.globl vector171
vector171:
pushl $0
80108032: 6a 00 push $0x0
pushl $171
80108034: 68 ab 00 00 00 push $0xab
jmp alltraps
80108039: e9 92 f2 ff ff jmp 801072d0 <alltraps>
8010803e <vector172>:
.globl vector172
vector172:
pushl $0
8010803e: 6a 00 push $0x0
pushl $172
80108040: 68 ac 00 00 00 push $0xac
jmp alltraps
80108045: e9 86 f2 ff ff jmp 801072d0 <alltraps>
8010804a <vector173>:
.globl vector173
vector173:
pushl $0
8010804a: 6a 00 push $0x0
pushl $173
8010804c: 68 ad 00 00 00 push $0xad
jmp alltraps
80108051: e9 7a f2 ff ff jmp 801072d0 <alltraps>
80108056 <vector174>:
.globl vector174
vector174:
pushl $0
80108056: 6a 00 push $0x0
pushl $174
80108058: 68 ae 00 00 00 push $0xae
jmp alltraps
8010805d: e9 6e f2 ff ff jmp 801072d0 <alltraps>
80108062 <vector175>:
.globl vector175
vector175:
pushl $0
80108062: 6a 00 push $0x0
pushl $175
80108064: 68 af 00 00 00 push $0xaf
jmp alltraps
80108069: e9 62 f2 ff ff jmp 801072d0 <alltraps>
8010806e <vector176>:
.globl vector176
vector176:
pushl $0
8010806e: 6a 00 push $0x0
pushl $176
80108070: 68 b0 00 00 00 push $0xb0
jmp alltraps
80108075: e9 56 f2 ff ff jmp 801072d0 <alltraps>
8010807a <vector177>:
.globl vector177
vector177:
pushl $0
8010807a: 6a 00 push $0x0
pushl $177
8010807c: 68 b1 00 00 00 push $0xb1
jmp alltraps
80108081: e9 4a f2 ff ff jmp 801072d0 <alltraps>
80108086 <vector178>:
.globl vector178
vector178:
pushl $0
80108086: 6a 00 push $0x0
pushl $178
80108088: 68 b2 00 00 00 push $0xb2
jmp alltraps
8010808d: e9 3e f2 ff ff jmp 801072d0 <alltraps>
80108092 <vector179>:
.globl vector179
vector179:
pushl $0
80108092: 6a 00 push $0x0
pushl $179
80108094: 68 b3 00 00 00 push $0xb3
jmp alltraps
80108099: e9 32 f2 ff ff jmp 801072d0 <alltraps>
8010809e <vector180>:
.globl vector180
vector180:
pushl $0
8010809e: 6a 00 push $0x0
pushl $180
801080a0: 68 b4 00 00 00 push $0xb4
jmp alltraps
801080a5: e9 26 f2 ff ff jmp 801072d0 <alltraps>
801080aa <vector181>:
.globl vector181
vector181:
pushl $0
801080aa: 6a 00 push $0x0
pushl $181
801080ac: 68 b5 00 00 00 push $0xb5
jmp alltraps
801080b1: e9 1a f2 ff ff jmp 801072d0 <alltraps>
801080b6 <vector182>:
.globl vector182
vector182:
pushl $0
801080b6: 6a 00 push $0x0
pushl $182
801080b8: 68 b6 00 00 00 push $0xb6
jmp alltraps
801080bd: e9 0e f2 ff ff jmp 801072d0 <alltraps>
801080c2 <vector183>:
.globl vector183
vector183:
pushl $0
801080c2: 6a 00 push $0x0
pushl $183
801080c4: 68 b7 00 00 00 push $0xb7
jmp alltraps
801080c9: e9 02 f2 ff ff jmp 801072d0 <alltraps>
801080ce <vector184>:
.globl vector184
vector184:
pushl $0
801080ce: 6a 00 push $0x0
pushl $184
801080d0: 68 b8 00 00 00 push $0xb8
jmp alltraps
801080d5: e9 f6 f1 ff ff jmp 801072d0 <alltraps>
801080da <vector185>:
.globl vector185
vector185:
pushl $0
801080da: 6a 00 push $0x0
pushl $185
801080dc: 68 b9 00 00 00 push $0xb9
jmp alltraps
801080e1: e9 ea f1 ff ff jmp 801072d0 <alltraps>
801080e6 <vector186>:
.globl vector186
vector186:
pushl $0
801080e6: 6a 00 push $0x0
pushl $186
801080e8: 68 ba 00 00 00 push $0xba
jmp alltraps
801080ed: e9 de f1 ff ff jmp 801072d0 <alltraps>
801080f2 <vector187>:
.globl vector187
vector187:
pushl $0
801080f2: 6a 00 push $0x0
pushl $187
801080f4: 68 bb 00 00 00 push $0xbb
jmp alltraps
801080f9: e9 d2 f1 ff ff jmp 801072d0 <alltraps>
801080fe <vector188>:
.globl vector188
vector188:
pushl $0
801080fe: 6a 00 push $0x0
pushl $188
80108100: 68 bc 00 00 00 push $0xbc
jmp alltraps
80108105: e9 c6 f1 ff ff jmp 801072d0 <alltraps>
8010810a <vector189>:
.globl vector189
vector189:
pushl $0
8010810a: 6a 00 push $0x0
pushl $189
8010810c: 68 bd 00 00 00 push $0xbd
jmp alltraps
80108111: e9 ba f1 ff ff jmp 801072d0 <alltraps>
80108116 <vector190>:
.globl vector190
vector190:
pushl $0
80108116: 6a 00 push $0x0
pushl $190
80108118: 68 be 00 00 00 push $0xbe
jmp alltraps
8010811d: e9 ae f1 ff ff jmp 801072d0 <alltraps>
80108122 <vector191>:
.globl vector191
vector191:
pushl $0
80108122: 6a 00 push $0x0
pushl $191
80108124: 68 bf 00 00 00 push $0xbf
jmp alltraps
80108129: e9 a2 f1 ff ff jmp 801072d0 <alltraps>
8010812e <vector192>:
.globl vector192
vector192:
pushl $0
8010812e: 6a 00 push $0x0
pushl $192
80108130: 68 c0 00 00 00 push $0xc0
jmp alltraps
80108135: e9 96 f1 ff ff jmp 801072d0 <alltraps>
8010813a <vector193>:
.globl vector193
vector193:
pushl $0
8010813a: 6a 00 push $0x0
pushl $193
8010813c: 68 c1 00 00 00 push $0xc1
jmp alltraps
80108141: e9 8a f1 ff ff jmp 801072d0 <alltraps>
80108146 <vector194>:
.globl vector194
vector194:
pushl $0
80108146: 6a 00 push $0x0
pushl $194
80108148: 68 c2 00 00 00 push $0xc2
jmp alltraps
8010814d: e9 7e f1 ff ff jmp 801072d0 <alltraps>
80108152 <vector195>:
.globl vector195
vector195:
pushl $0
80108152: 6a 00 push $0x0
pushl $195
80108154: 68 c3 00 00 00 push $0xc3
jmp alltraps
80108159: e9 72 f1 ff ff jmp 801072d0 <alltraps>
8010815e <vector196>:
.globl vector196
vector196:
pushl $0
8010815e: 6a 00 push $0x0
pushl $196
80108160: 68 c4 00 00 00 push $0xc4
jmp alltraps
80108165: e9 66 f1 ff ff jmp 801072d0 <alltraps>
8010816a <vector197>:
.globl vector197
vector197:
pushl $0
8010816a: 6a 00 push $0x0
pushl $197
8010816c: 68 c5 00 00 00 push $0xc5
jmp alltraps
80108171: e9 5a f1 ff ff jmp 801072d0 <alltraps>
80108176 <vector198>:
.globl vector198
vector198:
pushl $0
80108176: 6a 00 push $0x0
pushl $198
80108178: 68 c6 00 00 00 push $0xc6
jmp alltraps
8010817d: e9 4e f1 ff ff jmp 801072d0 <alltraps>
80108182 <vector199>:
.globl vector199
vector199:
pushl $0
80108182: 6a 00 push $0x0
pushl $199
80108184: 68 c7 00 00 00 push $0xc7
jmp alltraps
80108189: e9 42 f1 ff ff jmp 801072d0 <alltraps>
8010818e <vector200>:
.globl vector200
vector200:
pushl $0
8010818e: 6a 00 push $0x0
pushl $200
80108190: 68 c8 00 00 00 push $0xc8
jmp alltraps
80108195: e9 36 f1 ff ff jmp 801072d0 <alltraps>
8010819a <vector201>:
.globl vector201
vector201:
pushl $0
8010819a: 6a 00 push $0x0
pushl $201
8010819c: 68 c9 00 00 00 push $0xc9
jmp alltraps
801081a1: e9 2a f1 ff ff jmp 801072d0 <alltraps>
801081a6 <vector202>:
.globl vector202
vector202:
pushl $0
801081a6: 6a 00 push $0x0
pushl $202
801081a8: 68 ca 00 00 00 push $0xca
jmp alltraps
801081ad: e9 1e f1 ff ff jmp 801072d0 <alltraps>
801081b2 <vector203>:
.globl vector203
vector203:
pushl $0
801081b2: 6a 00 push $0x0
pushl $203
801081b4: 68 cb 00 00 00 push $0xcb
jmp alltraps
801081b9: e9 12 f1 ff ff jmp 801072d0 <alltraps>
801081be <vector204>:
.globl vector204
vector204:
pushl $0
801081be: 6a 00 push $0x0
pushl $204
801081c0: 68 cc 00 00 00 push $0xcc
jmp alltraps
801081c5: e9 06 f1 ff ff jmp 801072d0 <alltraps>
801081ca <vector205>:
.globl vector205
vector205:
pushl $0
801081ca: 6a 00 push $0x0
pushl $205
801081cc: 68 cd 00 00 00 push $0xcd
jmp alltraps
801081d1: e9 fa f0 ff ff jmp 801072d0 <alltraps>
801081d6 <vector206>:
.globl vector206
vector206:
pushl $0
801081d6: 6a 00 push $0x0
pushl $206
801081d8: 68 ce 00 00 00 push $0xce
jmp alltraps
801081dd: e9 ee f0 ff ff jmp 801072d0 <alltraps>
801081e2 <vector207>:
.globl vector207
vector207:
pushl $0
801081e2: 6a 00 push $0x0
pushl $207
801081e4: 68 cf 00 00 00 push $0xcf
jmp alltraps
801081e9: e9 e2 f0 ff ff jmp 801072d0 <alltraps>
801081ee <vector208>:
.globl vector208
vector208:
pushl $0
801081ee: 6a 00 push $0x0
pushl $208
801081f0: 68 d0 00 00 00 push $0xd0
jmp alltraps
801081f5: e9 d6 f0 ff ff jmp 801072d0 <alltraps>
801081fa <vector209>:
.globl vector209
vector209:
pushl $0
801081fa: 6a 00 push $0x0
pushl $209
801081fc: 68 d1 00 00 00 push $0xd1
jmp alltraps
80108201: e9 ca f0 ff ff jmp 801072d0 <alltraps>
80108206 <vector210>:
.globl vector210
vector210:
pushl $0
80108206: 6a 00 push $0x0
pushl $210
80108208: 68 d2 00 00 00 push $0xd2
jmp alltraps
8010820d: e9 be f0 ff ff jmp 801072d0 <alltraps>
80108212 <vector211>:
.globl vector211
vector211:
pushl $0
80108212: 6a 00 push $0x0
pushl $211
80108214: 68 d3 00 00 00 push $0xd3
jmp alltraps
80108219: e9 b2 f0 ff ff jmp 801072d0 <alltraps>
8010821e <vector212>:
.globl vector212
vector212:
pushl $0
8010821e: 6a 00 push $0x0
pushl $212
80108220: 68 d4 00 00 00 push $0xd4
jmp alltraps
80108225: e9 a6 f0 ff ff jmp 801072d0 <alltraps>
8010822a <vector213>:
.globl vector213
vector213:
pushl $0
8010822a: 6a 00 push $0x0
pushl $213
8010822c: 68 d5 00 00 00 push $0xd5
jmp alltraps
80108231: e9 9a f0 ff ff jmp 801072d0 <alltraps>
80108236 <vector214>:
.globl vector214
vector214:
pushl $0
80108236: 6a 00 push $0x0
pushl $214
80108238: 68 d6 00 00 00 push $0xd6
jmp alltraps
8010823d: e9 8e f0 ff ff jmp 801072d0 <alltraps>
80108242 <vector215>:
.globl vector215
vector215:
pushl $0
80108242: 6a 00 push $0x0
pushl $215
80108244: 68 d7 00 00 00 push $0xd7
jmp alltraps
80108249: e9 82 f0 ff ff jmp 801072d0 <alltraps>
8010824e <vector216>:
.globl vector216
vector216:
pushl $0
8010824e: 6a 00 push $0x0
pushl $216
80108250: 68 d8 00 00 00 push $0xd8
jmp alltraps
80108255: e9 76 f0 ff ff jmp 801072d0 <alltraps>
8010825a <vector217>:
.globl vector217
vector217:
pushl $0
8010825a: 6a 00 push $0x0
pushl $217
8010825c: 68 d9 00 00 00 push $0xd9
jmp alltraps
80108261: e9 6a f0 ff ff jmp 801072d0 <alltraps>
80108266 <vector218>:
.globl vector218
vector218:
pushl $0
80108266: 6a 00 push $0x0
pushl $218
80108268: 68 da 00 00 00 push $0xda
jmp alltraps
8010826d: e9 5e f0 ff ff jmp 801072d0 <alltraps>
80108272 <vector219>:
.globl vector219
vector219:
pushl $0
80108272: 6a 00 push $0x0
pushl $219
80108274: 68 db 00 00 00 push $0xdb
jmp alltraps
80108279: e9 52 f0 ff ff jmp 801072d0 <alltraps>
8010827e <vector220>:
.globl vector220
vector220:
pushl $0
8010827e: 6a 00 push $0x0
pushl $220
80108280: 68 dc 00 00 00 push $0xdc
jmp alltraps
80108285: e9 46 f0 ff ff jmp 801072d0 <alltraps>
8010828a <vector221>:
.globl vector221
vector221:
pushl $0
8010828a: 6a 00 push $0x0
pushl $221
8010828c: 68 dd 00 00 00 push $0xdd
jmp alltraps
80108291: e9 3a f0 ff ff jmp 801072d0 <alltraps>
80108296 <vector222>:
.globl vector222
vector222:
pushl $0
80108296: 6a 00 push $0x0
pushl $222
80108298: 68 de 00 00 00 push $0xde
jmp alltraps
8010829d: e9 2e f0 ff ff jmp 801072d0 <alltraps>
801082a2 <vector223>:
.globl vector223
vector223:
pushl $0
801082a2: 6a 00 push $0x0
pushl $223
801082a4: 68 df 00 00 00 push $0xdf
jmp alltraps
801082a9: e9 22 f0 ff ff jmp 801072d0 <alltraps>
801082ae <vector224>:
.globl vector224
vector224:
pushl $0
801082ae: 6a 00 push $0x0
pushl $224
801082b0: 68 e0 00 00 00 push $0xe0
jmp alltraps
801082b5: e9 16 f0 ff ff jmp 801072d0 <alltraps>
801082ba <vector225>:
.globl vector225
vector225:
pushl $0
801082ba: 6a 00 push $0x0
pushl $225
801082bc: 68 e1 00 00 00 push $0xe1
jmp alltraps
801082c1: e9 0a f0 ff ff jmp 801072d0 <alltraps>
801082c6 <vector226>:
.globl vector226
vector226:
pushl $0
801082c6: 6a 00 push $0x0
pushl $226
801082c8: 68 e2 00 00 00 push $0xe2
jmp alltraps
801082cd: e9 fe ef ff ff jmp 801072d0 <alltraps>
801082d2 <vector227>:
.globl vector227
vector227:
pushl $0
801082d2: 6a 00 push $0x0
pushl $227
801082d4: 68 e3 00 00 00 push $0xe3
jmp alltraps
801082d9: e9 f2 ef ff ff jmp 801072d0 <alltraps>
801082de <vector228>:
.globl vector228
vector228:
pushl $0
801082de: 6a 00 push $0x0
pushl $228
801082e0: 68 e4 00 00 00 push $0xe4
jmp alltraps
801082e5: e9 e6 ef ff ff jmp 801072d0 <alltraps>
801082ea <vector229>:
.globl vector229
vector229:
pushl $0
801082ea: 6a 00 push $0x0
pushl $229
801082ec: 68 e5 00 00 00 push $0xe5
jmp alltraps
801082f1: e9 da ef ff ff jmp 801072d0 <alltraps>
801082f6 <vector230>:
.globl vector230
vector230:
pushl $0
801082f6: 6a 00 push $0x0
pushl $230
801082f8: 68 e6 00 00 00 push $0xe6
jmp alltraps
801082fd: e9 ce ef ff ff jmp 801072d0 <alltraps>
80108302 <vector231>:
.globl vector231
vector231:
pushl $0
80108302: 6a 00 push $0x0
pushl $231
80108304: 68 e7 00 00 00 push $0xe7
jmp alltraps
80108309: e9 c2 ef ff ff jmp 801072d0 <alltraps>
8010830e <vector232>:
.globl vector232
vector232:
pushl $0
8010830e: 6a 00 push $0x0
pushl $232
80108310: 68 e8 00 00 00 push $0xe8
jmp alltraps
80108315: e9 b6 ef ff ff jmp 801072d0 <alltraps>
8010831a <vector233>:
.globl vector233
vector233:
pushl $0
8010831a: 6a 00 push $0x0
pushl $233
8010831c: 68 e9 00 00 00 push $0xe9
jmp alltraps
80108321: e9 aa ef ff ff jmp 801072d0 <alltraps>
80108326 <vector234>:
.globl vector234
vector234:
pushl $0
80108326: 6a 00 push $0x0
pushl $234
80108328: 68 ea 00 00 00 push $0xea
jmp alltraps
8010832d: e9 9e ef ff ff jmp 801072d0 <alltraps>
80108332 <vector235>:
.globl vector235
vector235:
pushl $0
80108332: 6a 00 push $0x0
pushl $235
80108334: 68 eb 00 00 00 push $0xeb
jmp alltraps
80108339: e9 92 ef ff ff jmp 801072d0 <alltraps>
8010833e <vector236>:
.globl vector236
vector236:
pushl $0
8010833e: 6a 00 push $0x0
pushl $236
80108340: 68 ec 00 00 00 push $0xec
jmp alltraps
80108345: e9 86 ef ff ff jmp 801072d0 <alltraps>
8010834a <vector237>:
.globl vector237
vector237:
pushl $0
8010834a: 6a 00 push $0x0
pushl $237
8010834c: 68 ed 00 00 00 push $0xed
jmp alltraps
80108351: e9 7a ef ff ff jmp 801072d0 <alltraps>
80108356 <vector238>:
.globl vector238
vector238:
pushl $0
80108356: 6a 00 push $0x0
pushl $238
80108358: 68 ee 00 00 00 push $0xee
jmp alltraps
8010835d: e9 6e ef ff ff jmp 801072d0 <alltraps>
80108362 <vector239>:
.globl vector239
vector239:
pushl $0
80108362: 6a 00 push $0x0
pushl $239
80108364: 68 ef 00 00 00 push $0xef
jmp alltraps
80108369: e9 62 ef ff ff jmp 801072d0 <alltraps>
8010836e <vector240>:
.globl vector240
vector240:
pushl $0
8010836e: 6a 00 push $0x0
pushl $240
80108370: 68 f0 00 00 00 push $0xf0
jmp alltraps
80108375: e9 56 ef ff ff jmp 801072d0 <alltraps>
8010837a <vector241>:
.globl vector241
vector241:
pushl $0
8010837a: 6a 00 push $0x0
pushl $241
8010837c: 68 f1 00 00 00 push $0xf1
jmp alltraps
80108381: e9 4a ef ff ff jmp 801072d0 <alltraps>
80108386 <vector242>:
.globl vector242
vector242:
pushl $0
80108386: 6a 00 push $0x0
pushl $242
80108388: 68 f2 00 00 00 push $0xf2
jmp alltraps
8010838d: e9 3e ef ff ff jmp 801072d0 <alltraps>
80108392 <vector243>:
.globl vector243
vector243:
pushl $0
80108392: 6a 00 push $0x0
pushl $243
80108394: 68 f3 00 00 00 push $0xf3
jmp alltraps
80108399: e9 32 ef ff ff jmp 801072d0 <alltraps>
8010839e <vector244>:
.globl vector244
vector244:
pushl $0
8010839e: 6a 00 push $0x0
pushl $244
801083a0: 68 f4 00 00 00 push $0xf4
jmp alltraps
801083a5: e9 26 ef ff ff jmp 801072d0 <alltraps>
801083aa <vector245>:
.globl vector245
vector245:
pushl $0
801083aa: 6a 00 push $0x0
pushl $245
801083ac: 68 f5 00 00 00 push $0xf5
jmp alltraps
801083b1: e9 1a ef ff ff jmp 801072d0 <alltraps>
801083b6 <vector246>:
.globl vector246
vector246:
pushl $0
801083b6: 6a 00 push $0x0
pushl $246
801083b8: 68 f6 00 00 00 push $0xf6
jmp alltraps
801083bd: e9 0e ef ff ff jmp 801072d0 <alltraps>
801083c2 <vector247>:
.globl vector247
vector247:
pushl $0
801083c2: 6a 00 push $0x0
pushl $247
801083c4: 68 f7 00 00 00 push $0xf7
jmp alltraps
801083c9: e9 02 ef ff ff jmp 801072d0 <alltraps>
801083ce <vector248>:
.globl vector248
vector248:
pushl $0
801083ce: 6a 00 push $0x0
pushl $248
801083d0: 68 f8 00 00 00 push $0xf8
jmp alltraps
801083d5: e9 f6 ee ff ff jmp 801072d0 <alltraps>
801083da <vector249>:
.globl vector249
vector249:
pushl $0
801083da: 6a 00 push $0x0
pushl $249
801083dc: 68 f9 00 00 00 push $0xf9
jmp alltraps
801083e1: e9 ea ee ff ff jmp 801072d0 <alltraps>
801083e6 <vector250>:
.globl vector250
vector250:
pushl $0
801083e6: 6a 00 push $0x0
pushl $250
801083e8: 68 fa 00 00 00 push $0xfa
jmp alltraps
801083ed: e9 de ee ff ff jmp 801072d0 <alltraps>
801083f2 <vector251>:
.globl vector251
vector251:
pushl $0
801083f2: 6a 00 push $0x0
pushl $251
801083f4: 68 fb 00 00 00 push $0xfb
jmp alltraps
801083f9: e9 d2 ee ff ff jmp 801072d0 <alltraps>
801083fe <vector252>:
.globl vector252
vector252:
pushl $0
801083fe: 6a 00 push $0x0
pushl $252
80108400: 68 fc 00 00 00 push $0xfc
jmp alltraps
80108405: e9 c6 ee ff ff jmp 801072d0 <alltraps>
8010840a <vector253>:
.globl vector253
vector253:
pushl $0
8010840a: 6a 00 push $0x0
pushl $253
8010840c: 68 fd 00 00 00 push $0xfd
jmp alltraps
80108411: e9 ba ee ff ff jmp 801072d0 <alltraps>
80108416 <vector254>:
.globl vector254
vector254:
pushl $0
80108416: 6a 00 push $0x0
pushl $254
80108418: 68 fe 00 00 00 push $0xfe
jmp alltraps
8010841d: e9 ae ee ff ff jmp 801072d0 <alltraps>
80108422 <vector255>:
.globl vector255
vector255:
pushl $0
80108422: 6a 00 push $0x0
pushl $255
80108424: 68 ff 00 00 00 push $0xff
jmp alltraps
80108429: e9 a2 ee ff ff jmp 801072d0 <alltraps>
...
80108430 <lgdt>:
struct segdesc;
static inline void
lgdt(struct segdesc *p, int size)
{
80108430: 55 push %ebp
80108431: 89 e5 mov %esp,%ebp
80108433: 83 ec 10 sub $0x10,%esp
volatile ushort pd[3];
pd[0] = size-1;
80108436: 8b 45 0c mov 0xc(%ebp),%eax
80108439: 83 e8 01 sub $0x1,%eax
8010843c: 66 89 45 fa mov %ax,-0x6(%ebp)
pd[1] = (uint)p;
80108440: 8b 45 08 mov 0x8(%ebp),%eax
80108443: 66 89 45 fc mov %ax,-0x4(%ebp)
pd[2] = (uint)p >> 16;
80108447: 8b 45 08 mov 0x8(%ebp),%eax
8010844a: c1 e8 10 shr $0x10,%eax
8010844d: 66 89 45 fe mov %ax,-0x2(%ebp)
asm volatile("lgdt (%0)" : : "r" (pd));
80108451: 8d 45 fa lea -0x6(%ebp),%eax
80108454: 0f 01 10 lgdtl (%eax)
}
80108457: c9 leave
80108458: c3 ret
80108459 <ltr>:
asm volatile("lidt (%0)" : : "r" (pd));
}
static inline void
ltr(ushort sel)
{
80108459: 55 push %ebp
8010845a: 89 e5 mov %esp,%ebp
8010845c: 83 ec 04 sub $0x4,%esp
8010845f: 8b 45 08 mov 0x8(%ebp),%eax
80108462: 66 89 45 fc mov %ax,-0x4(%ebp)
asm volatile("ltr %0" : : "r" (sel));
80108466: 0f b7 45 fc movzwl -0x4(%ebp),%eax
8010846a: 0f 00 d8 ltr %ax
}
8010846d: c9 leave
8010846e: c3 ret
8010846f <loadgs>:
return eflags;
}
static inline void
loadgs(ushort v)
{
8010846f: 55 push %ebp
80108470: 89 e5 mov %esp,%ebp
80108472: 83 ec 04 sub $0x4,%esp
80108475: 8b 45 08 mov 0x8(%ebp),%eax
80108478: 66 89 45 fc mov %ax,-0x4(%ebp)
asm volatile("movw %0, %%gs" : : "r" (v));
8010847c: 0f b7 45 fc movzwl -0x4(%ebp),%eax
80108480: 8e e8 mov %eax,%gs
}
80108482: c9 leave
80108483: c3 ret
80108484 <lcr3>:
return val;
}
static inline void
lcr3(uint val)
{
80108484: 55 push %ebp
80108485: 89 e5 mov %esp,%ebp
asm volatile("movl %0,%%cr3" : : "r" (val));
80108487: 8b 45 08 mov 0x8(%ebp),%eax
8010848a: 0f 22 d8 mov %eax,%cr3
}
8010848d: 5d pop %ebp
8010848e: c3 ret
8010848f <v2p>:
#define KERNBASE 0x80000000 // First kernel virtual address
#define KERNLINK (KERNBASE+EXTMEM) // Address where kernel is linked
#ifndef __ASSEMBLER__
static inline uint v2p(void *a) { return ((uint) (a)) - KERNBASE; }
8010848f: 55 push %ebp
80108490: 89 e5 mov %esp,%ebp
80108492: 8b 45 08 mov 0x8(%ebp),%eax
80108495: 05 00 00 00 80 add $0x80000000,%eax
8010849a: 5d pop %ebp
8010849b: c3 ret
8010849c <p2v>:
static inline void *p2v(uint a) { return (void *) ((a) + KERNBASE); }
8010849c: 55 push %ebp
8010849d: 89 e5 mov %esp,%ebp
8010849f: 8b 45 08 mov 0x8(%ebp),%eax
801084a2: 05 00 00 00 80 add $0x80000000,%eax
801084a7: 5d pop %ebp
801084a8: c3 ret
801084a9 <seginit>:
// Set up CPU's kernel segment descriptors.
// Run once on entry on each CPU.
void
seginit(void)
{
801084a9: 55 push %ebp
801084aa: 89 e5 mov %esp,%ebp
801084ac: 53 push %ebx
801084ad: 83 ec 24 sub $0x24,%esp
// Map "logical" addresses to virtual addresses using identity map.
// Cannot share a CODE descriptor for both kernel and user
// because it would have to have DPL_USR, but the CPU forbids
// an interrupt from CPL=0 to DPL=3.
c = &cpus[cpunum()];
801084b0: e8 da b2 ff ff call 8010378f <cpunum>
801084b5: 69 c0 bc 00 00 00 imul $0xbc,%eax,%eax
801084bb: 05 a0 3b 11 80 add $0x80113ba0,%eax
801084c0: 89 45 f4 mov %eax,-0xc(%ebp)
c->gdt[SEG_KCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, 0);
801084c3: 8b 45 f4 mov -0xc(%ebp),%eax
801084c6: 66 c7 40 78 ff ff movw $0xffff,0x78(%eax)
801084cc: 8b 45 f4 mov -0xc(%ebp),%eax
801084cf: 66 c7 40 7a 00 00 movw $0x0,0x7a(%eax)
801084d5: 8b 45 f4 mov -0xc(%ebp),%eax
801084d8: c6 40 7c 00 movb $0x0,0x7c(%eax)
801084dc: 8b 45 f4 mov -0xc(%ebp),%eax
801084df: 0f b6 50 7d movzbl 0x7d(%eax),%edx
801084e3: 83 e2 f0 and $0xfffffff0,%edx
801084e6: 83 ca 0a or $0xa,%edx
801084e9: 88 50 7d mov %dl,0x7d(%eax)
801084ec: 8b 45 f4 mov -0xc(%ebp),%eax
801084ef: 0f b6 50 7d movzbl 0x7d(%eax),%edx
801084f3: 83 ca 10 or $0x10,%edx
801084f6: 88 50 7d mov %dl,0x7d(%eax)
801084f9: 8b 45 f4 mov -0xc(%ebp),%eax
801084fc: 0f b6 50 7d movzbl 0x7d(%eax),%edx
80108500: 83 e2 9f and $0xffffff9f,%edx
80108503: 88 50 7d mov %dl,0x7d(%eax)
80108506: 8b 45 f4 mov -0xc(%ebp),%eax
80108509: 0f b6 50 7d movzbl 0x7d(%eax),%edx
8010850d: 83 ca 80 or $0xffffff80,%edx
80108510: 88 50 7d mov %dl,0x7d(%eax)
80108513: 8b 45 f4 mov -0xc(%ebp),%eax
80108516: 0f b6 50 7e movzbl 0x7e(%eax),%edx
8010851a: 83 ca 0f or $0xf,%edx
8010851d: 88 50 7e mov %dl,0x7e(%eax)
80108520: 8b 45 f4 mov -0xc(%ebp),%eax
80108523: 0f b6 50 7e movzbl 0x7e(%eax),%edx
80108527: 83 e2 ef and $0xffffffef,%edx
8010852a: 88 50 7e mov %dl,0x7e(%eax)
8010852d: 8b 45 f4 mov -0xc(%ebp),%eax
80108530: 0f b6 50 7e movzbl 0x7e(%eax),%edx
80108534: 83 e2 df and $0xffffffdf,%edx
80108537: 88 50 7e mov %dl,0x7e(%eax)
8010853a: 8b 45 f4 mov -0xc(%ebp),%eax
8010853d: 0f b6 50 7e movzbl 0x7e(%eax),%edx
80108541: 83 ca 40 or $0x40,%edx
80108544: 88 50 7e mov %dl,0x7e(%eax)
80108547: 8b 45 f4 mov -0xc(%ebp),%eax
8010854a: 0f b6 50 7e movzbl 0x7e(%eax),%edx
8010854e: 83 ca 80 or $0xffffff80,%edx
80108551: 88 50 7e mov %dl,0x7e(%eax)
80108554: 8b 45 f4 mov -0xc(%ebp),%eax
80108557: c6 40 7f 00 movb $0x0,0x7f(%eax)
c->gdt[SEG_KDATA] = SEG(STA_W, 0, 0xffffffff, 0);
8010855b: 8b 45 f4 mov -0xc(%ebp),%eax
8010855e: 66 c7 80 80 00 00 00 movw $0xffff,0x80(%eax)
80108565: ff ff
80108567: 8b 45 f4 mov -0xc(%ebp),%eax
8010856a: 66 c7 80 82 00 00 00 movw $0x0,0x82(%eax)
80108571: 00 00
80108573: 8b 45 f4 mov -0xc(%ebp),%eax
80108576: c6 80 84 00 00 00 00 movb $0x0,0x84(%eax)
8010857d: 8b 45 f4 mov -0xc(%ebp),%eax
80108580: 0f b6 90 85 00 00 00 movzbl 0x85(%eax),%edx
80108587: 83 e2 f0 and $0xfffffff0,%edx
8010858a: 83 ca 02 or $0x2,%edx
8010858d: 88 90 85 00 00 00 mov %dl,0x85(%eax)
80108593: 8b 45 f4 mov -0xc(%ebp),%eax
80108596: 0f b6 90 85 00 00 00 movzbl 0x85(%eax),%edx
8010859d: 83 ca 10 or $0x10,%edx
801085a0: 88 90 85 00 00 00 mov %dl,0x85(%eax)
801085a6: 8b 45 f4 mov -0xc(%ebp),%eax
801085a9: 0f b6 90 85 00 00 00 movzbl 0x85(%eax),%edx
801085b0: 83 e2 9f and $0xffffff9f,%edx
801085b3: 88 90 85 00 00 00 mov %dl,0x85(%eax)
801085b9: 8b 45 f4 mov -0xc(%ebp),%eax
801085bc: 0f b6 90 85 00 00 00 movzbl 0x85(%eax),%edx
801085c3: 83 ca 80 or $0xffffff80,%edx
801085c6: 88 90 85 00 00 00 mov %dl,0x85(%eax)
801085cc: 8b 45 f4 mov -0xc(%ebp),%eax
801085cf: 0f b6 90 86 00 00 00 movzbl 0x86(%eax),%edx
801085d6: 83 ca 0f or $0xf,%edx
801085d9: 88 90 86 00 00 00 mov %dl,0x86(%eax)
801085df: 8b 45 f4 mov -0xc(%ebp),%eax
801085e2: 0f b6 90 86 00 00 00 movzbl 0x86(%eax),%edx
801085e9: 83 e2 ef and $0xffffffef,%edx
801085ec: 88 90 86 00 00 00 mov %dl,0x86(%eax)
801085f2: 8b 45 f4 mov -0xc(%ebp),%eax
801085f5: 0f b6 90 86 00 00 00 movzbl 0x86(%eax),%edx
801085fc: 83 e2 df and $0xffffffdf,%edx
801085ff: 88 90 86 00 00 00 mov %dl,0x86(%eax)
80108605: 8b 45 f4 mov -0xc(%ebp),%eax
80108608: 0f b6 90 86 00 00 00 movzbl 0x86(%eax),%edx
8010860f: 83 ca 40 or $0x40,%edx
80108612: 88 90 86 00 00 00 mov %dl,0x86(%eax)
80108618: 8b 45 f4 mov -0xc(%ebp),%eax
8010861b: 0f b6 90 86 00 00 00 movzbl 0x86(%eax),%edx
80108622: 83 ca 80 or $0xffffff80,%edx
80108625: 88 90 86 00 00 00 mov %dl,0x86(%eax)
8010862b: 8b 45 f4 mov -0xc(%ebp),%eax
8010862e: c6 80 87 00 00 00 00 movb $0x0,0x87(%eax)
c->gdt[SEG_UCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, DPL_USER);
80108635: 8b 45 f4 mov -0xc(%ebp),%eax
80108638: 66 c7 80 90 00 00 00 movw $0xffff,0x90(%eax)
8010863f: ff ff
80108641: 8b 45 f4 mov -0xc(%ebp),%eax
80108644: 66 c7 80 92 00 00 00 movw $0x0,0x92(%eax)
8010864b: 00 00
8010864d: 8b 45 f4 mov -0xc(%ebp),%eax
80108650: c6 80 94 00 00 00 00 movb $0x0,0x94(%eax)
80108657: 8b 45 f4 mov -0xc(%ebp),%eax
8010865a: 0f b6 90 95 00 00 00 movzbl 0x95(%eax),%edx
80108661: 83 e2 f0 and $0xfffffff0,%edx
80108664: 83 ca 0a or $0xa,%edx
80108667: 88 90 95 00 00 00 mov %dl,0x95(%eax)
8010866d: 8b 45 f4 mov -0xc(%ebp),%eax
80108670: 0f b6 90 95 00 00 00 movzbl 0x95(%eax),%edx
80108677: 83 ca 10 or $0x10,%edx
8010867a: 88 90 95 00 00 00 mov %dl,0x95(%eax)
80108680: 8b 45 f4 mov -0xc(%ebp),%eax
80108683: 0f b6 90 95 00 00 00 movzbl 0x95(%eax),%edx
8010868a: 83 ca 60 or $0x60,%edx
8010868d: 88 90 95 00 00 00 mov %dl,0x95(%eax)
80108693: 8b 45 f4 mov -0xc(%ebp),%eax
80108696: 0f b6 90 95 00 00 00 movzbl 0x95(%eax),%edx
8010869d: 83 ca 80 or $0xffffff80,%edx
801086a0: 88 90 95 00 00 00 mov %dl,0x95(%eax)
801086a6: 8b 45 f4 mov -0xc(%ebp),%eax
801086a9: 0f b6 90 96 00 00 00 movzbl 0x96(%eax),%edx
801086b0: 83 ca 0f or $0xf,%edx
801086b3: 88 90 96 00 00 00 mov %dl,0x96(%eax)
801086b9: 8b 45 f4 mov -0xc(%ebp),%eax
801086bc: 0f b6 90 96 00 00 00 movzbl 0x96(%eax),%edx
801086c3: 83 e2 ef and $0xffffffef,%edx
801086c6: 88 90 96 00 00 00 mov %dl,0x96(%eax)
801086cc: 8b 45 f4 mov -0xc(%ebp),%eax
801086cf: 0f b6 90 96 00 00 00 movzbl 0x96(%eax),%edx
801086d6: 83 e2 df and $0xffffffdf,%edx
801086d9: 88 90 96 00 00 00 mov %dl,0x96(%eax)
801086df: 8b 45 f4 mov -0xc(%ebp),%eax
801086e2: 0f b6 90 96 00 00 00 movzbl 0x96(%eax),%edx
801086e9: 83 ca 40 or $0x40,%edx
801086ec: 88 90 96 00 00 00 mov %dl,0x96(%eax)
801086f2: 8b 45 f4 mov -0xc(%ebp),%eax
801086f5: 0f b6 90 96 00 00 00 movzbl 0x96(%eax),%edx
801086fc: 83 ca 80 or $0xffffff80,%edx
801086ff: 88 90 96 00 00 00 mov %dl,0x96(%eax)
80108705: 8b 45 f4 mov -0xc(%ebp),%eax
80108708: c6 80 97 00 00 00 00 movb $0x0,0x97(%eax)
c->gdt[SEG_UDATA] = SEG(STA_W, 0, 0xffffffff, DPL_USER);
8010870f: 8b 45 f4 mov -0xc(%ebp),%eax
80108712: 66 c7 80 98 00 00 00 movw $0xffff,0x98(%eax)
80108719: ff ff
8010871b: 8b 45 f4 mov -0xc(%ebp),%eax
8010871e: 66 c7 80 9a 00 00 00 movw $0x0,0x9a(%eax)
80108725: 00 00
80108727: 8b 45 f4 mov -0xc(%ebp),%eax
8010872a: c6 80 9c 00 00 00 00 movb $0x0,0x9c(%eax)
80108731: 8b 45 f4 mov -0xc(%ebp),%eax
80108734: 0f b6 90 9d 00 00 00 movzbl 0x9d(%eax),%edx
8010873b: 83 e2 f0 and $0xfffffff0,%edx
8010873e: 83 ca 02 or $0x2,%edx
80108741: 88 90 9d 00 00 00 mov %dl,0x9d(%eax)
80108747: 8b 45 f4 mov -0xc(%ebp),%eax
8010874a: 0f b6 90 9d 00 00 00 movzbl 0x9d(%eax),%edx
80108751: 83 ca 10 or $0x10,%edx
80108754: 88 90 9d 00 00 00 mov %dl,0x9d(%eax)
8010875a: 8b 45 f4 mov -0xc(%ebp),%eax
8010875d: 0f b6 90 9d 00 00 00 movzbl 0x9d(%eax),%edx
80108764: 83 ca 60 or $0x60,%edx
80108767: 88 90 9d 00 00 00 mov %dl,0x9d(%eax)
8010876d: 8b 45 f4 mov -0xc(%ebp),%eax
80108770: 0f b6 90 9d 00 00 00 movzbl 0x9d(%eax),%edx
80108777: 83 ca 80 or $0xffffff80,%edx
8010877a: 88 90 9d 00 00 00 mov %dl,0x9d(%eax)
80108780: 8b 45 f4 mov -0xc(%ebp),%eax
80108783: 0f b6 90 9e 00 00 00 movzbl 0x9e(%eax),%edx
8010878a: 83 ca 0f or $0xf,%edx
8010878d: 88 90 9e 00 00 00 mov %dl,0x9e(%eax)
80108793: 8b 45 f4 mov -0xc(%ebp),%eax
80108796: 0f b6 90 9e 00 00 00 movzbl 0x9e(%eax),%edx
8010879d: 83 e2 ef and $0xffffffef,%edx
801087a0: 88 90 9e 00 00 00 mov %dl,0x9e(%eax)
801087a6: 8b 45 f4 mov -0xc(%ebp),%eax
801087a9: 0f b6 90 9e 00 00 00 movzbl 0x9e(%eax),%edx
801087b0: 83 e2 df and $0xffffffdf,%edx
801087b3: 88 90 9e 00 00 00 mov %dl,0x9e(%eax)
801087b9: 8b 45 f4 mov -0xc(%ebp),%eax
801087bc: 0f b6 90 9e 00 00 00 movzbl 0x9e(%eax),%edx
801087c3: 83 ca 40 or $0x40,%edx
801087c6: 88 90 9e 00 00 00 mov %dl,0x9e(%eax)
801087cc: 8b 45 f4 mov -0xc(%ebp),%eax
801087cf: 0f b6 90 9e 00 00 00 movzbl 0x9e(%eax),%edx
801087d6: 83 ca 80 or $0xffffff80,%edx
801087d9: 88 90 9e 00 00 00 mov %dl,0x9e(%eax)
801087df: 8b 45 f4 mov -0xc(%ebp),%eax
801087e2: c6 80 9f 00 00 00 00 movb $0x0,0x9f(%eax)
// Map cpu, and curproc
c->gdt[SEG_KCPU] = SEG(STA_W, &c->cpu, 8, 0);
801087e9: 8b 45 f4 mov -0xc(%ebp),%eax
801087ec: 05 b4 00 00 00 add $0xb4,%eax
801087f1: 89 c3 mov %eax,%ebx
801087f3: 8b 45 f4 mov -0xc(%ebp),%eax
801087f6: 05 b4 00 00 00 add $0xb4,%eax
801087fb: c1 e8 10 shr $0x10,%eax
801087fe: 89 c1 mov %eax,%ecx
80108800: 8b 45 f4 mov -0xc(%ebp),%eax
80108803: 05 b4 00 00 00 add $0xb4,%eax
80108808: c1 e8 18 shr $0x18,%eax
8010880b: 89 c2 mov %eax,%edx
8010880d: 8b 45 f4 mov -0xc(%ebp),%eax
80108810: 66 c7 80 88 00 00 00 movw $0x0,0x88(%eax)
80108817: 00 00
80108819: 8b 45 f4 mov -0xc(%ebp),%eax
8010881c: 66 89 98 8a 00 00 00 mov %bx,0x8a(%eax)
80108823: 8b 45 f4 mov -0xc(%ebp),%eax
80108826: 88 88 8c 00 00 00 mov %cl,0x8c(%eax)
8010882c: 8b 45 f4 mov -0xc(%ebp),%eax
8010882f: 0f b6 88 8d 00 00 00 movzbl 0x8d(%eax),%ecx
80108836: 83 e1 f0 and $0xfffffff0,%ecx
80108839: 83 c9 02 or $0x2,%ecx
8010883c: 88 88 8d 00 00 00 mov %cl,0x8d(%eax)
80108842: 8b 45 f4 mov -0xc(%ebp),%eax
80108845: 0f b6 88 8d 00 00 00 movzbl 0x8d(%eax),%ecx
8010884c: 83 c9 10 or $0x10,%ecx
8010884f: 88 88 8d 00 00 00 mov %cl,0x8d(%eax)
80108855: 8b 45 f4 mov -0xc(%ebp),%eax
80108858: 0f b6 88 8d 00 00 00 movzbl 0x8d(%eax),%ecx
8010885f: 83 e1 9f and $0xffffff9f,%ecx
80108862: 88 88 8d 00 00 00 mov %cl,0x8d(%eax)
80108868: 8b 45 f4 mov -0xc(%ebp),%eax
8010886b: 0f b6 88 8d 00 00 00 movzbl 0x8d(%eax),%ecx
80108872: 83 c9 80 or $0xffffff80,%ecx
80108875: 88 88 8d 00 00 00 mov %cl,0x8d(%eax)
8010887b: 8b 45 f4 mov -0xc(%ebp),%eax
8010887e: 0f b6 88 8e 00 00 00 movzbl 0x8e(%eax),%ecx
80108885: 83 e1 f0 and $0xfffffff0,%ecx
80108888: 88 88 8e 00 00 00 mov %cl,0x8e(%eax)
8010888e: 8b 45 f4 mov -0xc(%ebp),%eax
80108891: 0f b6 88 8e 00 00 00 movzbl 0x8e(%eax),%ecx
80108898: 83 e1 ef and $0xffffffef,%ecx
8010889b: 88 88 8e 00 00 00 mov %cl,0x8e(%eax)
801088a1: 8b 45 f4 mov -0xc(%ebp),%eax
801088a4: 0f b6 88 8e 00 00 00 movzbl 0x8e(%eax),%ecx
801088ab: 83 e1 df and $0xffffffdf,%ecx
801088ae: 88 88 8e 00 00 00 mov %cl,0x8e(%eax)
801088b4: 8b 45 f4 mov -0xc(%ebp),%eax
801088b7: 0f b6 88 8e 00 00 00 movzbl 0x8e(%eax),%ecx
801088be: 83 c9 40 or $0x40,%ecx
801088c1: 88 88 8e 00 00 00 mov %cl,0x8e(%eax)
801088c7: 8b 45 f4 mov -0xc(%ebp),%eax
801088ca: 0f b6 88 8e 00 00 00 movzbl 0x8e(%eax),%ecx
801088d1: 83 c9 80 or $0xffffff80,%ecx
801088d4: 88 88 8e 00 00 00 mov %cl,0x8e(%eax)
801088da: 8b 45 f4 mov -0xc(%ebp),%eax
801088dd: 88 90 8f 00 00 00 mov %dl,0x8f(%eax)
lgdt(c->gdt, sizeof(c->gdt));
801088e3: 8b 45 f4 mov -0xc(%ebp),%eax
801088e6: 83 c0 70 add $0x70,%eax
801088e9: c7 44 24 04 38 00 00 movl $0x38,0x4(%esp)
801088f0: 00
801088f1: 89 04 24 mov %eax,(%esp)
801088f4: e8 37 fb ff ff call 80108430 <lgdt>
loadgs(SEG_KCPU << 3);
801088f9: c7 04 24 18 00 00 00 movl $0x18,(%esp)
80108900: e8 6a fb ff ff call 8010846f <loadgs>
// Initialize cpu-local storage.
cpu = c;
80108905: 8b 45 f4 mov -0xc(%ebp),%eax
80108908: 65 a3 00 00 00 00 mov %eax,%gs:0x0
proc = 0;
8010890e: 65 c7 05 04 00 00 00 movl $0x0,%gs:0x4
80108915: 00 00 00 00
}
80108919: 83 c4 24 add $0x24,%esp
8010891c: 5b pop %ebx
8010891d: 5d pop %ebp
8010891e: c3 ret
8010891f <walkpgdir>:
// Return the address of the PTE in page table pgdir
// that corresponds to virtual address va. If alloc!=0,
// create any required page table pages.
static pte_t *
walkpgdir(pde_t *pgdir, const void *va, int alloc)
{
8010891f: 55 push %ebp
80108920: 89 e5 mov %esp,%ebp
80108922: 83 ec 28 sub $0x28,%esp
pde_t *pde;
pte_t *pgtab;
pde = &pgdir[PDX(va)];
80108925: 8b 45 0c mov 0xc(%ebp),%eax
80108928: c1 e8 16 shr $0x16,%eax
8010892b: c1 e0 02 shl $0x2,%eax
8010892e: 03 45 08 add 0x8(%ebp),%eax
80108931: 89 45 f0 mov %eax,-0x10(%ebp)
if(*pde & PTE_P){
80108934: 8b 45 f0 mov -0x10(%ebp),%eax
80108937: 8b 00 mov (%eax),%eax
80108939: 83 e0 01 and $0x1,%eax
8010893c: 84 c0 test %al,%al
8010893e: 74 17 je 80108957 <walkpgdir+0x38>
pgtab = (pte_t*)p2v(PTE_ADDR(*pde));
80108940: 8b 45 f0 mov -0x10(%ebp),%eax
80108943: 8b 00 mov (%eax),%eax
80108945: 25 00 f0 ff ff and $0xfffff000,%eax
8010894a: 89 04 24 mov %eax,(%esp)
8010894d: e8 4a fb ff ff call 8010849c <p2v>
80108952: 89 45 f4 mov %eax,-0xc(%ebp)
80108955: eb 4b jmp 801089a2 <walkpgdir+0x83>
} else {
if(!alloc || (pgtab = (pte_t*)kalloc()) == 0)
80108957: 83 7d 10 00 cmpl $0x0,0x10(%ebp)
8010895b: 74 0e je 8010896b <walkpgdir+0x4c>
8010895d: e8 75 aa ff ff call 801033d7 <kalloc>
80108962: 89 45 f4 mov %eax,-0xc(%ebp)
80108965: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80108969: 75 07 jne 80108972 <walkpgdir+0x53>
return 0;
8010896b: b8 00 00 00 00 mov $0x0,%eax
80108970: eb 41 jmp 801089b3 <walkpgdir+0x94>
// Make sure all those PTE_P bits are zero.
memset(pgtab, 0, PGSIZE);
80108972: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80108979: 00
8010897a: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80108981: 00
80108982: 8b 45 f4 mov -0xc(%ebp),%eax
80108985: 89 04 24 mov %eax,(%esp)
80108988: e8 6d d4 ff ff call 80105dfa <memset>
// The permissions here are overly generous, but they can
// be further restricted by the permissions in the page table
// entries, if necessary.
*pde = v2p(pgtab) | PTE_P | PTE_W | PTE_U;
8010898d: 8b 45 f4 mov -0xc(%ebp),%eax
80108990: 89 04 24 mov %eax,(%esp)
80108993: e8 f7 fa ff ff call 8010848f <v2p>
80108998: 89 c2 mov %eax,%edx
8010899a: 83 ca 07 or $0x7,%edx
8010899d: 8b 45 f0 mov -0x10(%ebp),%eax
801089a0: 89 10 mov %edx,(%eax)
}
return &pgtab[PTX(va)];
801089a2: 8b 45 0c mov 0xc(%ebp),%eax
801089a5: c1 e8 0c shr $0xc,%eax
801089a8: 25 ff 03 00 00 and $0x3ff,%eax
801089ad: c1 e0 02 shl $0x2,%eax
801089b0: 03 45 f4 add -0xc(%ebp),%eax
}
801089b3: c9 leave
801089b4: c3 ret
801089b5 <mappages>:
// Create PTEs for virtual addresses starting at va that refer to
// physical addresses starting at pa. va and size might not
// be page-aligned.
static int
mappages(pde_t *pgdir, void *va, uint size, uint pa, int perm)
{
801089b5: 55 push %ebp
801089b6: 89 e5 mov %esp,%ebp
801089b8: 83 ec 28 sub $0x28,%esp
char *a, *last;
pte_t *pte;
a = (char*)PGROUNDDOWN((uint)va);
801089bb: 8b 45 0c mov 0xc(%ebp),%eax
801089be: 25 00 f0 ff ff and $0xfffff000,%eax
801089c3: 89 45 f4 mov %eax,-0xc(%ebp)
last = (char*)PGROUNDDOWN(((uint)va) + size - 1);
801089c6: 8b 45 0c mov 0xc(%ebp),%eax
801089c9: 03 45 10 add 0x10(%ebp),%eax
801089cc: 83 e8 01 sub $0x1,%eax
801089cf: 25 00 f0 ff ff and $0xfffff000,%eax
801089d4: 89 45 f0 mov %eax,-0x10(%ebp)
for(;;){
if((pte = walkpgdir(pgdir, a, 1)) == 0)
801089d7: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
801089de: 00
801089df: 8b 45 f4 mov -0xc(%ebp),%eax
801089e2: 89 44 24 04 mov %eax,0x4(%esp)
801089e6: 8b 45 08 mov 0x8(%ebp),%eax
801089e9: 89 04 24 mov %eax,(%esp)
801089ec: e8 2e ff ff ff call 8010891f <walkpgdir>
801089f1: 89 45 ec mov %eax,-0x14(%ebp)
801089f4: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
801089f8: 75 07 jne 80108a01 <mappages+0x4c>
return -1;
801089fa: b8 ff ff ff ff mov $0xffffffff,%eax
801089ff: eb 46 jmp 80108a47 <mappages+0x92>
if(*pte & PTE_P)
80108a01: 8b 45 ec mov -0x14(%ebp),%eax
80108a04: 8b 00 mov (%eax),%eax
80108a06: 83 e0 01 and $0x1,%eax
80108a09: 84 c0 test %al,%al
80108a0b: 74 0c je 80108a19 <mappages+0x64>
panic("remap");
80108a0d: c7 04 24 a8 98 10 80 movl $0x801098a8,(%esp)
80108a14: e8 24 7b ff ff call 8010053d <panic>
*pte = pa | perm | PTE_P;
80108a19: 8b 45 18 mov 0x18(%ebp),%eax
80108a1c: 0b 45 14 or 0x14(%ebp),%eax
80108a1f: 89 c2 mov %eax,%edx
80108a21: 83 ca 01 or $0x1,%edx
80108a24: 8b 45 ec mov -0x14(%ebp),%eax
80108a27: 89 10 mov %edx,(%eax)
if(a == last)
80108a29: 8b 45 f4 mov -0xc(%ebp),%eax
80108a2c: 3b 45 f0 cmp -0x10(%ebp),%eax
80108a2f: 74 10 je 80108a41 <mappages+0x8c>
break;
a += PGSIZE;
80108a31: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
pa += PGSIZE;
80108a38: 81 45 14 00 10 00 00 addl $0x1000,0x14(%ebp)
}
80108a3f: eb 96 jmp 801089d7 <mappages+0x22>
return -1;
if(*pte & PTE_P)
panic("remap");
*pte = pa | perm | PTE_P;
if(a == last)
break;
80108a41: 90 nop
a += PGSIZE;
pa += PGSIZE;
}
return 0;
80108a42: b8 00 00 00 00 mov $0x0,%eax
}
80108a47: c9 leave
80108a48: c3 ret
80108a49 <setupkvm>:
};
// Set up kernel part of a page table.
pde_t*
setupkvm(void)
{
80108a49: 55 push %ebp
80108a4a: 89 e5 mov %esp,%ebp
80108a4c: 53 push %ebx
80108a4d: 83 ec 34 sub $0x34,%esp
pde_t *pgdir;
struct kmap *k;
if((pgdir = (pde_t*)kalloc()) == 0)
80108a50: e8 82 a9 ff ff call 801033d7 <kalloc>
80108a55: 89 45 f0 mov %eax,-0x10(%ebp)
80108a58: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80108a5c: 75 0a jne 80108a68 <setupkvm+0x1f>
return 0;
80108a5e: b8 00 00 00 00 mov $0x0,%eax
80108a63: e9 98 00 00 00 jmp 80108b00 <setupkvm+0xb7>
memset(pgdir, 0, PGSIZE);
80108a68: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80108a6f: 00
80108a70: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80108a77: 00
80108a78: 8b 45 f0 mov -0x10(%ebp),%eax
80108a7b: 89 04 24 mov %eax,(%esp)
80108a7e: e8 77 d3 ff ff call 80105dfa <memset>
if (p2v(PHYSTOP) > (void*)DEVSPACE)
80108a83: c7 04 24 00 00 00 0e movl $0xe000000,(%esp)
80108a8a: e8 0d fa ff ff call 8010849c <p2v>
80108a8f: 3d 00 00 00 fe cmp $0xfe000000,%eax
80108a94: 76 0c jbe 80108aa2 <setupkvm+0x59>
panic("PHYSTOP too high");
80108a96: c7 04 24 ae 98 10 80 movl $0x801098ae,(%esp)
80108a9d: e8 9b 7a ff ff call 8010053d <panic>
for(k = kmap; k < &kmap[NELEM(kmap)]; k++)
80108aa2: c7 45 f4 c0 c4 10 80 movl $0x8010c4c0,-0xc(%ebp)
80108aa9: eb 49 jmp 80108af4 <setupkvm+0xab>
if(mappages(pgdir, k->virt, k->phys_end - k->phys_start,
(uint)k->phys_start, k->perm) < 0)
80108aab: 8b 45 f4 mov -0xc(%ebp),%eax
return 0;
memset(pgdir, 0, PGSIZE);
if (p2v(PHYSTOP) > (void*)DEVSPACE)
panic("PHYSTOP too high");
for(k = kmap; k < &kmap[NELEM(kmap)]; k++)
if(mappages(pgdir, k->virt, k->phys_end - k->phys_start,
80108aae: 8b 48 0c mov 0xc(%eax),%ecx
(uint)k->phys_start, k->perm) < 0)
80108ab1: 8b 45 f4 mov -0xc(%ebp),%eax
return 0;
memset(pgdir, 0, PGSIZE);
if (p2v(PHYSTOP) > (void*)DEVSPACE)
panic("PHYSTOP too high");
for(k = kmap; k < &kmap[NELEM(kmap)]; k++)
if(mappages(pgdir, k->virt, k->phys_end - k->phys_start,
80108ab4: 8b 50 04 mov 0x4(%eax),%edx
80108ab7: 8b 45 f4 mov -0xc(%ebp),%eax
80108aba: 8b 58 08 mov 0x8(%eax),%ebx
80108abd: 8b 45 f4 mov -0xc(%ebp),%eax
80108ac0: 8b 40 04 mov 0x4(%eax),%eax
80108ac3: 29 c3 sub %eax,%ebx
80108ac5: 8b 45 f4 mov -0xc(%ebp),%eax
80108ac8: 8b 00 mov (%eax),%eax
80108aca: 89 4c 24 10 mov %ecx,0x10(%esp)
80108ace: 89 54 24 0c mov %edx,0xc(%esp)
80108ad2: 89 5c 24 08 mov %ebx,0x8(%esp)
80108ad6: 89 44 24 04 mov %eax,0x4(%esp)
80108ada: 8b 45 f0 mov -0x10(%ebp),%eax
80108add: 89 04 24 mov %eax,(%esp)
80108ae0: e8 d0 fe ff ff call 801089b5 <mappages>
80108ae5: 85 c0 test %eax,%eax
80108ae7: 79 07 jns 80108af0 <setupkvm+0xa7>
(uint)k->phys_start, k->perm) < 0)
return 0;
80108ae9: b8 00 00 00 00 mov $0x0,%eax
80108aee: eb 10 jmp 80108b00 <setupkvm+0xb7>
if((pgdir = (pde_t*)kalloc()) == 0)
return 0;
memset(pgdir, 0, PGSIZE);
if (p2v(PHYSTOP) > (void*)DEVSPACE)
panic("PHYSTOP too high");
for(k = kmap; k < &kmap[NELEM(kmap)]; k++)
80108af0: 83 45 f4 10 addl $0x10,-0xc(%ebp)
80108af4: 81 7d f4 00 c5 10 80 cmpl $0x8010c500,-0xc(%ebp)
80108afb: 72 ae jb 80108aab <setupkvm+0x62>
if(mappages(pgdir, k->virt, k->phys_end - k->phys_start,
(uint)k->phys_start, k->perm) < 0)
return 0;
return pgdir;
80108afd: 8b 45 f0 mov -0x10(%ebp),%eax
}
80108b00: 83 c4 34 add $0x34,%esp
80108b03: 5b pop %ebx
80108b04: 5d pop %ebp
80108b05: c3 ret
80108b06 <kvmalloc>:
// Allocate one page table for the machine for the kernel address
// space for scheduler processes.
void
kvmalloc(void)
{
80108b06: 55 push %ebp
80108b07: 89 e5 mov %esp,%ebp
80108b09: 83 ec 08 sub $0x8,%esp
kpgdir = setupkvm();
80108b0c: e8 38 ff ff ff call 80108a49 <setupkvm>
80108b11: a3 78 6e 11 80 mov %eax,0x80116e78
switchkvm();
80108b16: e8 02 00 00 00 call 80108b1d <switchkvm>
}
80108b1b: c9 leave
80108b1c: c3 ret
80108b1d <switchkvm>:
// Switch h/w page table register to the kernel-only page table,
// for when no process is running.
void
switchkvm(void)
{
80108b1d: 55 push %ebp
80108b1e: 89 e5 mov %esp,%ebp
80108b20: 83 ec 04 sub $0x4,%esp
lcr3(v2p(kpgdir)); // switch to the kernel page table
80108b23: a1 78 6e 11 80 mov 0x80116e78,%eax
80108b28: 89 04 24 mov %eax,(%esp)
80108b2b: e8 5f f9 ff ff call 8010848f <v2p>
80108b30: 89 04 24 mov %eax,(%esp)
80108b33: e8 4c f9 ff ff call 80108484 <lcr3>
}
80108b38: c9 leave
80108b39: c3 ret
80108b3a <switchuvm>:
// Switch TSS and h/w page table to correspond to process p.
void
switchuvm(struct proc *p)
{
80108b3a: 55 push %ebp
80108b3b: 89 e5 mov %esp,%ebp
80108b3d: 53 push %ebx
80108b3e: 83 ec 14 sub $0x14,%esp
pushcli();
80108b41: e8 ad d1 ff ff call 80105cf3 <pushcli>
cpu->gdt[SEG_TSS] = SEG16(STS_T32A, &cpu->ts, sizeof(cpu->ts)-1, 0);
80108b46: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80108b4c: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
80108b53: 83 c2 08 add $0x8,%edx
80108b56: 89 d3 mov %edx,%ebx
80108b58: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
80108b5f: 83 c2 08 add $0x8,%edx
80108b62: c1 ea 10 shr $0x10,%edx
80108b65: 89 d1 mov %edx,%ecx
80108b67: 65 8b 15 00 00 00 00 mov %gs:0x0,%edx
80108b6e: 83 c2 08 add $0x8,%edx
80108b71: c1 ea 18 shr $0x18,%edx
80108b74: 66 c7 80 a0 00 00 00 movw $0x67,0xa0(%eax)
80108b7b: 67 00
80108b7d: 66 89 98 a2 00 00 00 mov %bx,0xa2(%eax)
80108b84: 88 88 a4 00 00 00 mov %cl,0xa4(%eax)
80108b8a: 0f b6 88 a5 00 00 00 movzbl 0xa5(%eax),%ecx
80108b91: 83 e1 f0 and $0xfffffff0,%ecx
80108b94: 83 c9 09 or $0x9,%ecx
80108b97: 88 88 a5 00 00 00 mov %cl,0xa5(%eax)
80108b9d: 0f b6 88 a5 00 00 00 movzbl 0xa5(%eax),%ecx
80108ba4: 83 c9 10 or $0x10,%ecx
80108ba7: 88 88 a5 00 00 00 mov %cl,0xa5(%eax)
80108bad: 0f b6 88 a5 00 00 00 movzbl 0xa5(%eax),%ecx
80108bb4: 83 e1 9f and $0xffffff9f,%ecx
80108bb7: 88 88 a5 00 00 00 mov %cl,0xa5(%eax)
80108bbd: 0f b6 88 a5 00 00 00 movzbl 0xa5(%eax),%ecx
80108bc4: 83 c9 80 or $0xffffff80,%ecx
80108bc7: 88 88 a5 00 00 00 mov %cl,0xa5(%eax)
80108bcd: 0f b6 88 a6 00 00 00 movzbl 0xa6(%eax),%ecx
80108bd4: 83 e1 f0 and $0xfffffff0,%ecx
80108bd7: 88 88 a6 00 00 00 mov %cl,0xa6(%eax)
80108bdd: 0f b6 88 a6 00 00 00 movzbl 0xa6(%eax),%ecx
80108be4: 83 e1 ef and $0xffffffef,%ecx
80108be7: 88 88 a6 00 00 00 mov %cl,0xa6(%eax)
80108bed: 0f b6 88 a6 00 00 00 movzbl 0xa6(%eax),%ecx
80108bf4: 83 e1 df and $0xffffffdf,%ecx
80108bf7: 88 88 a6 00 00 00 mov %cl,0xa6(%eax)
80108bfd: 0f b6 88 a6 00 00 00 movzbl 0xa6(%eax),%ecx
80108c04: 83 c9 40 or $0x40,%ecx
80108c07: 88 88 a6 00 00 00 mov %cl,0xa6(%eax)
80108c0d: 0f b6 88 a6 00 00 00 movzbl 0xa6(%eax),%ecx
80108c14: 83 e1 7f and $0x7f,%ecx
80108c17: 88 88 a6 00 00 00 mov %cl,0xa6(%eax)
80108c1d: 88 90 a7 00 00 00 mov %dl,0xa7(%eax)
cpu->gdt[SEG_TSS].s = 0;
80108c23: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80108c29: 0f b6 90 a5 00 00 00 movzbl 0xa5(%eax),%edx
80108c30: 83 e2 ef and $0xffffffef,%edx
80108c33: 88 90 a5 00 00 00 mov %dl,0xa5(%eax)
cpu->ts.ss0 = SEG_KDATA << 3;
80108c39: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80108c3f: 66 c7 40 10 10 00 movw $0x10,0x10(%eax)
cpu->ts.esp0 = (uint)proc->kstack + KSTACKSIZE;
80108c45: 65 a1 00 00 00 00 mov %gs:0x0,%eax
80108c4b: 65 8b 15 04 00 00 00 mov %gs:0x4,%edx
80108c52: 8b 52 08 mov 0x8(%edx),%edx
80108c55: 81 c2 00 10 00 00 add $0x1000,%edx
80108c5b: 89 50 0c mov %edx,0xc(%eax)
ltr(SEG_TSS << 3);
80108c5e: c7 04 24 30 00 00 00 movl $0x30,(%esp)
80108c65: e8 ef f7 ff ff call 80108459 <ltr>
if(p->pgdir == 0)
80108c6a: 8b 45 08 mov 0x8(%ebp),%eax
80108c6d: 8b 40 04 mov 0x4(%eax),%eax
80108c70: 85 c0 test %eax,%eax
80108c72: 75 0c jne 80108c80 <switchuvm+0x146>
panic("switchuvm: no pgdir");
80108c74: c7 04 24 bf 98 10 80 movl $0x801098bf,(%esp)
80108c7b: e8 bd 78 ff ff call 8010053d <panic>
lcr3(v2p(p->pgdir)); // switch to new address space
80108c80: 8b 45 08 mov 0x8(%ebp),%eax
80108c83: 8b 40 04 mov 0x4(%eax),%eax
80108c86: 89 04 24 mov %eax,(%esp)
80108c89: e8 01 f8 ff ff call 8010848f <v2p>
80108c8e: 89 04 24 mov %eax,(%esp)
80108c91: e8 ee f7 ff ff call 80108484 <lcr3>
popcli();
80108c96: e8 a0 d0 ff ff call 80105d3b <popcli>
}
80108c9b: 83 c4 14 add $0x14,%esp
80108c9e: 5b pop %ebx
80108c9f: 5d pop %ebp
80108ca0: c3 ret
80108ca1 <inituvm>:
// Load the initcode into address 0 of pgdir.
// sz must be less than a page.
void
inituvm(pde_t *pgdir, char *init, uint sz)
{
80108ca1: 55 push %ebp
80108ca2: 89 e5 mov %esp,%ebp
80108ca4: 83 ec 38 sub $0x38,%esp
char *mem;
if(sz >= PGSIZE)
80108ca7: 81 7d 10 ff 0f 00 00 cmpl $0xfff,0x10(%ebp)
80108cae: 76 0c jbe 80108cbc <inituvm+0x1b>
panic("inituvm: more than a page");
80108cb0: c7 04 24 d3 98 10 80 movl $0x801098d3,(%esp)
80108cb7: e8 81 78 ff ff call 8010053d <panic>
mem = kalloc();
80108cbc: e8 16 a7 ff ff call 801033d7 <kalloc>
80108cc1: 89 45 f4 mov %eax,-0xc(%ebp)
memset(mem, 0, PGSIZE);
80108cc4: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80108ccb: 00
80108ccc: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80108cd3: 00
80108cd4: 8b 45 f4 mov -0xc(%ebp),%eax
80108cd7: 89 04 24 mov %eax,(%esp)
80108cda: e8 1b d1 ff ff call 80105dfa <memset>
mappages(pgdir, 0, PGSIZE, v2p(mem), PTE_W|PTE_U);
80108cdf: 8b 45 f4 mov -0xc(%ebp),%eax
80108ce2: 89 04 24 mov %eax,(%esp)
80108ce5: e8 a5 f7 ff ff call 8010848f <v2p>
80108cea: c7 44 24 10 06 00 00 movl $0x6,0x10(%esp)
80108cf1: 00
80108cf2: 89 44 24 0c mov %eax,0xc(%esp)
80108cf6: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80108cfd: 00
80108cfe: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80108d05: 00
80108d06: 8b 45 08 mov 0x8(%ebp),%eax
80108d09: 89 04 24 mov %eax,(%esp)
80108d0c: e8 a4 fc ff ff call 801089b5 <mappages>
memmove(mem, init, sz);
80108d11: 8b 45 10 mov 0x10(%ebp),%eax
80108d14: 89 44 24 08 mov %eax,0x8(%esp)
80108d18: 8b 45 0c mov 0xc(%ebp),%eax
80108d1b: 89 44 24 04 mov %eax,0x4(%esp)
80108d1f: 8b 45 f4 mov -0xc(%ebp),%eax
80108d22: 89 04 24 mov %eax,(%esp)
80108d25: e8 a3 d1 ff ff call 80105ecd <memmove>
}
80108d2a: c9 leave
80108d2b: c3 ret
80108d2c <loaduvm>:
// Load a program segment into pgdir. addr must be page-aligned
// and the pages from addr to addr+sz must already be mapped.
int
loaduvm(pde_t *pgdir, char *addr, struct inode *ip, uint offset, uint sz)
{
80108d2c: 55 push %ebp
80108d2d: 89 e5 mov %esp,%ebp
80108d2f: 53 push %ebx
80108d30: 83 ec 24 sub $0x24,%esp
uint i, pa, n;
pte_t *pte;
if((uint) addr % PGSIZE != 0)
80108d33: 8b 45 0c mov 0xc(%ebp),%eax
80108d36: 25 ff 0f 00 00 and $0xfff,%eax
80108d3b: 85 c0 test %eax,%eax
80108d3d: 74 0c je 80108d4b <loaduvm+0x1f>
panic("loaduvm: addr must be page aligned");
80108d3f: c7 04 24 f0 98 10 80 movl $0x801098f0,(%esp)
80108d46: e8 f2 77 ff ff call 8010053d <panic>
for(i = 0; i < sz; i += PGSIZE){
80108d4b: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80108d52: e9 ad 00 00 00 jmp 80108e04 <loaduvm+0xd8>
if((pte = walkpgdir(pgdir, addr+i, 0)) == 0)
80108d57: 8b 45 f4 mov -0xc(%ebp),%eax
80108d5a: 8b 55 0c mov 0xc(%ebp),%edx
80108d5d: 01 d0 add %edx,%eax
80108d5f: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80108d66: 00
80108d67: 89 44 24 04 mov %eax,0x4(%esp)
80108d6b: 8b 45 08 mov 0x8(%ebp),%eax
80108d6e: 89 04 24 mov %eax,(%esp)
80108d71: e8 a9 fb ff ff call 8010891f <walkpgdir>
80108d76: 89 45 ec mov %eax,-0x14(%ebp)
80108d79: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
80108d7d: 75 0c jne 80108d8b <loaduvm+0x5f>
panic("loaduvm: address should exist");
80108d7f: c7 04 24 13 99 10 80 movl $0x80109913,(%esp)
80108d86: e8 b2 77 ff ff call 8010053d <panic>
pa = PTE_ADDR(*pte);
80108d8b: 8b 45 ec mov -0x14(%ebp),%eax
80108d8e: 8b 00 mov (%eax),%eax
80108d90: 25 00 f0 ff ff and $0xfffff000,%eax
80108d95: 89 45 e8 mov %eax,-0x18(%ebp)
if(sz - i < PGSIZE)
80108d98: 8b 45 f4 mov -0xc(%ebp),%eax
80108d9b: 8b 55 18 mov 0x18(%ebp),%edx
80108d9e: 89 d1 mov %edx,%ecx
80108da0: 29 c1 sub %eax,%ecx
80108da2: 89 c8 mov %ecx,%eax
80108da4: 3d ff 0f 00 00 cmp $0xfff,%eax
80108da9: 77 11 ja 80108dbc <loaduvm+0x90>
n = sz - i;
80108dab: 8b 45 f4 mov -0xc(%ebp),%eax
80108dae: 8b 55 18 mov 0x18(%ebp),%edx
80108db1: 89 d1 mov %edx,%ecx
80108db3: 29 c1 sub %eax,%ecx
80108db5: 89 c8 mov %ecx,%eax
80108db7: 89 45 f0 mov %eax,-0x10(%ebp)
80108dba: eb 07 jmp 80108dc3 <loaduvm+0x97>
else
n = PGSIZE;
80108dbc: c7 45 f0 00 10 00 00 movl $0x1000,-0x10(%ebp)
if(readi(ip, p2v(pa), offset+i, n) != n)
80108dc3: 8b 45 f4 mov -0xc(%ebp),%eax
80108dc6: 8b 55 14 mov 0x14(%ebp),%edx
80108dc9: 8d 1c 02 lea (%edx,%eax,1),%ebx
80108dcc: 8b 45 e8 mov -0x18(%ebp),%eax
80108dcf: 89 04 24 mov %eax,(%esp)
80108dd2: e8 c5 f6 ff ff call 8010849c <p2v>
80108dd7: 8b 55 f0 mov -0x10(%ebp),%edx
80108dda: 89 54 24 0c mov %edx,0xc(%esp)
80108dde: 89 5c 24 08 mov %ebx,0x8(%esp)
80108de2: 89 44 24 04 mov %eax,0x4(%esp)
80108de6: 8b 45 10 mov 0x10(%ebp),%eax
80108de9: 89 04 24 mov %eax,(%esp)
80108dec: e8 10 98 ff ff call 80102601 <readi>
80108df1: 3b 45 f0 cmp -0x10(%ebp),%eax
80108df4: 74 07 je 80108dfd <loaduvm+0xd1>
return -1;
80108df6: b8 ff ff ff ff mov $0xffffffff,%eax
80108dfb: eb 18 jmp 80108e15 <loaduvm+0xe9>
uint i, pa, n;
pte_t *pte;
if((uint) addr % PGSIZE != 0)
panic("loaduvm: addr must be page aligned");
for(i = 0; i < sz; i += PGSIZE){
80108dfd: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
80108e04: 8b 45 f4 mov -0xc(%ebp),%eax
80108e07: 3b 45 18 cmp 0x18(%ebp),%eax
80108e0a: 0f 82 47 ff ff ff jb 80108d57 <loaduvm+0x2b>
else
n = PGSIZE;
if(readi(ip, p2v(pa), offset+i, n) != n)
return -1;
}
return 0;
80108e10: b8 00 00 00 00 mov $0x0,%eax
}
80108e15: 83 c4 24 add $0x24,%esp
80108e18: 5b pop %ebx
80108e19: 5d pop %ebp
80108e1a: c3 ret
80108e1b <allocuvm>:
// Allocate page tables and physical memory to grow process from oldsz to
// newsz, which need not be page aligned. Returns new size or 0 on error.
int
allocuvm(pde_t *pgdir, uint oldsz, uint newsz)
{
80108e1b: 55 push %ebp
80108e1c: 89 e5 mov %esp,%ebp
80108e1e: 83 ec 38 sub $0x38,%esp
char *mem;
uint a;
if(newsz >= KERNBASE)
80108e21: 8b 45 10 mov 0x10(%ebp),%eax
80108e24: 85 c0 test %eax,%eax
80108e26: 79 0a jns 80108e32 <allocuvm+0x17>
return 0;
80108e28: b8 00 00 00 00 mov $0x0,%eax
80108e2d: e9 c1 00 00 00 jmp 80108ef3 <allocuvm+0xd8>
if(newsz < oldsz)
80108e32: 8b 45 10 mov 0x10(%ebp),%eax
80108e35: 3b 45 0c cmp 0xc(%ebp),%eax
80108e38: 73 08 jae 80108e42 <allocuvm+0x27>
return oldsz;
80108e3a: 8b 45 0c mov 0xc(%ebp),%eax
80108e3d: e9 b1 00 00 00 jmp 80108ef3 <allocuvm+0xd8>
a = PGROUNDUP(oldsz);
80108e42: 8b 45 0c mov 0xc(%ebp),%eax
80108e45: 05 ff 0f 00 00 add $0xfff,%eax
80108e4a: 25 00 f0 ff ff and $0xfffff000,%eax
80108e4f: 89 45 f4 mov %eax,-0xc(%ebp)
for(; a < newsz; a += PGSIZE){
80108e52: e9 8d 00 00 00 jmp 80108ee4 <allocuvm+0xc9>
mem = kalloc();
80108e57: e8 7b a5 ff ff call 801033d7 <kalloc>
80108e5c: 89 45 f0 mov %eax,-0x10(%ebp)
if(mem == 0){
80108e5f: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80108e63: 75 2c jne 80108e91 <allocuvm+0x76>
cprintf("allocuvm out of memory\n");
80108e65: c7 04 24 31 99 10 80 movl $0x80109931,(%esp)
80108e6c: e8 30 75 ff ff call 801003a1 <cprintf>
deallocuvm(pgdir, newsz, oldsz);
80108e71: 8b 45 0c mov 0xc(%ebp),%eax
80108e74: 89 44 24 08 mov %eax,0x8(%esp)
80108e78: 8b 45 10 mov 0x10(%ebp),%eax
80108e7b: 89 44 24 04 mov %eax,0x4(%esp)
80108e7f: 8b 45 08 mov 0x8(%ebp),%eax
80108e82: 89 04 24 mov %eax,(%esp)
80108e85: e8 6b 00 00 00 call 80108ef5 <deallocuvm>
return 0;
80108e8a: b8 00 00 00 00 mov $0x0,%eax
80108e8f: eb 62 jmp 80108ef3 <allocuvm+0xd8>
}
memset(mem, 0, PGSIZE);
80108e91: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80108e98: 00
80108e99: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
80108ea0: 00
80108ea1: 8b 45 f0 mov -0x10(%ebp),%eax
80108ea4: 89 04 24 mov %eax,(%esp)
80108ea7: e8 4e cf ff ff call 80105dfa <memset>
mappages(pgdir, (char*)a, PGSIZE, v2p(mem), PTE_W|PTE_U);
80108eac: 8b 45 f0 mov -0x10(%ebp),%eax
80108eaf: 89 04 24 mov %eax,(%esp)
80108eb2: e8 d8 f5 ff ff call 8010848f <v2p>
80108eb7: 8b 55 f4 mov -0xc(%ebp),%edx
80108eba: c7 44 24 10 06 00 00 movl $0x6,0x10(%esp)
80108ec1: 00
80108ec2: 89 44 24 0c mov %eax,0xc(%esp)
80108ec6: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80108ecd: 00
80108ece: 89 54 24 04 mov %edx,0x4(%esp)
80108ed2: 8b 45 08 mov 0x8(%ebp),%eax
80108ed5: 89 04 24 mov %eax,(%esp)
80108ed8: e8 d8 fa ff ff call 801089b5 <mappages>
return 0;
if(newsz < oldsz)
return oldsz;
a = PGROUNDUP(oldsz);
for(; a < newsz; a += PGSIZE){
80108edd: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
80108ee4: 8b 45 f4 mov -0xc(%ebp),%eax
80108ee7: 3b 45 10 cmp 0x10(%ebp),%eax
80108eea: 0f 82 67 ff ff ff jb 80108e57 <allocuvm+0x3c>
return 0;
}
memset(mem, 0, PGSIZE);
mappages(pgdir, (char*)a, PGSIZE, v2p(mem), PTE_W|PTE_U);
}
return newsz;
80108ef0: 8b 45 10 mov 0x10(%ebp),%eax
}
80108ef3: c9 leave
80108ef4: c3 ret
80108ef5 <deallocuvm>:
// newsz. oldsz and newsz need not be page-aligned, nor does newsz
// need to be less than oldsz. oldsz can be larger than the actual
// process size. Returns the new process size.
int
deallocuvm(pde_t *pgdir, uint oldsz, uint newsz)
{
80108ef5: 55 push %ebp
80108ef6: 89 e5 mov %esp,%ebp
80108ef8: 83 ec 28 sub $0x28,%esp
pte_t *pte;
uint a, pa;
if(newsz >= oldsz)
80108efb: 8b 45 10 mov 0x10(%ebp),%eax
80108efe: 3b 45 0c cmp 0xc(%ebp),%eax
80108f01: 72 08 jb 80108f0b <deallocuvm+0x16>
return oldsz;
80108f03: 8b 45 0c mov 0xc(%ebp),%eax
80108f06: e9 a4 00 00 00 jmp 80108faf <deallocuvm+0xba>
a = PGROUNDUP(newsz);
80108f0b: 8b 45 10 mov 0x10(%ebp),%eax
80108f0e: 05 ff 0f 00 00 add $0xfff,%eax
80108f13: 25 00 f0 ff ff and $0xfffff000,%eax
80108f18: 89 45 f4 mov %eax,-0xc(%ebp)
for(; a < oldsz; a += PGSIZE){
80108f1b: e9 80 00 00 00 jmp 80108fa0 <deallocuvm+0xab>
pte = walkpgdir(pgdir, (char*)a, 0);
80108f20: 8b 45 f4 mov -0xc(%ebp),%eax
80108f23: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80108f2a: 00
80108f2b: 89 44 24 04 mov %eax,0x4(%esp)
80108f2f: 8b 45 08 mov 0x8(%ebp),%eax
80108f32: 89 04 24 mov %eax,(%esp)
80108f35: e8 e5 f9 ff ff call 8010891f <walkpgdir>
80108f3a: 89 45 f0 mov %eax,-0x10(%ebp)
if(!pte)
80108f3d: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80108f41: 75 09 jne 80108f4c <deallocuvm+0x57>
a += (NPTENTRIES - 1) * PGSIZE;
80108f43: 81 45 f4 00 f0 3f 00 addl $0x3ff000,-0xc(%ebp)
80108f4a: eb 4d jmp 80108f99 <deallocuvm+0xa4>
else if((*pte & PTE_P) != 0){
80108f4c: 8b 45 f0 mov -0x10(%ebp),%eax
80108f4f: 8b 00 mov (%eax),%eax
80108f51: 83 e0 01 and $0x1,%eax
80108f54: 84 c0 test %al,%al
80108f56: 74 41 je 80108f99 <deallocuvm+0xa4>
pa = PTE_ADDR(*pte);
80108f58: 8b 45 f0 mov -0x10(%ebp),%eax
80108f5b: 8b 00 mov (%eax),%eax
80108f5d: 25 00 f0 ff ff and $0xfffff000,%eax
80108f62: 89 45 ec mov %eax,-0x14(%ebp)
if(pa == 0)
80108f65: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
80108f69: 75 0c jne 80108f77 <deallocuvm+0x82>
panic("kfree");
80108f6b: c7 04 24 49 99 10 80 movl $0x80109949,(%esp)
80108f72: e8 c6 75 ff ff call 8010053d <panic>
char *v = p2v(pa);
80108f77: 8b 45 ec mov -0x14(%ebp),%eax
80108f7a: 89 04 24 mov %eax,(%esp)
80108f7d: e8 1a f5 ff ff call 8010849c <p2v>
80108f82: 89 45 e8 mov %eax,-0x18(%ebp)
kfree(v);
80108f85: 8b 45 e8 mov -0x18(%ebp),%eax
80108f88: 89 04 24 mov %eax,(%esp)
80108f8b: e8 ae a3 ff ff call 8010333e <kfree>
*pte = 0;
80108f90: 8b 45 f0 mov -0x10(%ebp),%eax
80108f93: c7 00 00 00 00 00 movl $0x0,(%eax)
if(newsz >= oldsz)
return oldsz;
a = PGROUNDUP(newsz);
for(; a < oldsz; a += PGSIZE){
80108f99: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
80108fa0: 8b 45 f4 mov -0xc(%ebp),%eax
80108fa3: 3b 45 0c cmp 0xc(%ebp),%eax
80108fa6: 0f 82 74 ff ff ff jb 80108f20 <deallocuvm+0x2b>
char *v = p2v(pa);
kfree(v);
*pte = 0;
}
}
return newsz;
80108fac: 8b 45 10 mov 0x10(%ebp),%eax
}
80108faf: c9 leave
80108fb0: c3 ret
80108fb1 <freevm>:
// Free a page table and all the physical memory pages
// in the user part.
void
freevm(pde_t *pgdir)
{
80108fb1: 55 push %ebp
80108fb2: 89 e5 mov %esp,%ebp
80108fb4: 83 ec 28 sub $0x28,%esp
uint i;
if(pgdir == 0)
80108fb7: 83 7d 08 00 cmpl $0x0,0x8(%ebp)
80108fbb: 75 0c jne 80108fc9 <freevm+0x18>
panic("freevm: no pgdir");
80108fbd: c7 04 24 4f 99 10 80 movl $0x8010994f,(%esp)
80108fc4: e8 74 75 ff ff call 8010053d <panic>
deallocuvm(pgdir, KERNBASE, 0);
80108fc9: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
80108fd0: 00
80108fd1: c7 44 24 04 00 00 00 movl $0x80000000,0x4(%esp)
80108fd8: 80
80108fd9: 8b 45 08 mov 0x8(%ebp),%eax
80108fdc: 89 04 24 mov %eax,(%esp)
80108fdf: e8 11 ff ff ff call 80108ef5 <deallocuvm>
for(i = 0; i < NPDENTRIES; i++){
80108fe4: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
80108feb: eb 3c jmp 80109029 <freevm+0x78>
if(pgdir[i] & PTE_P){
80108fed: 8b 45 f4 mov -0xc(%ebp),%eax
80108ff0: c1 e0 02 shl $0x2,%eax
80108ff3: 03 45 08 add 0x8(%ebp),%eax
80108ff6: 8b 00 mov (%eax),%eax
80108ff8: 83 e0 01 and $0x1,%eax
80108ffb: 84 c0 test %al,%al
80108ffd: 74 26 je 80109025 <freevm+0x74>
char * v = p2v(PTE_ADDR(pgdir[i]));
80108fff: 8b 45 f4 mov -0xc(%ebp),%eax
80109002: c1 e0 02 shl $0x2,%eax
80109005: 03 45 08 add 0x8(%ebp),%eax
80109008: 8b 00 mov (%eax),%eax
8010900a: 25 00 f0 ff ff and $0xfffff000,%eax
8010900f: 89 04 24 mov %eax,(%esp)
80109012: e8 85 f4 ff ff call 8010849c <p2v>
80109017: 89 45 f0 mov %eax,-0x10(%ebp)
kfree(v);
8010901a: 8b 45 f0 mov -0x10(%ebp),%eax
8010901d: 89 04 24 mov %eax,(%esp)
80109020: e8 19 a3 ff ff call 8010333e <kfree>
uint i;
if(pgdir == 0)
panic("freevm: no pgdir");
deallocuvm(pgdir, KERNBASE, 0);
for(i = 0; i < NPDENTRIES; i++){
80109025: 83 45 f4 01 addl $0x1,-0xc(%ebp)
80109029: 81 7d f4 ff 03 00 00 cmpl $0x3ff,-0xc(%ebp)
80109030: 76 bb jbe 80108fed <freevm+0x3c>
if(pgdir[i] & PTE_P){
char * v = p2v(PTE_ADDR(pgdir[i]));
kfree(v);
}
}
kfree((char*)pgdir);
80109032: 8b 45 08 mov 0x8(%ebp),%eax
80109035: 89 04 24 mov %eax,(%esp)
80109038: e8 01 a3 ff ff call 8010333e <kfree>
}
8010903d: c9 leave
8010903e: c3 ret
8010903f <clearpteu>:
// Clear PTE_U on a page. Used to create an inaccessible
// page beneath the user stack.
void
clearpteu(pde_t *pgdir, char *uva)
{
8010903f: 55 push %ebp
80109040: 89 e5 mov %esp,%ebp
80109042: 83 ec 28 sub $0x28,%esp
pte_t *pte;
pte = walkpgdir(pgdir, uva, 0);
80109045: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
8010904c: 00
8010904d: 8b 45 0c mov 0xc(%ebp),%eax
80109050: 89 44 24 04 mov %eax,0x4(%esp)
80109054: 8b 45 08 mov 0x8(%ebp),%eax
80109057: 89 04 24 mov %eax,(%esp)
8010905a: e8 c0 f8 ff ff call 8010891f <walkpgdir>
8010905f: 89 45 f4 mov %eax,-0xc(%ebp)
if(pte == 0)
80109062: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
80109066: 75 0c jne 80109074 <clearpteu+0x35>
panic("clearpteu");
80109068: c7 04 24 60 99 10 80 movl $0x80109960,(%esp)
8010906f: e8 c9 74 ff ff call 8010053d <panic>
*pte &= ~PTE_U;
80109074: 8b 45 f4 mov -0xc(%ebp),%eax
80109077: 8b 00 mov (%eax),%eax
80109079: 89 c2 mov %eax,%edx
8010907b: 83 e2 fb and $0xfffffffb,%edx
8010907e: 8b 45 f4 mov -0xc(%ebp),%eax
80109081: 89 10 mov %edx,(%eax)
}
80109083: c9 leave
80109084: c3 ret
80109085 <copyuvm>:
// Given a parent process's page table, create a copy
// of it for a child.
pde_t*
copyuvm(pde_t *pgdir, uint sz)
{
80109085: 55 push %ebp
80109086: 89 e5 mov %esp,%ebp
80109088: 53 push %ebx
80109089: 83 ec 44 sub $0x44,%esp
pde_t *d;
pte_t *pte;
uint pa, i, flags;
char *mem;
if((d = setupkvm()) == 0)
8010908c: e8 b8 f9 ff ff call 80108a49 <setupkvm>
80109091: 89 45 f0 mov %eax,-0x10(%ebp)
80109094: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
80109098: 75 0a jne 801090a4 <copyuvm+0x1f>
return 0;
8010909a: b8 00 00 00 00 mov $0x0,%eax
8010909f: e9 fd 00 00 00 jmp 801091a1 <copyuvm+0x11c>
for(i = 0; i < sz; i += PGSIZE){
801090a4: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
801090ab: e9 cc 00 00 00 jmp 8010917c <copyuvm+0xf7>
if((pte = walkpgdir(pgdir, (void *) i, 0)) == 0)
801090b0: 8b 45 f4 mov -0xc(%ebp),%eax
801090b3: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
801090ba: 00
801090bb: 89 44 24 04 mov %eax,0x4(%esp)
801090bf: 8b 45 08 mov 0x8(%ebp),%eax
801090c2: 89 04 24 mov %eax,(%esp)
801090c5: e8 55 f8 ff ff call 8010891f <walkpgdir>
801090ca: 89 45 ec mov %eax,-0x14(%ebp)
801090cd: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
801090d1: 75 0c jne 801090df <copyuvm+0x5a>
panic("copyuvm: pte should exist");
801090d3: c7 04 24 6a 99 10 80 movl $0x8010996a,(%esp)
801090da: e8 5e 74 ff ff call 8010053d <panic>
if(!(*pte & PTE_P))
801090df: 8b 45 ec mov -0x14(%ebp),%eax
801090e2: 8b 00 mov (%eax),%eax
801090e4: 83 e0 01 and $0x1,%eax
801090e7: 85 c0 test %eax,%eax
801090e9: 75 0c jne 801090f7 <copyuvm+0x72>
panic("copyuvm: page not present");
801090eb: c7 04 24 84 99 10 80 movl $0x80109984,(%esp)
801090f2: e8 46 74 ff ff call 8010053d <panic>
pa = PTE_ADDR(*pte);
801090f7: 8b 45 ec mov -0x14(%ebp),%eax
801090fa: 8b 00 mov (%eax),%eax
801090fc: 25 00 f0 ff ff and $0xfffff000,%eax
80109101: 89 45 e8 mov %eax,-0x18(%ebp)
flags = PTE_FLAGS(*pte);
80109104: 8b 45 ec mov -0x14(%ebp),%eax
80109107: 8b 00 mov (%eax),%eax
80109109: 25 ff 0f 00 00 and $0xfff,%eax
8010910e: 89 45 e4 mov %eax,-0x1c(%ebp)
if((mem = kalloc()) == 0)
80109111: e8 c1 a2 ff ff call 801033d7 <kalloc>
80109116: 89 45 e0 mov %eax,-0x20(%ebp)
80109119: 83 7d e0 00 cmpl $0x0,-0x20(%ebp)
8010911d: 74 6e je 8010918d <copyuvm+0x108>
goto bad;
memmove(mem, (char*)p2v(pa), PGSIZE);
8010911f: 8b 45 e8 mov -0x18(%ebp),%eax
80109122: 89 04 24 mov %eax,(%esp)
80109125: e8 72 f3 ff ff call 8010849c <p2v>
8010912a: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80109131: 00
80109132: 89 44 24 04 mov %eax,0x4(%esp)
80109136: 8b 45 e0 mov -0x20(%ebp),%eax
80109139: 89 04 24 mov %eax,(%esp)
8010913c: e8 8c cd ff ff call 80105ecd <memmove>
if(mappages(d, (void*)i, PGSIZE, v2p(mem), flags) < 0)
80109141: 8b 5d e4 mov -0x1c(%ebp),%ebx
80109144: 8b 45 e0 mov -0x20(%ebp),%eax
80109147: 89 04 24 mov %eax,(%esp)
8010914a: e8 40 f3 ff ff call 8010848f <v2p>
8010914f: 8b 55 f4 mov -0xc(%ebp),%edx
80109152: 89 5c 24 10 mov %ebx,0x10(%esp)
80109156: 89 44 24 0c mov %eax,0xc(%esp)
8010915a: c7 44 24 08 00 10 00 movl $0x1000,0x8(%esp)
80109161: 00
80109162: 89 54 24 04 mov %edx,0x4(%esp)
80109166: 8b 45 f0 mov -0x10(%ebp),%eax
80109169: 89 04 24 mov %eax,(%esp)
8010916c: e8 44 f8 ff ff call 801089b5 <mappages>
80109171: 85 c0 test %eax,%eax
80109173: 78 1b js 80109190 <copyuvm+0x10b>
uint pa, i, flags;
char *mem;
if((d = setupkvm()) == 0)
return 0;
for(i = 0; i < sz; i += PGSIZE){
80109175: 81 45 f4 00 10 00 00 addl $0x1000,-0xc(%ebp)
8010917c: 8b 45 f4 mov -0xc(%ebp),%eax
8010917f: 3b 45 0c cmp 0xc(%ebp),%eax
80109182: 0f 82 28 ff ff ff jb 801090b0 <copyuvm+0x2b>
goto bad;
memmove(mem, (char*)p2v(pa), PGSIZE);
if(mappages(d, (void*)i, PGSIZE, v2p(mem), flags) < 0)
goto bad;
}
return d;
80109188: 8b 45 f0 mov -0x10(%ebp),%eax
8010918b: eb 14 jmp 801091a1 <copyuvm+0x11c>
if(!(*pte & PTE_P))
panic("copyuvm: page not present");
pa = PTE_ADDR(*pte);
flags = PTE_FLAGS(*pte);
if((mem = kalloc()) == 0)
goto bad;
8010918d: 90 nop
8010918e: eb 01 jmp 80109191 <copyuvm+0x10c>
memmove(mem, (char*)p2v(pa), PGSIZE);
if(mappages(d, (void*)i, PGSIZE, v2p(mem), flags) < 0)
goto bad;
80109190: 90 nop
}
return d;
bad:
freevm(d);
80109191: 8b 45 f0 mov -0x10(%ebp),%eax
80109194: 89 04 24 mov %eax,(%esp)
80109197: e8 15 fe ff ff call 80108fb1 <freevm>
return 0;
8010919c: b8 00 00 00 00 mov $0x0,%eax
}
801091a1: 83 c4 44 add $0x44,%esp
801091a4: 5b pop %ebx
801091a5: 5d pop %ebp
801091a6: c3 ret
801091a7 <uva2ka>:
//PAGEBREAK!
// Map user virtual address to kernel address.
char*
uva2ka(pde_t *pgdir, char *uva)
{
801091a7: 55 push %ebp
801091a8: 89 e5 mov %esp,%ebp
801091aa: 83 ec 28 sub $0x28,%esp
pte_t *pte;
pte = walkpgdir(pgdir, uva, 0);
801091ad: c7 44 24 08 00 00 00 movl $0x0,0x8(%esp)
801091b4: 00
801091b5: 8b 45 0c mov 0xc(%ebp),%eax
801091b8: 89 44 24 04 mov %eax,0x4(%esp)
801091bc: 8b 45 08 mov 0x8(%ebp),%eax
801091bf: 89 04 24 mov %eax,(%esp)
801091c2: e8 58 f7 ff ff call 8010891f <walkpgdir>
801091c7: 89 45 f4 mov %eax,-0xc(%ebp)
if((*pte & PTE_P) == 0)
801091ca: 8b 45 f4 mov -0xc(%ebp),%eax
801091cd: 8b 00 mov (%eax),%eax
801091cf: 83 e0 01 and $0x1,%eax
801091d2: 85 c0 test %eax,%eax
801091d4: 75 07 jne 801091dd <uva2ka+0x36>
return 0;
801091d6: b8 00 00 00 00 mov $0x0,%eax
801091db: eb 25 jmp 80109202 <uva2ka+0x5b>
if((*pte & PTE_U) == 0)
801091dd: 8b 45 f4 mov -0xc(%ebp),%eax
801091e0: 8b 00 mov (%eax),%eax
801091e2: 83 e0 04 and $0x4,%eax
801091e5: 85 c0 test %eax,%eax
801091e7: 75 07 jne 801091f0 <uva2ka+0x49>
return 0;
801091e9: b8 00 00 00 00 mov $0x0,%eax
801091ee: eb 12 jmp 80109202 <uva2ka+0x5b>
return (char*)p2v(PTE_ADDR(*pte));
801091f0: 8b 45 f4 mov -0xc(%ebp),%eax
801091f3: 8b 00 mov (%eax),%eax
801091f5: 25 00 f0 ff ff and $0xfffff000,%eax
801091fa: 89 04 24 mov %eax,(%esp)
801091fd: e8 9a f2 ff ff call 8010849c <p2v>
}
80109202: c9 leave
80109203: c3 ret
80109204 <copyout>:
// Copy len bytes from p to user address va in page table pgdir.
// Most useful when pgdir is not the current page table.
// uva2ka ensures this only works for PTE_U pages.
int
copyout(pde_t *pgdir, uint va, void *p, uint len)
{
80109204: 55 push %ebp
80109205: 89 e5 mov %esp,%ebp
80109207: 83 ec 28 sub $0x28,%esp
char *buf, *pa0;
uint n, va0;
buf = (char*)p;
8010920a: 8b 45 10 mov 0x10(%ebp),%eax
8010920d: 89 45 f4 mov %eax,-0xc(%ebp)
while(len > 0){
80109210: e9 8b 00 00 00 jmp 801092a0 <copyout+0x9c>
va0 = (uint)PGROUNDDOWN(va);
80109215: 8b 45 0c mov 0xc(%ebp),%eax
80109218: 25 00 f0 ff ff and $0xfffff000,%eax
8010921d: 89 45 ec mov %eax,-0x14(%ebp)
pa0 = uva2ka(pgdir, (char*)va0);
80109220: 8b 45 ec mov -0x14(%ebp),%eax
80109223: 89 44 24 04 mov %eax,0x4(%esp)
80109227: 8b 45 08 mov 0x8(%ebp),%eax
8010922a: 89 04 24 mov %eax,(%esp)
8010922d: e8 75 ff ff ff call 801091a7 <uva2ka>
80109232: 89 45 e8 mov %eax,-0x18(%ebp)
if(pa0 == 0)
80109235: 83 7d e8 00 cmpl $0x0,-0x18(%ebp)
80109239: 75 07 jne 80109242 <copyout+0x3e>
return -1;
8010923b: b8 ff ff ff ff mov $0xffffffff,%eax
80109240: eb 6d jmp 801092af <copyout+0xab>
n = PGSIZE - (va - va0);
80109242: 8b 45 0c mov 0xc(%ebp),%eax
80109245: 8b 55 ec mov -0x14(%ebp),%edx
80109248: 89 d1 mov %edx,%ecx
8010924a: 29 c1 sub %eax,%ecx
8010924c: 89 c8 mov %ecx,%eax
8010924e: 05 00 10 00 00 add $0x1000,%eax
80109253: 89 45 f0 mov %eax,-0x10(%ebp)
if(n > len)
80109256: 8b 45 f0 mov -0x10(%ebp),%eax
80109259: 3b 45 14 cmp 0x14(%ebp),%eax
8010925c: 76 06 jbe 80109264 <copyout+0x60>
n = len;
8010925e: 8b 45 14 mov 0x14(%ebp),%eax
80109261: 89 45 f0 mov %eax,-0x10(%ebp)
memmove(pa0 + (va - va0), buf, n);
80109264: 8b 45 ec mov -0x14(%ebp),%eax
80109267: 8b 55 0c mov 0xc(%ebp),%edx
8010926a: 89 d1 mov %edx,%ecx
8010926c: 29 c1 sub %eax,%ecx
8010926e: 89 c8 mov %ecx,%eax
80109270: 03 45 e8 add -0x18(%ebp),%eax
80109273: 8b 55 f0 mov -0x10(%ebp),%edx
80109276: 89 54 24 08 mov %edx,0x8(%esp)
8010927a: 8b 55 f4 mov -0xc(%ebp),%edx
8010927d: 89 54 24 04 mov %edx,0x4(%esp)
80109281: 89 04 24 mov %eax,(%esp)
80109284: e8 44 cc ff ff call 80105ecd <memmove>
len -= n;
80109289: 8b 45 f0 mov -0x10(%ebp),%eax
8010928c: 29 45 14 sub %eax,0x14(%ebp)
buf += n;
8010928f: 8b 45 f0 mov -0x10(%ebp),%eax
80109292: 01 45 f4 add %eax,-0xc(%ebp)
va = va0 + PGSIZE;
80109295: 8b 45 ec mov -0x14(%ebp),%eax
80109298: 05 00 10 00 00 add $0x1000,%eax
8010929d: 89 45 0c mov %eax,0xc(%ebp)
{
char *buf, *pa0;
uint n, va0;
buf = (char*)p;
while(len > 0){
801092a0: 83 7d 14 00 cmpl $0x0,0x14(%ebp)
801092a4: 0f 85 6b ff ff ff jne 80109215 <copyout+0x11>
memmove(pa0 + (va - va0), buf, n);
len -= n;
buf += n;
va = va0 + PGSIZE;
}
return 0;
801092aa: b8 00 00 00 00 mov $0x0,%eax
}
801092af: c9 leave
801092b0: c3 ret
| 38.012938 | 162 | 0.540771 |
28fc75719bdc16851abbdb458f7efde30cba8dd9 | 977 | podspec | Ruby | DynamicButtonStack.podspec | carabina/DynamicButtonStack | a6466a9b7d6f35468e4610016f173a26626c91bf | [
"MIT"
] | 1 | 2020-04-13T15:37:16.000Z | 2020-04-13T15:37:16.000Z | DynamicButtonStack.podspec | carabina/DynamicButtonStack | a6466a9b7d6f35468e4610016f173a26626c91bf | [
"MIT"
] | null | null | null | DynamicButtonStack.podspec | carabina/DynamicButtonStack | a6466a9b7d6f35468e4610016f173a26626c91bf | [
"MIT"
] | null | null | null | Pod::Spec.new do |spec|
spec.name = 'DynamicButtonStack'
spec.module_name = 'DynamicButtonStackKit' # Module name must be different from the class name.
spec.version = '1.0.1'
spec.license = { :type => 'MIT', :file => 'License.txt' }
spec.homepage = 'https://github.com/douglashill/DynamicButtonStack'
spec.authors = { 'Douglas Hill' => 'https://twitter.com/qdoug' }
spec.summary = 'A view that dynamically lays out a collection of buttons to suit the button content and the available space.'
spec.description = <<-DESC
A view for UIKit apps that dynamically lays out a collection of UIButtons in either a column or a row to suit the button content and the available space.
DESC
spec.source = { :git => 'https://github.com/douglashill/DynamicButtonStack.git', :tag => spec.version.to_s }
spec.swift_version = '5.0'
spec.ios.deployment_target = '13.0'
spec.source_files = 'DynamicButtonStack.swift'
end
| 48.85 | 153 | 0.689867 |
d6e863fcbbeadf409b2a6e4959b7dfb58c28770f | 97 | sql | SQL | 数据实验及报告/ex3/SQLQuery7.sql | lmy12367/The-second-half-of-sophomore | 1af02e01384030774b9c0f5ec0932d228280852c | [
"Apache-2.0"
] | 1 | 2020-12-22T15:41:10.000Z | 2020-12-22T15:41:10.000Z | 数据实验及报告/ex3/SQLQuery7.sql | lmy12367/The-second-half-of-sophomore | 1af02e01384030774b9c0f5ec0932d228280852c | [
"Apache-2.0"
] | null | null | null | 数据实验及报告/ex3/SQLQuery7.sql | lmy12367/The-second-half-of-sophomore | 1af02e01384030774b9c0f5ec0932d228280852c | [
"Apache-2.0"
] | null | null | null | use EDUC
delete
from student
where
sAge < 20 and
clsNO = 'CS02'
select * from student | 10.777778 | 21 | 0.659794 |
416b3b26caea57bc9efedc66bca1dbe6d5410767 | 378 | h | C | src/command.h | lollek/Rogue14 | f730fc4fcad56fdabf5e0a257e371b437e2c789d | [
"BSD-3-Clause"
] | 1 | 2016-10-12T20:55:49.000Z | 2016-10-12T20:55:49.000Z | src/command.h | lollek/Rogue14 | f730fc4fcad56fdabf5e0a257e371b437e2c789d | [
"BSD-3-Clause"
] | 99 | 2015-04-22T18:46:52.000Z | 2016-02-07T14:59:49.000Z | src/command.h | lollek/Misty-Mountains | f730fc4fcad56fdabf5e0a257e371b437e2c789d | [
"BSD-3-Clause"
] | null | null | null | #pragma once
int command(); /* Processes the user commands */
bool command_stop(bool stop_fighting);
void command_signal_quit(int sig); /* Have player make certain, then exit */
/* Exit the program abnormally */
void command_signal_endit(int sig) __attribute__((noreturn));
/* Leave quickly, but curteously */
void command_signal_leave(int sig) __attribute__((noreturn));
| 29.076923 | 77 | 0.756614 |
bb5bd409144588bc57b0e551d2c42c118feb5ad7 | 552,110 | html | HTML | molmap/example/fingerprint_4506_cosine_umap_scatter.html | riversdark/bidd-molmap | 7e3325433e2f29c189161859c63398574af6572b | [
"MIT"
] | 75 | 2020-07-07T01:18:30.000Z | 2022-03-25T13:40:19.000Z | molmap/example/fingerprint_4506_cosine_umap_scatter.html | lfc350760007/bidd-molmap | 2a157dfdaec6f2c7952bafe3da95d78958a54f48 | [
"MIT"
] | 12 | 2020-09-28T14:11:17.000Z | 2022-02-10T04:33:25.000Z | molmap/example/fingerprint_4506_cosine_umap_scatter.html | lfc350760007/bidd-molmap | 2a157dfdaec6f2c7952bafe3da95d78958a54f48 | [
"MIT"
] | 24 | 2020-07-22T08:52:59.000Z | 2022-03-14T09:59:44.000Z | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href="https://www.highcharts.com/highslide/highslide.css" rel="stylesheet" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="https://code.highcharts.com/6/highcharts.js"></script>
<script type="text/javascript" src="https://code.highcharts.com/6/highcharts-more.js"></script>
<script type="text/javascript" src="https://code.highcharts.com/6/modules/heatmap.js"></script>
<script type="text/javascript" src="https://code.highcharts.com/6/modules/exporting.js"></script>
</head>
<body style="margin:0;padding:0">
<div id="container" style="width:1000px;height:850px;">Loading....</div>
<script>
$(function(){
Highcharts.setOptions({"global": {}, "lang": {}});
var option = {"chart": {"renderTo": "container", "width": 1000, "height": 850, "type": "scatter", "zoomType": "xy"}, "colors": {}, "credits": {"enabled": false}, "drilldown": {}, "exporting": {}, "labels": {}, "legend": {"align": "right", "layout": "vertical", "margin": 1, "verticalAlign": "top", "y": 40, "symbolHeight": 12, "floating": false}, "loading": {}, "navigation": {}, "pane": {}, "plotOptions": {"scatter": {"marker": {"radius": 3, "states": {"hover": {"enabled": true, "lineColor": "rgb(100,100,100)"}}}, "states": {"hover": {"marker": {"enabled": false}}}, "tooltip": {"headerFormat": "<b>{series.name}</b><br>", "pointFormat": "{point.IDs}"}}, "series": {"turboThreshold": 5000}}, "series": {}, "subtitle": {"text": "number of fingerprint: 4506, metric method: cosine"}, "title": {"text": "2D emmbedding of fingerprint based on umap method"}, "tooltip": {}, "xAxis": {"title": {"enabled": true, "text": "X", "style": {"fontSize": 20}}, "labels": {"style": {"fontSize": 20}}, "gridLineWidth": 1, "startOnTick": true, "endOnTick": true, "showLastLabel": true}, "yAxis": {"title": {"text": "Y", "style": {"fontSize": 20}}, "labels": {"style": {"fontSize": 20}}, "gridLineWidth": 1}};
var chart = new Highcharts.Chart(option);
var data = [{"data": [{"x": 2.690810441970825, "y": -5.21108341217041, "IDs": "PharmacoErGFP121", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.146486282348633, "y": -3.8923733234405518, "IDs": "PharmacoErGFP317", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5111150741577148, "y": -4.710822582244873, "IDs": "PharmacoErGFP96", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7496085166931152, "y": -4.290757179260254, "IDs": "PharmacoErGFP209", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.55515718460083, "y": -5.123218536376953, "IDs": "PharmacoErGFP26", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.668088972568512, "y": -4.4826836585998535, "IDs": "PharmacoErGFP109", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7485476136207581, "y": -3.8771493434906006, "IDs": "PharmacoErGFP114", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.67442786693573, "y": -4.183637619018555, "IDs": "PharmacoErGFP405", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.03536856174469, "y": -5.1838250160217285, "IDs": "PharmacoErGFP272", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.556267738342285, "y": -4.479094982147217, "IDs": "PharmacoErGFP250", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.4674886465072632, "y": -5.678815841674805, "IDs": "PharmacoErGFP271", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3965188264846802, "y": -4.1639509201049805, "IDs": "PharmacoErGFP156", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1491193771362305, "y": -4.294070243835449, "IDs": "PharmacoErGFP54", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.20945405960083, "y": -4.131872177124023, "IDs": "PharmacoErGFP174", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.440172791481018, "y": -4.370234966278076, "IDs": "PharmacoErGFP399", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1095333099365234, "y": -4.013306140899658, "IDs": "PharmacoErGFP176", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.605532646179199, "y": -4.613036155700684, "IDs": "PharmacoErGFP330", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.94221031665802, "y": -3.9410738945007324, "IDs": "PharmacoErGFP359", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4363476037979126, "y": -3.8066563606262207, "IDs": "PharmacoErGFP119", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4942396879196167, "y": -4.1828932762146, "IDs": "PharmacoErGFP56", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7679464221000671, "y": -3.5085513591766357, "IDs": "PharmacoErGFP415", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0522822141647339, "y": -5.421712875366211, "IDs": "PharmacoErGFP224", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 4.39804744720459, "y": -6.34996223449707, "IDs": "PharmacoErGFP401", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.17220616340637207, "y": -6.340283393859863, "IDs": "PharmacoErGFP188", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3287107944488525, "y": -4.235745429992676, "IDs": "PharmacoErGFP14", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.01971561275422573, "y": -4.359138011932373, "IDs": "PharmacoErGFP291", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5480942726135254, "y": -4.512391090393066, "IDs": "PharmacoErGFP199", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.369407057762146, "y": -4.8437371253967285, "IDs": "PharmacoErGFP274", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1448683738708496, "y": -4.124925136566162, "IDs": "PharmacoErGFP255", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.856233835220337, "y": -4.7471418380737305, "IDs": "PharmacoErGFP324", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9843858480453491, "y": -3.9801406860351562, "IDs": "PharmacoErGFP78", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3080283403396606, "y": -3.865760564804077, "IDs": "PharmacoErGFP296", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.27352169156074524, "y": -4.820824146270752, "IDs": "PharmacoErGFP49", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5799576044082642, "y": -6.6730756759643555, "IDs": "PharmacoErGFP83", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.8665739893913269, "y": -6.898541450500488, "IDs": "PharmacoErGFP360", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1025055646896362, "y": -5.35247278213501, "IDs": "PharmacoErGFP140", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5607637166976929, "y": -4.471140384674072, "IDs": "PharmacoErGFP279", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.4372779130935669, "y": -3.99869441986084, "IDs": "PharmacoErGFP113", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.36988890171051025, "y": -6.51172399520874, "IDs": "PharmacoErGFP187", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.9687464237213135, "y": -5.379709243774414, "IDs": "PharmacoErGFP225", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1304981708526611, "y": -5.395125389099121, "IDs": "PharmacoErGFP145", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.162677049636841, "y": -4.06284236907959, "IDs": "PharmacoErGFP75", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.8319336771965027, "y": -5.305018901824951, "IDs": "PharmacoErGFP193", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.5470901727676392, "y": -5.746267318725586, "IDs": "PharmacoErGFP371", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2736680507659912, "y": -3.700056552886963, "IDs": "PharmacoErGFP219", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.22639286518096924, "y": -4.564095497131348, "IDs": "PharmacoErGFP10", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.6836494207382202, "y": -5.456624984741211, "IDs": "PharmacoErGFP2", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.5799100399017334, "y": -4.480778217315674, "IDs": "PharmacoErGFP69", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.725400686264038, "y": -4.5806403160095215, "IDs": "PharmacoErGFP348", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.6383192539215088, "y": -5.24373197555542, "IDs": "PharmacoErGFP25", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7742242217063904, "y": -6.835995197296143, "IDs": "PharmacoErGFP362", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6578032970428467, "y": -6.668483734130859, "IDs": "PharmacoErGFP81", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.397544264793396, "y": -4.229164123535156, "IDs": "PharmacoErGFP55", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1931272745132446, "y": -4.977880477905273, "IDs": "PharmacoErGFP27", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.246649831533432, "y": -6.414517879486084, "IDs": "PharmacoErGFP87", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0607175827026367, "y": -5.305968284606934, "IDs": "PharmacoErGFP45", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.634169101715088, "y": -4.444521903991699, "IDs": "PharmacoErGFP306", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.3924913704395294, "y": -3.8482141494750977, "IDs": "PharmacoErGFP409", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.8880271911621094, "y": -4.400758743286133, "IDs": "PharmacoErGFP336", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.9076173305511475, "y": -4.6984124183654785, "IDs": "PharmacoErGFP246", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1383575201034546, "y": -3.544823408126831, "IDs": "PharmacoErGFP418", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.9643042683601379, "y": -3.993034601211548, "IDs": "PharmacoErGFP294", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.10689057409763336, "y": -6.14951229095459, "IDs": "PharmacoErGFP89", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.236802339553833, "y": -4.092267990112305, "IDs": "PharmacoErGFP312", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.016885321587324142, "y": -4.008460521697998, "IDs": "PharmacoErGFP212", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.33486470580101013, "y": -3.5912978649139404, "IDs": "PharmacoErGFP413", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.37095773220062256, "y": -6.458282470703125, "IDs": "PharmacoErGFP266", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5030722618103027, "y": -4.546741962432861, "IDs": "PharmacoErGFP130", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2793794870376587, "y": -4.77662992477417, "IDs": "PharmacoErGFP395", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.524771213531494, "y": -5.309013843536377, "IDs": "PharmacoErGFP123", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.5532290935516357, "y": -4.459684371948242, "IDs": "PharmacoErGFP70", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.6379645466804504, "y": -4.099809646606445, "IDs": "PharmacoErGFP293", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1510944366455078, "y": -5.494744777679443, "IDs": "PharmacoErGFP223", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.2572591304779053, "y": -4.5018391609191895, "IDs": "PharmacoErGFP131", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4752693176269531, "y": -4.860065937042236, "IDs": "PharmacoErGFP376", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.9852588772773743, "y": -3.732912302017212, "IDs": "PharmacoErGFP216", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.28835633397102356, "y": -6.530329704284668, "IDs": "PharmacoErGFP367", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.152263879776001, "y": -5.0055928230285645, "IDs": "PharmacoErGFP125", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.800964593887329, "y": -4.643948554992676, "IDs": "PharmacoErGFP66", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.9188785552978516, "y": -4.99249792098999, "IDs": "PharmacoErGFP203", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.07808094471693039, "y": -6.0739426612854, "IDs": "PharmacoErGFP269", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7928750514984131, "y": -3.706014394760132, "IDs": "PharmacoErGFP215", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.9023609161376953, "y": -4.738127708435059, "IDs": "PharmacoErGFP247", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9996055364608765, "y": -3.9450743198394775, "IDs": "PharmacoErGFP357", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.07833363860845566, "y": -4.2966461181640625, "IDs": "PharmacoErGFP132", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.552094578742981, "y": -4.50620174407959, "IDs": "PharmacoErGFP99", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.086195945739746, "y": -3.959460973739624, "IDs": "PharmacoErGFP319", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5551419258117676, "y": -3.95461106300354, "IDs": "PharmacoErGFP239", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.849170207977295, "y": -4.758119583129883, "IDs": "PharmacoErGFP321", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1571414470672607, "y": -3.9970874786376953, "IDs": "PharmacoErGFP295", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.47321781516075134, "y": -6.65436315536499, "IDs": "PharmacoErGFP365", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.844546914100647, "y": -4.313936710357666, "IDs": "PharmacoErGFP339", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.734114646911621, "y": -5.4061808586120605, "IDs": "PharmacoErGFP3", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.2772064805030823, "y": -4.517822742462158, "IDs": "PharmacoErGFP290", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1258151531219482, "y": -5.395137310028076, "IDs": "PharmacoErGFP282", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8551554679870605, "y": -4.7415771484375, "IDs": "PharmacoErGFP341", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.205819845199585, "y": -4.069185733795166, "IDs": "PharmacoErGFP313", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 4.579467296600342, "y": -6.779023170471191, "IDs": "PharmacoErGFP400", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1634249687194824, "y": -4.186776161193848, "IDs": "PharmacoErGFP253", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.2401676177978516, "y": -5.460543632507324, "IDs": "PharmacoErGFP42", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.9146082401275635, "y": -4.284503936767578, "IDs": "PharmacoErGFP53", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5321131944656372, "y": -3.9885928630828857, "IDs": "PharmacoErGFP58", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0020506381988525, "y": -5.300540924072266, "IDs": "PharmacoErGFP286", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.329512596130371, "y": -4.160083770751953, "IDs": "PharmacoErGFP311", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5431084036827087, "y": -6.669559955596924, "IDs": "PharmacoErGFP84", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.3019113540649414, "y": -5.773530960083008, "IDs": "PharmacoErGFP390", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6224029064178467, "y": -4.464406967163086, "IDs": "PharmacoErGFP305", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1097774505615234, "y": -4.660562515258789, "IDs": "PharmacoErGFP128", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.8944077491760254, "y": -5.201305389404297, "IDs": "PharmacoErGFP393", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.4749215543270111, "y": -6.597659111022949, "IDs": "PharmacoErGFP186", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4410686492919922, "y": -4.086000442504883, "IDs": "PharmacoErGFP15", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6008874177932739, "y": -5.011669635772705, "IDs": "PharmacoErGFP8", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5939831733703613, "y": -3.8877716064453125, "IDs": "PharmacoErGFP408", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.6194919347763062, "y": -5.433311462402344, "IDs": "PharmacoErGFP192", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.9697964191436768, "y": -3.496140956878662, "IDs": "PharmacoErGFP417", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7268674373626709, "y": -6.664610862731934, "IDs": "PharmacoErGFP80", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8203043937683105, "y": -4.692736625671387, "IDs": "PharmacoErGFP344", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.6591432094573975, "y": -5.260869979858398, "IDs": "PharmacoErGFP122", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7536265850067139, "y": -5.204493522644043, "IDs": "PharmacoErGFP148", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3103023767471313, "y": -4.019958972930908, "IDs": "PharmacoErGFP138", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.2498518228530884, "y": -4.815399169921875, "IDs": "PharmacoErGFP127", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.20579726994037628, "y": -4.345828533172607, "IDs": "PharmacoErGFP32", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.4966156780719757, "y": -3.867457389831543, "IDs": "PharmacoErGFP214", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.9544544219970703, "y": -4.708036422729492, "IDs": "PharmacoErGFP245", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6958730220794678, "y": -4.701404571533203, "IDs": "PharmacoErGFP303", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.8598471879959106, "y": -4.3496246337890625, "IDs": "PharmacoErGFP337", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1300525665283203, "y": -3.5881567001342773, "IDs": "PharmacoErGFP419", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.1853993982076645, "y": -5.939152240753174, "IDs": "PharmacoErGFP389", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0693410634994507, "y": -5.482914447784424, "IDs": "PharmacoErGFP283", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8839166164398193, "y": -4.798885345458984, "IDs": "PharmacoErGFP323", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.4728817343711853, "y": -4.229637622833252, "IDs": "PharmacoErGFP33", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.8700588941574097, "y": -4.64764928817749, "IDs": "PharmacoErGFP206", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.365811347961426, "y": -4.305535316467285, "IDs": "PharmacoErGFP72", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8015434741973877, "y": -4.668934345245361, "IDs": "PharmacoErGFP346", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6565630435943604, "y": -4.5439982414245605, "IDs": "PharmacoErGFP68", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.5131745338439941, "y": -5.529149055480957, "IDs": "PharmacoErGFP40", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8754851818084717, "y": -4.7304606437683105, "IDs": "PharmacoErGFP162", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4509446620941162, "y": -4.172823429107666, "IDs": "PharmacoErGFP235", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.1887074112892151, "y": -4.240139007568359, "IDs": "PharmacoErGFP292", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1462647914886475, "y": -4.008143901824951, "IDs": "PharmacoErGFP316", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9240632057189941, "y": -4.382108688354492, "IDs": "PharmacoErGFP335", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7902603149414062, "y": -4.670627593994141, "IDs": "PharmacoErGFP166", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3845423460006714, "y": -3.8399016857147217, "IDs": "PharmacoErGFP297", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4501231908798218, "y": -4.749174118041992, "IDs": "PharmacoErGFP275", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.9248067736625671, "y": -5.0607452392578125, "IDs": "PharmacoErGFP7", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4735244512557983, "y": -3.98691463470459, "IDs": "PharmacoErGFP39", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.305185079574585, "y": -4.202044486999512, "IDs": "PharmacoErGFP352", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4305987358093262, "y": -4.367914199829102, "IDs": "PharmacoErGFP398", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8429391384124756, "y": -4.720805644989014, "IDs": "PharmacoErGFP62", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8725929260253906, "y": -4.7533674240112305, "IDs": "PharmacoErGFP325", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.3511329889297485, "y": -5.476486682891846, "IDs": "PharmacoErGFP43", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.32631516456604, "y": -4.695863246917725, "IDs": "PharmacoErGFP396", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.4895140528678894, "y": -6.594196796417236, "IDs": "PharmacoErGFP85", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.896411657333374, "y": -4.950516223907471, "IDs": "PharmacoErGFP201", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.7253354787826538, "y": -5.102189540863037, "IDs": "PharmacoErGFP105", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2544467449188232, "y": -4.0745697021484375, "IDs": "PharmacoErGFP36", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.041774272918701, "y": -3.9440550804138184, "IDs": "PharmacoErGFP318", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9747915267944336, "y": -3.956324815750122, "IDs": "PharmacoErGFP259", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6368017792701721, "y": -6.66853141784668, "IDs": "PharmacoErGFP182", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8355085849761963, "y": -4.677742004394531, "IDs": "PharmacoErGFP347", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1230369806289673, "y": -5.388254165649414, "IDs": "PharmacoErGFP142", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3583154678344727, "y": -3.745594024658203, "IDs": "PharmacoErGFP117", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5113524198532104, "y": -4.117638111114502, "IDs": "PharmacoErGFP236", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.391964077949524, "y": -3.7224020957946777, "IDs": "PharmacoErGFP118", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.27382931113243103, "y": -4.210315227508545, "IDs": "PharmacoErGFP133", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.533880352973938, "y": -4.0369954109191895, "IDs": "PharmacoErGFP158", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6911044120788574, "y": -4.563622951507568, "IDs": "PharmacoErGFP169", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.2813678979873657, "y": -4.026281356811523, "IDs": "PharmacoErGFP211", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.116926908493042, "y": -5.3782830238342285, "IDs": "PharmacoErGFP102", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.399219274520874, "y": -4.855100154876709, "IDs": "PharmacoErGFP95", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5499403476715088, "y": -3.930220603942871, "IDs": "PharmacoErGFP18", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5055426359176636, "y": -4.0602335929870605, "IDs": "PharmacoErGFP157", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7939226031303406, "y": -4.609063148498535, "IDs": "PharmacoErGFP129", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.3154812753200531, "y": -4.585860252380371, "IDs": "PharmacoErGFP30", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1551597118377686, "y": -4.438477516174316, "IDs": "PharmacoErGFP333", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5313907861709595, "y": -3.983036518096924, "IDs": "PharmacoErGFP17", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.1566259115934372, "y": -4.6097025871276855, "IDs": "PharmacoErGFP50", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.539825677871704, "y": -4.625372409820557, "IDs": "PharmacoErGFP301", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.985562801361084, "y": -5.301310062408447, "IDs": "PharmacoErGFP92", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.46395593881607056, "y": -4.4686713218688965, "IDs": "PharmacoErGFP11", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.6546853184700012, "y": -4.149144172668457, "IDs": "PharmacoErGFP134", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5421558618545532, "y": -4.096088886260986, "IDs": "PharmacoErGFP238", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6576381325721741, "y": -6.761332035064697, "IDs": "PharmacoErGFP181", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1844866275787354, "y": -5.378854751586914, "IDs": "PharmacoErGFP144", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.3860116004943848, "y": -4.230024814605713, "IDs": "PharmacoErGFP310", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.010482659563422203, "y": -3.667562246322632, "IDs": "PharmacoErGFP411", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.507561445236206, "y": -4.408909320831299, "IDs": "PharmacoErGFP171", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8949153423309326, "y": -4.8219218254089355, "IDs": "PharmacoErGFP240", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.6923991441726685, "y": -5.46132755279541, "IDs": "PharmacoErGFP1", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.33584046363830566, "y": -4.750882625579834, "IDs": "PharmacoErGFP9", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6162062883377075, "y": -5.017909049987793, "IDs": "PharmacoErGFP48", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5123647451400757, "y": -4.673791408538818, "IDs": "PharmacoErGFP378", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.307638645172119, "y": -4.516045093536377, "IDs": "PharmacoErGFP332", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1138229370117188, "y": -4.352535724639893, "IDs": "PharmacoErGFP233", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7638643980026245, "y": -5.04387092590332, "IDs": "PharmacoErGFP288", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.015639305114746, "y": -3.986769199371338, "IDs": "PharmacoErGFP178", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.6165311336517334, "y": -5.368199348449707, "IDs": "PharmacoErGFP4", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.39236462116241455, "y": -4.618547439575195, "IDs": "PharmacoErGFP231", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.8752333521842957, "y": -3.5094525814056396, "IDs": "PharmacoErGFP416", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8251986503601074, "y": -4.7126874923706055, "IDs": "PharmacoErGFP60", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9925107955932617, "y": -4.425648212432861, "IDs": "PharmacoErGFP334", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.069873809814453, "y": -3.955162763595581, "IDs": "PharmacoErGFP257", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6040747761726379, "y": -6.6518635749816895, "IDs": "PharmacoErGFP82", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.646595001220703, "y": -4.688107013702393, "IDs": "PharmacoErGFP329", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.4859718978404999, "y": -6.520253658294678, "IDs": "PharmacoErGFP265", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.390244722366333, "y": -4.0979132652282715, "IDs": "PharmacoErGFP406", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.421257495880127, "y": -5.515302658081055, "IDs": "PharmacoErGFP41", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5514633655548096, "y": -4.050447940826416, "IDs": "PharmacoErGFP16", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5653336644172668, "y": -6.531851768493652, "IDs": "PharmacoErGFP264", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.9911965131759644, "y": -5.43951416015625, "IDs": "PharmacoErGFP23", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.010244668461382389, "y": -6.199797630310059, "IDs": "PharmacoErGFP388", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.591142475605011, "y": -4.377255916595459, "IDs": "PharmacoErGFP12", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.467597484588623, "y": -4.86212158203125, "IDs": "PharmacoErGFP375", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.464942693710327, "y": -5.248476982116699, "IDs": "PharmacoErGFP124", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.3969641625881195, "y": -6.585832595825195, "IDs": "PharmacoErGFP366", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.22338835895061493, "y": -4.661396503448486, "IDs": "PharmacoErGFP150", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.2969021797180176, "y": -4.231750011444092, "IDs": "PharmacoErGFP173", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.5695146918296814, "y": -5.717004299163818, "IDs": "PharmacoErGFP91", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2798577547073364, "y": -4.985387325286865, "IDs": "PharmacoErGFP195", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0306439399719238, "y": -4.332411289215088, "IDs": "PharmacoErGFP208", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.131157636642456, "y": -4.085313320159912, "IDs": "PharmacoErGFP175", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6865925788879395, "y": -4.589388370513916, "IDs": "PharmacoErGFP304", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.081072211265564, "y": -5.394199371337891, "IDs": "PharmacoErGFP285", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.803713083267212, "y": -4.690117835998535, "IDs": "PharmacoErGFP161", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.2739573121070862, "y": -6.0428056716918945, "IDs": "PharmacoErGFP370", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.504608690738678, "y": -6.648787498474121, "IDs": "PharmacoErGFP184", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.3362271785736084, "y": -5.561397075653076, "IDs": "PharmacoErGFP221", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5496903657913208, "y": -4.671204090118408, "IDs": "PharmacoErGFP97", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.8896088600158691, "y": -5.238539218902588, "IDs": "PharmacoErGFP104", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.373145818710327, "y": -4.3618974685668945, "IDs": "PharmacoErGFP251", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.115588665008545, "y": -4.0241827964782715, "IDs": "PharmacoErGFP76", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7857489585876465, "y": -4.762475967407227, "IDs": "PharmacoErGFP327", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.04424351081252098, "y": -6.166104793548584, "IDs": "PharmacoErGFP189", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.13599556684494019, "y": -4.482405662536621, "IDs": "PharmacoErGFP151", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3964664936065674, "y": -3.976475238800049, "IDs": "PharmacoErGFP38", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.212808609008789, "y": -3.7948012351989746, "IDs": "PharmacoErGFP116", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7245230078697205, "y": -5.382539749145508, "IDs": "PharmacoErGFP392", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.821369171142578, "y": -4.693282604217529, "IDs": "PharmacoErGFP340", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.988783836364746, "y": -5.0277910232543945, "IDs": "PharmacoErGFP202", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2566020488739014, "y": -4.879092216491699, "IDs": "PharmacoErGFP273", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5948206782341003, "y": -6.691836357116699, "IDs": "PharmacoErGFP180", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.9132847785949707, "y": -5.358859062194824, "IDs": "PharmacoErGFP100", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.358431577682495, "y": -4.300563812255859, "IDs": "PharmacoErGFP404", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7431368827819824, "y": -4.610240459442139, "IDs": "PharmacoErGFP248", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8169970512390137, "y": -4.693181037902832, "IDs": "PharmacoErGFP63", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.541663408279419, "y": -4.434770584106445, "IDs": "PharmacoErGFP350", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6455533504486084, "y": -4.534109592437744, "IDs": "PharmacoErGFP349", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5624344944953918, "y": -6.698288440704346, "IDs": "PharmacoErGFP382", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.411918878555298, "y": -4.356290340423584, "IDs": "PharmacoErGFP71", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.369922399520874, "y": -6.503782749176025, "IDs": "PharmacoErGFP387", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.8330888748168945, "y": -4.8638916015625, "IDs": "PharmacoErGFP126", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.45405203104019165, "y": -6.551416397094727, "IDs": "PharmacoErGFP86", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.280717134475708, "y": -5.460569381713867, "IDs": "PharmacoErGFP44", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.8912010192871094, "y": -4.145421504974365, "IDs": "PharmacoErGFP135", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.20070646703243256, "y": -5.92141056060791, "IDs": "PharmacoErGFP190", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5408486127853394, "y": -4.558199405670166, "IDs": "PharmacoErGFP98", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 3.149970531463623, "y": -5.17106294631958, "IDs": "PharmacoErGFP200", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7522942423820496, "y": -5.522764682769775, "IDs": "PharmacoErGFP372", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.9532837867736816, "y": -4.794079780578613, "IDs": "PharmacoErGFP244", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.109380841255188, "y": -5.0378241539001465, "IDs": "PharmacoErGFP6", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5864763259887695, "y": -4.066232681274414, "IDs": "PharmacoErGFP57", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1871873140335083, "y": -5.400230884552002, "IDs": "PharmacoErGFP280", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.2177696228027344, "y": -4.142800807952881, "IDs": "PharmacoErGFP353", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.0906822681427, "y": -4.0305681228637695, "IDs": "PharmacoErGFP256", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8829808235168457, "y": -4.734643936157227, "IDs": "PharmacoErGFP326", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8440864086151123, "y": -4.759463310241699, "IDs": "PharmacoErGFP320", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.571509599685669, "y": -4.459107875823975, "IDs": "PharmacoErGFP170", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.6574987769126892, "y": -4.34954833984375, "IDs": "PharmacoErGFP52", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.12748153507709503, "y": -4.023273468017578, "IDs": "PharmacoErGFP112", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6659707427024841, "y": -6.740513324737549, "IDs": "PharmacoErGFP380", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8282322883605957, "y": -4.702256202697754, "IDs": "PharmacoErGFP342", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.5663759112358093, "y": -3.575941324234009, "IDs": "PharmacoErGFP414", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1105337142944336, "y": -3.6326096057891846, "IDs": "PharmacoErGFP420", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.21158626675605774, "y": -5.919073104858398, "IDs": "PharmacoErGFP270", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.36913689970970154, "y": -5.6872429847717285, "IDs": "PharmacoErGFP191", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.723806619644165, "y": -4.71927547454834, "IDs": "PharmacoErGFP328", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1655304431915283, "y": -4.123804092407227, "IDs": "PharmacoErGFP74", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.3767435848712921, "y": -4.305882930755615, "IDs": "PharmacoErGFP110", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.9300901293754578, "y": -5.198702335357666, "IDs": "PharmacoErGFP47", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.10850617289543152, "y": -6.401299476623535, "IDs": "PharmacoErGFP368", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.2141567468643188, "y": -4.424296855926514, "IDs": "PharmacoErGFP207", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.01143217086792, "y": -5.267900466918945, "IDs": "PharmacoErGFP46", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.147902488708496, "y": -3.6945407390594482, "IDs": "PharmacoErGFP218", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.03951895236969, "y": -4.698241233825684, "IDs": "PharmacoErGFP108", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.488952398300171, "y": -3.82151460647583, "IDs": "PharmacoErGFP299", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4993574619293213, "y": -4.685536861419678, "IDs": "PharmacoErGFP276", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7864081859588623, "y": -4.66541051864624, "IDs": "PharmacoErGFP65", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.8064785003662109, "y": -6.820066928863525, "IDs": "PharmacoErGFP361", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.02815505489706993, "y": -6.217440128326416, "IDs": "PharmacoErGFP369", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4990571737289429, "y": -4.735747814178467, "IDs": "PharmacoErGFP377", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.0624208450317383, "y": -4.002089500427246, "IDs": "PharmacoErGFP177", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.007059845142066479, "y": -4.4142231941223145, "IDs": "PharmacoErGFP31", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6157337427139282, "y": -6.642857551574707, "IDs": "PharmacoErGFP183", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7556963562965393, "y": -4.470465183258057, "IDs": "PharmacoErGFP232", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.979339599609375, "y": -3.9915199279785156, "IDs": "PharmacoErGFP79", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 4.325908660888672, "y": -6.025341987609863, "IDs": "PharmacoErGFP402", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2183549404144287, "y": -5.041651248931885, "IDs": "PharmacoErGFP93", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.032611969858407974, "y": -4.121326923370361, "IDs": "PharmacoErGFP111", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.0980039834976196, "y": -3.711737871170044, "IDs": "PharmacoErGFP217", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.427696943283081, "y": -4.296633243560791, "IDs": "PharmacoErGFP309", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.303627848625183, "y": -4.960732936859131, "IDs": "PharmacoErGFP94", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.409522294998169, "y": -5.260134696960449, "IDs": "PharmacoErGFP5", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9697438478469849, "y": -3.9238808155059814, "IDs": "PharmacoErGFP358", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.477854013442993, "y": -4.576014995574951, "IDs": "PharmacoErGFP331", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.322532296180725, "y": -4.861196041107178, "IDs": "PharmacoErGFP107", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0910863876342773, "y": -5.367603302001953, "IDs": "PharmacoErGFP284", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.84899640083313, "y": -4.723409652709961, "IDs": "PharmacoErGFP164", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.2660117149353027, "y": -4.2816290855407715, "IDs": "PharmacoErGFP252", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1925201416015625, "y": -5.411199569702148, "IDs": "PharmacoErGFP281", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.4601505696773529, "y": -6.66987943649292, "IDs": "PharmacoErGFP364", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4120503664016724, "y": -3.7576205730438232, "IDs": "PharmacoErGFP298", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7700648307800293, "y": -5.274370193481445, "IDs": "PharmacoErGFP227", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.031275749206543, "y": -5.437710285186768, "IDs": "PharmacoErGFP22", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9454104900360107, "y": -3.9831490516662598, "IDs": "PharmacoErGFP179", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.0242643356323242, "y": -4.206283092498779, "IDs": "PharmacoErGFP154", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.4404728412628174, "y": -4.363058567047119, "IDs": "PharmacoErGFP351", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.27483996748924255, "y": -5.03309965133667, "IDs": "PharmacoErGFP229", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.840437412261963, "y": -4.653791904449463, "IDs": "PharmacoErGFP165", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.8388181924819946, "y": -5.349020004272461, "IDs": "PharmacoErGFP20", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.2190868854522705, "y": -4.21778678894043, "IDs": "PharmacoErGFP73", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5292208194732666, "y": -6.612094879150391, "IDs": "PharmacoErGFP185", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7376450896263123, "y": -6.512040615081787, "IDs": "PharmacoErGFP261", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.22111770510673523, "y": -4.708065032958984, "IDs": "PharmacoErGFP230", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.0702507495880127, "y": -3.9830570220947266, "IDs": "PharmacoErGFP354", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4361013174057007, "y": -3.9496984481811523, "IDs": "PharmacoErGFP139", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.46490636467933655, "y": -4.755364894866943, "IDs": "PharmacoErGFP289", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.8454877734184265, "y": -5.320160865783691, "IDs": "PharmacoErGFP226", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.9822242259979248, "y": -5.382355690002441, "IDs": "PharmacoErGFP21", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5911991596221924, "y": -5.145445823669434, "IDs": "PharmacoErGFP228", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7111143469810486, "y": -6.527318000793457, "IDs": "PharmacoErGFP262", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.7746793031692505, "y": -5.487001895904541, "IDs": "PharmacoErGFP0", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2483333349227905, "y": -4.038605213165283, "IDs": "PharmacoErGFP137", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.3780535459518433, "y": -5.550160884857178, "IDs": "PharmacoErGFP220", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.9861326217651367, "y": -3.932652711868286, "IDs": "PharmacoErGFP258", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.2809358835220337, "y": -6.36992883682251, "IDs": "PharmacoErGFP267", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.4858415126800537, "y": -4.33890438079834, "IDs": "PharmacoErGFP307", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.004002571105957, "y": -4.935380935668945, "IDs": "PharmacoErGFP28", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.21741484105587006, "y": -5.988313674926758, "IDs": "PharmacoErGFP90", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.7650526762008667, "y": -6.481163501739502, "IDs": "PharmacoErGFP260", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5634034872055054, "y": -4.997534275054932, "IDs": "PharmacoErGFP149", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.616467833518982, "y": -3.9308016300201416, "IDs": "PharmacoErGFP300", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.416238784790039, "y": -4.327492713928223, "IDs": "PharmacoErGFP172", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4381064176559448, "y": -4.032884120941162, "IDs": "PharmacoErGFP37", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1454411745071411, "y": -4.977745056152344, "IDs": "PharmacoErGFP394", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6251466870307922, "y": -6.5005316734313965, "IDs": "PharmacoErGFP263", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2959949970245361, "y": -4.187051773071289, "IDs": "PharmacoErGFP155", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1397769451141357, "y": -4.148144245147705, "IDs": "PharmacoErGFP254", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.08293622732162476, "y": -6.262705326080322, "IDs": "PharmacoErGFP88", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.274354100227356, "y": -5.518280982971191, "IDs": "PharmacoErGFP222", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.9307927489280701, "y": -5.2126784324646, "IDs": "PharmacoErGFP287", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.676396131515503, "y": -4.564192295074463, "IDs": "PharmacoErGFP249", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8304426670074463, "y": -4.705316543579102, "IDs": "PharmacoErGFP343", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6278271675109863, "y": -4.203392505645752, "IDs": "PharmacoErGFP210", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.4706493318080902, "y": -6.622631549835205, "IDs": "PharmacoErGFP386", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.4642812013626099, "y": -4.635661602020264, "IDs": "PharmacoErGFP198", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5650664567947388, "y": -4.554190635681152, "IDs": "PharmacoErGFP278", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.0009286403656006, "y": -3.9222323894500732, "IDs": "PharmacoErGFP356", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.961449146270752, "y": -5.257562637329102, "IDs": "PharmacoErGFP147", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.9266176223754883, "y": -4.791618824005127, "IDs": "PharmacoErGFP242", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.7962663173675537, "y": -4.704187393188477, "IDs": "PharmacoErGFP403", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.1568886935710907, "y": -6.214227199554443, "IDs": "PharmacoErGFP268", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5646554827690125, "y": -6.693408012390137, "IDs": "PharmacoErGFP363", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5654287338256836, "y": -4.081995010375977, "IDs": "PharmacoErGFP237", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7552034854888916, "y": -4.632833480834961, "IDs": "PharmacoErGFP167", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.46530282497406, "y": -4.590738296508789, "IDs": "PharmacoErGFP379", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1525661945343018, "y": -3.999715805053711, "IDs": "PharmacoErGFP315", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.9834317564964294, "y": -5.3214640617370605, "IDs": "PharmacoErGFP373", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.2788479328155518, "y": -5.071719646453857, "IDs": "PharmacoErGFP374", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7761672735214233, "y": -4.245319366455078, "IDs": "PharmacoErGFP153", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.6105543375015259, "y": -3.931074619293213, "IDs": "PharmacoErGFP19", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.853428840637207, "y": -4.7640790939331055, "IDs": "PharmacoErGFP241", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5823960304260254, "y": -6.7399702072143555, "IDs": "PharmacoErGFP381", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7998716831207275, "y": -4.684751510620117, "IDs": "PharmacoErGFP64", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.359663724899292, "y": -5.378180503845215, "IDs": "PharmacoErGFP101", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.062272310256958, "y": -3.966968297958374, "IDs": "PharmacoErGFP355", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3064242601394653, "y": -4.236255168914795, "IDs": "PharmacoErGFP234", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.8305602073669434, "y": -4.368991374969482, "IDs": "PharmacoErGFP338", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6865068078041077, "y": -4.795191764831543, "IDs": "PharmacoErGFP29", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8296966552734375, "y": -4.674161434173584, "IDs": "PharmacoErGFP345", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.7301591038703918, "y": -4.163910865783691, "IDs": "PharmacoErGFP34", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.051894187927246, "y": -3.9872477054595947, "IDs": "PharmacoErGFP77", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.9003076553344727, "y": -5.369748115539551, "IDs": "PharmacoErGFP24", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.589010238647461, "y": -3.9716615676879883, "IDs": "PharmacoErGFP59", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.1834498643875122, "y": -5.436635971069336, "IDs": "PharmacoErGFP143", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.6622538566589355, "y": -4.623495101928711, "IDs": "PharmacoErGFP302", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0735456943511963, "y": -5.370473384857178, "IDs": "PharmacoErGFP141", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.5377896428108215, "y": -5.541579246520996, "IDs": "PharmacoErGFP391", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.6078790426254272, "y": -6.668896675109863, "IDs": "PharmacoErGFP383", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.1679179668426514, "y": -4.0404744148254395, "IDs": "PharmacoErGFP314", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8049914836883545, "y": -4.68748664855957, "IDs": "PharmacoErGFP61", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.106391429901123, "y": -5.294610500335693, "IDs": "PharmacoErGFP103", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5410513877868652, "y": -3.995218515396118, "IDs": "PharmacoErGFP159", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7746729850769043, "y": -4.657692909240723, "IDs": "PharmacoErGFP168", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8572745323181152, "y": -4.774049282073975, "IDs": "PharmacoErGFP322", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.5311570167541504, "y": -4.395590782165527, "IDs": "PharmacoErGFP308", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.0543259382247925, "y": -5.107276916503906, "IDs": "PharmacoErGFP194", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.9105165004730225, "y": -4.778053283691406, "IDs": "PharmacoErGFP243", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.423570990562439, "y": -4.542847633361816, "IDs": "PharmacoErGFP397", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.5206962823867798, "y": -4.614634037017822, "IDs": "PharmacoErGFP277", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.4919941425323486, "y": -4.843532562255859, "IDs": "PharmacoErGFP205", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.80129075050354, "y": -4.6872239112854, "IDs": "PharmacoErGFP160", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.8271636962890625, "y": -4.7058820724487305, "IDs": "PharmacoErGFP163", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.1400384902954102, "y": -4.1117777824401855, "IDs": "PharmacoErGFP35", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.446397066116333, "y": -4.703357219696045, "IDs": "PharmacoErGFP197", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5691452026367188, "y": -6.706803321838379, "IDs": "PharmacoErGFP385", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.20921796560287476, "y": -3.7617764472961426, "IDs": "PharmacoErGFP410", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.9349954128265381, "y": -3.9802675247192383, "IDs": "PharmacoErGFP407", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.3559448719024658, "y": -4.823866367340088, "IDs": "PharmacoErGFP196", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 0.5739205479621887, "y": -6.673750877380371, "IDs": "PharmacoErGFP384", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.728646993637085, "y": -5.0010666847229, "IDs": "PharmacoErGFP204", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.21505320072174072, "y": -4.006679534912109, "IDs": "PharmacoErGFP213", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 2.678095579147339, "y": -5.060784339904785, "IDs": "PharmacoErGFP120", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.503702163696289, "y": -4.991053581237793, "IDs": "PharmacoErGFP106", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.368606835603714, "y": -4.5370001792907715, "IDs": "PharmacoErGFP51", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -2.7387092113494873, "y": -4.6159491539001465, "IDs": "PharmacoErGFP67", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": 1.0333337783813477, "y": -5.36616325378418, "IDs": "PharmacoErGFP146", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.495365172624588, "y": -4.357327938079834, "IDs": "PharmacoErGFP152", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.082894206047058, "y": -4.026181221008301, "IDs": "PharmacoErGFP136", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.0941288471221924, "y": -4.247889995574951, "IDs": "PharmacoErGFP13", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -0.12068330496549606, "y": -3.637969732284546, "IDs": "PharmacoErGFP412", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}, {"x": -1.0263525247573853, "y": -3.784921407699585, "IDs": "PharmacoErGFP115", "Subtypes": "PharmacoErGFP", "colors": "#003fff"}], "type": "scatter", "color": "#003fff", "name": "PharmacoErGFP"}, {"data": [{"x": 4.6498703956604, "y": -5.498589992523193, "IDs": "AvalonFP667", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.087214946746826, "y": -6.605711460113525, "IDs": "AvalonFP1122", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6500377655029297, "y": -5.093111991882324, "IDs": "AvalonFP751", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.215665340423584, "y": -5.441554546356201, "IDs": "AvalonFP1383", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.547692775726318, "y": -2.579580307006836, "IDs": "AvalonFP612", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7659590244293213, "y": -2.4575390815734863, "IDs": "AvalonFP872", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.516603469848633, "y": -6.423181533813477, "IDs": "AvalonFP689", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.748096942901611, "y": -5.751776695251465, "IDs": "AvalonFP66", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3057124614715576, "y": -5.147645950317383, "IDs": "AvalonFP1088", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.4087982177734375, "y": -5.3317790031433105, "IDs": "AvalonFP1011", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5306904315948486, "y": -5.805215358734131, "IDs": "AvalonFP787", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.614853382110596, "y": -4.27116060256958, "IDs": "AvalonFP1763", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.477370023727417, "y": -5.804856300354004, "IDs": "AvalonFP1136", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.402787685394287, "y": -4.879667282104492, "IDs": "AvalonFP633", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.520385265350342, "y": -3.090256452560425, "IDs": "AvalonFP1619", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.53476619720459, "y": -5.394719123840332, "IDs": "AvalonFP1081", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3848047256469727, "y": -7.926158428192139, "IDs": "AvalonFP478", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.072652816772461, "y": -1.8909389972686768, "IDs": "AvalonFP468", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.202552318572998, "y": -4.491482734680176, "IDs": "AvalonFP1826", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4929988384246826, "y": -5.2963032722473145, "IDs": "AvalonFP251", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.93369460105896, "y": -5.162117958068848, "IDs": "AvalonFP1675", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.516424655914307, "y": -7.143483638763428, "IDs": "AvalonFP1532", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9280593395233154, "y": -6.062343597412109, "IDs": "AvalonFP1198", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.608428001403809, "y": -5.253613471984863, "IDs": "AvalonFP1497", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.307263374328613, "y": -4.613746166229248, "IDs": "AvalonFP1561", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.119003772735596, "y": -4.160619735717773, "IDs": "AvalonFP1544", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8814430236816406, "y": -5.061888694763184, "IDs": "AvalonFP104", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.559034585952759, "y": -4.622782230377197, "IDs": "AvalonFP1435", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6324493885040283, "y": -4.886244773864746, "IDs": "AvalonFP1689", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.370427370071411, "y": -6.033337593078613, "IDs": "AvalonFP1779", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.201486587524414, "y": -6.29802131652832, "IDs": "AvalonFP1565", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8124635219573975, "y": -6.325651168823242, "IDs": "AvalonFP337", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.99196457862854, "y": -6.214925765991211, "IDs": "AvalonFP1323", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.83817458152771, "y": -7.19241189956665, "IDs": "AvalonFP613", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.290194034576416, "y": -5.935208320617676, "IDs": "AvalonFP1451", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5764479637146, "y": -2.5774483680725098, "IDs": "AvalonFP1636", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4015424251556396, "y": -7.876408100128174, "IDs": "AvalonFP317", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.195343494415283, "y": -5.461284160614014, "IDs": "AvalonFP922", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.837271690368652, "y": -3.787482500076294, "IDs": "AvalonFP1748", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.765073776245117, "y": -2.3799092769622803, "IDs": "AvalonFP458", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.561666011810303, "y": -5.540189743041992, "IDs": "AvalonFP1963", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3632402420043945, "y": -3.7424473762512207, "IDs": "AvalonFP1292", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6429331302642822, "y": -4.5825910568237305, "IDs": "AvalonFP1693", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.462435722351074, "y": -7.741776466369629, "IDs": "AvalonFP1045", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.210787773132324, "y": -5.25372838973999, "IDs": "AvalonFP1567", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8165160417556763, "y": -7.5281476974487305, "IDs": "AvalonFP1818", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1079702377319336, "y": -1.9120701551437378, "IDs": "AvalonFP1307", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.6417555809021, "y": -2.616792917251587, "IDs": "AvalonFP1604", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.812857627868652, "y": -6.046186923980713, "IDs": "AvalonFP261", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.960299491882324, "y": -4.24005651473999, "IDs": "AvalonFP1102", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.557899475097656, "y": -7.100272178649902, "IDs": "AvalonFP1044", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4692554473876953, "y": -4.766972541809082, "IDs": "AvalonFP1546", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.021310329437256, "y": -3.5278265476226807, "IDs": "AvalonFP740", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.216285705566406, "y": -4.973215579986572, "IDs": "AvalonFP1324", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.088286399841309, "y": -5.122690200805664, "IDs": "AvalonFP524", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.078762054443359, "y": -4.495486736297607, "IDs": "AvalonFP143", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3345072269439697, "y": -4.799318790435791, "IDs": "AvalonFP1794", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5808064937591553, "y": -8.015955924987793, "IDs": "AvalonFP1539", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5319342613220215, "y": -6.657135486602783, "IDs": "AvalonFP2016", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7764739990234375, "y": -5.647400379180908, "IDs": "AvalonFP401", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.316283702850342, "y": -5.303440570831299, "IDs": "AvalonFP647", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.548426151275635, "y": -6.747901916503906, "IDs": "AvalonFP1395", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.566285610198975, "y": -2.544501781463623, "IDs": "AvalonFP773", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.011845111846924, "y": -4.8029398918151855, "IDs": "AvalonFP804", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.552481651306152, "y": -2.5590426921844482, "IDs": "AvalonFP262", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.496447563171387, "y": -4.9706501960754395, "IDs": "AvalonFP36", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.330224990844727, "y": -7.053150653839111, "IDs": "AvalonFP890", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.535562992095947, "y": -2.564600706100464, "IDs": "AvalonFP1669", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9244720935821533, "y": -4.440813064575195, "IDs": "AvalonFP217", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.5349942445755005, "y": -1.8118045330047607, "IDs": "AvalonFP1287", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.909670352935791, "y": -5.8947529792785645, "IDs": "AvalonFP302", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.299040794372559, "y": -4.3158087730407715, "IDs": "AvalonFP1340", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9568676948547363, "y": -7.633659839630127, "IDs": "AvalonFP1263", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.651557207107544, "y": -7.997794151306152, "IDs": "AvalonFP627", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.291626930236816, "y": -3.675870895385742, "IDs": "AvalonFP168", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.31989049911499, "y": -5.497636795043945, "IDs": "AvalonFP1333", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9068673849105835, "y": -5.439363956451416, "IDs": "AvalonFP490", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.785015344619751, "y": -6.875918388366699, "IDs": "AvalonFP1207", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8320372104644775, "y": -5.948873996734619, "IDs": "AvalonFP1456", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.854849815368652, "y": -2.299112319946289, "IDs": "AvalonFP1293", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.057244300842285, "y": -5.429219722747803, "IDs": "AvalonFP1188", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.704051971435547, "y": -6.718281269073486, "IDs": "AvalonFP694", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.60919189453125, "y": -6.2056756019592285, "IDs": "AvalonFP1455", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.584230422973633, "y": -6.6581034660339355, "IDs": "AvalonFP448", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.359594345092773, "y": -6.669595718383789, "IDs": "AvalonFP1735", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.862666130065918, "y": -2.6196486949920654, "IDs": "AvalonFP1480", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.109466075897217, "y": -5.0513105392456055, "IDs": "AvalonFP533", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.770155191421509, "y": -2.500002384185791, "IDs": "AvalonFP733", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.475576400756836, "y": -4.3226494789123535, "IDs": "AvalonFP1923", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.30094051361084, "y": -3.6013474464416504, "IDs": "AvalonFP527", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.414324760437012, "y": -5.157173156738281, "IDs": "AvalonFP1623", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.690767765045166, "y": -4.147356986999512, "IDs": "AvalonFP1688", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1507766246795654, "y": -7.8421220779418945, "IDs": "AvalonFP913", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.783559799194336, "y": -4.670415878295898, "IDs": "AvalonFP1724", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.589097499847412, "y": -7.119675636291504, "IDs": "AvalonFP600", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.803027629852295, "y": -6.133785724639893, "IDs": "AvalonFP1599", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.63670015335083, "y": -4.121353626251221, "IDs": "AvalonFP1667", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4523661136627197, "y": -7.050772666931152, "IDs": "AvalonFP501", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3701632022857666, "y": -6.489567756652832, "IDs": "AvalonFP1801", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.435360908508301, "y": -4.542401313781738, "IDs": "AvalonFP585", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.895679235458374, "y": -2.784470319747925, "IDs": "AvalonFP989", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0465118885040283, "y": -5.733562469482422, "IDs": "AvalonFP1308", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.551994800567627, "y": -6.277047157287598, "IDs": "AvalonFP1670", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.844061374664307, "y": -4.6398491859436035, "IDs": "AvalonFP414", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7279961109161377, "y": -2.5112664699554443, "IDs": "AvalonFP1633", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.3459416627883911, "y": -2.9212746620178223, "IDs": "AvalonFP1231", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0204036235809326, "y": -5.634298801422119, "IDs": "AvalonFP1832", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.52199649810791, "y": -6.687926769256592, "IDs": "AvalonFP1413", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.26280403137207, "y": -6.482521057128906, "IDs": "AvalonFP1284", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.755705833435059, "y": -4.883859157562256, "IDs": "AvalonFP1853", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.719278335571289, "y": -4.3513383865356445, "IDs": "AvalonFP886", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.191288948059082, "y": -4.267729759216309, "IDs": "AvalonFP1808", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7311620712280273, "y": -5.024840831756592, "IDs": "AvalonFP276", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.381469488143921, "y": -7.560817241668701, "IDs": "AvalonFP975", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.302098751068115, "y": -3.736631393432617, "IDs": "AvalonFP1372", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.481075286865234, "y": -5.799050331115723, "IDs": "AvalonFP1338", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.354447841644287, "y": -6.66163969039917, "IDs": "AvalonFP1436", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.590069770812988, "y": -5.541972637176514, "IDs": "AvalonFP1131", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.808033466339111, "y": -6.023421764373779, "IDs": "AvalonFP1819", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.357814788818359, "y": -5.369643211364746, "IDs": "AvalonFP1938", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8714442253112793, "y": -2.620663642883301, "IDs": "AvalonFP616", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5506420135498047, "y": -5.375821113586426, "IDs": "AvalonFP1423", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7694687843322754, "y": -2.4991252422332764, "IDs": "AvalonFP1465", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5240960121154785, "y": -8.102187156677246, "IDs": "AvalonFP485", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.427309036254883, "y": -1.6577001810073853, "IDs": "AvalonFP277", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0415449142456055, "y": -4.449126243591309, "IDs": "AvalonFP846", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.320230722427368, "y": -8.0803804397583, "IDs": "AvalonFP1890", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.312282562255859, "y": -6.102560997009277, "IDs": "AvalonFP1795", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.277777671813965, "y": -6.17585563659668, "IDs": "AvalonFP118", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.303834915161133, "y": -6.237462997436523, "IDs": "AvalonFP1440", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0189156532287598, "y": -4.320863246917725, "IDs": "AvalonFP588", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.130974292755127, "y": -3.3911874294281006, "IDs": "AvalonFP113", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.445348024368286, "y": -4.96115779876709, "IDs": "AvalonFP898", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0438544750213623, "y": -6.736242771148682, "IDs": "AvalonFP1756", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.317840337753296, "y": -5.925642967224121, "IDs": "AvalonFP1289", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.240675926208496, "y": -6.285397529602051, "IDs": "AvalonFP473", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4890618324279785, "y": -2.802049160003662, "IDs": "AvalonFP89", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.530732154846191, "y": -7.0816330909729, "IDs": "AvalonFP1873", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.487797260284424, "y": -4.4065937995910645, "IDs": "AvalonFP848", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.823908805847168, "y": -6.817403316497803, "IDs": "AvalonFP2000", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6063895225524902, "y": -7.680798530578613, "IDs": "AvalonFP466", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5518906116485596, "y": -7.001001834869385, "IDs": "AvalonFP1606", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.516036510467529, "y": -4.456265926361084, "IDs": "AvalonFP897", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7039852142333984, "y": -5.326105117797852, "IDs": "AvalonFP2023", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.109697341918945, "y": -2.794546127319336, "IDs": "AvalonFP1970", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5015101432800293, "y": -5.2273688316345215, "IDs": "AvalonFP950", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.504587173461914, "y": -7.0396342277526855, "IDs": "AvalonFP1661", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.264543533325195, "y": -6.122384548187256, "IDs": "AvalonFP53", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.391496181488037, "y": -5.408891201019287, "IDs": "AvalonFP265", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.798283100128174, "y": -4.092247009277344, "IDs": "AvalonFP1834", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5139241218566895, "y": -5.348109245300293, "IDs": "AvalonFP1668", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.793817520141602, "y": -5.612399101257324, "IDs": "AvalonFP1569", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.941556930541992, "y": -5.08983039855957, "IDs": "AvalonFP1600", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.305478096008301, "y": -4.587579727172852, "IDs": "AvalonFP1517", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.878132343292236, "y": -4.62547492980957, "IDs": "AvalonFP1112", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.569946765899658, "y": -7.876945972442627, "IDs": "AvalonFP1935", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.168313026428223, "y": -6.819220066070557, "IDs": "AvalonFP818", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.501654148101807, "y": -6.584453582763672, "IDs": "AvalonFP1877", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.750400185585022, "y": -5.139995098114014, "IDs": "AvalonFP228", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.499089479446411, "y": -8.03386402130127, "IDs": "AvalonFP489", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1543819904327393, "y": -2.025125026702881, "IDs": "AvalonFP2010", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.615793704986572, "y": -4.943544387817383, "IDs": "AvalonFP219", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.632209062576294, "y": -4.570298194885254, "IDs": "AvalonFP1674", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0958304405212402, "y": -5.356389999389648, "IDs": "AvalonFP1798", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.371611595153809, "y": -5.0220537185668945, "IDs": "AvalonFP850", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.146279335021973, "y": -5.120428085327148, "IDs": "AvalonFP481", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.041365146636963, "y": -5.288527965545654, "IDs": "AvalonFP444", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.338960647583008, "y": -5.5127081871032715, "IDs": "AvalonFP2026", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.224740743637085, "y": -1.609938144683838, "IDs": "AvalonFP10", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9927783012390137, "y": -3.2970211505889893, "IDs": "AvalonFP562", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.136242866516113, "y": -5.508511543273926, "IDs": "AvalonFP566", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.7313151359558105, "y": -4.609086513519287, "IDs": "AvalonFP1650", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.326958179473877, "y": -3.533684730529785, "IDs": "AvalonFP1220", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.406877040863037, "y": -6.370256423950195, "IDs": "AvalonFP2019", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.901247978210449, "y": -6.898898601531982, "IDs": "AvalonFP1824", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.452993869781494, "y": -4.941640853881836, "IDs": "AvalonFP1727", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6594953536987305, "y": -2.980534553527832, "IDs": "AvalonFP1221", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.263696193695068, "y": -4.340794563293457, "IDs": "AvalonFP1718", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8754029273986816, "y": -4.8878607749938965, "IDs": "AvalonFP917", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.4753249883651733, "y": -7.181718826293945, "IDs": "AvalonFP2044", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.376411199569702, "y": -5.912818431854248, "IDs": "AvalonFP1551", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.373225450515747, "y": -4.316522598266602, "IDs": "AvalonFP1988", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.011016845703125, "y": -5.4194488525390625, "IDs": "AvalonFP1449", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.29990816116333, "y": -4.714982986450195, "IDs": "AvalonFP392", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.739447116851807, "y": -5.0000762939453125, "IDs": "AvalonFP1425", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.349618911743164, "y": -7.554649353027344, "IDs": "AvalonFP1745", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2011754512786865, "y": -3.2542917728424072, "IDs": "AvalonFP2002", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.054643630981445, "y": -5.222719192504883, "IDs": "AvalonFP77", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.628293037414551, "y": -6.417542934417725, "IDs": "AvalonFP225", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.770770311355591, "y": -5.530324459075928, "IDs": "AvalonFP586", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.410531044006348, "y": -5.1184468269348145, "IDs": "AvalonFP1256", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6915464401245117, "y": -2.907235860824585, "IDs": "AvalonFP817", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.5438151359558105, "y": -7.069691181182861, "IDs": "AvalonFP717", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.280353546142578, "y": -3.9112889766693115, "IDs": "AvalonFP1448", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.369842529296875, "y": -4.668723106384277, "IDs": "AvalonFP929", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9576385021209717, "y": -4.910065650939941, "IDs": "AvalonFP1085", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.663141965866089, "y": -5.323101997375488, "IDs": "AvalonFP1039", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5307540893554688, "y": -7.787600517272949, "IDs": "AvalonFP1034", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.566273212432861, "y": -5.4826250076293945, "IDs": "AvalonFP1637", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1992971897125244, "y": -5.467209815979004, "IDs": "AvalonFP536", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8389225006103516, "y": -5.566421031951904, "IDs": "AvalonFP194", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.086892127990723, "y": -5.962716102600098, "IDs": "AvalonFP1921", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.175175905227661, "y": -3.6653220653533936, "IDs": "AvalonFP1639", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3978166580200195, "y": -4.527255058288574, "IDs": "AvalonFP1499", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.473081111907959, "y": -5.320393085479736, "IDs": "AvalonFP1788", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.487032413482666, "y": -4.971114635467529, "IDs": "AvalonFP684", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6672749519348145, "y": -5.116641044616699, "IDs": "AvalonFP599", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.62072229385376, "y": -4.108017444610596, "IDs": "AvalonFP1767", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5501410961151123, "y": -5.417159080505371, "IDs": "AvalonFP320", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.836907863616943, "y": -6.395705223083496, "IDs": "AvalonFP794", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5339531898498535, "y": -2.5985922813415527, "IDs": "AvalonFP166", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.976588249206543, "y": -1.8943214416503906, "IDs": "AvalonFP182", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.414798736572266, "y": -5.666201114654541, "IDs": "AvalonFP416", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.570766448974609, "y": -6.689619541168213, "IDs": "AvalonFP800", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.256211996078491, "y": -6.041082382202148, "IDs": "AvalonFP713", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.017939567565918, "y": -3.95540189743042, "IDs": "AvalonFP459", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.536400318145752, "y": -5.233750820159912, "IDs": "AvalonFP1035", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.801780700683594, "y": -4.626075744628906, "IDs": "AvalonFP1776", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.816526889801025, "y": -2.400716781616211, "IDs": "AvalonFP50", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.136714935302734, "y": -6.301647663116455, "IDs": "AvalonFP65", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6559157371521, "y": -4.933640003204346, "IDs": "AvalonFP231", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.702638864517212, "y": -5.674068450927734, "IDs": "AvalonFP1660", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.102248668670654, "y": -7.009341716766357, "IDs": "AvalonFP423", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.289623737335205, "y": -2.498950481414795, "IDs": "AvalonFP283", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.134443759918213, "y": -4.928507328033447, "IDs": "AvalonFP702", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.6175956726074219, "y": -4.163034915924072, "IDs": "AvalonFP1852", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.881644248962402, "y": -4.623389720916748, "IDs": "AvalonFP555", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.244441509246826, "y": -5.812094211578369, "IDs": "AvalonFP877", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6456000804901123, "y": -7.730483055114746, "IDs": "AvalonFP1642", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1398656368255615, "y": -7.57571268081665, "IDs": "AvalonFP441", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8127260208129883, "y": -2.501918315887451, "IDs": "AvalonFP1154", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.165647029876709, "y": -5.578778266906738, "IDs": "AvalonFP76", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9096386432647705, "y": -6.372409820556641, "IDs": "AvalonFP750", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.132638931274414, "y": -3.8254880905151367, "IDs": "AvalonFP1614", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.802679061889648, "y": -5.985824108123779, "IDs": "AvalonFP1121", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.681110143661499, "y": -4.893247604370117, "IDs": "AvalonFP875", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.522060871124268, "y": -5.234981536865234, "IDs": "AvalonFP1002", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5719223022460938, "y": -7.868258953094482, "IDs": "AvalonFP1701", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.608931064605713, "y": -3.4863762855529785, "IDs": "AvalonFP1746", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8932435512542725, "y": -6.233223915100098, "IDs": "AvalonFP1074", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.330394744873047, "y": -7.20201301574707, "IDs": "AvalonFP834", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.379215717315674, "y": -5.465564250946045, "IDs": "AvalonFP590", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.437112331390381, "y": -7.804155349731445, "IDs": "AvalonFP383", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9162375926971436, "y": -6.437778949737549, "IDs": "AvalonFP679", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.022146701812744, "y": -3.840554714202881, "IDs": "AvalonFP1777", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.7533183097839355, "y": -2.2583682537078857, "IDs": "AvalonFP765", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9681992530822754, "y": -6.559166431427002, "IDs": "AvalonFP1934", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.697325706481934, "y": -5.238039970397949, "IDs": "AvalonFP1064", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.552791118621826, "y": -6.279851913452148, "IDs": "AvalonFP296", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.494080066680908, "y": -5.567803382873535, "IDs": "AvalonFP127", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.655472278594971, "y": -2.5071511268615723, "IDs": "AvalonFP269", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.332285404205322, "y": -1.2824829816818237, "IDs": "AvalonFP1625", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.3257602453231812, "y": -1.6206507682800293, "IDs": "AvalonFP353", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.189396381378174, "y": -3.5384469032287598, "IDs": "AvalonFP1291", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.414421796798706, "y": -7.6173787117004395, "IDs": "AvalonFP1914", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7629990577697754, "y": -2.795769453048706, "IDs": "AvalonFP643", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3845860958099365, "y": -5.385711193084717, "IDs": "AvalonFP1733", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.458558559417725, "y": -4.713794231414795, "IDs": "AvalonFP961", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.259916305541992, "y": -3.113795280456543, "IDs": "AvalonFP552", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.861691474914551, "y": -6.330928802490234, "IDs": "AvalonFP1677", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.481282711029053, "y": -6.46687126159668, "IDs": "AvalonFP982", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.578068733215332, "y": -3.762232780456543, "IDs": "AvalonFP1598", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1489150524139404, "y": -6.091167449951172, "IDs": "AvalonFP866", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.130615234375, "y": -5.986686706542969, "IDs": "AvalonFP96", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.897539138793945, "y": -6.155068874359131, "IDs": "AvalonFP696", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.122496604919434, "y": -4.59738826751709, "IDs": "AvalonFP1887", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.783647060394287, "y": -2.437161684036255, "IDs": "AvalonFP1885", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4215540885925293, "y": -4.860646724700928, "IDs": "AvalonFP202", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2733359336853027, "y": -7.454370021820068, "IDs": "AvalonFP453", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.016516208648682, "y": -4.9898200035095215, "IDs": "AvalonFP972", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.019657135009766, "y": -6.0023698806762695, "IDs": "AvalonFP209", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.627539157867432, "y": -5.545281410217285, "IDs": "AvalonFP1233", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8601090908050537, "y": -7.353096961975098, "IDs": "AvalonFP530", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.560096740722656, "y": -5.475654602050781, "IDs": "AvalonFP966", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5469624996185303, "y": -5.492416858673096, "IDs": "AvalonFP1550", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.457345485687256, "y": -5.548831939697266, "IDs": "AvalonFP731", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9231719970703125, "y": -3.240269899368286, "IDs": "AvalonFP290", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.951794981956482, "y": -5.217485427856445, "IDs": "AvalonFP1864", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4454972743988037, "y": -5.747210502624512, "IDs": "AvalonFP2046", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.070305347442627, "y": -2.8966290950775146, "IDs": "AvalonFP1067", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.188070774078369, "y": -4.095640659332275, "IDs": "AvalonFP1396", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6518778800964355, "y": -6.4777913093566895, "IDs": "AvalonFP1616", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.962646961212158, "y": -6.06156587600708, "IDs": "AvalonFP241", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.791505336761475, "y": -6.577360153198242, "IDs": "AvalonFP312", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.335606098175049, "y": -7.2111945152282715, "IDs": "AvalonFP1611", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.007896900177002, "y": -4.080297946929932, "IDs": "AvalonFP1326", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.804851770401001, "y": -7.286830902099609, "IDs": "AvalonFP1048", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.39931058883667, "y": -5.550144672393799, "IDs": "AvalonFP381", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0044264793395996, "y": -3.209524393081665, "IDs": "AvalonFP97", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.310664176940918, "y": -6.838283538818359, "IDs": "AvalonFP587", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.571646690368652, "y": -5.088001251220703, "IDs": "AvalonFP408", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.322986602783203, "y": -5.300190448760986, "IDs": "AvalonFP605", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1854965686798096, "y": -5.644576549530029, "IDs": "AvalonFP1640", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.525815010070801, "y": -8.038654327392578, "IDs": "AvalonFP1714", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.739614486694336, "y": -6.114567279815674, "IDs": "AvalonFP1107", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.230217933654785, "y": -5.453670501708984, "IDs": "AvalonFP1574", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2932143211364746, "y": -5.02095365524292, "IDs": "AvalonFP178", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1709272861480713, "y": -4.6947340965271, "IDs": "AvalonFP25", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.580935001373291, "y": -4.900020122528076, "IDs": "AvalonFP375", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.071200370788574, "y": -4.768370151519775, "IDs": "AvalonFP1481", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.544976711273193, "y": -4.632104873657227, "IDs": "AvalonFP1117", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1874170303344727, "y": -5.117170810699463, "IDs": "AvalonFP1504", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9241318702697754, "y": -2.8475167751312256, "IDs": "AvalonFP1418", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.000305652618408, "y": -5.86573600769043, "IDs": "AvalonFP959", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.47074818611145, "y": -7.497777462005615, "IDs": "AvalonFP1155", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.236909866333008, "y": -4.3294453620910645, "IDs": "AvalonFP2035", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.103640079498291, "y": -6.902677059173584, "IDs": "AvalonFP1165", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.907647609710693, "y": -4.685979843139648, "IDs": "AvalonFP1813", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.4421576261520386, "y": -5.379917144775391, "IDs": "AvalonFP1244", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.856534957885742, "y": -4.645667552947998, "IDs": "AvalonFP1881", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8487838506698608, "y": -2.4478235244750977, "IDs": "AvalonFP1719", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.558519124984741, "y": -5.595144748687744, "IDs": "AvalonFP1075", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.390778064727783, "y": -4.0574564933776855, "IDs": "AvalonFP1470", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.212980270385742, "y": -1.7177748680114746, "IDs": "AvalonFP1098", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9730937480926514, "y": -5.657725811004639, "IDs": "AvalonFP1439", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1314966678619385, "y": -5.189960479736328, "IDs": "AvalonFP553", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7785513401031494, "y": -4.535602569580078, "IDs": "AvalonFP1919", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2805895805358887, "y": -6.219748020172119, "IDs": "AvalonFP635", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.079990386962891, "y": -4.285964012145996, "IDs": "AvalonFP1536", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8780293464660645, "y": -4.47241735458374, "IDs": "AvalonFP1513", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.946071624755859, "y": -3.7925920486450195, "IDs": "AvalonFP1626", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.764840126037598, "y": -6.032021522521973, "IDs": "AvalonFP1721", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.127331018447876, "y": -4.154623508453369, "IDs": "AvalonFP1262", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.978553533554077, "y": -5.785409927368164, "IDs": "AvalonFP1871", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.726932525634766, "y": -6.052391052246094, "IDs": "AvalonFP196", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.585339546203613, "y": -4.368742942810059, "IDs": "AvalonFP885", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.294782876968384, "y": -7.830270290374756, "IDs": "AvalonFP615", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3735063076019287, "y": -2.277780294418335, "IDs": "AvalonFP31", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.712254047393799, "y": -5.5256667137146, "IDs": "AvalonFP703", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.370941638946533, "y": -6.029763698577881, "IDs": "AvalonFP1909", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.000827312469482, "y": -5.727739334106445, "IDs": "AvalonFP413", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.158881664276123, "y": -5.4255571365356445, "IDs": "AvalonFP772", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.238664627075195, "y": -1.4395289421081543, "IDs": "AvalonFP1157", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.720327377319336, "y": -5.19792366027832, "IDs": "AvalonFP1086", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.639088153839111, "y": -5.571056365966797, "IDs": "AvalonFP815", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.548316955566406, "y": -7.094546318054199, "IDs": "AvalonFP412", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.779581546783447, "y": -2.4056217670440674, "IDs": "AvalonFP860", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0354533195495605, "y": -5.021335124969482, "IDs": "AvalonFP923", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.017788410186768, "y": -4.92709493637085, "IDs": "AvalonFP299", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7326455116271973, "y": -6.160452365875244, "IDs": "AvalonFP1548", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.148127555847168, "y": -5.254755973815918, "IDs": "AvalonFP904", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5892257690429688, "y": -5.024200439453125, "IDs": "AvalonFP359", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.19334602355957, "y": -6.083934783935547, "IDs": "AvalonFP103", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8803136348724365, "y": -5.409308433532715, "IDs": "AvalonFP415", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.32870626449585, "y": -5.974399566650391, "IDs": "AvalonFP1053", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.16599702835083, "y": -3.9474353790283203, "IDs": "AvalonFP1559", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.838408946990967, "y": -2.4282946586608887, "IDs": "AvalonFP1424", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3490753173828125, "y": -7.973327159881592, "IDs": "AvalonFP1951", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.354624271392822, "y": -5.686577796936035, "IDs": "AvalonFP1332", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.070023775100708, "y": -1.7664021253585815, "IDs": "AvalonFP1514", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.356081008911133, "y": -7.170721530914307, "IDs": "AvalonFP1547", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0227155685424805, "y": -5.137612342834473, "IDs": "AvalonFP179", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.774015426635742, "y": -4.809462547302246, "IDs": "AvalonFP1317", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.180788993835449, "y": -5.548361301422119, "IDs": "AvalonFP1399", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.141018867492676, "y": -5.499673843383789, "IDs": "AvalonFP1482", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.380558967590332, "y": -4.7888922691345215, "IDs": "AvalonFP1357", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.873878479003906, "y": -3.940040111541748, "IDs": "AvalonFP762", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.770599842071533, "y": -7.53481388092041, "IDs": "AvalonFP1945", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.243443965911865, "y": -6.830832004547119, "IDs": "AvalonFP1511", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9285104274749756, "y": -3.785360097885132, "IDs": "AvalonFP1240", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3262672424316406, "y": -5.638940334320068, "IDs": "AvalonFP292", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3511736392974854, "y": -3.9516632556915283, "IDs": "AvalonFP1280", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.16441535949707, "y": -4.230228900909424, "IDs": "AvalonFP1099", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.112211227416992, "y": -5.846134662628174, "IDs": "AvalonFP74", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0972819328308105, "y": -2.8970494270324707, "IDs": "AvalonFP1226", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.557951927185059, "y": -2.5553317070007324, "IDs": "AvalonFP1878", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.776806354522705, "y": -5.72707986831665, "IDs": "AvalonFP573", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3668904304504395, "y": -4.824359893798828, "IDs": "AvalonFP1986", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.994614362716675, "y": -7.385045051574707, "IDs": "AvalonFP738", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.349562644958496, "y": -4.817318439483643, "IDs": "AvalonFP1973", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1689453125, "y": -6.218639850616455, "IDs": "AvalonFP1491", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.289336681365967, "y": -5.651565074920654, "IDs": "AvalonFP769", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.0632829666137695, "y": -5.536780834197998, "IDs": "AvalonFP796", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5729427337646484, "y": -4.594028949737549, "IDs": "AvalonFP863", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.69454288482666, "y": -2.530574321746826, "IDs": "AvalonFP568", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.737203598022461, "y": -4.876595497131348, "IDs": "AvalonFP1197", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.496602535247803, "y": -5.180373668670654, "IDs": "AvalonFP967", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.450683832168579, "y": -4.475130558013916, "IDs": "AvalonFP12", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8799331188201904, "y": -4.601076602935791, "IDs": "AvalonFP20", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.607470989227295, "y": -4.517698764801025, "IDs": "AvalonFP688", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9589099884033203, "y": -5.793388366699219, "IDs": "AvalonFP821", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.705512523651123, "y": -4.435856342315674, "IDs": "AvalonFP1659", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.12201452255249, "y": -4.093798637390137, "IDs": "AvalonFP488", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.863773345947266, "y": -6.11491060256958, "IDs": "AvalonFP673", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.643373489379883, "y": -5.558990001678467, "IDs": "AvalonFP144", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.646060943603516, "y": -2.5670814514160156, "IDs": "AvalonFP1947", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.163309335708618, "y": -3.4909164905548096, "IDs": "AvalonFP264", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.717297077178955, "y": -5.0843119621276855, "IDs": "AvalonFP1298", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2018697261810303, "y": -5.618319034576416, "IDs": "AvalonFP1995", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8362491130828857, "y": -2.548367500305176, "IDs": "AvalonFP601", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.264207601547241, "y": -5.491268157958984, "IDs": "AvalonFP828", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.380345821380615, "y": -4.300960540771484, "IDs": "AvalonFP11", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9258933067321777, "y": -5.830359935760498, "IDs": "AvalonFP620", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.76760721206665, "y": -6.1511101722717285, "IDs": "AvalonFP1527", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.2705183029174805, "y": -6.608469486236572, "IDs": "AvalonFP759", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.039519309997559, "y": -6.819142818450928, "IDs": "AvalonFP963", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.2367987632751465, "y": -6.612484931945801, "IDs": "AvalonFP1110", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9294072389602661, "y": -3.55903697013855, "IDs": "AvalonFP801", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.613399505615234, "y": -4.348325729370117, "IDs": "AvalonFP1545", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.963220119476318, "y": -4.652184963226318, "IDs": "AvalonFP1282", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0907516479492188, "y": -3.5259125232696533, "IDs": "AvalonFP761", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.42318856716156, "y": -1.6659833192825317, "IDs": "AvalonFP1556", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7509546279907227, "y": -5.084611415863037, "IDs": "AvalonFP2015", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.64457368850708, "y": -4.843828201293945, "IDs": "AvalonFP1875", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4623219966888428, "y": -5.688288688659668, "IDs": "AvalonFP1586", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.213425636291504, "y": -4.893221855163574, "IDs": "AvalonFP1694", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6088929176330566, "y": -7.989532470703125, "IDs": "AvalonFP2021", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.249264717102051, "y": -5.074036598205566, "IDs": "AvalonFP1534", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.711437940597534, "y": -4.540177822113037, "IDs": "AvalonFP1502", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.831281661987305, "y": -6.0063910484313965, "IDs": "AvalonFP706", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8864026069641113, "y": -3.1246376037597656, "IDs": "AvalonFP1782", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.25666880607605, "y": -5.550075054168701, "IDs": "AvalonFP1388", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.743189811706543, "y": -5.639613151550293, "IDs": "AvalonFP188", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.986534357070923, "y": -4.850381851196289, "IDs": "AvalonFP1998", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.296999216079712, "y": -5.873587608337402, "IDs": "AvalonFP529", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5979223251342773, "y": -5.921793460845947, "IDs": "AvalonFP1704", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0884594917297363, "y": -5.694016456604004, "IDs": "AvalonFP1458", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5235602855682373, "y": -4.71336555480957, "IDs": "AvalonFP324", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5493316650390625, "y": -4.308437824249268, "IDs": "AvalonFP746", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5472564697265625, "y": -4.021844387054443, "IDs": "AvalonFP692", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.746790409088135, "y": -5.9497175216674805, "IDs": "AvalonFP1288", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.141867160797119, "y": -5.560544490814209, "IDs": "AvalonFP260", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.195623874664307, "y": -4.965918064117432, "IDs": "AvalonFP1027", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.0763306617736816, "y": -1.474006175994873, "IDs": "AvalonFP226", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.077523708343506, "y": -4.148056507110596, "IDs": "AvalonFP1138", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.285391330718994, "y": -5.625314712524414, "IDs": "AvalonFP1316", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.367377758026123, "y": -7.120373725891113, "IDs": "AvalonFP1883", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.049454212188721, "y": -6.042174339294434, "IDs": "AvalonFP1235", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.063196897506714, "y": -5.373497486114502, "IDs": "AvalonFP354", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5991437435150146, "y": -3.357673168182373, "IDs": "AvalonFP1133", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.317282199859619, "y": -4.756914138793945, "IDs": "AvalonFP1349", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1590542793273926, "y": -4.379807472229004, "IDs": "AvalonFP1812", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.146345615386963, "y": -4.832165718078613, "IDs": "AvalonFP766", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.649284362792969, "y": -6.31395149230957, "IDs": "AvalonFP1602", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.630619049072266, "y": -5.111405849456787, "IDs": "AvalonFP532", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.058751583099365, "y": -4.716736793518066, "IDs": "AvalonFP357", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.903714179992676, "y": -5.010669231414795, "IDs": "AvalonFP1841", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.056365013122559, "y": -6.207130432128906, "IDs": "AvalonFP614", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.805499076843262, "y": -4.828278064727783, "IDs": "AvalonFP997", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3467466831207275, "y": -7.974279880523682, "IDs": "AvalonFP849", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3262407779693604, "y": -5.077162742614746, "IDs": "AvalonFP334", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.414133071899414, "y": -1.7364423274993896, "IDs": "AvalonFP1272", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.450382709503174, "y": -2.621785879135132, "IDs": "AvalonFP259", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6598942279815674, "y": -6.074107646942139, "IDs": "AvalonFP506", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.684722423553467, "y": -5.893033981323242, "IDs": "AvalonFP1865", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.345154285430908, "y": -4.0263261795043945, "IDs": "AvalonFP602", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.469449758529663, "y": -4.540137767791748, "IDs": "AvalonFP2034", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3928070068359375, "y": -7.73727560043335, "IDs": "AvalonFP57", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7393529415130615, "y": -5.112520217895508, "IDs": "AvalonFP1404", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.081570863723755, "y": -7.825211524963379, "IDs": "AvalonFP1429", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.417115211486816, "y": -2.8542778491973877, "IDs": "AvalonFP134", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.716573715209961, "y": -5.031888961791992, "IDs": "AvalonFP128", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8273487091064453, "y": -6.769918441772461, "IDs": "AvalonFP111", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.103672027587891, "y": -3.68927264213562, "IDs": "AvalonFP1839", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9605183601379395, "y": -6.554101943969727, "IDs": "AvalonFP1755", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8638579845428467, "y": -4.751394748687744, "IDs": "AvalonFP157", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.533567428588867, "y": -8.028218269348145, "IDs": "AvalonFP1281", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.30281400680542, "y": -7.186925411224365, "IDs": "AvalonFP442", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9587366580963135, "y": -4.831531047821045, "IDs": "AvalonFP873", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4398889541625977, "y": -5.990885257720947, "IDs": "AvalonFP1910", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.947908401489258, "y": -5.899796962738037, "IDs": "AvalonFP515", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.017274856567383, "y": -5.873227119445801, "IDs": "AvalonFP67", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.537182807922363, "y": -5.446093559265137, "IDs": "AvalonFP1837", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.376312732696533, "y": -5.3156328201293945, "IDs": "AvalonFP1444", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.416400671005249, "y": -4.5286478996276855, "IDs": "AvalonFP1077", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.473530292510986, "y": -2.6080822944641113, "IDs": "AvalonFP1393", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8087239265441895, "y": -6.215730667114258, "IDs": "AvalonFP1400", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.556048393249512, "y": -4.195245265960693, "IDs": "AvalonFP1462", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5192294120788574, "y": -7.982334136962891, "IDs": "AvalonFP1158", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.7753095626831055, "y": -2.513683795928955, "IDs": "AvalonFP851", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.24802827835083, "y": -5.2199554443359375, "IDs": "AvalonFP1476", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.004936218261719, "y": -5.415499210357666, "IDs": "AvalonFP1218", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3713362216949463, "y": -8.119338989257812, "IDs": "AvalonFP101", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9430737495422363, "y": -2.7389302253723145, "IDs": "AvalonFP1438", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.959815502166748, "y": -5.600424766540527, "IDs": "AvalonFP303", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.529501914978027, "y": -7.113865375518799, "IDs": "AvalonFP198", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.939459800720215, "y": -4.832167625427246, "IDs": "AvalonFP934", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.300868272781372, "y": -7.879487037658691, "IDs": "AvalonFP1554", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.016283988952637, "y": -6.447364330291748, "IDs": "AvalonFP1975", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6014084815979004, "y": -8.030549049377441, "IDs": "AvalonFP1681", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 0.5188574194908142, "y": -2.6686837673187256, "IDs": "AvalonFP900", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8861420154571533, "y": -4.41444730758667, "IDs": "AvalonFP1401", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.4746074676513672, "y": -7.067089080810547, "IDs": "AvalonFP189", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.92336106300354, "y": -4.336598873138428, "IDs": "AvalonFP940", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.896092891693115, "y": -4.248663425445557, "IDs": "AvalonFP1982", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.622541666030884, "y": -7.984786510467529, "IDs": "AvalonFP714", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0218169689178467, "y": -1.8174704313278198, "IDs": "AvalonFP622", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.253601312637329, "y": -6.095088958740234, "IDs": "AvalonFP1051", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.872218132019043, "y": -4.618427753448486, "IDs": "AvalonFP1037", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.657379627227783, "y": -3.7433412075042725, "IDs": "AvalonFP1328", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6564011573791504, "y": -7.924999713897705, "IDs": "AvalonFP1377", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.83636212348938, "y": -4.400317192077637, "IDs": "AvalonFP365", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.715986490249634, "y": -7.293057441711426, "IDs": "AvalonFP1830", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.661240577697754, "y": -7.0680623054504395, "IDs": "AvalonFP1132", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0235655307769775, "y": -5.676649570465088, "IDs": "AvalonFP591", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1232733726501465, "y": -5.820394515991211, "IDs": "AvalonFP974", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.43117094039917, "y": -5.198269844055176, "IDs": "AvalonFP1191", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.466113090515137, "y": -4.918887615203857, "IDs": "AvalonFP893", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0167346000671387, "y": -3.3033382892608643, "IDs": "AvalonFP1176", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.090585708618164, "y": -5.530791759490967, "IDs": "AvalonFP810", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.670987844467163, "y": -5.9723005294799805, "IDs": "AvalonFP1691", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3309197425842285, "y": -7.943858623504639, "IDs": "AvalonFP1310", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.602142333984375, "y": -2.768899917602539, "IDs": "AvalonFP465", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.579567909240723, "y": -5.512696266174316, "IDs": "AvalonFP1285", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.57421875, "y": -5.407492637634277, "IDs": "AvalonFP1991", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6733131408691406, "y": -5.230225086212158, "IDs": "AvalonFP504", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.777322769165039, "y": -6.9059576988220215, "IDs": "AvalonFP1891", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.816836357116699, "y": -6.881628513336182, "IDs": "AvalonFP813", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.634451389312744, "y": -5.578522682189941, "IDs": "AvalonFP1643", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.66495418548584, "y": -6.792067050933838, "IDs": "AvalonFP1577", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1773247718811035, "y": -4.300117015838623, "IDs": "AvalonFP476", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.83500599861145, "y": -7.1776604652404785, "IDs": "AvalonFP1850", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0533411502838135, "y": -5.422539710998535, "IDs": "AvalonFP728", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.937559127807617, "y": -6.441213607788086, "IDs": "AvalonFP1690", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.423686981201172, "y": -3.307676315307617, "IDs": "AvalonFP240", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.0874924659729, "y": -5.469303131103516, "IDs": "AvalonFP732", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.341097831726074, "y": -3.1897270679473877, "IDs": "AvalonFP1068", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.019057273864746, "y": -5.095715045928955, "IDs": "AvalonFP977", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.188448905944824, "y": -6.164947509765625, "IDs": "AvalonFP1635", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7984964847564697, "y": -6.0316548347473145, "IDs": "AvalonFP151", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.412166118621826, "y": -4.978963375091553, "IDs": "AvalonFP676", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3008673191070557, "y": -3.5362637042999268, "IDs": "AvalonFP628", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.473663806915283, "y": -1.6083489656448364, "IDs": "AvalonFP1026", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7458908557891846, "y": -7.678726673126221, "IDs": "AvalonFP1457", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.859485626220703, "y": -5.699900150299072, "IDs": "AvalonFP1093", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.42932653427124, "y": -3.392880916595459, "IDs": "AvalonFP1072", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2451882362365723, "y": -7.515893936157227, "IDs": "AvalonFP1229", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.7321085929870605, "y": -4.9366583824157715, "IDs": "AvalonFP1566", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.51901912689209, "y": -4.75299596786499, "IDs": "AvalonFP1301", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.026983261108398, "y": -5.302890777587891, "IDs": "AvalonFP1215", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9192490577697754, "y": -6.47427225112915, "IDs": "AvalonFP149", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.464555740356445, "y": -7.156148433685303, "IDs": "AvalonFP988", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.2944159507751465, "y": -3.919065475463867, "IDs": "AvalonFP795", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.221893310546875, "y": -5.109968185424805, "IDs": "AvalonFP1530", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.575514316558838, "y": -4.719091415405273, "IDs": "AvalonFP1655", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.347235679626465, "y": -3.231602907180786, "IDs": "AvalonFP406", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4980058670043945, "y": -4.555009841918945, "IDs": "AvalonFP367", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.678189277648926, "y": -4.646713733673096, "IDs": "AvalonFP203", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.199668884277344, "y": -3.942891836166382, "IDs": "AvalonFP1632", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1079511642456055, "y": -4.63187313079834, "IDs": "AvalonFP720", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8681938648223877, "y": -6.601513385772705, "IDs": "AvalonFP370", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.8672614097595215, "y": -6.324851989746094, "IDs": "AvalonFP2003", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.738142490386963, "y": -2.487696647644043, "IDs": "AvalonFP2022", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.630629777908325, "y": -5.195520401000977, "IDs": "AvalonFP1803", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.564131259918213, "y": -4.969186305999756, "IDs": "AvalonFP656", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.403682231903076, "y": -4.9986395835876465, "IDs": "AvalonFP1784", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.953718423843384, "y": -7.522517204284668, "IDs": "AvalonFP1415", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5437493324279785, "y": -7.114964008331299, "IDs": "AvalonFP398", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1246187686920166, "y": -3.5348455905914307, "IDs": "AvalonFP543", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.117192268371582, "y": -3.668163776397705, "IDs": "AvalonFP565", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.545804023742676, "y": -8.055331230163574, "IDs": "AvalonFP1186", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.345785140991211, "y": -3.6706793308258057, "IDs": "AvalonFP16", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9938530921936035, "y": -5.5481133460998535, "IDs": "AvalonFP534", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.766721248626709, "y": -6.428196907043457, "IDs": "AvalonFP32", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1890082359313965, "y": -5.744885444641113, "IDs": "AvalonFP1867", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.711548328399658, "y": -6.841411113739014, "IDs": "AvalonFP805", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.64599347114563, "y": -5.805255889892578, "IDs": "AvalonFP449", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.549372673034668, "y": -4.281035900115967, "IDs": "AvalonFP1592", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.201723575592041, "y": -5.436988353729248, "IDs": "AvalonFP1442", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.036673545837402, "y": -3.7159769535064697, "IDs": "AvalonFP811", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.4462432861328125, "y": -6.6108856201171875, "IDs": "AvalonFP906", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6956262588500977, "y": -4.6244401931762695, "IDs": "AvalonFP1664", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.800399303436279, "y": -5.976109981536865, "IDs": "AvalonFP520", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.066715955734253, "y": -4.506677627563477, "IDs": "AvalonFP1913", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6112351417541504, "y": -2.4357898235321045, "IDs": "AvalonFP1147", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0583481788635254, "y": -3.339081287384033, "IDs": "AvalonFP1130", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.54460334777832, "y": -4.414180755615234, "IDs": "AvalonFP888", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.563352346420288, "y": -6.392964839935303, "IDs": "AvalonFP491", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.779170989990234, "y": -4.517740726470947, "IDs": "AvalonFP674", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.912282943725586, "y": -4.558346271514893, "IDs": "AvalonFP140", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.615502119064331, "y": -2.390015125274658, "IDs": "AvalonFP1943", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.728349208831787, "y": -4.835172176361084, "IDs": "AvalonFP984", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.278739929199219, "y": -3.638072967529297, "IDs": "AvalonFP434", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.372570991516113, "y": -5.621993064880371, "IDs": "AvalonFP90", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.951907634735107, "y": -6.785313129425049, "IDs": "AvalonFP1552", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8460445404052734, "y": -6.16284704208374, "IDs": "AvalonFP223", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.898916482925415, "y": -6.538242816925049, "IDs": "AvalonFP1874", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.548029899597168, "y": -4.725949287414551, "IDs": "AvalonFP1893", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.49339485168457, "y": -6.799036502838135, "IDs": "AvalonFP2004", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.108726501464844, "y": -4.251338481903076, "IDs": "AvalonFP741", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.486599922180176, "y": -6.0588154792785645, "IDs": "AvalonFP1555", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.510120868682861, "y": -5.175567626953125, "IDs": "AvalonFP352", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7443628311157227, "y": -5.645108222961426, "IDs": "AvalonFP484", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4335989952087402, "y": -7.4540181159973145, "IDs": "AvalonFP146", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.678683757781982, "y": -6.689682483673096, "IDs": "AvalonFP186", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 0.42129650712013245, "y": -2.8090786933898926, "IDs": "AvalonFP1213", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.143967628479004, "y": -3.883537530899048, "IDs": "AvalonFP1508", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.350420951843262, "y": -2.649953842163086, "IDs": "AvalonFP802", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3711628913879395, "y": -6.493215560913086, "IDs": "AvalonFP823", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.813960552215576, "y": -5.36923360824585, "IDs": "AvalonFP2037", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1156816482543945, "y": -5.429182052612305, "IDs": "AvalonFP642", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.74161696434021, "y": -2.444762706756592, "IDs": "AvalonFP1780", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.022001266479492, "y": -2.7385706901550293, "IDs": "AvalonFP993", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.931264400482178, "y": -6.842841625213623, "IDs": "AvalonFP169", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.474801063537598, "y": -6.603289604187012, "IDs": "AvalonFP1203", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.214989185333252, "y": -5.043876647949219, "IDs": "AvalonFP894", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3569440841674805, "y": -4.910884380340576, "IDs": "AvalonFP707", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8788652420043945, "y": -4.797272682189941, "IDs": "AvalonFP1031", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.299501419067383, "y": -4.372172832489014, "IDs": "AvalonFP634", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9453641176223755, "y": -5.668098449707031, "IDs": "AvalonFP1224", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7985787391662598, "y": -4.511102199554443, "IDs": "AvalonFP1042", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2060039043426514, "y": -3.45648193359375, "IDs": "AvalonFP26", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.9218292236328125, "y": -6.749765872955322, "IDs": "AvalonFP2017", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.202761173248291, "y": -3.315514087677002, "IDs": "AvalonFP1363", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.153570652008057, "y": -4.988863468170166, "IDs": "AvalonFP1540", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.365908622741699, "y": -3.4020073413848877, "IDs": "AvalonFP535", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9184906482696533, "y": -4.38543701171875, "IDs": "AvalonFP1181", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.588047027587891, "y": -5.490110397338867, "IDs": "AvalonFP185", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3761770725250244, "y": -4.582132816314697, "IDs": "AvalonFP1989", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7605152130126953, "y": -2.431222677230835, "IDs": "AvalonFP1979", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7743077278137207, "y": -2.4424245357513428, "IDs": "AvalonFP698", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5687479972839355, "y": -4.661071300506592, "IDs": "AvalonFP548", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.6171112060546875, "y": -4.27760648727417, "IDs": "AvalonFP68", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.290483474731445, "y": -4.2589874267578125, "IDs": "AvalonFP419", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6558966636657715, "y": -5.493552207946777, "IDs": "AvalonFP1933", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.34471321105957, "y": -7.15747594833374, "IDs": "AvalonFP1740", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7941296100616455, "y": -5.534059047698975, "IDs": "AvalonFP1912", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.351867914199829, "y": -7.813791751861572, "IDs": "AvalonFP58", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4010534286499023, "y": -8.024734497070312, "IDs": "AvalonFP782", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.775533199310303, "y": -2.4003398418426514, "IDs": "AvalonFP1276", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.220106363296509, "y": -3.9348092079162598, "IDs": "AvalonFP1350", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.215014457702637, "y": -6.669600486755371, "IDs": "AvalonFP1584", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.119765758514404, "y": -6.410284519195557, "IDs": "AvalonFP654", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8130600452423096, "y": -4.6092939376831055, "IDs": "AvalonFP763", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.655075550079346, "y": -6.216980457305908, "IDs": "AvalonFP1905", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.366849184036255, "y": -5.040750980377197, "IDs": "AvalonFP960", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.016801834106445, "y": -5.644217491149902, "IDs": "AvalonFP173", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.110827922821045, "y": -6.0703606605529785, "IDs": "AvalonFP1353", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.958326578140259, "y": -5.3446197509765625, "IDs": "AvalonFP1942", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.352513313293457, "y": -7.840268135070801, "IDs": "AvalonFP1303", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3847084045410156, "y": -5.764017105102539, "IDs": "AvalonFP1445", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.083003044128418, "y": -5.214763164520264, "IDs": "AvalonFP1006", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.107208728790283, "y": -6.191263675689697, "IDs": "AvalonFP896", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.267208099365234, "y": -6.6311354637146, "IDs": "AvalonFP1814", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.47337007522583, "y": -3.76682710647583, "IDs": "AvalonFP272", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.416048526763916, "y": -5.795740127563477, "IDs": "AvalonFP1888", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7604033946990967, "y": -7.205531597137451, "IDs": "AvalonFP933", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.076919078826904, "y": -6.918423652648926, "IDs": "AvalonFP1498", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3574371337890625, "y": -2.428520441055298, "IDs": "AvalonFP1057", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.64951753616333, "y": -2.536679267883301, "IDs": "AvalonFP1882", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.0907421112060547, "y": -2.8481357097625732, "IDs": "AvalonFP1785", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.763356685638428, "y": -2.383988618850708, "IDs": "AvalonFP547", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.45879864692688, "y": -8.02606201171875, "IDs": "AvalonFP1901", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.928091287612915, "y": -5.427675724029541, "IDs": "AvalonFP574", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1473603248596191, "y": -1.6910643577575684, "IDs": "AvalonFP505", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.590895414352417, "y": -4.458624362945557, "IDs": "AvalonFP425", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.548333644866943, "y": -4.101028919219971, "IDs": "AvalonFP1178", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5684914588928223, "y": -4.50826358795166, "IDs": "AvalonFP281", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.472960948944092, "y": -7.823159217834473, "IDs": "AvalonFP102", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.180661201477051, "y": -4.7383832931518555, "IDs": "AvalonFP722", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.3725923299789429, "y": -1.73284912109375, "IDs": "AvalonFP1962", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.351263523101807, "y": -5.016556739807129, "IDs": "AvalonFP887", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.482161283493042, "y": -4.837249755859375, "IDs": "AvalonFP617", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.259052276611328, "y": -3.9158990383148193, "IDs": "AvalonFP1846", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.958878993988037, "y": -6.437931060791016, "IDs": "AvalonFP71", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1856017112731934, "y": -6.195047378540039, "IDs": "AvalonFP1531", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.738970994949341, "y": -5.3193159103393555, "IDs": "AvalonFP1300", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.168426036834717, "y": -4.1217122077941895, "IDs": "AvalonFP776", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9172773361206055, "y": -5.62711763381958, "IDs": "AvalonFP1969", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0437138080596924, "y": -7.162519931793213, "IDs": "AvalonFP1255", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.138881206512451, "y": -6.226017951965332, "IDs": "AvalonFP910", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8446543216705322, "y": -7.21352481842041, "IDs": "AvalonFP1889", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5752248764038086, "y": -6.815915107727051, "IDs": "AvalonFP507", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.843327045440674, "y": -4.954597473144531, "IDs": "AvalonFP278", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.392781972885132, "y": -8.119232177734375, "IDs": "AvalonFP545", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.469008922576904, "y": -6.84553861618042, "IDs": "AvalonFP1469", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.310302257537842, "y": -7.1798787117004395, "IDs": "AvalonFP2013", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4323084354400635, "y": -3.6868135929107666, "IDs": "AvalonFP494", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8192241191864014, "y": -4.449176788330078, "IDs": "AvalonFP417", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.606008052825928, "y": -2.57210373878479, "IDs": "AvalonFP677", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.129709482192993, "y": -6.248315811157227, "IDs": "AvalonFP369", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.646211624145508, "y": -2.3878989219665527, "IDs": "AvalonFP1747", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.71787166595459, "y": -5.431905746459961, "IDs": "AvalonFP511", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9332079887390137, "y": -6.404517650604248, "IDs": "AvalonFP669", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.551939010620117, "y": -5.775627136230469, "IDs": "AvalonFP1001", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.2471818923950195, "y": -5.7828240394592285, "IDs": "AvalonFP1797", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4661831855773926, "y": -5.506231784820557, "IDs": "AvalonFP479", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2203433513641357, "y": -4.393971920013428, "IDs": "AvalonFP1172", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.216313600540161, "y": -6.000796794891357, "IDs": "AvalonFP332", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.336411476135254, "y": -6.47661018371582, "IDs": "AvalonFP512", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.426840901374817, "y": -7.0877251625061035, "IDs": "AvalonFP234", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.534709453582764, "y": -5.447764873504639, "IDs": "AvalonFP1758", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.804111480712891, "y": -2.3823330402374268, "IDs": "AvalonFP176", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.778165817260742, "y": -2.4526522159576416, "IDs": "AvalonFP1847", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.81805419921875, "y": -4.590394973754883, "IDs": "AvalonFP309", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.294646263122559, "y": -4.080473899841309, "IDs": "AvalonFP88", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6200928688049316, "y": -6.810747146606445, "IDs": "AvalonFP1211", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.850772380828857, "y": -4.719747066497803, "IDs": "AvalonFP711", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1765031814575195, "y": -3.9235289096832275, "IDs": "AvalonFP919", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8519325256347656, "y": -5.509329795837402, "IDs": "AvalonFP1490", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.160012245178223, "y": -5.388429164886475, "IDs": "AvalonFP748", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.570516586303711, "y": -4.890900611877441, "IDs": "AvalonFP1252", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.255837440490723, "y": -4.393953323364258, "IDs": "AvalonFP539", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.566081523895264, "y": -2.5851991176605225, "IDs": "AvalonFP1070", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1541829109191895, "y": -6.79187536239624, "IDs": "AvalonFP4", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.826594829559326, "y": -4.993583679199219, "IDs": "AvalonFP1164", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1066107749938965, "y": -2.5766658782958984, "IDs": "AvalonFP724", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.338057994842529, "y": -4.723409652709961, "IDs": "AvalonFP881", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0237066745758057, "y": -7.690586090087891, "IDs": "AvalonFP1366", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2187862396240234, "y": -4.737010955810547, "IDs": "AvalonFP1283", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8228437900543213, "y": -3.7080559730529785, "IDs": "AvalonFP786", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.740440368652344, "y": -5.934350967407227, "IDs": "AvalonFP1347", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.7385637760162354, "y": -6.056849956512451, "IDs": "AvalonFP926", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.624730348587036, "y": -5.824830055236816, "IDs": "AvalonFP407", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7059624195098877, "y": -5.189967155456543, "IDs": "AvalonFP985", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.026810646057129, "y": -3.348215103149414, "IDs": "AvalonFP418", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2123544216156006, "y": -4.729523181915283, "IDs": "AvalonFP402", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.482673645019531, "y": -5.199215412139893, "IDs": "AvalonFP1698", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8303582668304443, "y": -5.11915922164917, "IDs": "AvalonFP1397", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.627748966217041, "y": -6.433438301086426, "IDs": "AvalonFP1792", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.271296262741089, "y": -3.963364839553833, "IDs": "AvalonFP1939", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.767764568328857, "y": -4.337958335876465, "IDs": "AvalonFP129", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.186178684234619, "y": -4.305739402770996, "IDs": "AvalonFP1754", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.767841100692749, "y": -6.824801921844482, "IDs": "AvalonFP597", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.066488742828369, "y": -5.247178554534912, "IDs": "AvalonFP1624", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.630695104598999, "y": -5.6247124671936035, "IDs": "AvalonFP557", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.429821014404297, "y": -5.285281658172607, "IDs": "AvalonFP1142", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.417260646820068, "y": -6.985342979431152, "IDs": "AvalonFP420", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4875519275665283, "y": -6.873160362243652, "IDs": "AvalonFP39", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.125890016555786, "y": -5.681492805480957, "IDs": "AvalonFP145", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.332658290863037, "y": -4.873881816864014, "IDs": "AvalonFP1915", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.95753288269043, "y": -4.126670837402344, "IDs": "AvalonFP1468", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.549786567687988, "y": -7.0763258934021, "IDs": "AvalonFP1079", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0247273445129395, "y": -3.9303948879241943, "IDs": "AvalonFP1557", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.023471355438232, "y": -4.972133636474609, "IDs": "AvalonFP1163", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.2964258193969727, "y": -1.6040141582489014, "IDs": "AvalonFP137", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.839436054229736, "y": -4.051541805267334, "IDs": "AvalonFP911", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": -2.7022669315338135, "y": -4.871410369873047, "IDs": "AvalonFP329", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5974225997924805, "y": -4.9853339195251465, "IDs": "AvalonFP263", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.695315837860107, "y": -4.427892208099365, "IDs": "AvalonFP1999", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.242023229598999, "y": -4.235960960388184, "IDs": "AvalonFP1103", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3838396072387695, "y": -1.333082675933838, "IDs": "AvalonFP1696", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3729400634765625, "y": -7.033048629760742, "IDs": "AvalonFP660", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9771173000335693, "y": -1.7677651643753052, "IDs": "AvalonFP1687", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.599390029907227, "y": -2.891819477081299, "IDs": "AvalonFP1560", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.347820281982422, "y": -2.521001100540161, "IDs": "AvalonFP200", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.782680511474609, "y": -4.644357681274414, "IDs": "AvalonFP1459", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.708830833435059, "y": -5.32574462890625, "IDs": "AvalonFP912", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.194864273071289, "y": -6.633620738983154, "IDs": "AvalonFP1019", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.27522611618042, "y": -1.3589681386947632, "IDs": "AvalonFP1842", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.099167823791504, "y": -5.048576831817627, "IDs": "AvalonFP868", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.092976093292236, "y": -4.146997928619385, "IDs": "AvalonFP22", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.393277168273926, "y": -5.093883037567139, "IDs": "AvalonFP1409", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.916478157043457, "y": -4.630202293395996, "IDs": "AvalonFP1712", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6262691020965576, "y": -4.559800148010254, "IDs": "AvalonFP980", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.812917947769165, "y": -5.451786994934082, "IDs": "AvalonFP1956", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3764514923095703, "y": -4.505992889404297, "IDs": "AvalonFP1195", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.502459526062012, "y": -5.097462177276611, "IDs": "AvalonFP522", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.872755289077759, "y": -4.922462463378906, "IDs": "AvalonFP629", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.489683628082275, "y": -5.309049129486084, "IDs": "AvalonFP1433", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4655916690826416, "y": -6.05084228515625, "IDs": "AvalonFP1573", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6583073139190674, "y": -5.453773498535156, "IDs": "AvalonFP199", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.821796417236328, "y": -7.704931259155273, "IDs": "AvalonFP295", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5887932777404785, "y": -5.59063196182251, "IDs": "AvalonFP1015", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.228946208953857, "y": -3.9290499687194824, "IDs": "AvalonFP1342", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.287164688110352, "y": -3.131753444671631, "IDs": "AvalonFP971", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.250418663024902, "y": -4.6829609870910645, "IDs": "AvalonFP1868", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.791224002838135, "y": -5.74615478515625, "IDs": "AvalonFP9", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1622262001037598, "y": -5.3014068603515625, "IDs": "AvalonFP1652", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.509455680847168, "y": -6.571492671966553, "IDs": "AvalonFP59", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.825223207473755, "y": -2.5049359798431396, "IDs": "AvalonFP443", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.978142738342285, "y": -4.862285614013672, "IDs": "AvalonFP757", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.259514808654785, "y": -6.139473915100098, "IDs": "AvalonFP1760", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.4702253341674805, "y": -1.5505033731460571, "IDs": "AvalonFP791", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.179823875427246, "y": -4.045095443725586, "IDs": "AvalonFP1964", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9769248962402344, "y": -5.841619968414307, "IDs": "AvalonFP450", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.632930278778076, "y": -5.448811054229736, "IDs": "AvalonFP1343", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.349510669708252, "y": -7.86024284362793, "IDs": "AvalonFP389", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.526477098464966, "y": -7.951805114746094, "IDs": "AvalonFP1201", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7504734992980957, "y": -5.576135635375977, "IDs": "AvalonFP1699", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3073813915252686, "y": -5.9922776222229, "IDs": "AvalonFP322", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.198486566543579, "y": -5.669686794281006, "IDs": "AvalonFP1827", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.189117908477783, "y": -6.715878963470459, "IDs": "AvalonFP883", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.070167064666748, "y": -5.5620951652526855, "IDs": "AvalonFP385", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.046620845794678, "y": -4.928089618682861, "IDs": "AvalonFP1501", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.470452308654785, "y": -6.091721057891846, "IDs": "AvalonFP1179", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.468663454055786, "y": -5.34264612197876, "IDs": "AvalonFP519", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.882627010345459, "y": -2.4005675315856934, "IDs": "AvalonFP836", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.860264778137207, "y": -2.331530809402466, "IDs": "AvalonFP1928", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.880857467651367, "y": -5.495033264160156, "IDs": "AvalonFP1570", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.536149978637695, "y": -7.115779399871826, "IDs": "AvalonFP1422", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.589966297149658, "y": -2.566425323486328, "IDs": "AvalonFP1082", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6234748363494873, "y": -7.987837791442871, "IDs": "AvalonFP1638", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.615922927856445, "y": -5.517215728759766, "IDs": "AvalonFP3", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3034274578094482, "y": -3.5562150478363037, "IDs": "AvalonFP1258", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9210877418518066, "y": -5.198083400726318, "IDs": "AvalonFP1200", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.98016881942749, "y": -3.6519227027893066, "IDs": "AvalonFP1362", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9150032997131348, "y": -6.560662269592285, "IDs": "AvalonFP1941", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.104548931121826, "y": -5.32999849319458, "IDs": "AvalonFP242", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7280871868133545, "y": -5.2759528160095215, "IDs": "AvalonFP1294", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.589769124984741, "y": -7.323173999786377, "IDs": "AvalonFP273", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.931293249130249, "y": -2.640831708908081, "IDs": "AvalonFP239", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.323396682739258, "y": -6.140163898468018, "IDs": "AvalonFP87", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.142759323120117, "y": -5.279608249664307, "IDs": "AvalonFP207", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3538737297058105, "y": -7.887151718139648, "IDs": "AvalonFP1245", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.537527084350586, "y": -5.213867664337158, "IDs": "AvalonFP969", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.07202672958374, "y": -4.679609775543213, "IDs": "AvalonFP1009", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7964906692504883, "y": -5.922502040863037, "IDs": "AvalonFP725", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.659516334533691, "y": -6.084980010986328, "IDs": "AvalonFP1290", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.026057481765747, "y": -5.330189228057861, "IDs": "AvalonFP756", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.047459125518799, "y": -6.31463623046875, "IDs": "AvalonFP396", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2331717014312744, "y": -5.586639881134033, "IDs": "AvalonFP502", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.369350910186768, "y": -1.4212228059768677, "IDs": "AvalonFP195", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.526882648468018, "y": -7.100680828094482, "IDs": "AvalonFP596", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.529350280761719, "y": -2.710597515106201, "IDs": "AvalonFP35", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.496952772140503, "y": -5.859035015106201, "IDs": "AvalonFP884", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8247416019439697, "y": -6.970494270324707, "IDs": "AvalonFP542", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.410900354385376, "y": -5.782552242279053, "IDs": "AvalonFP809", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6744003295898438, "y": -7.620542526245117, "IDs": "AvalonFP508", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.103619575500488, "y": -6.772556304931641, "IDs": "AvalonFP56", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.906339406967163, "y": -4.3781633377075195, "IDs": "AvalonFP2001", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.237183570861816, "y": -5.095547199249268, "IDs": "AvalonFP951", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.077791213989258, "y": -5.047895908355713, "IDs": "AvalonFP1505", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.747148036956787, "y": -4.362539768218994, "IDs": "AvalonFP1466", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.877472877502441, "y": -5.8703532218933105, "IDs": "AvalonFP632", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.528780937194824, "y": -4.2704925537109375, "IDs": "AvalonFP575", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.297796249389648, "y": -6.662460803985596, "IDs": "AvalonFP33", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.551546096801758, "y": -2.8094029426574707, "IDs": "AvalonFP2031", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9009701013565063, "y": -5.394145965576172, "IDs": "AvalonFP125", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6600780487060547, "y": -5.461901664733887, "IDs": "AvalonFP60", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.513821601867676, "y": -7.061429500579834, "IDs": "AvalonFP1150", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9719295501708984, "y": -6.458652019500732, "IDs": "AvalonFP1302", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.21458101272583, "y": -5.71845817565918, "IDs": "AvalonFP1246", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.834834098815918, "y": -2.6258645057678223, "IDs": "AvalonFP595", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.769412994384766, "y": -4.997089385986328, "IDs": "AvalonFP962", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8827311992645264, "y": -5.9687418937683105, "IDs": "AvalonFP388", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.334496021270752, "y": -1.3300615549087524, "IDs": "AvalonFP1254", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.269519567489624, "y": -5.430056571960449, "IDs": "AvalonFP737", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9690098762512207, "y": -4.127641201019287, "IDs": "AvalonFP499", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.547162055969238, "y": -2.528831958770752, "IDs": "AvalonFP358", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.635335683822632, "y": -4.801173210144043, "IDs": "AvalonFP646", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.448530673980713, "y": -4.2563300132751465, "IDs": "AvalonFP1861", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.219386100769043, "y": -5.192367076873779, "IDs": "AvalonFP589", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.363668918609619, "y": -5.128515720367432, "IDs": "AvalonFP1665", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.562129974365234, "y": -6.681880474090576, "IDs": "AvalonFP1339", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5967628955841064, "y": -7.934281349182129, "IDs": "AvalonFP862", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.107153415679932, "y": -4.827469348907471, "IDs": "AvalonFP1678", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.363738536834717, "y": -4.49285888671875, "IDs": "AvalonFP372", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.758472442626953, "y": -6.638489246368408, "IDs": "AvalonFP571", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9738852977752686, "y": -3.1825978755950928, "IDs": "AvalonFP1588", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4530670642852783, "y": -7.52442741394043, "IDs": "AvalonFP1591", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.974385976791382, "y": -3.2595505714416504, "IDs": "AvalonFP93", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.95286226272583, "y": -6.185408115386963, "IDs": "AvalonFP1327", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9284167289733887, "y": -5.353063106536865, "IDs": "AvalonFP1496", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.922734022140503, "y": -3.932459831237793, "IDs": "AvalonFP994", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7882845401763916, "y": -6.389719009399414, "IDs": "AvalonFP1722", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.456651210784912, "y": -4.933123588562012, "IDs": "AvalonFP1789", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.328051805496216, "y": -7.636989593505859, "IDs": "AvalonFP268", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.454278469085693, "y": -5.435619831085205, "IDs": "AvalonFP744", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1665663719177246, "y": -3.5985147953033447, "IDs": "AvalonFP192", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.68537974357605, "y": -2.3999454975128174, "IDs": "AvalonFP752", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7148373126983643, "y": -7.743166446685791, "IDs": "AvalonFP1903", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8135331869125366, "y": -5.491669654846191, "IDs": "AvalonFP174", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4512901306152344, "y": -5.754033088684082, "IDs": "AvalonFP474", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.095414876937866, "y": -3.3529608249664307, "IDs": "AvalonFP559", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.271346092224121, "y": -4.3547258377075195, "IDs": "AvalonFP905", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.081312894821167, "y": -5.648228168487549, "IDs": "AvalonFP1273", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.6954604387283325, "y": -5.478121757507324, "IDs": "AvalonFP142", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.299184799194336, "y": -1.275273323059082, "IDs": "AvalonFP62", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.428260803222656, "y": -6.373536586761475, "IDs": "AvalonFP327", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.166562080383301, "y": -5.341219425201416, "IDs": "AvalonFP979", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.500835418701172, "y": -1.5585212707519531, "IDs": "AvalonFP1899", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.851717710494995, "y": -6.428292274475098, "IDs": "AvalonFP637", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8985073566436768, "y": -2.5340633392333984, "IDs": "AvalonFP54", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1731189489364624, "y": -2.9440722465515137, "IDs": "AvalonFP1541", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9156317710876465, "y": -6.152963161468506, "IDs": "AvalonFP1135", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.044106960296631, "y": -5.489099025726318, "IDs": "AvalonFP139", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.104971408843994, "y": -3.286734104156494, "IDs": "AvalonFP387", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1571807861328125, "y": -5.893557071685791, "IDs": "AvalonFP1949", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.983820915222168, "y": -4.992298126220703, "IDs": "AvalonFP1741", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.125319004058838, "y": -5.798373222351074, "IDs": "AvalonFP191", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3916640281677246, "y": -5.217312335968018, "IDs": "AvalonFP528", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8390233516693115, "y": -5.209515571594238, "IDs": "AvalonFP1753", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6600093841552734, "y": -6.094767093658447, "IDs": "AvalonFP1202", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9023003578186035, "y": -7.688482284545898, "IDs": "AvalonFP1431", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.227288246154785, "y": -5.764780044555664, "IDs": "AvalonFP1542", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.48667573928833, "y": -2.9488413333892822, "IDs": "AvalonFP2028", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1494297981262207, "y": -5.909396648406982, "IDs": "AvalonFP691", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8310444355010986, "y": -5.022849082946777, "IDs": "AvalonFP1108", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.971839427947998, "y": -7.29326868057251, "IDs": "AvalonFP391", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.955294609069824, "y": -4.634292125701904, "IDs": "AvalonFP1553", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.753058433532715, "y": -5.970457077026367, "IDs": "AvalonFP1523", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.168411374092102, "y": -1.5740573406219482, "IDs": "AvalonFP1306", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6260733604431152, "y": -7.855470180511475, "IDs": "AvalonFP1379", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.776155710220337, "y": -7.699373722076416, "IDs": "AvalonFP525", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6069729328155518, "y": -5.633265972137451, "IDs": "AvalonFP1992", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.369536399841309, "y": -3.1079788208007812, "IDs": "AvalonFP1369", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.903677463531494, "y": -6.7418622970581055, "IDs": "AvalonFP1183", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.103464603424072, "y": -6.2421183586120605, "IDs": "AvalonFP700", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5212066173553467, "y": -6.319039821624756, "IDs": "AvalonFP318", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.992536544799805, "y": -3.6712522506713867, "IDs": "AvalonFP1543", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.447918176651001, "y": -5.864500999450684, "IDs": "AvalonFP1920", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1136577129364014, "y": -3.3728039264678955, "IDs": "AvalonFP152", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2705671787261963, "y": -6.419305324554443, "IDs": "AvalonFP177", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9928737878799438, "y": -7.621578693389893, "IDs": "AvalonFP165", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.936272621154785, "y": -4.471499443054199, "IDs": "AvalonFP1778", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.893949508666992, "y": -5.854126930236816, "IDs": "AvalonFP743", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.52282190322876, "y": -4.8959455490112305, "IDs": "AvalonFP718", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.098611831665039, "y": -6.322518348693848, "IDs": "AvalonFP668", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5194528102874756, "y": -7.913609981536865, "IDs": "AvalonFP564", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.693164348602295, "y": -6.790280342102051, "IDs": "AvalonFP1385", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.974377632141113, "y": -3.589705228805542, "IDs": "AvalonFP554", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.052798748016357, "y": -6.826581954956055, "IDs": "AvalonFP170", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.378952503204346, "y": -6.232189655303955, "IDs": "AvalonFP1175", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9074554443359375, "y": -5.3812360763549805, "IDs": "AvalonFP1161", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.329193115234375, "y": -3.621729612350464, "IDs": "AvalonFP1382", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.164811611175537, "y": -4.931909561157227, "IDs": "AvalonFP331", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6950788497924805, "y": -5.222733497619629, "IDs": "AvalonFP1884", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.282128095626831, "y": -5.238919258117676, "IDs": "AvalonFP117", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.325552463531494, "y": -4.770411968231201, "IDs": "AvalonFP735", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5467700958251953, "y": -3.7779617309570312, "IDs": "AvalonFP1020", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3111519813537598, "y": -5.842220783233643, "IDs": "AvalonFP2018", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5696234703063965, "y": -2.573908805847168, "IDs": "AvalonFP1010", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.841555595397949, "y": -5.994246482849121, "IDs": "AvalonFP699", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.439383029937744, "y": -5.26865291595459, "IDs": "AvalonFP495", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0434842109680176, "y": -1.8398547172546387, "IDs": "AvalonFP500", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5773656368255615, "y": -5.72421407699585, "IDs": "AvalonFP509", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.980678081512451, "y": -3.606154680252075, "IDs": "AvalonFP19", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3927836418151855, "y": -7.1575164794921875, "IDs": "AvalonFP1706", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4078891277313232, "y": -5.1146721839904785, "IDs": "AvalonFP430", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.873447418212891, "y": -5.563232898712158, "IDs": "AvalonFP1443", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.510267972946167, "y": -8.031907081604004, "IDs": "AvalonFP467", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3080549240112305, "y": -4.307035446166992, "IDs": "AvalonFP410", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9446141719818115, "y": -4.409195899963379, "IDs": "AvalonFP286", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.543599605560303, "y": -2.7615256309509277, "IDs": "AvalonFP91", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.342123508453369, "y": -4.691949367523193, "IDs": "AvalonFP1805", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.693775653839111, "y": -4.681026458740234, "IDs": "AvalonFP350", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.954254150390625, "y": -3.2080276012420654, "IDs": "AvalonFP1277", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.024604320526123, "y": -3.277167797088623, "IDs": "AvalonFP2020", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1313300132751465, "y": -4.166364669799805, "IDs": "AvalonFP753", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.870028495788574, "y": -3.4460177421569824, "IDs": "AvalonFP1820", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.263357162475586, "y": -5.653746128082275, "IDs": "AvalonFP1059", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.658529758453369, "y": -6.78485107421875, "IDs": "AvalonFP1314", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9241607189178467, "y": -4.388406753540039, "IDs": "AvalonFP1017", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0839579105377197, "y": -4.38461971282959, "IDs": "AvalonFP1394", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4539270401000977, "y": -7.942301273345947, "IDs": "AvalonFP514", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.829129457473755, "y": -5.5697832107543945, "IDs": "AvalonFP1360", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9525887966156006, "y": -6.318089008331299, "IDs": "AvalonFP211", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.963282585144043, "y": -3.5815205574035645, "IDs": "AvalonFP2", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.547121524810791, "y": -2.973289728164673, "IDs": "AvalonFP1367", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.344353199005127, "y": -5.0058770179748535, "IDs": "AvalonFP2011", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.250559329986572, "y": -5.60949182510376, "IDs": "AvalonFP232", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.418704509735107, "y": -3.840076208114624, "IDs": "AvalonFP497", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.610714435577393, "y": -5.051887035369873, "IDs": "AvalonFP580", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.192488193511963, "y": -3.327711582183838, "IDs": "AvalonFP175", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0248477458953857, "y": -7.840572357177734, "IDs": "AvalonFP1856", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.761512517929077, "y": -2.436680555343628, "IDs": "AvalonFP1950", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9911515712738037, "y": -5.559445858001709, "IDs": "AvalonFP124", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.524645209312439, "y": -7.10782527923584, "IDs": "AvalonFP328", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.671557903289795, "y": -5.500324726104736, "IDs": "AvalonFP1708", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.513260364532471, "y": -5.567707538604736, "IDs": "AvalonFP1139", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.289664268493652, "y": -6.590506553649902, "IDs": "AvalonFP1038", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.130762100219727, "y": -4.094717502593994, "IDs": "AvalonFP838", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.192104339599609, "y": -5.89308500289917, "IDs": "AvalonFP1447", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.486746311187744, "y": -6.236486434936523, "IDs": "AvalonFP2033", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.749917984008789, "y": -7.675348281860352, "IDs": "AvalonFP1641", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.441418647766113, "y": -4.7242045402526855, "IDs": "AvalonFP563", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.61378288269043, "y": -2.5212559700012207, "IDs": "AvalonFP864", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1233208179473877, "y": -5.646118640899658, "IDs": "AvalonFP1083", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6313657760620117, "y": -7.847612380981445, "IDs": "AvalonFP1007", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6126041412353516, "y": -8.03321361541748, "IDs": "AvalonFP2014", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.032869338989258, "y": -1.8658332824707031, "IDs": "AvalonFP236", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.387919902801514, "y": -5.91845178604126, "IDs": "AvalonFP1321", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9974054098129272, "y": -4.364785194396973, "IDs": "AvalonFP618", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.421430587768555, "y": -6.310619354248047, "IDs": "AvalonFP777", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.634495973587036, "y": -6.8571553230285645, "IDs": "AvalonFP257", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.860383152961731, "y": -5.423161506652832, "IDs": "AvalonFP1236", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3466382026672363, "y": -4.692012310028076, "IDs": "AvalonFP1250", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.111199140548706, "y": -6.360480308532715, "IDs": "AvalonFP1143", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4225382804870605, "y": -7.809410095214844, "IDs": "AvalonFP1840", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.859069347381592, "y": -5.748554706573486, "IDs": "AvalonFP1764", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.472629070281982, "y": -7.047452449798584, "IDs": "AvalonFP1065", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.137097120285034, "y": -4.969355583190918, "IDs": "AvalonFP778", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.242598533630371, "y": -2.7145912647247314, "IDs": "AvalonFP826", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5260169506073, "y": -7.954044818878174, "IDs": "AvalonFP1446", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.308258056640625, "y": -8.00628662109375, "IDs": "AvalonFP1958", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.44491720199585, "y": -1.5474224090576172, "IDs": "AvalonFP607", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.053478717803955, "y": -7.604119300842285, "IDs": "AvalonFP662", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.5314195156097412, "y": -1.6534862518310547, "IDs": "AvalonFP941", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.447920322418213, "y": -5.366762161254883, "IDs": "AvalonFP1672", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0182671546936035, "y": -4.486992359161377, "IDs": "AvalonFP1348", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.408956527709961, "y": -6.624850749969482, "IDs": "AvalonFP640", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.415095806121826, "y": -4.504693508148193, "IDs": "AvalonFP1772", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3922014236450195, "y": -4.3871870040893555, "IDs": "AvalonFP343", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.166781425476074, "y": -5.246546268463135, "IDs": "AvalonFP1940", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.832986354827881, "y": -4.590484619140625, "IDs": "AvalonFP799", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.97617244720459, "y": -6.69717264175415, "IDs": "AvalonFP712", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.904114723205566, "y": -5.925836086273193, "IDs": "AvalonFP1713", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.644843816757202, "y": -2.5399301052093506, "IDs": "AvalonFP1420", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.217271327972412, "y": -6.812932968139648, "IDs": "AvalonFP953", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.262389659881592, "y": -4.072049617767334, "IDs": "AvalonFP447", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1293532848358154, "y": -3.515760898590088, "IDs": "AvalonFP1621", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.162281036376953, "y": -5.241032600402832, "IDs": "AvalonFP1032", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9810874462127686, "y": -4.9219160079956055, "IDs": "AvalonFP1047", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.571908473968506, "y": -3.9751052856445312, "IDs": "AvalonFP364", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1084251403808594, "y": -1.8959457874298096, "IDs": "AvalonFP687", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.745333671569824, "y": -4.072974681854248, "IDs": "AvalonFP1279", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.568444728851318, "y": -6.1691718101501465, "IDs": "AvalonFP47", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.328747749328613, "y": -7.177581310272217, "IDs": "AvalonFP577", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3189873695373535, "y": -6.2786407470703125, "IDs": "AvalonFP987", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.596499443054199, "y": -4.6798858642578125, "IDs": "AvalonFP644", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.901647567749023, "y": -4.607442378997803, "IDs": "AvalonFP857", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.835728168487549, "y": -5.710795879364014, "IDs": "AvalonFP710", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.486059188842773, "y": -1.733304738998413, "IDs": "AvalonFP1090", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.613725185394287, "y": -2.547900438308716, "IDs": "AvalonFP1679", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3712236881256104, "y": -4.789994239807129, "IDs": "AvalonFP158", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.172635793685913, "y": -3.668550491333008, "IDs": "AvalonFP1352", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.724727153778076, "y": -2.6298861503601074, "IDs": "AvalonFP311", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.31612491607666, "y": -5.599447250366211, "IDs": "AvalonFP294", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.548954963684082, "y": -5.291575908660889, "IDs": "AvalonFP1113", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6446402072906494, "y": -5.60357666015625, "IDs": "AvalonFP1725", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.252986192703247, "y": -6.763410568237305, "IDs": "AvalonFP1149", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.964816093444824, "y": -5.520139694213867, "IDs": "AvalonFP1216", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1711987257003784, "y": -1.59605073928833, "IDs": "AvalonFP1806", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.945082426071167, "y": -5.576826095581055, "IDs": "AvalonFP456", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8128530979156494, "y": -5.480414390563965, "IDs": "AvalonFP1100", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.176242351531982, "y": -5.0733323097229, "IDs": "AvalonFP1851", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.093760967254639, "y": -5.070630073547363, "IDs": "AvalonFP148", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.037312984466553, "y": -6.541800022125244, "IDs": "AvalonFP930", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.550649642944336, "y": -6.2615251541137695, "IDs": "AvalonFP808", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.869851112365723, "y": -6.499586582183838, "IDs": "AvalonFP1911", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.709840774536133, "y": -7.2340593338012695, "IDs": "AvalonFP44", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.748807907104492, "y": -2.663086414337158, "IDs": "AvalonFP792", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.912790060043335, "y": -3.2247862815856934, "IDs": "AvalonFP829", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.827014923095703, "y": -2.3756017684936523, "IDs": "AvalonFP958", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.51902961730957, "y": -5.400949478149414, "IDs": "AvalonFP859", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.579084396362305, "y": -5.729954242706299, "IDs": "AvalonFP255", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.429234504699707, "y": -1.4721407890319824, "IDs": "AvalonFP1720", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7352447509765625, "y": -7.20470666885376, "IDs": "AvalonFP1765", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.065155982971191, "y": -5.067134857177734, "IDs": "AvalonFP785", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0250492095947266, "y": -4.8044257164001465, "IDs": "AvalonFP1114", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.314207553863525, "y": -5.58379602432251, "IDs": "AvalonFP1925", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.489593982696533, "y": -5.241020202636719, "IDs": "AvalonFP747", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.264889240264893, "y": -5.673696041107178, "IDs": "AvalonFP461", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.155665397644043, "y": -6.612587928771973, "IDs": "AvalonFP1907", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.53693151473999, "y": -5.506934642791748, "IDs": "AvalonFP1654", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.140101194381714, "y": -4.075669288635254, "IDs": "AvalonFP1952", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.585548400878906, "y": -6.734594345092773, "IDs": "AvalonFP1014", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.5832905769348145, "y": -4.361201286315918, "IDs": "AvalonFP1214", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.361579418182373, "y": -6.661228179931641, "IDs": "AvalonFP171", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.765791177749634, "y": -6.530643463134766, "IDs": "AvalonFP1190", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.50126838684082, "y": -6.7139129638671875, "IDs": "AvalonFP1407", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.493722438812256, "y": -5.166878700256348, "IDs": "AvalonFP1680", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8621444702148438, "y": -7.842982769012451, "IDs": "AvalonFP939", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0291781425476074, "y": -6.03688383102417, "IDs": "AvalonFP1145", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.373538017272949, "y": -8.14578628540039, "IDs": "AvalonFP197", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.559203147888184, "y": -6.757867813110352, "IDs": "AvalonFP705", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.762690544128418, "y": -7.378742694854736, "IDs": "AvalonFP2038", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2331032752990723, "y": -7.80027961730957, "IDs": "AvalonFP693", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7672741413116455, "y": -5.853792667388916, "IDs": "AvalonFP212", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.31846809387207, "y": -6.510324001312256, "IDs": "AvalonFP395", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.589264392852783, "y": -6.4092607498168945, "IDs": "AvalonFP1212", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9387478828430176, "y": -3.4263579845428467, "IDs": "AvalonFP98", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.860826015472412, "y": -2.444025754928589, "IDs": "AvalonFP1493", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.68624210357666, "y": -7.21806526184082, "IDs": "AvalonFP80", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4213037490844727, "y": -4.802043437957764, "IDs": "AvalonFP1364", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8476113080978394, "y": -6.144140720367432, "IDs": "AvalonFP998", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.044783115386963, "y": -6.83155632019043, "IDs": "AvalonFP730", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.319676637649536, "y": -5.107881546020508, "IDs": "AvalonFP1402", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.475476264953613, "y": -7.027303218841553, "IDs": "AvalonFP155", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6477410793304443, "y": -6.057257175445557, "IDs": "AvalonFP346", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.489886283874512, "y": -6.677152156829834, "IDs": "AvalonFP1953", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.309654712677002, "y": -1.5505319833755493, "IDs": "AvalonFP1983", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7967922687530518, "y": -2.4833006858825684, "IDs": "AvalonFP429", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.030340671539307, "y": -6.428046703338623, "IDs": "AvalonFP655", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.365969181060791, "y": -5.608530044555664, "IDs": "AvalonFP671", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.91010856628418, "y": -4.677663326263428, "IDs": "AvalonFP1331", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3202667236328125, "y": -7.168680191040039, "IDs": "AvalonFP924", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.802552700042725, "y": -2.4361276626586914, "IDs": "AvalonFP1134", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.18542742729187, "y": -6.065262317657471, "IDs": "AvalonFP914", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1251912117004395, "y": -7.589759349822998, "IDs": "AvalonFP374", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8831961154937744, "y": -3.3205552101135254, "IDs": "AvalonFP1116", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.984772205352783, "y": -6.373457908630371, "IDs": "AvalonFP254", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.535198211669922, "y": -6.250854015350342, "IDs": "AvalonFP105", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.557975769042969, "y": -6.207045555114746, "IDs": "AvalonFP1683", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.425970077514648, "y": -6.804994583129883, "IDs": "AvalonFP222", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.9105544090271, "y": -2.724133014678955, "IDs": "AvalonFP300", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.642007827758789, "y": -5.050942897796631, "IDs": "AvalonFP85", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.370997190475464, "y": -4.698901653289795, "IDs": "AvalonFP1521", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.511530876159668, "y": -7.940080165863037, "IDs": "AvalonFP1946", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.808995485305786, "y": -4.852482318878174, "IDs": "AvalonFP538", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.386364459991455, "y": -3.429560422897339, "IDs": "AvalonFP1194", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.314014911651611, "y": -5.701582908630371, "IDs": "AvalonFP432", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.412866115570068, "y": -6.569877624511719, "IDs": "AvalonFP1558", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2398111820220947, "y": -4.158477306365967, "IDs": "AvalonFP304", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.781517505645752, "y": -4.263049602508545, "IDs": "AvalonFP1608", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3096513748168945, "y": -5.460860729217529, "IDs": "AvalonFP783", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.328925609588623, "y": -4.286293029785156, "IDs": "AvalonFP659", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.05302619934082, "y": -5.383361339569092, "IDs": "AvalonFP229", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.903830051422119, "y": -7.290975093841553, "IDs": "AvalonFP1378", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3934898376464844, "y": -5.913775444030762, "IDs": "AvalonFP1441", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2608118057250977, "y": -5.8029255867004395, "IDs": "AvalonFP1299", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7077090740203857, "y": -6.912324905395508, "IDs": "AvalonFP378", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4315571784973145, "y": -3.4226431846618652, "IDs": "AvalonFP482", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.832087755203247, "y": -7.787034034729004, "IDs": "AvalonFP1206", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.420187473297119, "y": -4.526525020599365, "IDs": "AvalonFP291", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.34850549697876, "y": -3.940013885498047, "IDs": "AvalonFP249", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.347092628479004, "y": -4.9493513107299805, "IDs": "AvalonFP1286", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.523126602172852, "y": -4.72912073135376, "IDs": "AvalonFP842", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.533171653747559, "y": -5.426784038543701, "IDs": "AvalonFP498", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.046844482421875, "y": -2.6144180297851562, "IDs": "AvalonFP1662", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4416065216064453, "y": -5.83881139755249, "IDs": "AvalonFP1177", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.544289588928223, "y": -7.072371959686279, "IDs": "AvalonFP1073", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2483134269714355, "y": -5.637084007263184, "IDs": "AvalonFP1061", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.470667839050293, "y": -6.926276206970215, "IDs": "AvalonFP1071", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3016037940979, "y": -5.703120231628418, "IDs": "AvalonFP880", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.350893974304199, "y": -7.080910682678223, "IDs": "AvalonFP1084", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5178117752075195, "y": -4.570461273193359, "IDs": "AvalonFP641", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.921032428741455, "y": -5.597303867340088, "IDs": "AvalonFP2012", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.2092312574386597, "y": -2.922623634338379, "IDs": "AvalonFP779", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.233829975128174, "y": -2.124765634536743, "IDs": "AvalonFP1488", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.747646808624268, "y": -5.71630334854126, "IDs": "AvalonFP1168", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.14898157119751, "y": -6.136318683624268, "IDs": "AvalonFP1199", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.661795139312744, "y": -4.786489009857178, "IDs": "AvalonFP248", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.872153282165527, "y": -2.739645481109619, "IDs": "AvalonFP639", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.193873882293701, "y": -5.734496593475342, "IDs": "AvalonFP1729", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.534470558166504, "y": -5.103248596191406, "IDs": "AvalonFP1738", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8276820182800293, "y": -5.824359893798828, "IDs": "AvalonFP1646", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.279507637023926, "y": -5.211095809936523, "IDs": "AvalonFP2047", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.66471791267395, "y": -3.9761128425598145, "IDs": "AvalonFP285", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.048781633377075, "y": -5.491690158843994, "IDs": "AvalonFP1434", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.454477071762085, "y": -8.043266296386719, "IDs": "AvalonFP1152", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.914789199829102, "y": -4.665578365325928, "IDs": "AvalonFP2043", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2641899585723877, "y": -5.030303478240967, "IDs": "AvalonFP1948", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0029237270355225, "y": -7.631651401519775, "IDs": "AvalonFP1209", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.3584139347076416, "y": -5.375329494476318, "IDs": "AvalonFP49", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1318743228912354, "y": -1.5511677265167236, "IDs": "AvalonFP1605", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.717018127441406, "y": -5.099496364593506, "IDs": "AvalonFP1922", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5596210956573486, "y": -5.364166259765625, "IDs": "AvalonFP1374", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.644730091094971, "y": -5.6943039894104, "IDs": "AvalonFP214", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.915128231048584, "y": -3.6214303970336914, "IDs": "AvalonFP1167", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7558159828186035, "y": -5.312042713165283, "IDs": "AvalonFP1033", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.544865846633911, "y": -5.856548309326172, "IDs": "AvalonFP1062", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.448301315307617, "y": -6.236312389373779, "IDs": "AvalonFP349", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8523001670837402, "y": -4.978756427764893, "IDs": "AvalonFP1471", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8242034912109375, "y": -5.230281829833984, "IDs": "AvalonFP1295", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2216744422912598, "y": -4.527412414550781, "IDs": "AvalonFP1585", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.832630634307861, "y": -5.8742594718933105, "IDs": "AvalonFP1058", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5788843631744385, "y": -6.917280673980713, "IDs": "AvalonFP1453", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.077462673187256, "y": -3.514549732208252, "IDs": "AvalonFP1329", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9799625873565674, "y": -4.937565803527832, "IDs": "AvalonFP874", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.799875259399414, "y": -2.3718950748443604, "IDs": "AvalonFP13", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.03718900680542, "y": -6.056423664093018, "IDs": "AvalonFP2009", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.803184747695923, "y": -5.050975322723389, "IDs": "AvalonFP626", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5182549953460693, "y": -8.023447036743164, "IDs": "AvalonFP379", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.157261848449707, "y": -5.248410701751709, "IDs": "AvalonFP42", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1625266075134277, "y": -4.872227668762207, "IDs": "AvalonFP289", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.562203884124756, "y": -6.711848258972168, "IDs": "AvalonFP1886", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.840651988983154, "y": -4.688493728637695, "IDs": "AvalonFP1318", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.254950046539307, "y": -4.6444268226623535, "IDs": "AvalonFP1752", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.548959732055664, "y": -4.933682441711426, "IDs": "AvalonFP181", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.197176456451416, "y": -4.426717758178711, "IDs": "AvalonFP307", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.784224033355713, "y": -5.970024585723877, "IDs": "AvalonFP1815", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0315756797790527, "y": -1.8017675876617432, "IDs": "AvalonFP243", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1347882747650146, "y": -5.755914688110352, "IDs": "AvalonFP84", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.569188117980957, "y": -7.032946586608887, "IDs": "AvalonFP1512", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.897707462310791, "y": -3.8701066970825195, "IDs": "AvalonFP138", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3223891258239746, "y": -6.414459705352783, "IDs": "AvalonFP480", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.361892223358154, "y": -6.926418304443359, "IDs": "AvalonFP1095", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.739072799682617, "y": -3.715139389038086, "IDs": "AvalonFP1087", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.7151265144348145, "y": -5.013575553894043, "IDs": "AvalonFP540", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.93764066696167, "y": -2.852872848510742, "IDs": "AvalonFP180", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2302534580230713, "y": -5.566712856292725, "IDs": "AvalonFP1210", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.735758304595947, "y": -6.3283562660217285, "IDs": "AvalonFP160", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0382132530212402, "y": -6.377214431762695, "IDs": "AvalonFP1629", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.766144037246704, "y": -2.4658188819885254, "IDs": "AvalonFP1736", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.882950782775879, "y": -6.424067497253418, "IDs": "AvalonFP390", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9840216636657715, "y": -5.575558662414551, "IDs": "AvalonFP271", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4227728843688965, "y": -7.8065571784973145, "IDs": "AvalonFP1243", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.393561363220215, "y": -6.4637041091918945, "IDs": "AvalonFP952", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.723031044006348, "y": -5.527195930480957, "IDs": "AvalonFP438", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.147502899169922, "y": -6.889840126037598, "IDs": "AvalonFP1775", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4083988666534424, "y": -2.472820997238159, "IDs": "AvalonFP758", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.292700290679932, "y": -4.930327415466309, "IDs": "AvalonFP1345", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.965512990951538, "y": -5.806069850921631, "IDs": "AvalonFP549", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.869983196258545, "y": -4.877083778381348, "IDs": "AvalonFP437", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9705348014831543, "y": -4.483282089233398, "IDs": "AvalonFP2032", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.784021854400635, "y": -5.087292671203613, "IDs": "AvalonFP1971", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.240470886230469, "y": -6.185675621032715, "IDs": "AvalonFP1419", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.149426460266113, "y": -6.15821647644043, "IDs": "AvalonFP1024", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8866255283355713, "y": -2.6766679286956787, "IDs": "AvalonFP1809", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.304887294769287, "y": -1.511966586112976, "IDs": "AvalonFP227", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.186603307723999, "y": -5.97137451171875, "IDs": "AvalonFP1737", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6700539588928223, "y": -2.555157423019409, "IDs": "AvalonFP462", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.883103609085083, "y": -5.98751974105835, "IDs": "AvalonFP1612", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.268009662628174, "y": -4.71696662902832, "IDs": "AvalonFP298", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.765275001525879, "y": -4.589190483093262, "IDs": "AvalonFP338", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.527988433837891, "y": -6.335064888000488, "IDs": "AvalonFP107", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.795925140380859, "y": -5.053175926208496, "IDs": "AvalonFP1872", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.326045036315918, "y": -5.6008219718933105, "IDs": "AvalonFP1111", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.46244478225708, "y": -7.041401386260986, "IDs": "AvalonFP63", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.582786798477173, "y": -5.118239402770996, "IDs": "AvalonFP305", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.397102355957031, "y": -4.5581746101379395, "IDs": "AvalonFP1802", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.504235744476318, "y": -5.421290397644043, "IDs": "AvalonFP1474", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5853769779205322, "y": -4.5865583419799805, "IDs": "AvalonFP853", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.175476551055908, "y": -5.80221700668335, "IDs": "AvalonFP1533", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7116894721984863, "y": -6.021978378295898, "IDs": "AvalonFP1644", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.477035999298096, "y": -4.914130687713623, "IDs": "AvalonFP1783", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.302529811859131, "y": -7.1940178871154785, "IDs": "AvalonFP526", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.875333786010742, "y": -5.452685832977295, "IDs": "AvalonFP990", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8600640296936035, "y": -4.393810272216797, "IDs": "AvalonFP162", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.817490339279175, "y": -5.2205305099487305, "IDs": "AvalonFP325", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.905517578125, "y": -4.716552734375, "IDs": "AvalonFP421", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.278110980987549, "y": -5.4598894119262695, "IDs": "AvalonFP727", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.278390645980835, "y": -6.036336898803711, "IDs": "AvalonFP651", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.89855694770813, "y": -7.195504665374756, "IDs": "AvalonFP1990", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.451916694641113, "y": -6.815633773803711, "IDs": "AvalonFP2040", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9229427576065063, "y": -4.416747093200684, "IDs": "AvalonFP918", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7191760540008545, "y": -5.5691447257995605, "IDs": "AvalonFP1452", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.191422939300537, "y": -4.3472208976745605, "IDs": "AvalonFP1810", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.239823579788208, "y": -3.543734550476074, "IDs": "AvalonFP347", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.0253030061721802, "y": -6.7561354637146, "IDs": "AvalonFP1270", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.120475769042969, "y": -6.435390472412109, "IDs": "AvalonFP1208", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.95601749420166, "y": -5.664984226226807, "IDs": "AvalonFP675", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.562802791595459, "y": -7.136549472808838, "IDs": "AvalonFP908", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.145995616912842, "y": -5.141622066497803, "IDs": "AvalonFP1869", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.283721685409546, "y": -4.384095191955566, "IDs": "AvalonFP537", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8064136505126953, "y": -7.645477294921875, "IDs": "AvalonFP1855", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0768275260925293, "y": -3.578601598739624, "IDs": "AvalonFP435", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4909095764160156, "y": -5.009730815887451, "IDs": "AvalonFP1684", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.18149995803833, "y": -6.60373067855835, "IDs": "AvalonFP282", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4827632904052734, "y": -5.359367370605469, "IDs": "AvalonFP1620", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.215409755706787, "y": -7.033077239990234, "IDs": "AvalonFP266", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.052810192108154, "y": -5.717326641082764, "IDs": "AvalonFP279", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.544154167175293, "y": -6.00208044052124, "IDs": "AvalonFP1137", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.763321399688721, "y": -6.066415309906006, "IDs": "AvalonFP1769", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1872735023498535, "y": -4.199151515960693, "IDs": "AvalonFP928", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.077479362487793, "y": -5.452559471130371, "IDs": "AvalonFP2006", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.443646430969238, "y": -6.977283954620361, "IDs": "AvalonFP287", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9157400131225586, "y": -5.087453365325928, "IDs": "AvalonFP100", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7873685359954834, "y": -5.557450294494629, "IDs": "AvalonFP1196", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.578214645385742, "y": -6.6235175132751465, "IDs": "AvalonFP1529", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.2099047899246216, "y": -1.6502951383590698, "IDs": "AvalonFP1960", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7822036743164062, "y": -6.539009094238281, "IDs": "AvalonFP1631", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.997039318084717, "y": -4.425223350524902, "IDs": "AvalonFP48", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.584250450134277, "y": -2.522488832473755, "IDs": "AvalonFP1417", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.639983892440796, "y": -7.8208441734313965, "IDs": "AvalonFP1153", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8583922386169434, "y": -2.5711236000061035, "IDs": "AvalonFP852", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.713141441345215, "y": -4.2607645988464355, "IDs": "AvalonFP965", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9294536113739014, "y": -2.544865131378174, "IDs": "AvalonFP321", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.601386070251465, "y": -5.808899879455566, "IDs": "AvalonFP224", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.322907447814941, "y": -3.7266464233398438, "IDs": "AvalonFP1319", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7027149200439453, "y": -5.750861167907715, "IDs": "AvalonFP1156", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.505101203918457, "y": -5.376044273376465, "IDs": "AvalonFP95", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5921883583068848, "y": -5.352757930755615, "IDs": "AvalonFP657", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.92014741897583, "y": -5.36891508102417, "IDs": "AvalonFP1904", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9527891874313354, "y": -5.661465644836426, "IDs": "AvalonFP1237", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7963078022003174, "y": -5.442087173461914, "IDs": "AvalonFP1267", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8309149742126465, "y": -4.808412551879883, "IDs": "AvalonFP1825", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8266758918762207, "y": -5.277288913726807, "IDs": "AvalonFP1734", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.539335250854492, "y": -7.7370924949646, "IDs": "AvalonFP115", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.7905299663543701, "y": -7.516450881958008, "IDs": "AvalonFP1617", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.791026592254639, "y": -5.952459335327148, "IDs": "AvalonFP483", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5042471885681152, "y": -6.054819583892822, "IDs": "AvalonFP865", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6210391521453857, "y": -4.480316162109375, "IDs": "AvalonFP1238", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7077531814575195, "y": -5.536006927490234, "IDs": "AvalonFP210", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3960981369018555, "y": -7.103468418121338, "IDs": "AvalonFP1750", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.196820259094238, "y": -2.8489677906036377, "IDs": "AvalonFP1944", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.292189121246338, "y": -4.105883598327637, "IDs": "AvalonFP1744", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.776416301727295, "y": -5.952311992645264, "IDs": "AvalonFP1896", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.554222583770752, "y": -6.592690467834473, "IDs": "AvalonFP1627", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.537271022796631, "y": -5.352308750152588, "IDs": "AvalonFP891", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.202386856079102, "y": -5.106480598449707, "IDs": "AvalonFP1461", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.979672431945801, "y": -6.40508508682251, "IDs": "AvalonFP27", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.474905252456665, "y": -7.785738945007324, "IDs": "AvalonFP739", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0476884841918945, "y": -6.5031914710998535, "IDs": "AvalonFP253", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8897311687469482, "y": -5.835606098175049, "IDs": "AvalonFP661", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.946770191192627, "y": -3.421842575073242, "IDs": "AvalonFP1858", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.200828552246094, "y": -6.270462512969971, "IDs": "AvalonFP1823", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.65787935256958, "y": -5.865045070648193, "IDs": "AvalonFP52", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.382384777069092, "y": -6.456593990325928, "IDs": "AvalonFP1793", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0103745460510254, "y": -6.949032783508301, "IDs": "AvalonFP892", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.99318528175354, "y": -6.445873737335205, "IDs": "AvalonFP1609", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.784599542617798, "y": -5.185798645019531, "IDs": "AvalonFP579", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9738781452178955, "y": -4.4475417137146, "IDs": "AvalonFP925", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5553677082061768, "y": -4.539851665496826, "IDs": "AvalonFP1479", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5655345916748047, "y": -5.8678741455078125, "IDs": "AvalonFP1568", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.280876159667969, "y": -1.3566997051239014, "IDs": "AvalonFP1477", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9048503637313843, "y": -4.389200687408447, "IDs": "AvalonFP78", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.487508296966553, "y": -5.425844669342041, "IDs": "AvalonFP927", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5701189041137695, "y": -4.751154899597168, "IDs": "AvalonFP709", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5093531608581543, "y": -7.883922100067139, "IDs": "AvalonFP1185", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.479617595672607, "y": -5.411410808563232, "IDs": "AvalonFP1811", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.900142192840576, "y": -4.647175312042236, "IDs": "AvalonFP1118", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2332968711853027, "y": -6.102273941040039, "IDs": "AvalonFP1063", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.163606643676758, "y": -5.485403537750244, "IDs": "AvalonFP1849", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.468998908996582, "y": -5.571225166320801, "IDs": "AvalonFP445", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.595667362213135, "y": -5.091049671173096, "IDs": "AvalonFP1408", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2881860733032227, "y": -4.844230651855469, "IDs": "AvalonFP400", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.085599660873413, "y": -3.5681536197662354, "IDs": "AvalonFP422", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.496258735656738, "y": -6.376214981079102, "IDs": "AvalonFP1106", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.398597717285156, "y": -4.609381198883057, "IDs": "AvalonFP1089", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.396935939788818, "y": -6.704017162322998, "IDs": "AvalonFP1141", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.344936370849609, "y": -3.575714111328125, "IDs": "AvalonFP1125", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8070878982543945, "y": -4.900233268737793, "IDs": "AvalonFP1335", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.199559211730957, "y": -4.617589950561523, "IDs": "AvalonFP1787", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.280917167663574, "y": -6.973617076873779, "IDs": "AvalonFP288", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.478597164154053, "y": -3.156418800354004, "IDs": "AvalonFP1078", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.866146564483643, "y": -6.811823844909668, "IDs": "AvalonFP1657", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.785984516143799, "y": -2.4597160816192627, "IDs": "AvalonFP2029", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8586950302124023, "y": -5.069793224334717, "IDs": "AvalonFP920", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.252989768981934, "y": -5.411617279052734, "IDs": "AvalonFP341", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6959080696105957, "y": -6.8875274658203125, "IDs": "AvalonFP1796", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6404011249542236, "y": -5.396371841430664, "IDs": "AvalonFP213", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.016057014465332, "y": -6.151402950286865, "IDs": "AvalonFP355", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6450114250183105, "y": -7.505609512329102, "IDs": "AvalonFP551", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.697512626647949, "y": -5.012843132019043, "IDs": "AvalonFP29", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.015127658843994, "y": -6.640622138977051, "IDs": "AvalonFP996", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8848201036453247, "y": -2.4736931324005127, "IDs": "AvalonFP61", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.400535821914673, "y": -5.948855400085449, "IDs": "AvalonFP28", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.604464054107666, "y": -6.757602214813232, "IDs": "AvalonFP1227", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.446042537689209, "y": -6.493577480316162, "IDs": "AvalonFP1648", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9305896759033203, "y": -5.582585334777832, "IDs": "AvalonFP1180", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1550517082214355, "y": -4.7828569412231445, "IDs": "AvalonFP1389", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.386356353759766, "y": -6.945754051208496, "IDs": "AvalonFP541", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.214892864227295, "y": -4.842047691345215, "IDs": "AvalonFP267", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.139906883239746, "y": -5.619821548461914, "IDs": "AvalonFP854", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.379129886627197, "y": -3.1170058250427246, "IDs": "AvalonFP451", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.312548875808716, "y": -4.002675533294678, "IDs": "AvalonFP916", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8027737140655518, "y": -2.484895706176758, "IDs": "AvalonFP1666", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.65812349319458, "y": -7.891219615936279, "IDs": "AvalonFP1232", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.6644792556762695, "y": -4.144284248352051, "IDs": "AvalonFP1128", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.436870813369751, "y": -5.790149688720703, "IDs": "AvalonFP394", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6653456687927246, "y": -7.886343479156494, "IDs": "AvalonFP51", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6150951385498047, "y": -3.765265941619873, "IDs": "AvalonFP193", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2504422664642334, "y": -5.171219825744629, "IDs": "AvalonFP1726", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0998921394348145, "y": -5.670244216918945, "IDs": "AvalonFP114", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5169966220855713, "y": -5.642278671264648, "IDs": "AvalonFP308", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.044299364089966, "y": -6.748958110809326, "IDs": "AvalonFP1278", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.678568363189697, "y": -2.4952516555786133, "IDs": "AvalonFP624", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.286115884780884, "y": -4.993980884552002, "IDs": "AvalonFP645", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9465715885162354, "y": -5.1750078201293945, "IDs": "AvalonFP147", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3141839504241943, "y": -3.6513705253601074, "IDs": "AvalonFP1836", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.388176441192627, "y": -7.113270282745361, "IDs": "AvalonFP1876", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7340400218963623, "y": -4.890275001525879, "IDs": "AvalonFP1607", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.846503496170044, "y": -2.666663885116577, "IDs": "AvalonFP1271", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9540231227874756, "y": -4.444559574127197, "IDs": "AvalonFP431", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.089376211166382, "y": -7.804934024810791, "IDs": "AvalonFP1315", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.485038757324219, "y": -5.52051305770874, "IDs": "AvalonFP204", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.785699844360352, "y": -5.86142110824585, "IDs": "AvalonFP371", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.356744766235352, "y": -5.490110874176025, "IDs": "AvalonFP1563", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.984243154525757, "y": -6.478633880615234, "IDs": "AvalonFP955", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.150426864624023, "y": -4.914661884307861, "IDs": "AvalonFP472", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.529199600219727, "y": -5.526036739349365, "IDs": "AvalonFP206", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.892637252807617, "y": -6.850162506103516, "IDs": "AvalonFP471", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5255837440490723, "y": -5.04384183883667, "IDs": "AvalonFP469", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.626721382141113, "y": -4.74995231628418, "IDs": "AvalonFP650", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.962663173675537, "y": -5.026969909667969, "IDs": "AvalonFP2039", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8501484394073486, "y": -5.713593006134033, "IDs": "AvalonFP721", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.613860130310059, "y": -6.483832836151123, "IDs": "AvalonFP133", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.891098737716675, "y": -5.161595344543457, "IDs": "AvalonFP23", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.269683361053467, "y": -5.031805992126465, "IDs": "AvalonFP1902", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7118985652923584, "y": -7.310147762298584, "IDs": "AvalonFP561", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.846908092498779, "y": -4.9809417724609375, "IDs": "AvalonFP439", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.416471481323242, "y": -5.4366135597229, "IDs": "AvalonFP319", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8603615760803223, "y": -5.040498733520508, "IDs": "AvalonFP1503", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8445427417755127, "y": -4.423354148864746, "IDs": "AvalonFP1426", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5395071506500244, "y": -5.717056751251221, "IDs": "AvalonFP1127", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.177550792694092, "y": -6.214163780212402, "IDs": "AvalonFP1336", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3125507831573486, "y": -4.700146675109863, "IDs": "AvalonFP1519", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8171303272247314, "y": -3.535017967224121, "IDs": "AvalonFP154", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8006705045700073, "y": -7.538898468017578, "IDs": "AvalonFP1628", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.039260387420654, "y": -5.002695560455322, "IDs": "AvalonFP899", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7850284576416016, "y": -2.4651403427124023, "IDs": "AvalonFP1483", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.500680923461914, "y": -6.2221999168396, "IDs": "AvalonFP902", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.074771404266357, "y": -4.840333461761475, "IDs": "AvalonFP1977", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5679783821105957, "y": -5.645018100738525, "IDs": "AvalonFP2024", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.182322025299072, "y": -3.628401517868042, "IDs": "AvalonFP1495", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.725327014923096, "y": -3.67226243019104, "IDs": "AvalonFP386", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2190985679626465, "y": -5.90712308883667, "IDs": "AvalonFP1926", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.060948371887207, "y": -3.8921306133270264, "IDs": "AvalonFP1516", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.983069896697998, "y": -4.922683238983154, "IDs": "AvalonFP1069", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.749359130859375, "y": -5.121358871459961, "IDs": "AvalonFP1008", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.496861934661865, "y": -6.247661590576172, "IDs": "AvalonFP788", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.505190849304199, "y": -7.068721771240234, "IDs": "AvalonFP560", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.311872959136963, "y": -7.792659759521484, "IDs": "AvalonFP775", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.424489974975586, "y": -5.456124305725098, "IDs": "AvalonFP670", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.853229999542236, "y": -2.6798770427703857, "IDs": "AvalonFP1972", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.274277687072754, "y": -6.096458435058594, "IDs": "AvalonFP665", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.302518367767334, "y": -5.98529577255249, "IDs": "AvalonFP1967", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1844773292541504, "y": -6.77531099319458, "IDs": "AvalonFP201", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.018979072570801, "y": -3.470082998275757, "IDs": "AvalonFP1412", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7899465560913086, "y": -3.554863929748535, "IDs": "AvalonFP159", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6635079383850098, "y": -5.423487186431885, "IDs": "AvalonFP1739", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.567130088806152, "y": -7.116959571838379, "IDs": "AvalonFP1376", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.321101665496826, "y": -4.729557037353516, "IDs": "AvalonFP567", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1996898651123047, "y": -3.529758930206299, "IDs": "AvalonFP1140", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.329187870025635, "y": -5.647671699523926, "IDs": "AvalonFP1109", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.671191930770874, "y": -5.114363670349121, "IDs": "AvalonFP2030", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.392309188842773, "y": -4.9104108810424805, "IDs": "AvalonFP938", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.589749813079834, "y": -3.8028652667999268, "IDs": "AvalonFP1828", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.446608304977417, "y": -5.114095687866211, "IDs": "AvalonFP336", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.214866638183594, "y": -6.800213813781738, "IDs": "AvalonFP604", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7519309520721436, "y": -5.242013931274414, "IDs": "AvalonFP921", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5566630363464355, "y": -5.47743558883667, "IDs": "AvalonFP513", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 0.33456796407699585, "y": -2.8089993000030518, "IDs": "AvalonFP1322", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9422295093536377, "y": -5.131532669067383, "IDs": "AvalonFP754", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.064631462097168, "y": -5.662326812744141, "IDs": "AvalonFP475", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.481389045715332, "y": -5.294798851013184, "IDs": "AvalonFP1985", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6181588172912598, "y": -2.3987936973571777, "IDs": "AvalonFP1580", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2291786670684814, "y": -4.601902008056641, "IDs": "AvalonFP366", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3530378341674805, "y": -7.1334757804870605, "IDs": "AvalonFP903", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.154839992523193, "y": -5.573773384094238, "IDs": "AvalonFP1261", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6076574325561523, "y": -8.046195030212402, "IDs": "AvalonFP376", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.342599391937256, "y": -7.045537948608398, "IDs": "AvalonFP1381", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.894381046295166, "y": -5.321429252624512, "IDs": "AvalonFP1649", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.152880907058716, "y": -4.8744072914123535, "IDs": "AvalonFP1791", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.351351737976074, "y": -8.016448974609375, "IDs": "AvalonFP889", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8110766410827637, "y": -2.8422939777374268, "IDs": "AvalonFP1392", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.611252307891846, "y": -4.132101058959961, "IDs": "AvalonFP1927", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.473140716552734, "y": -6.2435078620910645, "IDs": "AvalonFP108", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.550451278686523, "y": -5.145557403564453, "IDs": "AvalonFP1615", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.357343673706055, "y": -5.91841983795166, "IDs": "AvalonFP824", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.7584552764892578, "y": -5.690620422363281, "IDs": "AvalonFP454", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.105067253112793, "y": -6.834491729736328, "IDs": "AvalonFP1192", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.500377178192139, "y": -5.165304660797119, "IDs": "AvalonFP653", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3562750816345215, "y": -6.860687255859375, "IDs": "AvalonFP531", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.915682792663574, "y": -4.929445743560791, "IDs": "AvalonFP781", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.626136779785156, "y": -3.9274401664733887, "IDs": "AvalonFP558", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.379695892333984, "y": -6.956907749176025, "IDs": "AvalonFP1416", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3689486980438232, "y": -7.7957916259765625, "IDs": "AvalonFP1169", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.492623329162598, "y": -7.029329776763916, "IDs": "AvalonFP1524", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1346144676208496, "y": -1.5522301197052002, "IDs": "AvalonFP1274", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.734973907470703, "y": -5.9250712394714355, "IDs": "AvalonFP1771", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.700551986694336, "y": -4.392594814300537, "IDs": "AvalonFP1346", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5998339653015137, "y": -7.992184162139893, "IDs": "AvalonFP521", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.645602226257324, "y": -5.111856460571289, "IDs": "AvalonFP1663", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.2988404035568237, "y": -1.6843335628509521, "IDs": "AvalonFP1096", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.128103256225586, "y": -4.193413257598877, "IDs": "AvalonFP572", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9664652347564697, "y": -2.5492541790008545, "IDs": "AvalonFP8", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4679579734802246, "y": -4.980705261230469, "IDs": "AvalonFP1460", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.312933444976807, "y": -4.222377300262451, "IDs": "AvalonFP123", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.760247707366943, "y": -2.4452028274536133, "IDs": "AvalonFP630", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.619915246963501, "y": -5.161883354187012, "IDs": "AvalonFP1762", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9442994594573975, "y": -5.265923500061035, "IDs": "AvalonFP94", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.344145774841309, "y": -2.6817212104797363, "IDs": "AvalonFP723", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.0651631355285645, "y": -5.738729953765869, "IDs": "AvalonFP1892", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0533223152160645, "y": -5.166394233703613, "IDs": "AvalonFP1916", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5322506427764893, "y": -5.1391425132751465, "IDs": "AvalonFP1475", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.508192539215088, "y": -5.491847515106201, "IDs": "AvalonFP15", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.500080108642578, "y": -4.671412467956543, "IDs": "AvalonFP1728", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.993923664093018, "y": -3.786881446838379, "IDs": "AvalonFP55", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6294846534729004, "y": -5.443615913391113, "IDs": "AvalonFP81", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9153826236724854, "y": -7.209995746612549, "IDs": "AvalonFP220", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.313436269760132, "y": -5.010286331176758, "IDs": "AvalonFP1870", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.10378360748291, "y": -6.2944560050964355, "IDs": "AvalonFP297", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.799831390380859, "y": -5.7240447998046875, "IDs": "AvalonFP550", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.346999168395996, "y": -5.663337230682373, "IDs": "AvalonFP1749", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.234070301055908, "y": -4.392697811126709, "IDs": "AvalonFP167", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.844167947769165, "y": -7.564082145690918, "IDs": "AvalonFP845", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.124229431152344, "y": -5.838923931121826, "IDs": "AvalonFP1463", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.375147581100464, "y": -5.882580280303955, "IDs": "AvalonFP1711", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.028330326080322, "y": -5.508233547210693, "IDs": "AvalonFP1365", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.679686546325684, "y": -5.461236953735352, "IDs": "AvalonFP1355", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9556416273117065, "y": -5.723053932189941, "IDs": "AvalonFP569", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.86981201171875, "y": -4.05767297744751, "IDs": "AvalonFP1184", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9952869415283203, "y": -1.8427741527557373, "IDs": "AvalonFP335", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9817590713500977, "y": -5.782073497772217, "IDs": "AvalonFP1854", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.625733375549316, "y": -6.173545837402344, "IDs": "AvalonFP216", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.205648899078369, "y": -4.215185165405273, "IDs": "AvalonFP1403", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.291701316833496, "y": -6.069149971008301, "IDs": "AvalonFP1354", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.150268077850342, "y": -6.454283714294434, "IDs": "AvalonFP1391", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.9943695068359375, "y": -4.089997291564941, "IDs": "AvalonFP131", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.724445343017578, "y": -2.426253080368042, "IDs": "AvalonFP1897", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.736085414886475, "y": -2.829232931137085, "IDs": "AvalonFP1390", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3371152877807617, "y": -6.063243389129639, "IDs": "AvalonFP503", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6670644283294678, "y": -4.636526584625244, "IDs": "AvalonFP150", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.792269229888916, "y": -6.833033084869385, "IDs": "AvalonFP1965", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.305140018463135, "y": -5.517618179321289, "IDs": "AvalonFP424", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.183399200439453, "y": -4.293093681335449, "IDs": "AvalonFP1036", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.689815044403076, "y": -5.343540668487549, "IDs": "AvalonFP1761", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.478970050811768, "y": -5.845376491546631, "IDs": "AvalonFP1472", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8470795154571533, "y": -6.77437162399292, "IDs": "AvalonFP1707", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.605065107345581, "y": -7.814600944519043, "IDs": "AvalonFP34", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.273383140563965, "y": -4.796091556549072, "IDs": "AvalonFP942", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.76245379447937, "y": -4.329075336456299, "IDs": "AvalonFP1018", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.410916805267334, "y": -6.343787670135498, "IDs": "AvalonFP1309", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.129807949066162, "y": -6.602772235870361, "IDs": "AvalonFP1204", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0780439376831055, "y": -5.490769863128662, "IDs": "AvalonFP6", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.888867378234863, "y": -4.858315944671631, "IDs": "AvalonFP623", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.928309917449951, "y": -6.454063892364502, "IDs": "AvalonFP1097", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.042239189147949, "y": -6.396651744842529, "IDs": "AvalonFP1773", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.41691780090332, "y": -6.513592720031738, "IDs": "AvalonFP1572", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.259854555130005, "y": -7.886602401733398, "IDs": "AvalonFP339", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.088785171508789, "y": -4.2100911140441895, "IDs": "AvalonFP1160", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4844071865081787, "y": -7.980053424835205, "IDs": "AvalonFP92", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0815787315368652, "y": -4.9370527267456055, "IDs": "AvalonFP17", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2285425662994385, "y": -5.590508937835693, "IDs": "AvalonFP1043", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.691389560699463, "y": -6.87837553024292, "IDs": "AvalonFP814", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.779200792312622, "y": -4.5151686668396, "IDs": "AvalonFP847", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.046110153198242, "y": -3.591334342956543, "IDs": "AvalonFP736", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.037981986999512, "y": -5.189291954040527, "IDs": "AvalonFP797", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.116665363311768, "y": -4.548999309539795, "IDs": "AvalonFP1705", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1929240226745605, "y": -3.6832327842712402, "IDs": "AvalonFP1115", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.228736400604248, "y": -3.713444948196411, "IDs": "AvalonFP46", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.380722522735596, "y": -5.947081089019775, "IDs": "AvalonFP1464", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5408053398132324, "y": -7.972229480743408, "IDs": "AvalonFP1647", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2940447330474854, "y": -8.12747859954834, "IDs": "AvalonFP112", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.574639797210693, "y": -2.634206533432007, "IDs": "AvalonFP247", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0810885429382324, "y": -4.9872965812683105, "IDs": "AvalonFP1936", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6572790145874023, "y": -6.845067977905273, "IDs": "AvalonFP215", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0309836864471436, "y": -4.932584762573242, "IDs": "AvalonFP1895", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9821553230285645, "y": -5.063869953155518, "IDs": "AvalonFP1411", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.730827569961548, "y": -7.628576278686523, "IDs": "AvalonFP598", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.91009521484375, "y": -2.8328919410705566, "IDs": "AvalonFP1234", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.840146541595459, "y": -5.5776262283325195, "IDs": "AvalonFP570", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.061007022857666, "y": -5.451869964599609, "IDs": "AvalonFP704", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1800923347473145, "y": -5.754464149475098, "IDs": "AvalonFP30", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4589521884918213, "y": -7.652286052703857, "IDs": "AvalonFP907", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.42985999584198, "y": -4.151589393615723, "IDs": "AvalonFP120", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.283048629760742, "y": -5.831907272338867, "IDs": "AvalonFP861", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.0257768630981445, "y": -4.4682207107543945, "IDs": "AvalonFP986", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.225317001342773, "y": -5.784363746643066, "IDs": "AvalonFP1709", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9331436157226562, "y": -5.065194129943848, "IDs": "AvalonFP909", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1508963108062744, "y": -1.5889803171157837, "IDs": "AvalonFP1432", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3305013179779053, "y": -4.525897026062012, "IDs": "AvalonFP1437", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2899112701416016, "y": -5.071300029754639, "IDs": "AvalonFP1484", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.16928243637085, "y": -4.82021951675415, "IDs": "AvalonFP807", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.520893096923828, "y": -4.973779201507568, "IDs": "AvalonFP793", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.555176019668579, "y": -5.790117263793945, "IDs": "AvalonFP1978", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.113232135772705, "y": -4.93904447555542, "IDs": "AvalonFP837", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9620689153671265, "y": -3.5381269454956055, "IDs": "AvalonFP315", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.9353814125061035, "y": -4.495656967163086, "IDs": "AvalonFP1800", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.918724536895752, "y": -5.79840612411499, "IDs": "AvalonFP1506", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7311549186706543, "y": -2.466306209564209, "IDs": "AvalonFP1297", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.4280760288238525, "y": -5.454254627227783, "IDs": "AvalonFP1715", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.323419094085693, "y": -5.36180305480957, "IDs": "AvalonFP1003", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2553513050079346, "y": -7.060520172119141, "IDs": "AvalonFP991", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.652610778808594, "y": -2.5370144844055176, "IDs": "AvalonFP187", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9895260334014893, "y": -5.34124755859375, "IDs": "AvalonFP496", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.214578628540039, "y": -5.804339408874512, "IDs": "AvalonFP1593", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.892012357711792, "y": -5.041407108306885, "IDs": "AvalonFP274", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0155136585235596, "y": -5.641851902008057, "IDs": "AvalonFP1860", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4877638816833496, "y": -4.126285076141357, "IDs": "AvalonFP116", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.043695449829102, "y": -5.86887788772583, "IDs": "AvalonFP2042", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.839272975921631, "y": -4.864252090454102, "IDs": "AvalonFP1768", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.927917003631592, "y": -4.704222679138184, "IDs": "AvalonFP411", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4842329025268555, "y": -7.093555927276611, "IDs": "AvalonFP957", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.347851037979126, "y": -2.2632269859313965, "IDs": "AvalonFP931", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.686223983764648, "y": -6.32045841217041, "IDs": "AvalonFP1217", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.374608039855957, "y": -7.139892101287842, "IDs": "AvalonFP1219", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2680587768554688, "y": -4.146613121032715, "IDs": "AvalonFP1716", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.054851770401001, "y": -5.877022743225098, "IDs": "AvalonFP1831", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.6748552322387695, "y": -2.368464946746826, "IDs": "AvalonFP1537", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6894211769104, "y": -6.71999454498291, "IDs": "AvalonFP1268", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.222297191619873, "y": -3.299018144607544, "IDs": "AvalonFP1843", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8840718269348145, "y": -2.927417516708374, "IDs": "AvalonFP183", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.888826370239258, "y": -6.1694016456604, "IDs": "AvalonFP184", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.7346649169921875, "y": -2.4438068866729736, "IDs": "AvalonFP871", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5280630588531494, "y": -5.2601094245910645, "IDs": "AvalonFP1004", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.352766990661621, "y": -6.096688270568848, "IDs": "AvalonFP1700", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.533186912536621, "y": -6.084908485412598, "IDs": "AvalonFP518", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7959518432617188, "y": -2.5461997985839844, "IDs": "AvalonFP946", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.352933406829834, "y": -5.0032196044921875, "IDs": "AvalonFP280", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5522420406341553, "y": -7.849877834320068, "IDs": "AvalonFP1790", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4658942222595215, "y": -7.94678258895874, "IDs": "AvalonFP132", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.1047515869140625, "y": -4.016702651977539, "IDs": "AvalonFP316", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.603519439697266, "y": -5.346719741821289, "IDs": "AvalonFP1312", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9347920417785645, "y": -7.371696472167969, "IDs": "AvalonFP426", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.609096527099609, "y": -2.600688934326172, "IDs": "AvalonFP172", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.335688591003418, "y": -7.134594440460205, "IDs": "AvalonFP1959", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.651275157928467, "y": -5.0463666915893555, "IDs": "AvalonFP1023", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.329957485198975, "y": -5.604956150054932, "IDs": "AvalonFP715", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.2740877866744995, "y": -1.6192052364349365, "IDs": "AvalonFP1356", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8514225482940674, "y": -5.28383207321167, "IDs": "AvalonFP592", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.564419269561768, "y": -5.715229034423828, "IDs": "AvalonFP1774", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.2570085525512695, "y": -4.3113884925842285, "IDs": "AvalonFP760", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.517778396606445, "y": -4.8942437171936035, "IDs": "AvalonFP43", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0314953327178955, "y": -4.944042205810547, "IDs": "AvalonFP1595", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.690348148345947, "y": -5.114436626434326, "IDs": "AvalonFP1320", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.042937755584717, "y": -5.190054416656494, "IDs": "AvalonFP1040", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.243595600128174, "y": -5.75901985168457, "IDs": "AvalonFP1330", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.877614736557007, "y": -7.674645900726318, "IDs": "AvalonFP820", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.8251953125, "y": -5.3246564865112305, "IDs": "AvalonFP1742", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.523725748062134, "y": -4.8142924308776855, "IDs": "AvalonFP729", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.2831858396530151, "y": -1.5867222547531128, "IDs": "AvalonFP1966", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.708083152770996, "y": -5.457189559936523, "IDs": "AvalonFP1375", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.040408611297607, "y": -5.503979682922363, "IDs": "AvalonFP606", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.007888317108154, "y": -6.762828826904297, "IDs": "AvalonFP855", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.519850969314575, "y": -1.820114016532898, "IDs": "AvalonFP1576", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.808063507080078, "y": -5.422611713409424, "IDs": "AvalonFP1898", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9494558572769165, "y": -6.205647945404053, "IDs": "AvalonFP245", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.437502145767212, "y": -7.819967746734619, "IDs": "AvalonFP1296", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4991843700408936, "y": -5.393864631652832, "IDs": "AvalonFP235", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.140460729598999, "y": -1.7623770236968994, "IDs": "AvalonFP2041", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2642579078674316, "y": -6.124444007873535, "IDs": "AvalonFP460", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5280158519744873, "y": -4.565023422241211, "IDs": "AvalonFP455", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.507252812385559, "y": -7.050830841064453, "IDs": "AvalonFP819", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.094239711761475, "y": -4.361837387084961, "IDs": "AvalonFP1241", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.612597703933716, "y": -5.61368465423584, "IDs": "AvalonFP41", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9158554077148438, "y": -5.70212984085083, "IDs": "AvalonFP1535", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.14381217956543, "y": -6.038252353668213, "IDs": "AvalonFP625", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.536781311035156, "y": -7.094167709350586, "IDs": "AvalonFP878", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.317465782165527, "y": -5.203577041625977, "IDs": "AvalonFP1658", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.757136344909668, "y": -2.485983371734619, "IDs": "AvalonFP841", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.164073467254639, "y": -5.7990193367004395, "IDs": "AvalonFP1918", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.806769371032715, "y": -5.11537504196167, "IDs": "AvalonFP409", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.365813255310059, "y": -5.13935661315918, "IDs": "AvalonFP1029", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4797234535217285, "y": -7.0226545333862305, "IDs": "AvalonFP1601", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.543752193450928, "y": -6.299971580505371, "IDs": "AvalonFP252", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3885767459869385, "y": -7.943941593170166, "IDs": "AvalonFP843", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.352375507354736, "y": -5.070181846618652, "IDs": "AvalonFP1581", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5680928230285645, "y": -3.9265506267547607, "IDs": "AvalonFP992", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.746936082839966, "y": -4.405367374420166, "IDs": "AvalonFP1879", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0116636753082275, "y": -1.825750470161438, "IDs": "AvalonFP956", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3002564907073975, "y": -7.9024977684021, "IDs": "AvalonFP1223", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9287445545196533, "y": -4.480835914611816, "IDs": "AvalonFP1924", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.233853340148926, "y": -4.8776044845581055, "IDs": "AvalonFP936", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.980247497558594, "y": -4.553986549377441, "IDs": "AvalonFP745", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.668321132659912, "y": -5.625809669494629, "IDs": "AvalonFP901", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.1629977226257324, "y": -3.619102716445923, "IDs": "AvalonFP870", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0774128437042236, "y": -1.897020697593689, "IDs": "AvalonFP1428", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.083878517150879, "y": -5.567994594573975, "IDs": "AvalonFP517", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7947192192077637, "y": -6.554344177246094, "IDs": "AvalonFP1000", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.761440277099609, "y": -4.551540851593018, "IDs": "AvalonFP1710", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1263415813446045, "y": -3.9486632347106934, "IDs": "AvalonFP306", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.592026472091675, "y": -5.357652187347412, "IDs": "AvalonFP1410", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.84924840927124, "y": -4.744134902954102, "IDs": "AvalonFP583", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.0468902587890625, "y": -3.560407876968384, "IDs": "AvalonFP2045", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.151800155639648, "y": -6.415122985839844, "IDs": "AvalonFP70", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.698801040649414, "y": -4.422502517700195, "IDs": "AvalonFP648", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0197832584381104, "y": -4.0275139808654785, "IDs": "AvalonFP2027", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.355849266052246, "y": -3.557821035385132, "IDs": "AvalonFP452", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8599661588668823, "y": -5.978211879730225, "IDs": "AvalonFP734", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.413952827453613, "y": -5.340326309204102, "IDs": "AvalonFP1723", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.619404315948486, "y": -2.618147134780884, "IDs": "AvalonFP135", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.457230567932129, "y": -4.268853187561035, "IDs": "AvalonFP803", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3180768489837646, "y": -7.794461727142334, "IDs": "AvalonFP1630", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.132405996322632, "y": -5.263394355773926, "IDs": "AvalonFP594", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.432675361633301, "y": -1.7052310705184937, "IDs": "AvalonFP470", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.221649646759033, "y": -6.164446830749512, "IDs": "AvalonFP619", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.315708160400391, "y": -2.4985222816467285, "IDs": "AvalonFP1862", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4601545333862305, "y": -2.5896081924438477, "IDs": "AvalonFP771", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.678104400634766, "y": -4.858194351196289, "IDs": "AvalonFP1703", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.861521005630493, "y": -5.442248344421387, "IDs": "AvalonFP1937", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.886709213256836, "y": -4.154079437255859, "IDs": "AvalonFP1538", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.474714279174805, "y": -1.6379436254501343, "IDs": "AvalonFP130", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.828516006469727, "y": -5.252663612365723, "IDs": "AvalonFP1518", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.618538856506348, "y": -4.904500484466553, "IDs": "AvalonFP1260", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.113835334777832, "y": -6.879547595977783, "IDs": "AvalonFP237", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 0.537705659866333, "y": -2.8793680667877197, "IDs": "AvalonFP1351", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.345608711242676, "y": -5.371227264404297, "IDs": "AvalonFP1656", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.90680456161499, "y": -6.081096172332764, "IDs": "AvalonFP825", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.289683818817139, "y": -4.011119842529297, "IDs": "AvalonFP610", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.364120960235596, "y": -5.511359691619873, "IDs": "AvalonFP284", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.5118627548217773, "y": -7.113306522369385, "IDs": "AvalonFP1050", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.52605676651001, "y": -7.088690757751465, "IDs": "AvalonFP1344", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.673719882965088, "y": -4.120283603668213, "IDs": "AvalonFP1248", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.7638105154037476, "y": -6.095573902130127, "IDs": "AvalonFP323", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6779532432556152, "y": -7.907520771026611, "IDs": "AvalonFP1980", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.204334259033203, "y": -6.7541303634643555, "IDs": "AvalonFP1259", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7211337089538574, "y": -7.243654251098633, "IDs": "AvalonFP1857", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.523723840713501, "y": -5.1897873878479, "IDs": "AvalonFP79", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.218250274658203, "y": -4.229548454284668, "IDs": "AvalonFP976", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.619287967681885, "y": -4.090617656707764, "IDs": "AvalonFP477", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.0017991065979, "y": -4.416497230529785, "IDs": "AvalonFP856", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.245169162750244, "y": -6.529996395111084, "IDs": "AvalonFP161", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.855769634246826, "y": -7.110993385314941, "IDs": "AvalonFP109", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.498133659362793, "y": -5.281219482421875, "IDs": "AvalonFP1028", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.08370041847229, "y": -4.625885009765625, "IDs": "AvalonFP1225", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.96320104598999, "y": -6.313284397125244, "IDs": "AvalonFP64", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.695091962814331, "y": -7.428068161010742, "IDs": "AvalonFP631", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5227839946746826, "y": -5.91752815246582, "IDs": "AvalonFP1120", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.779129505157471, "y": -5.975222587585449, "IDs": "AvalonFP789", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.647475242614746, "y": -5.475966930389404, "IDs": "AvalonFP1781", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.105119228363037, "y": -4.366480827331543, "IDs": "AvalonFP1166", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.662909507751465, "y": -6.255996227264404, "IDs": "AvalonFP14", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4989125728607178, "y": -1.73768150806427, "IDs": "AvalonFP949", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.34622859954834, "y": -6.5378265380859375, "IDs": "AvalonFP18", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.814985513687134, "y": -5.96994686126709, "IDs": "AvalonFP1182", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.53944206237793, "y": -4.84916353225708, "IDs": "AvalonFP1105", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.87155294418335, "y": -4.926265239715576, "IDs": "AvalonFP1174", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.117280960083008, "y": -5.794159412384033, "IDs": "AvalonFP1387", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.717113018035889, "y": -2.4976160526275635, "IDs": "AvalonFP45", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.565170764923096, "y": -3.1159322261810303, "IDs": "AvalonFP999", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.027685165405273, "y": -6.5185675621032715, "IDs": "AvalonFP82", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.656362056732178, "y": -6.070651531219482, "IDs": "AvalonFP1030", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1804280281066895, "y": -6.708001613616943, "IDs": "AvalonFP664", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.591308116912842, "y": -5.225133895874023, "IDs": "AvalonFP121", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.709560394287109, "y": -3.975470542907715, "IDs": "AvalonFP1239", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.506736159324646, "y": -6.326563358306885, "IDs": "AvalonFP1159", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.4994908571243286, "y": -5.458641529083252, "IDs": "AvalonFP38", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3336102962493896, "y": -4.857643127441406, "IDs": "AvalonFP208", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.518049955368042, "y": -4.371275901794434, "IDs": "AvalonFP1492", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": -2.7939138412475586, "y": -4.688887119293213, "IDs": "AvalonFP1866", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.607120990753174, "y": -7.473952770233154, "IDs": "AvalonFP867", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3535494804382324, "y": -5.336799621582031, "IDs": "AvalonFP1013", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.879734039306641, "y": -5.438673496246338, "IDs": "AvalonFP436", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9719319343566895, "y": -6.255231857299805, "IDs": "AvalonFP1996", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 0.4932183027267456, "y": -2.7548797130584717, "IDs": "AvalonFP1859", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.4944305419921875, "y": -7.048003196716309, "IDs": "AvalonFP1066", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.197303771972656, "y": -3.4729349613189697, "IDs": "AvalonFP1957", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3216352462768555, "y": -8.100481033325195, "IDs": "AvalonFP1467", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3724565505981445, "y": -6.099948883056641, "IDs": "AvalonFP1786", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7099955081939697, "y": -7.277120113372803, "IDs": "AvalonFP1430", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.89461088180542, "y": -4.679591655731201, "IDs": "AvalonFP1266", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.22797155380249, "y": -5.169448375701904, "IDs": "AvalonFP486", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8370990753173828, "y": -6.346683025360107, "IDs": "AvalonFP1528", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.100353240966797, "y": -5.187714099884033, "IDs": "AvalonFP1380", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.246424674987793, "y": -5.756431579589844, "IDs": "AvalonFP313", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.726737022399902, "y": -6.737222194671631, "IDs": "AvalonFP578", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.007802963256836, "y": -6.332746982574463, "IDs": "AvalonFP1686", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3359076976776123, "y": -5.0540571212768555, "IDs": "AvalonFP1358", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.531963586807251, "y": -5.091416835784912, "IDs": "AvalonFP983", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.320178031921387, "y": -4.51401424407959, "IDs": "AvalonFP749", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.471846103668213, "y": -3.2141599655151367, "IDs": "AvalonFP1833", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2000374794006348, "y": -7.488760471343994, "IDs": "AvalonFP1931", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5771591663360596, "y": -5.623542785644531, "IDs": "AvalonFP544", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.88008451461792, "y": -5.8902812004089355, "IDs": "AvalonFP363", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.809629917144775, "y": -4.592293739318848, "IDs": "AvalonFP1275", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.335146903991699, "y": -2.5514280796051025, "IDs": "AvalonFP1697", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.5377063751220703, "y": -5.494898319244385, "IDs": "AvalonFP1954", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.502471923828125, "y": -5.352419376373291, "IDs": "AvalonFP1582", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.844488143920898, "y": -6.003015518188477, "IDs": "AvalonFP1265", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.993333101272583, "y": -7.365141868591309, "IDs": "AvalonFP827", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.523312091827393, "y": -3.566530466079712, "IDs": "AvalonFP1101", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.046672821044922, "y": -6.504931926727295, "IDs": "AvalonFP1900", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4907472133636475, "y": -5.8940958976745605, "IDs": "AvalonFP638", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.75994348526001, "y": -2.425274610519409, "IDs": "AvalonFP1968", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.130171298980713, "y": -3.701657772064209, "IDs": "AvalonFP126", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5968704223632812, "y": -4.841245174407959, "IDs": "AvalonFP1427", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.30564022064209, "y": -3.999803066253662, "IDs": "AvalonFP136", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.222471237182617, "y": -2.660867691040039, "IDs": "AvalonFP686", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.583813190460205, "y": -2.520392894744873, "IDs": "AvalonFP1987", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3050575256347656, "y": -7.486550331115723, "IDs": "AvalonFP510", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.850236177444458, "y": -4.695030212402344, "IDs": "AvalonFP1522", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2231345176696777, "y": -6.064259052276611, "IDs": "AvalonFP218", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.357611894607544, "y": -5.1947784423828125, "IDs": "AvalonFP882", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.246464252471924, "y": -5.6666741371154785, "IDs": "AvalonFP1829", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.828354597091675, "y": -5.377852439880371, "IDs": "AvalonFP876", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9601874351501465, "y": -5.69464111328125, "IDs": "AvalonFP1264", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.740248203277588, "y": -6.781449317932129, "IDs": "AvalonFP7", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.699968338012695, "y": -5.134944915771484, "IDs": "AvalonFP1622", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9515196084976196, "y": -5.491170406341553, "IDs": "AvalonFP275", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.034849643707275, "y": -3.6478352546691895, "IDs": "AvalonFP0", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.178397178649902, "y": -4.981078147888184, "IDs": "AvalonFP1757", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.631702423095703, "y": -2.5303826332092285, "IDs": "AvalonFP368", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.586365222930908, "y": -8.030983924865723, "IDs": "AvalonFP1170", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.114673614501953, "y": -3.5328903198242188, "IDs": "AvalonFP1603", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.856147050857544, "y": -7.329740047454834, "IDs": "AvalonFP1671", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.71522331237793, "y": -5.096347332000732, "IDs": "AvalonFP73", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.589069843292236, "y": -4.830417156219482, "IDs": "AvalonFP348", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1220853328704834, "y": -6.10067081451416, "IDs": "AvalonFP844", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5744481086730957, "y": -5.775854587554932, "IDs": "AvalonFP1838", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.153528928756714, "y": -5.349766254425049, "IDs": "AvalonFP1485", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.679941177368164, "y": -5.946935653686523, "IDs": "AvalonFP256", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.599259376525879, "y": -4.262832164764404, "IDs": "AvalonFP945", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3361284732818604, "y": -4.846983432769775, "IDs": "AvalonFP122", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.405223846435547, "y": -5.283031463623047, "IDs": "AvalonFP678", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5296692848205566, "y": -5.917099952697754, "IDs": "AvalonFP964", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.4853971004486084, "y": -7.7616777420043945, "IDs": "AvalonFP1021", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.015944480895996, "y": -5.197719573974609, "IDs": "AvalonFP1359", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.510266065597534, "y": -5.370506286621094, "IDs": "AvalonFP1817", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.627383708953857, "y": -2.5413544178009033, "IDs": "AvalonFP1129", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.984586477279663, "y": -5.065004348754883, "IDs": "AvalonFP1151", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6517231464385986, "y": -4.792182445526123, "IDs": "AvalonFP464", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.870335102081299, "y": -4.485496520996094, "IDs": "AvalonFP238", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.267122745513916, "y": -6.974301338195801, "IDs": "AvalonFP119", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.618376731872559, "y": -4.096604824066162, "IDs": "AvalonFP377", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4710745811462402, "y": -5.77833366394043, "IDs": "AvalonFP1844", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.59000301361084, "y": -4.166775226593018, "IDs": "AvalonFP1751", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.022987127304077, "y": -1.8752315044403076, "IDs": "AvalonFP1579", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.273161888122559, "y": -4.04192590713501, "IDs": "AvalonFP1478", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.0692830085754395, "y": -4.549798965454102, "IDs": "AvalonFP719", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.130690574645996, "y": -5.716488361358643, "IDs": "AvalonFP345", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.969433307647705, "y": -5.627565860748291, "IDs": "AvalonFP1012", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.298954010009766, "y": -5.553379535675049, "IDs": "AvalonFP356", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.660555601119995, "y": -7.754142761230469, "IDs": "AvalonFP681", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.94814395904541, "y": -5.3186354637146, "IDs": "AvalonFP1932", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.8085408210754395, "y": -6.696849822998047, "IDs": "AvalonFP1509", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.55429220199585, "y": -6.236974239349365, "IDs": "AvalonFP726", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6044585704803467, "y": -5.288862705230713, "IDs": "AvalonFP621", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.745783805847168, "y": -6.336028575897217, "IDs": "AvalonFP1583", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.610244274139404, "y": -5.536332607269287, "IDs": "AvalonFP935", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.081160545349121, "y": -5.229969024658203, "IDs": "AvalonFP611", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.871666431427002, "y": -4.3912272453308105, "IDs": "AvalonFP1651", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.6792775392532349, "y": -5.621824264526367, "IDs": "AvalonFP24", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6063344478607178, "y": -7.977202892303467, "IDs": "AvalonFP99", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.050311088562012, "y": -5.835672378540039, "IDs": "AvalonFP1816", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.838051795959473, "y": -5.650668621063232, "IDs": "AvalonFP1634", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.625311017036438, "y": -5.3890509605407715, "IDs": "AvalonFP1717", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.651228427886963, "y": -3.930759906768799, "IDs": "AvalonFP1148", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1794204711914062, "y": -7.862933158874512, "IDs": "AvalonFP1094", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.267683982849121, "y": -6.565053939819336, "IDs": "AvalonFP21", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.222256183624268, "y": -5.124871730804443, "IDs": "AvalonFP1242", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.645831823348999, "y": -4.994302272796631, "IDs": "AvalonFP1682", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.718599319458008, "y": -7.6407856941223145, "IDs": "AvalonFP784", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3158938884735107, "y": -6.056476593017578, "IDs": "AvalonFP221", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.465670585632324, "y": -5.418484687805176, "IDs": "AvalonFP1373", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.492359161376953, "y": -4.532312393188477, "IDs": "AvalonFP770", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.171689987182617, "y": -5.1298723220825195, "IDs": "AvalonFP556", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.785379886627197, "y": -5.96953010559082, "IDs": "AvalonFP948", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.371633291244507, "y": -7.827517509460449, "IDs": "AvalonFP1863", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.5667948722839355, "y": -3.6715075969696045, "IDs": "AvalonFP608", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.515496253967285, "y": -7.6202521324157715, "IDs": "AvalonFP373", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.934704303741455, "y": -4.429246425628662, "IDs": "AvalonFP1162", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.500634670257568, "y": -7.051750183105469, "IDs": "AvalonFP978", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.493459701538086, "y": -5.316983699798584, "IDs": "AvalonFP742", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.872664928436279, "y": -5.6721343994140625, "IDs": "AvalonFP764", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6736364364624023, "y": -6.875816822052002, "IDs": "AvalonFP1187", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.734017848968506, "y": -4.5839738845825195, "IDs": "AvalonFP1052", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.787386655807495, "y": -7.646376609802246, "IDs": "AvalonFP153", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.002761125564575, "y": -6.7481303215026855, "IDs": "AvalonFP110", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.754035949707031, "y": -4.489668369293213, "IDs": "AvalonFP2036", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6391031742095947, "y": -5.819663047790527, "IDs": "AvalonFP970", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.663077354431152, "y": -6.283265113830566, "IDs": "AvalonFP1917", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.828701019287109, "y": -6.823123931884766, "IDs": "AvalonFP954", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9406015872955322, "y": -4.947558879852295, "IDs": "AvalonFP404", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6177124977111816, "y": -5.195484161376953, "IDs": "AvalonFP69", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.2560811042785645, "y": -3.672105550765991, "IDs": "AvalonFP244", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9380364418029785, "y": -6.501258373260498, "IDs": "AvalonFP164", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4336905479431152, "y": -5.962127685546875, "IDs": "AvalonFP858", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.665863513946533, "y": -3.5645487308502197, "IDs": "AvalonFP1341", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.621801853179932, "y": -5.6831865310668945, "IDs": "AvalonFP1247", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.894056797027588, "y": -6.625580310821533, "IDs": "AvalonFP1386", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.891099452972412, "y": -5.612636566162109, "IDs": "AvalonFP230", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.533912181854248, "y": -7.985367774963379, "IDs": "AvalonFP1041", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2676119804382324, "y": -5.48520040512085, "IDs": "AvalonFP250", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.300781011581421, "y": -4.305399417877197, "IDs": "AvalonFP1955", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.117003917694092, "y": -4.780806064605713, "IDs": "AvalonFP652", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.551949977874756, "y": -6.204622268676758, "IDs": "AvalonFP1974", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.771787166595459, "y": -7.824685096740723, "IDs": "AvalonFP1304", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4716780185699463, "y": -4.350100517272949, "IDs": "AvalonFP1525", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.77347469329834, "y": -5.0254597663879395, "IDs": "AvalonFP1370", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.858778953552246, "y": -6.180975437164307, "IDs": "AvalonFP1564", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.234087944030762, "y": -5.886508941650391, "IDs": "AvalonFP1618", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.381646156311035, "y": -4.84846305847168, "IDs": "AvalonFP1821", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7540383338928223, "y": -5.446518421173096, "IDs": "AvalonFP2025", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.556828022003174, "y": -2.630627393722534, "IDs": "AvalonFP1025", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.7204060554504395, "y": -6.2028069496154785, "IDs": "AvalonFP947", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.319005012512207, "y": -1.315192461013794, "IDs": "AvalonFP1759", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8570241928100586, "y": -6.156299591064453, "IDs": "AvalonFP1257", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.434416770935059, "y": -5.167381763458252, "IDs": "AvalonFP932", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3673512935638428, "y": -7.396759986877441, "IDs": "AvalonFP1575", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5892016887664795, "y": -2.574507236480713, "IDs": "AvalonFP546", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7495787143707275, "y": -2.46028995513916, "IDs": "AvalonFP943", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.505552291870117, "y": -6.830379962921143, "IDs": "AvalonFP1590", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.364007949829102, "y": -6.045172691345215, "IDs": "AvalonFP1398", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.158174514770508, "y": -5.918888092041016, "IDs": "AvalonFP141", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.495113849639893, "y": -4.629532814025879, "IDs": "AvalonFP427", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.420396327972412, "y": -5.845978260040283, "IDs": "AvalonFP697", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.904771327972412, "y": -7.732845306396484, "IDs": "AvalonFP1046", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6440541744232178, "y": -2.4413976669311523, "IDs": "AvalonFP1597", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.645257949829102, "y": -5.565884590148926, "IDs": "AvalonFP1022", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.854489803314209, "y": -5.997360706329346, "IDs": "AvalonFP1997", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0967447757720947, "y": -3.5335917472839355, "IDs": "AvalonFP428", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5121757984161377, "y": -7.931867599487305, "IDs": "AvalonFP1908", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.703660011291504, "y": -7.45974063873291, "IDs": "AvalonFP879", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.656830310821533, "y": -4.075985908508301, "IDs": "AvalonFP5", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6697041988372803, "y": -4.688117980957031, "IDs": "AvalonFP708", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.430730819702148, "y": -5.171761989593506, "IDs": "AvalonFP1610", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0441508293151855, "y": -4.437809467315674, "IDs": "AvalonFP1450", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3827688694000244, "y": -5.093647480010986, "IDs": "AvalonFP156", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.449646234512329, "y": -6.411778450012207, "IDs": "AvalonFP755", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5845224857330322, "y": -5.6417694091796875, "IDs": "AvalonFP915", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.141000747680664, "y": -6.497870922088623, "IDs": "AvalonFP1961", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.526703357696533, "y": -7.077129364013672, "IDs": "AvalonFP1596", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1675894260406494, "y": -1.8060855865478516, "IDs": "AvalonFP663", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.747631549835205, "y": -2.432718276977539, "IDs": "AvalonFP1371", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.99990177154541, "y": -5.6168999671936035, "IDs": "AvalonFP163", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.161834478378296, "y": -6.069953441619873, "IDs": "AvalonFP973", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.532600402832031, "y": -5.558589935302734, "IDs": "AvalonFP1144", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.117232322692871, "y": -4.654016017913818, "IDs": "AvalonFP1486", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3877949714660645, "y": -3.7963998317718506, "IDs": "AvalonFP1770", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.366066932678223, "y": -1.4138898849487305, "IDs": "AvalonFP1571", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.237778902053833, "y": -5.657787322998047, "IDs": "AvalonFP1510", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.621708869934082, "y": -5.712915420532227, "IDs": "AvalonFP780", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0031542778015137, "y": -4.993701934814453, "IDs": "AvalonFP1123", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3019914627075195, "y": -4.978394031524658, "IDs": "AvalonFP2005", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4275002479553223, "y": -7.851868152618408, "IDs": "AvalonFP360", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.718275547027588, "y": -2.55863618850708, "IDs": "AvalonFP1173", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.349978446960449, "y": -5.452860355377197, "IDs": "AvalonFP1313", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.420436143875122, "y": -8.048616409301758, "IDs": "AvalonFP1454", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.828986167907715, "y": -5.390169143676758, "IDs": "AvalonFP895", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.070966720581055, "y": -3.6673779487609863, "IDs": "AvalonFP1080", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.516606330871582, "y": -5.499736785888672, "IDs": "AvalonFP1695", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.39833927154541, "y": -4.154270648956299, "IDs": "AvalonFP636", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0469675064086914, "y": -1.8633956909179688, "IDs": "AvalonFP246", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.680032253265381, "y": -4.687170028686523, "IDs": "AvalonFP393", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.586798667907715, "y": -6.331443786621094, "IDs": "AvalonFP1976", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.33367657661438, "y": -6.24517822265625, "IDs": "AvalonFP584", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0675461292266846, "y": -5.574956893920898, "IDs": "AvalonFP86", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0230331420898438, "y": -5.557440757751465, "IDs": "AvalonFP1005", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.779817819595337, "y": -5.675253391265869, "IDs": "AvalonFP310", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.388172149658203, "y": -6.527652263641357, "IDs": "AvalonFP1520", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.989769220352173, "y": -4.155312538146973, "IDs": "AvalonFP380", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.639453411102295, "y": -6.398128986358643, "IDs": "AvalonFP330", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.060539722442627, "y": -6.402123928070068, "IDs": "AvalonFP1230", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.948352336883545, "y": -3.2839159965515137, "IDs": "AvalonFP806", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.361279487609863, "y": -1.483102798461914, "IDs": "AvalonFP822", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4676589965820312, "y": -5.630650997161865, "IDs": "AvalonFP1984", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.451850414276123, "y": -5.833970546722412, "IDs": "AvalonFP457", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.235592842102051, "y": -6.889253616333008, "IDs": "AvalonFP672", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.684544324874878, "y": -5.439590930938721, "IDs": "AvalonFP1016", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.638317108154297, "y": -4.988675117492676, "IDs": "AvalonFP1487", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.823149681091309, "y": -4.727531433105469, "IDs": "AvalonFP397", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.220053672790527, "y": -1.3910620212554932, "IDs": "AvalonFP1249", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.509658336639404, "y": -2.8732974529266357, "IDs": "AvalonFP1055", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.933222770690918, "y": -7.1009345054626465, "IDs": "AvalonFP1405", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.944295883178711, "y": -5.5732035636901855, "IDs": "AvalonFP83", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.035529375076294, "y": -1.8464024066925049, "IDs": "AvalonFP440", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.536636829376221, "y": -4.742477893829346, "IDs": "AvalonFP1076", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3280553817749023, "y": -5.5609869956970215, "IDs": "AvalonFP333", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0826287269592285, "y": -5.435688018798828, "IDs": "AvalonFP944", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.144200801849365, "y": -6.568857669830322, "IDs": "AvalonFP701", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.3882081508636475, "y": -5.602909564971924, "IDs": "AvalonFP1337", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.760991334915161, "y": -7.471804141998291, "IDs": "AvalonFP1146", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.7966413497924805, "y": -6.466097354888916, "IDs": "AvalonFP839", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6257970333099365, "y": -2.988518476486206, "IDs": "AvalonFP666", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.725334644317627, "y": -5.82487154006958, "IDs": "AvalonFP1594", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.093249797821045, "y": -5.848381042480469, "IDs": "AvalonFP1526", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.452111721038818, "y": -6.269497871398926, "IDs": "AvalonFP403", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6511125564575195, "y": -6.860361576080322, "IDs": "AvalonFP1056", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.492086887359619, "y": -6.804135799407959, "IDs": "AvalonFP582", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.7678864002227783, "y": -5.790835380554199, "IDs": "AvalonFP1311", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3161187171936035, "y": -3.969797134399414, "IDs": "AvalonFP1406", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 6.0150675773620605, "y": -5.483081817626953, "IDs": "AvalonFP1060", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0383856296539307, "y": -1.8693501949310303, "IDs": "AvalonFP798", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.198798179626465, "y": -5.95610237121582, "IDs": "AvalonFP1251", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.875046730041504, "y": -4.674463748931885, "IDs": "AvalonFP937", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.801166296005249, "y": -4.110956192016602, "IDs": "AvalonFP767", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.415224075317383, "y": -6.2898969650268555, "IDs": "AvalonFP1368", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.486780643463135, "y": -7.047879695892334, "IDs": "AvalonFP493", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.368283748626709, "y": -5.555363178253174, "IDs": "AvalonFP40", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.6881539821624756, "y": -5.0749430656433105, "IDs": "AvalonFP1835", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5286426544189453, "y": -4.8969221115112305, "IDs": "AvalonFP1692", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.466491937637329, "y": -8.0362548828125, "IDs": "AvalonFP382", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9362916946411133, "y": -4.487358093261719, "IDs": "AvalonFP1845", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9946470260620117, "y": -3.365302562713623, "IDs": "AvalonFP649", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8611412048339844, "y": -2.631411552429199, "IDs": "AvalonFP1848", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.404010772705078, "y": -5.350817680358887, "IDs": "AvalonFP1269", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.38587760925293, "y": -5.4520440101623535, "IDs": "AvalonFP1091", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.439623832702637, "y": -6.273652076721191, "IDs": "AvalonFP1732", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.674884796142578, "y": -7.649173259735107, "IDs": "AvalonFP683", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.691622734069824, "y": -4.307851791381836, "IDs": "AvalonFP2007", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.6214728355407715, "y": -5.514306545257568, "IDs": "AvalonFP1384", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2164344787597656, "y": -5.9893341064453125, "IDs": "AvalonFP790", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2529098987579346, "y": -5.824808120727539, "IDs": "AvalonFP384", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.288358449935913, "y": -6.150505542755127, "IDs": "AvalonFP1361", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.376221179962158, "y": -5.576330184936523, "IDs": "AvalonFP658", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.476447105407715, "y": -4.814668655395508, "IDs": "AvalonFP840", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.916473865509033, "y": -5.399101257324219, "IDs": "AvalonFP1507", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2929508686065674, "y": -7.957065105438232, "IDs": "AvalonFP1473", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.488581657409668, "y": -4.834107398986816, "IDs": "AvalonFP1549", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.452500343322754, "y": -5.73313570022583, "IDs": "AvalonFP1685", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.831282615661621, "y": -6.671157360076904, "IDs": "AvalonFP812", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7632739543914795, "y": -2.479792833328247, "IDs": "AvalonFP1126", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9856300354003906, "y": -3.9120075702667236, "IDs": "AvalonFP685", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.718477725982666, "y": -5.416708469390869, "IDs": "AvalonFP1124", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1646411418914795, "y": -7.118164539337158, "IDs": "AvalonFP361", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.453795433044434, "y": -6.762550354003906, "IDs": "AvalonFP1702", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.849587440490723, "y": -5.763364791870117, "IDs": "AvalonFP1562", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.652522325515747, "y": -5.771509170532227, "IDs": "AvalonFP1994", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.350943088531494, "y": -5.453274250030518, "IDs": "AvalonFP1092", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.136398792266846, "y": -4.7772979736328125, "IDs": "AvalonFP716", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.996137857437134, "y": -3.2724103927612305, "IDs": "AvalonFP1730", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.1724624633789062, "y": -1.5704219341278076, "IDs": "AvalonFP1104", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.419129848480225, "y": -6.074208736419678, "IDs": "AvalonFP1804", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.728759288787842, "y": -5.168241024017334, "IDs": "AvalonFP831", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.492203235626221, "y": -5.555272102355957, "IDs": "AvalonFP301", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.8544905185699463, "y": -5.218390941619873, "IDs": "AvalonFP270", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.299787998199463, "y": -7.172770023345947, "IDs": "AvalonFP833", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.3216986656188965, "y": -5.151695251464844, "IDs": "AvalonFP1929", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9797395467758179, "y": -2.571011543273926, "IDs": "AvalonFP1930", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3161864280700684, "y": -7.566141128540039, "IDs": "AvalonFP768", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.683902740478516, "y": -5.084853649139404, "IDs": "AvalonFP576", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5708391666412354, "y": -7.968469619750977, "IDs": "AvalonFP75", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.16635274887085, "y": -5.801419258117676, "IDs": "AvalonFP981", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.431389570236206, "y": -7.750701427459717, "IDs": "AvalonFP968", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.5709455013275146, "y": -5.730196475982666, "IDs": "AvalonFP1205", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.1527957916259766, "y": -5.838372230529785, "IDs": "AvalonFP1589", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.911014437675476, "y": -5.417835712432861, "IDs": "AvalonFP1578", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.9215312004089355, "y": -3.825859546661377, "IDs": "AvalonFP1743", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.575568675994873, "y": -7.981446266174316, "IDs": "AvalonFP603", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.2998547554016113, "y": -7.240446090698242, "IDs": "AvalonFP869", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.69496488571167, "y": -6.077798843383789, "IDs": "AvalonFP1119", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.256232500076294, "y": -4.764245986938477, "IDs": "AvalonFP1645", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.333803176879883, "y": -2.5140702724456787, "IDs": "AvalonFP1171", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.6454100608825684, "y": -5.754599571228027, "IDs": "AvalonFP190", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.7097601890563965, "y": -5.667941093444824, "IDs": "AvalonFP487", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.028763294219971, "y": -5.919382095336914, "IDs": "AvalonFP695", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.488568305969238, "y": -4.165154457092285, "IDs": "AvalonFP1222", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8481007814407349, "y": -5.352500915527344, "IDs": "AvalonFP342", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.593762397766113, "y": -2.5958659648895264, "IDs": "AvalonFP1766", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4370334148406982, "y": -6.229151725769043, "IDs": "AvalonFP682", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9289400577545166, "y": -3.0027544498443604, "IDs": "AvalonFP1673", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7382407188415527, "y": -6.317211627960205, "IDs": "AvalonFP399", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.144722938537598, "y": -5.0939483642578125, "IDs": "AvalonFP72", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.873824596405029, "y": -4.095206260681152, "IDs": "AvalonFP1799", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.1954121589660645, "y": -4.681051731109619, "IDs": "AvalonFP1500", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.389639377593994, "y": -5.30170202255249, "IDs": "AvalonFP1334", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.2899370193481445, "y": -4.546054363250732, "IDs": "AvalonFP774", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.671047210693359, "y": -5.462075233459473, "IDs": "AvalonFP995", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.7796151638031006, "y": -6.110247611999512, "IDs": "AvalonFP293", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.6038689613342285, "y": -4.481895923614502, "IDs": "AvalonFP233", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.436171293258667, "y": -5.411470890045166, "IDs": "AvalonFP816", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.426623582839966, "y": -5.168712615966797, "IDs": "AvalonFP516", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.5177571773529053, "y": -7.54484748840332, "IDs": "AvalonFP1731", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.142055034637451, "y": -6.600666522979736, "IDs": "AvalonFP1993", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.923015117645264, "y": -6.839363098144531, "IDs": "AvalonFP1653", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9885172843933105, "y": -2.5158209800720215, "IDs": "AvalonFP1325", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.634976387023926, "y": -6.79584264755249, "IDs": "AvalonFP1", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.7630181312561035, "y": -5.96970272064209, "IDs": "AvalonFP1305", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3528103828430176, "y": -6.301305294036865, "IDs": "AvalonFP258", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4653639793395996, "y": -4.7572808265686035, "IDs": "AvalonFP1906", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.566919803619385, "y": -2.508929491043091, "IDs": "AvalonFP314", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9361467361450195, "y": -5.968759536743164, "IDs": "AvalonFP1189", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.327554225921631, "y": -6.486577987670898, "IDs": "AvalonFP1253", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2493438720703125, "y": -5.547590732574463, "IDs": "AvalonFP1054", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.023316383361816, "y": -5.919483661651611, "IDs": "AvalonFP832", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.005406379699707, "y": -3.6562516689300537, "IDs": "AvalonFP609", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.491721153259277, "y": -3.2271740436553955, "IDs": "AvalonFP362", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.9471850395202637, "y": -6.4906182289123535, "IDs": "AvalonFP492", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.130533695220947, "y": -4.92356538772583, "IDs": "AvalonFP344", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.9089863300323486, "y": -4.470599174499512, "IDs": "AvalonFP830", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.136230945587158, "y": -6.069770812988281, "IDs": "AvalonFP1981", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.104818344116211, "y": -5.3189377784729, "IDs": "AvalonFP1494", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.2684576511383057, "y": -4.640969753265381, "IDs": "AvalonFP351", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.3730645179748535, "y": -5.52459192276001, "IDs": "AvalonFP326", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.5607491731643677, "y": -1.8189033269882202, "IDs": "AvalonFP1587", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4541518688201904, "y": -4.952076435089111, "IDs": "AvalonFP1421", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.0288350582122803, "y": -5.482633590698242, "IDs": "AvalonFP340", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8071938753128052, "y": -4.997625827789307, "IDs": "AvalonFP433", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.575584411621094, "y": -5.095345973968506, "IDs": "AvalonFP1822", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.219483375549316, "y": -4.3641462326049805, "IDs": "AvalonFP1880", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.0007946491241455, "y": -7.584698677062988, "IDs": "AvalonFP1489", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.419544696807861, "y": -6.650394916534424, "IDs": "AvalonFP1676", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 1.8876396417617798, "y": -7.584275245666504, "IDs": "AvalonFP1414", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.318784236907959, "y": -8.133832931518555, "IDs": "AvalonFP1613", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.804085731506348, "y": -6.15140438079834, "IDs": "AvalonFP835", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.469120502471924, "y": -4.6997151374816895, "IDs": "AvalonFP1228", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.046727657318115, "y": -4.144662857055664, "IDs": "AvalonFP205", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.023228168487549, "y": -4.837486267089844, "IDs": "AvalonFP1049", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.3975722789764404, "y": -3.758755922317505, "IDs": "AvalonFP1193", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.528099536895752, "y": -7.9683756828308105, "IDs": "AvalonFP593", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.502631425857544, "y": -5.36814546585083, "IDs": "AvalonFP37", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.9946091175079346, "y": -6.043964385986328, "IDs": "AvalonFP1807", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.059837818145752, "y": -3.4763152599334717, "IDs": "AvalonFP106", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.4288039207458496, "y": -5.624548435211182, "IDs": "AvalonFP405", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.103187322616577, "y": -7.387620449066162, "IDs": "AvalonFP523", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.415933609008789, "y": -5.288347244262695, "IDs": "AvalonFP2008", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 5.484452247619629, "y": -7.0053510665893555, "IDs": "AvalonFP446", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 3.964552640914917, "y": -4.911478042602539, "IDs": "AvalonFP1515", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.053557872772217, "y": -5.120620250701904, "IDs": "AvalonFP581", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.268770694732666, "y": -5.9123663902282715, "IDs": "AvalonFP463", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.361769676208496, "y": -1.6634984016418457, "IDs": "AvalonFP690", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 4.143821716308594, "y": -4.707643508911133, "IDs": "AvalonFP680", "Subtypes": "AvalonFP", "colors": "#d4dd80"}, {"x": 2.944697856903076, "y": -4.458924770355225, "IDs": "AvalonFP1894", "Subtypes": "AvalonFP", "colors": "#d4dd80"}], "type": "scatter", "color": "#d4dd80", "name": "AvalonFP"}, {"data": [{"x": 2.163874387741089, "y": -3.4602575302124023, "IDs": "AtomPairFP1509", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8923015594482422, "y": -4.720799446105957, "IDs": "AtomPairFP201", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.126425862312317, "y": -3.5302741527557373, "IDs": "AtomPairFP1589", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8330507278442383, "y": -3.582674026489258, "IDs": "AtomPairFP1338", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5811437368392944, "y": -3.343087673187256, "IDs": "AtomPairFP749", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.011433124542236, "y": -4.115457534790039, "IDs": "AtomPairFP1351", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9877901673316956, "y": -6.103330135345459, "IDs": "AtomPairFP1032", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3532814681529999, "y": -4.844030857086182, "IDs": "AtomPairFP1968", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5495371222496033, "y": -4.806826591491699, "IDs": "AtomPairFP1861", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.7706522941589355, "y": -4.063497543334961, "IDs": "AtomPairFP1079", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7764949798583984, "y": -5.6182541847229, "IDs": "AtomPairFP504", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.871084690093994, "y": -3.3285434246063232, "IDs": "AtomPairFP1660", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.805318832397461, "y": -3.9325976371765137, "IDs": "AtomPairFP1156", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2499058246612549, "y": -7.0528645515441895, "IDs": "AtomPairFP680", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.22159726917743683, "y": -4.416958808898926, "IDs": "AtomPairFP346", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8219783306121826, "y": -2.4208216667175293, "IDs": "AtomPairFP83", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8652894496917725, "y": -2.810948371887207, "IDs": "AtomPairFP720", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.642828345298767, "y": -5.705642223358154, "IDs": "AtomPairFP1969", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.819995403289795, "y": -3.2732489109039307, "IDs": "AtomPairFP1231", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6632864475250244, "y": -3.5185434818267822, "IDs": "AtomPairFP1117", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.171461820602417, "y": -1.513159155845642, "IDs": "AtomPairFP906", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8710305690765381, "y": -5.702163219451904, "IDs": "AtomPairFP1166", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7745451927185059, "y": -2.3638980388641357, "IDs": "AtomPairFP997", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4118550717830658, "y": -4.096313953399658, "IDs": "AtomPairFP1562", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.63167142868042, "y": -2.4134554862976074, "IDs": "AtomPairFP293", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.561736822128296, "y": -6.346012115478516, "IDs": "AtomPairFP1074", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.066075325012207, "y": -1.5801215171813965, "IDs": "AtomPairFP78", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.682632923126221, "y": -2.495155096054077, "IDs": "AtomPairFP884", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.3062756061553955, "y": -5.102088451385498, "IDs": "AtomPairFP406", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0117501020431519, "y": -4.266396522521973, "IDs": "AtomPairFP524", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.8360700607299805, "y": -3.385878801345825, "IDs": "AtomPairFP413", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4780011177062988, "y": -5.330284595489502, "IDs": "AtomPairFP10", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.192527770996094, "y": -1.5104032754898071, "IDs": "AtomPairFP354", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4413797855377197, "y": -2.550304889678955, "IDs": "AtomPairFP747", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.599125385284424, "y": -2.3825244903564453, "IDs": "AtomPairFP789", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7991183400154114, "y": -5.83815336227417, "IDs": "AtomPairFP1474", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09222385287284851, "y": -5.7807087898254395, "IDs": "AtomPairFP197", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8437312245368958, "y": -5.844448566436768, "IDs": "AtomPairFP211", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2935149669647217, "y": -3.779170036315918, "IDs": "AtomPairFP276", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8996573686599731, "y": -5.955079078674316, "IDs": "AtomPairFP1433", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8805404901504517, "y": -7.333548545837402, "IDs": "AtomPairFP1818", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.08764910697937, "y": -1.7541955709457397, "IDs": "AtomPairFP645", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.21132266521453857, "y": -4.210026741027832, "IDs": "AtomPairFP1776", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.0783914253115654, "y": -3.774266481399536, "IDs": "AtomPairFP513", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.933434009552002, "y": -3.488076686859131, "IDs": "AtomPairFP628", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.682044982910156, "y": -2.4730398654937744, "IDs": "AtomPairFP949", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8663142919540405, "y": -2.4419732093811035, "IDs": "AtomPairFP100", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2902299165725708, "y": -5.524302005767822, "IDs": "AtomPairFP1064", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0877718925476074, "y": -5.862695217132568, "IDs": "AtomPairFP1383", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.3369646072387695, "y": -1.2996362447738647, "IDs": "AtomPairFP770", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.953275203704834, "y": -5.117971420288086, "IDs": "AtomPairFP1466", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.670305252075195, "y": -2.6027638912200928, "IDs": "AtomPairFP581", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.360290050506592, "y": -5.114628314971924, "IDs": "AtomPairFP529", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7664036750793457, "y": -4.629052639007568, "IDs": "AtomPairFP312", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0323920249938965, "y": -6.800845623016357, "IDs": "AtomPairFP1941", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.968235194683075, "y": -3.7882468700408936, "IDs": "AtomPairFP173", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5342152118682861, "y": -3.5974090099334717, "IDs": "AtomPairFP1762", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.32927146553993225, "y": -2.8289918899536133, "IDs": "AtomPairFP359", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2994886636734009, "y": -5.441015243530273, "IDs": "AtomPairFP1012", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3911535739898682, "y": -4.8273701667785645, "IDs": "AtomPairFP783", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.03005313873291, "y": -7.317868232727051, "IDs": "AtomPairFP1167", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.202590823173523, "y": -5.73937463760376, "IDs": "AtomPairFP1821", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.617621898651123, "y": -2.8257572650909424, "IDs": "AtomPairFP931", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.30231279134750366, "y": -5.129038333892822, "IDs": "AtomPairFP1703", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0496935844421387, "y": -7.827718257904053, "IDs": "AtomPairFP213", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.35345277190208435, "y": -2.7294304370880127, "IDs": "AtomPairFP995", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.183786392211914, "y": -1.4305626153945923, "IDs": "AtomPairFP1447", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8792398571968079, "y": -3.8979697227478027, "IDs": "AtomPairFP817", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5443874597549438, "y": -3.682450771331787, "IDs": "AtomPairFP1957", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.41769078373908997, "y": -5.2077956199646, "IDs": "AtomPairFP1667", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0047180652618408, "y": -4.494246959686279, "IDs": "AtomPairFP1569", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5467004179954529, "y": -6.30465841293335, "IDs": "AtomPairFP1584", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.95969557762146, "y": -3.613281726837158, "IDs": "AtomPairFP350", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5604103207588196, "y": -5.532657146453857, "IDs": "AtomPairFP180", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5003855228424072, "y": -3.194389820098877, "IDs": "AtomPairFP1431", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.580202341079712, "y": -2.453094959259033, "IDs": "AtomPairFP56", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8542134761810303, "y": -3.788203716278076, "IDs": "AtomPairFP1203", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5548238158226013, "y": -3.890737533569336, "IDs": "AtomPairFP838", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.777169704437256, "y": -3.8797905445098877, "IDs": "AtomPairFP1746", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.338474273681641, "y": -1.2777076959609985, "IDs": "AtomPairFP2037", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9846978187561035, "y": -3.171599864959717, "IDs": "AtomPairFP1648", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.6406402587890625, "y": -4.244767665863037, "IDs": "AtomPairFP82", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3932948112487793, "y": -5.0143256187438965, "IDs": "AtomPairFP1273", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4591959714889526, "y": -6.021464824676514, "IDs": "AtomPairFP1498", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3715593814849854, "y": -7.326889991760254, "IDs": "AtomPairFP958", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6512482166290283, "y": -4.541374683380127, "IDs": "AtomPairFP2040", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.975833773612976, "y": -7.0766448974609375, "IDs": "AtomPairFP1385", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9340977668762207, "y": -5.5584635734558105, "IDs": "AtomPairFP521", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3280030488967896, "y": -5.956625461578369, "IDs": "AtomPairFP1670", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8521065711975098, "y": -4.9163618087768555, "IDs": "AtomPairFP14", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.13106891512870789, "y": -5.501949787139893, "IDs": "AtomPairFP1806", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0705766677856445, "y": -4.529184341430664, "IDs": "AtomPairFP501", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.817676067352295, "y": -4.08779764175415, "IDs": "AtomPairFP1544", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.4903645515441895, "y": -2.458296775817871, "IDs": "AtomPairFP1437", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.37484884262085, "y": -1.3029601573944092, "IDs": "AtomPairFP508", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.440900444984436, "y": -4.896829605102539, "IDs": "AtomPairFP920", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4352469444274902, "y": -5.98905086517334, "IDs": "AtomPairFP1349", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8078363537788391, "y": -4.389440536499023, "IDs": "AtomPairFP648", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5114749670028687, "y": -4.98744535446167, "IDs": "AtomPairFP590", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.638768672943115, "y": -2.5492520332336426, "IDs": "AtomPairFP1237", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7545768022537231, "y": -7.804929733276367, "IDs": "AtomPairFP2029", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5126971006393433, "y": -5.130782604217529, "IDs": "AtomPairFP1547", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4583016633987427, "y": -4.806925296783447, "IDs": "AtomPairFP472", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.525270462036133, "y": -7.872862339019775, "IDs": "AtomPairFP1504", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.737401008605957, "y": -1.7984522581100464, "IDs": "AtomPairFP1734", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2579169273376465, "y": -6.3246846199035645, "IDs": "AtomPairFP1081", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8725395202636719, "y": -2.446157217025757, "IDs": "AtomPairFP69", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.346035480499268, "y": -1.258352518081665, "IDs": "AtomPairFP773", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.418539047241211, "y": -1.6840331554412842, "IDs": "AtomPairFP496", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.421575129032135, "y": -4.194297790527344, "IDs": "AtomPairFP1893", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.4511003494262695, "y": -4.620769023895264, "IDs": "AtomPairFP274", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.171826362609863, "y": -4.350537300109863, "IDs": "AtomPairFP1376", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.474971055984497, "y": -2.4561455249786377, "IDs": "AtomPairFP701", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7216075658798218, "y": -4.847633361816406, "IDs": "AtomPairFP1990", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9180001020431519, "y": -3.3927130699157715, "IDs": "AtomPairFP108", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3368662595748901, "y": -1.665728211402893, "IDs": "AtomPairFP358", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09270007163286209, "y": -3.5322048664093018, "IDs": "AtomPairFP1145", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5629031658172607, "y": -4.2262115478515625, "IDs": "AtomPairFP967", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.828594207763672, "y": -3.154921531677246, "IDs": "AtomPairFP1954", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.069125652313232, "y": -4.043649673461914, "IDs": "AtomPairFP787", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.350699782371521, "y": -4.833244800567627, "IDs": "AtomPairFP27", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9549094438552856, "y": -5.135856628417969, "IDs": "AtomPairFP791", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6063754558563232, "y": -3.80165696144104, "IDs": "AtomPairFP752", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1414278745651245, "y": -4.236639022827148, "IDs": "AtomPairFP234", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1396936178207397, "y": -4.010069847106934, "IDs": "AtomPairFP1259", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.05234687402844429, "y": -5.5508246421813965, "IDs": "AtomPairFP1920", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.073290228843689, "y": -2.8549845218658447, "IDs": "AtomPairFP206", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3197576105594635, "y": -3.8768107891082764, "IDs": "AtomPairFP743", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2630572319030762, "y": -4.289548873901367, "IDs": "AtomPairFP1730", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.33821702003479, "y": -6.310286045074463, "IDs": "AtomPairFP294", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.108084201812744, "y": -5.016880512237549, "IDs": "AtomPairFP95", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.757859468460083, "y": -4.3201985359191895, "IDs": "AtomPairFP1595", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1589081287384033, "y": -4.646919250488281, "IDs": "AtomPairFP181", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6123294830322266, "y": -4.536172389984131, "IDs": "AtomPairFP377", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.898998260498047, "y": -3.363844871520996, "IDs": "AtomPairFP656", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1292707920074463, "y": -4.764834403991699, "IDs": "AtomPairFP1997", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1425282955169678, "y": -5.968083381652832, "IDs": "AtomPairFP1024", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9889941215515137, "y": -4.129702568054199, "IDs": "AtomPairFP375", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7166014909744263, "y": -4.930665493011475, "IDs": "AtomPairFP571", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.57756108045578, "y": -6.023373603820801, "IDs": "AtomPairFP1066", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9226760268211365, "y": -4.608908653259277, "IDs": "AtomPairFP391", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.03309275209903717, "y": -5.12537956237793, "IDs": "AtomPairFP1554", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6880403757095337, "y": -4.2506561279296875, "IDs": "AtomPairFP767", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3974714279174805, "y": -7.634580612182617, "IDs": "AtomPairFP1060", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8142545223236084, "y": -3.9157464504241943, "IDs": "AtomPairFP610", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.283205032348633, "y": -2.8219494819641113, "IDs": "AtomPairFP1751", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.21546360850334167, "y": -5.714844226837158, "IDs": "AtomPairFP1701", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.738954067230225, "y": -3.8902432918548584, "IDs": "AtomPairFP1461", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4376856088638306, "y": -6.33662748336792, "IDs": "AtomPairFP1909", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.391554117202759, "y": -4.415647983551025, "IDs": "AtomPairFP255", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0483301877975464, "y": -1.6162188053131104, "IDs": "AtomPairFP1486", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8035321235656738, "y": -5.474801540374756, "IDs": "AtomPairFP363", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.11620831489563, "y": -6.138247489929199, "IDs": "AtomPairFP1042", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.257395029067993, "y": -7.952958583831787, "IDs": "AtomPairFP1440", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.46502500772476196, "y": -5.171097278594971, "IDs": "AtomPairFP195", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.008704423904419, "y": -1.8034579753875732, "IDs": "AtomPairFP1279", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.770836353302002, "y": -2.4697635173797607, "IDs": "AtomPairFP1056", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.749680995941162, "y": -4.0520148277282715, "IDs": "AtomPairFP774", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.41225284337997437, "y": -3.834230899810791, "IDs": "AtomPairFP724", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.723085880279541, "y": -2.4793171882629395, "IDs": "AtomPairFP1", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0649967193603516, "y": -4.727057456970215, "IDs": "AtomPairFP1872", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.6830055713653564, "y": -2.42142915725708, "IDs": "AtomPairFP1387", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5002074241638184, "y": -5.754761219024658, "IDs": "AtomPairFP1558", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5867880582809448, "y": -3.979527473449707, "IDs": "AtomPairFP893", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0923779010772705, "y": -2.974780797958374, "IDs": "AtomPairFP954", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.468259811401367, "y": -5.997535705566406, "IDs": "AtomPairFP1185", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.246185302734375, "y": -6.038289546966553, "IDs": "AtomPairFP1120", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.403489351272583, "y": -6.088465690612793, "IDs": "AtomPairFP498", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6210665702819824, "y": -4.709898471832275, "IDs": "AtomPairFP1234", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8271869421005249, "y": -4.588321208953857, "IDs": "AtomPairFP1634", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7440510988235474, "y": -3.4302430152893066, "IDs": "AtomPairFP1294", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0627455711364746, "y": -1.5576742887496948, "IDs": "AtomPairFP1039", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.39883336424827576, "y": -4.413553237915039, "IDs": "AtomPairFP745", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.413570761680603, "y": -3.7860071659088135, "IDs": "AtomPairFP1296", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1527966260910034, "y": -4.0736541748046875, "IDs": "AtomPairFP883", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8873275518417358, "y": -4.270897388458252, "IDs": "AtomPairFP1300", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.628960132598877, "y": -2.3987631797790527, "IDs": "AtomPairFP425", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8639153242111206, "y": -3.8882317543029785, "IDs": "AtomPairFP712", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.311518669128418, "y": -1.2815994024276733, "IDs": "AtomPairFP1219", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.606112957000732, "y": -2.616582155227661, "IDs": "AtomPairFP855", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.12239893525838852, "y": -5.999147891998291, "IDs": "AtomPairFP1981", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.683070659637451, "y": -2.83406662940979, "IDs": "AtomPairFP1817", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.207708477973938, "y": -4.640298366546631, "IDs": "AtomPairFP300", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.548048496246338, "y": -5.39431619644165, "IDs": "AtomPairFP169", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.272709846496582, "y": -4.488128185272217, "IDs": "AtomPairFP993", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.352535367012024, "y": -2.6563167572021484, "IDs": "AtomPairFP853", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7434377670288086, "y": -3.8099513053894043, "IDs": "AtomPairFP523", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.30329322814941406, "y": -5.372876167297363, "IDs": "AtomPairFP908", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.041203260421753, "y": -4.802408695220947, "IDs": "AtomPairFP270", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3905920088291168, "y": -4.387537479400635, "IDs": "AtomPairFP1786", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5583577156066895, "y": -4.922591209411621, "IDs": "AtomPairFP1372", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.3379950523376465, "y": -1.2989195585250854, "IDs": "AtomPairFP1204", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7720744609832764, "y": -3.8903987407684326, "IDs": "AtomPairFP1869", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.148211121559143, "y": -4.387603282928467, "IDs": "AtomPairFP1341", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8875378966331482, "y": -5.300020694732666, "IDs": "AtomPairFP1720", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.492416501045227, "y": -4.525550842285156, "IDs": "AtomPairFP915", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2646431922912598, "y": -3.766186237335205, "IDs": "AtomPairFP1362", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.17106609046459198, "y": -4.40313720703125, "IDs": "AtomPairFP596", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3395328521728516, "y": -6.365493297576904, "IDs": "AtomPairFP1529", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0303298234939575, "y": -3.6513736248016357, "IDs": "AtomPairFP1109", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.130073070526123, "y": -3.943495273590088, "IDs": "AtomPairFP458", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.945608139038086, "y": -3.2019126415252686, "IDs": "AtomPairFP494", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5490002632141113, "y": -3.968754291534424, "IDs": "AtomPairFP1819", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.13870328664779663, "y": -4.594261169433594, "IDs": "AtomPairFP863", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1542256623506546, "y": -2.804865837097168, "IDs": "AtomPairFP676", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.818850040435791, "y": -3.3020944595336914, "IDs": "AtomPairFP782", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.240015983581543, "y": -2.482558488845825, "IDs": "AtomPairFP1209", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4145424365997314, "y": -7.655894756317139, "IDs": "AtomPairFP299", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2764608860015869, "y": -4.493956565856934, "IDs": "AtomPairFP654", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1682559251785278, "y": -3.587669849395752, "IDs": "AtomPairFP1172", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3669785261154175, "y": -3.9292490482330322, "IDs": "AtomPairFP2025", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8783621788024902, "y": -2.3156280517578125, "IDs": "AtomPairFP673", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8604421615600586, "y": -3.167227268218994, "IDs": "AtomPairFP1134", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6108719706535339, "y": -5.46618127822876, "IDs": "AtomPairFP317", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0531163215637207, "y": -6.347681045532227, "IDs": "AtomPairFP1678", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6305596828460693, "y": -6.153314590454102, "IDs": "AtomPairFP1113", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6891021728515625, "y": -5.007094860076904, "IDs": "AtomPairFP1043", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5080264806747437, "y": -4.038578510284424, "IDs": "AtomPairFP2008", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.9726099967956543, "y": -3.9702420234680176, "IDs": "AtomPairFP647", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2965255975723267, "y": -7.088224411010742, "IDs": "AtomPairFP617", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.427458792924881, "y": -4.206155776977539, "IDs": "AtomPairFP700", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.319271087646484, "y": -3.5324337482452393, "IDs": "AtomPairFP1651", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.735849380493164, "y": -3.3185558319091797, "IDs": "AtomPairFP348", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.298903703689575, "y": -7.876456260681152, "IDs": "AtomPairFP1190", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9224419593811035, "y": -3.3727853298187256, "IDs": "AtomPairFP1934", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9259005188941956, "y": -4.178811073303223, "IDs": "AtomPairFP764", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.39193427562713623, "y": -2.744354486465454, "IDs": "AtomPairFP1523", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0381648540496826, "y": -4.774505138397217, "IDs": "AtomPairFP476", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.191702127456665, "y": -3.300107479095459, "IDs": "AtomPairFP13", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1395421028137207, "y": -2.3096277713775635, "IDs": "AtomPairFP1160", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.903049945831299, "y": -3.913419246673584, "IDs": "AtomPairFP1903", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.478650689125061, "y": -7.201258182525635, "IDs": "AtomPairFP603", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.6496052742004395, "y": -2.4487416744232178, "IDs": "AtomPairFP1092", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4582297205924988, "y": -6.516295433044434, "IDs": "AtomPairFP1587", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.563175678253174, "y": -2.4026038646698, "IDs": "AtomPairFP337", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2866913080215454, "y": -4.741073131561279, "IDs": "AtomPairFP1621", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8046494722366333, "y": -3.4018545150756836, "IDs": "AtomPairFP1002", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09036257863044739, "y": -5.890925884246826, "IDs": "AtomPairFP2043", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5077059268951416, "y": -3.540701150894165, "IDs": "AtomPairFP1579", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0723522901535034, "y": -4.976256370544434, "IDs": "AtomPairFP1837", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0932369232177734, "y": -6.070751190185547, "IDs": "AtomPairFP72", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.04205675423145294, "y": -4.391624450683594, "IDs": "AtomPairFP565", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5616281032562256, "y": -4.827678680419922, "IDs": "AtomPairFP25", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0682053565979004, "y": -4.98781156539917, "IDs": "AtomPairFP1548", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.859699726104736, "y": -3.323258638381958, "IDs": "AtomPairFP821", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4732260704040527, "y": -4.038212299346924, "IDs": "AtomPairFP242", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9215903282165527, "y": -3.3418407440185547, "IDs": "AtomPairFP1628", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9877103567123413, "y": -4.308529376983643, "IDs": "AtomPairFP639", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8159963488578796, "y": -3.61737322807312, "IDs": "AtomPairFP1306", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7715412378311157, "y": -5.207333087921143, "IDs": "AtomPairFP1543", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.06926155090332, "y": -3.5470871925354004, "IDs": "AtomPairFP1840", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.156046986579895, "y": -4.352476119995117, "IDs": "AtomPairFP1222", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.708127021789551, "y": -3.189605951309204, "IDs": "AtomPairFP1164", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4365119934082031, "y": -7.162357330322266, "IDs": "AtomPairFP755", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2628657817840576, "y": -3.7188262939453125, "IDs": "AtomPairFP370", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.56939959526062, "y": -2.464515209197998, "IDs": "AtomPairFP937", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1002399921417236, "y": -4.373683452606201, "IDs": "AtomPairFP734", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5008913278579712, "y": -7.2368879318237305, "IDs": "AtomPairFP748", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5975223779678345, "y": -4.221386432647705, "IDs": "AtomPairFP935", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2647068500518799, "y": -4.09037446975708, "IDs": "AtomPairFP868", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.467610239982605, "y": -4.597217082977295, "IDs": "AtomPairFP794", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2538684010505676, "y": -5.696377754211426, "IDs": "AtomPairFP1617", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.137424349784851, "y": -4.022745132446289, "IDs": "AtomPairFP849", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8898869156837463, "y": -4.873713493347168, "IDs": "AtomPairFP907", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8343210220336914, "y": -5.748347759246826, "IDs": "AtomPairFP1391", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.1892218291759491, "y": -5.566483020782471, "IDs": "AtomPairFP308", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.43193426728248596, "y": -3.1373298168182373, "IDs": "AtomPairFP1090", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.454329013824463, "y": -4.8007330894470215, "IDs": "AtomPairFP1139", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9651427268981934, "y": -7.669605731964111, "IDs": "AtomPairFP1026", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3918704688549042, "y": -5.691545486450195, "IDs": "AtomPairFP1801", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.024433970451355, "y": -5.545926570892334, "IDs": "AtomPairFP1513", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.559817314147949, "y": -4.164068698883057, "IDs": "AtomPairFP355", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.799280643463135, "y": -3.391544818878174, "IDs": "AtomPairFP410", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8086310625076294, "y": -4.478321552276611, "IDs": "AtomPairFP179", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.345078468322754, "y": -5.408064365386963, "IDs": "AtomPairFP1332", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.4455467462539673, "y": -4.266861915588379, "IDs": "AtomPairFP564", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.003157138824463, "y": -5.591915607452393, "IDs": "AtomPairFP371", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3990498781204224, "y": -4.365598201751709, "IDs": "AtomPairFP775", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9985218048095703, "y": -1.803002953529358, "IDs": "AtomPairFP1659", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.589928150177002, "y": -3.4282407760620117, "IDs": "AtomPairFP320", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2746195793151855, "y": -6.296595573425293, "IDs": "AtomPairFP1407", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.074171781539917, "y": -5.045495986938477, "IDs": "AtomPairFP23", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.509171187877655, "y": -4.0115814208984375, "IDs": "AtomPairFP1711", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1555503606796265, "y": -4.764071941375732, "IDs": "AtomPairFP487", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.437396377325058, "y": -2.7510602474212646, "IDs": "AtomPairFP1443", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.159705877304077, "y": -3.391010284423828, "IDs": "AtomPairFP62", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4863552153110504, "y": -5.470571994781494, "IDs": "AtomPairFP146", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2875187397003174, "y": -7.084657669067383, "IDs": "AtomPairFP808", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2830932140350342, "y": -2.7556185722351074, "IDs": "AtomPairFP1629", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.03224515914917, "y": -5.237788200378418, "IDs": "AtomPairFP1526", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1400548219680786, "y": -5.942497730255127, "IDs": "AtomPairFP1025", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5279033184051514, "y": -4.5993547439575195, "IDs": "AtomPairFP124", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6207399368286133, "y": -4.908389568328857, "IDs": "AtomPairFP1104", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.455754518508911, "y": -7.429506301879883, "IDs": "AtomPairFP1293", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5025771856307983, "y": -5.9975152015686035, "IDs": "AtomPairFP1515", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.0861750990152359, "y": -5.445476531982422, "IDs": "AtomPairFP1803", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.219836950302124, "y": -4.784058570861816, "IDs": "AtomPairFP544", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8880351781845093, "y": -4.926908016204834, "IDs": "AtomPairFP1597", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.576427936553955, "y": -3.819243907928467, "IDs": "AtomPairFP1652", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.45691654086112976, "y": -3.5773160457611084, "IDs": "AtomPairFP1512", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6165744066238403, "y": -6.329268455505371, "IDs": "AtomPairFP1192", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.616891860961914, "y": -3.96938157081604, "IDs": "AtomPairFP1328", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7812381386756897, "y": -4.339886665344238, "IDs": "AtomPairFP1414", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8461617827415466, "y": -4.685290336608887, "IDs": "AtomPairFP192", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3952752351760864, "y": -5.917916774749756, "IDs": "AtomPairFP1287", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0913066864013672, "y": -1.554152011871338, "IDs": "AtomPairFP1165", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7873865365982056, "y": -4.152673721313477, "IDs": "AtomPairFP703", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3142781257629395, "y": -4.362393379211426, "IDs": "AtomPairFP430", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.939070224761963, "y": -3.497957229614258, "IDs": "AtomPairFP1451", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9835641384124756, "y": -5.991198539733887, "IDs": "AtomPairFP168", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.322843551635742, "y": -1.2955495119094849, "IDs": "AtomPairFP1545", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1728062629699707, "y": -7.736457824707031, "IDs": "AtomPairFP1030", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.014004566706717014, "y": -4.541233539581299, "IDs": "AtomPairFP1392", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.176560640335083, "y": -5.737842559814453, "IDs": "AtomPairFP586", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6740944385528564, "y": -6.172054767608643, "IDs": "AtomPairFP1531", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2526410222053528, "y": -5.442201614379883, "IDs": "AtomPairFP441", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.79180109500885, "y": -5.4551591873168945, "IDs": "AtomPairFP283", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9689903259277344, "y": -2.989731788635254, "IDs": "AtomPairFP788", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6963846683502197, "y": -7.174130916595459, "IDs": "AtomPairFP1130", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.550989151000977, "y": -2.3795459270477295, "IDs": "AtomPairFP216", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.42589324712753296, "y": -2.7289247512817383, "IDs": "AtomPairFP360", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4864141941070557, "y": -4.047202110290527, "IDs": "AtomPairFP65", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6801042556762695, "y": -6.918593883514404, "IDs": "AtomPairFP2032", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5550546050071716, "y": -3.945814847946167, "IDs": "AtomPairFP756", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2556794583797455, "y": -5.251878261566162, "IDs": "AtomPairFP1610", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.384783148765564, "y": -7.050191879272461, "IDs": "AtomPairFP760", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.847140312194824, "y": -3.39017653465271, "IDs": "AtomPairFP1420", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0826287269592285, "y": -3.4202675819396973, "IDs": "AtomPairFP151", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.362062692642212, "y": -5.214919567108154, "IDs": "AtomPairFP1345", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1137218475341797, "y": -3.3554162979125977, "IDs": "AtomPairFP1114", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.10217378288507462, "y": -5.403120517730713, "IDs": "AtomPairFP1611", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.2801361083984375, "y": -1.2480735778808594, "IDs": "AtomPairFP480", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6163301467895508, "y": -6.4093122482299805, "IDs": "AtomPairFP1075", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6060879230499268, "y": -4.933966159820557, "IDs": "AtomPairFP1750", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.1629357635974884, "y": -4.456307411193848, "IDs": "AtomPairFP24", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4640206098556519, "y": -4.274445533752441, "IDs": "AtomPairFP187", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.710864067077637, "y": -4.0255632400512695, "IDs": "AtomPairFP1140", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.86267614364624, "y": -4.202700138092041, "IDs": "AtomPairFP894", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4196407794952393, "y": -6.281981468200684, "IDs": "AtomPairFP161", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.406323194503784, "y": -5.870642185211182, "IDs": "AtomPairFP1121", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9827746152877808, "y": -7.8761138916015625, "IDs": "AtomPairFP1647", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9503066539764404, "y": -4.0473809242248535, "IDs": "AtomPairFP5", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8912028074264526, "y": -7.846146106719971, "IDs": "AtomPairFP1640", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.481163501739502, "y": -4.481318950653076, "IDs": "AtomPairFP453", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9441677331924438, "y": -6.247496128082275, "IDs": "AtomPairFP1129", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7869619131088257, "y": -4.318215370178223, "IDs": "AtomPairFP1843", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7515702247619629, "y": -4.903074741363525, "IDs": "AtomPairFP67", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5051789283752441, "y": -5.366718292236328, "IDs": "AtomPairFP18", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.92313551902771, "y": -4.29398250579834, "IDs": "AtomPairFP530", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0952181816101074, "y": -6.413525581359863, "IDs": "AtomPairFP1206", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4879071712493896, "y": -5.139466285705566, "IDs": "AtomPairFP43", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.175614356994629, "y": -1.3341820240020752, "IDs": "AtomPairFP1527", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7355092763900757, "y": -5.685578346252441, "IDs": "AtomPairFP1623", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9037013053894043, "y": -6.004681587219238, "IDs": "AtomPairFP968", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0658141374588013, "y": -4.604577541351318, "IDs": "AtomPairFP399", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.596065044403076, "y": -5.372326374053955, "IDs": "AtomPairFP302", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9889326691627502, "y": -4.3547682762146, "IDs": "AtomPairFP251", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1654863357543945, "y": -3.1430885791778564, "IDs": "AtomPairFP702", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5644829273223877, "y": -4.974084854125977, "IDs": "AtomPairFP987", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.04671996086835861, "y": -5.653207778930664, "IDs": "AtomPairFP1894", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3661079406738281, "y": -4.039078712463379, "IDs": "AtomPairFP928", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8651846647262573, "y": -3.466097354888916, "IDs": "AtomPairFP12", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9166526794433594, "y": -6.39612340927124, "IDs": "AtomPairFP1774", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8334085941314697, "y": -3.467729330062866, "IDs": "AtomPairFP860", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9409677386283875, "y": -5.040194988250732, "IDs": "AtomPairFP914", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9353307485580444, "y": -5.138474464416504, "IDs": "AtomPairFP352", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1282641887664795, "y": -1.5829341411590576, "IDs": "AtomPairFP520", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2659566402435303, "y": -4.4694719314575195, "IDs": "AtomPairFP461", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1832166910171509, "y": -1.423490285873413, "IDs": "AtomPairFP1177", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.489732027053833, "y": -5.848941802978516, "IDs": "AtomPairFP1952", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1213377714157104, "y": -2.8378849029541016, "IDs": "AtomPairFP1564", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5405927896499634, "y": -4.956996440887451, "IDs": "AtomPairFP844", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.90714430809021, "y": -5.347076416015625, "IDs": "AtomPairFP1423", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2279632091522217, "y": -3.6698803901672363, "IDs": "AtomPairFP21", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8290201425552368, "y": -3.7680697441101074, "IDs": "AtomPairFP1788", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9849435687065125, "y": -6.400267601013184, "IDs": "AtomPairFP1142", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.373871088027954, "y": -6.209415912628174, "IDs": "AtomPairFP786", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5165746212005615, "y": -4.95526123046875, "IDs": "AtomPairFP1724", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8243529796600342, "y": -2.494905710220337, "IDs": "AtomPairFP1288", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7985424995422363, "y": -4.804498195648193, "IDs": "AtomPairFP101", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9879692196846008, "y": -4.238109111785889, "IDs": "AtomPairFP1333", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6226526498794556, "y": -5.596104621887207, "IDs": "AtomPairFP1827", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.340419769287109, "y": -3.209786891937256, "IDs": "AtomPairFP1476", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.370223045349121, "y": -4.258865833282471, "IDs": "AtomPairFP802", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.667565941810608, "y": -6.230136394500732, "IDs": "AtomPairFP1394", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.83473539352417, "y": -3.1274640560150146, "IDs": "AtomPairFP552", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.615039825439453, "y": -4.668269157409668, "IDs": "AtomPairFP715", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.463156223297119, "y": -5.099743366241455, "IDs": "AtomPairFP278", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.23590588569641113, "y": -3.5912699699401855, "IDs": "AtomPairFP1335", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2008213996887207, "y": -3.712294101715088, "IDs": "AtomPairFP1282", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1729974746704102, "y": -5.952876091003418, "IDs": "AtomPairFP1088", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5346642136573792, "y": -5.712287425994873, "IDs": "AtomPairFP1929", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9605869054794312, "y": -6.241025924682617, "IDs": "AtomPairFP1007", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6003419160842896, "y": -4.168581008911133, "IDs": "AtomPairFP947", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1306915283203125, "y": -5.461007595062256, "IDs": "AtomPairFP291", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.309280872344971, "y": -2.4802045822143555, "IDs": "AtomPairFP1495", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6928335428237915, "y": -7.290973663330078, "IDs": "AtomPairFP1097", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6259926557540894, "y": -3.5371530055999756, "IDs": "AtomPairFP1178", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7615338563919067, "y": -2.3803799152374268, "IDs": "AtomPairFP736", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8919103145599365, "y": -3.4487993717193604, "IDs": "AtomPairFP378", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.851168155670166, "y": -3.5433144569396973, "IDs": "AtomPairFP1336", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.40871211886405945, "y": -2.7541556358337402, "IDs": "AtomPairFP174", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9043540954589844, "y": -4.177835941314697, "IDs": "AtomPairFP831", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7851575613021851, "y": -3.62080717086792, "IDs": "AtomPairFP1354", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9688920974731445, "y": -3.3059170246124268, "IDs": "AtomPairFP199", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.04490327835083, "y": -3.975567579269409, "IDs": "AtomPairFP739", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3430113792419434, "y": -5.373341083526611, "IDs": "AtomPairFP1144", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.480346202850342, "y": -5.534748554229736, "IDs": "AtomPairFP383", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.22463569045066833, "y": -5.0525641441345215, "IDs": "AtomPairFP1802", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2504595220088959, "y": -2.7492923736572266, "IDs": "AtomPairFP740", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7184876203536987, "y": -4.293188571929932, "IDs": "AtomPairFP640", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.62244176864624, "y": -2.447038412094116, "IDs": "AtomPairFP1085", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3055287599563599, "y": -7.07927942276001, "IDs": "AtomPairFP506", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6473842859268188, "y": -4.99838399887085, "IDs": "AtomPairFP1998", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8186941742897034, "y": -5.7781243324279785, "IDs": "AtomPairFP1921", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9206998348236084, "y": -4.9065141677856445, "IDs": "AtomPairFP166", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.315739631652832, "y": -1.3192209005355835, "IDs": "AtomPairFP388", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3097552061080933, "y": -5.612396240234375, "IDs": "AtomPairFP526", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0140106678009033, "y": -1.765221357345581, "IDs": "AtomPairFP1501", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9238840937614441, "y": -4.74898624420166, "IDs": "AtomPairFP1267", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8541291356086731, "y": -3.7671475410461426, "IDs": "AtomPairFP1780", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.152431011199951, "y": -4.478443145751953, "IDs": "AtomPairFP145", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0282492637634277, "y": -3.349529266357422, "IDs": "AtomPairFP607", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8041993379592896, "y": -2.4633846282958984, "IDs": "AtomPairFP1123", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.114027738571167, "y": -5.5491509437561035, "IDs": "AtomPairFP321", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3394831418991089, "y": -5.96875524520874, "IDs": "AtomPairFP1669", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7765157222747803, "y": -6.4085822105407715, "IDs": "AtomPairFP1812", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4526488780975342, "y": -7.165538311004639, "IDs": "AtomPairFP941", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.257378101348877, "y": -3.8557183742523193, "IDs": "AtomPairFP1347", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.26441892981529236, "y": -3.844550371170044, "IDs": "AtomPairFP962", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6290087699890137, "y": -3.946692943572998, "IDs": "AtomPairFP1686", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6734105348587036, "y": -5.629072666168213, "IDs": "AtomPairFP2044", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1485425233840942, "y": -6.3169684410095215, "IDs": "AtomPairFP1357", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5179983377456665, "y": -4.665287494659424, "IDs": "AtomPairFP1924", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.24680757522583, "y": -7.942935943603516, "IDs": "AtomPairFP1505", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3103143870830536, "y": -3.2760467529296875, "IDs": "AtomPairFP367", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7095866203308105, "y": -4.659201622009277, "IDs": "AtomPairFP1302", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2539602518081665, "y": -4.188807487487793, "IDs": "AtomPairFP495", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3023903369903564, "y": -2.84969162940979, "IDs": "AtomPairFP600", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9543289542198181, "y": -1.8852483034133911, "IDs": "AtomPairFP778", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.742908000946045, "y": -4.09555196762085, "IDs": "AtomPairFP1216", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9948989152908325, "y": -2.9465699195861816, "IDs": "AtomPairFP668", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.589015007019043, "y": -3.050327777862549, "IDs": "AtomPairFP342", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.033344030380249, "y": -1.610038161277771, "IDs": "AtomPairFP316", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0966179370880127, "y": -1.5703986883163452, "IDs": "AtomPairFP1745", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.32021957635879517, "y": -6.129342079162598, "IDs": "AtomPairFP1657", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0520644187927246, "y": -3.3358302116394043, "IDs": "AtomPairFP873", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7697412371635437, "y": -4.180148601531982, "IDs": "AtomPairFP1947", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2215652465820312, "y": -2.4387948513031006, "IDs": "AtomPairFP1516", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.24795164167881012, "y": -4.760857105255127, "IDs": "AtomPairFP1003", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6911181211471558, "y": -3.488051176071167, "IDs": "AtomPairFP1406", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1540164947509766, "y": -5.964570999145508, "IDs": "AtomPairFP1873", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.897007405757904, "y": -1.9298162460327148, "IDs": "AtomPairFP1777", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1978399753570557, "y": -4.674783706665039, "IDs": "AtomPairFP888", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4877901077270508, "y": -5.396080017089844, "IDs": "AtomPairFP42", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1421433687210083, "y": -6.922365665435791, "IDs": "AtomPairFP554", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6085284948349, "y": -6.6904401779174805, "IDs": "AtomPairFP221", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1933345794677734, "y": -3.9746599197387695, "IDs": "AtomPairFP964", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.697229862213135, "y": -4.080267429351807, "IDs": "AtomPairFP591", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9758544564247131, "y": -5.299890041351318, "IDs": "AtomPairFP73", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2266244888305664, "y": -6.047317981719971, "IDs": "AtomPairFP1445", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.356884479522705, "y": -1.3464369773864746, "IDs": "AtomPairFP455", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0405187606811523, "y": -3.3027124404907227, "IDs": "AtomPairFP891", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.473955899477005, "y": -5.2590413093566895, "IDs": "AtomPairFP1698", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.368763446807861, "y": -1.3595118522644043, "IDs": "AtomPairFP277", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5813395977020264, "y": -5.431236743927002, "IDs": "AtomPairFP1939", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.528667688369751, "y": -4.964561939239502, "IDs": "AtomPairFP1502", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2281031757593155, "y": -2.7575275897979736, "IDs": "AtomPairFP803", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7130584716796875, "y": -3.305476665496826, "IDs": "AtomPairFP1149", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.904611349105835, "y": -5.099839687347412, "IDs": "AtomPairFP90", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8973932862281799, "y": -5.067619800567627, "IDs": "AtomPairFP814", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9203643798828125, "y": -5.015442848205566, "IDs": "AtomPairFP188", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.23245258629322052, "y": -5.5371294021606445, "IDs": "AtomPairFP1575", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.11178731918334961, "y": -6.077671527862549, "IDs": "AtomPairFP1592", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1073582172393799, "y": -6.151881694793701, "IDs": "AtomPairFP1677", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.044715642929077, "y": -1.7788867950439453, "IDs": "AtomPairFP433", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.20334386825561523, "y": -2.92099666595459, "IDs": "AtomPairFP2015", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0391278266906738, "y": -6.466036319732666, "IDs": "AtomPairFP1239", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7921010255813599, "y": -3.6623098850250244, "IDs": "AtomPairFP970", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6188154220581055, "y": -5.3530802726745605, "IDs": "AtomPairFP1264", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9147040843963623, "y": -5.436333179473877, "IDs": "AtomPairFP1402", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0304979085922241, "y": -1.645664095878601, "IDs": "AtomPairFP1086", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.263983726501465, "y": -2.5796024799346924, "IDs": "AtomPairFP918", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3456180095672607, "y": -4.905093193054199, "IDs": "AtomPairFP1309", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0954139232635498, "y": -1.483909249305725, "IDs": "AtomPairFP733", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0694626569747925, "y": -5.039516448974609, "IDs": "AtomPairFP87", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.928993582725525, "y": -7.99448823928833, "IDs": "AtomPairFP1576", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5430670976638794, "y": -4.474664688110352, "IDs": "AtomPairFP1942", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.30899080634117126, "y": -4.112017631530762, "IDs": "AtomPairFP1478", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1708059310913086, "y": -6.0746612548828125, "IDs": "AtomPairFP1380", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.073496341705322, "y": -4.481795787811279, "IDs": "AtomPairFP339", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4878594875335693, "y": -6.385934829711914, "IDs": "AtomPairFP1082", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.48967358469963074, "y": -2.716994047164917, "IDs": "AtomPairFP864", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.092635154724121, "y": -4.453567981719971, "IDs": "AtomPairFP804", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4058377742767334, "y": -5.295959949493408, "IDs": "AtomPairFP1005", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0417389869689941, "y": -2.811605215072632, "IDs": "AtomPairFP1598", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.062022604048252106, "y": -5.67417049407959, "IDs": "AtomPairFP1826", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.25921186804771423, "y": -3.1139814853668213, "IDs": "AtomPairFP1865", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4600722789764404, "y": -5.49431037902832, "IDs": "AtomPairFP1325", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.341651201248169, "y": -1.6957061290740967, "IDs": "AtomPairFP1132", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8798398971557617, "y": -7.89100456237793, "IDs": "AtomPairFP2027", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.025397539138794, "y": -5.429168224334717, "IDs": "AtomPairFP282", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3696376085281372, "y": -4.25070333480835, "IDs": "AtomPairFP902", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2966508865356445, "y": -6.386020660400391, "IDs": "AtomPairFP215", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.065651774406433, "y": -4.161803245544434, "IDs": "AtomPairFP837", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.264216423034668, "y": -1.2978465557098389, "IDs": "AtomPairFP754", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6952140927314758, "y": -5.5131683349609375, "IDs": "AtomPairFP1785", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.852656841278076, "y": -3.806086540222168, "IDs": "AtomPairFP1690", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4760311841964722, "y": -2.574873447418213, "IDs": "AtomPairFP271", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7812594175338745, "y": -4.61439847946167, "IDs": "AtomPairFP903", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8555382490158081, "y": -5.310872554779053, "IDs": "AtomPairFP1790", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6298272609710693, "y": -4.507789611816406, "IDs": "AtomPairFP191", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1360419988632202, "y": -4.348479270935059, "IDs": "AtomPairFP475", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1231844425201416, "y": -1.5784478187561035, "IDs": "AtomPairFP1052", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.953749418258667, "y": -1.908852219581604, "IDs": "AtomPairFP1045", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4719033241271973, "y": -7.758447647094727, "IDs": "AtomPairFP1839", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.16572345793247223, "y": -2.794687509536743, "IDs": "AtomPairFP550", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9351413249969482, "y": -3.7216005325317383, "IDs": "AtomPairFP1518", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9996598958969116, "y": -5.290289402008057, "IDs": "AtomPairFP738", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.32754993438720703, "y": -4.632140159606934, "IDs": "AtomPairFP259", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.30927467346191406, "y": -5.110949993133545, "IDs": "AtomPairFP1004", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9077535271644592, "y": -3.932647943496704, "IDs": "AtomPairFP420", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9970958232879639, "y": -7.3794474601745605, "IDs": "AtomPairFP612", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1513686180114746, "y": -5.156876564025879, "IDs": "AtomPairFP1396", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.30255126953125, "y": -6.424291610717773, "IDs": "AtomPairFP790", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.087794780731201, "y": -8.01563835144043, "IDs": "AtomPairFP1641", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5961978435516357, "y": -5.9108381271362305, "IDs": "AtomPairFP1692", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9270959496498108, "y": -6.302515029907227, "IDs": "AtomPairFP1173", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2485883235931396, "y": -6.34870719909668, "IDs": "AtomPairFP35", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.200443744659424, "y": -3.3982598781585693, "IDs": "AtomPairFP1915", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3510172665119171, "y": -6.019753456115723, "IDs": "AtomPairFP1561", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4807223081588745, "y": -5.891582489013672, "IDs": "AtomPairFP1161", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4597818851470947, "y": -4.4278411865234375, "IDs": "AtomPairFP92", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.176652669906616, "y": -5.6830153465271, "IDs": "AtomPairFP338", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.650190830230713, "y": -4.059135437011719, "IDs": "AtomPairFP503", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.568160891532898, "y": -4.965088844299316, "IDs": "AtomPairFP130", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8747003078460693, "y": -3.4683196544647217, "IDs": "AtomPairFP667", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4876580238342285, "y": -7.2002949714660645, "IDs": "AtomPairFP509", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6892956495285034, "y": -7.69235372543335, "IDs": "AtomPairFP1995", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.603438377380371, "y": -2.4831137657165527, "IDs": "AtomPairFP1044", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.510390520095825, "y": -5.191792011260986, "IDs": "AtomPairFP1404", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.10874497890472412, "y": -3.556150436401367, "IDs": "AtomPairFP1210", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.797905445098877, "y": -3.2504849433898926, "IDs": "AtomPairFP1224", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.619905412197113, "y": -6.051225662231445, "IDs": "AtomPairFP1482", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0915377140045166, "y": -6.305306434631348, "IDs": "AtomPairFP136", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.5792338848114014, "y": -3.733166217803955, "IDs": "AtomPairFP486", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.950568675994873, "y": -3.3397486209869385, "IDs": "AtomPairFP31", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8840444087982178, "y": -6.224122524261475, "IDs": "AtomPairFP621", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.466963291168213, "y": -5.387294769287109, "IDs": "AtomPairFP595", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9258925914764404, "y": -1.4611294269561768, "IDs": "AtomPairFP1331", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.290306568145752, "y": -1.2364383935928345, "IDs": "AtomPairFP16", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7650911808013916, "y": -6.115040302276611, "IDs": "AtomPairFP1048", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3543163537979126, "y": -7.270305633544922, "IDs": "AtomPairFP1691", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.008436679840088, "y": -6.27488899230957, "IDs": "AtomPairFP1146", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.72086238861084, "y": -2.407532215118408, "IDs": "AtomPairFP1068", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9868466854095459, "y": -4.539586067199707, "IDs": "AtomPairFP965", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.733734130859375, "y": -4.039089679718018, "IDs": "AtomPairFP287", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6471776962280273, "y": -4.954377174377441, "IDs": "AtomPairFP1693", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.520926833152771, "y": -7.2118096351623535, "IDs": "AtomPairFP127", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7795480489730835, "y": -7.807642459869385, "IDs": "AtomPairFP1577", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3984799385070801, "y": -4.039126396179199, "IDs": "AtomPairFP1755", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.867924213409424, "y": -3.303595542907715, "IDs": "AtomPairFP777", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7173360586166382, "y": -3.4373018741607666, "IDs": "AtomPairFP685", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.431343078613281, "y": -4.84307336807251, "IDs": "AtomPairFP593", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5248568058013916, "y": -4.265472888946533, "IDs": "AtomPairFP1627", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1484808921813965, "y": -1.5641292333602905, "IDs": "AtomPairFP1084", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2396559715270996, "y": -1.7332649230957031, "IDs": "AtomPairFP0", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7759435176849365, "y": -1.8871067762374878, "IDs": "AtomPairFP1631", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.31667354702949524, "y": -3.951545000076294, "IDs": "AtomPairFP606", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0703481435775757, "y": -4.713161468505859, "IDs": "AtomPairFP622", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.16525696218013763, "y": -3.0722897052764893, "IDs": "AtomPairFP1935", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.168759822845459, "y": -4.440659523010254, "IDs": "AtomPairFP335", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.992159128189087, "y": -4.150386333465576, "IDs": "AtomPairFP123", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8156888484954834, "y": -5.153748512268066, "IDs": "AtomPairFP84", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6595510840415955, "y": -4.925448894500732, "IDs": "AtomPairFP1999", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0807706117630005, "y": -4.769618988037109, "IDs": "AtomPairFP1230", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.63020920753479, "y": -2.512021541595459, "IDs": "AtomPairFP980", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9760797023773193, "y": -6.337177276611328, "IDs": "AtomPairFP1327", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7209908962249756, "y": -2.417948007583618, "IDs": "AtomPairFP80", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.265039443969727, "y": -1.3185170888900757, "IDs": "AtomPairFP1866", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2513680458068848, "y": -4.099280834197998, "IDs": "AtomPairFP912", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9193955063819885, "y": -4.586617946624756, "IDs": "AtomPairFP966", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4826676845550537, "y": -6.323956489562988, "IDs": "AtomPairFP336", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.11453314870595932, "y": -6.103076934814453, "IDs": "AtomPairFP2042", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.44854938983917236, "y": -4.767575740814209, "IDs": "AtomPairFP796", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7815746068954468, "y": -3.6942927837371826, "IDs": "AtomPairFP1792", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3066488802433014, "y": -5.735840797424316, "IDs": "AtomPairFP1360", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9191479682922363, "y": -3.166757106781006, "IDs": "AtomPairFP1585", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.323866844177246, "y": -1.2857027053833008, "IDs": "AtomPairFP1348", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2530410289764404, "y": -5.7047882080078125, "IDs": "AtomPairFP1534", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.691868782043457, "y": -3.3346283435821533, "IDs": "AtomPairFP150", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1156805753707886, "y": -1.5082590579986572, "IDs": "AtomPairFP502", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.160470724105835, "y": -6.295374393463135, "IDs": "AtomPairFP144", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0674455165863037, "y": -1.5545328855514526, "IDs": "AtomPairFP1938", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8529242277145386, "y": -7.703836917877197, "IDs": "AtomPairFP1862", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7110161781311035, "y": -4.824638366699219, "IDs": "AtomPairFP477", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1757880449295044, "y": -2.3289589881896973, "IDs": "AtomPairFP718", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1932883262634277, "y": -4.544875621795654, "IDs": "AtomPairFP474", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.530305862426758, "y": -4.535152435302734, "IDs": "AtomPairFP190", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.284663200378418, "y": -4.406426906585693, "IDs": "AtomPairFP919", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.711605072021484, "y": -4.111395835876465, "IDs": "AtomPairFP1168", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4761258065700531, "y": -6.167341232299805, "IDs": "AtomPairFP1624", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.19953979551792145, "y": -5.138937950134277, "IDs": "AtomPairFP1676", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4120503664016724, "y": -4.568594932556152, "IDs": "AtomPairFP2036", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9388656616210938, "y": -5.058444499969482, "IDs": "AtomPairFP1072", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7870935201644897, "y": -4.044829845428467, "IDs": "AtomPairFP772", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8712639808654785, "y": -6.5566182136535645, "IDs": "AtomPairFP394", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.077746629714966, "y": -7.739440441131592, "IDs": "AtomPairFP1477", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0355390310287476, "y": -5.660971641540527, "IDs": "AtomPairFP1183", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.51910138130188, "y": -3.6228301525115967, "IDs": "AtomPairFP1532", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.67082405090332, "y": -4.106878280639648, "IDs": "AtomPairFP165", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6179530024528503, "y": -6.201757907867432, "IDs": "AtomPairFP1625", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9703099727630615, "y": -3.174463987350464, "IDs": "AtomPairFP874", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2465069741010666, "y": -5.41451358795166, "IDs": "AtomPairFP1795", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1953593492507935, "y": -3.9716434478759766, "IDs": "AtomPairFP574", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.493734359741211, "y": -3.6925737857818604, "IDs": "AtomPairFP1838", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.535740375518799, "y": -3.2152256965637207, "IDs": "AtomPairFP994", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1586334705352783, "y": -7.882910251617432, "IDs": "AtomPairFP1253", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.933307409286499, "y": -6.332155704498291, "IDs": "AtomPairFP1388", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.698727011680603, "y": -7.025211334228516, "IDs": "AtomPairFP1370", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.472569465637207, "y": -4.335353374481201, "IDs": "AtomPairFP154", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.615333318710327, "y": -5.220250129699707, "IDs": "AtomPairFP651", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3389895260334015, "y": -5.67191219329834, "IDs": "AtomPairFP1871", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8605272769927979, "y": -3.536811351776123, "IDs": "AtomPairFP534", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.902100086212158, "y": -3.4228954315185547, "IDs": "AtomPairFP897", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3721712827682495, "y": -3.4154396057128906, "IDs": "AtomPairFP543", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7832446098327637, "y": -2.4780073165893555, "IDs": "AtomPairFP981", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.341373443603516, "y": -1.2470144033432007, "IDs": "AtomPairFP436", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09204558283090591, "y": -5.406119346618652, "IDs": "AtomPairFP1618", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.732056140899658, "y": -4.086434841156006, "IDs": "AtomPairFP389", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.356047630310059, "y": -2.73129940032959, "IDs": "AtomPairFP1737", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9747860431671143, "y": -5.488448619842529, "IDs": "AtomPairFP203", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.766831159591675, "y": -2.4083685874938965, "IDs": "AtomPairFP1076", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9787617921829224, "y": -4.734920501708984, "IDs": "AtomPairFP29", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2021547555923462, "y": -3.709684133529663, "IDs": "AtomPairFP1702", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.067721128463745, "y": -4.677471160888672, "IDs": "AtomPairFP1426", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1596148014068604, "y": -1.5291389226913452, "IDs": "AtomPairFP1807", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8893573880195618, "y": -4.576847076416016, "IDs": "AtomPairFP446", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.22760769724845886, "y": -4.118326663970947, "IDs": "AtomPairFP971", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8248324394226074, "y": -3.0447475910186768, "IDs": "AtomPairFP1439", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.328193187713623, "y": -7.931100368499756, "IDs": "AtomPairFP1255", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2908584475517273, "y": -2.8802976608276367, "IDs": "AtomPairFP250", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.537971019744873, "y": -7.235839366912842, "IDs": "AtomPairFP828", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1616172790527344, "y": -3.8692359924316406, "IDs": "AtomPairFP117", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.722212553024292, "y": -6.180111885070801, "IDs": "AtomPairFP1033", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.220456838607788, "y": -6.39342737197876, "IDs": "AtomPairFP85", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3719223737716675, "y": -4.1151909828186035, "IDs": "AtomPairFP1377", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0645052194595337, "y": -2.8802552223205566, "IDs": "AtomPairFP856", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.710935115814209, "y": -2.833873748779297, "IDs": "AtomPairFP48", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8030931949615479, "y": -5.392268657684326, "IDs": "AtomPairFP1852", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.738063395023346, "y": -3.919214963912964, "IDs": "AtomPairFP292", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.467034935951233, "y": -5.604746341705322, "IDs": "AtomPairFP1099", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4388630390167236, "y": -4.109603404998779, "IDs": "AtomPairFP1275", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.4495601654052734, "y": -1.6916418075561523, "IDs": "AtomPairFP887", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8381984233856201, "y": -7.447467803955078, "IDs": "AtomPairFP832", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.275920033454895, "y": -2.7684764862060547, "IDs": "AtomPairFP677", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7402454018592834, "y": -4.846660614013672, "IDs": "AtomPairFP2024", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.24722206592559814, "y": -5.117856502532959, "IDs": "AtomPairFP1707", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6819877624511719, "y": -4.571743965148926, "IDs": "AtomPairFP89", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8293204307556152, "y": -3.691124677658081, "IDs": "AtomPairFP432", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7729787826538086, "y": -3.394982099533081, "IDs": "AtomPairFP959", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.330665588378906, "y": -1.2104955911636353, "IDs": "AtomPairFP835", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.737841606140137, "y": -4.197865962982178, "IDs": "AtomPairFP454", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4315052032470703, "y": -4.1275129318237305, "IDs": "AtomPairFP944", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.225219964981079, "y": -5.188429832458496, "IDs": "AtomPairFP303", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5002779960632324, "y": -3.909787893295288, "IDs": "AtomPairFP1313", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.076596736907959, "y": -4.5853471755981445, "IDs": "AtomPairFP408", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.3752706050872803, "y": -5.5212016105651855, "IDs": "AtomPairFP1525", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.5491856336593628, "y": -4.057202339172363, "IDs": "AtomPairFP1122", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7713751792907715, "y": -2.376620292663574, "IDs": "AtomPairFP1674", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2099876403808594, "y": -5.371480941772461, "IDs": "AtomPairFP730", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.04031093046069145, "y": -3.943753480911255, "IDs": "AtomPairFP1055", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2686152458190918, "y": -7.064120769500732, "IDs": "AtomPairFP1781", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5539355278015137, "y": -5.607873439788818, "IDs": "AtomPairFP1162", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.32205572724342346, "y": -4.433194160461426, "IDs": "AtomPairFP1710", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0032814741134644, "y": -3.4128079414367676, "IDs": "AtomPairFP1135", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6937146186828613, "y": -4.992892265319824, "IDs": "AtomPairFP1492", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5611045360565186, "y": -7.306206703186035, "IDs": "AtomPairFP196", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9805876016616821, "y": -3.4412174224853516, "IDs": "AtomPairFP91", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.92887544631958, "y": -3.1892268657684326, "IDs": "AtomPairFP489", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9644649028778076, "y": -3.2295138835906982, "IDs": "AtomPairFP810", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.388664722442627, "y": -2.634460926055908, "IDs": "AtomPairFP1382", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4724231958389282, "y": -3.1091952323913574, "IDs": "AtomPairFP1671", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.49386823177337646, "y": -6.174847602844238, "IDs": "AtomPairFP1593", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.44382917881011963, "y": -4.207191467285156, "IDs": "AtomPairFP870", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9300772547721863, "y": -3.7464640140533447, "IDs": "AtomPairFP1524", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4649381637573242, "y": -4.056702136993408, "IDs": "AtomPairFP638", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9202452301979065, "y": -2.9869091510772705, "IDs": "AtomPairFP605", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.669502019882202, "y": -4.942133903503418, "IDs": "AtomPairFP1687", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6962300539016724, "y": -5.799626350402832, "IDs": "AtomPairFP1359", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5645298361778259, "y": -4.397698879241943, "IDs": "AtomPairFP1571", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5670781135559082, "y": -4.425191879272461, "IDs": "AtomPairFP41", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1268229484558105, "y": -3.6934425830841064, "IDs": "AtomPairFP1251", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.375810146331787, "y": -1.2334940433502197, "IDs": "AtomPairFP1220", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.585348606109619, "y": -4.843191146850586, "IDs": "AtomPairFP485", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.767810344696045, "y": -3.6316068172454834, "IDs": "AtomPairFP793", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2739970684051514, "y": -3.4967901706695557, "IDs": "AtomPairFP443", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.37043896317481995, "y": -5.020498275756836, "IDs": "AtomPairFP1643", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7644034624099731, "y": -2.376605272293091, "IDs": "AtomPairFP37", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6646511554718018, "y": -3.7267656326293945, "IDs": "AtomPairFP580", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3202722370624542, "y": -6.023736000061035, "IDs": "AtomPairFP1863", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.948706150054932, "y": -3.548938751220703, "IDs": "AtomPairFP1500", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2184305489063263, "y": -3.99760365486145, "IDs": "AtomPairFP671", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0499637126922607, "y": -5.126097679138184, "IDs": "AtomPairFP842", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.271965742111206, "y": -4.734813213348389, "IDs": "AtomPairFP147", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.605790138244629, "y": -5.165307998657227, "IDs": "AtomPairFP156", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5551295876502991, "y": -3.5286102294921875, "IDs": "AtomPairFP1620", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3536266088485718, "y": -5.978716850280762, "IDs": "AtomPairFP1193", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8669860363006592, "y": -3.5540578365325928, "IDs": "AtomPairFP1257", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4327563047409058, "y": -7.02188777923584, "IDs": "AtomPairFP1644", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.906393826007843, "y": -4.5962700843811035, "IDs": "AtomPairFP15", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3268322944641113, "y": -4.562544345855713, "IDs": "AtomPairFP60", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0391454696655273, "y": -3.205444574356079, "IDs": "AtomPairFP381", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4725067913532257, "y": -2.718599557876587, "IDs": "AtomPairFP239", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1795334815979004, "y": -5.063069820404053, "IDs": "AtomPairFP231", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9748644232749939, "y": -6.179068088531494, "IDs": "AtomPairFP1096", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.514312744140625, "y": -3.929421901702881, "IDs": "AtomPairFP17", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.499345779418945, "y": -2.7357490062713623, "IDs": "AtomPairFP1905", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.986989974975586, "y": -6.1453375816345215, "IDs": "AtomPairFP434", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5826442241668701, "y": -4.055639266967773, "IDs": "AtomPairFP114", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4431374073028564, "y": -4.175354957580566, "IDs": "AtomPairFP1876", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5106693506240845, "y": -5.844760894775391, "IDs": "AtomPairFP104", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4153808355331421, "y": -5.493361473083496, "IDs": "AtomPairFP1834", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.146054744720459, "y": -5.052061557769775, "IDs": "AtomPairFP1242", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4835923910140991, "y": -5.573765277862549, "IDs": "AtomPairFP457", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2008576393127441, "y": -6.345355987548828, "IDs": "AtomPairFP1214", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.838623583316803, "y": -4.218397617340088, "IDs": "AtomPairFP1334", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.3768510818481445, "y": -1.2816643714904785, "IDs": "AtomPairFP1588", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2940187454223633, "y": -6.437714576721191, "IDs": "AtomPairFP426", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.341290473937988, "y": -1.259626865386963, "IDs": "AtomPairFP561", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.638427734375, "y": -3.9045541286468506, "IDs": "AtomPairFP357", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.608543872833252, "y": -2.4139013290405273, "IDs": "AtomPairFP1000", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.298753261566162, "y": -1.228916883468628, "IDs": "AtomPairFP961", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.584468126296997, "y": -4.525940895080566, "IDs": "AtomPairFP178", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4439311027526855, "y": -7.86159086227417, "IDs": "AtomPairFP1047", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7162258625030518, "y": -4.579588890075684, "IDs": "AtomPairFP183", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.986311137676239, "y": -4.585281848907471, "IDs": "AtomPairFP768", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.539613962173462, "y": -3.2465412616729736, "IDs": "AtomPairFP636", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.04524517431855202, "y": -5.071181774139404, "IDs": "AtomPairFP1675", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.461820363998413, "y": -2.628537893295288, "IDs": "AtomPairFP665", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4799801707267761, "y": -5.4864397048950195, "IDs": "AtomPairFP858", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7351118922233582, "y": -3.720668077468872, "IDs": "AtomPairFP1982", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5280787944793701, "y": -6.044559955596924, "IDs": "AtomPairFP1112", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6008450388908386, "y": -3.737619638442993, "IDs": "AtomPairFP1796", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0188534259796143, "y": -6.310878753662109, "IDs": "AtomPairFP1918", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0963618755340576, "y": -4.300336837768555, "IDs": "AtomPairFP604", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5118582248687744, "y": -5.783533573150635, "IDs": "AtomPairFP341", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.48922428488731384, "y": -3.6772756576538086, "IDs": "AtomPairFP1530", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9906396865844727, "y": -4.107112884521484, "IDs": "AtomPairFP1733", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.654390811920166, "y": -3.8761186599731445, "IDs": "AtomPairFP437", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.842305898666382, "y": -3.0993545055389404, "IDs": "AtomPairFP2019", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7058627009391785, "y": -4.251091957092285, "IDs": "AtomPairFP695", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.19020918011665344, "y": -4.151459217071533, "IDs": "AtomPairFP637", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.850475788116455, "y": -3.342475175857544, "IDs": "AtomPairFP742", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3489415645599365, "y": -7.947279930114746, "IDs": "AtomPairFP1829", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.8668019771575928, "y": -2.563629150390625, "IDs": "AtomPairFP32", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6292270421981812, "y": -7.178842067718506, "IDs": "AtomPairFP2012", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.168593406677246, "y": -7.841042995452881, "IDs": "AtomPairFP1966", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7611179947853088, "y": -4.506946086883545, "IDs": "AtomPairFP1699", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.978700578212738, "y": -4.603152275085449, "IDs": "AtomPairFP713", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.743098795413971, "y": -3.7335100173950195, "IDs": "AtomPairFP1218", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5909644365310669, "y": -4.401849269866943, "IDs": "AtomPairFP535", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4900007247924805, "y": -4.492634296417236, "IDs": "AtomPairFP869", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9496939182281494, "y": -3.989433765411377, "IDs": "AtomPairFP452", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2862505614757538, "y": -5.8056793212890625, "IDs": "AtomPairFP1978", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5530296564102173, "y": -7.064073085784912, "IDs": "AtomPairFP2030", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.7864670753479, "y": -4.233792781829834, "IDs": "AtomPairFP418", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8103806972503662, "y": -2.437978744506836, "IDs": "AtomPairFP1186", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7482061386108398, "y": -2.385892391204834, "IDs": "AtomPairFP1896", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.961449921131134, "y": -5.892498016357422, "IDs": "AtomPairFP1410", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9820311069488525, "y": -3.4222476482391357, "IDs": "AtomPairFP925", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.03163856640458107, "y": -2.8820104598999023, "IDs": "AtomPairFP518", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3995494842529297, "y": -7.85805082321167, "IDs": "AtomPairFP1797", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.864841461181641, "y": -3.858705520629883, "IDs": "AtomPairFP1578", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7366026639938354, "y": -5.481808662414551, "IDs": "AtomPairFP1353", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.586421251296997, "y": -6.2782883644104, "IDs": "AtomPairFP1758", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.8581597805023193, "y": -2.5847387313842773, "IDs": "AtomPairFP852", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0799388885498047, "y": -1.5816471576690674, "IDs": "AtomPairFP1100", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.108219861984253, "y": -1.5077097415924072, "IDs": "AtomPairFP697", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.767557382583618, "y": -2.5924925804138184, "IDs": "AtomPairFP646", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9743237495422363, "y": -5.521692276000977, "IDs": "AtomPairFP1467", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9987146854400635, "y": -3.8351871967315674, "IDs": "AtomPairFP854", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4502036571502686, "y": -7.204799652099609, "IDs": "AtomPairFP1508", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.10698992758989334, "y": -5.164076805114746, "IDs": "AtomPairFP616", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.909593403339386, "y": -4.8696393966674805, "IDs": "AtomPairFP1988", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6338711977005005, "y": -4.77286958694458, "IDs": "AtomPairFP1664", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5841201543807983, "y": -4.154246807098389, "IDs": "AtomPairFP1956", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.890284776687622, "y": -3.781616449356079, "IDs": "AtomPairFP470", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.106060743331909, "y": -7.683518409729004, "IDs": "AtomPairFP1958", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0005278587341309, "y": -3.763110876083374, "IDs": "AtomPairFP2045", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4422348737716675, "y": -3.2373247146606445, "IDs": "AtomPairFP1472", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3774757385253906, "y": -4.472485065460205, "IDs": "AtomPairFP889", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.181960582733154, "y": -1.2749614715576172, "IDs": "AtomPairFP1171", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.12407299876213074, "y": -4.592332363128662, "IDs": "AtomPairFP1787", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.3697729110717773, "y": -6.475669860839844, "IDs": "AtomPairFP488", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.423262357711792, "y": -3.2742841243743896, "IDs": "AtomPairFP558", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.327193737030029, "y": -4.318523406982422, "IDs": "AtomPairFP1833", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.852227687835693, "y": -3.359933614730835, "IDs": "AtomPairFP886", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.802818775177002, "y": -4.481429100036621, "IDs": "AtomPairFP836", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1445062756538391, "y": -5.107496738433838, "IDs": "AtomPairFP722", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.38197043538093567, "y": -3.9347641468048096, "IDs": "AtomPairFP1945", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.309099793434143, "y": -7.022474765777588, "IDs": "AtomPairFP1906", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4528677463531494, "y": -5.21232795715332, "IDs": "AtomPairFP315", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.589779853820801, "y": -2.5067551136016846, "IDs": "AtomPairFP160", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.23956990242004395, "y": -4.592316150665283, "IDs": "AtomPairFP1768", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7737982273101807, "y": -3.9488883018493652, "IDs": "AtomPairFP1783", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.828151226043701, "y": -2.532806158065796, "IDs": "AtomPairFP1769", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9312673807144165, "y": -4.628336429595947, "IDs": "AtomPairFP111", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.8239288330078125, "y": -3.322596549987793, "IDs": "AtomPairFP698", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.36371344327926636, "y": -2.890307664871216, "IDs": "AtomPairFP1270", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4680086374282837, "y": -7.21726655960083, "IDs": "AtomPairFP233", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4038691520690918, "y": -4.581089019775391, "IDs": "AtomPairFP1813", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5786042213439941, "y": -4.893498420715332, "IDs": "AtomPairFP1615", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.24444431066513062, "y": -5.769485950469971, "IDs": "AtomPairFP1856", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6629191040992737, "y": -3.669099807739258, "IDs": "AtomPairFP1361", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7909759283065796, "y": -3.540616273880005, "IDs": "AtomPairFP1246", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2610275745391846, "y": -3.826113224029541, "IDs": "AtomPairFP1363", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.456599712371826, "y": -1.7047301530838013, "IDs": "AtomPairFP582", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.20711565017700195, "y": -5.191697120666504, "IDs": "AtomPairFP683", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.56479549407959, "y": -2.4504640102386475, "IDs": "AtomPairFP633", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6745383739471436, "y": -6.270117282867432, "IDs": "AtomPairFP1656", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.609375953674316, "y": -2.569305181503296, "IDs": "AtomPairFP1658", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.613895893096924, "y": -2.471968173980713, "IDs": "AtomPairFP922", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.031449794769287, "y": -3.6326563358306885, "IDs": "AtomPairFP929", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7286491990089417, "y": -5.53331995010376, "IDs": "AtomPairFP1600", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8300294876098633, "y": -4.032893180847168, "IDs": "AtomPairFP424", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4671131372451782, "y": -3.513847589492798, "IDs": "AtomPairFP1890", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5489518046379089, "y": -3.968791961669922, "IDs": "AtomPairFP672", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2757196426391602, "y": -4.515510559082031, "IDs": "AtomPairFP1229", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.28511381149292, "y": -5.5631022453308105, "IDs": "AtomPairFP569", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8305270671844482, "y": -3.3265726566314697, "IDs": "AtomPairFP412", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5083444118499756, "y": -5.135181903839111, "IDs": "AtomPairFP1538", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.430112361907959, "y": -5.078822612762451, "IDs": "AtomPairFP1613", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7912843227386475, "y": -3.8944249153137207, "IDs": "AtomPairFP1779", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4128193855285645, "y": -4.439478874206543, "IDs": "AtomPairFP311", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.31041204929351807, "y": -2.7601494789123535, "IDs": "AtomPairFP866", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0287392139434814, "y": -4.951981067657471, "IDs": "AtomPairFP799", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.429158926010132, "y": -5.956872940063477, "IDs": "AtomPairFP1050", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.860326290130615, "y": -2.362889051437378, "IDs": "AtomPairFP141", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.699253559112549, "y": -2.5421605110168457, "IDs": "AtomPairFP721", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.656937599182129, "y": -6.485158443450928, "IDs": "AtomPairFP105", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.888907551765442, "y": -3.438851833343506, "IDs": "AtomPairFP45", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2409085035324097, "y": -3.520519256591797, "IDs": "AtomPairFP257", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9105167388916016, "y": -3.219817638397217, "IDs": "AtomPairFP813", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.477292537689209, "y": -1.715389370918274, "IDs": "AtomPairFP948", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9038704633712769, "y": -3.4903910160064697, "IDs": "AtomPairFP175", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7385920882225037, "y": -4.406932353973389, "IDs": "AtomPairFP1748", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.558173656463623, "y": -4.521160125732422, "IDs": "AtomPairFP952", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8438217043876648, "y": -4.690303802490234, "IDs": "AtomPairFP1874", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9810705184936523, "y": -1.803309440612793, "IDs": "AtomPairFP1398", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3342587351799011, "y": -5.752878189086914, "IDs": "AtomPairFP379", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0240906476974487, "y": -4.03878116607666, "IDs": "AtomPairFP1760", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8564327955245972, "y": -2.447882890701294, "IDs": "AtomPairFP531", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2474322319030762, "y": -5.582802772521973, "IDs": "AtomPairFP1131", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7278337478637695, "y": -4.553179740905762, "IDs": "AtomPairFP1283", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.796835422515869, "y": -4.139214992523193, "IDs": "AtomPairFP1344", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2278943061828613, "y": -5.121121406555176, "IDs": "AtomPairFP1725", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3983851671218872, "y": -5.8978047370910645, "IDs": "AtomPairFP1418", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.271467208862305, "y": -3.1631031036376953, "IDs": "AtomPairFP372", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.085924506187439, "y": -6.316126346588135, "IDs": "AtomPairFP1174", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.861965179443359, "y": -3.4027719497680664, "IDs": "AtomPairFP723", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3117692768573761, "y": -6.067990303039551, "IDs": "AtomPairFP1798", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.992692470550537, "y": -5.415968418121338, "IDs": "AtomPairFP376", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1706211566925049, "y": -3.889125108718872, "IDs": "AtomPairFP686", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9581077098846436, "y": -2.514521598815918, "IDs": "AtomPairFP97", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4271366596221924, "y": -4.811077117919922, "IDs": "AtomPairFP953", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.04321342706680298, "y": -4.816700458526611, "IDs": "AtomPairFP1859", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.060743808746338, "y": -1.8306546211242676, "IDs": "AtomPairFP885", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8008018732070923, "y": -3.7059249877929688, "IDs": "AtomPairFP602", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9120984077453613, "y": -4.421440124511719, "IDs": "AtomPairFP334", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.581943988800049, "y": -2.5066914558410645, "IDs": "AtomPairFP322", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.822219371795654, "y": -3.350407600402832, "IDs": "AtomPairFP1487", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9799013137817383, "y": -5.189230918884277, "IDs": "AtomPairFP1607", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7576910257339478, "y": -3.40488338470459, "IDs": "AtomPairFP142", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.833836078643799, "y": -3.324388027191162, "IDs": "AtomPairFP951", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4659149646759033, "y": -3.4705331325531006, "IDs": "AtomPairFP1180", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4444198608398438, "y": -7.149973392486572, "IDs": "AtomPairFP1258", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9921526908874512, "y": -3.7608182430267334, "IDs": "AtomPairFP1911", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.056816339492798, "y": -1.9442651271820068, "IDs": "AtomPairFP1069", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.890669345855713, "y": -3.6571788787841797, "IDs": "AtomPairFP1709", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1655845642089844, "y": -5.299893856048584, "IDs": "AtomPairFP164", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.28838586807251, "y": -1.3476923704147339, "IDs": "AtomPairFP881", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.924800157546997, "y": -4.1208086013793945, "IDs": "AtomPairFP1233", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3431975841522217, "y": -7.673584461212158, "IDs": "AtomPairFP1900", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2788379192352295, "y": -7.721963405609131, "IDs": "AtomPairFP1263", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2707370519638062, "y": -5.883562088012695, "IDs": "AtomPairFP1035", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.657439947128296, "y": -2.419260025024414, "IDs": "AtomPairFP225", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7791624069213867, "y": -3.4141030311584473, "IDs": "AtomPairFP939", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.5667855739593506, "y": -3.78311824798584, "IDs": "AtomPairFP688", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.959721565246582, "y": -4.797098636627197, "IDs": "AtomPairFP1241", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1491881608963013, "y": -3.956242799758911, "IDs": "AtomPairFP2", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.055338598787784576, "y": -5.122011184692383, "IDs": "AtomPairFP670", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.397418737411499, "y": -5.562097549438477, "IDs": "AtomPairFP401", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.719312846660614, "y": -6.324104309082031, "IDs": "AtomPairFP1247", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.912313461303711, "y": -3.337843418121338, "IDs": "AtomPairFP463", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9921857714653015, "y": -4.517594814300537, "IDs": "AtomPairFP911", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3351151943206787, "y": -5.982433319091797, "IDs": "AtomPairFP1732", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.79921817779541, "y": -3.301536798477173, "IDs": "AtomPairFP268", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.610995292663574, "y": -3.184670925140381, "IDs": "AtomPairFP445", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5998607873916626, "y": -4.467220783233643, "IDs": "AtomPairFP219", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7430272102355957, "y": -2.3682987689971924, "IDs": "AtomPairFP727", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.49728745222091675, "y": -5.708521842956543, "IDs": "AtomPairFP1864", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7001185417175293, "y": -2.3812639713287354, "IDs": "AtomPairFP279", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.532799482345581, "y": -5.061874866485596, "IDs": "AtomPairFP1015", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.888279914855957, "y": -3.785430908203125, "IDs": "AtomPairFP1281", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2378063201904297, "y": -4.570344924926758, "IDs": "AtomPairFP246", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.065025694668293, "y": -4.748447418212891, "IDs": "AtomPairFP972", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.5176403522491455, "y": -4.193089485168457, "IDs": "AtomPairFP933", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.240161657333374, "y": -5.004449844360352, "IDs": "AtomPairFP1201", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.813677191734314, "y": -2.479161024093628, "IDs": "AtomPairFP172", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4230138063430786, "y": -5.131551265716553, "IDs": "AtomPairFP1147", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.93308424949646, "y": -5.274349212646484, "IDs": "AtomPairFP295", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.419640064239502, "y": -4.28742790222168, "IDs": "AtomPairFP896", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3540006875991821, "y": -6.8379082679748535, "IDs": "AtomPairFP916", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4796737432479858, "y": -7.1879425048828125, "IDs": "AtomPairFP1567", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2773626148700714, "y": -3.707594156265259, "IDs": "AtomPairFP631", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9267845153808594, "y": -5.956229209899902, "IDs": "AtomPairFP1766", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0642937421798706, "y": -3.95849609375, "IDs": "AtomPairFP1023", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2567979097366333, "y": -5.308067321777344, "IDs": "AtomPairFP1986", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.282787799835205, "y": -6.380858898162842, "IDs": "AtomPairFP148", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.099619746208191, "y": -3.727853536605835, "IDs": "AtomPairFP1330", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8349945545196533, "y": -3.160480499267578, "IDs": "AtomPairFP601", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4792068004608154, "y": -4.4875807762146, "IDs": "AtomPairFP74", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8933203220367432, "y": -4.3834638595581055, "IDs": "AtomPairFP398", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.256901741027832, "y": -4.743466854095459, "IDs": "AtomPairFP1744", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.7880096435546875, "y": -3.97847318649292, "IDs": "AtomPairFP1223", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9852584600448608, "y": -6.2046308517456055, "IDs": "AtomPairFP1276", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2354220151901245, "y": -3.3467493057250977, "IDs": "AtomPairFP289", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.337604999542236, "y": -1.199053406715393, "IDs": "AtomPairFP1008", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.673950433731079, "y": -2.4281160831451416, "IDs": "AtomPairFP1305", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1922314167022705, "y": -2.1535515785217285, "IDs": "AtomPairFP296", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8183854818344116, "y": -7.7993645668029785, "IDs": "AtomPairFP1994", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6631975173950195, "y": -7.293210029602051, "IDs": "AtomPairFP1507", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4853359460830688, "y": -6.329329967498779, "IDs": "AtomPairFP1457", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3456909656524658, "y": -3.6195578575134277, "IDs": "AtomPairFP1573", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.594637632369995, "y": -4.872119426727295, "IDs": "AtomPairFP1311", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.106642723083496, "y": -5.893795490264893, "IDs": "AtomPairFP1316", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8225798606872559, "y": -4.4626593589782715, "IDs": "AtomPairFP834", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.302298903465271, "y": -6.484084606170654, "IDs": "AtomPairFP1182", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4523867964744568, "y": -4.21417236328125, "IDs": "AtomPairFP1712", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5726590156555176, "y": -6.018346309661865, "IDs": "AtomPairFP1446", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.48451200127601624, "y": -3.554969072341919, "IDs": "AtomPairFP1770", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.657464027404785, "y": -3.982926607131958, "IDs": "AtomPairFP1093", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5660901069641113, "y": -3.1632490158081055, "IDs": "AtomPairFP938", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5357847213745117, "y": -4.534854412078857, "IDs": "AtomPairFP4", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8058613538742065, "y": -2.3774428367614746, "IDs": "AtomPairFP240", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5170385241508484, "y": -6.223560333251953, "IDs": "AtomPairFP2046", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.061761736869812, "y": -6.001696586608887, "IDs": "AtomPairFP1358", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3709781169891357, "y": -7.420633792877197, "IDs": "AtomPairFP1102", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.195436716079712, "y": -3.8656139373779297, "IDs": "AtomPairFP890", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.496692180633545, "y": -2.6640777587890625, "IDs": "AtomPairFP1723", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.05498180910944939, "y": -3.977815866470337, "IDs": "AtomPairFP1511", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0283430814743042, "y": -6.765634536743164, "IDs": "AtomPairFP732", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.614359974861145, "y": -4.258673667907715, "IDs": "AtomPairFP585", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.563497066497803, "y": -4.469257831573486, "IDs": "AtomPairFP481", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.574422359466553, "y": -3.4085352420806885, "IDs": "AtomPairFP1683", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8350917100906372, "y": -4.0677995681762695, "IDs": "AtomPairFP422", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.670685291290283, "y": -4.100373268127441, "IDs": "AtomPairFP769", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4101537466049194, "y": -4.980195045471191, "IDs": "AtomPairFP1887", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8905771970748901, "y": -4.026704788208008, "IDs": "AtomPairFP1814", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.846148490905762, "y": -3.9100897312164307, "IDs": "AtomPairFP1460", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2749478816986084, "y": -5.070877552032471, "IDs": "AtomPairFP1136", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.191738605499268, "y": -2.6740541458129883, "IDs": "AtomPairFP679", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8111950159072876, "y": -5.646669864654541, "IDs": "AtomPairFP464", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.816676378250122, "y": -3.3564889430999756, "IDs": "AtomPairFP1759", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.4235897064208984, "y": -5.11497688293457, "IDs": "AtomPairFP19", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.357773542404175, "y": -5.313736438751221, "IDs": "AtomPairFP1138", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.506869077682495, "y": -6.27200174331665, "IDs": "AtomPairFP765", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.326167106628418, "y": -7.675588607788086, "IDs": "AtomPairFP1463", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8799757957458496, "y": -4.802358627319336, "IDs": "AtomPairFP1365", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0603017807006836, "y": -3.5720043182373047, "IDs": "AtomPairFP1046", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2541800737380981, "y": -1.6993227005004883, "IDs": "AtomPairFP1248", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09346296638250351, "y": -5.511825084686279, "IDs": "AtomPairFP1793", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.08854002505540848, "y": -5.583667755126953, "IDs": "AtomPairFP1638", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2825677394866943, "y": -6.3028974533081055, "IDs": "AtomPairFP224", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.612041711807251, "y": -4.65477991104126, "IDs": "AtomPairFP847", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4738368093967438, "y": -6.0135297775268555, "IDs": "AtomPairFP1181", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1088899374008179, "y": -2.5725810527801514, "IDs": "AtomPairFP1037", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.89374178647995, "y": -3.8391687870025635, "IDs": "AtomPairFP64", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2929196059703827, "y": -4.279621601104736, "IDs": "AtomPairFP661", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.180186748504639, "y": -3.6813900470733643, "IDs": "AtomPairFP1580", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1592214107513428, "y": -4.640151023864746, "IDs": "AtomPairFP823", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0387048721313477, "y": -3.228689193725586, "IDs": "AtomPairFP68", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.561819076538086, "y": -2.4681179523468018, "IDs": "AtomPairFP1061", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.153505802154541, "y": -4.367868900299072, "IDs": "AtomPairFP11", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2827244997024536, "y": -4.469662189483643, "IDs": "AtomPairFP220", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.051255859434604645, "y": -4.957213401794434, "IDs": "AtomPairFP973", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.849229335784912, "y": -6.2237935066223145, "IDs": "AtomPairFP942", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0843234062194824, "y": -4.449068546295166, "IDs": "AtomPairFP396", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.00813627243042, "y": -5.13178825378418, "IDs": "AtomPairFP634", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.10011111944913864, "y": -6.192752361297607, "IDs": "AtomPairFP1925", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6807035207748413, "y": -5.516970157623291, "IDs": "AtomPairFP923", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2979633808135986, "y": -7.791952610015869, "IDs": "AtomPairFP1429", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9791529178619385, "y": -3.480894088745117, "IDs": "AtomPairFP207", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.6081953048706055, "y": -3.8750252723693848, "IDs": "AtomPairFP20", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.887046456336975, "y": -4.82421350479126, "IDs": "AtomPairFP158", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0302780866622925, "y": -4.563961982727051, "IDs": "AtomPairFP493", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8319438695907593, "y": -6.236388683319092, "IDs": "AtomPairFP1599", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0255768299102783, "y": -3.2970499992370605, "IDs": "AtomPairFP826", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8834586143493652, "y": -6.488855838775635, "IDs": "AtomPairFP345", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7439005374908447, "y": -7.32159948348999, "IDs": "AtomPairFP390", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.36647629737854, "y": -5.200521469116211, "IDs": "AtomPairFP528", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9990264177322388, "y": -1.676681637763977, "IDs": "AtomPairFP1880", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2929234206676483, "y": -5.731822490692139, "IDs": "AtomPairFP1764", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1819369792938232, "y": -7.602272033691406, "IDs": "AtomPairFP1228", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9451920986175537, "y": -4.684508323669434, "IDs": "AtomPairFP200", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.868055582046509, "y": -3.1376094818115234, "IDs": "AtomPairFP1256", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.845456123352051, "y": -3.370356321334839, "IDs": "AtomPairFP478", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.293814182281494, "y": -1.3268182277679443, "IDs": "AtomPairFP126", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4386415481567383, "y": -3.5002481937408447, "IDs": "AtomPairFP285", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7569042444229126, "y": -3.3975541591644287, "IDs": "AtomPairFP664", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.548352003097534, "y": -4.867849349975586, "IDs": "AtomPairFP1115", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.034406065940857, "y": -3.3225672245025635, "IDs": "AtomPairFP572", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1235624551773071, "y": -1.5957324504852295, "IDs": "AtomPairFP1552", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9760799407958984, "y": -4.103711128234863, "IDs": "AtomPairFP719", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5608084201812744, "y": -4.369390487670898, "IDs": "AtomPairFP816", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9264284372329712, "y": -3.389636516571045, "IDs": "AtomPairFP1053", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.71121883392334, "y": -3.518672227859497, "IDs": "AtomPairFP473", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7561371922492981, "y": -4.2707037925720215, "IDs": "AtomPairFP1917", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.047054409980774, "y": -6.345066547393799, "IDs": "AtomPairFP1268", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0207492113113403, "y": -4.450746059417725, "IDs": "AtomPairFP2023", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.21152420341968536, "y": -4.101638317108154, "IDs": "AtomPairFP514", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.814892292022705, "y": -4.046726703643799, "IDs": "AtomPairFP532", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.551603078842163, "y": -3.9399940967559814, "IDs": "AtomPairFP710", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.34237024188041687, "y": -3.6882636547088623, "IDs": "AtomPairFP1965", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.995842933654785, "y": -1.986565351486206, "IDs": "AtomPairFP2020", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2340947389602661, "y": -6.365135192871094, "IDs": "AtomPairFP1269", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1487126350402832, "y": -4.228558540344238, "IDs": "AtomPairFP825", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8853869438171387, "y": -2.8900933265686035, "IDs": "AtomPairFP407", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.25220057368278503, "y": -4.568103313446045, "IDs": "AtomPairFP1775", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1891143321990967, "y": -3.04799747467041, "IDs": "AtomPairFP1226", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6875379085540771, "y": -6.191047191619873, "IDs": "AtomPairFP2038", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.554723739624023, "y": -2.5239098072052, "IDs": "AtomPairFP492", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7336692214012146, "y": -5.715953350067139, "IDs": "AtomPairFP1067", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.323640912771225, "y": -4.385080337524414, "IDs": "AtomPairFP1586", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.99230694770813, "y": -4.422422409057617, "IDs": "AtomPairFP290", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.893113374710083, "y": -2.727464437484741, "IDs": "AtomPairFP510", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.309564113616943, "y": -2.720456123352051, "IDs": "AtomPairFP483", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.043701171875, "y": -5.22193717956543, "IDs": "AtomPairFP214", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8099642992019653, "y": -3.460920572280884, "IDs": "AtomPairFP1450", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1919020414352417, "y": -1.5346022844314575, "IDs": "AtomPairFP1791", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8648865222930908, "y": -4.611796855926514, "IDs": "AtomPairFP1809", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.141591876745224, "y": -3.9757776260375977, "IDs": "AtomPairFP1858", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1973923444747925, "y": -1.5953409671783447, "IDs": "AtomPairFP575", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3856980800628662, "y": -4.4940571784973145, "IDs": "AtomPairFP26", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2075773477554321, "y": -3.305382490158081, "IDs": "AtomPairFP956", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.97861385345459, "y": -1.8290231227874756, "IDs": "AtomPairFP1421", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.152777910232544, "y": -6.3144121170043945, "IDs": "AtomPairFP1292", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8684825897216797, "y": -7.852499008178711, "IDs": "AtomPairFP1077", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2854878902435303, "y": -4.570105075836182, "IDs": "AtomPairFP469", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2606242299079895, "y": -4.165234088897705, "IDs": "AtomPairFP1415", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7465906143188477, "y": -5.21189022064209, "IDs": "AtomPairFP1713", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.856689214706421, "y": -3.378516435623169, "IDs": "AtomPairFP361", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7848153710365295, "y": -4.1898393630981445, "IDs": "AtomPairFP1626", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3801242113113403, "y": -1.6730190515518188, "IDs": "AtomPairFP273", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3832472562789917, "y": -6.8901190757751465, "IDs": "AtomPairFP1559", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.486209869384766, "y": -4.244129657745361, "IDs": "AtomPairFP112", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9140961170196533, "y": -4.569596767425537, "IDs": "AtomPairFP781", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.027500629425049, "y": -5.502715110778809, "IDs": "AtomPairFP1718", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.296473503112793, "y": -1.290468454360962, "IDs": "AtomPairFP898", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3417696952819824, "y": -4.607043266296387, "IDs": "AtomPairFP901", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9626338481903076, "y": -4.663285732269287, "IDs": "AtomPairFP1367", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.133352279663086, "y": -5.105578899383545, "IDs": "AtomPairFP102", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.468489170074463, "y": -4.835811614990234, "IDs": "AtomPairFP570", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9494831562042236, "y": -4.677425861358643, "IDs": "AtomPairFP152", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1577272415161133, "y": -1.668933629989624, "IDs": "AtomPairFP1661", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9950661659240723, "y": -1.726472020149231, "IDs": "AtomPairFP904", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3565623760223389, "y": -3.8871572017669678, "IDs": "AtomPairFP1280", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3075198531150818, "y": -3.6967320442199707, "IDs": "AtomPairFP1449", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.50862455368042, "y": -7.752933979034424, "IDs": "AtomPairFP1860", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.500849723815918, "y": -3.6810715198516846, "IDs": "AtomPairFP2016", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0884908437728882, "y": -3.199676275253296, "IDs": "AtomPairFP143", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.765564918518066, "y": -3.4501895904541016, "IDs": "AtomPairFP1176", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6634613275527954, "y": -5.515254020690918, "IDs": "AtomPairFP877", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.499738931655884, "y": -5.261000156402588, "IDs": "AtomPairFP93", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4947487115859985, "y": -3.391674280166626, "IDs": "AtomPairFP1438", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.701280117034912, "y": -3.2323007583618164, "IDs": "AtomPairFP556", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.34747087955474854, "y": -3.7818472385406494, "IDs": "AtomPairFP1389", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.5924010276794434, "y": -5.4533209800720215, "IDs": "AtomPairFP409", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2757527828216553, "y": -4.797362804412842, "IDs": "AtomPairFP1405", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5524446964263916, "y": -6.275543689727783, "IDs": "AtomPairFP1853", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8586992621421814, "y": -3.6258349418640137, "IDs": "AtomPairFP1371", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.16555438935756683, "y": -5.8948822021484375, "IDs": "AtomPairFP1940", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4867616593837738, "y": -5.617977142333984, "IDs": "AtomPairFP314", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2009574174880981, "y": -6.431858539581299, "IDs": "AtomPairFP1271", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.14134617149829865, "y": -6.132784366607666, "IDs": "AtomPairFP2041", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8283169269561768, "y": -5.831875801086426, "IDs": "AtomPairFP1310", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.1752629280090332, "y": -5.318448543548584, "IDs": "AtomPairFP1546", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0153266191482544, "y": -6.239562511444092, "IDs": "AtomPairFP1591", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.413718044757843, "y": -5.570337772369385, "IDs": "AtomPairFP2002", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1870681047439575, "y": -4.802950859069824, "IDs": "AtomPairFP857", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.36862248182296753, "y": -5.534262180328369, "IDs": "AtomPairFP1907", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7384582757949829, "y": -2.498988389968872, "IDs": "AtomPairFP1566", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.721451759338379, "y": -3.7388088703155518, "IDs": "AtomPairFP960", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0971096754074097, "y": -1.515893578529358, "IDs": "AtomPairFP284", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3532111644744873, "y": -5.476230144500732, "IDs": "AtomPairFP659", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1157785654067993, "y": -1.501806616783142, "IDs": "AtomPairFP459", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.48550406098365784, "y": -5.359403133392334, "IDs": "AtomPairFP1778", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5167967081069946, "y": -4.845519542694092, "IDs": "AtomPairFP1841", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0687127113342285, "y": -7.339612007141113, "IDs": "AtomPairFP1448", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.786081314086914, "y": -3.2592737674713135, "IDs": "AtomPairFP1163", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7341418266296387, "y": -4.95555305480957, "IDs": "AtomPairFP236", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.658154010772705, "y": -3.453772783279419, "IDs": "AtomPairFP892", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.4971771240234375, "y": -1.7087113857269287, "IDs": "AtomPairFP323", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.340070366859436, "y": -5.936996936798096, "IDs": "AtomPairFP1735", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9301798343658447, "y": -3.2080414295196533, "IDs": "AtomPairFP1633", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6739416718482971, "y": -5.567015171051025, "IDs": "AtomPairFP1888", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.723924160003662, "y": -4.694380760192871, "IDs": "AtomPairFP2001", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1002757549285889, "y": -4.0546159744262695, "IDs": "AtomPairFP991", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.842868685722351, "y": -2.414170503616333, "IDs": "AtomPairFP288", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.17626504600048065, "y": -4.072190761566162, "IDs": "AtomPairFP629", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9100230932235718, "y": -1.8180869817733765, "IDs": "AtomPairFP1468", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.693131446838379, "y": -4.162518501281738, "IDs": "AtomPairFP7", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.027024030685425, "y": -4.821473598480225, "IDs": "AtomPairFP1590", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.455500841140747, "y": -5.91642427444458, "IDs": "AtomPairFP1375", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1226489320397377, "y": -4.294214248657227, "IDs": "AtomPairFP305", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.399627685546875, "y": -6.333616733551025, "IDs": "AtomPairFP1910", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9525203108787537, "y": -4.643386363983154, "IDs": "AtomPairFP460", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.065808057785034, "y": -3.4313056468963623, "IDs": "AtomPairFP714", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.01511412300169468, "y": -4.557188510894775, "IDs": "AtomPairFP1384", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.13631722331047058, "y": -5.950737953186035, "IDs": "AtomPairFP1973", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5399479866027832, "y": -6.279907703399658, "IDs": "AtomPairFP1520", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.3340911865234375, "y": -1.2890422344207764, "IDs": "AtomPairFP243", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5982350707054138, "y": -5.094700813293457, "IDs": "AtomPairFP1984", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5325433015823364, "y": -7.700656890869141, "IDs": "AtomPairFP1963", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8311986923217773, "y": -3.0836520195007324, "IDs": "AtomPairFP1971", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5537484288215637, "y": -4.569784164428711, "IDs": "AtomPairFP8", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6098105907440186, "y": -7.473354339599609, "IDs": "AtomPairFP1799", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.403918981552124, "y": -5.4600510597229, "IDs": "AtomPairFP1194", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.023377003148198128, "y": -3.744191884994507, "IDs": "AtomPairFP567", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.083395957946777, "y": -4.187341690063477, "IDs": "AtomPairFP1153", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -2.576306104660034, "y": -4.8474225997924805, "IDs": "AtomPairFP1731", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.03682094067335129, "y": -3.7968525886535645, "IDs": "AtomPairFP307", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5625863075256348, "y": -5.716980457305908, "IDs": "AtomPairFP471", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9345744848251343, "y": -3.692030429840088, "IDs": "AtomPairFP421", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.901176691055298, "y": -7.632626533508301, "IDs": "AtomPairFP1034", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09858804941177368, "y": -5.616360187530518, "IDs": "AtomPairFP1536", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1747361421585083, "y": -6.209047794342041, "IDs": "AtomPairFP1215", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.11447467654943466, "y": -3.7546331882476807, "IDs": "AtomPairFP1714", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2070417404174805, "y": -4.330610275268555, "IDs": "AtomPairFP61", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.840240955352783, "y": -3.3709092140197754, "IDs": "AtomPairFP583", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5113549828529358, "y": -2.826801300048828, "IDs": "AtomPairFP218", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.708224296569824, "y": -4.003945827484131, "IDs": "AtomPairFP256", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.03639020398259163, "y": -3.6682629585266113, "IDs": "AtomPairFP1080", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.567225694656372, "y": -5.370507717132568, "IDs": "AtomPairFP1274", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.221917152404785, "y": -7.848865985870361, "IDs": "AtomPairFP1879", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.862075924873352, "y": -3.9382400512695312, "IDs": "AtomPairFP1646", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.06892532855272293, "y": -3.9018805027008057, "IDs": "AtomPairFP1416", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8915475606918335, "y": -3.5198891162872314, "IDs": "AtomPairFP905", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8459848761558533, "y": -4.00745153427124, "IDs": "AtomPairFP818", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.473340034484863, "y": -4.172760963439941, "IDs": "AtomPairFP402", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0341734886169434, "y": -6.0232625007629395, "IDs": "AtomPairFP1765", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9427198171615601, "y": -4.169124126434326, "IDs": "AtomPairFP1914", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.589360475540161, "y": -3.215287446975708, "IDs": "AtomPairFP1596", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.82692813873291, "y": -2.669466257095337, "IDs": "AtomPairFP1673", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.672551155090332, "y": -2.6026127338409424, "IDs": "AtomPairFP1930", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.886385202407837, "y": -2.551142692565918, "IDs": "AtomPairFP1739", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4222646951675415, "y": -6.3792948722839355, "IDs": "AtomPairFP1844", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8437544703483582, "y": -5.555213451385498, "IDs": "AtomPairFP1953", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3096988201141357, "y": -7.793082237243652, "IDs": "AtomPairFP1063", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.195968508720398, "y": -2.804246425628662, "IDs": "AtomPairFP466", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.6330413818359375, "y": -3.9890851974487305, "IDs": "AtomPairFP1540", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1665050983428955, "y": -2.474419116973877, "IDs": "AtomPairFP1369", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1761393547058105, "y": -4.967377185821533, "IDs": "AtomPairFP392", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2720943093299866, "y": -5.414841651916504, "IDs": "AtomPairFP1553", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.105957508087158, "y": -7.900625705718994, "IDs": "AtomPairFP1188", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.712339401245117, "y": -3.342237949371338, "IDs": "AtomPairFP1289", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.665465831756592, "y": -4.005552291870117, "IDs": "AtomPairFP121", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9835571050643921, "y": -3.9473695755004883, "IDs": "AtomPairFP1249", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.891713619232178, "y": -3.394033670425415, "IDs": "AtomPairFP1736", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1249046325683594, "y": -6.883023262023926, "IDs": "AtomPairFP669", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6355275511741638, "y": -4.203563690185547, "IDs": "AtomPairFP1630", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9811747670173645, "y": -5.135722637176514, "IDs": "AtomPairFP22", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.828320026397705, "y": -3.154367685317993, "IDs": "AtomPairFP2034", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3908894062042236, "y": -3.4045519828796387, "IDs": "AtomPairFP750", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5164681077003479, "y": -4.5792717933654785, "IDs": "AtomPairFP785", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9456997513771057, "y": -4.543636322021484, "IDs": "AtomPairFP717", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.8070147037506104, "y": -3.82914400100708, "IDs": "AtomPairFP237", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1339921951293945, "y": -1.5098387002944946, "IDs": "AtomPairFP351", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4945871829986572, "y": -6.234686851501465, "IDs": "AtomPairFP435", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7200422286987305, "y": -2.418426513671875, "IDs": "AtomPairFP807", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.18883438408374786, "y": -5.846291542053223, "IDs": "AtomPairFP1916", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.81031334400177, "y": -2.3988850116729736, "IDs": "AtomPairFP978", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.02992582321167, "y": -3.3358733654022217, "IDs": "AtomPairFP235", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8637358546257019, "y": -3.532728672027588, "IDs": "AtomPairFP1386", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8333983421325684, "y": -6.202960014343262, "IDs": "AtomPairFP1496", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6915997862815857, "y": -3.8873863220214844, "IDs": "AtomPairFP737", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8855838775634766, "y": -7.089707374572754, "IDs": "AtomPairFP364", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7174862027168274, "y": -4.182465553283691, "IDs": "AtomPairFP759", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3406363725662231, "y": -7.180574417114258, "IDs": "AtomPairFP1262", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3359999656677246, "y": -4.1763811111450195, "IDs": "AtomPairFP608", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8993475437164307, "y": -3.497537136077881, "IDs": "AtomPairFP238", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.326768159866333, "y": -5.268465042114258, "IDs": "AtomPairFP986", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3148456811904907, "y": -1.6383227109909058, "IDs": "AtomPairFP795", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6077252626419067, "y": -5.1037373542785645, "IDs": "AtomPairFP1612", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2790558338165283, "y": -4.328301429748535, "IDs": "AtomPairFP1932", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4757475852966309, "y": -6.036092281341553, "IDs": "AtomPairFP1049", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1951850652694702, "y": -6.94281530380249, "IDs": "AtomPairFP1891", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4643936157226562, "y": -7.120543479919434, "IDs": "AtomPairFP1195", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.32236525416374207, "y": -5.260056018829346, "IDs": "AtomPairFP746", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.42202794551849365, "y": -3.8507864475250244, "IDs": "AtomPairFP1395", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.10923808068037033, "y": -4.734936714172363, "IDs": "AtomPairFP365", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.008744239807129, "y": -4.04381799697876, "IDs": "AtomPairFP562", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.551767587661743, "y": -7.719744682312012, "IDs": "AtomPairFP1197", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7345696687698364, "y": -2.416783094406128, "IDs": "AtomPairFP846", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8821805715560913, "y": -4.676528453826904, "IDs": "AtomPairFP162", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9919127225875854, "y": -7.129922866821289, "IDs": "AtomPairFP625", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.448638916015625, "y": -1.6868896484375, "IDs": "AtomPairFP449", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8979816436767578, "y": -3.4731688499450684, "IDs": "AtomPairFP660", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.306379318237305, "y": -1.208282709121704, "IDs": "AtomPairFP512", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.08730272203683853, "y": -5.508433818817139, "IDs": "AtomPairFP202", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5401058197021484, "y": -2.4708797931671143, "IDs": "AtomPairFP859", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4687421321868896, "y": -7.207859039306641, "IDs": "AtomPairFP579", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.280073165893555, "y": -3.8756983280181885, "IDs": "AtomPairFP1835", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6222585439682007, "y": -7.231600761413574, "IDs": "AtomPairFP327", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8738741874694824, "y": -5.570797443389893, "IDs": "AtomPairFP1528", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.789339065551758, "y": -3.264626979827881, "IDs": "AtomPairFP1148", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.44770917296409607, "y": -5.075315475463867, "IDs": "AtomPairFP1642", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6396434307098389, "y": -7.173755645751953, "IDs": "AtomPairFP1583", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4896987676620483, "y": -7.472086429595947, "IDs": "AtomPairFP1601", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.009507417678833, "y": -7.420205116271973, "IDs": "AtomPairFP1290", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.758115291595459, "y": -3.235279083251953, "IDs": "AtomPairFP9", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4664230346679688, "y": -2.4965975284576416, "IDs": "AtomPairFP1126", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9979748725891113, "y": -4.302202224731445, "IDs": "AtomPairFP649", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2702958583831787, "y": -6.399864196777344, "IDs": "AtomPairFP1277", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2240312099456787, "y": -1.7115638256072998, "IDs": "AtomPairFP820", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.406637042760849, "y": -3.553826332092285, "IDs": "AtomPairFP1170", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9105224609375, "y": -3.623202323913574, "IDs": "AtomPairFP597", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.007676925975829363, "y": -3.724173069000244, "IDs": "AtomPairFP1400", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3176459074020386, "y": -5.142265319824219, "IDs": "AtomPairFP1993", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.009898149408400059, "y": -5.2027153968811035, "IDs": "AtomPairFP1991", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6828739643096924, "y": -5.897541522979736, "IDs": "AtomPairFP1773", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.221755713224411, "y": -5.290254592895508, "IDs": "AtomPairFP1555", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.8581409454345703, "y": -4.303671360015869, "IDs": "AtomPairFP189", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.632467746734619, "y": -2.5361075401306152, "IDs": "AtomPairFP448", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1748708486557007, "y": -6.930695056915283, "IDs": "AtomPairFP705", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.293873906135559, "y": -6.9237189292907715, "IDs": "AtomPairFP1374", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0769312381744385, "y": -3.5061895847320557, "IDs": "AtomPairFP1850", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7256805896759033, "y": -4.248791217803955, "IDs": "AtomPairFP1989", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0270886421203613, "y": -1.772728443145752, "IDs": "AtomPairFP955", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.1611572802066803, "y": -4.026849269866943, "IDs": "AtomPairFP619", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3555337190628052, "y": -4.199734210968018, "IDs": "AtomPairFP522", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.41004636883735657, "y": -4.187095642089844, "IDs": "AtomPairFP1721", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.20894202589988708, "y": -4.3659749031066895, "IDs": "AtomPairFP1705", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4469747245311737, "y": -5.207211971282959, "IDs": "AtomPairFP1556", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.319049835205078, "y": -1.2589577436447144, "IDs": "AtomPairFP1462", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.430694580078125, "y": -5.439301490783691, "IDs": "AtomPairFP384", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2350761890411377, "y": -5.003238201141357, "IDs": "AtomPairFP1266", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.750216960906982, "y": -4.292149543762207, "IDs": "AtomPairFP1975", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1527824401855469, "y": -1.5259007215499878, "IDs": "AtomPairFP1933", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4700859785079956, "y": -6.374185562133789, "IDs": "AtomPairFP1456", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1065900325775146, "y": -3.908370018005371, "IDs": "AtomPairFP404", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4182644784450531, "y": -3.8759281635284424, "IDs": "AtomPairFP515", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9197027683258057, "y": -7.851289749145508, "IDs": "AtomPairFP1608", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.27005434036254883, "y": -3.8379054069519043, "IDs": "AtomPairFP663", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0657308101654053, "y": -4.160090446472168, "IDs": "AtomPairFP1298", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3610815405845642, "y": -3.818019390106201, "IDs": "AtomPairFP692", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5228946208953857, "y": -5.228568077087402, "IDs": "AtomPairFP106", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.408245325088501, "y": -3.2345192432403564, "IDs": "AtomPairFP286", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3727226257324219, "y": -3.7673721313476562, "IDs": "AtomPairFP304", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.905996084213257, "y": -5.8659348487854, "IDs": "AtomPairFP1877", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6021865606307983, "y": -5.076632499694824, "IDs": "AtomPairFP1006", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.35847806930542, "y": -1.251134991645813, "IDs": "AtomPairFP626", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9311484098434448, "y": -6.361449241638184, "IDs": "AtomPairFP1488", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6093451976776123, "y": -3.6630866527557373, "IDs": "AtomPairFP309", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5206188559532166, "y": -3.7709386348724365, "IDs": "AtomPairFP861", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7365776300430298, "y": -3.464428186416626, "IDs": "AtomPairFP872", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.603508710861206, "y": -4.7695112228393555, "IDs": "AtomPairFP1041", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.42360228300094604, "y": -3.005143165588379, "IDs": "AtomPairFP1027", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.44701650738716125, "y": -6.171586990356445, "IDs": "AtomPairFP1419", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.656778335571289, "y": -4.218634605407715, "IDs": "AtomPairFP507", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7020813226699829, "y": -3.506998300552368, "IDs": "AtomPairFP1196", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.652693510055542, "y": -3.8252129554748535, "IDs": "AtomPairFP1125", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2451180219650269, "y": -3.6202523708343506, "IDs": "AtomPairFP1103", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6284957528114319, "y": -5.8274054527282715, "IDs": "AtomPairFP1411", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5066652297973633, "y": -3.2358577251434326, "IDs": "AtomPairFP623", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7168802618980408, "y": -4.105295181274414, "IDs": "AtomPairFP641", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.323585033416748, "y": -2.48354434967041, "IDs": "AtomPairFP1036", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.610260963439941, "y": -2.4835195541381836, "IDs": "AtomPairFP1157", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6974023580551147, "y": -6.651617527008057, "IDs": "AtomPairFP1606", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.20600184798240662, "y": -5.517613410949707, "IDs": "AtomPairFP657", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6417739391326904, "y": -3.395986318588257, "IDs": "AtomPairFP557", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.45186808705329895, "y": -3.5874977111816406, "IDs": "AtomPairFP1213", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4540138244628906, "y": -7.7982635498046875, "IDs": "AtomPairFP1441", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09358641505241394, "y": -4.037368297576904, "IDs": "AtomPairFP1519", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3071472942829132, "y": -4.88782262802124, "IDs": "AtomPairFP2007", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.816375255584717, "y": -7.7241668701171875, "IDs": "AtomPairFP1480", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8344210386276245, "y": -5.2795329093933105, "IDs": "AtomPairFP53", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9796979427337646, "y": -4.7348952293396, "IDs": "AtomPairFP1983", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2934262454509735, "y": -3.641347885131836, "IDs": "AtomPairFP1150", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5925079584121704, "y": -7.520439147949219, "IDs": "AtomPairFP1632", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7240808010101318, "y": -3.2819619178771973, "IDs": "AtomPairFP653", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.14830328524112701, "y": -5.792076587677002, "IDs": "AtomPairFP1946", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3883219957351685, "y": -4.883593559265137, "IDs": "AtomPairFP943", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.664093494415283, "y": -2.4641199111938477, "IDs": "AtomPairFP1124", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.42059391736984253, "y": -5.103691577911377, "IDs": "AtomPairFP1936", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2576560974121094, "y": -4.556406021118164, "IDs": "AtomPairFP1681", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.653757095336914, "y": -2.6052944660186768, "IDs": "AtomPairFP272", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.542440176010132, "y": -5.268191337585449, "IDs": "AtomPairFP223", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4533286392688751, "y": -5.156015396118164, "IDs": "AtomPairFP1937", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2332616001367569, "y": -5.848556995391846, "IDs": "AtomPairFP1959", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.744006633758545, "y": -2.3637845516204834, "IDs": "AtomPairFP368", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.635262966156006, "y": -4.0372724533081055, "IDs": "AtomPairFP1155", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.709335803985596, "y": -4.040154457092285, "IDs": "AtomPairFP1824", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1902419775724411, "y": -3.554933547973633, "IDs": "AtomPairFP899", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.729394912719727, "y": -4.060981273651123, "IDs": "AtomPairFP1782", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.162985801696777, "y": -4.036489486694336, "IDs": "AtomPairFP1747", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5817972421646118, "y": -4.271770477294922, "IDs": "AtomPairFP945", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1144430860877037, "y": -4.392611503601074, "IDs": "AtomPairFP729", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.638723850250244, "y": -5.100255489349365, "IDs": "AtomPairFP1717", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.241285562515259, "y": -5.1918721199035645, "IDs": "AtomPairFP1967", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6288869380950928, "y": -4.59780740737915, "IDs": "AtomPairFP71", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5165402293205261, "y": -4.226354598999023, "IDs": "AtomPairFP1522", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.912929356098175, "y": -1.7450369596481323, "IDs": "AtomPairFP1535", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8038344383239746, "y": -7.805700778961182, "IDs": "AtomPairFP1189", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8508471250534058, "y": -5.9151201248168945, "IDs": "AtomPairFP1506", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1797640472650528, "y": -3.8827595710754395, "IDs": "AtomPairFP598", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.213524580001831, "y": -6.34834623336792, "IDs": "AtomPairFP1272", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5148835182189941, "y": -4.622636318206787, "IDs": "AtomPairFP681", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0253965854644775, "y": -3.2556674480438232, "IDs": "AtomPairFP444", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5099432468414307, "y": -5.230112552642822, "IDs": "AtomPairFP1635", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.434689998626709, "y": -5.38034725189209, "IDs": "AtomPairFP682", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9355889558792114, "y": -5.11262845993042, "IDs": "AtomPairFP155", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7221248149871826, "y": -2.454306125640869, "IDs": "AtomPairFP1704", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.749030590057373, "y": -3.965120553970337, "IDs": "AtomPairFP560", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.18988408148288727, "y": -6.037903785705566, "IDs": "AtomPairFP1649", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.505427360534668, "y": -6.316135406494141, "IDs": "AtomPairFP1521", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.15266306698322296, "y": -6.065154552459717, "IDs": "AtomPairFP1970", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.145042657852173, "y": -4.43976354598999, "IDs": "AtomPairFP1849", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6112844944000244, "y": -5.973066806793213, "IDs": "AtomPairFP318", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7886207103729248, "y": -5.6257195472717285, "IDs": "AtomPairFP1422", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.089223623275757, "y": -4.611793518066406, "IDs": "AtomPairFP1816", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.345338821411133, "y": -5.144731044769287, "IDs": "AtomPairFP344", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.683635234832764, "y": -3.9324045181274414, "IDs": "AtomPairFP627", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3588956296443939, "y": -2.7225048542022705, "IDs": "AtomPairFP930", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0287020206451416, "y": -5.590397357940674, "IDs": "AtomPairFP332", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.567354440689087, "y": -5.782680511474609, "IDs": "AtomPairFP1854", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.37698495388031, "y": -5.953384876251221, "IDs": "AtomPairFP1154", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8960253596305847, "y": -5.293856143951416, "IDs": "AtomPairFP1753", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8048210144042969, "y": -3.596609592437744, "IDs": "AtomPairFP1307", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6981432437896729, "y": -2.6019294261932373, "IDs": "AtomPairFP819", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0719035863876343, "y": -5.948487758636475, "IDs": "AtomPairFP1475", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.178152933716774, "y": -6.078572750091553, "IDs": "AtomPairFP1913", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4336234331130981, "y": -7.0860915184021, "IDs": "AtomPairFP366", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6827735900878906, "y": -3.3423590660095215, "IDs": "AtomPairFP1054", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1742067337036133, "y": -4.125537872314453, "IDs": "AtomPairFP1810", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4661870002746582, "y": -3.6086883544921875, "IDs": "AtomPairFP974", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.770104885101318, "y": -2.417083501815796, "IDs": "AtomPairFP30", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.646816611289978, "y": -4.42755126953125, "IDs": "AtomPairFP2010", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3634345531463623, "y": -7.4901442527771, "IDs": "AtomPairFP1070", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1215851306915283, "y": -6.325358867645264, "IDs": "AtomPairFP1151", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.458985805511475, "y": -2.59127140045166, "IDs": "AtomPairFP1019", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9880247116088867, "y": -3.7451984882354736, "IDs": "AtomPairFP262", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9872560501098633, "y": -1.856306791305542, "IDs": "AtomPairFP1898", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.2940754890441895, "y": -4.3731608390808105, "IDs": "AtomPairFP353", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7095834016799927, "y": -7.76258659362793, "IDs": "AtomPairFP2026", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.01020939089357853, "y": -5.938051223754883, "IDs": "AtomPairFP2035", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5580548048019409, "y": -4.963942527770996, "IDs": "AtomPairFP1550", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8568292856216431, "y": -4.4508280754089355, "IDs": "AtomPairFP1342", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.48255297541618347, "y": -5.557214736938477, "IDs": "AtomPairFP1897", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.03720047324895859, "y": -3.109734535217285, "IDs": "AtomPairFP1784", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1436290740966797, "y": -1.4559258222579956, "IDs": "AtomPairFP762", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.2435966581106186, "y": -4.486816883087158, "IDs": "AtomPairFP1771", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5968835353851318, "y": -2.6133971214294434, "IDs": "AtomPairFP198", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.837301254272461, "y": -3.3203511238098145, "IDs": "AtomPairFP1038", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2108891010284424, "y": -7.946691513061523, "IDs": "AtomPairFP1191", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.793120861053467, "y": -3.928807020187378, "IDs": "AtomPairFP1728", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9924039840698242, "y": -4.326216697692871, "IDs": "AtomPairFP482", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.022059917449951, "y": -2.686472177505493, "IDs": "AtomPairFP1738", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3987138271331787, "y": -4.616272926330566, "IDs": "AtomPairFP125", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -2.8123223781585693, "y": -4.776654243469238, "IDs": "AtomPairFP728", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.894618511199951, "y": -3.497720956802368, "IDs": "AtomPairFP499", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.254307270050049, "y": -4.609935283660889, "IDs": "AtomPairFP1881", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9750654697418213, "y": -4.990432262420654, "IDs": "AtomPairFP1265", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7827916145324707, "y": -2.3560874462127686, "IDs": "AtomPairFP467", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.346968650817871, "y": -4.649499416351318, "IDs": "AtomPairFP1756", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.33326154947280884, "y": -5.443640232086182, "IDs": "AtomPairFP132", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.15623141825199127, "y": -4.089512348175049, "IDs": "AtomPairFP1654", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.18663713335990906, "y": -2.81139874458313, "IDs": "AtomPairFP615", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0959502458572388, "y": -4.452028274536133, "IDs": "AtomPairFP63", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.72604513168335, "y": -3.9653871059417725, "IDs": "AtomPairFP829", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5016019344329834, "y": -5.163158416748047, "IDs": "AtomPairFP658", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.573966979980469, "y": -3.9714744091033936, "IDs": "AtomPairFP184", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9741051197052002, "y": -4.46299934387207, "IDs": "AtomPairFP833", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3437124788761139, "y": -2.756169557571411, "IDs": "AtomPairFP865", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0358638763427734, "y": -7.727517604827881, "IDs": "AtomPairFP1828", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.92080557346344, "y": -3.4421112537384033, "IDs": "AtomPairFP827", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1124638319015503, "y": -6.982594966888428, "IDs": "AtomPairFP281", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6212756633758545, "y": -3.2249763011932373, "IDs": "AtomPairFP1689", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0202460289001465, "y": -1.8011146783828735, "IDs": "AtomPairFP1912", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.278193950653076, "y": -2.7874598503112793, "IDs": "AtomPairFP382", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.512491226196289, "y": -4.292976379394531, "IDs": "AtomPairFP650", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0663946866989136, "y": -1.6763375997543335, "IDs": "AtomPairFP1948", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1904547214508057, "y": -4.970498085021973, "IDs": "AtomPairFP1845", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0523228645324707, "y": -6.0949835777282715, "IDs": "AtomPairFP1295", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6896873712539673, "y": -3.735645294189453, "IDs": "AtomPairFP2022", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9778774976730347, "y": -2.968327760696411, "IDs": "AtomPairFP735", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1732001304626465, "y": -6.203683853149414, "IDs": "AtomPairFP779", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0297987461090088, "y": -6.402544975280762, "IDs": "AtomPairFP1236", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.188096046447754, "y": -1.5586663484573364, "IDs": "AtomPairFP843", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.167293548583984, "y": -1.3635306358337402, "IDs": "AtomPairFP373", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2312958240509033, "y": -6.911256313323975, "IDs": "AtomPairFP2006", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2091366052627563, "y": -3.295103073120117, "IDs": "AtomPairFP1021", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.467238426208496, "y": -2.703779697418213, "IDs": "AtomPairFP1133", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8560155630111694, "y": -3.4691030979156494, "IDs": "AtomPairFP588", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2442305088043213, "y": -7.777417182922363, "IDs": "AtomPairFP1830", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9371023178100586, "y": -3.458993673324585, "IDs": "AtomPairFP1031", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8281493782997131, "y": -3.8626840114593506, "IDs": "AtomPairFP1708", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6643396615982056, "y": -4.953727722167969, "IDs": "AtomPairFP118", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7144601345062256, "y": -4.704677104949951, "IDs": "AtomPairFP157", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.009954644367098808, "y": -5.424037933349609, "IDs": "AtomPairFP205", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2375924587249756, "y": -3.948826789855957, "IDs": "AtomPairFP1582", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.332037925720215, "y": -1.2959706783294678, "IDs": "AtomPairFP691", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.348799228668213, "y": -1.7384483814239502, "IDs": "AtomPairFP328", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5383896827697754, "y": -4.828190326690674, "IDs": "AtomPairFP1684", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4227145910263062, "y": -7.154077529907227, "IDs": "AtomPairFP120", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4645029306411743, "y": -4.40674352645874, "IDs": "AtomPairFP52", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4778069257736206, "y": -4.910633087158203, "IDs": "AtomPairFP38", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.16345550119876862, "y": -3.6640543937683105, "IDs": "AtomPairFP1087", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3813939094543457, "y": -4.714764595031738, "IDs": "AtomPairFP1208", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4470352828502655, "y": -6.033967018127441, "IDs": "AtomPairFP212", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.522899866104126, "y": -7.624731063842773, "IDs": "AtomPairFP1322", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6602842807769775, "y": -3.7559754848480225, "IDs": "AtomPairFP1904", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3845893144607544, "y": -3.491337776184082, "IDs": "AtomPairFP559", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.698492169380188, "y": -3.8517372608184814, "IDs": "AtomPairFP924", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.3928608894348145, "y": -1.6637009382247925, "IDs": "AtomPairFP386", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6830313205718994, "y": -4.9209980964660645, "IDs": "AtomPairFP2028", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5099401473999023, "y": -4.780226707458496, "IDs": "AtomPairFP1490", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8489928245544434, "y": -2.8844828605651855, "IDs": "AtomPairFP716", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8527835607528687, "y": -4.435169696807861, "IDs": "AtomPairFP1884", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.33705472946167, "y": -1.2709412574768066, "IDs": "AtomPairFP1094", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.164623737335205, "y": -1.503982663154602, "IDs": "AtomPairFP1379", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5656838417053223, "y": -4.471017837524414, "IDs": "AtomPairFP204", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.617326021194458, "y": -2.2993388175964355, "IDs": "AtomPairFP442", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4295989274978638, "y": -6.75800085067749, "IDs": "AtomPairFP1212", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.262258529663086, "y": -5.005354404449463, "IDs": "AtomPairFP167", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.556704044342041, "y": -3.482835292816162, "IDs": "AtomPairFP1541", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5748132467269897, "y": -3.3512768745422363, "IDs": "AtomPairFP652", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6093336939811707, "y": -4.883594036102295, "IDs": "AtomPairFP1696", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4078930616378784, "y": -7.039944648742676, "IDs": "AtomPairFP1065", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.955338954925537, "y": -5.585979461669922, "IDs": "AtomPairFP1409", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7141311168670654, "y": -4.117591381072998, "IDs": "AtomPairFP306", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.4680466651916504, "y": -1.683743953704834, "IDs": "AtomPairFP177", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3461054563522339, "y": -2.8444738388061523, "IDs": "AtomPairFP1286", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.061607837677002, "y": -3.2231497764587402, "IDs": "AtomPairFP1397", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1842260360717773, "y": -1.6292574405670166, "IDs": "AtomPairFP1870", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.358346462249756, "y": -6.221314430236816, "IDs": "AtomPairFP1340", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.752333402633667, "y": -5.780150413513184, "IDs": "AtomPairFP81", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.997959852218628, "y": -1.8029348850250244, "IDs": "AtomPairFP1444", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8714979887008667, "y": -7.724155902862549, "IDs": "AtomPairFP1836", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8469725847244263, "y": -4.457117557525635, "IDs": "AtomPairFP210", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5082210898399353, "y": -5.525812149047852, "IDs": "AtomPairFP226", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0908722877502441, "y": -6.0587053298950195, "IDs": "AtomPairFP1740", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.979604959487915, "y": -2.4005250930786133, "IDs": "AtomPairFP465", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7200207710266113, "y": -4.429583549499512, "IDs": "AtomPairFP96", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.365020751953125, "y": -5.48294734954834, "IDs": "AtomPairFP333", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8663861751556396, "y": -5.930361747741699, "IDs": "AtomPairFP1184", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.300292491912842, "y": -4.387625217437744, "IDs": "AtomPairFP1494", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8216382265090942, "y": -3.556694507598877, "IDs": "AtomPairFP1278", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8186290264129639, "y": -2.431727170944214, "IDs": "AtomPairFP230", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.90922474861145, "y": -4.0648674964904785, "IDs": "AtomPairFP249", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.820919036865234, "y": -4.042543888092041, "IDs": "AtomPairFP252", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.324085712432861, "y": -3.414156675338745, "IDs": "AtomPairFP1469", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9537315368652344, "y": -4.12139368057251, "IDs": "AtomPairFP135", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0229218006134033, "y": -4.491796970367432, "IDs": "AtomPairFP163", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.84776496887207, "y": -3.378021478652954, "IDs": "AtomPairFP244", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4336896240711212, "y": -4.140979290008545, "IDs": "AtomPairFP1964", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.239607810974121, "y": -1.4393306970596313, "IDs": "AtomPairFP1493", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1760201454162598, "y": -5.188199520111084, "IDs": "AtomPairFP879", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7842608690261841, "y": -3.4547133445739746, "IDs": "AtomPairFP1465", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0174784660339355, "y": -6.160472869873047, "IDs": "AtomPairFP1432", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.22885778546333313, "y": -2.7847225666046143, "IDs": "AtomPairFP614", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4116474688053131, "y": -5.385116100311279, "IDs": "AtomPairFP812", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4677942991256714, "y": -3.3432817459106445, "IDs": "AtomPairFP573", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3659533262252808, "y": -7.1917595863342285, "IDs": "AtomPairFP815", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.14554442465305328, "y": -4.1175150871276855, "IDs": "AtomPairFP599", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3906781077384949, "y": -3.742910146713257, "IDs": "AtomPairFP369", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6065844297409058, "y": -5.028960704803467, "IDs": "AtomPairFP227", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9859529733657837, "y": -3.870269298553467, "IDs": "AtomPairFP687", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9938101768493652, "y": -4.688142776489258, "IDs": "AtomPairFP910", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2522897720336914, "y": -3.850959300994873, "IDs": "AtomPairFP630", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.772808074951172, "y": -4.446193218231201, "IDs": "AtomPairFP134", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0840686559677124, "y": -4.346466541290283, "IDs": "AtomPairFP850", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6610726714134216, "y": -4.147406101226807, "IDs": "AtomPairFP1563", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.248107671737671, "y": -3.792334794998169, "IDs": "AtomPairFP1636", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.823474407196045, "y": -3.434086322784424, "IDs": "AtomPairFP50", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.956256628036499, "y": -3.183563709259033, "IDs": "AtomPairFP811", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0001987218856812, "y": -4.458072185516357, "IDs": "AtomPairFP845", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.713277339935303, "y": -3.177250623703003, "IDs": "AtomPairFP1098", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5007214546203613, "y": -4.438690662384033, "IDs": "AtomPairFP115", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8402332067489624, "y": -4.262941360473633, "IDs": "AtomPairFP1010", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5840964317321777, "y": -3.414339780807495, "IDs": "AtomPairFP761", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.4602247476577759, "y": -4.241200923919678, "IDs": "AtomPairFP1179", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6069365739822388, "y": -5.367476463317871, "IDs": "AtomPairFP1551", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5271409749984741, "y": -4.65479040145874, "IDs": "AtomPairFP2047", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.258533477783203, "y": -5.374192237854004, "IDs": "AtomPairFP265", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.811911106109619, "y": -2.3948915004730225, "IDs": "AtomPairFP331", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.7340989112854, "y": -2.3614673614501953, "IDs": "AtomPairFP1116", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9319546222686768, "y": -3.2316274642944336, "IDs": "AtomPairFP1260", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5771753787994385, "y": -4.899890422821045, "IDs": "AtomPairFP153", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0054421424865723, "y": -4.781778812408447, "IDs": "AtomPairFP776", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6686920523643494, "y": -4.081502437591553, "IDs": "AtomPairFP1594", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3330293893814087, "y": -3.750457525253296, "IDs": "AtomPairFP519", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8978415131568909, "y": -3.5884082317352295, "IDs": "AtomPairFP1655", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.07568359375, "y": -1.6217525005340576, "IDs": "AtomPairFP1789", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0880722999572754, "y": -4.797321796417236, "IDs": "AtomPairFP2039", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0467488765716553, "y": -2.7849948406219482, "IDs": "AtomPairFP1851", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5599991679191589, "y": -4.943597316741943, "IDs": "AtomPairFP1992", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0937132835388184, "y": -6.409978866577148, "IDs": "AtomPairFP1207", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6317670941352844, "y": -4.1671142578125, "IDs": "AtomPairFP1882", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.957012891769409, "y": -3.176766872406006, "IDs": "AtomPairFP731", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0323100090026855, "y": -5.178871154785156, "IDs": "AtomPairFP1688", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9411587119102478, "y": -1.8363572359085083, "IDs": "AtomPairFP841", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8869820833206177, "y": -6.259863376617432, "IDs": "AtomPairFP1846", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5282007455825806, "y": -5.539772987365723, "IDs": "AtomPairFP380", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.911461353302002, "y": -3.1318359375, "IDs": "AtomPairFP1568", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2972817420959473, "y": -6.331158638000488, "IDs": "AtomPairFP1855", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.870367050170898, "y": -2.729268789291382, "IDs": "AtomPairFP1976", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9072277545928955, "y": -3.0526938438415527, "IDs": "AtomPairFP1452", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1593563556671143, "y": -2.06636118888855, "IDs": "AtomPairFP1484", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.890503406524658, "y": -3.3595118522644043, "IDs": "AtomPairFP103", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.140251159667969, "y": -1.3916670083999634, "IDs": "AtomPairFP1078", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6091771125793457, "y": -6.171813488006592, "IDs": "AtomPairFP340", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.983084201812744, "y": -1.81651771068573, "IDs": "AtomPairFP1238", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.263128757476807, "y": -4.369481086730957, "IDs": "AtomPairFP1393", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3293565511703491, "y": -3.1154866218566895, "IDs": "AtomPairFP1668", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2366185188293457, "y": -4.30487585067749, "IDs": "AtomPairFP119", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4262193441390991, "y": -5.482819557189941, "IDs": "AtomPairFP1455", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.964828372001648, "y": -5.871894836425781, "IDs": "AtomPairFP1051", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2385872602462769, "y": -3.7087717056274414, "IDs": "AtomPairFP1299", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.93396258354187, "y": -3.2400991916656494, "IDs": "AtomPairFP40", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8115043640136719, "y": -2.962402105331421, "IDs": "AtomPairFP1927", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1414036750793457, "y": -1.7625128030776978, "IDs": "AtomPairFP416", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5288645029067993, "y": -4.179129600524902, "IDs": "AtomPairFP1622", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5035078525543213, "y": -6.335128307342529, "IDs": "AtomPairFP491", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.47532549500465393, "y": -4.262145042419434, "IDs": "AtomPairFP1312", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3233940601348877, "y": -1.59572172164917, "IDs": "AtomPairFP414", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4444243907928467, "y": -4.557950496673584, "IDs": "AtomPairFP374", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2525016069412231, "y": -1.6537630558013916, "IDs": "AtomPairFP1977", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.39137303829193115, "y": -5.198337078094482, "IDs": "AtomPairFP1985", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7026371955871582, "y": -5.502182483673096, "IDs": "AtomPairFP456", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5271522402763367, "y": -3.999265432357788, "IDs": "AtomPairFP706", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.112941026687622, "y": -5.863560199737549, "IDs": "AtomPairFP1808", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9444894790649414, "y": -3.169088363647461, "IDs": "AtomPairFP86", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8691108226776123, "y": -7.827242374420166, "IDs": "AtomPairFP1694", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1349122524261475, "y": -7.566763877868652, "IDs": "AtomPairFP1926", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1725218296051025, "y": -3.7384188175201416, "IDs": "AtomPairFP1471", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8671512007713318, "y": -4.089040279388428, "IDs": "AtomPairFP1700", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.311226725578308, "y": -3.962228298187256, "IDs": "AtomPairFP996", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9601536393165588, "y": -4.298102378845215, "IDs": "AtomPairFP584", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.5909775495529175, "y": -4.080235481262207, "IDs": "AtomPairFP1057", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1522382497787476, "y": -2.0971529483795166, "IDs": "AtomPairFP624", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7808489799499512, "y": -3.427294969558716, "IDs": "AtomPairFP840", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.240253210067749, "y": -4.155935287475586, "IDs": "AtomPairFP1013", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3918143510818481, "y": -4.059323787689209, "IDs": "AtomPairFP1832", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.81571888923645, "y": -5.416843414306641, "IDs": "AtomPairFP1399", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.15142574906349182, "y": -5.284175872802734, "IDs": "AtomPairFP2000", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8009980916976929, "y": -5.769126892089844, "IDs": "AtomPairFP1454", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.16033636033535004, "y": -5.151415824890137, "IDs": "AtomPairFP1542", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.727508068084717, "y": -3.899132013320923, "IDs": "AtomPairFP1368", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3652833700180054, "y": -3.3619842529296875, "IDs": "AtomPairFP517", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5448718070983887, "y": -6.3656535148620605, "IDs": "AtomPairFP1695", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3504854440689087, "y": -5.310596466064453, "IDs": "AtomPairFP400", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3884530067443848, "y": -4.670246124267578, "IDs": "AtomPairFP479", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.275038719177246, "y": -4.716624736785889, "IDs": "AtomPairFP94", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6112087965011597, "y": -3.2970831394195557, "IDs": "AtomPairFP684", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.7363762855529785, "y": -4.033841609954834, "IDs": "AtomPairFP324", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9359428882598877, "y": -4.913140773773193, "IDs": "AtomPairFP222", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1401348114013672, "y": -1.579720139503479, "IDs": "AtomPairFP1663", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3815691471099854, "y": -3.93811297416687, "IDs": "AtomPairFP541", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6168752908706665, "y": -7.216286659240723, "IDs": "AtomPairFP1949", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5810940265655518, "y": -4.513828754425049, "IDs": "AtomPairFP254", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.625362873077393, "y": -4.076292037963867, "IDs": "AtomPairFP54", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7548472881317139, "y": -3.5107507705688477, "IDs": "AtomPairFP319", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2071163654327393, "y": -7.744612216949463, "IDs": "AtomPairFP1805", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.875415086746216, "y": -4.013024806976318, "IDs": "AtomPairFP839", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.308969497680664, "y": -7.753658771514893, "IDs": "AtomPairFP1095", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9594378471374512, "y": -4.304251670837402, "IDs": "AtomPairFP1346", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.988998532295227, "y": -3.821714162826538, "IDs": "AtomPairFP1202", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9677760601043701, "y": -5.0120038986206055, "IDs": "AtomPairFP538", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7439720630645752, "y": -3.8762412071228027, "IDs": "AtomPairFP1378", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9949711561203003, "y": -7.552758693695068, "IDs": "AtomPairFP1062", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6327595114707947, "y": -5.890883922576904, "IDs": "AtomPairFP1244", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7570908069610596, "y": -7.6902546882629395, "IDs": "AtomPairFP1314", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1455392837524414, "y": -7.8766770362854, "IDs": "AtomPairFP1609", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.031736373901367, "y": -4.1671552658081055, "IDs": "AtomPairFP1685", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.01712703704834, "y": -1.8096961975097656, "IDs": "AtomPairFP182", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8022104501724243, "y": -4.680461406707764, "IDs": "AtomPairFP527", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.531769037246704, "y": -3.6974852085113525, "IDs": "AtomPairFP1899", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9785356521606445, "y": -4.1312127113342285, "IDs": "AtomPairFP70", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.467054545879364, "y": -4.377616882324219, "IDs": "AtomPairFP1697", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.09046485275030136, "y": -3.6582765579223633, "IDs": "AtomPairFP758", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.525136411190033, "y": -4.316092014312744, "IDs": "AtomPairFP763", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.6511335372924805, "y": -3.2837281227111816, "IDs": "AtomPairFP1017", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3256905972957611, "y": -4.245302200317383, "IDs": "AtomPairFP1304", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5831209421157837, "y": -5.9073920249938965, "IDs": "AtomPairFP1434", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.381307601928711, "y": -7.8195414543151855, "IDs": "AtomPairFP1059", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.46362829208374023, "y": -5.198714256286621, "IDs": "AtomPairFP1602", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1507759094238281, "y": -2.389421224594116, "IDs": "AtomPairFP1240", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3717666268348694, "y": -4.788400650024414, "IDs": "AtomPairFP674", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.4338576793670654, "y": -1.681514859199524, "IDs": "AtomPairFP950", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.0027972147800028324, "y": -4.206258773803711, "IDs": "AtomPairFP555", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0906081199645996, "y": -2.5266172885894775, "IDs": "AtomPairFP1961", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2080451250076294, "y": -3.8937277793884277, "IDs": "AtomPairFP1510", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8311941623687744, "y": -4.636342525482178, "IDs": "AtomPairFP428", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0986485481262207, "y": -2.9056308269500732, "IDs": "AtomPairFP1996", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6142172813415527, "y": -7.319911003112793, "IDs": "AtomPairFP170", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3117156028747559, "y": -5.897927761077881, "IDs": "AtomPairFP1284", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.27900248765945435, "y": -5.207417964935303, "IDs": "AtomPairFP1539", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4303010702133179, "y": -6.960100173950195, "IDs": "AtomPairFP79", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0566565990448, "y": -1.793053388595581, "IDs": "AtomPairFP247", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1687825620174408, "y": -2.8481056690216064, "IDs": "AtomPairFP551", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7940645813941956, "y": -4.453319549560547, "IDs": "AtomPairFP47", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8279525637626648, "y": -4.410590171813965, "IDs": "AtomPairFP1565", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.643795967102051, "y": -2.5565898418426514, "IDs": "AtomPairFP387", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7670066356658936, "y": -3.6995086669921875, "IDs": "AtomPairFP1729", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0677199363708496, "y": -5.806790828704834, "IDs": "AtomPairFP1459", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.651111125946045, "y": -2.604326009750366, "IDs": "AtomPairFP1867", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.046016983687877655, "y": -3.639423370361328, "IDs": "AtomPairFP566", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4821871519088745, "y": -5.896614074707031, "IDs": "AtomPairFP1741", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.11443997174501419, "y": -5.376241683959961, "IDs": "AtomPairFP131", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.722183346748352, "y": -3.386395215988159, "IDs": "AtomPairFP620", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.157063007354736, "y": -3.9024388790130615, "IDs": "AtomPairFP58", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.13015352189540863, "y": -5.769960880279541, "IDs": "AtomPairFP2003", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1266485452651978, "y": -3.93855357170105, "IDs": "AtomPairFP549", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1948413848876953, "y": -4.754892826080322, "IDs": "AtomPairFP1364", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9961695671081543, "y": -3.554741859436035, "IDs": "AtomPairFP1261", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8055632710456848, "y": -4.5498809814453125, "IDs": "AtomPairFP900", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4913836717605591, "y": -5.210251808166504, "IDs": "AtomPairFP822", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5820140838623047, "y": -7.049776077270508, "IDs": "AtomPairFP1245", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1649287939071655, "y": -4.522160053253174, "IDs": "AtomPairFP2009", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.581093788146973, "y": -2.5984044075012207, "IDs": "AtomPairFP34", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0928893089294434, "y": -4.130630016326904, "IDs": "AtomPairFP592", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2298814058303833, "y": -4.2575860023498535, "IDs": "AtomPairFP171", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.719933032989502, "y": -3.6194612979888916, "IDs": "AtomPairFP438", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6926389932632446, "y": -7.833427906036377, "IDs": "AtomPairFP1962", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7730305194854736, "y": -4.98510217666626, "IDs": "AtomPairFP75", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9533920288085938, "y": -3.185887575149536, "IDs": "AtomPairFP936", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.44934985041618347, "y": -3.408933401107788, "IDs": "AtomPairFP1107", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2379395961761475, "y": -6.010038375854492, "IDs": "AtomPairFP1319", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.911128580570221, "y": -2.886345148086548, "IDs": "AtomPairFP1950", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.682226181030273, "y": -3.2487576007843018, "IDs": "AtomPairFP1101", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.790098667144775, "y": -3.5317513942718506, "IDs": "AtomPairFP490", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.668375015258789, "y": -3.5289461612701416, "IDs": "AtomPairFP385", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7233927249908447, "y": -3.0403125286102295, "IDs": "AtomPairFP1001", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0106542110443115, "y": -4.623516082763672, "IDs": "AtomPairFP711", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7614724040031433, "y": -4.805161476135254, "IDs": "AtomPairFP744", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6473495960235596, "y": -5.458901882171631, "IDs": "AtomPairFP232", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1393743753433228, "y": -4.4435834884643555, "IDs": "AtomPairFP427", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2834091186523438, "y": -5.210147857666016, "IDs": "AtomPairFP343", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7599387168884277, "y": -3.8401200771331787, "IDs": "AtomPairFP1614", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.475348472595215, "y": -2.562175989151001, "IDs": "AtomPairFP2004", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4742801189422607, "y": -7.13785982131958, "IDs": "AtomPairFP185", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4846789836883545, "y": -4.565435886383057, "IDs": "AtomPairFP780", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.324923038482666, "y": -1.295314073562622, "IDs": "AtomPairFP310", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1682697534561157, "y": -5.463447570800781, "IDs": "AtomPairFP946", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.1544674187898636, "y": -4.067176342010498, "IDs": "AtomPairFP963", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.129312753677368, "y": -5.195218086242676, "IDs": "AtomPairFP1352", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.568366050720215, "y": -7.793492317199707, "IDs": "AtomPairFP1110", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.960179090499878, "y": -6.124382495880127, "IDs": "AtomPairFP1424", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6219861507415771, "y": -3.631532907485962, "IDs": "AtomPairFP1014", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3403148651123047, "y": -7.861457824707031, "IDs": "AtomPairFP1254", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0298594236373901, "y": -1.460182785987854, "IDs": "AtomPairFP1339", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0826964378356934, "y": -5.914796352386475, "IDs": "AtomPairFP1473", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.821383535861969, "y": -3.6145482063293457, "IDs": "AtomPairFP1355", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.846472978591919, "y": -3.4603705406188965, "IDs": "AtomPairFP792", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7886043190956116, "y": -3.919882297515869, "IDs": "AtomPairFP542", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.904096841812134, "y": -3.223524570465088, "IDs": "AtomPairFP248", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6344550251960754, "y": -3.858349561691284, "IDs": "AtomPairFP757", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3997092247009277, "y": -5.406801700592041, "IDs": "AtomPairFP261", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8707329630851746, "y": -4.530306339263916, "IDs": "AtomPairFP1943", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7624038457870483, "y": -2.400278091430664, "IDs": "AtomPairFP848", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.805422067642212, "y": -3.836040496826172, "IDs": "AtomPairFP1320", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2707953453063965, "y": -6.363974571228027, "IDs": "AtomPairFP98", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.371617317199707, "y": -1.3403018712997437, "IDs": "AtomPairFP325", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.192167043685913, "y": -1.596910834312439, "IDs": "AtomPairFP801", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09335172176361084, "y": -5.412864685058594, "IDs": "AtomPairFP1794", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.793033480644226, "y": -2.383302688598633, "IDs": "AtomPairFP871", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.2555251121521, "y": -1.3232336044311523, "IDs": "AtomPairFP1141", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8416681885719299, "y": -2.008650064468384, "IDs": "AtomPairFP1767", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1259673833847046, "y": -1.5347321033477783, "IDs": "AtomPairFP484", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.4196697473526, "y": -3.9076783657073975, "IDs": "AtomPairFP1831", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.063746690750122, "y": -1.816210150718689, "IDs": "AtomPairFP451", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.323422431945801, "y": -3.2556824684143066, "IDs": "AtomPairFP3", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.615173578262329, "y": -5.263501167297363, "IDs": "AtomPairFP1073", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3165757358074188, "y": -5.109576225280762, "IDs": "AtomPairFP1605", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4270333051681519, "y": -3.6375441551208496, "IDs": "AtomPairFP1570", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.403787612915039, "y": -4.553834915161133, "IDs": "AtomPairFP1822", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7640130519866943, "y": -4.405282974243164, "IDs": "AtomPairFP1557", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8288779258728027, "y": -3.5729880332946777, "IDs": "AtomPairFP1315", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.882314682006836, "y": -3.4438636302948, "IDs": "AtomPairFP1848", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.753183364868164, "y": -5.934861183166504, "IDs": "AtomPairFP1489", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.526456832885742, "y": -4.61625337600708, "IDs": "AtomPairFP797", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6510281562805176, "y": -2.8210666179656982, "IDs": "AtomPairFP655", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.14191120862960815, "y": -5.960336685180664, "IDs": "AtomPairFP1560", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1606073379516602, "y": -1.5634108781814575, "IDs": "AtomPairFP403", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.143227219581604, "y": -4.819244861602783, "IDs": "AtomPairFP2033", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0172359943389893, "y": -1.7974627017974854, "IDs": "AtomPairFP1108", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9294551610946655, "y": -2.481276512145996, "IDs": "AtomPairFP46", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4042421579360962, "y": -5.416900634765625, "IDs": "AtomPairFP539", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.198691725730896, "y": -3.3601131439208984, "IDs": "AtomPairFP895", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.9393792152404785, "y": -4.322872161865234, "IDs": "AtomPairFP753", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.38433200120925903, "y": -2.9374897480010986, "IDs": "AtomPairFP1800", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.712546706199646, "y": -3.648076295852661, "IDs": "AtomPairFP1754", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4576994478702545, "y": -2.7514092922210693, "IDs": "AtomPairFP297", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.108116149902344, "y": -4.299440383911133, "IDs": "AtomPairFP1200", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.666198968887329, "y": -4.803714752197266, "IDs": "AtomPairFP1749", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.913812279701233, "y": -3.4147064685821533, "IDs": "AtomPairFP298", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6483227014541626, "y": -5.7929911613464355, "IDs": "AtomPairFP1285", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0054360628128052, "y": -4.002521514892578, "IDs": "AtomPairFP957", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9158986806869507, "y": -3.6566054821014404, "IDs": "AtomPairFP1901", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.34216952323913574, "y": -4.353145122528076, "IDs": "AtomPairFP1951", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.148528099060059, "y": -3.0987801551818848, "IDs": "AtomPairFP264", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1988227367401123, "y": -6.070413589477539, "IDs": "AtomPairFP176", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.430438995361328, "y": -4.496691703796387, "IDs": "AtomPairFP563", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.585237503051758, "y": -4.130542278289795, "IDs": "AtomPairFP462", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.126215934753418, "y": -5.801482677459717, "IDs": "AtomPairFP411", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4580533802509308, "y": -5.036638259887695, "IDs": "AtomPairFP1928", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7464081048965454, "y": -4.436844348907471, "IDs": "AtomPairFP927", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.33544659614563, "y": -7.842778205871582, "IDs": "AtomPairFP1895", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.5986008644104, "y": -4.265589237213135, "IDs": "AtomPairFP921", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.023910164833068848, "y": -5.419723033905029, "IDs": "AtomPairFP1857", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9581202268600464, "y": -3.869206428527832, "IDs": "AtomPairFP1804", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1296011209487915, "y": -1.479843020439148, "IDs": "AtomPairFP1470", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.006250858306885, "y": -4.111593246459961, "IDs": "AtomPairFP1137", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5120646953582764, "y": -6.191122531890869, "IDs": "AtomPairFP1499", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.09311490505933762, "y": -4.372980117797852, "IDs": "AtomPairFP766", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6620638370513916, "y": -3.430621862411499, "IDs": "AtomPairFP809", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6080349683761597, "y": -4.200782775878906, "IDs": "AtomPairFP979", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5977675318717957, "y": -4.226019859313965, "IDs": "AtomPairFP57", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0590242147445679, "y": -4.435271739959717, "IDs": "AtomPairFP1574", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6367872357368469, "y": -5.71137809753418, "IDs": "AtomPairFP1960", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8538072109222412, "y": -3.445488452911377, "IDs": "AtomPairFP77", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2676277160644531, "y": -5.999883651733398, "IDs": "AtomPairFP1089", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.663753032684326, "y": -2.475023031234741, "IDs": "AtomPairFP1944", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6372783184051514, "y": -5.455320358276367, "IDs": "AtomPairFP313", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.771437168121338, "y": -3.273728370666504, "IDs": "AtomPairFP1243", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.15126633644104, "y": -5.895907402038574, "IDs": "AtomPairFP1058", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8445619344711304, "y": -4.254511833190918, "IDs": "AtomPairFP830", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9168128967285156, "y": -3.176123857498169, "IDs": "AtomPairFP1199", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.31035134196281433, "y": -4.5066423416137695, "IDs": "AtomPairFP1716", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9590787291526794, "y": -4.585542678833008, "IDs": "AtomPairFP429", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.566471815109253, "y": -2.376206874847412, "IDs": "AtomPairFP260", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5496596097946167, "y": -6.259219169616699, "IDs": "AtomPairFP1401", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2328112125396729, "y": -3.301783561706543, "IDs": "AtomPairFP76", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8268609046936035, "y": -3.456864595413208, "IDs": "AtomPairFP217", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.22542983293533325, "y": -2.8102877140045166, "IDs": "AtomPairFP741", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6137107610702515, "y": -5.89853572845459, "IDs": "AtomPairFP1757", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7365416288375854, "y": -6.090251922607422, "IDs": "AtomPairFP1483", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9514559507369995, "y": -4.658809661865234, "IDs": "AtomPairFP397", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9873309135437012, "y": -2.6298062801361084, "IDs": "AtomPairFP1317", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.23078139126300812, "y": -5.055056095123291, "IDs": "AtomPairFP1706", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.535305500030518, "y": -2.480609178543091, "IDs": "AtomPairFP696", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4518094062805176, "y": -5.2815961837768555, "IDs": "AtomPairFP707", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9380942583084106, "y": -4.1864213943481445, "IDs": "AtomPairFP990", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6107068061828613, "y": -5.384110927581787, "IDs": "AtomPairFP1083", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.324554204940796, "y": -7.599459648132324, "IDs": "AtomPairFP1373", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.82328200340271, "y": -2.378164529800415, "IDs": "AtomPairFP209", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6939156651496887, "y": -4.308160781860352, "IDs": "AtomPairFP982", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.6270473599433899, "y": -4.838967323303223, "IDs": "AtomPairFP440", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.21397995948791504, "y": -4.651701927185059, "IDs": "AtomPairFP926", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.010925029404461384, "y": -5.809446334838867, "IDs": "AtomPairFP1616", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.711371898651123, "y": -2.5073752403259277, "IDs": "AtomPairFP1517", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.824524402618408, "y": -3.587219476699829, "IDs": "AtomPairFP1118", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3074153959751129, "y": -5.276304721832275, "IDs": "AtomPairFP1922", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4062132239341736, "y": -5.2499799728393555, "IDs": "AtomPairFP1603", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.144115924835205, "y": -1.5223872661590576, "IDs": "AtomPairFP55", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5476367473602295, "y": -4.840932846069336, "IDs": "AtomPairFP1458", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4516356289386749, "y": -3.953007698059082, "IDs": "AtomPairFP1326", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.0184855461120605, "y": -4.052384376525879, "IDs": "AtomPairFP824", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3968710899353027, "y": -4.663590431213379, "IDs": "AtomPairFP1427", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.928758144378662, "y": -3.8272595405578613, "IDs": "AtomPairFP878", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9405993819236755, "y": -4.2959208488464355, "IDs": "AtomPairFP1637", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.0006707463762722909, "y": -5.997415065765381, "IDs": "AtomPairFP2005", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8614096641540527, "y": -5.484300136566162, "IDs": "AtomPairFP708", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.659999132156372, "y": -7.455114364624023, "IDs": "AtomPairFP1321", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.406898021697998, "y": -7.740297317504883, "IDs": "AtomPairFP1679", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.7484517097473145, "y": -3.2347285747528076, "IDs": "AtomPairFP635", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.5467939376831055, "y": -4.160623073577881, "IDs": "AtomPairFP1412", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1261159181594849, "y": -4.4483537673950195, "IDs": "AtomPairFP1221", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.1089413166046143, "y": -3.2164926528930664, "IDs": "AtomPairFP395", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8295366764068604, "y": -3.484398365020752, "IDs": "AtomPairFP1022", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4034011960029602, "y": -2.723026752471924, "IDs": "AtomPairFP44", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5624091625213623, "y": -4.858249187469482, "IDs": "AtomPairFP1105", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7045772075653076, "y": -2.499763250350952, "IDs": "AtomPairFP1343", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6629159450531006, "y": -3.393977642059326, "IDs": "AtomPairFP349", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.995143413543701, "y": -1.8168786764144897, "IDs": "AtomPairFP1175", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5477739572525024, "y": -4.936840534210205, "IDs": "AtomPairFP1604", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.1739407777786255, "y": -3.931396245956421, "IDs": "AtomPairFP988", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8338770866394043, "y": -4.743292331695557, "IDs": "AtomPairFP934", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2947680652141571, "y": -2.7668237686157227, "IDs": "AtomPairFP800", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.123318910598755, "y": -4.7232279777526855, "IDs": "AtomPairFP1972", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.36678212881088257, "y": -3.894348621368408, "IDs": "AtomPairFP643", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.009334921836853, "y": -5.201423168182373, "IDs": "AtomPairFP1727", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.03839111328125, "y": -4.432015895843506, "IDs": "AtomPairFP186", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1599690914154053, "y": -6.282973766326904, "IDs": "AtomPairFP537", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2274816036224365, "y": -5.614821910858154, "IDs": "AtomPairFP1417", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.522608757019043, "y": -7.752608299255371, "IDs": "AtomPairFP1742", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1876286268234253, "y": -1.8263825178146362, "IDs": "AtomPairFP329", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.695462226867676, "y": -4.1700358390808105, "IDs": "AtomPairFP882", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.616939544677734, "y": -2.4900667667388916, "IDs": "AtomPairFP431", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.277316927909851, "y": -1.6136008501052856, "IDs": "AtomPairFP423", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.806969165802002, "y": -2.4308905601501465, "IDs": "AtomPairFP784", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7502528429031372, "y": -3.609166383743286, "IDs": "AtomPairFP1198", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.683223247528076, "y": -4.322643280029297, "IDs": "AtomPairFP1842", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.29053372144699097, "y": -4.094613552093506, "IDs": "AtomPairFP269", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.954254686832428, "y": -1.887096881866455, "IDs": "AtomPairFP1227", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.477236270904541, "y": -7.291447162628174, "IDs": "AtomPairFP1980", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.644598960876465, "y": -3.2501060962677, "IDs": "AtomPairFP1187", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0683555603027344, "y": -6.289076805114746, "IDs": "AtomPairFP1453", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.44403076171875, "y": -3.83915376663208, "IDs": "AtomPairFP450", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9838337898254395, "y": -6.255702972412109, "IDs": "AtomPairFP977", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.1677369326353073, "y": -5.481201648712158, "IDs": "AtomPairFP1987", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.328731656074524, "y": -5.920510768890381, "IDs": "AtomPairFP1091", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3373873829841614, "y": -2.7138309478759766, "IDs": "AtomPairFP992", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.17551547288894653, "y": -5.262261390686035, "IDs": "AtomPairFP140", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.696493625640869, "y": -4.918115139007568, "IDs": "AtomPairFP1301", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.632906675338745, "y": -5.864459037780762, "IDs": "AtomPairFP1533", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.6485393047332764, "y": -2.493804454803467, "IDs": "AtomPairFP1303", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1367568969726562, "y": -3.8916988372802734, "IDs": "AtomPairFP1503", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6147124767303467, "y": -4.852721691131592, "IDs": "AtomPairFP1018", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6143798828125, "y": -7.63007116317749, "IDs": "AtomPairFP1408", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.2536519169807434, "y": -4.022510051727295, "IDs": "AtomPairFP1923", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7792985439300537, "y": -3.5666143894195557, "IDs": "AtomPairFP301", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.31068259477615356, "y": -3.8646180629730225, "IDs": "AtomPairFP611", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4479032754898071, "y": -6.320678234100342, "IDs": "AtomPairFP1464", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7817840576171875, "y": -5.897127151489258, "IDs": "AtomPairFP1324", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.9766358137130737, "y": -5.696486949920654, "IDs": "AtomPairFP1885", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.448997735977173, "y": -1.6846909523010254, "IDs": "AtomPairFP51", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2201566696166992, "y": -3.5908522605895996, "IDs": "AtomPairFP1955", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7976142168045044, "y": -3.700807571411133, "IDs": "AtomPairFP1825", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.09095068275928497, "y": -4.935014724731445, "IDs": "AtomPairFP553", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3187234103679657, "y": -4.161802768707275, "IDs": "AtomPairFP662", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6826598048210144, "y": -3.7326488494873047, "IDs": "AtomPairFP1291", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1520410776138306, "y": -4.656284332275391, "IDs": "AtomPairFP1875", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.02857568860054016, "y": -4.544168472290039, "IDs": "AtomPairFP1653", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0794267654418945, "y": -5.151919364929199, "IDs": "AtomPairFP228", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.154974341392517, "y": -4.350174903869629, "IDs": "AtomPairFP275", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8298959732055664, "y": -3.546787977218628, "IDs": "AtomPairFP983", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.4689387083053589, "y": -4.473264694213867, "IDs": "AtomPairFP533", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.147162914276123, "y": -3.5683181285858154, "IDs": "AtomPairFP1111", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7643437385559082, "y": -4.727447032928467, "IDs": "AtomPairFP326", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.3932376503944397, "y": -5.216616630554199, "IDs": "AtomPairFP1537", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.3686143159866333, "y": -4.001547813415527, "IDs": "AtomPairFP2031", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2641206979751587, "y": -5.163002014160156, "IDs": "AtomPairFP851", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.338813781738281, "y": -3.5435900688171387, "IDs": "AtomPairFP1029", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6542937755584717, "y": -3.651332378387451, "IDs": "AtomPairFP1323", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1504000425338745, "y": -6.332685470581055, "IDs": "AtomPairFP1143", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9579327702522278, "y": -4.546165943145752, "IDs": "AtomPairFP771", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.665102005004883, "y": -2.4262571334838867, "IDs": "AtomPairFP1485", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7064309120178223, "y": -3.374431848526001, "IDs": "AtomPairFP589", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2277408838272095, "y": -3.709643602371216, "IDs": "AtomPairFP1430", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.961552858352661, "y": -1.8062107563018799, "IDs": "AtomPairFP1028", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.139751598238945, "y": -5.939962387084961, "IDs": "AtomPairFP2011", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6521059274673462, "y": -4.55405855178833, "IDs": "AtomPairFP1886", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2632496356964111, "y": -3.8596320152282715, "IDs": "AtomPairFP1662", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9888484477996826, "y": -1.8449041843414307, "IDs": "AtomPairFP609", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.700979232788086, "y": -4.035246849060059, "IDs": "AtomPairFP1235", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9899964332580566, "y": -1.8144161701202393, "IDs": "AtomPairFP1436", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0721642971038818, "y": -5.945438861846924, "IDs": "AtomPairFP1128", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.413416862487793, "y": -4.05477237701416, "IDs": "AtomPairFP587", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.921169281005859, "y": -3.3876283168792725, "IDs": "AtomPairFP113", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5239691734313965, "y": -5.6343913078308105, "IDs": "AtomPairFP1726", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7802271246910095, "y": -3.7035675048828125, "IDs": "AtomPairFP875", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2061512470245361, "y": -3.8110945224761963, "IDs": "AtomPairFP1250", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.924140214920044, "y": -3.205000638961792, "IDs": "AtomPairFP666", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8670764565467834, "y": -3.0116803646087646, "IDs": "AtomPairFP356", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5001822113990784, "y": -3.893012523651123, "IDs": "AtomPairFP1318", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7632814645767212, "y": -4.90747594833374, "IDs": "AtomPairFP28", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0667409896850586, "y": -3.7079594135284424, "IDs": "AtomPairFP415", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3741390705108643, "y": -4.7112627029418945, "IDs": "AtomPairFP159", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.34149235486984253, "y": -4.8438029289245605, "IDs": "AtomPairFP1752", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.602390766143799, "y": -4.617887496948242, "IDs": "AtomPairFP36", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6500881910324097, "y": -5.012817859649658, "IDs": "AtomPairFP66", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.83511209487915, "y": -3.876967668533325, "IDs": "AtomPairFP266", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4695556163787842, "y": -5.484953880310059, "IDs": "AtomPairFP1390", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7062606811523438, "y": -4.234808921813965, "IDs": "AtomPairFP1009", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.264896392822266, "y": -1.3492655754089355, "IDs": "AtomPairFP1931", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7883455753326416, "y": -2.4035115242004395, "IDs": "AtomPairFP932", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.13882353901863098, "y": -5.374416351318359, "IDs": "AtomPairFP1619", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3573468923568726, "y": -4.415566444396973, "IDs": "AtomPairFP500", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9648033976554871, "y": -4.475815773010254, "IDs": "AtomPairFP644", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.7502371668815613, "y": -3.92978835105896, "IDs": "AtomPairFP39", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.34697267413139343, "y": -4.350681781768799, "IDs": "AtomPairFP618", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7432376742362976, "y": -6.261337757110596, "IDs": "AtomPairFP1205", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8539581298828125, "y": -4.722214221954346, "IDs": "AtomPairFP129", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.810194969177246, "y": -2.3990039825439453, "IDs": "AtomPairFP913", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0307693481445312, "y": -5.333724021911621, "IDs": "AtomPairFP122", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1782411336898804, "y": -6.326907157897949, "IDs": "AtomPairFP1743", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9360241293907166, "y": -3.8804235458374023, "IDs": "AtomPairFP1381", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.770046591758728, "y": -4.8822431564331055, "IDs": "AtomPairFP909", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.901238203048706, "y": -5.131203651428223, "IDs": "AtomPairFP149", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.928754448890686, "y": -5.112819194793701, "IDs": "AtomPairFP347", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5313711166381836, "y": -7.735254764556885, "IDs": "AtomPairFP362", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.5730206370353699, "y": -4.260641574859619, "IDs": "AtomPairFP577", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.46000599861145, "y": -4.487359046936035, "IDs": "AtomPairFP1815", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6707704067230225, "y": -5.288200378417969, "IDs": "AtomPairFP1425", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.389462947845459, "y": -1.6880120038986206, "IDs": "AtomPairFP6", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.33300456404685974, "y": -2.738966703414917, "IDs": "AtomPairFP613", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2008870840072632, "y": -5.438249588012695, "IDs": "AtomPairFP393", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.2380274534225464, "y": -4.164778709411621, "IDs": "AtomPairFP805", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4977197647094727, "y": -5.213543891906738, "IDs": "AtomPairFP798", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3509165048599243, "y": -7.0104827880859375, "IDs": "AtomPairFP2017", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.120753765106201, "y": -4.7533674240112305, "IDs": "AtomPairFP806", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.6024985313415527, "y": -2.4241158962249756, "IDs": "AtomPairFP99", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1807931661605835, "y": -1.6207228899002075, "IDs": "AtomPairFP1665", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.785898685455322, "y": -4.039125442504883, "IDs": "AtomPairFP690", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0604000091552734, "y": -5.670263290405273, "IDs": "AtomPairFP594", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.387307167053223, "y": -1.2558767795562744, "IDs": "AtomPairFP1159", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.493785858154297, "y": -5.358166217803955, "IDs": "AtomPairFP1016", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.40146324038505554, "y": -5.489436626434326, "IDs": "AtomPairFP1308", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.5243495106697083, "y": -4.8781418800354, "IDs": "AtomPairFP1761", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.068840503692627, "y": -6.198932647705078, "IDs": "AtomPairFP1497", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.47187358140945435, "y": -2.715575933456421, "IDs": "AtomPairFP109", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.289461612701416, "y": -3.3422915935516357, "IDs": "AtomPairFP548", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2835897207260132, "y": -4.036472320556641, "IDs": "AtomPairFP540", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.095102310180664, "y": -3.7905116081237793, "IDs": "AtomPairFP1645", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.415454626083374, "y": -4.2565484046936035, "IDs": "AtomPairFP439", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.0381026528775692, "y": -4.335362434387207, "IDs": "AtomPairFP862", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4578263759613037, "y": -4.886473178863525, "IDs": "AtomPairFP1040", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4799405634403229, "y": -4.463569641113281, "IDs": "AtomPairFP1650", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.1299140453338623, "y": -4.690471172332764, "IDs": "AtomPairFP267", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0913245677948, "y": -4.639225006103516, "IDs": "AtomPairFP116", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0378079414367676, "y": -3.317748785018921, "IDs": "AtomPairFP511", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1966794729232788, "y": -1.6214028596878052, "IDs": "AtomPairFP984", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.5326433181762695, "y": -5.519482612609863, "IDs": "AtomPairFP49", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.35047632455825806, "y": -2.752204418182373, "IDs": "AtomPairFP578", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.755645990371704, "y": -2.4204885959625244, "IDs": "AtomPairFP525", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.315560817718506, "y": -1.2827749252319336, "IDs": "AtomPairFP1232", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3953622579574585, "y": -6.981780529022217, "IDs": "AtomPairFP876", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3262460231781006, "y": -5.272275447845459, "IDs": "AtomPairFP940", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.4256701469421387, "y": -1.7351758480072021, "IDs": "AtomPairFP1672", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9415249824523926, "y": -1.8630021810531616, "IDs": "AtomPairFP419", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.583282470703125, "y": -2.465137243270874, "IDs": "AtomPairFP1225", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1138389110565186, "y": -5.916604995727539, "IDs": "AtomPairFP1481", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.65579080581665, "y": -3.247077465057373, "IDs": "AtomPairFP1811", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4039546847343445, "y": -3.919973134994507, "IDs": "AtomPairFP693", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.0356383323669434, "y": -7.839636325836182, "IDs": "AtomPairFP1639", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.388744831085205, "y": -4.865909099578857, "IDs": "AtomPairFP1491", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.230067491531372, "y": -3.7119104862213135, "IDs": "AtomPairFP1572", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.787745714187622, "y": -2.509772539138794, "IDs": "AtomPairFP917", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9981674551963806, "y": -4.201805114746094, "IDs": "AtomPairFP694", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.703899085521698, "y": -4.16059684753418, "IDs": "AtomPairFP1442", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.4644806385040283, "y": -7.770815372467041, "IDs": "AtomPairFP1071", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2609925270080566, "y": -5.1922101974487305, "IDs": "AtomPairFP1902", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.935952365398407, "y": -4.643155097961426, "IDs": "AtomPairFP193", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5338243246078491, "y": -3.448744058609009, "IDs": "AtomPairFP1763", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.309227705001831, "y": -3.9702723026275635, "IDs": "AtomPairFP263", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3700237274169922, "y": -7.132970809936523, "IDs": "AtomPairFP985", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.612451434135437, "y": -3.7599172592163086, "IDs": "AtomPairFP975", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4086135625839233, "y": -5.490076065063477, "IDs": "AtomPairFP1772", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.9783987998962402, "y": -3.2329437732696533, "IDs": "AtomPairFP133", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.8948254585266113, "y": -3.159576654434204, "IDs": "AtomPairFP253", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.7840466499328613, "y": -2.5076990127563477, "IDs": "AtomPairFP1366", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.702704906463623, "y": -5.56822395324707, "IDs": "AtomPairFP536", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.061389803886413574, "y": -5.995086669921875, "IDs": "AtomPairFP1979", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.2445294857025146, "y": -2.5705695152282715, "IDs": "AtomPairFP678", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.4591906070709229, "y": -4.51221227645874, "IDs": "AtomPairFP1823", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8703882694244385, "y": -4.730618953704834, "IDs": "AtomPairFP976", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.4439462423324585, "y": -3.768502950668335, "IDs": "AtomPairFP689", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.8111042976379395, "y": -3.521061658859253, "IDs": "AtomPairFP1403", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.622474670410156, "y": -4.182441711425781, "IDs": "AtomPairFP1127", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.236074447631836, "y": -7.804698944091797, "IDs": "AtomPairFP1868", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4881071150302887, "y": -4.434229373931885, "IDs": "AtomPairFP1715", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.456683397293091, "y": -7.838693141937256, "IDs": "AtomPairFP1892", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.027594804763794, "y": -5.266044616699219, "IDs": "AtomPairFP110", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.982513427734375, "y": -3.2604992389678955, "IDs": "AtomPairFP632", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.502782106399536, "y": -4.673419952392578, "IDs": "AtomPairFP704", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6480669975280762, "y": -5.89790678024292, "IDs": "AtomPairFP1350", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.662354469299316, "y": -4.0620503425598145, "IDs": "AtomPairFP1479", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.295102834701538, "y": -3.417562484741211, "IDs": "AtomPairFP1820", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.612575054168701, "y": -4.7528815269470215, "IDs": "AtomPairFP137", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3436034917831421, "y": -2.847493886947632, "IDs": "AtomPairFP229", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.749866247177124, "y": -4.974069595336914, "IDs": "AtomPairFP545", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.259740948677063, "y": -3.044970750808716, "IDs": "AtomPairFP1549", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.90305757522583, "y": -5.524910926818848, "IDs": "AtomPairFP258", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2929718494415283, "y": -7.640664100646973, "IDs": "AtomPairFP1919", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.404668927192688, "y": -6.945312976837158, "IDs": "AtomPairFP1119", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.08761792629957199, "y": -5.453732490539551, "IDs": "AtomPairFP194", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.3568403720855713, "y": -5.143024921417236, "IDs": "AtomPairFP999", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6013224124908447, "y": -6.771209716796875, "IDs": "AtomPairFP59", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.811917781829834, "y": -7.796533584594727, "IDs": "AtomPairFP2021", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.0342094898223877, "y": -2.8557076454162598, "IDs": "AtomPairFP2013", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1888023614883423, "y": -4.5131449699401855, "IDs": "AtomPairFP1883", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.6315567493438721, "y": -3.869061231613159, "IDs": "AtomPairFP280", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5001683235168457, "y": -5.455761909484863, "IDs": "AtomPairFP330", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6039910316467285, "y": -5.342624664306641, "IDs": "AtomPairFP699", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.5394744873046875, "y": -4.831561088562012, "IDs": "AtomPairFP88", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.3877034187316895, "y": -1.256331443786621, "IDs": "AtomPairFP1413", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.0760095939040184, "y": -5.893456935882568, "IDs": "AtomPairFP1682", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.7778867483139038, "y": -4.930462837219238, "IDs": "AtomPairFP138", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.41279858350753784, "y": -3.7912955284118652, "IDs": "AtomPairFP576", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.760786533355713, "y": -3.278874635696411, "IDs": "AtomPairFP568", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.06739030033349991, "y": -5.426224708557129, "IDs": "AtomPairFP1889", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.0936182737350464, "y": -3.8754940032958984, "IDs": "AtomPairFP1428", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.984809160232544, "y": -1.8084412813186646, "IDs": "AtomPairFP1211", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5183568000793457, "y": -5.0555338859558105, "IDs": "AtomPairFP1974", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.2926254272460938, "y": -6.2743425369262695, "IDs": "AtomPairFP405", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.266765117645264, "y": -1.3555642366409302, "IDs": "AtomPairFP1252", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.05320534482598305, "y": -5.476117134094238, "IDs": "AtomPairFP139", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1676000356674194, "y": -1.5645769834518433, "IDs": "AtomPairFP969", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -1.2181448936462402, "y": -3.653289318084717, "IDs": "AtomPairFP1297", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.498742580413818, "y": -2.489962577819824, "IDs": "AtomPairFP447", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.235380172729492, "y": -2.6095242500305176, "IDs": "AtomPairFP33", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 5.586833953857422, "y": -2.547455072402954, "IDs": "AtomPairFP497", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.796067476272583, "y": -2.373568296432495, "IDs": "AtomPairFP547", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.7337415218353271, "y": -5.718907833099365, "IDs": "AtomPairFP1514", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.7663304805755615, "y": -3.48169207572937, "IDs": "AtomPairFP1581", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.8959827423095703, "y": -4.0124897956848145, "IDs": "AtomPairFP1329", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9937079548835754, "y": -1.5945079326629639, "IDs": "AtomPairFP867", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.944077730178833, "y": -1.7737579345703125, "IDs": "AtomPairFP1158", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.9191930294036865, "y": -4.047242641448975, "IDs": "AtomPairFP1011", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.147106647491455, "y": -6.404811859130859, "IDs": "AtomPairFP1847", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.9854488968849182, "y": -4.882228851318359, "IDs": "AtomPairFP505", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8914928436279297, "y": -3.316663980484009, "IDs": "AtomPairFP245", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8473104238510132, "y": -4.2675461769104, "IDs": "AtomPairFP998", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.19225044548511505, "y": -2.9229507446289062, "IDs": "AtomPairFP751", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.1003520488739014, "y": -6.365440845489502, "IDs": "AtomPairFP1878", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.065544366836548, "y": -3.536858081817627, "IDs": "AtomPairFP1719", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.23375403881073, "y": -4.082837104797363, "IDs": "AtomPairFP880", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.22555558383464813, "y": -5.589808940887451, "IDs": "AtomPairFP1680", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4135889410972595, "y": -4.190240383148193, "IDs": "AtomPairFP675", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.8785848021507263, "y": -6.336758136749268, "IDs": "AtomPairFP642", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 3.0549988746643066, "y": -3.4493772983551025, "IDs": "AtomPairFP468", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.607619047164917, "y": -4.058374404907227, "IDs": "AtomPairFP1722", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.8008499145507812, "y": -7.5009965896606445, "IDs": "AtomPairFP709", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.3090331256389618, "y": -5.951329708099365, "IDs": "AtomPairFP1908", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": -0.9660866260528564, "y": -3.7442333698272705, "IDs": "AtomPairFP2018", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 4.310174465179443, "y": -1.2708356380462646, "IDs": "AtomPairFP1152", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.16883763670921326, "y": -3.8476102352142334, "IDs": "AtomPairFP546", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.865653932094574, "y": -3.4845526218414307, "IDs": "AtomPairFP1337", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.616502523422241, "y": -4.455172061920166, "IDs": "AtomPairFP241", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.6246390342712402, "y": -4.133936405181885, "IDs": "AtomPairFP128", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 0.4869801998138428, "y": -4.1982598304748535, "IDs": "AtomPairFP725", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.602052927017212, "y": -7.2070207595825195, "IDs": "AtomPairFP107", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 1.3408732414245605, "y": -5.931491374969482, "IDs": "AtomPairFP1435", "Subtypes": "AtomPairFP", "colors": "#ff8800"}, {"x": 2.5149199962615967, "y": -7.722661018371582, "IDs": "AtomPairFP1356", "Subtypes": "AtomPairFP", "colors": "#ff8800"}], "type": "scatter", "color": "#ff8800", "name": "AtomPairFP"}];
var dataLen = data.length;
for (var ix = 0; ix < dataLen; ix++) {
chart.addSeries(data[ix]);
}
});
</script>
</body>
</html> | 11,267.55102 | 549,684 | 0.654087 |
11d60d718a7bc5e28e1d647e7920991fbf46b49b | 14,600 | html | HTML | about.html | Natemafe/Prochem.github.io | ce5486c69e27bbd2763f676d669c5057137e69be | [
"MIT"
] | null | null | null | about.html | Natemafe/Prochem.github.io | ce5486c69e27bbd2763f676d669c5057137e69be | [
"MIT"
] | null | null | null | about.html | Natemafe/Prochem.github.io | ce5486c69e27bbd2763f676d669c5057137e69be | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Prochem is the proud manufacturer and distributor of consumer and personal care products.">
<meta name="keywords" content="Prochem, Prochem Zimbabwe, Elegance, Maxi Smooth, Seduce, Promise, Body Cream, Hand and Body Lotion">
<meta name="author" content="Prochem (Private) Limited">
<title>About Us | Manufacturer and Distributor of Personal Care Products.</title>
<link rel="stylesheet" href="assets/css/css/all.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<section class="about__us">
<div class="about"></div>
<nav class="navbar">
<a href="index.html" class="company-brand"><img src="assets/images/prochemlogo.png" alt="Prochem (Private) Limited logo" class="logo"><span>Prochem (Private) Limited</span></a>
<ul class="nav__list">
<li class="nav__list-item"><a href="index.html" class="nav__link">Home</a></li>
<li class="nav__list-item dropdown"><a href="#" class="nav__link dropdown__link">Products</a>
<ul class="dropdown__menu">
<li class="dropdown__item"><a href="bodycream.html" class="nav__link">Elegance Body Creams</a></li>
<li class="dropdown__item"><a href="bodylotion.html" class="nav__link">Elegance Body Lotions</a></li>
<li class="dropdown__item"><a href="petroleumjellys.html" class="nav__link">Elegance Petroleum Jellys</a></li>
<li class="dropdown__item"><a href="maxismooth.html" class="nav__link">Maxi Smooth</a></li>
<li class="dropdown__item"><a href="promise.html" class="nav__link">Promise</a></li>
<li class="dropdown__item"><a href="seduce.html" class="nav__link">Seduce</a></li>
</ul>
</li>
<li class="nav__list-item"><a href="about.html" class="nav__link">Our Story</a></li>
<li class="nav__list-item"><a href="" class="nav__link">Blog</a></li>
<li class="nav__list-item"><a href="contact.html" class="nav__link">Contact Us</a></li>
<div class="social__media">
<a href="https://www.facebook.com/prochemzim" class="sm__link"><i class="fab fa-facebook-f sm__facebook"></i></a>
<a href="#" class="sm__link"><i class="fab fa-twitter sm__twitter"></i></a>
<a href="https://www.instagram.com/prochemzimbabwe/" class="sm__link"><i class="fab fa-instagram sm__instagram"></i></a>
</div>
</ul>
<div>
<i class="fas fa-shopping-cart fa-lg shopping-cart"><!-- --><span class="cart__item">0</span></i>
</div>
<div class="hamburger">
<div class="hamburger-btn"></div>
</div>
</nav>
<div class="hero__content">
<div class="hero__box">
<h1 class="hero__tittle">Creating personal care solutions that<br><span> truly matter to people.</span></h1>
<p class="hero__parra"><strong>Prochem</strong> (Private) Limited is a wholly- owned Zimbabwean company which was founded in 1986 and is part of the <strong>Varichem Group</strong>.</p>
<p class="hero__parra">We have transformed ourself into a major supplier of consumer and personal care products, that include well-known brands like Elegance body products, Maxi Smooth camphor creams, Seduce fragrances, and Promise cologne. Prochem currently employs more than 140 people.</p>
<a class="btn__main" href="#">View Our Products <i class="fas fa-angle-right fa-lg"></i></a>
</div>
<div class="hero__about-img">
<img src="assets/images/seduce---jazzy.png" alt="Seduce Jazzy" class="main__img">
<img src="assets/images/seduce---aqua-bleu.png" alt="Seduce Aqua Bleu" class="main__img">
<img src="assets/images/seduce---destiny.png" alt="Seduce Destiny" class="main__img">
</div>
</div>
<ul class="social__contact">
<li><a href="https://www.facebook.com/prochemzim" class="social__link"><i class="fab fa-facebook-f social__facebook"></i></a></li>
<li><a href="#" class="social__link"><i class="fab fa-twitter social__twitter"></i></a></li>
<li><a href="https://www.instagram.com/prochemzimbabwe/" class="social__link"><i class="fab fa-instagram social__instagram"></i></a></li>
</ul>
</section>
<!--Social Responsibility-->
<section class="social_reponsibiity">
<div class="social__img social__container">
<div class="social__left">
<div class="social__about-img">
<img src="assets/images/elegance-pj-perfumed-500.png" alt="Elegance PJ Perfumed 500ml" class="about__img">
</div>
</div>
<div class="social__right">
<h2>Social Responsibility</h2>
<p>We believe in the concept of social investments for tomorrow’s gains. It is through this belief that has seen us donating in cash and kind especially to the less privileged in society.</p>
<p>Some personal care product hampers have been donated to Chinyaradzo and Mathew Rusike Children’s homes on different occasions. Other social donations include but not limited to:</p>
<div class="social__list">
<ol>
<li><i>Payment of school fees to 20 less privileged students of Zengeza 2 Main Primary School grades 5 to 7.</i></li>
<li><i>Fundraising through Golf Tournament annually for Zimbiru Primary School in Domboshawa, borehole drilling and electrifying the school.</i></li>
<li><i>Provided refuse bins to Chitungwiza Town Council.</i></li>
</ol>
</div>
</div>
</div>
</section>
<!--Quality Management-->
<div class="quality__management">
<h2 class="quality__title">Quality Management System</h2>
<section class="quality__section">
<div class="quality__content">
<p>Prochem has a strong Quality Management System which guaranties our product quality and services. The company is <strong>9001: 2008 Quality Management System</strong> certified.</p><br>
<p>Being customer focused, we are driven not only to satisfy our customers but to delight them.
We are thus poised and driven to cater for current and future needs of our customers.</p><br>
<p>The desire to do things right first time and always, accompanied by the need to exceed customer satisfaction has prompted Prochem (Pvt) Ltd take this noble root of getting certified to <strong>ISO 9001: 2008 quality management system</strong>.</p><br>
<p>Prochem personnel are responsible for assuring that the company’s quality standards are met. Extensive use of total quality methods, by Prochem and many of its suppliers contribute greatly to meeting these high standards.</p>
</div>
<div class="quality__content">
<p> Raw materials, manufacturing and packaging operations are continually checked to ensure that products meet the specified standards.Regular visits to suppliers’ plants are done to ensure that proper procedures are being followed and that the raw materials supplied meet Prochem specifications.</p><br>
<p>Before raw materials are unloaded into warehouses, they are carefully checked, making sure they are within specifications. Samples are collected at various stages of the production process and are tested for compliance to set standards. Prochem has standard operating procedures that all its employees adhere to.</p><br>
<p>Its team of internal auditors regularly carry out audits to establish the extent of organisational compliance to the standard requirements and determine areas of improvement. In addition to internal auditors, Standards Association of Zimbabwe auditors carry out some regular surveillance audits.</p>
</div>
<div class="quality__content">
<p>The implementation of <strong>ISO 9001:2008</strong> has increasingly given us confidence on how we do things. Our continuous engagement with suppliers has seen a marked reduction on non-conforming raw materials.</p><br>
<p>There is improved efficiency in our manufacturing processes. Reworks have reduced as inspections are done throughout the manufacturing process.</p><br>
<p>We are able to proactively identify, track and resolve quality issues by creating a transparent environment where decisions are based on hard facts and metrics. Through our market surveys, there is more interaction with our customers.</p><br>
<p>As a result, we have improved customer retention and satisfaction by rapidly resolving product quality issues reported by customers in a consistent and predictable manner.</p>
</div>
</section>
</div>
<!--Customer Care-->
<section class="social_reponsibiity">
<div class="social__img social__container">
<div class="social__left">
<div class="social__about-img">
<img src="assets/images/cocoa-butter-500ml.png" alt="Elegance Cocoa Butter 500ml" class="customer__img">
<img src="assets/images/elegance-men's-breeze-500ml.png" alt="Elegance Men's Breeze 500ml" class="customer__img">
</div>
</div>
<div class="social__right">
<h2 class="customer_care">Customer Care</h2>
<p>Prochem Management delegated the responsibility of determining customer requirements and ensuring customer satisfaction to the Sales and Marketing function. Feedback on customer perception is obtained through regular customer/market research, customer complaints or queries as well as routine visits by our sales representatives.</p><br>
<p>In our endeavour to delight our customers we have dedicated the following perennial services to our customers:</p>
<div class="social__list">
<ol>
<li><i>Efficient and reliable delivery of all orders done on account, 48 hours within Harare Radius and within 3 days for country orders.</i></li>
<li><i>Countrywide distribution of our products.</i></li>
<li><i>Effective Market coverage by our sales team.</i></li>
<li><i> Target consumer promotions e.g. the famous<br> Elegance School Fees Promotion.</i></li>
</ol>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer>
<section>
<h2>One thing we can agree on:</h2>
<p>You need the most efficient, cost-effective, <br>and innovative skincare products always.</p>
<div class="email-btn">
<input type="email" placeholder="E-mail Address">
<button><i class="fas fa-caret-right fa-lg"></i></button>
</div>
</section>
<section>
<h3>Our Company</h3>
<ul class="footer__list">
<li class="footer__item"><a href="" class="footer__link">Products</a></li>
<li class="footer__item"><a href="about.html" class="footer__link">Our Story</a></li>
<li class="footer__item"><a href="" class="footer__link">Blog</a></li>
<li class="footer__item"><a href="contact.html" class="footer__link">Contact Us</a></li>
</ul>
</section>
<section>
<h3>Contact Us</h3>
<ul class="footer__list">
<li class="footer__item"><p class="footer__para"><span class="fas fa-envelope"></span> sales@prochem.co.zw</p></li>
<li class="footer__item"><p class="footer__para"><span class="fas fa-phone-volume"></span> +263 242 669 754-8</p></li>
<li class="footer__item"><p class="footer__para"><span class="fas fa-fax"></span> +263 242 664 750</p></li>
<li class="footer__item"><p class="footer__para"><span class="fas fa-map-marker"></span> 61 Gleneagles Road, Willowvale, Harare, Zimbabwe</p></li>
</ul>
</section>
</footer>
<div class="copyright__section">
<section>
<p>©Copyright 2020, Prochem (Private) Limited, All Rights Reserved.</p>
</section>
<section>
<div class="social__btn">
<a href="https://www.facebook.com/prochemzim" class="sf__link"><i class="fab fa-facebook-f sf__facebook"></i></a>
<a href="#" class="sf__link"><i class="fab fa-twitter sf__twitter"></i></a>
<a href="https://www.instagram.com/prochemzimbabwe/" class="sf__link"><i class="fab fa-instagram sf__instagram"></i></a>
</div>
</section>
<section>
<a href="">Terms & Conditions</a>
</section>
<section>
<a href="">Privacy & Cookies</a>
</section>
</div>
<script src="assets/js/custom.js"></script>
</body>
</html>
| 71.568627 | 361 | 0.588151 |
d32a171f37a94f38b45d97445e7cb153a1327bda | 5,670 | kt | Kotlin | app/src/main/java/com/mapswithme/maps/routing/RoutingInfo.kt | dnemov/omim.kt | 8b75114193e141aee14fcbc207a208c4a39de1db | [
"Apache-2.0"
] | 1 | 2020-03-06T13:56:02.000Z | 2020-03-06T13:56:02.000Z | app/src/main/java/com/mapswithme/maps/routing/RoutingInfo.kt | dnemov/omim.kt | 8b75114193e141aee14fcbc207a208c4a39de1db | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/mapswithme/maps/routing/RoutingInfo.kt | dnemov/omim.kt | 8b75114193e141aee14fcbc207a208c4a39de1db | [
"Apache-2.0"
] | null | null | null | package com.mapswithme.maps.routing
import android.location.Location
import android.widget.ImageView
import androidx.annotation.DrawableRes
import com.mapswithme.maps.R
import com.mapswithme.maps.bookmarks.data.DistanceAndAzimut
import com.mapswithme.maps.routing.RoutingInfo.CarDirection
import com.mapswithme.maps.routing.RoutingInfo.PedestrianTurnDirection
class RoutingInfo(
// Target (end point of route).
val distToTarget: String,
val targetUnits: String,
// Next turn.
val distToTurn: String,
val turnUnits: String,
// Current street name.
val currentStreet: String,
// The next street name.
val nextStreet: String,
val completionPercent: Double,
vehicleTurnOrdinal: Int,
vehicleNextTurnOrdinal: Int,
pedestrianTurnOrdinal: Int,
pedestrianDirectionLat: Double,
pedestrianDirectionLon: Double,
exitNum: Int,
val totalTimeInSeconds: Int,
lanes: Array<SingleLaneInfo>?,
speedLimitExceeded: Boolean,
shouldPlayWarningSignal: Boolean
) {
// For vehicle routing.
val carDirection: CarDirection
val nextCarDirection: CarDirection
val exitNum: Int
val lanes: Array<SingleLaneInfo>?
// For pedestrian routing.
val pedestrianTurnDirection: PedestrianTurnDirection
val isSpeedLimitExceeded: Boolean
private val shouldPlayWarningSignal: Boolean
val pedestrianNextDirection: Location
/**
* IMPORTANT : Order of enum values MUST BE the same as native CarDirection enum.
*/
enum class CarDirection(@param:DrawableRes private val mTurnRes: Int, @param:DrawableRes private val mNextTurnRes: Int) {
NO_TURN(R.drawable.ic_turn_straight, 0), GO_STRAIGHT(
R.drawable.ic_turn_straight,
0
),
TURN_RIGHT(
R.drawable.ic_turn_right,
R.drawable.ic_then_right
),
TURN_SHARP_RIGHT(
R.drawable.ic_turn_right_sharp,
R.drawable.ic_then_right_sharp
),
TURN_SLIGHT_RIGHT(
R.drawable.ic_turn_right_slight,
R.drawable.ic_then_right_slight
),
TURN_LEFT(
R.drawable.ic_turn_left,
R.drawable.ic_then_left
),
TURN_SHARP_LEFT(
R.drawable.ic_turn_left_sharp,
R.drawable.ic_then_left_sharp
),
TURN_SLIGHT_LEFT(
R.drawable.ic_turn_left_slight,
R.drawable.ic_then_left_slight
),
U_TURN_LEFT(
R.drawable.ic_turn_uleft,
R.drawable.ic_then_uleft
),
U_TURN_RIGHT(
R.drawable.ic_turn_uright,
R.drawable.ic_then_uright
),
ENTER_ROUND_ABOUT(
R.drawable.ic_turn_round,
R.drawable.ic_then_round
),
LEAVE_ROUND_ABOUT(
R.drawable.ic_turn_round,
R.drawable.ic_then_round
),
STAY_ON_ROUND_ABOUT(
R.drawable.ic_turn_round,
R.drawable.ic_then_round
),
START_AT_THE_END_OF_STREET(0, 0), REACHED_YOUR_DESTINATION(
R.drawable.ic_turn_finish,
R.drawable.ic_then_finish
),
EXIT_HIGHWAY_TO_LEFT(
R.drawable.ic_exit_highway_to_left,
R.drawable.ic_then_exit_highway_to_left
),
EXIT_HIGHWAY_TO_RIGHT(
R.drawable.ic_exit_highway_to_right,
R.drawable.ic_then_exit_highway_to_right
);
fun setTurnDrawable(imageView: ImageView) {
imageView.setImageResource(mTurnRes)
imageView.rotation = 0.0f
}
fun setNextTurnDrawable(imageView: ImageView) {
imageView.setImageResource(mNextTurnRes)
}
fun containsNextTurn(): Boolean {
return mNextTurnRes != 0
}
companion object {
fun isRoundAbout(turn: CarDirection): Boolean {
return turn == ENTER_ROUND_ABOUT || turn == LEAVE_ROUND_ABOUT || turn == STAY_ON_ROUND_ABOUT
}
}
}
enum class PedestrianTurnDirection {
NONE, UPSTAIRS, DOWNSTAIRS, LIFT_GATE, GATE, REACHED_YOUR_DESTINATION;
companion object {
fun setTurnDrawable(
view: ImageView,
distanceAndAzimut: DistanceAndAzimut
) {
view.setImageResource(R.drawable.ic_turn_direction)
view.rotation = Math.toDegrees(distanceAndAzimut.azimuth).toFloat()
}
}
}
/**
* IMPORTANT : Order of enum values MUST BE the same
* with native LaneWay enum (see routing/turns.hpp for details).
* Information for every lane is composed of some number values below.
* For example, a lane may have THROUGH and RIGHT values.
*/
enum class LaneWay {
NONE, REVERSE, SHARP_LEFT, LEFT, SLIGHT_LEFT, MERGE_TO_RIGHT, THROUGH, MERGE_TO_LEFT, SLIGHT_RIGHT, RIGHT, SHARP_RIGHT
}
fun shouldPlayWarningSignal(): Boolean {
return shouldPlayWarningSignal
}
init {
carDirection =
CarDirection.values()[vehicleTurnOrdinal]
nextCarDirection = CarDirection.values()[vehicleNextTurnOrdinal]
this.lanes = lanes
this.exitNum = exitNum
pedestrianTurnDirection =
PedestrianTurnDirection.values()[pedestrianTurnOrdinal]
isSpeedLimitExceeded = speedLimitExceeded
this.shouldPlayWarningSignal = shouldPlayWarningSignal
pedestrianNextDirection = Location("")
pedestrianNextDirection.latitude = pedestrianDirectionLat
pedestrianNextDirection.longitude = pedestrianDirectionLon
}
} | 32.774566 | 126 | 0.64903 |
21d1809f9cb839ea5b3f862e6062816732577435 | 12,683 | html | HTML | docs/classKBAgent.html | rand-asswad/chatbot | b707fe3a49c3e66b1757567a807690c7973bb105 | [
"Apache-2.0"
] | null | null | null | docs/classKBAgent.html | rand-asswad/chatbot | b707fe3a49c3e66b1757567a807690c7973bb105 | [
"Apache-2.0"
] | null | null | null | docs/classKBAgent.html | rand-asswad/chatbot | b707fe3a49c3e66b1757567a807690c7973bb105 | [
"Apache-2.0"
] | null | null | null | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Chatbot: KBAgent Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Chatbot
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="#pri-attribs">Private Attributes</a> |
<a href="classKBAgent-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">KBAgent Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="dynheader">
Inheritance diagram for KBAgent:</div>
<div class="dyncontent">
<div class="center">
<img src="classKBAgent.png" usemap="#KBAgent_map" alt=""/>
<map id="KBAgent_map" name="KBAgent_map">
<area href="classAgent.html" title="Processes input speech and generates output. " alt="Agent" shape="rect" coords="0,0,61,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a17428ac09478190a14cb88ded3befb09"><td class="memItemLeft" align="right" valign="top"><a id="a17428ac09478190a14cb88ded3befb09"></a>
 </td><td class="memItemRight" valign="bottom"><b>KBAgent</b> (<a class="el" href="classKB.html">KB</a> kb)</td></tr>
<tr class="separator:a17428ac09478190a14cb88ded3befb09"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classAgent"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classAgent')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classAgent.html">Agent</a></td></tr>
<tr class="memitem:a3db4a9cfcea636c9d63ec73729225fc8 inherit pub_methods_classAgent"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#a3db4a9cfcea636c9d63ec73729225fc8">Agent</a> (istream *input, ostream *output)</td></tr>
<tr class="separator:a3db4a9cfcea636c9d63ec73729225fc8 inherit pub_methods_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e176f9a9b2a9269506cc172c1e2b897 inherit pub_methods_classAgent"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#a5e176f9a9b2a9269506cc172c1e2b897">run</a> (bool debug=false)</td></tr>
<tr class="separator:a5e176f9a9b2a9269506cc172c1e2b897 inherit pub_methods_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr class="memitem:a39b90910bb21acfa030cfa7a9dda275f"><td class="memItemLeft" align="right" valign="top"><a id="a39b90910bb21acfa030cfa7a9dda275f"></a>
<a class="el" href="classPercept.html">Percept</a> </td><td class="memItemRight" valign="bottom"><b>current_percept</b></td></tr>
<tr class="separator:a39b90910bb21acfa030cfa7a9dda275f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49daa697e7f59e17b9b3bdd6d9ad13ac"><td class="memItemLeft" align="right" valign="top"><a id="a49daa697e7f59e17b9b3bdd6d9ad13ac"></a>
<a class="el" href="classAction.html">Action</a> </td><td class="memItemRight" valign="bottom"><b>current_action</b></td></tr>
<tr class="separator:a49daa697e7f59e17b9b3bdd6d9ad13ac"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_attribs_classAgent"><td colspan="2" onclick="javascript:toggleInherit('pub_attribs_classAgent')"><img src="closed.png" alt="-"/> Public Attributes inherited from <a class="el" href="classAgent.html">Agent</a></td></tr>
<tr class="memitem:a18b65b5aff8b98ba9316d6b75b5fc365 inherit pub_attribs_classAgent"><td class="memItemLeft" align="right" valign="top"><a id="a18b65b5aff8b98ba9316d6b75b5fc365"></a>
<a class="el" href="classString.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#a18b65b5aff8b98ba9316d6b75b5fc365">name</a></td></tr>
<tr class="memdesc:a18b65b5aff8b98ba9316d6b75b5fc365 inherit pub_attribs_classAgent"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classAgent.html" title="Processes input speech and generates output. ">Agent</a> name. <br /></td></tr>
<tr class="separator:a18b65b5aff8b98ba9316d6b75b5fc365 inherit pub_attribs_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af9d3de27eff21068dca2e7d73f6bdd3e inherit pub_attribs_classAgent"><td class="memItemLeft" align="right" valign="top"><a id="af9d3de27eff21068dca2e7d73f6bdd3e"></a>
istream * </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#af9d3de27eff21068dca2e7d73f6bdd3e">inputStream</a></td></tr>
<tr class="memdesc:af9d3de27eff21068dca2e7d73f6bdd3e inherit pub_attribs_classAgent"><td class="mdescLeft"> </td><td class="mdescRight">pointer to input stream <br /></td></tr>
<tr class="separator:af9d3de27eff21068dca2e7d73f6bdd3e inherit pub_attribs_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac00b0a19e22cbda3d748704b073f373a inherit pub_attribs_classAgent"><td class="memItemLeft" align="right" valign="top"><a id="ac00b0a19e22cbda3d748704b073f373a"></a>
ostream * </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#ac00b0a19e22cbda3d748704b073f373a">outputStream</a></td></tr>
<tr class="memdesc:ac00b0a19e22cbda3d748704b073f373a inherit pub_attribs_classAgent"><td class="mdescLeft"> </td><td class="mdescRight">pointer to output stream <br /></td></tr>
<tr class="separator:ac00b0a19e22cbda3d748704b073f373a inherit pub_attribs_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6d993fd4391bbd272be8bcdaeab350c inherit pub_attribs_classAgent"><td class="memItemLeft" align="right" valign="top"><a id="ac6d993fd4391bbd272be8bcdaeab350c"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#ac6d993fd4391bbd272be8bcdaeab350c">quit</a></td></tr>
<tr class="memdesc:ac6d993fd4391bbd272be8bcdaeab350c inherit pub_attribs_classAgent"><td class="mdescLeft"> </td><td class="mdescRight">boolean to quit conversation <br /></td></tr>
<tr class="separator:ac6d993fd4391bbd272be8bcdaeab350c inherit pub_attribs_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr class="memitem:ab06c4e82ec409f8b195cf0b8ef70bd3b"><td class="memItemLeft" align="right" valign="top"><a id="ab06c4e82ec409f8b195cf0b8ef70bd3b"></a>
<a class="el" href="classKB.html">KB</a> </td><td class="memItemRight" valign="bottom"><b>knowledge_base</b></td></tr>
<tr class="separator:ab06c4e82ec409f8b195cf0b8ef70bd3b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classAgent"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classAgent')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classAgent.html">Agent</a></td></tr>
<tr class="memitem:a5536c1d6d3beb2d9ccee127d33ceaf2e inherit pro_attribs_classAgent"><td class="memItemLeft" align="right" valign="top"><a id="a5536c1d6d3beb2d9ccee127d33ceaf2e"></a>
ostream * </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#a5536c1d6d3beb2d9ccee127d33ceaf2e">debugger</a></td></tr>
<tr class="memdesc:a5536c1d6d3beb2d9ccee127d33ceaf2e inherit pro_attribs_classAgent"><td class="mdescLeft"> </td><td class="mdescRight">Pointer to output stream for displaying debug information.<br />
Can be used to point to a file stream to write a log file. <br /></td></tr>
<tr class="separator:a5536c1d6d3beb2d9ccee127d33ceaf2e inherit pro_attribs_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-attribs"></a>
Private Attributes</h2></td></tr>
<tr class="memitem:a506bc41ccc3f1de8b132e974804372bf"><td class="memItemLeft" align="right" valign="top"><a id="a506bc41ccc3f1de8b132e974804372bf"></a>
int </td><td class="memItemRight" valign="bottom"><b>t</b> = 0</td></tr>
<tr class="separator:a506bc41ccc3f1de8b132e974804372bf"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pro_methods_classAgent"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classAgent')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classAgent.html">Agent</a></td></tr>
<tr class="memitem:a8908483f8d1302ec8dd65539369de9bb inherit pro_methods_classAgent"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classString.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#a8908483f8d1302ec8dd65539369de9bb">processInput</a> (<a class="el" href="classString.html">String</a> input)=0</td></tr>
<tr class="separator:a8908483f8d1302ec8dd65539369de9bb inherit pro_methods_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a753289e615d0fbe962453695e41bd0b6 inherit pro_methods_classAgent"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classString.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classAgent.html#a753289e615d0fbe962453695e41bd0b6">greetUser</a> ()=0</td></tr>
<tr class="separator:a753289e615d0fbe962453695e41bd0b6 inherit pro_methods_classAgent"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>src/Agent/KnowledgeBase/<a class="el" href="KBAgent_8h_source.html">KBAgent.h</a></li>
<li>src/Agent/KnowledgeBase/KBAgent.cpp</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
| 80.783439 | 400 | 0.739967 |
bb19dbbfcc5508e71eaf637213ffe9d39bf0629b | 824,981 | html | HTML | reddit-web-scraping-article.html | jrdenney/ga-website | 8ac6f4c3d90434f76d69354aef259298f2109645 | [
"MIT"
] | null | null | null | reddit-web-scraping-article.html | jrdenney/ga-website | 8ac6f4c3d90434f76d69354aef259298f2109645 | [
"MIT"
] | null | null | null | reddit-web-scraping-article.html | jrdenney/ga-website | 8ac6f4c3d90434f76d69354aef259298f2109645 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html>
<head><meta charset="utf-8" />
<title>Project3-JamesDenney</title><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<style type="text/css">
/*!
*
* Twitter Bootstrap
*
*/
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.navbar {
display: none;
}
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important;
}
.label {
border: 1px solid #000;
}
.table {
border-collapse: collapse !important;
}
.table td,
.table th {
background-color: #fff !important;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
content: "\002a";
}
.glyphicon-plus:before {
content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
content: "\20ac";
}
.glyphicon-minus:before {
content: "\2212";
}
.glyphicon-cloud:before {
content: "\2601";
}
.glyphicon-envelope:before {
content: "\2709";
}
.glyphicon-pencil:before {
content: "\270f";
}
.glyphicon-glass:before {
content: "\e001";
}
.glyphicon-music:before {
content: "\e002";
}
.glyphicon-search:before {
content: "\e003";
}
.glyphicon-heart:before {
content: "\e005";
}
.glyphicon-star:before {
content: "\e006";
}
.glyphicon-star-empty:before {
content: "\e007";
}
.glyphicon-user:before {
content: "\e008";
}
.glyphicon-film:before {
content: "\e009";
}
.glyphicon-th-large:before {
content: "\e010";
}
.glyphicon-th:before {
content: "\e011";
}
.glyphicon-th-list:before {
content: "\e012";
}
.glyphicon-ok:before {
content: "\e013";
}
.glyphicon-remove:before {
content: "\e014";
}
.glyphicon-zoom-in:before {
content: "\e015";
}
.glyphicon-zoom-out:before {
content: "\e016";
}
.glyphicon-off:before {
content: "\e017";
}
.glyphicon-signal:before {
content: "\e018";
}
.glyphicon-cog:before {
content: "\e019";
}
.glyphicon-trash:before {
content: "\e020";
}
.glyphicon-home:before {
content: "\e021";
}
.glyphicon-file:before {
content: "\e022";
}
.glyphicon-time:before {
content: "\e023";
}
.glyphicon-road:before {
content: "\e024";
}
.glyphicon-download-alt:before {
content: "\e025";
}
.glyphicon-download:before {
content: "\e026";
}
.glyphicon-upload:before {
content: "\e027";
}
.glyphicon-inbox:before {
content: "\e028";
}
.glyphicon-play-circle:before {
content: "\e029";
}
.glyphicon-repeat:before {
content: "\e030";
}
.glyphicon-refresh:before {
content: "\e031";
}
.glyphicon-list-alt:before {
content: "\e032";
}
.glyphicon-lock:before {
content: "\e033";
}
.glyphicon-flag:before {
content: "\e034";
}
.glyphicon-headphones:before {
content: "\e035";
}
.glyphicon-volume-off:before {
content: "\e036";
}
.glyphicon-volume-down:before {
content: "\e037";
}
.glyphicon-volume-up:before {
content: "\e038";
}
.glyphicon-qrcode:before {
content: "\e039";
}
.glyphicon-barcode:before {
content: "\e040";
}
.glyphicon-tag:before {
content: "\e041";
}
.glyphicon-tags:before {
content: "\e042";
}
.glyphicon-book:before {
content: "\e043";
}
.glyphicon-bookmark:before {
content: "\e044";
}
.glyphicon-print:before {
content: "\e045";
}
.glyphicon-camera:before {
content: "\e046";
}
.glyphicon-font:before {
content: "\e047";
}
.glyphicon-bold:before {
content: "\e048";
}
.glyphicon-italic:before {
content: "\e049";
}
.glyphicon-text-height:before {
content: "\e050";
}
.glyphicon-text-width:before {
content: "\e051";
}
.glyphicon-align-left:before {
content: "\e052";
}
.glyphicon-align-center:before {
content: "\e053";
}
.glyphicon-align-right:before {
content: "\e054";
}
.glyphicon-align-justify:before {
content: "\e055";
}
.glyphicon-list:before {
content: "\e056";
}
.glyphicon-indent-left:before {
content: "\e057";
}
.glyphicon-indent-right:before {
content: "\e058";
}
.glyphicon-facetime-video:before {
content: "\e059";
}
.glyphicon-picture:before {
content: "\e060";
}
.glyphicon-map-marker:before {
content: "\e062";
}
.glyphicon-adjust:before {
content: "\e063";
}
.glyphicon-tint:before {
content: "\e064";
}
.glyphicon-edit:before {
content: "\e065";
}
.glyphicon-share:before {
content: "\e066";
}
.glyphicon-check:before {
content: "\e067";
}
.glyphicon-move:before {
content: "\e068";
}
.glyphicon-step-backward:before {
content: "\e069";
}
.glyphicon-fast-backward:before {
content: "\e070";
}
.glyphicon-backward:before {
content: "\e071";
}
.glyphicon-play:before {
content: "\e072";
}
.glyphicon-pause:before {
content: "\e073";
}
.glyphicon-stop:before {
content: "\e074";
}
.glyphicon-forward:before {
content: "\e075";
}
.glyphicon-fast-forward:before {
content: "\e076";
}
.glyphicon-step-forward:before {
content: "\e077";
}
.glyphicon-eject:before {
content: "\e078";
}
.glyphicon-chevron-left:before {
content: "\e079";
}
.glyphicon-chevron-right:before {
content: "\e080";
}
.glyphicon-plus-sign:before {
content: "\e081";
}
.glyphicon-minus-sign:before {
content: "\e082";
}
.glyphicon-remove-sign:before {
content: "\e083";
}
.glyphicon-ok-sign:before {
content: "\e084";
}
.glyphicon-question-sign:before {
content: "\e085";
}
.glyphicon-info-sign:before {
content: "\e086";
}
.glyphicon-screenshot:before {
content: "\e087";
}
.glyphicon-remove-circle:before {
content: "\e088";
}
.glyphicon-ok-circle:before {
content: "\e089";
}
.glyphicon-ban-circle:before {
content: "\e090";
}
.glyphicon-arrow-left:before {
content: "\e091";
}
.glyphicon-arrow-right:before {
content: "\e092";
}
.glyphicon-arrow-up:before {
content: "\e093";
}
.glyphicon-arrow-down:before {
content: "\e094";
}
.glyphicon-share-alt:before {
content: "\e095";
}
.glyphicon-resize-full:before {
content: "\e096";
}
.glyphicon-resize-small:before {
content: "\e097";
}
.glyphicon-exclamation-sign:before {
content: "\e101";
}
.glyphicon-gift:before {
content: "\e102";
}
.glyphicon-leaf:before {
content: "\e103";
}
.glyphicon-fire:before {
content: "\e104";
}
.glyphicon-eye-open:before {
content: "\e105";
}
.glyphicon-eye-close:before {
content: "\e106";
}
.glyphicon-warning-sign:before {
content: "\e107";
}
.glyphicon-plane:before {
content: "\e108";
}
.glyphicon-calendar:before {
content: "\e109";
}
.glyphicon-random:before {
content: "\e110";
}
.glyphicon-comment:before {
content: "\e111";
}
.glyphicon-magnet:before {
content: "\e112";
}
.glyphicon-chevron-up:before {
content: "\e113";
}
.glyphicon-chevron-down:before {
content: "\e114";
}
.glyphicon-retweet:before {
content: "\e115";
}
.glyphicon-shopping-cart:before {
content: "\e116";
}
.glyphicon-folder-close:before {
content: "\e117";
}
.glyphicon-folder-open:before {
content: "\e118";
}
.glyphicon-resize-vertical:before {
content: "\e119";
}
.glyphicon-resize-horizontal:before {
content: "\e120";
}
.glyphicon-hdd:before {
content: "\e121";
}
.glyphicon-bullhorn:before {
content: "\e122";
}
.glyphicon-bell:before {
content: "\e123";
}
.glyphicon-certificate:before {
content: "\e124";
}
.glyphicon-thumbs-up:before {
content: "\e125";
}
.glyphicon-thumbs-down:before {
content: "\e126";
}
.glyphicon-hand-right:before {
content: "\e127";
}
.glyphicon-hand-left:before {
content: "\e128";
}
.glyphicon-hand-up:before {
content: "\e129";
}
.glyphicon-hand-down:before {
content: "\e130";
}
.glyphicon-circle-arrow-right:before {
content: "\e131";
}
.glyphicon-circle-arrow-left:before {
content: "\e132";
}
.glyphicon-circle-arrow-up:before {
content: "\e133";
}
.glyphicon-circle-arrow-down:before {
content: "\e134";
}
.glyphicon-globe:before {
content: "\e135";
}
.glyphicon-wrench:before {
content: "\e136";
}
.glyphicon-tasks:before {
content: "\e137";
}
.glyphicon-filter:before {
content: "\e138";
}
.glyphicon-briefcase:before {
content: "\e139";
}
.glyphicon-fullscreen:before {
content: "\e140";
}
.glyphicon-dashboard:before {
content: "\e141";
}
.glyphicon-paperclip:before {
content: "\e142";
}
.glyphicon-heart-empty:before {
content: "\e143";
}
.glyphicon-link:before {
content: "\e144";
}
.glyphicon-phone:before {
content: "\e145";
}
.glyphicon-pushpin:before {
content: "\e146";
}
.glyphicon-usd:before {
content: "\e148";
}
.glyphicon-gbp:before {
content: "\e149";
}
.glyphicon-sort:before {
content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
.glyphicon-sort-by-order:before {
content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
content: "\e154";
}
.glyphicon-sort-by-attributes:before {
content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
.glyphicon-unchecked:before {
content: "\e157";
}
.glyphicon-expand:before {
content: "\e158";
}
.glyphicon-collapse-down:before {
content: "\e159";
}
.glyphicon-collapse-up:before {
content: "\e160";
}
.glyphicon-log-in:before {
content: "\e161";
}
.glyphicon-flash:before {
content: "\e162";
}
.glyphicon-log-out:before {
content: "\e163";
}
.glyphicon-new-window:before {
content: "\e164";
}
.glyphicon-record:before {
content: "\e165";
}
.glyphicon-save:before {
content: "\e166";
}
.glyphicon-open:before {
content: "\e167";
}
.glyphicon-saved:before {
content: "\e168";
}
.glyphicon-import:before {
content: "\e169";
}
.glyphicon-export:before {
content: "\e170";
}
.glyphicon-send:before {
content: "\e171";
}
.glyphicon-floppy-disk:before {
content: "\e172";
}
.glyphicon-floppy-saved:before {
content: "\e173";
}
.glyphicon-floppy-remove:before {
content: "\e174";
}
.glyphicon-floppy-save:before {
content: "\e175";
}
.glyphicon-floppy-open:before {
content: "\e176";
}
.glyphicon-credit-card:before {
content: "\e177";
}
.glyphicon-transfer:before {
content: "\e178";
}
.glyphicon-cutlery:before {
content: "\e179";
}
.glyphicon-header:before {
content: "\e180";
}
.glyphicon-compressed:before {
content: "\e181";
}
.glyphicon-earphone:before {
content: "\e182";
}
.glyphicon-phone-alt:before {
content: "\e183";
}
.glyphicon-tower:before {
content: "\e184";
}
.glyphicon-stats:before {
content: "\e185";
}
.glyphicon-sd-video:before {
content: "\e186";
}
.glyphicon-hd-video:before {
content: "\e187";
}
.glyphicon-subtitles:before {
content: "\e188";
}
.glyphicon-sound-stereo:before {
content: "\e189";
}
.glyphicon-sound-dolby:before {
content: "\e190";
}
.glyphicon-sound-5-1:before {
content: "\e191";
}
.glyphicon-sound-6-1:before {
content: "\e192";
}
.glyphicon-sound-7-1:before {
content: "\e193";
}
.glyphicon-copyright-mark:before {
content: "\e194";
}
.glyphicon-registration-mark:before {
content: "\e195";
}
.glyphicon-cloud-download:before {
content: "\e197";
}
.glyphicon-cloud-upload:before {
content: "\e198";
}
.glyphicon-tree-conifer:before {
content: "\e199";
}
.glyphicon-tree-deciduous:before {
content: "\e200";
}
.glyphicon-cd:before {
content: "\e201";
}
.glyphicon-save-file:before {
content: "\e202";
}
.glyphicon-open-file:before {
content: "\e203";
}
.glyphicon-level-up:before {
content: "\e204";
}
.glyphicon-copy:before {
content: "\e205";
}
.glyphicon-paste:before {
content: "\e206";
}
.glyphicon-alert:before {
content: "\e209";
}
.glyphicon-equalizer:before {
content: "\e210";
}
.glyphicon-king:before {
content: "\e211";
}
.glyphicon-queen:before {
content: "\e212";
}
.glyphicon-pawn:before {
content: "\e213";
}
.glyphicon-bishop:before {
content: "\e214";
}
.glyphicon-knight:before {
content: "\e215";
}
.glyphicon-baby-formula:before {
content: "\e216";
}
.glyphicon-tent:before {
content: "\26fa";
}
.glyphicon-blackboard:before {
content: "\e218";
}
.glyphicon-bed:before {
content: "\e219";
}
.glyphicon-apple:before {
content: "\f8ff";
}
.glyphicon-erase:before {
content: "\e221";
}
.glyphicon-hourglass:before {
content: "\231b";
}
.glyphicon-lamp:before {
content: "\e223";
}
.glyphicon-duplicate:before {
content: "\e224";
}
.glyphicon-piggy-bank:before {
content: "\e225";
}
.glyphicon-scissors:before {
content: "\e226";
}
.glyphicon-bitcoin:before {
content: "\e227";
}
.glyphicon-btc:before {
content: "\e227";
}
.glyphicon-xbt:before {
content: "\e227";
}
.glyphicon-yen:before {
content: "\00a5";
}
.glyphicon-jpy:before {
content: "\00a5";
}
.glyphicon-ruble:before {
content: "\20bd";
}
.glyphicon-rub:before {
content: "\20bd";
}
.glyphicon-scale:before {
content: "\e230";
}
.glyphicon-ice-lolly:before {
content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
content: "\e232";
}
.glyphicon-education:before {
content: "\e233";
}
.glyphicon-option-horizontal:before {
content: "\e234";
}
.glyphicon-option-vertical:before {
content: "\e235";
}
.glyphicon-menu-hamburger:before {
content: "\e236";
}
.glyphicon-modal-window:before {
content: "\e237";
}
.glyphicon-oil:before {
content: "\e238";
}
.glyphicon-grain:before {
content: "\e239";
}
.glyphicon-sunglasses:before {
content: "\e240";
}
.glyphicon-text-size:before {
content: "\e241";
}
.glyphicon-text-color:before {
content: "\e242";
}
.glyphicon-text-background:before {
content: "\e243";
}
.glyphicon-object-align-top:before {
content: "\e244";
}
.glyphicon-object-align-bottom:before {
content: "\e245";
}
.glyphicon-object-align-horizontal:before {
content: "\e246";
}
.glyphicon-object-align-left:before {
content: "\e247";
}
.glyphicon-object-align-vertical:before {
content: "\e248";
}
.glyphicon-object-align-right:before {
content: "\e249";
}
.glyphicon-triangle-right:before {
content: "\e250";
}
.glyphicon-triangle-left:before {
content: "\e251";
}
.glyphicon-triangle-bottom:before {
content: "\e252";
}
.glyphicon-triangle-top:before {
content: "\e253";
}
.glyphicon-console:before {
content: "\e254";
}
.glyphicon-superscript:before {
content: "\e255";
}
.glyphicon-subscript:before {
content: "\e256";
}
.glyphicon-menu-left:before {
content: "\e257";
}
.glyphicon-menu-right:before {
content: "\e258";
}
.glyphicon-menu-down:before {
content: "\e259";
}
.glyphicon-menu-up:before {
content: "\e260";
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 1.42857143;
color: #000;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover,
a:focus {
color: #23527c;
text-decoration: underline;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 3px;
}
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 2px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 18px;
margin-bottom: 18px;
border: 0;
border-top: 1px solid #eeeeee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
[role="button"] {
cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 18px;
margin-bottom: 9px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 9px;
margin-bottom: 9px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
font-size: 75%;
}
h1,
.h1 {
font-size: 33px;
}
h2,
.h2 {
font-size: 27px;
}
h3,
.h3 {
font-size: 23px;
}
h4,
.h4 {
font-size: 17px;
}
h5,
.h5 {
font-size: 13px;
}
h6,
.h6 {
font-size: 12px;
}
p {
margin: 0 0 9px;
}
.lead {
margin-bottom: 18px;
font-size: 14px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
.lead {
font-size: 19.5px;
}
}
small,
.small {
font-size: 92%;
}
mark,
.mark {
background-color: #fcf8e3;
padding: .2em;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-muted {
color: #777777;
}
.text-primary {
color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
color: #286090;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #286090;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.bg-danger {
background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9;
}
.page-header {
padding-bottom: 8px;
margin: 36px 0 18px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 9px;
}
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
dl {
margin-top: 0;
margin-bottom: 18px;
}
dt,
dd {
line-height: 1.42857143;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
@media (min-width: 541px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 9px 18px;
margin: 0 0 18px;
font-size: inherit;
border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
address {
margin-bottom: 18px;
font-style: normal;
line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
font-family: monospace;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 2px;
}
kbd {
padding: 2px 4px;
font-size: 90%;
color: #888;
background-color: transparent;
border-radius: 1px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
box-shadow: none;
}
pre {
display: block;
padding: 8.5px;
margin: 0 0 9px;
font-size: 12px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 2px;
}
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) {
.container {
width: 768px;
}
}
@media (min-width: 992px) {
.container {
width: 940px;
}
}
@media (min-width: 1200px) {
.container {
width: 1140px;
}
}
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 0px;
padding-right: 0px;
}
.row {
margin-left: 0px;
margin-right: 0px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 0px;
padding-right: 0px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
.col-xs-12 {
width: 100%;
}
.col-xs-11 {
width: 91.66666667%;
}
.col-xs-10 {
width: 83.33333333%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-8 {
width: 66.66666667%;
}
.col-xs-7 {
width: 58.33333333%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-5 {
width: 41.66666667%;
}
.col-xs-4 {
width: 33.33333333%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-2 {
width: 16.66666667%;
}
.col-xs-1 {
width: 8.33333333%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-pull-11 {
right: 91.66666667%;
}
.col-xs-pull-10 {
right: 83.33333333%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-8 {
right: 66.66666667%;
}
.col-xs-pull-7 {
right: 58.33333333%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-5 {
right: 41.66666667%;
}
.col-xs-pull-4 {
right: 33.33333333%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-2 {
right: 16.66666667%;
}
.col-xs-pull-1 {
right: 8.33333333%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-push-11 {
left: 91.66666667%;
}
.col-xs-push-10 {
left: 83.33333333%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-8 {
left: 66.66666667%;
}
.col-xs-push-7 {
left: 58.33333333%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-5 {
left: 41.66666667%;
}
.col-xs-push-4 {
left: 33.33333333%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-2 {
left: 16.66666667%;
}
.col-xs-push-1 {
left: 8.33333333%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-offset-12 {
margin-left: 100%;
}
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
.col-xs-offset-7 {
margin-left: 58.33333333%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
.col-xs-offset-0 {
margin-left: 0%;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-12 {
width: 100%;
}
.col-sm-11 {
width: 91.66666667%;
}
.col-sm-10 {
width: 83.33333333%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-8 {
width: 66.66666667%;
}
.col-sm-7 {
width: 58.33333333%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-5 {
width: 41.66666667%;
}
.col-sm-4 {
width: 33.33333333%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-2 {
width: 16.66666667%;
}
.col-sm-1 {
width: 8.33333333%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-pull-11 {
right: 91.66666667%;
}
.col-sm-pull-10 {
right: 83.33333333%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-8 {
right: 66.66666667%;
}
.col-sm-pull-7 {
right: 58.33333333%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-5 {
right: 41.66666667%;
}
.col-sm-pull-4 {
right: 33.33333333%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-2 {
right: 16.66666667%;
}
.col-sm-pull-1 {
right: 8.33333333%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-push-11 {
left: 91.66666667%;
}
.col-sm-push-10 {
left: 83.33333333%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-8 {
left: 66.66666667%;
}
.col-sm-push-7 {
left: 58.33333333%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-5 {
left: 41.66666667%;
}
.col-sm-push-4 {
left: 33.33333333%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-2 {
left: 16.66666667%;
}
.col-sm-push-1 {
left: 8.33333333%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-offset-12 {
margin-left: 100%;
}
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
.col-sm-offset-7 {
margin-left: 58.33333333%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
.col-sm-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-pull-11 {
right: 91.66666667%;
}
.col-md-pull-10 {
right: 83.33333333%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-8 {
right: 66.66666667%;
}
.col-md-pull-7 {
right: 58.33333333%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-5 {
right: 41.66666667%;
}
.col-md-pull-4 {
right: 33.33333333%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-2 {
right: 16.66666667%;
}
.col-md-pull-1 {
right: 8.33333333%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-push-12 {
left: 100%;
}
.col-md-push-11 {
left: 91.66666667%;
}
.col-md-push-10 {
left: 83.33333333%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-8 {
left: 66.66666667%;
}
.col-md-push-7 {
left: 58.33333333%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-5 {
left: 41.66666667%;
}
.col-md-push-4 {
left: 33.33333333%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-2 {
left: 16.66666667%;
}
.col-md-push-1 {
left: 8.33333333%;
}
.col-md-push-0 {
left: auto;
}
.col-md-offset-12 {
margin-left: 100%;
}
.col-md-offset-11 {
margin-left: 91.66666667%;
}
.col-md-offset-10 {
margin-left: 83.33333333%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-8 {
margin-left: 66.66666667%;
}
.col-md-offset-7 {
margin-left: 58.33333333%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-5 {
margin-left: 41.66666667%;
}
.col-md-offset-4 {
margin-left: 33.33333333%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-2 {
margin-left: 16.66666667%;
}
.col-md-offset-1 {
margin-left: 8.33333333%;
}
.col-md-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-12 {
width: 100%;
}
.col-lg-11 {
width: 91.66666667%;
}
.col-lg-10 {
width: 83.33333333%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-8 {
width: 66.66666667%;
}
.col-lg-7 {
width: 58.33333333%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-5 {
width: 41.66666667%;
}
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-2 {
width: 16.66666667%;
}
.col-lg-1 {
width: 8.33333333%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-pull-11 {
right: 91.66666667%;
}
.col-lg-pull-10 {
right: 83.33333333%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-8 {
right: 66.66666667%;
}
.col-lg-pull-7 {
right: 58.33333333%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-5 {
right: 41.66666667%;
}
.col-lg-pull-4 {
right: 33.33333333%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-2 {
right: 16.66666667%;
}
.col-lg-pull-1 {
right: 8.33333333%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-push-11 {
left: 91.66666667%;
}
.col-lg-push-10 {
left: 83.33333333%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-8 {
left: 66.66666667%;
}
.col-lg-push-7 {
left: 58.33333333%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-5 {
left: 41.66666667%;
}
.col-lg-push-4 {
left: 33.33333333%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-2 {
left: 16.66666667%;
}
.col-lg-push-1 {
left: 8.33333333%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-offset-12 {
margin-left: 100%;
}
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
.col-lg-offset-7 {
margin-left: 58.33333333%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
.col-lg-offset-0 {
margin-left: 0%;
}
}
table {
background-color: transparent;
}
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777777;
text-align: left;
}
th {
text-align: left;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 18px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #ddd;
}
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
border-top: 0;
}
.table > tbody + tbody {
border-top: 2px solid #ddd;
}
.table .table {
background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
padding: 5px;
}
.table-bordered {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
background-color: #f5f5f5;
}
table col[class*="col-"] {
position: static;
float: none;
display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
position: static;
float: none;
display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc;
}
.table-responsive {
overflow-x: auto;
min-height: 0.01%;
}
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 13.5px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 18px;
font-size: 19.5px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 7px;
font-size: 13px;
line-height: 1.42857143;
color: #555555;
}
.form-control {
display: block;
width: 100%;
height: 32px;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control::-ms-expand {
border: 0;
background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed;
}
textarea.form-control {
height: auto;
}
input[type="search"] {
-webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 32px;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
line-height: 45px;
}
}
.form-group {
margin-bottom: 15px;
}
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.radio label,
.checkbox label {
min-height: 18px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
min-height: 31px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-left: 0;
padding-right: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
.form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
min-height: 30px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 45px;
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
select.input-lg {
height: 45px;
line-height: 45px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 45px;
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
.form-group-lg select.form-control {
height: 45px;
line-height: 45px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 45px;
min-height: 35px;
padding: 11px 16px;
font-size: 17px;
line-height: 1.3333333;
}
.has-feedback {
position: relative;
}
.has-feedback .form-control {
padding-right: 40px;
}
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 32px;
height: 32px;
line-height: 32px;
text-align: center;
pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 45px;
height: 45px;
line-height: 45px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #3c763d;
}
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
color: #3c763d;
border-color: #3c763d;
background-color: #dff0d8;
}
.has-success .form-control-feedback {
color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #8a6d3b;
}
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
color: #8a6d3b;
border-color: #8a6d3b;
background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #a94442;
}
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
color: #a94442;
border-color: #a94442;
background-color: #f2dede;
}
.has-error .form-control-feedback {
color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
top: 23px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #404040;
}
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 25px;
}
.form-horizontal .form-group {
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px;
}
}
.form-horizontal .has-feedback .form-control-feedback {
right: 0px;
}
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 11px;
font-size: 17px;
}
}
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
border-radius: 2px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
color: #333;
text-decoration: none;
}
.btn:active,
.btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.btn-default:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
background-color: #fff;
border-color: #ccc;
}
.btn-default .badge {
color: #fff;
background-color: #333;
}
.btn-primary {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
color: #fff;
background-color: #286090;
border-color: #122b40;
}
.btn-primary:hover {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
color: #fff;
background-color: #204d74;
border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary .badge {
color: #337ab7;
background-color: #fff;
}
.btn-success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
color: #fff;
background-color: #449d44;
border-color: #255625;
}
.btn-success:hover {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
color: #fff;
background-color: #398439;
border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success .badge {
color: #5cb85c;
background-color: #fff;
}
.btn-info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
color: #fff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.btn-info:hover {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
color: #fff;
background-color: #269abc;
border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info .badge {
color: #5bc0de;
background-color: #fff;
}
.btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
color: #fff;
background-color: #ec971f;
border-color: #985f0d;
}
.btn-warning:hover {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
color: #fff;
background-color: #d58512;
border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning .badge {
color: #f0ad4e;
background-color: #fff;
}
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.btn-danger:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger .badge {
color: #d9534f;
background-color: #fff;
}
.btn-link {
color: #337ab7;
font-weight: normal;
border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
color: #23527c;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
.btn-sm,
.btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
.btn-xs,
.btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
.btn-block {
display: block;
width: 100%;
}
.btn-block + .btn-block {
margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
tr.collapse.in {
display: table-row;
}
tbody.collapse.in {
display: table-row-group;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle:focus {
outline: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
font-size: 13px;
text-align: left;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 2px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
height: 1px;
margin: 8px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
text-decoration: none;
color: #262626;
background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
outline: 0;
background-color: #337ab7;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: not-allowed;
}
.open > .dropdown-menu {
display: block;
}
.open > a {
outline: 0;
}
.dropdown-menu-right {
left: auto;
right: 0;
}
.dropdown-menu-left {
left: 0;
right: auto;
}
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #777777;
white-space: nowrap;
}
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 2px;
}
@media (min-width: 541px) {
.navbar-right .dropdown-menu {
left: auto;
right: 0;
}
.navbar-right .dropdown-menu-left {
left: 0;
right: auto;
}
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px;
}
.btn-toolbar {
margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0;
}
.btn-group > .btn:first-child {
margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.btn-group > .btn-group {
float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn .caret {
margin-left: 0;
}
.btn-lg .caret {
border-width: 5px 5px 0;
border-bottom-width: 0;
}
.dropup .btn-lg .caret {
border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 2px;
border-top-left-radius: 2px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-top-right-radius: 0;
border-top-left-radius: 0;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%;
}
.btn-group-justified > .btn-group .btn {
width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.input-group {
position: relative;
display: table;
border-collapse: separate;
}
.input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0;
}
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}
.input-group .form-control:focus {
z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
height: 45px;
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
height: 45px;
line-height: 45px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0;
}
.input-group-addon,
.input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.input-group-addon {
padding: 6px 12px;
font-size: 13px;
font-weight: normal;
line-height: 1;
color: #555555;
text-align: center;
background-color: #eeeeee;
border: 1px solid #ccc;
border-radius: 2px;
}
.input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 1px;
}
.input-group-addon.input-lg {
padding: 10px 16px;
font-size: 17px;
border-radius: 3px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.input-group-addon:first-child {
border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.input-group-addon:last-child {
border-left: 0;
}
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.input-group-btn > .btn {
position: relative;
}
.input-group-btn > .btn + .btn {
margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
z-index: 2;
margin-left: -1px;
}
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.nav > li.disabled > a {
color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #eeeeee;
border-color: #337ab7;
}
.nav .nav-divider {
height: 1px;
margin: 8px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.nav > li > a > img {
max-width: none;
}
.nav-tabs {
border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 2px 2px 0 0;
}
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555555;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default;
}
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
.nav-tabs.nav-justified > li {
float: none;
}
.nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 2px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 2px 2px 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.nav-pills > li {
float: left;
}
.nav-pills > li > a {
border-radius: 2px;
}
.nav-pills > li + li {
margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #fff;
background-color: #337ab7;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
.nav-justified {
width: 100%;
}
.nav-justified > li {
float: none;
}
.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 2px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 2px 2px 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar {
position: relative;
min-height: 30px;
margin-bottom: 18px;
border: 1px solid transparent;
}
@media (min-width: 541px) {
.navbar {
border-radius: 2px;
}
}
@media (min-width: 541px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
overflow-x: visible;
padding-right: 0px;
padding-left: 0px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 541px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 540px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0px;
margin-left: 0px;
}
@media (min-width: 541px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 541px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 541px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.navbar-brand {
float: left;
padding: 6px 0px;
font-size: 17px;
line-height: 18px;
height: 30px;
}
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 541px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: 0px;
}
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 0px;
padding: 9px 10px;
margin-top: -2px;
margin-bottom: -2px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 2px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 541px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 3px 0px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 18px;
}
@media (max-width: 540px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 18px;
}
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 541px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 6px;
padding-bottom: 6px;
}
}
.navbar-form {
margin-left: 0px;
margin-right: 0px;
padding: 10px 0px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: -1px;
margin-bottom: -1px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 540px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 541px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 2px;
border-top-left-radius: 2px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: -1px;
margin-bottom: -1px;
}
.navbar-btn.btn-sm {
margin-top: 0px;
margin-bottom: 0px;
}
.navbar-btn.btn-xs {
margin-top: 4px;
margin-bottom: 4px;
}
.navbar-text {
margin-top: 6px;
margin-bottom: 6px;
}
@media (min-width: 541px) {
.navbar-text {
float: left;
margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 541px) {
.navbar-left {
float: left !important;
float: left;
}
.navbar-right {
float: right !important;
float: right;
margin-right: 0px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555;
}
@media (max-width: 540px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #222;
border-color: #080808;
}
.navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: #080808;
color: #fff;
}
@media (max-width: 540px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.navbar-inverse .navbar-link {
color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
color: #fff;
}
.navbar-inverse .btn-link {
color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444;
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 18px;
list-style: none;
background-color: #f5f5f5;
border-radius: 2px;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
color: #5e5e5e;
}
.breadcrumb > .active {
color: #777777;
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 18px 0;
border-radius: 2px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.42857143;
text-decoration: none;
color: #337ab7;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 2px;
border-top-left-radius: 2px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
z-index: 2;
color: #23527c;
background-color: #eeeeee;
border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777777;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-bottom-left-radius: 1px;
border-top-left-radius: 1px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-bottom-right-radius: 1px;
border-top-right-radius: 1px;
}
.pager {
padding-left: 0;
margin: 18px 0;
list-style: none;
text-align: center;
}
.pager li {
display: inline;
}
.pager li > a,
.pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
float: right;
}
.pager .previous > a,
.pager .previous > span {
float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #777777;
background-color: #fff;
cursor: not-allowed;
}
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
a.label:hover,
a.label:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.label:empty {
display: none;
}
.btn .label {
position: relative;
top: -1px;
}
.label-default {
background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
background-color: #5e5e5e;
}
.label-primary {
background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
background-color: #286090;
}
.label-success {
background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
background-color: #449d44;
}
.label-info {
background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
background-color: #31b0d5;
}
.label-warning {
background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
background-color: #ec971f;
}
.label-danger {
background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
background-color: #c9302c;
}
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
color: #fff;
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: #777777;
border-radius: 10px;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #337ab7;
background-color: #fff;
}
.list-group-item > .badge {
float: right;
}
.list-group-item > .badge + .badge {
margin-right: 5px;
}
.nav-pills > li > a > .badge {
margin-left: 3px;
}
.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
color: inherit;
}
.jumbotron p {
margin-bottom: 15px;
font-size: 20px;
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 3px;
padding-left: 0px;
padding-right: 0px;
}
.jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px;
}
.jumbotron h1,
.jumbotron .h1 {
font-size: 59px;
}
}
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 18px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 2px;
-webkit-transition: border 0.2s ease-in-out;
-o-transition: border 0.2s ease-in-out;
transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
margin-left: auto;
margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #337ab7;
}
.thumbnail .caption {
padding: 9px;
color: #000;
}
.alert {
padding: 15px;
margin-bottom: 18px;
border: 1px solid transparent;
border-radius: 2px;
}
.alert h4 {
margin-top: 0;
color: inherit;
}
.alert .alert-link {
font-weight: bold;
}
.alert > p,
.alert > ul {
margin-bottom: 0;
}
.alert > p + p {
margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #3c763d;
}
.alert-success hr {
border-top-color: #c9e2b3;
}
.alert-success .alert-link {
color: #2b542c;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #31708f;
}
.alert-info hr {
border-top-color: #a6e1ec;
}
.alert-info .alert-link {
color: #245269;
}
.alert-warning {
background-color: #fcf8e3;
border-color: #faebcc;
color: #8a6d3b;
}
.alert-warning hr {
border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
color: #66512c;
}
.alert-danger {
background-color: #f2dede;
border-color: #ebccd1;
color: #a94442;
}
.alert-danger hr {
border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
overflow: hidden;
height: 18px;
margin-bottom: 18px;
background-color: #f5f5f5;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 18px;
color: #fff;
text-align: center;
background-color: #337ab7;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media,
.media-body {
zoom: 1;
overflow: hidden;
}
.media-body {
width: 10000px;
}
.media-object {
display: block;
}
.media-object.img-thumbnail {
max-width: none;
}
.media-right,
.media > .pull-right {
padding-left: 10px;
}
.media-left,
.media > .pull-left {
padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top;
}
.media-middle {
vertical-align: middle;
}
.media-bottom {
vertical-align: bottom;
}
.media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.media-list {
padding-left: 0;
list-style: none;
}
.list-group {
margin-bottom: 20px;
padding-left: 0;
}
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd;
}
.list-group-item:first-child {
border-top-right-radius: 2px;
border-top-left-radius: 2px;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}
a.list-group-item,
button.list-group-item {
color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
text-decoration: none;
color: #555;
background-color: #f5f5f5;
}
button.list-group-item {
width: 100%;
text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
background-color: #eeeeee;
color: #777777;
cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
color: #c7ddef;
}
.list-group-item-success {
color: #3c763d;
background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
color: #3c763d;
background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
color: #fff;
background-color: #3c763d;
border-color: #3c763d;
}
.list-group-item-info {
color: #31708f;
background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
color: #31708f;
background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
color: #fff;
background-color: #31708f;
border-color: #31708f;
}
.list-group-item-warning {
color: #8a6d3b;
background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
color: #8a6d3b;
background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
color: #fff;
background-color: #8a6d3b;
border-color: #8a6d3b;
}
.list-group-item-danger {
color: #a94442;
background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
color: #a94442;
background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
color: #fff;
background-color: #a94442;
border-color: #a94442;
}
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px;
}
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3;
}
.panel {
margin-bottom: 18px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
padding: 15px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
}
.panel-heading > .dropdown .dropdown-toggle {
color: inherit;
}
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 15px;
color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
color: inherit;
}
.panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0;
}
.list-group + .panel-footer {
border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
padding-left: 15px;
padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: 1px;
border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: 1px;
border-top-right-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-left-radius: 1px;
border-bottom-right-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 1px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0;
}
.panel > .table-responsive {
border: 0;
margin-bottom: 0;
}
.panel-group {
margin-bottom: 18px;
}
.panel-group .panel {
margin-bottom: 0;
border-radius: 2px;
}
.panel-group .panel + .panel {
margin-top: 5px;
}
.panel-group .panel-heading {
border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd;
}
.panel-default {
border-color: #ddd;
}
.panel-default > .panel-heading {
color: #333333;
background-color: #f5f5f5;
border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
color: #f5f5f5;
background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd;
}
.panel-primary {
border-color: #337ab7;
}
.panel-primary > .panel-heading {
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
color: #337ab7;
background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #337ab7;
}
.panel-success {
border-color: #d6e9c6;
}
.panel-success > .panel-heading {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
color: #dff0d8;
background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #d6e9c6;
}
.panel-info {
border-color: #bce8f1;
}
.panel-info > .panel-heading {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
color: #d9edf7;
background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #bce8f1;
}
.panel-warning {
border-color: #faebcc;
}
.panel-warning > .panel-heading {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
color: #fcf8e3;
background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #faebcc;
}
.panel-danger {
border-color: #ebccd1;
}
.panel-danger > .panel-heading {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
color: #f2dede;
background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ebccd1;
}
.embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
border: 0;
}
.embed-responsive-16by9 {
padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
padding-bottom: 75%;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
padding: 24px;
border-radius: 3px;
}
.well-sm {
padding: 9px;
border-radius: 1px;
}
.close {
float: right;
font-size: 19.5px;
font-weight: bold;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: 0.5;
filter: alpha(opacity=50);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.modal-open {
overflow: hidden;
}
.modal {
display: none;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-moz-transition: -moz-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal-dialog {
position: relative;
width: auto;
margin: 10px;
}
.modal-content {
position: relative;
background-color: #fff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
background-clip: padding-box;
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0);
}
.modal-backdrop.in {
opacity: 0.5;
filter: alpha(opacity=50);
}
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
margin-top: -2px;
}
.modal-title {
margin: 0;
line-height: 1.42857143;
}
.modal-body {
position: relative;
padding: 15px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto;
}
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 900px;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 12px;
opacity: 0;
filter: alpha(opacity=0);
}
.tooltip.in {
opacity: 0.9;
filter: alpha(opacity=90);
}
.tooltip.top {
margin-top: -3px;
padding: 5px 0;
}
.tooltip.right {
margin-left: 3px;
padding: 0 5px;
}
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0;
}
.tooltip.left {
margin-left: -3px;
padding: 0 5px;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 2px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
bottom: 0;
right: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 13px;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 13px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 2px 2px 0 0;
}
.popover-content {
padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover > .arrow {
border-width: 11px;
}
.popover > .arrow:after {
border-width: 10px;
content: "";
}
.popover.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px;
}
.popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #fff;
}
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999999;
border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #fff;
}
.popover.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px;
}
.popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #fff;
}
.popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999999;
border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #fff;
bottom: -10px;
}
.carousel {
position: relative;
}
.carousel-inner {
position: relative;
overflow: hidden;
width: 100%;
}
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform 0.6s ease-in-out;
-moz-transition: -moz-transform 0.6s ease-in-out;
-o-transition: -o-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
left: 0;
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
left: 0;
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0;
}
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
display: block;
}
.carousel-inner > .active {
left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.carousel-inner > .next {
left: 100%;
}
.carousel-inner > .prev {
left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
left: 0;
}
.carousel-inner > .active.left {
left: -100%;
}
.carousel-inner > .active.right {
left: 100%;
}
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: 0.5;
filter: alpha(opacity=50);
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
left: auto;
right: 0;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
outline: 0;
color: #fff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
margin-top: -10px;
z-index: 5;
display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
line-height: 1;
font-family: serif;
}
.carousel-control .icon-prev:before {
content: '\2039';
}
.carousel-control .icon-next:before {
content: '\203a';
}
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #fff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #fff;
}
.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px;
}
.carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after,
.item_buttons:before,
.item_buttons:after {
content: " ";
display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after,
.item_buttons:after {
clear: both;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-xs {
display: block !important;
}
table.visible-xs {
display: table !important;
}
tr.visible-xs {
display: table-row !important;
}
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important;
}
table.visible-sm {
display: table !important;
}
tr.visible-sm {
display: table-row !important;
}
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important;
}
table.visible-md {
display: table !important;
}
tr.visible-md {
display: table-row !important;
}
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-lg {
display: block !important;
}
table.visible-lg {
display: table !important;
}
tr.visible-lg {
display: table-row !important;
}
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: block !important;
}
table.visible-print {
display: table !important;
}
tr.visible-print {
display: table-row !important;
}
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
}
/*!
*
* Font Awesome
*
*/
/*!
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-fw {
width: 1.28571429em;
text-align: center;
}
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none;
}
.fa-ul > li {
position: relative;
}
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: 0.14285714em;
text-align: center;
}
.fa-li.fa-lg {
left: -1.85714286em;
}
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eee;
border-radius: .1em;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.fa.pull-left {
margin-right: .3em;
}
.fa.pull-right {
margin-left: .3em;
}
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter: none;
}
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.fa-stack-1x {
line-height: inherit;
}
.fa-stack-2x {
font-size: 2em;
}
.fa-inverse {
color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: "\f000";
}
.fa-music:before {
content: "\f001";
}
.fa-search:before {
content: "\f002";
}
.fa-envelope-o:before {
content: "\f003";
}
.fa-heart:before {
content: "\f004";
}
.fa-star:before {
content: "\f005";
}
.fa-star-o:before {
content: "\f006";
}
.fa-user:before {
content: "\f007";
}
.fa-film:before {
content: "\f008";
}
.fa-th-large:before {
content: "\f009";
}
.fa-th:before {
content: "\f00a";
}
.fa-th-list:before {
content: "\f00b";
}
.fa-check:before {
content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: "\f00d";
}
.fa-search-plus:before {
content: "\f00e";
}
.fa-search-minus:before {
content: "\f010";
}
.fa-power-off:before {
content: "\f011";
}
.fa-signal:before {
content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
content: "\f013";
}
.fa-trash-o:before {
content: "\f014";
}
.fa-home:before {
content: "\f015";
}
.fa-file-o:before {
content: "\f016";
}
.fa-clock-o:before {
content: "\f017";
}
.fa-road:before {
content: "\f018";
}
.fa-download:before {
content: "\f019";
}
.fa-arrow-circle-o-down:before {
content: "\f01a";
}
.fa-arrow-circle-o-up:before {
content: "\f01b";
}
.fa-inbox:before {
content: "\f01c";
}
.fa-play-circle-o:before {
content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
content: "\f01e";
}
.fa-refresh:before {
content: "\f021";
}
.fa-list-alt:before {
content: "\f022";
}
.fa-lock:before {
content: "\f023";
}
.fa-flag:before {
content: "\f024";
}
.fa-headphones:before {
content: "\f025";
}
.fa-volume-off:before {
content: "\f026";
}
.fa-volume-down:before {
content: "\f027";
}
.fa-volume-up:before {
content: "\f028";
}
.fa-qrcode:before {
content: "\f029";
}
.fa-barcode:before {
content: "\f02a";
}
.fa-tag:before {
content: "\f02b";
}
.fa-tags:before {
content: "\f02c";
}
.fa-book:before {
content: "\f02d";
}
.fa-bookmark:before {
content: "\f02e";
}
.fa-print:before {
content: "\f02f";
}
.fa-camera:before {
content: "\f030";
}
.fa-font:before {
content: "\f031";
}
.fa-bold:before {
content: "\f032";
}
.fa-italic:before {
content: "\f033";
}
.fa-text-height:before {
content: "\f034";
}
.fa-text-width:before {
content: "\f035";
}
.fa-align-left:before {
content: "\f036";
}
.fa-align-center:before {
content: "\f037";
}
.fa-align-right:before {
content: "\f038";
}
.fa-align-justify:before {
content: "\f039";
}
.fa-list:before {
content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
content: "\f03b";
}
.fa-indent:before {
content: "\f03c";
}
.fa-video-camera:before {
content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: "\f03e";
}
.fa-pencil:before {
content: "\f040";
}
.fa-map-marker:before {
content: "\f041";
}
.fa-adjust:before {
content: "\f042";
}
.fa-tint:before {
content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
content: "\f044";
}
.fa-share-square-o:before {
content: "\f045";
}
.fa-check-square-o:before {
content: "\f046";
}
.fa-arrows:before {
content: "\f047";
}
.fa-step-backward:before {
content: "\f048";
}
.fa-fast-backward:before {
content: "\f049";
}
.fa-backward:before {
content: "\f04a";
}
.fa-play:before {
content: "\f04b";
}
.fa-pause:before {
content: "\f04c";
}
.fa-stop:before {
content: "\f04d";
}
.fa-forward:before {
content: "\f04e";
}
.fa-fast-forward:before {
content: "\f050";
}
.fa-step-forward:before {
content: "\f051";
}
.fa-eject:before {
content: "\f052";
}
.fa-chevron-left:before {
content: "\f053";
}
.fa-chevron-right:before {
content: "\f054";
}
.fa-plus-circle:before {
content: "\f055";
}
.fa-minus-circle:before {
content: "\f056";
}
.fa-times-circle:before {
content: "\f057";
}
.fa-check-circle:before {
content: "\f058";
}
.fa-question-circle:before {
content: "\f059";
}
.fa-info-circle:before {
content: "\f05a";
}
.fa-crosshairs:before {
content: "\f05b";
}
.fa-times-circle-o:before {
content: "\f05c";
}
.fa-check-circle-o:before {
content: "\f05d";
}
.fa-ban:before {
content: "\f05e";
}
.fa-arrow-left:before {
content: "\f060";
}
.fa-arrow-right:before {
content: "\f061";
}
.fa-arrow-up:before {
content: "\f062";
}
.fa-arrow-down:before {
content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
content: "\f064";
}
.fa-expand:before {
content: "\f065";
}
.fa-compress:before {
content: "\f066";
}
.fa-plus:before {
content: "\f067";
}
.fa-minus:before {
content: "\f068";
}
.fa-asterisk:before {
content: "\f069";
}
.fa-exclamation-circle:before {
content: "\f06a";
}
.fa-gift:before {
content: "\f06b";
}
.fa-leaf:before {
content: "\f06c";
}
.fa-fire:before {
content: "\f06d";
}
.fa-eye:before {
content: "\f06e";
}
.fa-eye-slash:before {
content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content: "\f071";
}
.fa-plane:before {
content: "\f072";
}
.fa-calendar:before {
content: "\f073";
}
.fa-random:before {
content: "\f074";
}
.fa-comment:before {
content: "\f075";
}
.fa-magnet:before {
content: "\f076";
}
.fa-chevron-up:before {
content: "\f077";
}
.fa-chevron-down:before {
content: "\f078";
}
.fa-retweet:before {
content: "\f079";
}
.fa-shopping-cart:before {
content: "\f07a";
}
.fa-folder:before {
content: "\f07b";
}
.fa-folder-open:before {
content: "\f07c";
}
.fa-arrows-v:before {
content: "\f07d";
}
.fa-arrows-h:before {
content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: "\f080";
}
.fa-twitter-square:before {
content: "\f081";
}
.fa-facebook-square:before {
content: "\f082";
}
.fa-camera-retro:before {
content: "\f083";
}
.fa-key:before {
content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
content: "\f085";
}
.fa-comments:before {
content: "\f086";
}
.fa-thumbs-o-up:before {
content: "\f087";
}
.fa-thumbs-o-down:before {
content: "\f088";
}
.fa-star-half:before {
content: "\f089";
}
.fa-heart-o:before {
content: "\f08a";
}
.fa-sign-out:before {
content: "\f08b";
}
.fa-linkedin-square:before {
content: "\f08c";
}
.fa-thumb-tack:before {
content: "\f08d";
}
.fa-external-link:before {
content: "\f08e";
}
.fa-sign-in:before {
content: "\f090";
}
.fa-trophy:before {
content: "\f091";
}
.fa-github-square:before {
content: "\f092";
}
.fa-upload:before {
content: "\f093";
}
.fa-lemon-o:before {
content: "\f094";
}
.fa-phone:before {
content: "\f095";
}
.fa-square-o:before {
content: "\f096";
}
.fa-bookmark-o:before {
content: "\f097";
}
.fa-phone-square:before {
content: "\f098";
}
.fa-twitter:before {
content: "\f099";
}
.fa-facebook:before {
content: "\f09a";
}
.fa-github:before {
content: "\f09b";
}
.fa-unlock:before {
content: "\f09c";
}
.fa-credit-card:before {
content: "\f09d";
}
.fa-rss:before {
content: "\f09e";
}
.fa-hdd-o:before {
content: "\f0a0";
}
.fa-bullhorn:before {
content: "\f0a1";
}
.fa-bell:before {
content: "\f0f3";
}
.fa-certificate:before {
content: "\f0a3";
}
.fa-hand-o-right:before {
content: "\f0a4";
}
.fa-hand-o-left:before {
content: "\f0a5";
}
.fa-hand-o-up:before {
content: "\f0a6";
}
.fa-hand-o-down:before {
content: "\f0a7";
}
.fa-arrow-circle-left:before {
content: "\f0a8";
}
.fa-arrow-circle-right:before {
content: "\f0a9";
}
.fa-arrow-circle-up:before {
content: "\f0aa";
}
.fa-arrow-circle-down:before {
content: "\f0ab";
}
.fa-globe:before {
content: "\f0ac";
}
.fa-wrench:before {
content: "\f0ad";
}
.fa-tasks:before {
content: "\f0ae";
}
.fa-filter:before {
content: "\f0b0";
}
.fa-briefcase:before {
content: "\f0b1";
}
.fa-arrows-alt:before {
content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
content: "\f0c1";
}
.fa-cloud:before {
content: "\f0c2";
}
.fa-flask:before {
content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
content: "\f0c5";
}
.fa-paperclip:before {
content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
content: "\f0c7";
}
.fa-square:before {
content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: "\f0c9";
}
.fa-list-ul:before {
content: "\f0ca";
}
.fa-list-ol:before {
content: "\f0cb";
}
.fa-strikethrough:before {
content: "\f0cc";
}
.fa-underline:before {
content: "\f0cd";
}
.fa-table:before {
content: "\f0ce";
}
.fa-magic:before {
content: "\f0d0";
}
.fa-truck:before {
content: "\f0d1";
}
.fa-pinterest:before {
content: "\f0d2";
}
.fa-pinterest-square:before {
content: "\f0d3";
}
.fa-google-plus-square:before {
content: "\f0d4";
}
.fa-google-plus:before {
content: "\f0d5";
}
.fa-money:before {
content: "\f0d6";
}
.fa-caret-down:before {
content: "\f0d7";
}
.fa-caret-up:before {
content: "\f0d8";
}
.fa-caret-left:before {
content: "\f0d9";
}
.fa-caret-right:before {
content: "\f0da";
}
.fa-columns:before {
content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
content: "\f0de";
}
.fa-envelope:before {
content: "\f0e0";
}
.fa-linkedin:before {
content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
content: "\f0e4";
}
.fa-comment-o:before {
content: "\f0e5";
}
.fa-comments-o:before {
content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
content: "\f0e7";
}
.fa-sitemap:before {
content: "\f0e8";
}
.fa-umbrella:before {
content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
content: "\f0ea";
}
.fa-lightbulb-o:before {
content: "\f0eb";
}
.fa-exchange:before {
content: "\f0ec";
}
.fa-cloud-download:before {
content: "\f0ed";
}
.fa-cloud-upload:before {
content: "\f0ee";
}
.fa-user-md:before {
content: "\f0f0";
}
.fa-stethoscope:before {
content: "\f0f1";
}
.fa-suitcase:before {
content: "\f0f2";
}
.fa-bell-o:before {
content: "\f0a2";
}
.fa-coffee:before {
content: "\f0f4";
}
.fa-cutlery:before {
content: "\f0f5";
}
.fa-file-text-o:before {
content: "\f0f6";
}
.fa-building-o:before {
content: "\f0f7";
}
.fa-hospital-o:before {
content: "\f0f8";
}
.fa-ambulance:before {
content: "\f0f9";
}
.fa-medkit:before {
content: "\f0fa";
}
.fa-fighter-jet:before {
content: "\f0fb";
}
.fa-beer:before {
content: "\f0fc";
}
.fa-h-square:before {
content: "\f0fd";
}
.fa-plus-square:before {
content: "\f0fe";
}
.fa-angle-double-left:before {
content: "\f100";
}
.fa-angle-double-right:before {
content: "\f101";
}
.fa-angle-double-up:before {
content: "\f102";
}
.fa-angle-double-down:before {
content: "\f103";
}
.fa-angle-left:before {
content: "\f104";
}
.fa-angle-right:before {
content: "\f105";
}
.fa-angle-up:before {
content: "\f106";
}
.fa-angle-down:before {
content: "\f107";
}
.fa-desktop:before {
content: "\f108";
}
.fa-laptop:before {
content: "\f109";
}
.fa-tablet:before {
content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
content: "\f10b";
}
.fa-circle-o:before {
content: "\f10c";
}
.fa-quote-left:before {
content: "\f10d";
}
.fa-quote-right:before {
content: "\f10e";
}
.fa-spinner:before {
content: "\f110";
}
.fa-circle:before {
content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
content: "\f112";
}
.fa-github-alt:before {
content: "\f113";
}
.fa-folder-o:before {
content: "\f114";
}
.fa-folder-open-o:before {
content: "\f115";
}
.fa-smile-o:before {
content: "\f118";
}
.fa-frown-o:before {
content: "\f119";
}
.fa-meh-o:before {
content: "\f11a";
}
.fa-gamepad:before {
content: "\f11b";
}
.fa-keyboard-o:before {
content: "\f11c";
}
.fa-flag-o:before {
content: "\f11d";
}
.fa-flag-checkered:before {
content: "\f11e";
}
.fa-terminal:before {
content: "\f120";
}
.fa-code:before {
content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: "\f123";
}
.fa-location-arrow:before {
content: "\f124";
}
.fa-crop:before {
content: "\f125";
}
.fa-code-fork:before {
content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
content: "\f127";
}
.fa-question:before {
content: "\f128";
}
.fa-info:before {
content: "\f129";
}
.fa-exclamation:before {
content: "\f12a";
}
.fa-superscript:before {
content: "\f12b";
}
.fa-subscript:before {
content: "\f12c";
}
.fa-eraser:before {
content: "\f12d";
}
.fa-puzzle-piece:before {
content: "\f12e";
}
.fa-microphone:before {
content: "\f130";
}
.fa-microphone-slash:before {
content: "\f131";
}
.fa-shield:before {
content: "\f132";
}
.fa-calendar-o:before {
content: "\f133";
}
.fa-fire-extinguisher:before {
content: "\f134";
}
.fa-rocket:before {
content: "\f135";
}
.fa-maxcdn:before {
content: "\f136";
}
.fa-chevron-circle-left:before {
content: "\f137";
}
.fa-chevron-circle-right:before {
content: "\f138";
}
.fa-chevron-circle-up:before {
content: "\f139";
}
.fa-chevron-circle-down:before {
content: "\f13a";
}
.fa-html5:before {
content: "\f13b";
}
.fa-css3:before {
content: "\f13c";
}
.fa-anchor:before {
content: "\f13d";
}
.fa-unlock-alt:before {
content: "\f13e";
}
.fa-bullseye:before {
content: "\f140";
}
.fa-ellipsis-h:before {
content: "\f141";
}
.fa-ellipsis-v:before {
content: "\f142";
}
.fa-rss-square:before {
content: "\f143";
}
.fa-play-circle:before {
content: "\f144";
}
.fa-ticket:before {
content: "\f145";
}
.fa-minus-square:before {
content: "\f146";
}
.fa-minus-square-o:before {
content: "\f147";
}
.fa-level-up:before {
content: "\f148";
}
.fa-level-down:before {
content: "\f149";
}
.fa-check-square:before {
content: "\f14a";
}
.fa-pencil-square:before {
content: "\f14b";
}
.fa-external-link-square:before {
content: "\f14c";
}
.fa-share-square:before {
content: "\f14d";
}
.fa-compass:before {
content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
content: "\f153";
}
.fa-gbp:before {
content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: "\f158";
}
.fa-won:before,
.fa-krw:before {
content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
content: "\f15a";
}
.fa-file:before {
content: "\f15b";
}
.fa-file-text:before {
content: "\f15c";
}
.fa-sort-alpha-asc:before {
content: "\f15d";
}
.fa-sort-alpha-desc:before {
content: "\f15e";
}
.fa-sort-amount-asc:before {
content: "\f160";
}
.fa-sort-amount-desc:before {
content: "\f161";
}
.fa-sort-numeric-asc:before {
content: "\f162";
}
.fa-sort-numeric-desc:before {
content: "\f163";
}
.fa-thumbs-up:before {
content: "\f164";
}
.fa-thumbs-down:before {
content: "\f165";
}
.fa-youtube-square:before {
content: "\f166";
}
.fa-youtube:before {
content: "\f167";
}
.fa-xing:before {
content: "\f168";
}
.fa-xing-square:before {
content: "\f169";
}
.fa-youtube-play:before {
content: "\f16a";
}
.fa-dropbox:before {
content: "\f16b";
}
.fa-stack-overflow:before {
content: "\f16c";
}
.fa-instagram:before {
content: "\f16d";
}
.fa-flickr:before {
content: "\f16e";
}
.fa-adn:before {
content: "\f170";
}
.fa-bitbucket:before {
content: "\f171";
}
.fa-bitbucket-square:before {
content: "\f172";
}
.fa-tumblr:before {
content: "\f173";
}
.fa-tumblr-square:before {
content: "\f174";
}
.fa-long-arrow-down:before {
content: "\f175";
}
.fa-long-arrow-up:before {
content: "\f176";
}
.fa-long-arrow-left:before {
content: "\f177";
}
.fa-long-arrow-right:before {
content: "\f178";
}
.fa-apple:before {
content: "\f179";
}
.fa-windows:before {
content: "\f17a";
}
.fa-android:before {
content: "\f17b";
}
.fa-linux:before {
content: "\f17c";
}
.fa-dribbble:before {
content: "\f17d";
}
.fa-skype:before {
content: "\f17e";
}
.fa-foursquare:before {
content: "\f180";
}
.fa-trello:before {
content: "\f181";
}
.fa-female:before {
content: "\f182";
}
.fa-male:before {
content: "\f183";
}
.fa-gittip:before {
content: "\f184";
}
.fa-sun-o:before {
content: "\f185";
}
.fa-moon-o:before {
content: "\f186";
}
.fa-archive:before {
content: "\f187";
}
.fa-bug:before {
content: "\f188";
}
.fa-vk:before {
content: "\f189";
}
.fa-weibo:before {
content: "\f18a";
}
.fa-renren:before {
content: "\f18b";
}
.fa-pagelines:before {
content: "\f18c";
}
.fa-stack-exchange:before {
content: "\f18d";
}
.fa-arrow-circle-o-right:before {
content: "\f18e";
}
.fa-arrow-circle-o-left:before {
content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: "\f191";
}
.fa-dot-circle-o:before {
content: "\f192";
}
.fa-wheelchair:before {
content: "\f193";
}
.fa-vimeo-square:before {
content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
content: "\f195";
}
.fa-plus-square-o:before {
content: "\f196";
}
.fa-space-shuttle:before {
content: "\f197";
}
.fa-slack:before {
content: "\f198";
}
.fa-envelope-square:before {
content: "\f199";
}
.fa-wordpress:before {
content: "\f19a";
}
.fa-openid:before {
content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: "\f19d";
}
.fa-yahoo:before {
content: "\f19e";
}
.fa-google:before {
content: "\f1a0";
}
.fa-reddit:before {
content: "\f1a1";
}
.fa-reddit-square:before {
content: "\f1a2";
}
.fa-stumbleupon-circle:before {
content: "\f1a3";
}
.fa-stumbleupon:before {
content: "\f1a4";
}
.fa-delicious:before {
content: "\f1a5";
}
.fa-digg:before {
content: "\f1a6";
}
.fa-pied-piper:before {
content: "\f1a7";
}
.fa-pied-piper-alt:before {
content: "\f1a8";
}
.fa-drupal:before {
content: "\f1a9";
}
.fa-joomla:before {
content: "\f1aa";
}
.fa-language:before {
content: "\f1ab";
}
.fa-fax:before {
content: "\f1ac";
}
.fa-building:before {
content: "\f1ad";
}
.fa-child:before {
content: "\f1ae";
}
.fa-paw:before {
content: "\f1b0";
}
.fa-spoon:before {
content: "\f1b1";
}
.fa-cube:before {
content: "\f1b2";
}
.fa-cubes:before {
content: "\f1b3";
}
.fa-behance:before {
content: "\f1b4";
}
.fa-behance-square:before {
content: "\f1b5";
}
.fa-steam:before {
content: "\f1b6";
}
.fa-steam-square:before {
content: "\f1b7";
}
.fa-recycle:before {
content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
content: "\f1ba";
}
.fa-tree:before {
content: "\f1bb";
}
.fa-spotify:before {
content: "\f1bc";
}
.fa-deviantart:before {
content: "\f1bd";
}
.fa-soundcloud:before {
content: "\f1be";
}
.fa-database:before {
content: "\f1c0";
}
.fa-file-pdf-o:before {
content: "\f1c1";
}
.fa-file-word-o:before {
content: "\f1c2";
}
.fa-file-excel-o:before {
content: "\f1c3";
}
.fa-file-powerpoint-o:before {
content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: "\f1c8";
}
.fa-file-code-o:before {
content: "\f1c9";
}
.fa-vine:before {
content: "\f1ca";
}
.fa-codepen:before {
content: "\f1cb";
}
.fa-jsfiddle:before {
content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: "\f1cd";
}
.fa-circle-o-notch:before {
content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
content: "\f1d1";
}
.fa-git-square:before {
content: "\f1d2";
}
.fa-git:before {
content: "\f1d3";
}
.fa-hacker-news:before {
content: "\f1d4";
}
.fa-tencent-weibo:before {
content: "\f1d5";
}
.fa-qq:before {
content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content: "\f1d9";
}
.fa-history:before {
content: "\f1da";
}
.fa-circle-thin:before {
content: "\f1db";
}
.fa-header:before {
content: "\f1dc";
}
.fa-paragraph:before {
content: "\f1dd";
}
.fa-sliders:before {
content: "\f1de";
}
.fa-share-alt:before {
content: "\f1e0";
}
.fa-share-alt-square:before {
content: "\f1e1";
}
.fa-bomb:before {
content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: "\f1e3";
}
.fa-tty:before {
content: "\f1e4";
}
.fa-binoculars:before {
content: "\f1e5";
}
.fa-plug:before {
content: "\f1e6";
}
.fa-slideshare:before {
content: "\f1e7";
}
.fa-twitch:before {
content: "\f1e8";
}
.fa-yelp:before {
content: "\f1e9";
}
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-wifi:before {
content: "\f1eb";
}
.fa-calculator:before {
content: "\f1ec";
}
.fa-paypal:before {
content: "\f1ed";
}
.fa-google-wallet:before {
content: "\f1ee";
}
.fa-cc-visa:before {
content: "\f1f0";
}
.fa-cc-mastercard:before {
content: "\f1f1";
}
.fa-cc-discover:before {
content: "\f1f2";
}
.fa-cc-amex:before {
content: "\f1f3";
}
.fa-cc-paypal:before {
content: "\f1f4";
}
.fa-cc-stripe:before {
content: "\f1f5";
}
.fa-bell-slash:before {
content: "\f1f6";
}
.fa-bell-slash-o:before {
content: "\f1f7";
}
.fa-trash:before {
content: "\f1f8";
}
.fa-copyright:before {
content: "\f1f9";
}
.fa-at:before {
content: "\f1fa";
}
.fa-eyedropper:before {
content: "\f1fb";
}
.fa-paint-brush:before {
content: "\f1fc";
}
.fa-birthday-cake:before {
content: "\f1fd";
}
.fa-area-chart:before {
content: "\f1fe";
}
.fa-pie-chart:before {
content: "\f200";
}
.fa-line-chart:before {
content: "\f201";
}
.fa-lastfm:before {
content: "\f202";
}
.fa-lastfm-square:before {
content: "\f203";
}
.fa-toggle-off:before {
content: "\f204";
}
.fa-toggle-on:before {
content: "\f205";
}
.fa-bicycle:before {
content: "\f206";
}
.fa-bus:before {
content: "\f207";
}
.fa-ioxhost:before {
content: "\f208";
}
.fa-angellist:before {
content: "\f209";
}
.fa-cc:before {
content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: "\f20b";
}
.fa-meanpath:before {
content: "\f20c";
}
/*!
*
* IPython base
*
*/
.modal.fade .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
code {
color: #000;
}
pre {
font-size: inherit;
line-height: inherit;
}
label {
font-weight: normal;
}
/* Make the page background atleast 100% the height of the view port */
/* Make the page itself atleast 70% the height of the view port */
.border-box-sizing {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.corner-all {
border-radius: 2px;
}
.no-padding {
padding: 0px;
}
/* Flexible box model classes */
/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
/* This file is a compatability layer. It allows the usage of flexible box
model layouts accross multiple browsers, including older browsers. The newest,
universal implementation of the flexible box model is used when available (see
`Modern browsers` comments below). Browsers that are known to implement this
new spec completely include:
Firefox 28.0+
Chrome 29.0+
Internet Explorer 11+
Opera 17.0+
Browsers not listed, including Safari, are supported via the styling under the
`Old browsers` comments below.
*/
.hbox {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
.hbox > * {
/* Old browsers */
-webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
/* Modern browsers */
flex: none;
}
.vbox {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
.vbox > * {
/* Old browsers */
-webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
/* Modern browsers */
flex: none;
}
.hbox.reverse,
.vbox.reverse,
.reverse {
/* Old browsers */
-webkit-box-direction: reverse;
-moz-box-direction: reverse;
box-direction: reverse;
/* Modern browsers */
flex-direction: row-reverse;
}
.hbox.box-flex0,
.vbox.box-flex0,
.box-flex0 {
/* Old browsers */
-webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
/* Modern browsers */
flex: none;
width: auto;
}
.hbox.box-flex1,
.vbox.box-flex1,
.box-flex1 {
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
.hbox.box-flex,
.vbox.box-flex,
.box-flex {
/* Old browsers */
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
.hbox.box-flex2,
.vbox.box-flex2,
.box-flex2 {
/* Old browsers */
-webkit-box-flex: 2;
-moz-box-flex: 2;
box-flex: 2;
/* Modern browsers */
flex: 2;
}
.box-group1 {
/* Deprecated */
-webkit-box-flex-group: 1;
-moz-box-flex-group: 1;
box-flex-group: 1;
}
.box-group2 {
/* Deprecated */
-webkit-box-flex-group: 2;
-moz-box-flex-group: 2;
box-flex-group: 2;
}
.hbox.start,
.vbox.start,
.start {
/* Old browsers */
-webkit-box-pack: start;
-moz-box-pack: start;
box-pack: start;
/* Modern browsers */
justify-content: flex-start;
}
.hbox.end,
.vbox.end,
.end {
/* Old browsers */
-webkit-box-pack: end;
-moz-box-pack: end;
box-pack: end;
/* Modern browsers */
justify-content: flex-end;
}
.hbox.center,
.vbox.center,
.center {
/* Old browsers */
-webkit-box-pack: center;
-moz-box-pack: center;
box-pack: center;
/* Modern browsers */
justify-content: center;
}
.hbox.baseline,
.vbox.baseline,
.baseline {
/* Old browsers */
-webkit-box-pack: baseline;
-moz-box-pack: baseline;
box-pack: baseline;
/* Modern browsers */
justify-content: baseline;
}
.hbox.stretch,
.vbox.stretch,
.stretch {
/* Old browsers */
-webkit-box-pack: stretch;
-moz-box-pack: stretch;
box-pack: stretch;
/* Modern browsers */
justify-content: stretch;
}
.hbox.align-start,
.vbox.align-start,
.align-start {
/* Old browsers */
-webkit-box-align: start;
-moz-box-align: start;
box-align: start;
/* Modern browsers */
align-items: flex-start;
}
.hbox.align-end,
.vbox.align-end,
.align-end {
/* Old browsers */
-webkit-box-align: end;
-moz-box-align: end;
box-align: end;
/* Modern browsers */
align-items: flex-end;
}
.hbox.align-center,
.vbox.align-center,
.align-center {
/* Old browsers */
-webkit-box-align: center;
-moz-box-align: center;
box-align: center;
/* Modern browsers */
align-items: center;
}
.hbox.align-baseline,
.vbox.align-baseline,
.align-baseline {
/* Old browsers */
-webkit-box-align: baseline;
-moz-box-align: baseline;
box-align: baseline;
/* Modern browsers */
align-items: baseline;
}
.hbox.align-stretch,
.vbox.align-stretch,
.align-stretch {
/* Old browsers */
-webkit-box-align: stretch;
-moz-box-align: stretch;
box-align: stretch;
/* Modern browsers */
align-items: stretch;
}
div.error {
margin: 2em;
text-align: center;
}
div.error > h1 {
font-size: 500%;
line-height: normal;
}
div.error > p {
font-size: 200%;
line-height: normal;
}
div.traceback-wrapper {
text-align: left;
max-width: 800px;
margin: auto;
}
/**
* Primary styles
*
* Author: Jupyter Development Team
*/
body {
background-color: #fff;
/* This makes sure that the body covers the entire window and needs to
be in a different element than the display: box in wrapper below */
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
overflow: visible;
}
body > #header {
/* Initially hidden to prevent FLOUC */
display: none;
background-color: #fff;
/* Display over codemirror */
position: relative;
z-index: 100;
}
body > #header #header-container {
padding-bottom: 5px;
padding-top: 5px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body > #header .header-bar {
width: 100%;
height: 1px;
background: #e7e7e7;
margin-bottom: -1px;
}
@media print {
body > #header {
display: none !important;
}
}
#header-spacer {
width: 100%;
visibility: hidden;
}
@media print {
#header-spacer {
display: none;
}
}
#ipython_notebook {
padding-left: 0px;
padding-top: 1px;
padding-bottom: 1px;
}
@media (max-width: 991px) {
#ipython_notebook {
margin-left: 10px;
}
}
[dir="rtl"] #ipython_notebook {
float: right !important;
}
#noscript {
width: auto;
padding-top: 16px;
padding-bottom: 16px;
text-align: center;
font-size: 22px;
color: red;
font-weight: bold;
}
#ipython_notebook img {
height: 28px;
}
#site {
width: 100%;
display: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
overflow: auto;
}
@media print {
#site {
height: auto !important;
}
}
/* Smaller buttons */
.ui-button .ui-button-text {
padding: 0.2em 0.8em;
font-size: 77%;
}
input.ui-button {
padding: 0.3em 0.9em;
}
span#login_widget {
float: right;
}
span#login_widget > .button,
#logout {
color: #333;
background-color: #fff;
border-color: #ccc;
}
span#login_widget > .button:focus,
#logout:focus,
span#login_widget > .button.focus,
#logout.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
span#login_widget > .button:hover,
#logout:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
span#login_widget > .button:active,
#logout:active,
span#login_widget > .button.active,
#logout.active,
.open > .dropdown-togglespan#login_widget > .button,
.open > .dropdown-toggle#logout {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
span#login_widget > .button:active:hover,
#logout:active:hover,
span#login_widget > .button.active:hover,
#logout.active:hover,
.open > .dropdown-togglespan#login_widget > .button:hover,
.open > .dropdown-toggle#logout:hover,
span#login_widget > .button:active:focus,
#logout:active:focus,
span#login_widget > .button.active:focus,
#logout.active:focus,
.open > .dropdown-togglespan#login_widget > .button:focus,
.open > .dropdown-toggle#logout:focus,
span#login_widget > .button:active.focus,
#logout:active.focus,
span#login_widget > .button.active.focus,
#logout.active.focus,
.open > .dropdown-togglespan#login_widget > .button.focus,
.open > .dropdown-toggle#logout.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
span#login_widget > .button:active,
#logout:active,
span#login_widget > .button.active,
#logout.active,
.open > .dropdown-togglespan#login_widget > .button,
.open > .dropdown-toggle#logout {
background-image: none;
}
span#login_widget > .button.disabled:hover,
#logout.disabled:hover,
span#login_widget > .button[disabled]:hover,
#logout[disabled]:hover,
fieldset[disabled] span#login_widget > .button:hover,
fieldset[disabled] #logout:hover,
span#login_widget > .button.disabled:focus,
#logout.disabled:focus,
span#login_widget > .button[disabled]:focus,
#logout[disabled]:focus,
fieldset[disabled] span#login_widget > .button:focus,
fieldset[disabled] #logout:focus,
span#login_widget > .button.disabled.focus,
#logout.disabled.focus,
span#login_widget > .button[disabled].focus,
#logout[disabled].focus,
fieldset[disabled] span#login_widget > .button.focus,
fieldset[disabled] #logout.focus {
background-color: #fff;
border-color: #ccc;
}
span#login_widget > .button .badge,
#logout .badge {
color: #fff;
background-color: #333;
}
.nav-header {
text-transform: none;
}
#header > span {
margin-top: 10px;
}
.modal_stretch .modal-dialog {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
min-height: 80vh;
}
.modal_stretch .modal-dialog .modal-body {
max-height: calc(100vh - 200px);
overflow: auto;
flex: 1;
}
@media (min-width: 768px) {
.modal .modal-dialog {
width: 700px;
}
}
@media (min-width: 768px) {
select.form-control {
margin-left: 12px;
margin-right: 12px;
}
}
/*!
*
* IPython auth
*
*/
.center-nav {
display: inline-block;
margin-bottom: -4px;
}
/*!
*
* IPython tree view
*
*/
/* We need an invisible input field on top of the sentense*/
/* "Drag file onto the list ..." */
.alternate_upload {
background-color: none;
display: inline;
}
.alternate_upload.form {
padding: 0;
margin: 0;
}
.alternate_upload input.fileinput {
text-align: center;
vertical-align: middle;
display: inline;
opacity: 0;
z-index: 2;
width: 12ex;
margin-right: -12ex;
}
.alternate_upload .btn-upload {
height: 22px;
}
/**
* Primary styles
*
* Author: Jupyter Development Team
*/
[dir="rtl"] #tabs li {
float: right;
}
ul#tabs {
margin-bottom: 4px;
}
[dir="rtl"] ul#tabs {
margin-right: 0px;
}
ul#tabs a {
padding-top: 6px;
padding-bottom: 4px;
}
ul.breadcrumb a:focus,
ul.breadcrumb a:hover {
text-decoration: none;
}
ul.breadcrumb i.icon-home {
font-size: 16px;
margin-right: 4px;
}
ul.breadcrumb span {
color: #5e5e5e;
}
.list_toolbar {
padding: 4px 0 4px 0;
vertical-align: middle;
}
.list_toolbar .tree-buttons {
padding-top: 1px;
}
[dir="rtl"] .list_toolbar .tree-buttons {
float: left !important;
}
[dir="rtl"] .list_toolbar .pull-right {
padding-top: 1px;
float: left !important;
}
[dir="rtl"] .list_toolbar .pull-left {
float: right !important;
}
.dynamic-buttons {
padding-top: 3px;
display: inline-block;
}
.list_toolbar [class*="span"] {
min-height: 24px;
}
.list_header {
font-weight: bold;
background-color: #EEE;
}
.list_placeholder {
font-weight: bold;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
}
.list_container {
margin-top: 4px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 2px;
}
.list_container > div {
border-bottom: 1px solid #ddd;
}
.list_container > div:hover .list-item {
background-color: red;
}
.list_container > div:last-child {
border: none;
}
.list_item:hover .list_item {
background-color: #ddd;
}
.list_item a {
text-decoration: none;
}
.list_item:hover {
background-color: #fafafa;
}
.list_header > div,
.list_item > div {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
line-height: 22px;
}
.list_header > div input,
.list_item > div input {
margin-right: 7px;
margin-left: 14px;
vertical-align: baseline;
line-height: 22px;
position: relative;
top: -1px;
}
.list_header > div .item_link,
.list_item > div .item_link {
margin-left: -1px;
vertical-align: baseline;
line-height: 22px;
}
.new-file input[type=checkbox] {
visibility: hidden;
}
.item_name {
line-height: 22px;
height: 24px;
}
.item_icon {
font-size: 14px;
color: #5e5e5e;
margin-right: 7px;
margin-left: 7px;
line-height: 22px;
vertical-align: baseline;
}
.item_buttons {
line-height: 1em;
margin-left: -5px;
}
.item_buttons .btn,
.item_buttons .btn-group,
.item_buttons .input-group {
float: left;
}
.item_buttons > .btn,
.item_buttons > .btn-group,
.item_buttons > .input-group {
margin-left: 5px;
}
.item_buttons .btn {
min-width: 13ex;
}
.item_buttons .running-indicator {
padding-top: 4px;
color: #5cb85c;
}
.item_buttons .kernel-name {
padding-top: 4px;
color: #5bc0de;
margin-right: 7px;
float: left;
}
.toolbar_info {
height: 24px;
line-height: 24px;
}
.list_item input:not([type=checkbox]) {
padding-top: 3px;
padding-bottom: 3px;
height: 22px;
line-height: 14px;
margin: 0px;
}
.highlight_text {
color: blue;
}
#project_name {
display: inline-block;
padding-left: 7px;
margin-left: -2px;
}
#project_name > .breadcrumb {
padding: 0px;
margin-bottom: 0px;
background-color: transparent;
font-weight: bold;
}
#tree-selector {
padding-right: 0px;
}
[dir="rtl"] #tree-selector a {
float: right;
}
#button-select-all {
min-width: 50px;
}
#select-all {
margin-left: 7px;
margin-right: 2px;
}
.menu_icon {
margin-right: 2px;
}
.tab-content .row {
margin-left: 0px;
margin-right: 0px;
}
.folder_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f114";
}
.folder_icon:before.pull-left {
margin-right: .3em;
}
.folder_icon:before.pull-right {
margin-left: .3em;
}
.notebook_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f02d";
position: relative;
top: -1px;
}
.notebook_icon:before.pull-left {
margin-right: .3em;
}
.notebook_icon:before.pull-right {
margin-left: .3em;
}
.running_notebook_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f02d";
position: relative;
top: -1px;
color: #5cb85c;
}
.running_notebook_icon:before.pull-left {
margin-right: .3em;
}
.running_notebook_icon:before.pull-right {
margin-left: .3em;
}
.file_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f016";
position: relative;
top: -2px;
}
.file_icon:before.pull-left {
margin-right: .3em;
}
.file_icon:before.pull-right {
margin-left: .3em;
}
#notebook_toolbar .pull-right {
padding-top: 0px;
margin-right: -1px;
}
ul#new-menu {
left: auto;
right: 0;
}
[dir="rtl"] #new-menu {
text-align: right;
}
.kernel-menu-icon {
padding-right: 12px;
width: 24px;
content: "\f096";
}
.kernel-menu-icon:before {
content: "\f096";
}
.kernel-menu-icon-current:before {
content: "\f00c";
}
#tab_content {
padding-top: 20px;
}
#running .panel-group .panel {
margin-top: 3px;
margin-bottom: 1em;
}
#running .panel-group .panel .panel-heading {
background-color: #EEE;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
line-height: 22px;
}
#running .panel-group .panel .panel-heading a:focus,
#running .panel-group .panel .panel-heading a:hover {
text-decoration: none;
}
#running .panel-group .panel .panel-body {
padding: 0px;
}
#running .panel-group .panel .panel-body .list_container {
margin-top: 0px;
margin-bottom: 0px;
border: 0px;
border-radius: 0px;
}
#running .panel-group .panel .panel-body .list_container .list_item {
border-bottom: 1px solid #ddd;
}
#running .panel-group .panel .panel-body .list_container .list_item:last-child {
border-bottom: 0px;
}
[dir="rtl"] #running .col-sm-8 {
float: right !important;
}
.delete-button {
display: none;
}
.duplicate-button {
display: none;
}
.rename-button {
display: none;
}
.shutdown-button {
display: none;
}
.dynamic-instructions {
display: inline-block;
padding-top: 4px;
}
/*!
*
* IPython text editor webapp
*
*/
.selected-keymap i.fa {
padding: 0px 5px;
}
.selected-keymap i.fa:before {
content: "\f00c";
}
#mode-menu {
overflow: auto;
max-height: 20em;
}
.edit_app #header {
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
.edit_app #menubar .navbar {
/* Use a negative 1 bottom margin, so the border overlaps the border of the
header */
margin-bottom: -1px;
}
.dirty-indicator {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
}
.dirty-indicator.pull-left {
margin-right: .3em;
}
.dirty-indicator.pull-right {
margin-left: .3em;
}
.dirty-indicator-dirty {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
}
.dirty-indicator-dirty.pull-left {
margin-right: .3em;
}
.dirty-indicator-dirty.pull-right {
margin-left: .3em;
}
.dirty-indicator-clean {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
}
.dirty-indicator-clean.pull-left {
margin-right: .3em;
}
.dirty-indicator-clean.pull-right {
margin-left: .3em;
}
.dirty-indicator-clean:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f00c";
}
.dirty-indicator-clean:before.pull-left {
margin-right: .3em;
}
.dirty-indicator-clean:before.pull-right {
margin-left: .3em;
}
#filename {
font-size: 16pt;
display: table;
padding: 0px 5px;
}
#current-mode {
padding-left: 5px;
padding-right: 5px;
}
#texteditor-backdrop {
padding-top: 20px;
padding-bottom: 20px;
}
@media not print {
#texteditor-backdrop {
background-color: #EEE;
}
}
@media print {
#texteditor-backdrop #texteditor-container .CodeMirror-gutter,
#texteditor-backdrop #texteditor-container .CodeMirror-gutters {
background-color: #fff;
}
}
@media not print {
#texteditor-backdrop #texteditor-container .CodeMirror-gutter,
#texteditor-backdrop #texteditor-container .CodeMirror-gutters {
background-color: #fff;
}
}
@media not print {
#texteditor-backdrop #texteditor-container {
padding: 0px;
background-color: #fff;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
}
/*!
*
* IPython notebook
*
*/
/* CSS font colors for translated ANSI colors. */
.ansibold {
font-weight: bold;
}
/* use dark versions for foreground, to improve visibility */
.ansiblack {
color: black;
}
.ansired {
color: darkred;
}
.ansigreen {
color: darkgreen;
}
.ansiyellow {
color: #c4a000;
}
.ansiblue {
color: darkblue;
}
.ansipurple {
color: darkviolet;
}
.ansicyan {
color: steelblue;
}
.ansigray {
color: gray;
}
/* and light for background, for the same reason */
.ansibgblack {
background-color: black;
}
.ansibgred {
background-color: red;
}
.ansibggreen {
background-color: green;
}
.ansibgyellow {
background-color: yellow;
}
.ansibgblue {
background-color: blue;
}
.ansibgpurple {
background-color: magenta;
}
.ansibgcyan {
background-color: cyan;
}
.ansibggray {
background-color: gray;
}
div.cell {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
border-radius: 2px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
border-width: 1px;
border-style: solid;
border-color: transparent;
width: 100%;
padding: 5px;
/* This acts as a spacer between cells, that is outside the border */
margin: 0px;
outline: none;
border-left-width: 1px;
padding-left: 5px;
background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);
}
div.cell.jupyter-soft-selected {
border-left-color: #90CAF9;
border-left-color: #E3F2FD;
border-left-width: 1px;
padding-left: 5px;
border-right-color: #E3F2FD;
border-right-width: 1px;
background: #E3F2FD;
}
@media print {
div.cell.jupyter-soft-selected {
border-color: transparent;
}
}
div.cell.selected {
border-color: #ababab;
border-left-width: 0px;
padding-left: 6px;
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);
}
@media print {
div.cell.selected {
border-color: transparent;
}
}
div.cell.selected.jupyter-soft-selected {
border-left-width: 0;
padding-left: 6px;
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);
}
.edit_mode div.cell.selected {
border-color: #66BB6A;
border-left-width: 0px;
padding-left: 6px;
background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);
}
@media print {
.edit_mode div.cell.selected {
border-color: transparent;
}
}
.prompt {
/* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
min-width: 14ex;
/* This padding is tuned to match the padding on the CodeMirror editor. */
padding: 0.4em;
margin: 0px;
font-family: monospace;
text-align: right;
/* This has to match that of the the CodeMirror class line-height below */
line-height: 1.21429em;
/* Don't highlight prompt number selection */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
/* Use default cursor */
cursor: default;
}
@media (max-width: 540px) {
.prompt {
text-align: left;
}
}
div.inner_cell {
min-width: 0;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
/* input_area and input_prompt must match in top border and margin for alignment */
div.input_area {
border: 1px solid #cfcfcf;
border-radius: 2px;
background: #f7f7f7;
line-height: 1.21429em;
}
/* This is needed so that empty prompt areas can collapse to zero height when there
is no content in the output_subarea and the prompt. The main purpose of this is
to make sure that empty JavaScript output_subareas have no height. */
div.prompt:empty {
padding-top: 0;
padding-bottom: 0;
}
div.unrecognized_cell {
padding: 5px 5px 5px 0px;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
div.unrecognized_cell .inner_cell {
border-radius: 2px;
padding: 5px;
font-weight: bold;
color: red;
border: 1px solid #cfcfcf;
background: #eaeaea;
}
div.unrecognized_cell .inner_cell a {
color: inherit;
text-decoration: none;
}
div.unrecognized_cell .inner_cell a:hover {
color: inherit;
text-decoration: none;
}
@media (max-width: 540px) {
div.unrecognized_cell > div.prompt {
display: none;
}
}
div.code_cell {
/* avoid page breaking on code cells when printing */
}
@media print {
div.code_cell {
page-break-inside: avoid;
}
}
/* any special styling for code cells that are currently running goes here */
div.input {
page-break-inside: avoid;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
@media (max-width: 540px) {
div.input {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
}
/* input_area and input_prompt must match in top border and margin for alignment */
div.input_prompt {
color: #303F9F;
border-top: 1px solid transparent;
}
div.input_area > div.highlight {
margin: 0.4em;
border: none;
padding: 0px;
background-color: transparent;
}
div.input_area > div.highlight > pre {
margin: 0px;
border: none;
padding: 0px;
background-color: transparent;
}
/* The following gets added to the <head> if it is detected that the user has a
* monospace font with inconsistent normal/bold/italic height. See
* notebookmain.js. Such fonts will have keywords vertically offset with
* respect to the rest of the text. The user should select a better font.
* See: https://github.com/ipython/ipython/issues/1503
*
* .CodeMirror span {
* vertical-align: bottom;
* }
*/
.CodeMirror {
line-height: 1.21429em;
/* Changed from 1em to our global default */
font-size: 14px;
height: auto;
/* Changed to auto to autogrow */
background: none;
/* Changed from white to allow our bg to show through */
}
.CodeMirror-scroll {
/* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
/* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
overflow-y: hidden;
overflow-x: auto;
}
.CodeMirror-lines {
/* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
/* we have set a different line-height and want this to scale with that. */
padding: 0.4em;
}
.CodeMirror-linenumber {
padding: 0 8px 0 4px;
}
.CodeMirror-gutters {
border-bottom-left-radius: 2px;
border-top-left-radius: 2px;
}
.CodeMirror pre {
/* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
/* .CodeMirror-lines */
padding: 0;
border: 0;
border-radius: 0;
}
/*
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
Adapted from GitHub theme
*/
.highlight-base {
color: #000;
}
.highlight-variable {
color: #000;
}
.highlight-variable-2 {
color: #1a1a1a;
}
.highlight-variable-3 {
color: #333333;
}
.highlight-string {
color: #BA2121;
}
.highlight-comment {
color: #408080;
font-style: italic;
}
.highlight-number {
color: #080;
}
.highlight-atom {
color: #88F;
}
.highlight-keyword {
color: #008000;
font-weight: bold;
}
.highlight-builtin {
color: #008000;
}
.highlight-error {
color: #f00;
}
.highlight-operator {
color: #AA22FF;
font-weight: bold;
}
.highlight-meta {
color: #AA22FF;
}
/* previously not defined, copying from default codemirror */
.highlight-def {
color: #00f;
}
.highlight-string-2 {
color: #f50;
}
.highlight-qualifier {
color: #555;
}
.highlight-bracket {
color: #997;
}
.highlight-tag {
color: #170;
}
.highlight-attribute {
color: #00c;
}
.highlight-header {
color: blue;
}
.highlight-quote {
color: #090;
}
.highlight-link {
color: #00c;
}
/* apply the same style to codemirror */
.cm-s-ipython span.cm-keyword {
color: #008000;
font-weight: bold;
}
.cm-s-ipython span.cm-atom {
color: #88F;
}
.cm-s-ipython span.cm-number {
color: #080;
}
.cm-s-ipython span.cm-def {
color: #00f;
}
.cm-s-ipython span.cm-variable {
color: #000;
}
.cm-s-ipython span.cm-operator {
color: #AA22FF;
font-weight: bold;
}
.cm-s-ipython span.cm-variable-2 {
color: #1a1a1a;
}
.cm-s-ipython span.cm-variable-3 {
color: #333333;
}
.cm-s-ipython span.cm-comment {
color: #408080;
font-style: italic;
}
.cm-s-ipython span.cm-string {
color: #BA2121;
}
.cm-s-ipython span.cm-string-2 {
color: #f50;
}
.cm-s-ipython span.cm-meta {
color: #AA22FF;
}
.cm-s-ipython span.cm-qualifier {
color: #555;
}
.cm-s-ipython span.cm-builtin {
color: #008000;
}
.cm-s-ipython span.cm-bracket {
color: #997;
}
.cm-s-ipython span.cm-tag {
color: #170;
}
.cm-s-ipython span.cm-attribute {
color: #00c;
}
.cm-s-ipython span.cm-header {
color: blue;
}
.cm-s-ipython span.cm-quote {
color: #090;
}
.cm-s-ipython span.cm-link {
color: #00c;
}
.cm-s-ipython span.cm-error {
color: #f00;
}
.cm-s-ipython span.cm-tab {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
background-position: right;
background-repeat: no-repeat;
}
div.output_wrapper {
/* this position must be relative to enable descendents to be absolute within it */
position: relative;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
z-index: 1;
}
/* class for the output area when it should be height-limited */
div.output_scroll {
/* ideally, this would be max-height, but FF barfs all over that */
height: 24em;
/* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
width: 100%;
overflow: auto;
border-radius: 2px;
-webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
display: block;
}
/* output div while it is collapsed */
div.output_collapsed {
margin: 0px;
padding: 0px;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
div.out_prompt_overlay {
height: 100%;
padding: 0px 0.4em;
position: absolute;
border-radius: 2px;
}
div.out_prompt_overlay:hover {
/* use inner shadow to get border that is computed the same on WebKit/FF */
-webkit-box-shadow: inset 0 0 1px #000;
box-shadow: inset 0 0 1px #000;
background: rgba(240, 240, 240, 0.5);
}
div.output_prompt {
color: #D84315;
}
/* This class is the outer container of all output sections. */
div.output_area {
padding: 0px;
page-break-inside: avoid;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
div.output_area .MathJax_Display {
text-align: left !important;
}
div.output_area .rendered_html table {
margin-left: 0;
margin-right: 0;
}
div.output_area .rendered_html img {
margin-left: 0;
margin-right: 0;
}
div.output_area img,
div.output_area svg {
max-width: 100%;
height: auto;
}
div.output_area img.unconfined,
div.output_area svg.unconfined {
max-width: none;
}
/* This is needed to protect the pre formating from global settings such
as that of bootstrap */
.output {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
@media (max-width: 540px) {
div.output_area {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
}
div.output_area pre {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
color: black;
background-color: transparent;
border-radius: 0;
}
/* This class is for the output subarea inside the output_area and after
the prompt div. */
div.output_subarea {
overflow-x: auto;
padding: 0.4em;
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
max-width: calc(100% - 14ex);
}
div.output_scroll div.output_subarea {
overflow-x: visible;
}
/* The rest of the output_* classes are for special styling of the different
output types */
/* all text output has this class: */
div.output_text {
text-align: left;
color: #000;
/* This has to match that of the the CodeMirror class line-height below */
line-height: 1.21429em;
}
/* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
div.output_stderr {
background: #fdd;
/* very light red background for stderr */
}
div.output_latex {
text-align: left;
}
/* Empty output_javascript divs should have no height */
div.output_javascript:empty {
padding: 0;
}
.js-error {
color: darkred;
}
/* raw_input styles */
div.raw_input_container {
line-height: 1.21429em;
padding-top: 5px;
}
pre.raw_input_prompt {
/* nothing needed here. */
}
input.raw_input {
font-family: monospace;
font-size: inherit;
color: inherit;
width: auto;
/* make sure input baseline aligns with prompt */
vertical-align: baseline;
/* padding + margin = 0.5em between prompt and cursor */
padding: 0em 0.25em;
margin: 0em 0.25em;
}
input.raw_input:focus {
box-shadow: none;
}
p.p-space {
margin-bottom: 10px;
}
div.output_unrecognized {
padding: 5px;
font-weight: bold;
color: red;
}
div.output_unrecognized a {
color: inherit;
text-decoration: none;
}
div.output_unrecognized a:hover {
color: inherit;
text-decoration: none;
}
.rendered_html {
color: #000;
/* any extras will just be numbers: */
}
.rendered_html em {
font-style: italic;
}
.rendered_html strong {
font-weight: bold;
}
.rendered_html u {
text-decoration: underline;
}
.rendered_html :link {
text-decoration: underline;
}
.rendered_html :visited {
text-decoration: underline;
}
.rendered_html h1 {
font-size: 185.7%;
margin: 1.08em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h2 {
font-size: 157.1%;
margin: 1.27em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h3 {
font-size: 128.6%;
margin: 1.55em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h4 {
font-size: 100%;
margin: 2em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h5 {
font-size: 100%;
margin: 2em 0 0 0;
font-weight: bold;
line-height: 1.0;
font-style: italic;
}
.rendered_html h6 {
font-size: 100%;
margin: 2em 0 0 0;
font-weight: bold;
line-height: 1.0;
font-style: italic;
}
.rendered_html h1:first-child {
margin-top: 0.538em;
}
.rendered_html h2:first-child {
margin-top: 0.636em;
}
.rendered_html h3:first-child {
margin-top: 0.777em;
}
.rendered_html h4:first-child {
margin-top: 1em;
}
.rendered_html h5:first-child {
margin-top: 1em;
}
.rendered_html h6:first-child {
margin-top: 1em;
}
.rendered_html ul {
list-style: disc;
margin: 0em 2em;
padding-left: 0px;
}
.rendered_html ul ul {
list-style: square;
margin: 0em 2em;
}
.rendered_html ul ul ul {
list-style: circle;
margin: 0em 2em;
}
.rendered_html ol {
list-style: decimal;
margin: 0em 2em;
padding-left: 0px;
}
.rendered_html ol ol {
list-style: upper-alpha;
margin: 0em 2em;
}
.rendered_html ol ol ol {
list-style: lower-alpha;
margin: 0em 2em;
}
.rendered_html ol ol ol ol {
list-style: lower-roman;
margin: 0em 2em;
}
.rendered_html ol ol ol ol ol {
list-style: decimal;
margin: 0em 2em;
}
.rendered_html * + ul {
margin-top: 1em;
}
.rendered_html * + ol {
margin-top: 1em;
}
.rendered_html hr {
color: black;
background-color: black;
}
.rendered_html pre {
margin: 1em 2em;
}
.rendered_html pre,
.rendered_html code {
border: 0;
background-color: #fff;
color: #000;
font-size: 100%;
padding: 0px;
}
.rendered_html blockquote {
margin: 1em 2em;
}
.rendered_html table {
margin-left: auto;
margin-right: auto;
border: 1px solid black;
border-collapse: collapse;
}
.rendered_html tr,
.rendered_html th,
.rendered_html td {
border: 1px solid black;
border-collapse: collapse;
margin: 1em 2em;
}
.rendered_html td,
.rendered_html th {
text-align: left;
vertical-align: middle;
padding: 4px;
}
.rendered_html th {
font-weight: bold;
}
.rendered_html * + table {
margin-top: 1em;
}
.rendered_html p {
text-align: left;
}
.rendered_html * + p {
margin-top: 1em;
}
.rendered_html img {
display: block;
margin-left: auto;
margin-right: auto;
}
.rendered_html * + img {
margin-top: 1em;
}
.rendered_html img,
.rendered_html svg {
max-width: 100%;
height: auto;
}
.rendered_html img.unconfined,
.rendered_html svg.unconfined {
max-width: none;
}
div.text_cell {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
@media (max-width: 540px) {
div.text_cell > div.prompt {
display: none;
}
}
div.text_cell_render {
/*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
outline: none;
resize: none;
width: inherit;
border-style: none;
padding: 0.5em 0.5em 0.5em 0.4em;
color: #000;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
a.anchor-link:link {
text-decoration: none;
padding: 0px 20px;
visibility: hidden;
}
h1:hover .anchor-link,
h2:hover .anchor-link,
h3:hover .anchor-link,
h4:hover .anchor-link,
h5:hover .anchor-link,
h6:hover .anchor-link {
visibility: visible;
}
.text_cell.rendered .input_area {
display: none;
}
.text_cell.rendered .rendered_html {
overflow-x: auto;
overflow-y: hidden;
}
.text_cell.unrendered .text_cell_render {
display: none;
}
.cm-header-1,
.cm-header-2,
.cm-header-3,
.cm-header-4,
.cm-header-5,
.cm-header-6 {
font-weight: bold;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cm-header-1 {
font-size: 185.7%;
}
.cm-header-2 {
font-size: 157.1%;
}
.cm-header-3 {
font-size: 128.6%;
}
.cm-header-4 {
font-size: 110%;
}
.cm-header-5 {
font-size: 100%;
font-style: italic;
}
.cm-header-6 {
font-size: 100%;
font-style: italic;
}
/*!
*
* IPython notebook webapp
*
*/
@media (max-width: 767px) {
.notebook_app {
padding-left: 0px;
padding-right: 0px;
}
}
#ipython-main-app {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 100%;
}
div#notebook_panel {
margin: 0px;
padding: 0px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 100%;
}
div#notebook {
font-size: 14px;
line-height: 20px;
overflow-y: hidden;
overflow-x: auto;
width: 100%;
/* This spaces the page away from the edge of the notebook area */
padding-top: 20px;
margin: 0px;
outline: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
min-height: 100%;
}
@media not print {
#notebook-container {
padding: 15px;
background-color: #fff;
min-height: 0;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
}
@media print {
#notebook-container {
width: 100%;
}
}
div.ui-widget-content {
border: 1px solid #ababab;
outline: none;
}
pre.dialog {
background-color: #f7f7f7;
border: 1px solid #ddd;
border-radius: 2px;
padding: 0.4em;
padding-left: 2em;
}
p.dialog {
padding: 0.2em;
}
/* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
*/
pre,
code,
kbd,
samp {
white-space: pre-wrap;
}
#fonttest {
font-family: monospace;
}
p {
margin-bottom: 0;
}
.end_space {
min-height: 100px;
transition: height .2s ease;
}
.notebook_app > #header {
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
@media not print {
.notebook_app {
background-color: #EEE;
}
}
kbd {
border-style: solid;
border-width: 1px;
box-shadow: none;
margin: 2px;
padding-left: 2px;
padding-right: 2px;
padding-top: 1px;
padding-bottom: 1px;
}
/* CSS for the cell toolbar */
.celltoolbar {
border: thin solid #CFCFCF;
border-bottom: none;
background: #EEE;
border-radius: 2px 2px 0px 0px;
width: 100%;
height: 29px;
padding-right: 4px;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
/* Old browsers */
-webkit-box-pack: end;
-moz-box-pack: end;
box-pack: end;
/* Modern browsers */
justify-content: flex-end;
display: -webkit-flex;
}
@media print {
.celltoolbar {
display: none;
}
}
.ctb_hideshow {
display: none;
vertical-align: bottom;
}
/* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
Cell toolbars are only shown when the ctb_global_show class is also set.
*/
.ctb_global_show .ctb_show.ctb_hideshow {
display: block;
}
.ctb_global_show .ctb_show + .input_area,
.ctb_global_show .ctb_show + div.text_cell_input,
.ctb_global_show .ctb_show ~ div.text_cell_render {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
}
.ctb_global_show .ctb_show ~ div.text_cell_render {
border: 1px solid #cfcfcf;
}
.celltoolbar {
font-size: 87%;
padding-top: 3px;
}
.celltoolbar select {
display: block;
width: 100%;
height: 32px;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
width: inherit;
font-size: inherit;
height: 22px;
padding: 0px;
display: inline-block;
}
.celltoolbar select:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.celltoolbar select::-moz-placeholder {
color: #999;
opacity: 1;
}
.celltoolbar select:-ms-input-placeholder {
color: #999;
}
.celltoolbar select::-webkit-input-placeholder {
color: #999;
}
.celltoolbar select::-ms-expand {
border: 0;
background-color: transparent;
}
.celltoolbar select[disabled],
.celltoolbar select[readonly],
fieldset[disabled] .celltoolbar select {
background-color: #eeeeee;
opacity: 1;
}
.celltoolbar select[disabled],
fieldset[disabled] .celltoolbar select {
cursor: not-allowed;
}
textarea.celltoolbar select {
height: auto;
}
select.celltoolbar select {
height: 30px;
line-height: 30px;
}
textarea.celltoolbar select,
select[multiple].celltoolbar select {
height: auto;
}
.celltoolbar label {
margin-left: 5px;
margin-right: 5px;
}
.completions {
position: absolute;
z-index: 110;
overflow: hidden;
border: 1px solid #ababab;
border-radius: 2px;
-webkit-box-shadow: 0px 6px 10px -1px #adadad;
box-shadow: 0px 6px 10px -1px #adadad;
line-height: 1;
}
.completions select {
background: white;
outline: none;
border: none;
padding: 0px;
margin: 0px;
overflow: auto;
font-family: monospace;
font-size: 110%;
color: #000;
width: auto;
}
.completions select option.context {
color: #286090;
}
#kernel_logo_widget {
float: right !important;
float: right;
}
#kernel_logo_widget .current_kernel_logo {
display: none;
margin-top: -1px;
margin-bottom: -1px;
width: 32px;
height: 32px;
}
#menubar {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
margin-top: 1px;
}
#menubar .navbar {
border-top: 1px;
border-radius: 0px 0px 2px 2px;
margin-bottom: 0px;
}
#menubar .navbar-toggle {
float: left;
padding-top: 7px;
padding-bottom: 7px;
border: none;
}
#menubar .navbar-collapse {
clear: left;
}
.nav-wrapper {
border-bottom: 1px solid #e7e7e7;
}
i.menu-icon {
padding-top: 4px;
}
ul#help_menu li a {
overflow: hidden;
padding-right: 2.2em;
}
ul#help_menu li a i {
margin-right: -1.2em;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
}
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-submenu > a:after {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: block;
content: "\f0da";
float: right;
color: #333333;
margin-top: 2px;
margin-right: -10px;
}
.dropdown-submenu > a:after.pull-left {
margin-right: .3em;
}
.dropdown-submenu > a:after.pull-right {
margin-left: .3em;
}
.dropdown-submenu:hover > a:after {
color: #262626;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
}
#notification_area {
float: right !important;
float: right;
z-index: 10;
}
.indicator_area {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
}
#kernel_indicator {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
border-left: 1px solid;
}
#kernel_indicator .kernel_indicator_name {
padding-left: 5px;
padding-right: 5px;
}
#modal_indicator {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
}
#readonly-indicator {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
margin-top: 2px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
display: none;
}
.modal_indicator:before {
width: 1.28571429em;
text-align: center;
}
.edit_mode .modal_indicator:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f040";
}
.edit_mode .modal_indicator:before.pull-left {
margin-right: .3em;
}
.edit_mode .modal_indicator:before.pull-right {
margin-left: .3em;
}
.command_mode .modal_indicator:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: ' ';
}
.command_mode .modal_indicator:before.pull-left {
margin-right: .3em;
}
.command_mode .modal_indicator:before.pull-right {
margin-left: .3em;
}
.kernel_idle_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f10c";
}
.kernel_idle_icon:before.pull-left {
margin-right: .3em;
}
.kernel_idle_icon:before.pull-right {
margin-left: .3em;
}
.kernel_busy_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f111";
}
.kernel_busy_icon:before.pull-left {
margin-right: .3em;
}
.kernel_busy_icon:before.pull-right {
margin-left: .3em;
}
.kernel_dead_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f1e2";
}
.kernel_dead_icon:before.pull-left {
margin-right: .3em;
}
.kernel_dead_icon:before.pull-right {
margin-left: .3em;
}
.kernel_disconnected_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f127";
}
.kernel_disconnected_icon:before.pull-left {
margin-right: .3em;
}
.kernel_disconnected_icon:before.pull-right {
margin-left: .3em;
}
.notification_widget {
color: #777;
z-index: 10;
background: rgba(240, 240, 240, 0.5);
margin-right: 4px;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.notification_widget:focus,
.notification_widget.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.notification_widget:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.notification_widget:active,
.notification_widget.active,
.open > .dropdown-toggle.notification_widget {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.notification_widget:active:hover,
.notification_widget.active:hover,
.open > .dropdown-toggle.notification_widget:hover,
.notification_widget:active:focus,
.notification_widget.active:focus,
.open > .dropdown-toggle.notification_widget:focus,
.notification_widget:active.focus,
.notification_widget.active.focus,
.open > .dropdown-toggle.notification_widget.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.notification_widget:active,
.notification_widget.active,
.open > .dropdown-toggle.notification_widget {
background-image: none;
}
.notification_widget.disabled:hover,
.notification_widget[disabled]:hover,
fieldset[disabled] .notification_widget:hover,
.notification_widget.disabled:focus,
.notification_widget[disabled]:focus,
fieldset[disabled] .notification_widget:focus,
.notification_widget.disabled.focus,
.notification_widget[disabled].focus,
fieldset[disabled] .notification_widget.focus {
background-color: #fff;
border-color: #ccc;
}
.notification_widget .badge {
color: #fff;
background-color: #333;
}
.notification_widget.warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
}
.notification_widget.warning:focus,
.notification_widget.warning.focus {
color: #fff;
background-color: #ec971f;
border-color: #985f0d;
}
.notification_widget.warning:hover {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.notification_widget.warning:active,
.notification_widget.warning.active,
.open > .dropdown-toggle.notification_widget.warning {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.notification_widget.warning:active:hover,
.notification_widget.warning.active:hover,
.open > .dropdown-toggle.notification_widget.warning:hover,
.notification_widget.warning:active:focus,
.notification_widget.warning.active:focus,
.open > .dropdown-toggle.notification_widget.warning:focus,
.notification_widget.warning:active.focus,
.notification_widget.warning.active.focus,
.open > .dropdown-toggle.notification_widget.warning.focus {
color: #fff;
background-color: #d58512;
border-color: #985f0d;
}
.notification_widget.warning:active,
.notification_widget.warning.active,
.open > .dropdown-toggle.notification_widget.warning {
background-image: none;
}
.notification_widget.warning.disabled:hover,
.notification_widget.warning[disabled]:hover,
fieldset[disabled] .notification_widget.warning:hover,
.notification_widget.warning.disabled:focus,
.notification_widget.warning[disabled]:focus,
fieldset[disabled] .notification_widget.warning:focus,
.notification_widget.warning.disabled.focus,
.notification_widget.warning[disabled].focus,
fieldset[disabled] .notification_widget.warning.focus {
background-color: #f0ad4e;
border-color: #eea236;
}
.notification_widget.warning .badge {
color: #f0ad4e;
background-color: #fff;
}
.notification_widget.success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.notification_widget.success:focus,
.notification_widget.success.focus {
color: #fff;
background-color: #449d44;
border-color: #255625;
}
.notification_widget.success:hover {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.notification_widget.success:active,
.notification_widget.success.active,
.open > .dropdown-toggle.notification_widget.success {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.notification_widget.success:active:hover,
.notification_widget.success.active:hover,
.open > .dropdown-toggle.notification_widget.success:hover,
.notification_widget.success:active:focus,
.notification_widget.success.active:focus,
.open > .dropdown-toggle.notification_widget.success:focus,
.notification_widget.success:active.focus,
.notification_widget.success.active.focus,
.open > .dropdown-toggle.notification_widget.success.focus {
color: #fff;
background-color: #398439;
border-color: #255625;
}
.notification_widget.success:active,
.notification_widget.success.active,
.open > .dropdown-toggle.notification_widget.success {
background-image: none;
}
.notification_widget.success.disabled:hover,
.notification_widget.success[disabled]:hover,
fieldset[disabled] .notification_widget.success:hover,
.notification_widget.success.disabled:focus,
.notification_widget.success[disabled]:focus,
fieldset[disabled] .notification_widget.success:focus,
.notification_widget.success.disabled.focus,
.notification_widget.success[disabled].focus,
fieldset[disabled] .notification_widget.success.focus {
background-color: #5cb85c;
border-color: #4cae4c;
}
.notification_widget.success .badge {
color: #5cb85c;
background-color: #fff;
}
.notification_widget.info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da;
}
.notification_widget.info:focus,
.notification_widget.info.focus {
color: #fff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.notification_widget.info:hover {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.notification_widget.info:active,
.notification_widget.info.active,
.open > .dropdown-toggle.notification_widget.info {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.notification_widget.info:active:hover,
.notification_widget.info.active:hover,
.open > .dropdown-toggle.notification_widget.info:hover,
.notification_widget.info:active:focus,
.notification_widget.info.active:focus,
.open > .dropdown-toggle.notification_widget.info:focus,
.notification_widget.info:active.focus,
.notification_widget.info.active.focus,
.open > .dropdown-toggle.notification_widget.info.focus {
color: #fff;
background-color: #269abc;
border-color: #1b6d85;
}
.notification_widget.info:active,
.notification_widget.info.active,
.open > .dropdown-toggle.notification_widget.info {
background-image: none;
}
.notification_widget.info.disabled:hover,
.notification_widget.info[disabled]:hover,
fieldset[disabled] .notification_widget.info:hover,
.notification_widget.info.disabled:focus,
.notification_widget.info[disabled]:focus,
fieldset[disabled] .notification_widget.info:focus,
.notification_widget.info.disabled.focus,
.notification_widget.info[disabled].focus,
fieldset[disabled] .notification_widget.info.focus {
background-color: #5bc0de;
border-color: #46b8da;
}
.notification_widget.info .badge {
color: #5bc0de;
background-color: #fff;
}
.notification_widget.danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.notification_widget.danger:focus,
.notification_widget.danger.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.notification_widget.danger:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.notification_widget.danger:active,
.notification_widget.danger.active,
.open > .dropdown-toggle.notification_widget.danger {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.notification_widget.danger:active:hover,
.notification_widget.danger.active:hover,
.open > .dropdown-toggle.notification_widget.danger:hover,
.notification_widget.danger:active:focus,
.notification_widget.danger.active:focus,
.open > .dropdown-toggle.notification_widget.danger:focus,
.notification_widget.danger:active.focus,
.notification_widget.danger.active.focus,
.open > .dropdown-toggle.notification_widget.danger.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.notification_widget.danger:active,
.notification_widget.danger.active,
.open > .dropdown-toggle.notification_widget.danger {
background-image: none;
}
.notification_widget.danger.disabled:hover,
.notification_widget.danger[disabled]:hover,
fieldset[disabled] .notification_widget.danger:hover,
.notification_widget.danger.disabled:focus,
.notification_widget.danger[disabled]:focus,
fieldset[disabled] .notification_widget.danger:focus,
.notification_widget.danger.disabled.focus,
.notification_widget.danger[disabled].focus,
fieldset[disabled] .notification_widget.danger.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.notification_widget.danger .badge {
color: #d9534f;
background-color: #fff;
}
div#pager {
background-color: #fff;
font-size: 14px;
line-height: 20px;
overflow: hidden;
display: none;
position: fixed;
bottom: 0px;
width: 100%;
max-height: 50%;
padding-top: 8px;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
/* Display over codemirror */
z-index: 100;
/* Hack which prevents jquery ui resizable from changing top. */
top: auto !important;
}
div#pager pre {
line-height: 1.21429em;
color: #000;
background-color: #f7f7f7;
padding: 0.4em;
}
div#pager #pager-button-area {
position: absolute;
top: 8px;
right: 20px;
}
div#pager #pager-contents {
position: relative;
overflow: auto;
width: 100%;
height: 100%;
}
div#pager #pager-contents #pager-container {
position: relative;
padding: 15px 0px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
div#pager .ui-resizable-handle {
top: 0px;
height: 8px;
background: #f7f7f7;
border-top: 1px solid #cfcfcf;
border-bottom: 1px solid #cfcfcf;
/* This injects handle bars (a short, wide = symbol) for
the resize handle. */
}
div#pager .ui-resizable-handle::after {
content: '';
top: 2px;
left: 50%;
height: 3px;
width: 30px;
margin-left: -15px;
position: absolute;
border-top: 1px solid #cfcfcf;
}
.quickhelp {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
line-height: 1.8em;
}
.shortcut_key {
display: inline-block;
width: 21ex;
text-align: right;
font-family: monospace;
}
.shortcut_descr {
display: inline-block;
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
span.save_widget {
margin-top: 6px;
}
span.save_widget span.filename {
height: 1em;
line-height: 1em;
padding: 3px;
margin-left: 16px;
border: none;
font-size: 146.5%;
border-radius: 2px;
}
span.save_widget span.filename:hover {
background-color: #e6e6e6;
}
span.checkpoint_status,
span.autosave_status {
font-size: small;
}
@media (max-width: 767px) {
span.save_widget {
font-size: small;
}
span.checkpoint_status,
span.autosave_status {
display: none;
}
}
@media (min-width: 768px) and (max-width: 991px) {
span.checkpoint_status {
display: none;
}
span.autosave_status {
font-size: x-small;
}
}
.toolbar {
padding: 0px;
margin-left: -5px;
margin-top: 2px;
margin-bottom: 5px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.toolbar select,
.toolbar label {
width: auto;
vertical-align: middle;
margin-right: 2px;
margin-bottom: 0px;
display: inline;
font-size: 92%;
margin-left: 0.3em;
margin-right: 0.3em;
padding: 0px;
padding-top: 3px;
}
.toolbar .btn {
padding: 2px 8px;
}
.toolbar .btn-group {
margin-top: 0px;
margin-left: 5px;
}
#maintoolbar {
margin-bottom: -3px;
margin-top: -8px;
border: 0px;
min-height: 27px;
margin-left: 0px;
padding-top: 11px;
padding-bottom: 3px;
}
#maintoolbar .navbar-text {
float: none;
vertical-align: middle;
text-align: right;
margin-left: 5px;
margin-right: 0px;
margin-top: 0px;
}
.select-xs {
height: 24px;
}
.pulse,
.dropdown-menu > li > a.pulse,
li.pulse > a.dropdown-toggle,
li.pulse.open > a.dropdown-toggle {
background-color: #F37626;
color: white;
}
/**
* Primary styles
*
* Author: Jupyter Development Team
*/
/** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
* of chance of beeing generated from the ../less/[samename].less file, you can
* try to get back the less file by reverting somme commit in history
**/
/*
* We'll try to get something pretty, so we
* have some strange css to have the scroll bar on
* the left with fix button on the top right of the tooltip
*/
@-moz-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/*properties of tooltip after "expand"*/
.bigtooltip {
overflow: auto;
height: 200px;
-webkit-transition-property: height;
-webkit-transition-duration: 500ms;
-moz-transition-property: height;
-moz-transition-duration: 500ms;
transition-property: height;
transition-duration: 500ms;
}
/*properties of tooltip before "expand"*/
.smalltooltip {
-webkit-transition-property: height;
-webkit-transition-duration: 500ms;
-moz-transition-property: height;
-moz-transition-duration: 500ms;
transition-property: height;
transition-duration: 500ms;
text-overflow: ellipsis;
overflow: hidden;
height: 80px;
}
.tooltipbuttons {
position: absolute;
padding-right: 15px;
top: 0px;
right: 0px;
}
.tooltiptext {
/*avoid the button to overlap on some docstring*/
padding-right: 30px;
}
.ipython_tooltip {
max-width: 700px;
/*fade-in animation when inserted*/
-webkit-animation: fadeOut 400ms;
-moz-animation: fadeOut 400ms;
animation: fadeOut 400ms;
-webkit-animation: fadeIn 400ms;
-moz-animation: fadeIn 400ms;
animation: fadeIn 400ms;
vertical-align: middle;
background-color: #f7f7f7;
overflow: visible;
border: #ababab 1px solid;
outline: none;
padding: 3px;
margin: 0px;
padding-left: 7px;
font-family: monospace;
min-height: 50px;
-moz-box-shadow: 0px 6px 10px -1px #adadad;
-webkit-box-shadow: 0px 6px 10px -1px #adadad;
box-shadow: 0px 6px 10px -1px #adadad;
border-radius: 2px;
position: absolute;
z-index: 1000;
}
.ipython_tooltip a {
float: right;
}
.ipython_tooltip .tooltiptext pre {
border: 0;
border-radius: 0;
font-size: 100%;
background-color: #f7f7f7;
}
.pretooltiparrow {
left: 0px;
margin: 0px;
top: -16px;
width: 40px;
height: 16px;
overflow: hidden;
position: absolute;
}
.pretooltiparrow:before {
background-color: #f7f7f7;
border: 1px #ababab solid;
z-index: 11;
content: "";
position: absolute;
left: 15px;
top: 10px;
width: 25px;
height: 25px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
ul.typeahead-list i {
margin-left: -10px;
width: 18px;
}
ul.typeahead-list {
max-height: 80vh;
overflow: auto;
}
ul.typeahead-list > li > a {
/** Firefox bug **/
/* see https://github.com/jupyter/notebook/issues/559 */
white-space: normal;
}
.cmd-palette .modal-body {
padding: 7px;
}
.cmd-palette form {
background: white;
}
.cmd-palette input {
outline: none;
}
.no-shortcut {
display: none;
}
.command-shortcut:before {
content: "(command)";
padding-right: 3px;
color: #777777;
}
.edit-shortcut:before {
content: "(edit)";
padding-right: 3px;
color: #777777;
}
#find-and-replace #replace-preview .match,
#find-and-replace #replace-preview .insert {
background-color: #BBDEFB;
border-color: #90CAF9;
border-style: solid;
border-width: 1px;
border-radius: 0px;
}
#find-and-replace #replace-preview .replace .match {
background-color: #FFCDD2;
border-color: #EF9A9A;
border-radius: 0px;
}
#find-and-replace #replace-preview .replace .insert {
background-color: #C8E6C9;
border-color: #A5D6A7;
border-radius: 0px;
}
#find-and-replace #replace-preview {
max-height: 60vh;
overflow: auto;
}
#find-and-replace #replace-preview pre {
padding: 5px 10px;
}
.terminal-app {
background: #EEE;
}
.terminal-app #header {
background: #fff;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
.terminal-app .terminal {
width: 100%;
float: left;
font-family: monospace;
color: white;
background: black;
padding: 0.4em;
border-radius: 2px;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
}
.terminal-app .terminal,
.terminal-app .terminal dummy-screen {
line-height: 1em;
font-size: 14px;
}
.terminal-app .terminal .xterm-rows {
padding: 10px;
}
.terminal-app .terminal-cursor {
color: black;
background: white;
}
.terminal-app #terminado-container {
margin-top: 20px;
}
/*# sourceMappingURL=style.min.css.map */
</style>
<style type="text/css">
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #0044DD } /* Generic.Traceback */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #7D9029 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight .no { color: #880000 } /* Name.Constant */
.highlight .nd { color: #AA22FF } /* Name.Decorator */
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0000FF } /* Name.Function */
.highlight .nl { color: #A0A000 } /* Name.Label */
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
.highlight .mf { color: #666666 } /* Literal.Number.Float */
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
</style>
<style type="text/css">
/* Temporary definitions which will become obsolete with Notebook release 5.0 */
.ansi-black-fg { color: #3E424D; }
.ansi-black-bg { background-color: #3E424D; }
.ansi-black-intense-fg { color: #282C36; }
.ansi-black-intense-bg { background-color: #282C36; }
.ansi-red-fg { color: #E75C58; }
.ansi-red-bg { background-color: #E75C58; }
.ansi-red-intense-fg { color: #B22B31; }
.ansi-red-intense-bg { background-color: #B22B31; }
.ansi-green-fg { color: #00A250; }
.ansi-green-bg { background-color: #00A250; }
.ansi-green-intense-fg { color: #007427; }
.ansi-green-intense-bg { background-color: #007427; }
.ansi-yellow-fg { color: #DDB62B; }
.ansi-yellow-bg { background-color: #DDB62B; }
.ansi-yellow-intense-fg { color: #B27D12; }
.ansi-yellow-intense-bg { background-color: #B27D12; }
.ansi-blue-fg { color: #208FFB; }
.ansi-blue-bg { background-color: #208FFB; }
.ansi-blue-intense-fg { color: #0065CA; }
.ansi-blue-intense-bg { background-color: #0065CA; }
.ansi-magenta-fg { color: #D160C4; }
.ansi-magenta-bg { background-color: #D160C4; }
.ansi-magenta-intense-fg { color: #A03196; }
.ansi-magenta-intense-bg { background-color: #A03196; }
.ansi-cyan-fg { color: #60C6C8; }
.ansi-cyan-bg { background-color: #60C6C8; }
.ansi-cyan-intense-fg { color: #258F8F; }
.ansi-cyan-intense-bg { background-color: #258F8F; }
.ansi-white-fg { color: #C5C1B4; }
.ansi-white-bg { background-color: #C5C1B4; }
.ansi-white-intense-fg { color: #A1A6B2; }
.ansi-white-intense-bg { background-color: #A1A6B2; }
.ansi-bold { font-weight: bold; }
</style>
<style type="text/css">
/* Overrides of notebook CSS for static HTML export */
body {
overflow: visible;
padding: 8px;
}
div#notebook {
overflow: visible;
border-top: none;
}
@media print {
div.cell {
display: block;
page-break-inside: avoid;
}
div.output_wrapper {
display: block;
page-break-inside: avoid;
}
div.output {
display: block;
page-break-inside: avoid;
}
}
</style>
<!-- Custom stylesheet, it must be in the same directory as the html file -->
<link rel="stylesheet" href="custom.css">
<!-- Loading mathjax macro -->
<!-- Load mathjax -->
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>
<!-- MathJax configuration -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
processEnvironments: true
},
// Center justify equations in code and markdown cells. Elsewhere
// we use CSS to left justify single line equations in code cells.
displayAlign: 'center',
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}},
linebreaks: { automatic: true }
}
});
</script>
<!-- End of mathjax configuration --></head>
<body>
<div tabindex="-1" id="notebook" class="border-box-sizing">
<div class="container" id="notebook-container">
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h1 id="Web-Scraping-for-Reddit-&-Predicting-Comments">Web Scraping for Reddit & Predicting Comments<a class="anchor-link" href="#Web-Scraping-for-Reddit-&-Predicting-Comments">¶</a></h1>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>In this project, we will practice two major skills. Collecting data by scraping a website and then building a binary predictor.</p>
<p>As we discussed in week 2, and earlier today, there are two components to starting a data science problem: the problem statement, and acquiring the data.</p>
<p>For this article, your problem statement will be: <em>What characteristics of a post on Reddit contribute most to the overall interaction (as measured by number of comments)?</em></p>
<p>Your method for acquiring the data will be scraping the 'hot' threads as listed on the <a href="https://www.reddit.com/">Reddit homepage</a>. You'll acquire <em>AT LEAST FOUR</em> pieces of information about each thread:</p>
<ol>
<li>The title of the thread</li>
<li>The subreddit that the thread corresponds to</li>
<li>The length of time it has been up on Reddit</li>
<li>The number of comments on the thread</li>
</ol>
<p>Once you've got the data, you will build a classification model that, using Natural Language Processing and any other relevant features, predicts whether or not a given Reddit post will have above or below the <em>median</em> number of comments.</p>
<p><strong>BONUS PROBLEMS</strong></p>
<ol>
<li>If creating a logistic regression, GridSearch Ridge and Lasso for this model and report the best hyperparameter values.</li>
<li>Scrape the actual text of the threads using Selenium (you'll learn about this in Webscraping II).</li>
<li>Write the actual article that you're pitching and turn it into a blog post that you host on your personal website.</li>
</ol>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Scraping-Thread-Info-from-Reddit.com">Scraping Thread Info from Reddit.com<a class="anchor-link" href="#Scraping-Thread-Info-from-Reddit.com">¶</a></h3>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Set-up-a-request-(using-requests)-to-the-URL-below.-Use-BeautifulSoup-to-parse-the-page-and-extract-all-results">Set up a request (using requests) to the URL below. Use BeautifulSoup to parse the page and extract all results<a class="anchor-link" href="#Set-up-a-request-(using-requests)-to-the-URL-below.-Use-BeautifulSoup-to-parse-the-page-and-extract-all-results">¶</a></h4>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [1]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="nn">requests</span>
<span class="kn">from</span> <span class="nn">bs4</span> <span class="k">import</span> <span class="n">BeautifulSoup</span>
<span class="kn">from</span> <span class="nn">uuid</span> <span class="k">import</span> <span class="n">uuid4</span> <span class="k">as</span> <span class="n">uuid</span>
<span class="kn">from</span> <span class="nn">time</span> <span class="k">import</span> <span class="n">sleep</span>
<span class="kn">import</span> <span class="nn">pandas</span> <span class="k">as</span> <span class="nn">pd</span>
<span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
<span class="kn">import</span> <span class="nn">re</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [2]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">URL</span> <span class="o">=</span> <span class="s2">"http://www.reddit.com"</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [3]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1">## YOUR CODE HERE</span>
<span class="n">html</span> <span class="o">=</span> <span class="n">requests</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="n">URL</span><span class="p">,</span> <span class="n">headers</span><span class="o">=</span><span class="p">{</span><span class="s2">"User-agent"</span><span class="p">:</span> <span class="nb">str</span><span class="p">(</span><span class="n">uuid</span><span class="p">())})</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [4]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">html</span><span class="o">.</span><span class="n">status_code</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[4]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>200</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [5]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">html</span><span class="o">.</span><span class="n">text</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[5]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>'<!doctype html><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title>reddit: the front page of the internet</title><meta name="keywords" content=" reddit, reddit.com, vote, comment, submit " /><meta name="description" content="reddit: the front page of the internet" /><meta name="referrer" content="always"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link type="application/opensearchdescription+xml" rel="search" href="/static/opensearch.xml"/><link rel="canonical" href="https://www.reddit.com/" /><meta name="viewport" content="width=1024"><link rel="dns-prefetch" href="//out.reddit.com"><link rel="preconnect" href="//out.reddit.com"><link rel=\'icon\' href="//www.redditstatic.com/icon.png" sizes="256x256" type="image/png" /><link rel=\'shortcut icon\' href="//www.redditstatic.com/favicon.ico" type="image/x-icon" /><link rel=\'apple-touch-icon-precomposed\' href="//www.redditstatic.com/icon-touch.png" /><link rel="alternate" type="application/atom+xml" title="RSS" href="https://www.reddit.com/.rss" /><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/reddit.5KGEzCbJPGs.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/expando.gMzRK16vwrQ.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/crosspost-preview.pCGunVCESf4.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/author-tooltip.kAc9Zdn5-mA.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/listing-comments.AZZO7Kj_O88.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/popup-notification.6-JvPBpHWMo.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/videoplayer.EAa9r-HzXRY.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/videoplayercontrols.KmbyemLsiXU.css" media="all"><!--[if gte IE 8]><!--><!--<![endif]--><!--[if gte IE 9]><!--><script type="text/javascript" src="//www.redditstatic.com/reddit-init.en.qS2cBiYhp_U.js"></script><!--<![endif]--><!--[if lt IE 9]><script type="text/javascript" src="//www.redditstatic.com/reddit-init-legacy.en.cmRoUGOTVcE.js"></script><![endif]--><script type="text/javascript" src="//www.redditstatic.com/videoplayer.AROa8KXpw7I.js"></script><script type="text/javascript" id="config">r.setup({"user_websocket_url": null, "feature_reply_save_cta": false, "ajax_domain": "www.reddit.com", "is_fake": true, "server_time": 1509314709.0, "post_site": "", "clicktracker_url": "//pixel.redditmedia.com/click", "pref_no_profanity": true, "renderstyle": "html", "requires_eu_cookie_policy": false, "nsfw_media_acknowledged": false, "stats_domain": "https://stats.redditmedia.com", "pref_email_messages": false, "feature_heartbeat_events": false, "loid_version": 2, "cur_screen_name": "", "cur_domain": "reddit.com", "feature_new_report_dialog": true, "events_collector_url": "https://e.reddit.com/v1", "feature_expando_events": true, "facebook_app_id": "322647334569188", "loid": "00000000000j3tkz6g", "is_sponsor": false, "https_forced": true, "user_in_timeout": false, "eu_cookie_max_attempts": 3, "user_id": false, "eventtracker_url": "//pixel.redditmedia.com/pixel/of_delight.png", "ad_serving_events_sample_rate": 1.0, "feature_new_report_flow": true, "poisoning_canary": null, "logged": false, "feature_outbound_beacons": false, "feature_signup_cta": false, "ads_loading_timeout_ms": 5000, "user_age": false, "vote_hash": "4W4yFbBex1ES7K2fH6k4FQZDLBEPWyNb0Kjxa9nigydesxtYFt8hXHzV/7duqWREKRjit63PNu965guN7ipEcPa+cQzuQ+L6fr25VzSme6xDIBQfuLIFvP+ohyzVc1u4MmNz7gxGZlQLsYEXx/4RTQVRBRlITBaeS8HfyJ7K5wI=", "poisoning_report_mac": null, "feature_ads_user_matching": false, "events_collector_secret": "thiiM0ahsieSiech1phithe6chahngoo8sah6aid\\n", "events_collector_key": "RedditFrontend1", "live_orangereds_pref": true, "feature_hover_user_ui_holdout": false, "feature_mobile_native_banner": true, "uitracker_url": "//pixel.redditmedia.com/pixel/of_discovery.png", "cache_policy": "loggedout_www", "share_tracking_ts": 1509314709192, "loid_created": 1509314708950, "modhash": "", "feature_flatlist_events": false, "store_visits": false, "anon_eventtracker_url": "//pixel.redditmedia.com/pixel/of_diversity.png", "media_domain": "www.redditmedia.com", "event_target": {"geo_filter": null, "target_type": "listing", "target_sort": "hot"}, "over_18": false, "share_tracking_hmac": null, "feature_double_sidebar": false, "send_logs": true, "gold": false, "user_subscription_size": 0, "listing_over_18": false, "pageInfo": {"actionName": "hot.GET_listing", "statsVerification": "adfad553bf3b6c42e703170c536073e9c1f952f0", "verification": "adfad553bf3b6c42e703170c536073e9c1f952f0", "statsName": "hot.GET_listing"}, "mweb_blacklist_expressions": ["^/prefs/?", "^/live/?", "/message/compose", "/m/", "^/subreddits/create", "^/gold", "^/advertising", "^/promoted", "^/buttons"], "feature_r2_desktop_onboarding": false, "https_endpoint": "https://www.reddit.com", "whitelist_status": "all_ads", "static_root": "//www.redditstatic.com", "extension": null, "feature_screenview_events": true, "cur_listing": "frontpage", "email_verified": false, "status_msg": {"fetching": "fetching title...", "loading": "loading...", "submitting": "submitting..."}, "feature_post_embed": true, "cur_site": "", "enabled_experiments": {}, "stats_sample_rate": "5", "new_window": false, "expando_preference": "subreddit_default", "advertiser_category": null, "eu_cookie": "eu_cookie", "events_collector_v2_url": "https://e.reddit.com/v2", "debug": false, "has_subscribed": false, "feature_scroll_events": true, "pref_beta": false})</script><style type="text/css">/* Custom css: use this block to insert special translation-dependent css in the page header */</style><script type="text/javascript">window.user_type = \'guest\'; window.is_gold_page = \'False\'.toLowerCase() === \'true\';</script><script type="text/javascript">var _gaq = _gaq || []; _gaq.push( [\'_require\', \'inpage_linkid\', \'//www.google-analytics.com/plugins/ga/inpage_linkid.js\'], [\'_setAccount\', \'UA-12131688-1\'], [\'_setDomainName\', \'reddit.com\'], [\'_setCustomVar\', 1, \'site\', \'frontpage\', 3], [\'_setCustomVar\', 2, \'srpath\', \'frontpage-GET_listing\', 3], [\'_setCustomVar\', 3, \'usertype\', user_type, 2], [\'_setCustomVar\', 4, \'uitype\', \'web\', 3], [\'_setCustomVar\', 5, \'style_override\', \'\', 2], [\'_setSampleRate\', \'1\'], [\'_trackPageview\'] ); (function() { var ga = document.createElement(\'script\'); ga.type = \'text/javascript\'; ga.async = true; ga.src = (\'https:\' == document.location.protocol ? \'https://ssl\' : \'http://www\') + \'.google-analytics.com/ga.js\'; var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s); })();</script><script type="text/javascript">(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'_ga\'); window._ga(\'create\', \'UA-12131688-9\', { \'name\': \'goldTracker\', \'cookieDomain\': \'reddit.com\', \'1\': \'frontpage\', \'2\': \'frontpage-GET_listing\', \'3\': window.user_type, \'4\': \'web\', \'sampleRate\': 100 }); if (window.is_gold_page) { window._ga(\'goldTracker.send\', \'pageview\'); }</script></head><body class="feature-new-report-flow listing-page hot-page" ><div class="GoogleAd HomeAds InArticleAd LeftAd SidebarAd ad-300-250 ad-banner adbar adbox1 ads-area adsense-ad box_ad googad" id="adblock-test"></div><script>var frame = document.createElement(\'iframe\'); frame.style.display = \'none\'; frame.referrer = \'no-referrer\'; frame.id = \'gtm-jail\'; frame.name = JSON.stringify({ subreddit: r.config.post_site, origin: location.origin, url: location.href, userMatching: r.config.feature_ads_user_matching, userId: r.config.user_id, advertiserCategory: r.config.advertiser_category, adsStatus: r.config.whitelist_status, }); frame.src = \'//\' + "www.redditmedia.com" + \'/gtm/jail?cb=\' + "8CqR7FcToPI"; document.body.appendChild(frame);</script><script>var mf = document.createElement(\'script\'); mf.type = \'text/javascript\'; mf.async = true; mf.src = "//www.redditstatic.com/moat/moatframe.js"; var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(mf, s);</script><div id="header" role="banner"><a tabindex="1" href="#content" id="jumpToContent">jump to content</a><div id="sr-header-area"><div class="width-clip"><div class="dropdown srdrop" onclick="open_menu(this)"><span class="selected title">my subreddits</span></div><div class="drop-choices srdrop"><a href="https://www.reddit.com/subreddits/" class="bottom-option choice" >edit subscriptions</a></div><div class="sr-list"><ul class="flat-list sr-bar hover" ><li class=\'selected\'><a href="https://www.reddit.com/r/popular/" class="choice" >popular</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/all/" class="choice" >all</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/random/" class="random choice" >random</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/users/" class="choice" >users</a></li></ul><span class="separator">&nbsp;|&nbsp;</span><ul class="flat-list sr-bar hover" id=\'sr-bar\'><li ><a href="https://www.reddit.com/r/AskReddit/" class="choice" >AskReddit</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/funny/" class="choice" >funny</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/worldnews/" class="choice" >worldnews</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/pics/" class="choice" >pics</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/gaming/" class="choice" >gaming</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/todayilearned/" class="choice" >todayilearned</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/news/" class="choice" >news</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/gifs/" class="choice" >gifs</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/aww/" class="choice" >aww</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/videos/" class="choice" >videos</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/mildlyinteresting/" class="choice" >mildlyinteresting</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/television/" class="choice" >television</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/movies/" class="choice" >movies</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/Showerthoughts/" class="choice" >Showerthoughts</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/sports/" class="choice" >sports</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/OldSchoolCool/" class="choice" >OldSchoolCool</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/Jokes/" class="choice" >Jokes</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/science/" class="choice" >science</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/LifeProTips/" class="choice" >LifeProTips</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/tifu/" class="choice" >tifu</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/Art/" class="choice" >Art</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/nottheonion/" class="choice" >nottheonion</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/EarthPorn/" class="choice" >EarthPorn</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/personalfinance/" class="choice" >personalfinance</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/Music/" class="choice" >Music</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/photoshopbattles/" class="choice" >photoshopbattles</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/books/" class="choice" >books</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/food/" class="choice" >food</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/Futurology/" class="choice" >Futurology</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/IAmA/" class="choice" >IAmA</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/WritingPrompts/" class="choice" >WritingPrompts</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/UpliftingNews/" class="choice" >UpliftingNews</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/space/" class="choice" >space</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/explainlikeimfive/" class="choice" >explainlikeimfive</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/TwoXChromosomes/" class="choice" >TwoXChromosomes</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/history/" class="choice" >history</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/dataisbeautiful/" class="choice" >dataisbeautiful</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/Documentaries/" class="choice" >Documentaries</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/GetMotivated/" class="choice" >GetMotivated</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/gadgets/" class="choice" >gadgets</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/creepy/" class="choice" >creepy</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/nosleep/" class="choice" >nosleep</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/askscience/" class="choice" >askscience</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/DIY/" class="choice" >DIY</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/listentothis/" class="choice" >listentothis</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/philosophy/" class="choice" >philosophy</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/InternetIsBeautiful/" class="choice" >InternetIsBeautiful</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/blog/" class="choice" >blog</a></li><li ><span class="separator">-</span><a href="https://www.reddit.com/r/announcements/" class="choice" >announcements</a></li></ul></div><a href="https://www.reddit.com/subreddits/" id="sr-more-link" >more &raquo;</a></div></div><div id="header-bottom-left"><a href="/" id="header-img" class="default-header" title="">reddit.com</a>&nbsp;<ul class="tabmenu " ><li class=\'selected\'><a href="https://www.reddit.com/" class="choice" >hot</a></li><li ><a href="https://www.reddit.com/new/" class="choice" >new</a></li><li ><a href="https://www.reddit.com/rising/" class="choice" >rising</a></li><li ><a href="https://www.reddit.com/controversial/" class="choice" >controversial</a></li><li ><a href="https://www.reddit.com/top/" class="choice" >top</a></li><li ><a href="https://www.reddit.com/gilded/" class="choice" >gilded</a></li><li ><a href="https://www.reddit.com/wiki/" class="choice" >wiki</a></li></ul></div><div id="header-bottom-right"><span class="user">Want to join?&#32;<a href="https://www.reddit.com/login" class="login-required" >Log in or sign up</a>&#32;in seconds.</span><span class="separator">|</span><ul class="flat-list hover" ><li ><a href="javascript:void(0)" class="pref-lang choice" onclick="return showlang();" >English</a></li></ul></div></div><div class="side"><div class=\'spacer\'><form action="https://www.reddit.com/search" id="search" role="search"><input type="text" name="q" placeholder="search" tabindex="20"><input type="submit" value="" tabindex="22"><div id="searchexpando" class="infobar"><div id="moresearchinfo"><p>use the following search parameters to narrow your results:</p><dl><dt>subreddit:<i>subreddit</i></dt><dd>find submissions in &quot;subreddit&quot;</dd><dt>author:<i>username</i></dt><dd>find submissions by &quot;username&quot;</dd><dt>site:<i>example.com</i></dt><dd>find submissions from &quot;example.com&quot;</dd><dt>url:<i>text</i></dt><dd>search for &quot;text&quot; in url</dd><dt>selftext:<i>text</i></dt><dd>search for &quot;text&quot; in self post contents</dd><dt>self:yes (or self:no)</dt><dd>include (or exclude) self posts</dd><dt>nsfw:yes (or nsfw:no)</dt><dd>include (or exclude) results marked as NSFW</dd></dl><p>e.g.&#32;<code>subreddit:aww site:imgur.com dog</code></p><p><a href="https://www.reddit.com/wiki/search">see the search faq for details.</a></p></div><p><a href="https://www.reddit.com/wiki/search" id="search_showmore">advanced search: by author, subreddit...</a></p></div></form></div><div class=\'spacer\'><form method="post" action="https://www.reddit.com/post/login" id="login_login-main" class="login-form login-form-side"><input type="hidden" name="op" value="login-main" /><input name="user" placeholder="username" type="text" maxlength="20" tabindex="1"/><input name="passwd" placeholder="password" type="password" tabindex="1"/><div class="g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC"></div><div class="status"></div><div id="remember-me"><input type="checkbox" name="rem" id="rem-login-main" tabindex="1" /><label for="rem-login-main">remember me</label><a class="recover-password" href="/password">reset password</a></div><div class="submit"><span class="throbber"></span><button class="btn" type="submit" tabindex="1">login</button></div><div class="clear"></div></form></div><div class=\'spacer\'><div id="ad_2" class="dfp-ad-container"></div><script>r.hooks.get(\'reddit\').register(function() { window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; window.pbjs = window.pbjs || {}; pbjs.que = pbjs.que || []; var adblock = r.utils.getAdblockLevel(); var frameId = "ad_2"; var sizes = [[300, 250], [300, 600]]; var keywords = ["k.holiday", "s.brandlift.holdout_19", "s.frontpage", "k.close", "k.facebook", "k.christmas", "s.loggedout", "k.canadian", "s.sfw"]; var properties = {"placement": "atf", "whitelist_status": "all_ads", "subreddit_screen": false, "percentage": 54, "iaa": false, "random_number": 54, "environment": "production", "nsfw": false, "logged_in": false, "has_used_mobile_app": false, "full_url": "https://www.reddit.com/"}; var slotPrefix = "/32173961/desktop"; var frame = document.getElementById(frameId); var ads = window.__adslots = window.__adslots || []; if (adblock === \'whitelisted\') { frame.className += \' acceptable-ads\'; } function isWithinLoadDistance(el) { var rect = el.getBoundingClientRect(); var html = document.documentElement; return (rect.top - (window.innerHeight || html.clientHeight))< 300; } function getPageType() { var $body = $(\'body\'); if ($body.hasClass(\'comments-page\')) { return \'comments\'; } else if ($body.hasClass(\'profile-page\')) { return \'user\' } else if ($body.hasClass(\'listing-page\')) { return \'listing\'; } } function getSlot(prefix, pageType) { var parts = [prefix]; if (pageType !== \'user\') { var listing = r.config.cur_listing; if (listing !== \'frontpage\') { listing = \'r.\' + listing; } parts.push(listing); } if (pageType) { parts.push(pageType); } return parts.join(\'/\'); } var adSlot; googletag.cmd.push(function() { var pageType = getPageType(); adSlot = googletag .defineSlot(getSlot(slotPrefix, pageType), sizes, frameId) .addService(googletag.pubads()); adSlot.setTargeting(\'keywords\', keywords); adSlot.setTargeting(\'adblock\', adblock); adSlot.setTargeting(\'listing\', pageType); Object.keys(properties).forEach(function(key) { adSlot.setTargeting(key, properties[key]); }); googletag.display(frameId); }); var requestAd = function() { if (window._usePrebid) { pbjs.que.push(function() { pbjs.setTargetingForGPTAsync(); googletag.pubads().refresh([adSlot]); }); } else { googletag.pubads().refresh([adSlot]); } }; ads.push({ slotID: frameId, sizes: sizes, callback: function() { googletag.cmd.push(function() { if (isWithinLoadDistance(frame)) { requestAd(); } else { var checkDistance = _.throttle(function() { if (isWithinLoadDistance(frame)) { requestAd(); window.removeEventListener(\'scroll\', checkDistance); } }, 100); window.addEventListener(\'scroll\', checkDistance); } }); }, }) });</script></div><div class=\'spacer\'><div class="sidebox submit submit-link"><div class="morelink"><a href="https://www.reddit.com/submit" data-event-action="submit" data-type="subreddit" data-event-detail="link" class="login-required access-required" target="_top" >Submit a new link</a><div class="nub"></div></div></div></div><div class=\'spacer\'><div class="sidebox submit submit-text"><div class="morelink"><a href="https://www.reddit.com/submit?selftext=true" data-event-action="submit" data-type="subreddit" data-event-detail="self" class="login-required access-required" target="_top" >Submit a new text post</a><div class="nub"></div></div></div></div><div class=\'spacer\'><div class="goldvertisement "><div class="inner"><h2 >daily reddit gold goal</h2><div class="progress"><p>90%</p><div class="bar"><span style="width: 90%"></span></div></div><a href="/gold?goldtype=code&amp;source=progressbar" target="_blank">help support reddit</a><div class="gold-bubble hover-bubble help-bubble anchor-top-centered"><p><span class="gold-branding">reddit gold</span>&#32;gives you extra features and helps keep our servers running. We believe the more reddit can be user-supported, the freer we will be to make reddit the best it can be.</p><p class="buy-gold">Buy gold for yourself to gain access to&#32;<a href="/gold/about" target="_blank">extra features</a>&#32;and&#32;<a href="/r/goldbenefits" target="_blank">special benefits</a>. A month of gold pays for &#32;<b>231.26 minutes</b>&#32;of reddit server time!</p><p class="give-gold">Give gold to thank exemplary people and encourage them to post more.</p><p class="aside">This daily goal updates every 10 minutes and is reset at midnight&#32;<a target="_blank" href="https://en.wikipedia.org/wiki/Pacific_Time_Zone">Pacific Time</a>&#32; (8 hours, 54 minutes from now).</p><div class="history"><p >Yesterday\'s reddit gold goal</p><div class="progress"><p>66%</p><div class="bar"><span style="width: 66%"></span></div></div></div></div></div></div></div><div class=\'spacer\'><div id="ad_6" class="dfp-ad-container"></div><script>r.hooks.get(\'reddit\').register(function() { window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; window.pbjs = window.pbjs || {}; pbjs.que = pbjs.que || []; var adblock = r.utils.getAdblockLevel(); var frameId = "ad_6"; var sizes = [[300, 250]]; var keywords = ["k.holiday", "s.brandlift.holdout_19", "s.frontpage", "k.close", "k.facebook", "k.christmas", "s.loggedout", "k.canadian", "s.sfw"]; var properties = {"placement": "btf", "whitelist_status": "all_ads", "subreddit_screen": false, "percentage": 26, "iaa": false, "random_number": 26, "environment": "production", "nsfw": false, "logged_in": false, "has_used_mobile_app": false, "full_url": "https://www.reddit.com/"}; var slotPrefix = "/32173961/desktop"; var frame = document.getElementById(frameId); var ads = window.__adslots = window.__adslots || []; if (adblock === \'whitelisted\') { frame.className += \' acceptable-ads\'; } function isWithinLoadDistance(el) { var rect = el.getBoundingClientRect(); var html = document.documentElement; return (rect.top - (window.innerHeight || html.clientHeight))< 300; } function getPageType() { var $body = $(\'body\'); if ($body.hasClass(\'comments-page\')) { return \'comments\'; } else if ($body.hasClass(\'profile-page\')) { return \'user\' } else if ($body.hasClass(\'listing-page\')) { return \'listing\'; } } function getSlot(prefix, pageType) { var parts = [prefix]; if (pageType !== \'user\') { var listing = r.config.cur_listing; if (listing !== \'frontpage\') { listing = \'r.\' + listing; } parts.push(listing); } if (pageType) { parts.push(pageType); } return parts.join(\'/\'); } var adSlot; googletag.cmd.push(function() { var pageType = getPageType(); adSlot = googletag .defineSlot(getSlot(slotPrefix, pageType), sizes, frameId) .addService(googletag.pubads()); adSlot.setTargeting(\'keywords\', keywords); adSlot.setTargeting(\'adblock\', adblock); adSlot.setTargeting(\'listing\', pageType); Object.keys(properties).forEach(function(key) { adSlot.setTargeting(key, properties[key]); }); googletag.display(frameId); }); var requestAd = function() { if (window._usePrebid) { pbjs.que.push(function() { pbjs.setTargetingForGPTAsync(); googletag.pubads().refresh([adSlot]); }); } else { googletag.pubads().refresh([adSlot]); } }; ads.push({ slotID: frameId, sizes: sizes, callback: function() { googletag.cmd.push(function() { if (isWithinLoadDistance(frame)) { requestAd(); } else { var checkDistance = _.throttle(function() { if (isWithinLoadDistance(frame)) { requestAd(); window.removeEventListener(\'scroll\', checkDistance); } }, 100); window.addEventListener(\'scroll\', checkDistance); } }); }, }) });</script></div></div><a name="content"></a><div class="content" role="main" itemscope itemtype="https://schema.org/Question" ><section hidden class="infobar newsletterbar newsletter-container"><header><h1 class="subscribe-callout"><a href="/newsletter"><img src="//www.redditstatic.com/subscribe-header.svg" alt="subscribe to our newsletter"></a></h1><div class="subscribe-thanks"><img src="//www.redditstatic.com/subscribe-header-thanks.svg" alt="_(\'thanks for subscribing\')" /></div><h2 class="result-message">get the best of reddit, delivered once a week</h2></header><form class="newsletter-signup form-v2 c-form-inline" method="post" action="https://www.reddit.com/api/newsletter.json"><input type="hidden" name="uh" value="" /><input type="hidden" name="source" value="newsletterbar"><div class="c-form-group "><label for="email" class="screenreader-only">email:</label><input value="" name="email" class="c-form-control" type="email" placeholder="enter your email" data-validate-url="/api/check_email.json" data-validate-on="change blur"><div class="c-form-control-feedback-wrapper inside-input"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><button type="submit" class="c-btn c-btn-highlight">subscribe</button><br/><div class="c-form-group "><div class="g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC"></div><div class="c-form-control-feedback-wrapper inside-input"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div></form><a href="#" class="newsletter-close" title="close">&times;</a></section><div class=\'spacer\'><div id="siteTable_organic" class="organic-listing loading" ></div><script>r.spotlight.setup( [], 0.0, true, 1, " reddit.com", "t3_79i4cj,t3_79il16,t3_79hgf8,t3_79h9wb,t3_79h9bc,t3_79hfbr,t3_79h3xb,t3_79hg4o,t3_79idus,t3_79h7yg" )</script></div><div class=\'spacer\'><div class="trending-subreddits"><div class="rank-spacer"></div><div class="midcol-spacer"></div><div class="trending-subreddits-content"><strong>trending subreddits</strong><ul><li><a href="/r/StrangerThings/?utm_content=trending_sr_1&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">r/StrangerThings</a></li><li><a href="/r/AskEurope/?utm_content=trending_sr_5&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">r/AskEurope</a></li><li><a href="/r/chairsunderwater/?utm_content=trending_sr_3&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">r/chairsunderwater</a></li><li><a href="/r/ScarySigns/?utm_content=trending_sr_2&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">r/ScarySigns</a></li><li><a href="/r/Glitch_in_the_Matrix/?utm_content=trending_sr_4&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">r/Glitch_in_the_Matrix</a></li></ul><a href="/r/trendingsubreddits/comments/79f8on/trending_subreddits_for_20171029_rstrangerthings/" class="comments may-blank">22 comments</a></div></div></div><div class=\'spacer\'><style>body >.content .link .rank, .rank-spacer { width: 2.2ex } body >.content .link .midcol, .midcol-spacer { width: 6.1ex } .adsense-wrap { background-color: #eff7ff; font-size: 18px; padding-left: 8.3ex; padding-right: 5px; }</style><div id="siteTable" class="sitetable linklisting"><div class=" thing id-t3_79i4cj odd&#32; link " id="thing_t3_79i4cj" onclick="click_thing(this)" data-fullname="t3_79i4cj" data-type="link" data-whitelist-status="all_ads" data-author="AnimalCrust" data-author-fullname="t2_b3ir2" data-subreddit="videos" data-subreddit-fullname="t5_2qh1e" data-timestamp="1509301316000" data-url="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-permalink="/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/" data-domain="youtube.com" data-rank="1" data-comments-count="2516" data-score="19485" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">1</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="19477">19.5k</div><div class="score unvoted" title="19478">19.5k</div><div class="score likes" title="19479">19.5k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-href-url="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-outbound-url="https://out.reddit.com/t3_79i4cj?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DU0SOxb_Lfps&amp;token=AQAApV72WZbypHRafe2yq58Yhplu7Kx3_WP43eEPnkfvOgnM9eue&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//a.thumbs.redditmedia.com/nCDVrRti7nZV5Wf0tfM-nzdHWecO1B6us8BYPW2cj28.jpg" width=\'70\' height=\'52\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://www.youtube.com/watch?v=U0SOxb_Lfps" tabindex="1" data-href-url="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-outbound-url="https://out.reddit.com/t3_79i4cj?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DU0SOxb_Lfps&amp;token=AQAApV72WZbypHRafe2yq58Yhplu7Kx3_WP43eEPnkfvOgnM9eue&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >YouTube user demonstrating how Facebook listens to conversations to serve ads</a>&#32;<span class="domain">(<a href="/domain/youtube.com/">youtube.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 18:21:56 2017 UTC" datetime="2017-10-29T18:21:56+00:00" class="live-timestamp">3 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/AnimalCrust" class="author may-blank id-t2_b3ir2" >AnimalCrust</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/videos/" class="subreddit hover may-blank" >r/videos</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/" data-inbound-url="/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >2516 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79i4cj"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/79i4cj&quot; id=&quot;media-embed-79i4cj-b79&quot; class=&quot;media-embed&quot; width=&quot;610&quot; height=&quot;348&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79il16 even&#32; link " id="thing_t3_79il16" onclick="click_thing(this)" data-fullname="t3_79il16" data-type="link" data-whitelist-status="all_ads" data-author="madeyoulooktwice" data-author-fullname="t2_15zyt2" data-subreddit="funny" data-subreddit-fullname="t5_2qh33" data-timestamp="1509305782000" data-url="https://i.redd.it/ou7cvhahntuz.jpg" data-permalink="/r/funny/comments/79il16/my_friends_halloween_costume/" data-domain="i.redd.it" data-rank="2" data-comments-count="299" data-score="6215" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">2</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="6243">6243</div><div class="score unvoted" title="6244">6244</div><div class="score likes" title="6245">6245</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/funny/comments/79il16/my_friends_halloween_costume/" data-href-url="/r/funny/comments/79il16/my_friends_halloween_costume/" data-inbound-url="/r/funny/comments/79il16/my_friends_halloween_costume/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//a.thumbs.redditmedia.com/Do_WMeCfS4ECc0-oE3YeVTsqSeWHT590P36r6S-ybw0.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/funny/comments/79il16/my_friends_halloween_costume/" tabindex="1" data-href-url="/r/funny/comments/79il16/my_friends_halloween_costume/" data-inbound-url="/r/funny/comments/79il16/my_friends_halloween_costume/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >My friend\'s Halloween costume:</a>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 19:36:22 2017 UTC" datetime="2017-10-29T19:36:22+00:00" class="live-timestamp">2 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/madeyoulooktwice" class="author may-blank id-t2_15zyt2" >madeyoulooktwice</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/funny/" class="subreddit hover may-blank" >r/funny</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/funny/comments/79il16/my_friends_halloween_costume/" data-inbound-url="/r/funny/comments/79il16/my_friends_halloween_costume/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/funny/comments/79il16/my_friends_halloween_costume/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >301 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79il16"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79il16&quot; style=&quot;max-width: 640px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/ou7cvhahntuz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/Lu_rQ97Lrf0IC1FKU9Q2BwkRVubOHBQnh1eMBFFLY98.jpg?w=640&amp;amp;s=0b6c7a2eb0814207a97a47239ddad7b2&quot; width=&quot;640&quot; height=&quot;649&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79hgf8 linkflair linkflair-camera odd&#32; link " id="thing_t3_79hgf8" onclick="click_thing(this)" data-fullname="t3_79hgf8" data-type="link" data-whitelist-status="all_ads" data-author="easycheesay" data-author-fullname="t2_5zfgo" data-subreddit="sports" data-subreddit-fullname="t5_2qgzy" data-timestamp="1509294788000" data-url="https://i.redd.it/q0k99g3sqsuz.jpg" data-permalink="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-domain="i.redd.it" data-rank="3" data-comments-count="949" data-score="57220" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">3</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="61280">61.3k</div><div class="score unvoted" title="61281">61.3k</div><div class="score likes" title="61282">61.3k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-href-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-inbound-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//a.thumbs.redditmedia.com/0RWYJ2DefFdsJjuX2KRCA9aTC45RP2C_9IiRzxQ19Q0.jpg" width=\'70\' height=\'69\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" tabindex="1" data-href-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-inbound-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >Friend who lost his leg to cancer got creative for Halloween</a><span class="linkflairlabel" title="Picture/Video">Picture/Video</span>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 16:33:08 2017 UTC" datetime="2017-10-29T16:33:08+00:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/easycheesay" class="author may-blank id-t2_5zfgo" >easycheesay</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/sports/" class="subreddit hover may-blank" >r/sports</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-inbound-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >1011 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79hgf8"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79hgf8&quot; style=&quot;max-width: 750px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/q0k99g3sqsuz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/NHMhRKbDhZmm0gbqcBbujcLv8FhTZEQvdT8GOKvj_KM.jpg?w=750&amp;amp;s=7ec0314f40d2f1bddf0774fc927c61f9&quot; width=&quot;750&quot; height=&quot;748&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h9wb even&#32; link " id="thing_t3_79h9wb" onclick="click_thing(this)" data-fullname="t3_79h9wb" data-type="link" data-whitelist-status="all_ads" data-author="HeadphoneJackal" data-author-fullname="t2_14ydp1" data-subreddit="todayilearned" data-subreddit-fullname="t5_2qqjc" data-timestamp="1509292993000" data-url="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-permalink="/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/" data-domain="mentalfloss.com" data-rank="4" data-comments-count="785" data-score="35509" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">4</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="35514">35.5k</div><div class="score unvoted" title="35515">35.5k</div><div class="score likes" title="35516">35.5k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-href-url="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-outbound-url="https://out.reddit.com/t3_79h9wb?url=https%3A%2F%2Fmentalfloss.com%2Farticle%2F70919%2F10-things-you-might-not-know-about-dennys&amp;token=AQAApV72WVDqQuN2YS-BwPww5_Dc2UdWun9S3VQblT1erE3yUNrN&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/Cuzhvy_kXhI-AvVZx3rYS90vV2vOUegkNpKubMh4WtA.jpg" width=\'70\' height=\'46\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" tabindex="1" data-href-url="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-outbound-url="https://out.reddit.com/t3_79h9wb?url=https%3A%2F%2Fmentalfloss.com%2Farticle%2F70919%2F10-things-you-might-not-know-about-dennys&amp;token=AQAApV72WVDqQuN2YS-BwPww5_Dc2UdWun9S3VQblT1erE3yUNrN&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >TIL that when the 24-7-365 restaurant Denny\'s decided to close for Christmas in 1988 many stores realized that they didn’t have any keys, or even locks, since they never used them. 700 of the 1221 restaurants needed to get new locks installed for the holiday.</a>&#32;<span class="domain">(<a href="/domain/mentalfloss.com/">mentalfloss.com</a>)</span></p><p class="tagline ">submitted&#32;<time title="Sun Oct 29 16:03:13 2017 UTC" datetime="2017-10-29T16:03:13+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/HeadphoneJackal" class="author may-blank id-t2_14ydp1" >HeadphoneJackal</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/todayilearned/" class="subreddit hover may-blank" >r/todayilearned</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/" data-inbound-url="/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >785 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h9wb"></div></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h9bc odd&#32; link " id="thing_t3_79h9bc" onclick="click_thing(this)" data-fullname="t3_79h9bc" data-type="link" data-whitelist-status="all_ads" data-author="woopteewoopwoop" data-author-fullname="t2_tb9rr" data-subreddit="trippinthroughtime" data-subreddit-fullname="t5_2y3e1" data-timestamp="1509292846000" data-url="https://i.imgur.com/kZrMJXL.jpg" data-permalink="/r/trippinthroughtime/comments/79h9bc/selfreflection/" data-domain="i.imgur.com" data-rank="5" data-comments-count="435" data-score="23094" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">5</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="23089">23.1k</div><div class="score unvoted" title="23090">23.1k</div><div class="score likes" title="23091">23.1k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/kZrMJXL.jpg" data-href-url="https://i.imgur.com/kZrMJXL.jpg" data-outbound-url="https://out.reddit.com/t3_79h9bc?url=https%3A%2F%2Fi.imgur.com%2FkZrMJXL.jpg&amp;token=AQAApV72WVuKoSljqEScn3zFQElPEfgGEbhhFS6efMPnEa7EPEwr&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/GkHmz2_rxTvowRbGyxPpRU_u8G1FpFU9TJiQvAv2GUI.jpg" width=\'70\' height=\'68\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/kZrMJXL.jpg" tabindex="1" data-href-url="https://i.imgur.com/kZrMJXL.jpg" data-outbound-url="https://out.reddit.com/t3_79h9bc?url=https%3A%2F%2Fi.imgur.com%2FkZrMJXL.jpg&amp;token=AQAApV72WVuKoSljqEScn3zFQElPEfgGEbhhFS6efMPnEa7EPEwr&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Self-reflection</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 16:00:46 2017 UTC" datetime="2017-10-29T16:00:46+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/woopteewoopwoop" class="author may-blank id-t2_tb9rr" >woopteewoopwoop</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/trippinthroughtime/" class="subreddit hover may-blank" >r/trippinthroughtime</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/trippinthroughtime/comments/79h9bc/selfreflection/" data-inbound-url="/r/trippinthroughtime/comments/79h9bc/selfreflection/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/trippinthroughtime/comments/79h9bc/selfreflection/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >435 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h9bc"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79h9bc&quot; style=&quot;max-width: 640px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/kZrMJXL.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/K7zRgxyjLURQTpFOazBRL8WFsPp6K289SCGomOA5pWo.jpg?w=640&amp;amp;s=07ac824245e8a641fff8fd9554b554db&quot; width=&quot;640&quot; height=&quot;629&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79hfbr even&#32; link " id="thing_t3_79hfbr" onclick="click_thing(this)" data-fullname="t3_79hfbr" data-type="link" data-whitelist-status="all_ads" data-author="TrLOLvis" data-author-fullname="t2_6vvpe" data-subreddit="canada" data-subreddit-fullname="t5_2qh68" data-timestamp="1509294503000" data-url="https://imgur.com/beekafi" data-permalink="/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/" data-domain="imgur.com" data-rank="6" data-comments-count="369" data-score="10888" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">6</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="10894">10.9k</div><div class="score unvoted" title="10895">10.9k</div><div class="score likes" title="10896">10.9k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://imgur.com/beekafi" data-href-url="https://imgur.com/beekafi" data-outbound-url="https://out.reddit.com/t3_79hfbr?url=https%3A%2F%2Fimgur.com%2Fbeekafi&amp;token=AQAApV72WS9ZwoC8sCBV9gx9Pl3rZMHdjWD-EjTaBfxz6ZPaqxU9&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/x5eYDdrpThA1-nG4kmoa0P1NznjjKTCy6DY-sZea_bg.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://imgur.com/beekafi" tabindex="1" data-href-url="https://imgur.com/beekafi" data-outbound-url="https://out.reddit.com/t3_79hfbr?url=https%3A%2F%2Fimgur.com%2Fbeekafi&amp;token=AQAApV72WS9ZwoC8sCBV9gx9Pl3rZMHdjWD-EjTaBfxz6ZPaqxU9&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >I dressed up as a Canadian icon for Halloween last night.</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline ">submitted&#32;<time title="Sun Oct 29 16:28:23 2017 UTC" datetime="2017-10-29T16:28:23+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/TrLOLvis" class="author may-blank id-t2_6vvpe" >TrLOLvis</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/canada/" class="subreddit hover may-blank" >r/canada</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/" data-inbound-url="/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >369 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79hfbr"></div></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h3xb odd&#32; link " id="thing_t3_79h3xb" onclick="click_thing(this)" data-fullname="t3_79h3xb" data-type="link" data-whitelist-status="all_ads" data-author="deemandaniels" data-author-fullname="t2_bhknd" data-subreddit="aww" data-subreddit-fullname="t5_2qh1o" data-timestamp="1509291276000" data-url="https://i.redd.it/cly5r9f9gsuz.jpg" data-permalink="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-domain="i.redd.it" data-rank="7" data-comments-count="497" data-score="85250" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">7</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="90179">90.2k</div><div class="score unvoted" title="90180">90.2k</div><div class="score likes" title="90181">90.2k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-href-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-inbound-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//b.thumbs.redditmedia.com/6lyD8UW_L6ugVUiJO6OPfiiM9vqaQzRlD1M1sRwxqOg.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" tabindex="1" data-href-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-inbound-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >This pic alone is worth the $9 I paid for this costume.</a>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:34:36 2017 UTC" datetime="2017-10-29T15:34:36+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/deemandaniels" class="author may-blank id-t2_bhknd" >deemandaniels</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/aww/" class="subreddit hover may-blank" >r/aww</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-inbound-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >516 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h3xb"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79h3xb&quot; style=&quot;max-width: 576px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/cly5r9f9gsuz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/XRbw1nFIbVum56I2mtHfIdOBUEuHN-rRkOv-ZAK3tTE.jpg?w=576&amp;amp;s=1de85280278ef95d913f6b24a9072415&quot; width=&quot;576&quot; height=&quot;768&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79hg4o linkflair even&#32; link " id="thing_t3_79hg4o" onclick="click_thing(this)" data-fullname="t3_79hg4o" data-type="link" data-whitelist-status="all_ads" data-author="BunyipPouch" data-author-fullname="t2_a1s4w" data-subreddit="Eyebleach" data-subreddit-fullname="t5_2s427" data-timestamp="1509294704000" data-url="https://i.imgur.com/TF73oKb.gifv" data-permalink="/r/Eyebleach/comments/79hg4o/enjoying_the_show/" data-domain="i.imgur.com" data-rank="8" data-comments-count="84" data-score="12916" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">8</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="12913">12.9k</div><div class="score unvoted" title="12914">12.9k</div><div class="score likes" title="12915">12.9k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/TF73oKb.gifv" data-href-url="https://i.imgur.com/TF73oKb.gifv" data-outbound-url="https://out.reddit.com/t3_79hg4o?url=https%3A%2F%2Fi.imgur.com%2FTF73oKb.gifv&amp;token=AQAApV72WaHxLqZFrIoXM1GPkPOlpN7lNfJuVGibhDAUBrJ33tL2&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//a.thumbs.redditmedia.com/Nyn1JethEDU4QW24cKjbIZFn7AXzUV8e-UDYyIXFo38.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/TF73oKb.gifv" tabindex="1" data-href-url="https://i.imgur.com/TF73oKb.gifv" data-outbound-url="https://out.reddit.com/t3_79hg4o?url=https%3A%2F%2Fi.imgur.com%2FTF73oKb.gifv&amp;token=AQAApV72WaHxLqZFrIoXM1GPkPOlpN7lNfJuVGibhDAUBrJ33tL2&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Enjoying the Show</a><span class="linkflairlabel" title="/r/all">/r/all</span>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 16:31:44 2017 UTC" datetime="2017-10-29T16:31:44+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/BunyipPouch" class="author may-blank id-t2_a1s4w" >BunyipPouch</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/Eyebleach/" class="subreddit hover may-blank" >r/Eyebleach</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/Eyebleach/comments/79hg4o/enjoying_the_show/" data-inbound-url="/r/Eyebleach/comments/79hg4o/enjoying_the_show/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/Eyebleach/comments/79hg4o/enjoying_the_show/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >84 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79hg4o"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79hg4o&quot; style=&quot;max-width: 614px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/TF73oKb.gifv&quot; class=&quot;may-blank&quot;&gt; &lt;video class=&quot;preview&quot; preload=&quot;auto&quot; autoplay=&quot;autoplay&quot; muted=&quot;muted&quot; loop=&quot;loop&quot; webkit-playsinline=&quot;&quot; style=&quot;width: 614px; height: 768px;&quot;&gt; &lt;source src=&quot;https://g.redditmedia.com/PNF2Me4dVUHTnzoRikcbiu5ln2HJO-LDg7aSPVdf_i4.gif?w=614&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=40c5deb341498bcde4024dec44b603ea&quot; type=&quot;video/mp4&quot;&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79idus odd&#32; link " id="thing_t3_79idus" onclick="click_thing(this)" data-fullname="t3_79idus" data-type="link" data-whitelist-status="all_ads" data-author="Looks_pretty_cool" data-author-fullname="t2_qyuz1" data-subreddit="evilbuildings" data-subreddit-fullname="t5_3ckh2" data-timestamp="1509303843000" data-url="https://i.imgur.com/LxQVahs.jpg" data-permalink="/r/evilbuildings/comments/79idus/worst_fire_escape_ever/" data-domain="i.imgur.com" data-rank="9" data-comments-count="102" data-score="4900" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">9</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="4898">4898</div><div class="score unvoted" title="4899">4899</div><div class="score likes" title="4900">4900</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/LxQVahs.jpg" data-href-url="https://i.imgur.com/LxQVahs.jpg" data-outbound-url="https://out.reddit.com/t3_79idus?url=https%3A%2F%2Fi.imgur.com%2FLxQVahs.jpg&amp;token=AQAApV72WWy3A80yLreVuVgvnRI2poI5GdPW792oDMwBq4lGSJsD&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/loxZNU4NHlxH7Kg_X1otSg8WLjmeOVLAMviRNYxKC5s.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/LxQVahs.jpg" tabindex="1" data-href-url="https://i.imgur.com/LxQVahs.jpg" data-outbound-url="https://out.reddit.com/t3_79idus?url=https%3A%2F%2Fi.imgur.com%2FLxQVahs.jpg&amp;token=AQAApV72WWy3A80yLreVuVgvnRI2poI5GdPW792oDMwBq4lGSJsD&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Worst fire escape ever</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 19:04:03 2017 UTC" datetime="2017-10-29T19:04:03+00:00" class="live-timestamp">3 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/Looks_pretty_cool" class="author may-blank id-t2_qyuz1" >Looks_pretty_cool</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/evilbuildings/" class="subreddit hover may-blank" >r/evilbuildings</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/evilbuildings/comments/79idus/worst_fire_escape_ever/" data-inbound-url="/r/evilbuildings/comments/79idus/worst_fire_escape_ever/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/evilbuildings/comments/79idus/worst_fire_escape_ever/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >102 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79idus"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79idus&quot; style=&quot;max-width: 768px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/LxQVahs.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/FIaEJ49JDwxcgE--kCVyQyW5bdGb_zn2D87p2sHOC6Q.jpg?w=768&amp;amp;s=0dffb96ceb73cdd61a264132efce10f2&quot; width=&quot;768&quot; height=&quot;768&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h7yg even&#32; link " id="thing_t3_79h7yg" onclick="click_thing(this)" data-fullname="t3_79h7yg" data-type="link" data-whitelist-status="all_ads" data-author="shizzblatt" data-author-fullname="t2_mzkds" data-subreddit="comics" data-subreddit-fullname="t5_2qh0s" data-timestamp="1509292465000" data-url="https://i.redd.it/ymio3n5ujsuz.png" data-permalink="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-domain="i.redd.it" data-rank="10" data-comments-count="46" data-score="10514" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">10</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="12164">12.2k</div><div class="score unvoted" title="12165">12.2k</div><div class="score likes" title="12166">12.2k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-href-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-inbound-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//b.thumbs.redditmedia.com/CvdZKhz1fLKyUUDK45_EKWVSz4HKw_EvcOGnh7kOHCc.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/comics/comments/79h7yg/a_fly_and_a_guy/" tabindex="1" data-href-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-inbound-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >a fly and a guy...</a>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:54:25 2017 UTC" datetime="2017-10-29T15:54:25+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/shizzblatt" class="author may-blank id-t2_mzkds" >shizzblatt</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/comics/" class="subreddit hover may-blank" >r/comics</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-inbound-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >56 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h7yg"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79h7yg&quot; style=&quot;max-width: 540px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/ymio3n5ujsuz.png&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/iU7UB_9GnvTrGA8Q8vx89pxIsdAwJGNZ1QZKL6ohnw0.png?w=540&amp;amp;s=5fe0225e9785b4fa75c4bf7786292ddd&quot; width=&quot;540&quot; height=&quot;700&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79hr0y linkflair linkflair-diy-other odd&#32; link " id="thing_t3_79hr0y" onclick="click_thing(this)" data-fullname="t3_79hr0y" data-type="link" data-whitelist-status="all_ads" data-author="JoshDM" data-author-fullname="t2_6mv3r" data-subreddit="DIY" data-subreddit-fullname="t5_2qh7d" data-timestamp="1509297722000" data-url="https://imgur.com/gallery/EbSWU" data-permalink="/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/" data-domain="imgur.com" data-rank="11" data-comments-count="177" data-score="7797" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">11</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="7796">7796</div><div class="score unvoted" title="7797">7797</div><div class="score likes" title="7798">7798</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://imgur.com/gallery/EbSWU" data-href-url="https://imgur.com/gallery/EbSWU" data-outbound-url="https://out.reddit.com/t3_79hr0y?url=https%3A%2F%2Fimgur.com%2Fgallery%2FEbSWU&amp;token=AQAApV72WWvoaWNYCZeMKjXZ11UfXevtC5f-oJkv2i4UapH6ZSHi&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/wzhcytj4Z0bJCZA3nPaXOtvRoyNOzMWhBe-qJLaUf_o.jpg" width=\'70\' height=\'67\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://imgur.com/gallery/EbSWU" tabindex="1" data-href-url="https://imgur.com/gallery/EbSWU" data-outbound-url="https://out.reddit.com/t3_79hr0y?url=https%3A%2F%2Fimgur.com%2Fgallery%2FEbSWU&amp;token=AQAApV72WWvoaWNYCZeMKjXZ11UfXevtC5f-oJkv2i4UapH6ZSHi&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Cthulhu costume I made for my kid this year</a><span class="linkflairlabel" title="other">other</span>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline ">submitted&#32;<time title="Sun Oct 29 17:22:02 2017 UTC" datetime="2017-10-29T17:22:02+00:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/JoshDM" class="author may-blank id-t2_6mv3r" >JoshDM</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/DIY/" class="subreddit hover may-blank" >r/DIY</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/" data-inbound-url="/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >177 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79hr0y"></div></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gwjl linkflair linkflair-AwesomeBlue even&#32; link " id="thing_t3_79gwjl" onclick="click_thing(this)" data-fullname="t3_79gwjl" data-type="link" data-whitelist-status="all_ads" data-author="ShiningConcepts" data-author-fullname="t2_orcvx" data-subreddit="oddlysatisfying" data-subreddit-fullname="t5_2x93b" data-timestamp="1509289023000" data-url="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-permalink="/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/" data-domain="gfycat.com" data-rank="12" data-comments-count="465" data-score="35492" data-num-crossposts="1" data-context="listing" ><p class="parent"></p><span class="rank">12</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="35485">35.5k</div><div class="score unvoted" title="35486">35.5k</div><div class="score likes" title="35487">35.5k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-href-url="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-outbound-url="https://out.reddit.com/t3_79gwjl?url=https%3A%2F%2Fgfycat.com%2Fgifs%2Fdetail%2FDevotedCompetentFlounder&amp;token=AQAApV72WVkJyqCOG9_vzGGRqXlRwyDzLrxFPZVr2y5ZS5eJZ4jp&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/u663axy2V9G4O4k6IjDdubJpmSCvtJyfdlB66EdcQYo.jpg" width=\'70\' height=\'39\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" tabindex="1" data-href-url="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-outbound-url="https://out.reddit.com/t3_79gwjl?url=https%3A%2F%2Fgfycat.com%2Fgifs%2Fdetail%2FDevotedCompetentFlounder&amp;token=AQAApV72WVkJyqCOG9_vzGGRqXlRwyDzLrxFPZVr2y5ZS5eJZ4jp&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Putting a camera under a faucet opens up a new dimension (xpost from /r/blackmagicfuckery)</a><span class="linkflairlabel" title="Certified Satisfying">Certified Satisfying</span>&#32;<span class="domain">(<a href="/domain/gfycat.com/">gfycat.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 14:57:03 2017 UTC" datetime="2017-10-29T14:57:03+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/ShiningConcepts" class="author may-blank id-t2_orcvx" >ShiningConcepts</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/oddlysatisfying/" class="subreddit hover may-blank" >r/oddlysatisfying</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/" data-inbound-url="/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >465 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gwjl"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/79gwjl&quot; id=&quot;media-embed-79gwjl-ctg&quot; class=&quot;media-embed&quot; width=&quot;610&quot; height=&quot;348&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gygd odd&#32; link self" id="thing_t3_79gygd" onclick="click_thing(this)" data-fullname="t3_79gygd" data-type="link" data-whitelist-status="all_ads" data-author="KSolita" data-author-fullname="t2_h0jos" data-subreddit="Jokes" data-subreddit-fullname="t5_2qh72" data-timestamp="1509289601000" data-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-permalink="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-domain="self.Jokes" data-rank="13" data-comments-count="642" data-score="31198" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">13</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="31462">31.5k</div><div class="score unvoted" title="31463">31.5k</div><div class="score likes" title="31464">31.5k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned self may-blank " data-event-action="thumbnail" href="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-href-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-inbound-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" tabindex="1" data-href-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-inbound-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >A Polish immigrant went to the DMV to apply for a driver\'s license.</a>&#32;<span class="domain">(<a href="/r/Jokes/">self.Jokes</a>)</span></p><div class="expando-button collapsed hide-when-pinned selftext"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:06:41 2017 UTC" datetime="2017-10-29T15:06:41+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/KSolita" class="author may-blank id-t2_h0jos" >KSolita</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/Jokes/" class="subreddit hover may-blank" >r/Jokes</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-inbound-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >649 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="link-save-button save-button login-required"><a href="#">save</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gygd"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79grd6 even&#32; link " id="thing_t3_79grd6" onclick="click_thing(this)" data-fullname="t3_79grd6" data-type="link" data-whitelist-status="all_ads" data-author="13704" data-author-fullname="t2_uk36f" data-subreddit="PoliticalHumor" data-subreddit-fullname="t5_2qm21" data-timestamp="1509287277000" data-url="https://i.imgur.com/zrkNGWN.png" data-permalink="/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/" data-domain="i.imgur.com" data-rank="14" data-comments-count="2194" data-score="22856" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">14</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="22855">22.9k</div><div class="score unvoted" title="22856">22.9k</div><div class="score likes" title="22857">22.9k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/zrkNGWN.png" data-href-url="https://i.imgur.com/zrkNGWN.png" data-outbound-url="https://out.reddit.com/t3_79grd6?url=https%3A%2F%2Fi.imgur.com%2FzrkNGWN.png&amp;token=AQAApV72WX3umSN103Kv-IwD0TYaie0BFWGJr7vwwkPNSYYYFv6F&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/kGYJqrmvosXM2imRB32Y0fzyYdcrhAe-Qp0IWYazybI.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/zrkNGWN.png" tabindex="1" data-href-url="https://i.imgur.com/zrkNGWN.png" data-outbound-url="https://out.reddit.com/t3_79grd6?url=https%3A%2F%2Fi.imgur.com%2FzrkNGWN.png&amp;token=AQAApV72WX3umSN103Kv-IwD0TYaie0BFWGJr7vwwkPNSYYYFv6F&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >I\'m sure Trump\'s administration won\'t add to this total.</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 14:27:57 2017 UTC" datetime="2017-10-29T14:27:57+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/13704" class="author may-blank id-t2_uk36f" >13704</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/PoliticalHumor/" class="subreddit hover may-blank" >r/PoliticalHumor</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/" data-inbound-url="/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >2194 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79grd6"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79grd6&quot; style=&quot;max-width: 426px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/zrkNGWN.png&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/6pljbSu9tp0f5lEW7LduQtPbVSsyVfYJTl-Ox6t5p-U.png?w=426&amp;amp;s=84426d18d533d100170d438ee2769c3d&quot; width=&quot;426&quot; height=&quot;764&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h5mn odd&#32; link " id="thing_t3_79h5mn" onclick="click_thing(this)" data-fullname="t3_79h5mn" data-type="link" data-whitelist-status="all_ads" data-author="chistannuhguyin" data-author-fullname="t2_1rxpmml" data-subreddit="hmmm" data-subreddit-fullname="t5_2qq6z" data-timestamp="1509291794000" data-url="https://i.redd.it/p522enxvhsuz.jpg" data-permalink="/r/hmmm/comments/79h5mn/hmmm/" data-domain="i.redd.it" data-rank="15" data-comments-count="61" data-score="7624" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">15</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="10557">10.6k</div><div class="score unvoted" title="10558">10.6k</div><div class="score likes" title="10559">10.6k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned image may-blank " data-event-action="thumbnail" href="/r/hmmm/comments/79h5mn/hmmm/" data-href-url="/r/hmmm/comments/79h5mn/hmmm/" data-inbound-url="/r/hmmm/comments/79h5mn/hmmm/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/hmmm/comments/79h5mn/hmmm/" tabindex="1" data-href-url="/r/hmmm/comments/79h5mn/hmmm/" data-inbound-url="/r/hmmm/comments/79h5mn/hmmm/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >hmmm</a>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:43:14 2017 UTC" datetime="2017-10-29T15:43:14+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/chistannuhguyin" class="author may-blank id-t2_1rxpmml" >chistannuhguyin</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/hmmm/" class="subreddit hover may-blank" >r/hmmm</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/hmmm/comments/79h5mn/hmmm/" data-inbound-url="/r/hmmm/comments/79h5mn/hmmm/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/hmmm/comments/79h5mn/hmmm/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >75 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h5mn"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79h5mn&quot; style=&quot;max-width: 684px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/p522enxvhsuz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/XRwuYrk_RHQaRxg1sj3rpzx6c5Qh6Man12cENnHAzgE.jpg?w=684&amp;amp;s=389d4369cb2ccca03ede86b6baeda221&quot; width=&quot;684&quot; height=&quot;768&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h399 even&#32; link " id="thing_t3_79h399" onclick="click_thing(this)" data-fullname="t3_79h399" data-type="link" data-whitelist-status="all_ads" data-author="marinamaral" data-author-fullname="t2_jtwq5" data-subreddit="ColorizedHistory" data-subreddit-fullname="t5_2voya" data-timestamp="1509291070000" data-url="https://i.redd.it/qdd9rk6pfsuz.jpg" data-permalink="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-domain="i.redd.it" data-rank="16" data-comments-count="625" data-score="8465" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">16</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="9872">9872</div><div class="score unvoted" title="9873">9873</div><div class="score likes" title="9874">9874</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-href-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-inbound-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//a.thumbs.redditmedia.com/pL_Okc7Z8o_vh5xcOwogyRrWtC3Yz-NKagUWSf1r1N4.jpg" width=\'70\' height=\'55\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" tabindex="1" data-href-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-inbound-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >Lyndon B. Johnson takes the oath of office aboard Air Force One at Love Field in Dallas following the assassination of JFK</a>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:31:10 2017 UTC" datetime="2017-10-29T15:31:10+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/marinamaral" class="author may-blank id-t2_jtwq5" >marinamaral</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/ColorizedHistory/" class="subreddit hover may-blank" >r/ColorizedHistory</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-inbound-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >714 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h399"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79h399&quot; style=&quot;max-width: 966px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/qdd9rk6pfsuz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/IyLgtpPji9RUJmQmvALaUkZkRHOg12-D8Ldl1_GGRqQ.jpg?w=966&amp;amp;s=14c42802a40676eb2ec4ecb5cfea833c&quot; width=&quot;966&quot; height=&quot;768&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79hj3t linkflair odd&#32; link " id="thing_t3_79hj3t" onclick="click_thing(this)" data-fullname="t3_79hj3t" data-type="link" data-whitelist-status="all_ads" data-author="charmik12" data-author-fullname="t2_9lgjj" data-subreddit="iamverysmart" data-subreddit-fullname="t5_2yuej" data-timestamp="1509295565000" data-url="https://i.redd.it/z86ammk3tsuz.jpg" data-permalink="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-domain="i.redd.it" data-rank="17" data-comments-count="553" data-score="5524" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">17</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="6299">6299</div><div class="score unvoted" title="6300">6300</div><div class="score likes" title="6301">6301</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-href-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-inbound-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//b.thumbs.redditmedia.com/dLDXVJumxwtZ92psyCUuVhta_mCP4c2QmNda87MaOOM.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" tabindex="1" data-href-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-inbound-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >I can use big unnecessary big words</a><span class="linkflairlabel" title="/r/all">/r/all</span>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 16:46:05 2017 UTC" datetime="2017-10-29T16:46:05+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/charmik12" class="author may-blank id-t2_9lgjj" >charmik12</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/iamverysmart/" class="subreddit hover may-blank" >r/iamverysmart</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-inbound-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >622 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79hj3t"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79hj3t&quot; style=&quot;max-width: 431px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/z86ammk3tsuz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/Qz8N9i-O0Y0WjJMZZuTwV4bBzcP7ZMq0LV1KFMOazpc.jpg?w=431&amp;amp;s=e621aa58c050e7d36032f2642eb666dc&quot; width=&quot;431&quot; height=&quot;768&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h4u0 even&#32; link " id="thing_t3_79h4u0" onclick="click_thing(this)" data-fullname="t3_79h4u0" data-type="link" data-whitelist-status="all_ads" data-author="RespectMyAuthoriteh" data-author-fullname="t2_c35it" data-subreddit="gifs" data-subreddit-fullname="t5_2qt55" data-timestamp="1509291555000" data-url="https://i.imgur.com/fv8333a.gifv" data-permalink="/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/" data-domain="i.imgur.com" data-rank="18" data-comments-count="125" data-score="8938" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">18</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="8928">8928</div><div class="score unvoted" title="8929">8929</div><div class="score likes" title="8930">8930</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/fv8333a.gifv" data-href-url="https://i.imgur.com/fv8333a.gifv" data-outbound-url="https://out.reddit.com/t3_79h4u0?url=https%3A%2F%2Fi.imgur.com%2Ffv8333a.gifv&amp;token=AQAApV72Wa3SGQl4uXFoxT43sq-W5-ga7a_hXz3sPgqX210h7HXI&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/1Y6vb9bp7konn5metnwzn8dXykYGSd-yH9r8-0HR0gU.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/fv8333a.gifv" tabindex="1" data-href-url="https://i.imgur.com/fv8333a.gifv" data-outbound-url="https://out.reddit.com/t3_79h4u0?url=https%3A%2F%2Fi.imgur.com%2Ffv8333a.gifv&amp;token=AQAApV72Wa3SGQl4uXFoxT43sq-W5-ga7a_hXz3sPgqX210h7HXI&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >&quot;Let\'s make that a bit more difficult for you, shall we?&quot;</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:39:15 2017 UTC" datetime="2017-10-29T15:39:15+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/RespectMyAuthoriteh" class="author may-blank id-t2_c35it" >RespectMyAuthoriteh</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/gifs/" class="subreddit hover may-blank" >r/gifs</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/" data-inbound-url="/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >125 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h4u0"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79h4u0&quot; style=&quot;max-width: 614px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/fv8333a.gifv&quot; class=&quot;may-blank&quot;&gt; &lt;video class=&quot;preview&quot; preload=&quot;auto&quot; autoplay=&quot;autoplay&quot; muted=&quot;muted&quot; loop=&quot;loop&quot; webkit-playsinline=&quot;&quot; style=&quot;width: 614px; height: 768px;&quot;&gt; &lt;source src=&quot;https://g.redditmedia.com/pLifm8xm-KBwxtxMg7RT_tAKQSy-bCtTtaGW-ueido8.gif?w=614&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=d374357373688748ebefd0eb07112564&quot; type=&quot;video/mp4&quot;&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79h5dc odd&#32; link self" id="thing_t3_79h5dc" onclick="click_thing(this)" data-fullname="t3_79h5dc" data-type="link" data-whitelist-status="all_ads" data-author="JimBobBoBubba" data-author-fullname="t2_cmdmw" data-subreddit="AskReddit" data-subreddit-fullname="t5_2qh1i" data-timestamp="1509291717000" data-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-permalink="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-domain="self.AskReddit" data-rank="19" data-comments-count="1178" data-score="8622" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">19</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="12309">12.3k</div><div class="score unvoted" title="12310">12.3k</div><div class="score likes" title="12311">12.3k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned self may-blank " data-event-action="thumbnail" href="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-href-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-inbound-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" tabindex="1" data-href-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-inbound-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >You awaken, clothes smoking, in a ruined bunker in 1945 with a box containing a 2015-era laptop with Photoshop and Premiere Pro installed, a scanner, photo printer, analog-to-USB input converter and more than enough printer ink and card photo stock. How do you best start screwing with history?</a>&#32;<span class="domain">(<a href="/r/AskReddit/">self.AskReddit</a>)</span></p><p class="tagline ">submitted&#32;<time title="Sun Oct 29 15:41:57 2017 UTC" datetime="2017-10-29T15:41:57+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/JimBobBoBubba" class="author may-blank id-t2_cmdmw" >JimBobBoBubba</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/AskReddit/" class="subreddit hover may-blank" >r/AskReddit</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-inbound-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >1581 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79h5dc"></div></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gkuz linkflair linkflair-mods-choice-flair even&#32; link " id="thing_t3_79gkuz" onclick="click_thing(this)" data-fullname="t3_79gkuz" data-type="link" data-whitelist-status="all_ads" data-author="meltedlaundry" data-author-fullname="t2_3rtuv" data-subreddit="ChildrenFallingOver" data-subreddit-fullname="t5_2yo2z" data-timestamp="1509285063000" data-url="http://i.imgur.com/Rcx6rsF.gifv" data-permalink="/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/" data-domain="i.imgur.com" data-rank="20" data-comments-count="250" data-score="21848" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">20</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="21852">21.9k</div><div class="score unvoted" title="21853">21.9k</div><div class="score likes" title="21854">21.9k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="http://i.imgur.com/Rcx6rsF.gifv" data-href-url="http://i.imgur.com/Rcx6rsF.gifv" data-outbound-url="https://out.reddit.com/t3_79gkuz?url=http%3A%2F%2Fi.imgur.com%2FRcx6rsF.gifv&amp;token=AQAApV72WYJaoyPMdYLiRa9Ol9lu6ggDA85i219fghQfGME6Y_5j&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/XSjuXh9zj5GBUnySDJ8rA_5lpiAkgG_bqsUZkN_FlAs.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="http://i.imgur.com/Rcx6rsF.gifv" tabindex="1" data-href-url="http://i.imgur.com/Rcx6rsF.gifv" data-outbound-url="https://out.reddit.com/t3_79gkuz?url=http%3A%2F%2Fi.imgur.com%2FRcx6rsF.gifv&amp;token=AQAApV72WYJaoyPMdYLiRa9Ol9lu6ggDA85i219fghQfGME6Y_5j&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Not a bad way to fall</a><span class="linkflairlabel" title="Mods\' Choice">Mods\' Choice</span>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 13:51:03 2017 UTC" datetime="2017-10-29T13:51:03+00:00" class="live-timestamp">8 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/meltedlaundry" class="author may-blank id-t2_3rtuv" >meltedlaundry</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/ChildrenFallingOver/" class="subreddit hover may-blank" >r/ChildrenFallingOver</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/" data-inbound-url="/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >250 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gkuz"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79gkuz&quot; style=&quot;max-width: 432px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;http://i.imgur.com/Rcx6rsF.gifv&quot; class=&quot;may-blank&quot;&gt; &lt;video class=&quot;preview&quot; preload=&quot;auto&quot; autoplay=&quot;autoplay&quot; muted=&quot;muted&quot; loop=&quot;loop&quot; webkit-playsinline=&quot;&quot; style=&quot;width: 432px; height: 768px;&quot;&gt; &lt;source src=&quot;https://g.redditmedia.com/UQ1-RSNkocZZFrwAxQUpwqFH6QL1t1WjmIiHbQp1Hxg.gif?w=432&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=e8063c8dc99cd198da311a16b31524eb&quot; type=&quot;video/mp4&quot;&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79hxwr odd&#32; link " id="thing_t3_79hxwr" onclick="click_thing(this)" data-fullname="t3_79hxwr" data-type="link" data-whitelist-status="all_ads" data-author="qorgon" data-author-fullname="t2_xap51" data-subreddit="quityourbullshit" data-subreddit-fullname="t5_2y8xf" data-timestamp="1509299587000" data-url="https://imgur.com/hluCPPa" data-permalink="/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/" data-domain="imgur.com" data-rank="21" data-comments-count="237" data-score="4176" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">21</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="4173">4173</div><div class="score unvoted" title="4174">4174</div><div class="score likes" title="4175">4175</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://imgur.com/hluCPPa" data-href-url="https://imgur.com/hluCPPa" data-outbound-url="https://out.reddit.com/t3_79hxwr?url=https%3A%2F%2Fimgur.com%2FhluCPPa&amp;token=AQAApV72WXIlWHdW4FmSr62zeBzxl1UEwdC7JqOaRJ00TpFUJrcu&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/COOh5SGOmFmjg9dh7ErpIPeSH-SKp5LZq0q9aR6UjBA.jpg" width=\'70\' height=\'65\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://imgur.com/hluCPPa" tabindex="1" data-href-url="https://imgur.com/hluCPPa" data-outbound-url="https://out.reddit.com/t3_79hxwr?url=https%3A%2F%2Fimgur.com%2FhluCPPa&amp;token=AQAApV72WXIlWHdW4FmSr62zeBzxl1UEwdC7JqOaRJ00TpFUJrcu&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Part of a comment thread I saw on a picture of someone\'s dog bite wound.</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline ">submitted&#32;<time title="Sun Oct 29 17:53:07 2017 UTC" datetime="2017-10-29T17:53:07+00:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/qorgon" class="author may-blank id-t2_xap51" >qorgon</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/quityourbullshit/" class="subreddit hover may-blank" >r/quityourbullshit</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/" data-inbound-url="/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >237 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79hxwr"></div></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gu0m even&#32; link " id="thing_t3_79gu0m" onclick="click_thing(this)" data-fullname="t3_79gu0m" data-type="link" data-whitelist-status="all_ads" data-author="Ibleedcarrots" data-author-fullname="t2_2wrtwm1" data-subreddit="SweatyPalms" data-subreddit-fullname="t5_2v567" data-timestamp="1509288177000" data-url="https://i.imgur.com/A8O8Yfi.gifv" data-permalink="/r/SweatyPalms/comments/79gu0m/wall_jumping/" data-domain="i.imgur.com" data-rank="22" data-comments-count="306" data-score="11534" data-num-crossposts="1" data-context="listing" ><p class="parent"></p><span class="rank">22</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="11531">11.5k</div><div class="score unvoted" title="11532">11.5k</div><div class="score likes" title="11533">11.5k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/A8O8Yfi.gifv" data-href-url="https://i.imgur.com/A8O8Yfi.gifv" data-outbound-url="https://out.reddit.com/t3_79gu0m?url=https%3A%2F%2Fi.imgur.com%2FA8O8Yfi.gifv&amp;token=AQAApV72WYaM1pEG_kcTwL-d0cY6Tm5vOrXReSYkUaq8B3HEXH_W&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/-oNRQE60n5fstUoWxkuYpngNVqTbUXpnjZjOLVyE0PU.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/A8O8Yfi.gifv" tabindex="1" data-href-url="https://i.imgur.com/A8O8Yfi.gifv" data-outbound-url="https://out.reddit.com/t3_79gu0m?url=https%3A%2F%2Fi.imgur.com%2FA8O8Yfi.gifv&amp;token=AQAApV72WYaM1pEG_kcTwL-d0cY6Tm5vOrXReSYkUaq8B3HEXH_W&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Wall Jumping</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 14:42:57 2017 UTC" datetime="2017-10-29T14:42:57+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/Ibleedcarrots" class="author may-blank id-t2_2wrtwm1" >Ibleedcarrots</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/SweatyPalms/" class="subreddit hover may-blank" >r/SweatyPalms</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/SweatyPalms/comments/79gu0m/wall_jumping/" data-inbound-url="/r/SweatyPalms/comments/79gu0m/wall_jumping/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/SweatyPalms/comments/79gu0m/wall_jumping/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >306 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gu0m"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79gu0m&quot; style=&quot;max-width: 640px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/A8O8Yfi.gifv&quot; class=&quot;may-blank&quot;&gt; &lt;video class=&quot;preview&quot; preload=&quot;auto&quot; autoplay=&quot;autoplay&quot; muted=&quot;muted&quot; loop=&quot;loop&quot; webkit-playsinline=&quot;&quot; style=&quot;width: 640px; height: 640px;&quot;&gt; &lt;source src=&quot;https://g.redditmedia.com/LdxhmPfVU4c4Wx7DVWqywY4TqjXolyBoN5N_njAWKM0.gif?w=640&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=45f9a412cb5f27205eefcf550b31050c&quot; type=&quot;video/mp4&quot;&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gke3 odd&#32; link " id="thing_t3_79gke3" onclick="click_thing(this)" data-fullname="t3_79gke3" data-type="link" data-whitelist-status="promo_all" data-author="Ibleedcarrots" data-author-fullname="t2_2wrtwm1" data-subreddit="BlackPeopleTwitter" data-subreddit-fullname="t5_33x33" data-timestamp="1509284902000" data-url="https://i.imgur.com/qVBk8C9.jpg" data-permalink="/r/BlackPeopleTwitter/comments/79gke3/equality/" data-domain="i.imgur.com" data-rank="23" data-comments-count="247" data-score="22577" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">23</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="22575">22.6k</div><div class="score unvoted" title="22576">22.6k</div><div class="score likes" title="22577">22.6k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" href="https://i.imgur.com/qVBk8C9.jpg" data-href-url="https://i.imgur.com/qVBk8C9.jpg" data-outbound-url="https://out.reddit.com/t3_79gke3?url=https%3A%2F%2Fi.imgur.com%2FqVBk8C9.jpg&amp;token=AQAApV72WQ0Gpc6yjyDOVKMcVUbFHY8_DHlnv847PZpVpG-JMtm-&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ><img src="//b.thumbs.redditmedia.com/0ifOwaFoewkIr-OVkT8H1VAlG3hSy-uRj-ExIPAO7xc.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="https://i.imgur.com/qVBk8C9.jpg" tabindex="1" data-href-url="https://i.imgur.com/qVBk8C9.jpg" data-outbound-url="https://out.reddit.com/t3_79gke3?url=https%3A%2F%2Fi.imgur.com%2FqVBk8C9.jpg&amp;token=AQAApV72WQ0Gpc6yjyDOVKMcVUbFHY8_DHlnv847PZpVpG-JMtm-&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Equality</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 13:48:22 2017 UTC" datetime="2017-10-29T13:48:22+00:00" class="live-timestamp">8 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/Ibleedcarrots" class="author may-blank id-t2_2wrtwm1" >Ibleedcarrots</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/BlackPeopleTwitter/" class="subreddit hover may-blank" >r/BlackPeopleTwitter</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/BlackPeopleTwitter/comments/79gke3/equality/" data-inbound-url="/r/BlackPeopleTwitter/comments/79gke3/equality/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/BlackPeopleTwitter/comments/79gke3/equality/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >247 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gke3"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79gke3&quot; style=&quot;max-width: 720px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.imgur.com/qVBk8C9.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/V62diui7qttbTruto7kBLIwWGrnXlQaMS-wtUW7wdTE.jpg?w=720&amp;amp;s=d7050ec56f7db1db983c269cc9799513&quot; width=&quot;720&quot; height=&quot;720&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gss8 even&#32; link " id="thing_t3_79gss8" onclick="click_thing(this)" data-fullname="t3_79gss8" data-type="link" data-whitelist-status="all_ads" data-author="aCertainBlueLobster" data-author-fullname="t2_yhqwc" data-subreddit="gaming" data-subreddit-fullname="t5_2qh03" data-timestamp="1509287752000" data-url="https://i.redd.it/o0oh1p3v5suz.jpg" data-permalink="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-domain="i.redd.it" data-rank="24" data-comments-count="747" data-score="40056" data-num-crossposts="0" data-context="listing" ><p class="parent"></p><span class="rank">24</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="41166">41.2k</div><div class="score unvoted" title="41167">41.2k</div><div class="score likes" title="41168">41.2k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" href="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-href-url="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-inbound-url="/r/gaming/comments/79gss8/we_went_as_the_sims/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" ><img src="//a.thumbs.redditmedia.com/s7fmnEnm5rnJaOBFwB85-5ZMEgVbEsKbnxKwQB0vPE0.jpg" width=\'70\' height=\'70\' alt=""></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank " data-event-action="title" href="/r/gaming/comments/79gss8/we_went_as_the_sims/" tabindex="1" data-href-url="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-inbound-url="/r/gaming/comments/79gss8/we_went_as_the_sims/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" rel="" >We went as The Sims!</a>&#32;<span class="domain">(<a href="/domain/i.redd.it/">i.redd.it</a>)</span></p><div class="expando-button collapsed hide-when-pinned video"></div><p class="tagline ">submitted&#32;<time title="Sun Oct 29 14:35:52 2017 UTC" datetime="2017-10-29T14:35:52+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/aCertainBlueLobster" class="author may-blank id-t2_yhqwc" >aCertainBlueLobster</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/gaming/" class="subreddit hover may-blank" >r/gaming</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/gaming/comments/79gss8/we_went_as_the_sims/" data-inbound-url="/r/gaming/comments/79gss8/we_went_as_the_sims/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >762 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gss8"></div></div><div class="expando expando-uninitialized" style=\'display: none\' data-cachedhtml=" &lt;div class=&quot;media-preview&quot; id=&quot;media-preview-79gss8&quot; style=&quot;max-width: 576px&quot;&gt; &lt;div class=&quot;media-preview-content&quot;&gt; &lt;a href=&quot;https://i.redd.it/o0oh1p3v5suz.jpg&quot; class=&quot;may-blank&quot;&gt; &lt;img class=&quot;preview&quot; src=&quot;https://i.redditmedia.com/dqiT1FIDOiVui_9RIID8-nCQzAzJfN5WEdr0XTCS9ew.jpg?w=576&amp;amp;s=9125e0b1d9965e1bc84309c4b9e5b171&quot; width=&quot;576&quot; height=&quot;768&quot;&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; " data-pin-condition="function() {return this.style.display != \'none\';}" ><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_79gblx odd&#32; link " id="thing_t3_79gblx" onclick="click_thing(this)" data-fullname="t3_79gblx" data-type="link" data-whitelist-status="all_ads" data-author="Pach1no" data-author-fullname="t2_sl55t" data-subreddit="news" data-subreddit-fullname="t5_2qh3l" data-timestamp="1509281552000" data-url="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-permalink="/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/" data-domain="wafb.com" data-rank="25" data-comments-count="2891" data-score="45936" data-num-crossposts="1" data-context="listing" ><p class="parent"></p><span class="rank">25</span><div class="midcol unvoted" ><div class="arrow up login-required access-required" data-event-action="upvote" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes" title="45935">45.9k</div><div class="score unvoted" title="45936">45.9k</div><div class="score likes" title="45937">45.9k</div><div class="arrow down login-required access-required" data-event-action="downvote" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail invisible-when-pinned default may-blank outbound" data-event-action="thumbnail" href="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-href-url="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-outbound-url="https://out.reddit.com/t3_79gblx?url=http%3A%2F%2Fwww.wafb.com%2Fstory%2F36709925%2Fwomans-id-stolen-15-times-after-equifax-breach&amp;token=AQAApV72WUvAKQ2lWxsWZ_-yM88GB3S2tMlvJRUIaKir3O__k2-P&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" ></a><div class="entry unvoted"><div class="top-matter"><p class="title"><a class="title may-blank outbound" data-event-action="title" href="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" tabindex="1" data-href-url="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-outbound-url="https://out.reddit.com/t3_79gblx?url=http%3A%2F%2Fwww.wafb.com%2Fstory%2F36709925%2Fwomans-id-stolen-15-times-after-equifax-breach&amp;token=AQAApV72WUvAKQ2lWxsWZ_-yM88GB3S2tMlvJRUIaKir3O__k2-P&amp;app_name=reddit.com" data-outbound-expiration="1509318309000" rel="" >Woman\'s ID stolen 15 times after Equifax breach</a>&#32;<span class="domain">(<a href="/domain/wafb.com/">wafb.com</a>)</span></p><p class="tagline ">submitted&#32;<time title="Sun Oct 29 12:52:32 2017 UTC" datetime="2017-10-29T12:52:32+00:00" class="live-timestamp">9 hours ago</time>&#32;by&#32;<a href="https://www.reddit.com/user/Pach1no" class="author may-blank id-t2_sl55t" >Pach1no</a><span class="userattrs"></span>&#32;to&#32;<a href="https://www.reddit.com/r/news/" class="subreddit hover may-blank" >r/news</a></p><ul class="flat-list buttons"><li class="first"><a href="https://www.reddit.com/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/" data-inbound-url="/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" data-href-url="/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/" data-event-action="comments" class="bylink comments may-blank" rel="nofollow" >2891 comments</a></li><li class="share"><a class="post-sharing-button" href="javascript: void 0;">share</a></li><li class="report-button login-required"><a href="javascript:void(0)" class="reportbtn access-required" data-event-action="report">report</a></li></ul><div class="reportform report-t3_79gblx"></div></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class="nav-buttons"><span class="nextprev">view more:&#32;<span class="next-button"><a href="https://www.reddit.com/?count=25&amp;after=t3_79gblx" rel="nofollow next" >next &rsaquo;</a></span></span></div></div></div><script id="archived-popup" type="text/template"><div class="interstitial"><img class="interstitial-image" src="//www.redditstatic.com/interstitial-image-archived.png" alt="archived" height="150" width="150"><div class="interstitial-message md-container"><div class="md"><h3>This is an archived post. You won\'t be able to vote or comment.</h3><p>Posts&#32;are&#32;automatically&#32;archived&#32;after&#32;6&#32;months.</p></div></div><div class="buttons"><a href="/" class="c-btn c-btn-primary">Got It</a></div></div></script></div><div class="footer-parent"><div by-zero class="footer rounded"><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">about</li><li ><a href="https://www.reddit.com/blog/" class="choice" >blog</a></li><li ><span class="separator"></span><a href="https://about.reddit.com/" class="choice" >about</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/code/" class="choice" >source code</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/advertising/" class="choice" >advertise</a></li><li ><span class="separator"></span><a href="https://about.reddit.com/careers/" class="choice" >careers</a></li></ul></div><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">help</li><li ><a href="https://www.reddit.com/rules/" class="choice" >site rules</a></li><li ><span class="separator"></span><a href="https://www.reddithelp.com" class="choice" >help center</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/wiki/" class="choice" >wiki</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/wiki/reddiquette/" class="choice" >reddiquette</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/help/healthycommunities/" class="choice" >mod guidelines</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/contact/" class="choice" >contact us</a></li></ul></div><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">apps &amp; tools</li><li ><a href="https://itunes.apple.com/us/app/reddit-the-official-app/id1064216828?mt=8" class="choice" >Reddit for iPhone</a></li><li ><span class="separator"></span><a href="https://play.google.com/store/apps/details?id=com.reddit.frontpage" class="choice" >Reddit for Android</a></li><li ><span class="separator"></span><a href="#" class="mweb-redirect-btn choice" >mobile website</a></li><li ><span class="separator"></span><a href="https://www.reddit.com/buttons/" class="choice" >buttons</a></li></ul></div><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">&lt;3</li><li ><a href="https://www.reddit.com/gold/about/" class="buygold choice" >reddit gold</a></li><li ><span class="separator"></span><a href="http://redditgifts.com" class="choice" >redditgifts</a></li></ul></div></div><p class="bottommenu">Use of this site constitutes acceptance of our&#32;<a href="https://www.reddit.com/help/useragreement" >User Agreement</a>&#32;and&#32;<a href="https://www.reddit.com/help/privacypolicy" >Privacy Policy</a>. &copy; 2017 reddit inc. All rights reserved.</p><p class="bottommenu">REDDIT and the ALIEN Logo are registered trademarks of reddit inc.</p></div><script>var BETA_HOST = \'beta.reddit.com\'; if (location.host === BETA_HOST) { r.config.https_endpoint = \'https://\' + BETA_HOST; }</script><script id="login-popup" type="text/template"><h3 id="cover-msg" class="modal-title">You need to login to do that.</h3><div id="login"><div class="split-panel"><div class="split-panel-section split-panel-divider"><h4 class="modal-title">create a new account</h4><form id="register-form" method="post" action="https://www.reddit.com/post/reg" class="form-v2"><input type="hidden" name="op" value="reg"><div class="c-form-group "><label for="user_reg" class="screenreader-only">username:</label><input value="" name="user" id="user_reg" class="c-form-control" type="text" maxlength="20" tabindex="2" placeholder="choose a username" data-validate-url="/api/check_username.json" data-validate-min="3" autocomplete="off" ><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="passwd_reg" class="screenreader-only">password:</label><input id="passwd_reg" class="c-form-control" name="passwd" type="password" tabindex="2" placeholder="password" data-validate-url=\'/api/check_password.json\'><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="passwd2_reg" class="screenreader-only">verify password:</label><input name="passwd2" id="passwd2_reg" class="c-form-control" type="password" tabindex="2" placeholder="verify password"><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="email_reg" class="screenreader-only">email: &nbsp;<i>(optional)</i></label><input value="" name="email" id="email_reg" class="c-form-control" type="text" tabindex="2" placeholder="email" data-validate-url="/api/check_email.json" data-validate-on="change blur"><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-checkbox"><input type="checkbox" name="rem" id="rem_reg" tabindex="2"><label for="rem_reg">remember me</label></div><input type="hidden" name="digest_subscribe" id="digest_subscribe" value="true"><div class="spacer"><div class="c-form-group g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC"></div><span class="error BAD_CAPTCHA field-captcha" style="display:none"></span></div><div class="c-clearfix c-submit-group"><span class="c-form-throbber"></span><button type="submit" class="c-btn c-btn-primary c-pull-right" tabindex="2">sign up</button></div><div><div class="c-alert c-alert-danger"></div><span class="error RATELIMIT field-ratelimit" style="display:none"></span><span class="error RATELIMIT field-vdelay" style="display:none"></span></div></form></div><div class="split-panel-section" id="login-panel"><h4 class="modal-title">log in</h4><form id="login-form" method="post" action="https://www.reddit.com/post/login" class="form-v2"><input type="hidden" name="op" value="login"><div class="c-form-group "><label for="user_login" class="screenreader-only">username:</label><input value="" name="user" id="user_login" class="c-form-control" type="text" maxlength="20" tabindex="3" placeholder="username" ></div><div class="c-form-group "><label for="passwd_login" class="screenreader-only">password:</label><input id="passwd_login" class="c-form-control" name="passwd" type="password" tabindex="3" placeholder="password" ><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-checkbox"><input type="checkbox" name="rem" id="rem_login" tabindex="3"><label for="rem_login">remember me</label><a href="/password" class="c-pull-right">reset password</a></div><div class="spacer"><div class="c-form-group g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC"></div><span class="error BAD_CAPTCHA field-captcha" style="display:none"></span></div><div class="c-clearfix c-submit-group"><span class="c-form-throbber"></span><button type="submit" class="c-btn c-btn-primary c-pull-right" tabindex="3">log in</button></div><div><div class="c-alert c-alert-danger"></div></div></form></div></div><p class="login-disclaimer">By signing up, you agree to our&#32;<a href="https://www.reddit.com/help/useragreement/" >Terms</a>&#32;and that you have read our&#32;<a href="https://www.reddit.com/help/privacypolicy/" >Privacy Policy</a>&#32;and&#32;<a href="https://www.reddit.com/help/contentpolicy/" >Content Policy</a>.</p></div></script><script id="lang-popup" type="text/template"><form action="https://www.reddit.com/post/unlogged_options" method="post" class="pretty-form short-text"><input type="hidden" name="uh" value="" /><table class="content preftable"><tr><th>interface language</th><td class="prefright"><select id="lang" name="lang"><option selected=\'selected\' value="en">English [en]</option><option value="af">Afrikaans [af] (*)</option><option value="ar">العربية [ar] (*)</option><option value="be">Беларуская мова [be] (*)</option><option value="bg">български език [bg]</option><option value="bn-IN">বাংলা [bn-IN] (*)</option><option value="bn-bd">বাংলা [bn-bd] (*)</option><option value="bs">Bosanski [bs] (*)</option><option value="ca">català [ca]</option><option value="cs">česky [cs]</option><option value="cy">Cymraeg [cy] (*)</option><option value="da">dansk [da]</option><option value="de">Deutsch [de]</option><option value="el">Ελληνικά [el]</option><option value="en-au">English (Australia) [en-au]</option><option value="en-ca">English (Canadian) [en-ca]</option><option value="en-gb">English (Great Britain) [en-gb]</option><option value="en-us">English [en-us]</option><option value="eo">Esperanto [eo] (*)</option><option value="es">español [es]</option><option value="es-ar">español [es-ar]</option><option value="es-cl">español [es-cl]</option><option value="es-mx">Español [es-mx]</option><option value="et">eesti keel [et] (*)</option><option value="eu">Euskara [eu]</option><option value="fa">فارسی [fa]</option><option value="fi">suomi [fi]</option><option value="fil">Filipino [fil] (*)</option><option value="fr">français [fr]</option><option value="fr-ca">Français [fr-ca]</option><option value="fy-NL">Frysk [fy-NL] (*)</option><option value="ga-ie">Gaeilge [ga-ie] (*)</option><option value="gd">Gàidhlig [gd]</option><option value="gl">Galego [gl] (*)</option><option value="he">עברית [he] (*)</option><option value="hi">मानक हिन्दी [hi] (*)</option><option value="hr">hrvatski [hr]</option><option value="hu">Magyar [hu]</option><option value="hy">Հայերեն լեզու [hy]</option><option value="id">Bahasa Indonesia [id] (*)</option><option value="is">íslenska [is]</option><option value="it">italiano (Italy) [it]</option><option value="ja">日本語 [ja]</option><option value="kn_IN">ಕನ್ನಡ [kn_IN]</option><option value="ko">한국어 [ko]</option><option value="la">Latin [la] (*)</option><option value="leet">1337 [leet]</option><option value="lol">LOL [lol]</option><option value="lt">lietuvių kalba [lt] (*)</option><option value="lv">latviešu valoda [lv]</option><option value="ms">Bahasa Melayu [ms] (*)</option><option value="mt-MT">Malti [mt-MT]</option><option value="nl">Nederlands [nl]</option><option value="nn">Nynorsk [nn]</option><option value="no">Norsk [no]</option><option value="pir">Arrrrrrrr! [pir] (*)</option><option value="pl">polski [pl]</option><option value="pt">português [pt] (*)</option><option value="pt-pt">português [pt-pt]</option><option value="pt_BR">português brasileiro [pt_BR]</option><option value="ro">română [ro]</option><option value="ru">русский [ru]</option><option value="sk">slovenčina [sk]</option><option value="sl">slovenščina [sl] (*)</option><option value="sr">српски језик [sr]</option><option value="sr-la">Srpski [sr-la]</option><option value="sv">Svenska [sv]</option><option value="ta">தமிழ் [ta]</option><option value="th">ภาษาไทย [th]</option><option value="tr">Türkçe [tr]</option><option value="uk">українська мова [uk]</option><option value="vi">Tiếng Việt [vi]</option><option value="zh">中文 [zh]</option><option value="zh-cn">简化字 [zh-cn]</option></select>&#32;<span class="details hover">(*) incomplete &#32;<a href="https://www.reddit.com/r/i18n/wiki/getting_started">volunteer to translate</a></span></td></tr><tr><td><input type="submit" class="btn" value="save options"/></td></tr></table></form></script><img id="hsts_pixel" src="//reddit.com/static/pixel.png"><p class="debuginfo"><span class="icon">&pi;</span>&nbsp;<span class="content">Rendered by PID 58317 on&#32; app-175 &#32;at 2017-10-29 22:05:08.944544+00:00 running 2c9616a country code: US.</span></p><script type="text/javascript" src="//www.redditstatic.com/reddit.en.WLBZDlZ_bCY.js"></script><script type="text/javascript" src="//www.redditstatic.com/author-tooltip.9XC7_8MXyJ0.js"></script><script>(function() { var ads = window.__adslots = window.__adslots || []; window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; function indexGoogleTagSlots(googSlots) { return googSlots.reduce(function(o, slot) { var slotID = slot.getSlotElementId(); o[slotID] = slot; return o; }, {}); } var gads = document.createElement(\'script\'); gads.async = true; gads.type = \'text/javascript\'; var useSSL = \'https:\' == document.location.protocol; gads.src = (useSSL ? \'https:\' : \'http:\') + \'//www.googletagservices.com/tag/js/gpt.js\'; var node = document.getElementsByTagName(\'script\')[0]; node.parentNode.insertBefore(gads, node); googletag.cmd.push(function() { googletag.pubads().disableInitialLoad(); googletag.pubads().setSafeFrameConfig({ allowOverlayExpansion: false, allowPushExpansion: false, sandbox: !(r.utils.testAcceptableAds() && /firefox/i.test(navigator.userAgent)), }); googletag.enableServices(); }); var percentage = 0.05; var usePrebid = window._usePrebid = Math.random()<= percentage || /.*prebid=1.*/.test(location.search || \'\'); if (usePrebid) { /* prebid */ window.pbjs = window.pbjs || {}; pbjs.que = pbjs.que || []; pbjs.que.push(function() { pbjs.setConfig({ priceGranularity: { buckets: [{ min: 0, max: 3, increment: 0.01, }, { min: 3, max: 8, increment: 0.05, }, { min: 8, max: 20, increment: 0.5, }, { min: 20, max: 35, increment: 1, }], }, }); }); var pb = document.createElement(\'script\'); pb.type = \'text/javascript\'; pb.async = true; pb.src = "//www.redditstatic.com/js/prebid.js"; var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(pb, s); } else { /* amazon a9 ads */ !function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q(\'i\',arguments)},fetchBids:function(){q(\'f\',arguments)},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}(\'apstag\',window,document,\'script\',\'//c.amazon-adsystem.com/aax2/apstag.js\'); } r.hooks.get(\'reddit\').register(function() { var category = ""; if (!usePrebid) { apstag.init({ pubID: r.utils.testAcceptableAds() ? \'3570\' : \'3379\', adServer: \'googletag\', bidTimeout: 2e3, params: { position: \'sidebar\', section: category, sis_sitesection: [\'reddit.com\', category].filter(function(x) { return x; }).join(\':\'), subreddit: r.config.post_site, }, }); } googletag.cmd.push(function() { var adSlots = googletag.pubads().getSlots(); var headerBidCallback = function() { var callbacks = _.pluck(ads, \'callback\'); _.invoke(callbacks, \'call\'); }; if (usePrebid) { var bidsBackHandler = function() { if (pbjs.adserverRequestSent) return; pbjs.adserverRequestSent = true; headerBidCallback(); }; pbjs.que.push(function() { pbjs.addAdUnits(ads.map(function(ad) { return { code: ad.slotID, sizes: ad.sizes, bids: [{ bidder: \'appnexus\', params: { placementId: \'11905719\', }, }], }; })); pbjs.requestBids({ bidsBackHandler: bidsBackHandler, }); }); setTimeout(bidsBackHandler, 700); } else { apstag.fetchBids({ slots: _.map(ads, function(ad) { return _.pick(ad, [\'slotID\', \'sizes\']); }), timeout: 2e3, }, function(bids) { googletag.cmd.push(function() { var slotsById = indexGoogleTagSlots(adSlots); bids.forEach(function(bid) { var slot = slotsById[bid.slotID]; if (slot) { apstag.targetingKeys().forEach(function(key) { slot.setTargeting(key, bid[key]) }); } }); }); headerBidCallback(); }); } }); }); })();</script></body></html>'</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [6]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">b</span> <span class="o">=</span> <span class="n">BeautifulSoup</span><span class="p">(</span><span class="n">html</span><span class="o">.</span><span class="n">text</span><span class="p">,</span> <span class="s1">'lxml'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [7]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="n">b</span><span class="o">.</span><span class="n">prettify</span><span class="p">())</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre><!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
reddit: the front page of the internet
</title>
<meta content=" reddit, reddit.com, vote, comment, submit " name="keywords"/>
<meta content="reddit: the front page of the internet" name="description"/>
<meta content="always" name="referrer"/>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link href="/static/opensearch.xml" rel="search" type="application/opensearchdescription+xml"/>
<link href="https://www.reddit.com/" rel="canonical"/>
<meta content="width=1024" name="viewport"/>
<link href="//out.reddit.com" rel="dns-prefetch"/>
<link href="//out.reddit.com" rel="preconnect"/>
<link href="//www.redditstatic.com/icon.png" rel="icon" sizes="256x256" type="image/png"/>
<link href="//www.redditstatic.com/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link href="//www.redditstatic.com/icon-touch.png" rel="apple-touch-icon-precomposed"/>
<link href="https://www.reddit.com/.rss" rel="alternate" title="RSS" type="application/atom+xml"/>
<link href="//www.redditstatic.com/reddit.5KGEzCbJPGs.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/expando.gMzRK16vwrQ.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/crosspost-preview.pCGunVCESf4.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/author-tooltip.kAc9Zdn5-mA.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/listing-comments.AZZO7Kj_O88.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/popup-notification.6-JvPBpHWMo.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/videoplayer.EAa9r-HzXRY.css" media="all" rel="stylesheet" type="text/css"/>
<link href="//www.redditstatic.com/videoplayercontrols.KmbyemLsiXU.css" media="all" rel="stylesheet" type="text/css"/>
<!--[if gte IE 8]><!-->
<!--<![endif]-->
<!--[if gte IE 9]><!-->
<script src="//www.redditstatic.com/reddit-init.en.qS2cBiYhp_U.js" type="text/javascript">
</script>
<!--<![endif]-->
<!--[if lt IE 9]><script type="text/javascript" src="//www.redditstatic.com/reddit-init-legacy.en.cmRoUGOTVcE.js"></script><![endif]-->
<script src="//www.redditstatic.com/videoplayer.AROa8KXpw7I.js" type="text/javascript">
</script>
<script id="config" type="text/javascript">
r.setup({"user_websocket_url": null, "feature_reply_save_cta": false, "ajax_domain": "www.reddit.com", "is_fake": true, "server_time": 1509314709.0, "post_site": "", "clicktracker_url": "//pixel.redditmedia.com/click", "pref_no_profanity": true, "renderstyle": "html", "requires_eu_cookie_policy": false, "nsfw_media_acknowledged": false, "stats_domain": "https://stats.redditmedia.com", "pref_email_messages": false, "feature_heartbeat_events": false, "loid_version": 2, "cur_screen_name": "", "cur_domain": "reddit.com", "feature_new_report_dialog": true, "events_collector_url": "https://e.reddit.com/v1", "feature_expando_events": true, "facebook_app_id": "322647334569188", "loid": "00000000000j3tkz6g", "is_sponsor": false, "https_forced": true, "user_in_timeout": false, "eu_cookie_max_attempts": 3, "user_id": false, "eventtracker_url": "//pixel.redditmedia.com/pixel/of_delight.png", "ad_serving_events_sample_rate": 1.0, "feature_new_report_flow": true, "poisoning_canary": null, "logged": false, "feature_outbound_beacons": false, "feature_signup_cta": false, "ads_loading_timeout_ms": 5000, "user_age": false, "vote_hash": "4W4yFbBex1ES7K2fH6k4FQZDLBEPWyNb0Kjxa9nigydesxtYFt8hXHzV/7duqWREKRjit63PNu965guN7ipEcPa+cQzuQ+L6fr25VzSme6xDIBQfuLIFvP+ohyzVc1u4MmNz7gxGZlQLsYEXx/4RTQVRBRlITBaeS8HfyJ7K5wI=", "poisoning_report_mac": null, "feature_ads_user_matching": false, "events_collector_secret": "thiiM0ahsieSiech1phithe6chahngoo8sah6aid\n", "events_collector_key": "RedditFrontend1", "live_orangereds_pref": true, "feature_hover_user_ui_holdout": false, "feature_mobile_native_banner": true, "uitracker_url": "//pixel.redditmedia.com/pixel/of_discovery.png", "cache_policy": "loggedout_www", "share_tracking_ts": 1509314709192, "loid_created": 1509314708950, "modhash": "", "feature_flatlist_events": false, "store_visits": false, "anon_eventtracker_url": "//pixel.redditmedia.com/pixel/of_diversity.png", "media_domain": "www.redditmedia.com", "event_target": {"geo_filter": null, "target_type": "listing", "target_sort": "hot"}, "over_18": false, "share_tracking_hmac": null, "feature_double_sidebar": false, "send_logs": true, "gold": false, "user_subscription_size": 0, "listing_over_18": false, "pageInfo": {"actionName": "hot.GET_listing", "statsVerification": "adfad553bf3b6c42e703170c536073e9c1f952f0", "verification": "adfad553bf3b6c42e703170c536073e9c1f952f0", "statsName": "hot.GET_listing"}, "mweb_blacklist_expressions": ["^/prefs/?", "^/live/?", "/message/compose", "/m/", "^/subreddits/create", "^/gold", "^/advertising", "^/promoted", "^/buttons"], "feature_r2_desktop_onboarding": false, "https_endpoint": "https://www.reddit.com", "whitelist_status": "all_ads", "static_root": "//www.redditstatic.com", "extension": null, "feature_screenview_events": true, "cur_listing": "frontpage", "email_verified": false, "status_msg": {"fetching": "fetching title...", "loading": "loading...", "submitting": "submitting..."}, "feature_post_embed": true, "cur_site": "", "enabled_experiments": {}, "stats_sample_rate": "5", "new_window": false, "expando_preference": "subreddit_default", "advertiser_category": null, "eu_cookie": "eu_cookie", "events_collector_v2_url": "https://e.reddit.com/v2", "debug": false, "has_subscribed": false, "feature_scroll_events": true, "pref_beta": false})
</script>
<style type="text/css">
/* Custom css: use this block to insert special translation-dependent css in the page header */
</style>
<script type="text/javascript">
window.user_type = 'guest'; window.is_gold_page = 'False'.toLowerCase() === 'true';
</script>
<script type="text/javascript">
var _gaq = _gaq || []; _gaq.push( ['_require', 'inpage_linkid', '//www.google-analytics.com/plugins/ga/inpage_linkid.js'], ['_setAccount', 'UA-12131688-1'], ['_setDomainName', 'reddit.com'], ['_setCustomVar', 1, 'site', 'frontpage', 3], ['_setCustomVar', 2, 'srpath', 'frontpage-GET_listing', 3], ['_setCustomVar', 3, 'usertype', user_type, 2], ['_setCustomVar', 4, 'uitype', 'web', 3], ['_setCustomVar', 5, 'style_override', '', 2], ['_setSampleRate', '1'], ['_trackPageview'] ); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
</script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','_ga'); window._ga('create', 'UA-12131688-9', { 'name': 'goldTracker', 'cookieDomain': 'reddit.com', '1': 'frontpage', '2': 'frontpage-GET_listing', '3': window.user_type, '4': 'web', 'sampleRate': 100 }); if (window.is_gold_page) { window._ga('goldTracker.send', 'pageview'); }
</script>
</head>
<body class="feature-new-report-flow listing-page hot-page">
<div class="GoogleAd HomeAds InArticleAd LeftAd SidebarAd ad-300-250 ad-banner adbar adbox1 ads-area adsense-ad box_ad googad" id="adblock-test">
</div>
<script>
var frame = document.createElement('iframe'); frame.style.display = 'none'; frame.referrer = 'no-referrer'; frame.id = 'gtm-jail'; frame.name = JSON.stringify({ subreddit: r.config.post_site, origin: location.origin, url: location.href, userMatching: r.config.feature_ads_user_matching, userId: r.config.user_id, advertiserCategory: r.config.advertiser_category, adsStatus: r.config.whitelist_status, }); frame.src = '//' + "www.redditmedia.com" + '/gtm/jail?cb=' + "8CqR7FcToPI"; document.body.appendChild(frame);
</script>
<script>
var mf = document.createElement('script'); mf.type = 'text/javascript'; mf.async = true; mf.src = "//www.redditstatic.com/moat/moatframe.js"; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(mf, s);
</script>
<div id="header" role="banner">
<a href="#content" id="jumpToContent" tabindex="1">
jump to content
</a>
<div id="sr-header-area">
<div class="width-clip">
<div class="dropdown srdrop" onclick="open_menu(this)">
<span class="selected title">
my subreddits
</span>
</div>
<div class="drop-choices srdrop">
<a class="bottom-option choice" href="https://www.reddit.com/subreddits/">
edit subscriptions
</a>
</div>
<div class="sr-list">
<ul class="flat-list sr-bar hover">
<li class="selected">
<a class="choice" href="https://www.reddit.com/r/popular/">
popular
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/all/">
all
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="random choice" href="https://www.reddit.com/r/random/">
random
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/users/">
users
</a>
</li>
</ul>
<span class="separator">
|
</span>
<ul class="flat-list sr-bar hover" id="sr-bar">
<li>
<a class="choice" href="https://www.reddit.com/r/AskReddit/">
AskReddit
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/funny/">
funny
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/worldnews/">
worldnews
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/pics/">
pics
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/gaming/">
gaming
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/todayilearned/">
todayilearned
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/news/">
news
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/gifs/">
gifs
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/aww/">
aww
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/videos/">
videos
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/mildlyinteresting/">
mildlyinteresting
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/television/">
television
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/movies/">
movies
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/Showerthoughts/">
Showerthoughts
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/sports/">
sports
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/OldSchoolCool/">
OldSchoolCool
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/Jokes/">
Jokes
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/science/">
science
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/LifeProTips/">
LifeProTips
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/tifu/">
tifu
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/Art/">
Art
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/nottheonion/">
nottheonion
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/EarthPorn/">
EarthPorn
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/personalfinance/">
personalfinance
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/Music/">
Music
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/photoshopbattles/">
photoshopbattles
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/books/">
books
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/food/">
food
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/Futurology/">
Futurology
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/IAmA/">
IAmA
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/WritingPrompts/">
WritingPrompts
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/UpliftingNews/">
UpliftingNews
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/space/">
space
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/explainlikeimfive/">
explainlikeimfive
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/TwoXChromosomes/">
TwoXChromosomes
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/history/">
history
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/dataisbeautiful/">
dataisbeautiful
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/Documentaries/">
Documentaries
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/GetMotivated/">
GetMotivated
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/gadgets/">
gadgets
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/creepy/">
creepy
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/nosleep/">
nosleep
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/askscience/">
askscience
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/DIY/">
DIY
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/listentothis/">
listentothis
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/philosophy/">
philosophy
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/InternetIsBeautiful/">
InternetIsBeautiful
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/blog/">
blog
</a>
</li>
<li>
<span class="separator">
-
</span>
<a class="choice" href="https://www.reddit.com/r/announcements/">
announcements
</a>
</li>
</ul>
</div>
<a href="https://www.reddit.com/subreddits/" id="sr-more-link">
more »
</a>
</div>
</div>
<div id="header-bottom-left">
<a class="default-header" href="/" id="header-img" title="">
reddit.com
</a>
<ul class="tabmenu ">
<li class="selected">
<a class="choice" href="https://www.reddit.com/">
hot
</a>
</li>
<li>
<a class="choice" href="https://www.reddit.com/new/">
new
</a>
</li>
<li>
<a class="choice" href="https://www.reddit.com/rising/">
rising
</a>
</li>
<li>
<a class="choice" href="https://www.reddit.com/controversial/">
controversial
</a>
</li>
<li>
<a class="choice" href="https://www.reddit.com/top/">
top
</a>
</li>
<li>
<a class="choice" href="https://www.reddit.com/gilded/">
gilded
</a>
</li>
<li>
<a class="choice" href="https://www.reddit.com/wiki/">
wiki
</a>
</li>
</ul>
</div>
<div id="header-bottom-right">
<span class="user">
Want to join?
<a class="login-required" href="https://www.reddit.com/login">
Log in or sign up
</a>
in seconds.
</span>
<span class="separator">
|
</span>
<ul class="flat-list hover">
<li>
<a class="pref-lang choice" href="javascript:void(0)" onclick="return showlang();">
English
</a>
</li>
</ul>
</div>
</div>
<div class="side">
<div class="spacer">
<form action="https://www.reddit.com/search" id="search" role="search">
<input name="q" placeholder="search" tabindex="20" type="text"/>
<input tabindex="22" type="submit" value=""/>
<div class="infobar" id="searchexpando">
<div id="moresearchinfo">
<p>
use the following search parameters to narrow your results:
</p>
<dl>
<dt>
subreddit:
<i>
subreddit
</i>
</dt>
<dd>
find submissions in "subreddit"
</dd>
<dt>
author:
<i>
username
</i>
</dt>
<dd>
find submissions by "username"
</dd>
<dt>
site:
<i>
example.com
</i>
</dt>
<dd>
find submissions from "example.com"
</dd>
<dt>
url:
<i>
text
</i>
</dt>
<dd>
search for "text" in url
</dd>
<dt>
selftext:
<i>
text
</i>
</dt>
<dd>
search for "text" in self post contents
</dd>
<dt>
self:yes (or self:no)
</dt>
<dd>
include (or exclude) self posts
</dd>
<dt>
nsfw:yes (or nsfw:no)
</dt>
<dd>
include (or exclude) results marked as NSFW
</dd>
</dl>
<p>
e.g.
<code>
subreddit:aww site:imgur.com dog
</code>
</p>
<p>
<a href="https://www.reddit.com/wiki/search">
see the search faq for details.
</a>
</p>
</div>
<p>
<a href="https://www.reddit.com/wiki/search" id="search_showmore">
advanced search: by author, subreddit...
</a>
</p>
</div>
</form>
</div>
<div class="spacer">
<form action="https://www.reddit.com/post/login" class="login-form login-form-side" id="login_login-main" method="post">
<input name="op" type="hidden" value="login-main"/>
<input maxlength="20" name="user" placeholder="username" tabindex="1" type="text"/>
<input name="passwd" placeholder="password" tabindex="1" type="password"/>
<div class="g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC">
</div>
<div class="status">
</div>
<div id="remember-me">
<input id="rem-login-main" name="rem" tabindex="1" type="checkbox"/>
<label for="rem-login-main">
remember me
</label>
<a class="recover-password" href="/password">
reset password
</a>
</div>
<div class="submit">
<span class="throbber">
</span>
<button class="btn" tabindex="1" type="submit">
login
</button>
</div>
<div class="clear">
</div>
</form>
</div>
<div class="spacer">
<div class="dfp-ad-container" id="ad_2">
</div>
<script>
r.hooks.get('reddit').register(function() { window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; window.pbjs = window.pbjs || {}; pbjs.que = pbjs.que || []; var adblock = r.utils.getAdblockLevel(); var frameId = "ad_2"; var sizes = [[300, 250], [300, 600]]; var keywords = ["k.holiday", "s.brandlift.holdout_19", "s.frontpage", "k.close", "k.facebook", "k.christmas", "s.loggedout", "k.canadian", "s.sfw"]; var properties = {"placement": "atf", "whitelist_status": "all_ads", "subreddit_screen": false, "percentage": 54, "iaa": false, "random_number": 54, "environment": "production", "nsfw": false, "logged_in": false, "has_used_mobile_app": false, "full_url": "https://www.reddit.com/"}; var slotPrefix = "/32173961/desktop"; var frame = document.getElementById(frameId); var ads = window.__adslots = window.__adslots || []; if (adblock === 'whitelisted') { frame.className += ' acceptable-ads'; } function isWithinLoadDistance(el) { var rect = el.getBoundingClientRect(); var html = document.documentElement; return (rect.top - (window.innerHeight || html.clientHeight))< 300; } function getPageType() { var $body = $('body'); if ($body.hasClass('comments-page')) { return 'comments'; } else if ($body.hasClass('profile-page')) { return 'user' } else if ($body.hasClass('listing-page')) { return 'listing'; } } function getSlot(prefix, pageType) { var parts = [prefix]; if (pageType !== 'user') { var listing = r.config.cur_listing; if (listing !== 'frontpage') { listing = 'r.' + listing; } parts.push(listing); } if (pageType) { parts.push(pageType); } return parts.join('/'); } var adSlot; googletag.cmd.push(function() { var pageType = getPageType(); adSlot = googletag .defineSlot(getSlot(slotPrefix, pageType), sizes, frameId) .addService(googletag.pubads()); adSlot.setTargeting('keywords', keywords); adSlot.setTargeting('adblock', adblock); adSlot.setTargeting('listing', pageType); Object.keys(properties).forEach(function(key) { adSlot.setTargeting(key, properties[key]); }); googletag.display(frameId); }); var requestAd = function() { if (window._usePrebid) { pbjs.que.push(function() { pbjs.setTargetingForGPTAsync(); googletag.pubads().refresh([adSlot]); }); } else { googletag.pubads().refresh([adSlot]); } }; ads.push({ slotID: frameId, sizes: sizes, callback: function() { googletag.cmd.push(function() { if (isWithinLoadDistance(frame)) { requestAd(); } else { var checkDistance = _.throttle(function() { if (isWithinLoadDistance(frame)) { requestAd(); window.removeEventListener('scroll', checkDistance); } }, 100); window.addEventListener('scroll', checkDistance); } }); }, }) });
</script>
</div>
<div class="spacer">
<div class="sidebox submit submit-link">
<div class="morelink">
<a class="login-required access-required" data-event-action="submit" data-event-detail="link" data-type="subreddit" href="https://www.reddit.com/submit" target="_top">
Submit a new link
</a>
<div class="nub">
</div>
</div>
</div>
</div>
<div class="spacer">
<div class="sidebox submit submit-text">
<div class="morelink">
<a class="login-required access-required" data-event-action="submit" data-event-detail="self" data-type="subreddit" href="https://www.reddit.com/submit?selftext=true" target="_top">
Submit a new text post
</a>
<div class="nub">
</div>
</div>
</div>
</div>
<div class="spacer">
<div class="goldvertisement ">
<div class="inner">
<h2>
daily reddit gold goal
</h2>
<div class="progress">
<p>
90%
</p>
<div class="bar">
<span style="width: 90%">
</span>
</div>
</div>
<a href="/gold?goldtype=code&amp;source=progressbar" target="_blank">
help support reddit
</a>
<div class="gold-bubble hover-bubble help-bubble anchor-top-centered">
<p>
<span class="gold-branding">
reddit gold
</span>
gives you extra features and helps keep our servers running. We believe the more reddit can be user-supported, the freer we will be to make reddit the best it can be.
</p>
<p class="buy-gold">
Buy gold for yourself to gain access to
<a href="/gold/about" target="_blank">
extra features
</a>
and
<a href="/r/goldbenefits" target="_blank">
special benefits
</a>
. A month of gold pays for
<b>
231.26 minutes
</b>
of reddit server time!
</p>
<p class="give-gold">
Give gold to thank exemplary people and encourage them to post more.
</p>
<p class="aside">
This daily goal updates every 10 minutes and is reset at midnight
<a href="https://en.wikipedia.org/wiki/Pacific_Time_Zone" target="_blank">
Pacific Time
</a>
(8 hours, 54 minutes from now).
</p>
<div class="history">
<p>
Yesterday's reddit gold goal
</p>
<div class="progress">
<p>
66%
</p>
<div class="bar">
<span style="width: 66%">
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="spacer">
<div class="dfp-ad-container" id="ad_6">
</div>
<script>
r.hooks.get('reddit').register(function() { window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; window.pbjs = window.pbjs || {}; pbjs.que = pbjs.que || []; var adblock = r.utils.getAdblockLevel(); var frameId = "ad_6"; var sizes = [[300, 250]]; var keywords = ["k.holiday", "s.brandlift.holdout_19", "s.frontpage", "k.close", "k.facebook", "k.christmas", "s.loggedout", "k.canadian", "s.sfw"]; var properties = {"placement": "btf", "whitelist_status": "all_ads", "subreddit_screen": false, "percentage": 26, "iaa": false, "random_number": 26, "environment": "production", "nsfw": false, "logged_in": false, "has_used_mobile_app": false, "full_url": "https://www.reddit.com/"}; var slotPrefix = "/32173961/desktop"; var frame = document.getElementById(frameId); var ads = window.__adslots = window.__adslots || []; if (adblock === 'whitelisted') { frame.className += ' acceptable-ads'; } function isWithinLoadDistance(el) { var rect = el.getBoundingClientRect(); var html = document.documentElement; return (rect.top - (window.innerHeight || html.clientHeight))< 300; } function getPageType() { var $body = $('body'); if ($body.hasClass('comments-page')) { return 'comments'; } else if ($body.hasClass('profile-page')) { return 'user' } else if ($body.hasClass('listing-page')) { return 'listing'; } } function getSlot(prefix, pageType) { var parts = [prefix]; if (pageType !== 'user') { var listing = r.config.cur_listing; if (listing !== 'frontpage') { listing = 'r.' + listing; } parts.push(listing); } if (pageType) { parts.push(pageType); } return parts.join('/'); } var adSlot; googletag.cmd.push(function() { var pageType = getPageType(); adSlot = googletag .defineSlot(getSlot(slotPrefix, pageType), sizes, frameId) .addService(googletag.pubads()); adSlot.setTargeting('keywords', keywords); adSlot.setTargeting('adblock', adblock); adSlot.setTargeting('listing', pageType); Object.keys(properties).forEach(function(key) { adSlot.setTargeting(key, properties[key]); }); googletag.display(frameId); }); var requestAd = function() { if (window._usePrebid) { pbjs.que.push(function() { pbjs.setTargetingForGPTAsync(); googletag.pubads().refresh([adSlot]); }); } else { googletag.pubads().refresh([adSlot]); } }; ads.push({ slotID: frameId, sizes: sizes, callback: function() { googletag.cmd.push(function() { if (isWithinLoadDistance(frame)) { requestAd(); } else { var checkDistance = _.throttle(function() { if (isWithinLoadDistance(frame)) { requestAd(); window.removeEventListener('scroll', checkDistance); } }, 100); window.addEventListener('scroll', checkDistance); } }); }, }) });
</script>
</div>
</div>
<a name="content">
</a>
<div class="content" itemscope="" itemtype="https://schema.org/Question" role="main">
<section class="infobar newsletterbar newsletter-container" hidden="">
<header>
<h1 class="subscribe-callout">
<a href="/newsletter">
<img alt="subscribe to our newsletter" src="//www.redditstatic.com/subscribe-header.svg"/>
</a>
</h1>
<div class="subscribe-thanks">
<img alt="_('thanks for subscribing')" src="//www.redditstatic.com/subscribe-header-thanks.svg"/>
</div>
<h2 class="result-message">
get the best of reddit, delivered once a week
</h2>
</header>
<form action="https://www.reddit.com/api/newsletter.json" class="newsletter-signup form-v2 c-form-inline" method="post">
<input name="uh" type="hidden" value=""/>
<input name="source" type="hidden" value="newsletterbar"/>
<div class="c-form-group ">
<label class="screenreader-only" for="email">
email:
</label>
<input class="c-form-control" data-validate-on="change blur" data-validate-url="/api/check_email.json" name="email" placeholder="enter your email" type="email" value=""/>
<div class="c-form-control-feedback-wrapper inside-input">
<span class="c-form-control-feedback c-form-control-feedback-throbber">
</span>
<span class="c-form-control-feedback c-form-control-feedback-error" title="">
</span>
<span class="c-form-control-feedback c-form-control-feedback-success">
</span>
</div>
</div>
<button class="c-btn c-btn-highlight" type="submit">
subscribe
</button>
<br/>
<div class="c-form-group ">
<div class="g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC">
</div>
<div class="c-form-control-feedback-wrapper inside-input">
<span class="c-form-control-feedback c-form-control-feedback-throbber">
</span>
<span class="c-form-control-feedback c-form-control-feedback-error" title="">
</span>
<span class="c-form-control-feedback c-form-control-feedback-success">
</span>
</div>
</div>
</form>
<a class="newsletter-close" href="#" title="close">
×
</a>
</section>
<div class="spacer">
<div class="organic-listing loading" id="siteTable_organic">
</div>
<script>
r.spotlight.setup( [], 0.0, true, 1, " reddit.com", "t3_79i4cj,t3_79il16,t3_79hgf8,t3_79h9wb,t3_79h9bc,t3_79hfbr,t3_79h3xb,t3_79hg4o,t3_79idus,t3_79h7yg" )
</script>
</div>
<div class="spacer">
<div class="trending-subreddits">
<div class="rank-spacer">
</div>
<div class="midcol-spacer">
</div>
<div class="trending-subreddits-content">
<strong>
trending subreddits
</strong>
<ul>
<li>
<a href="/r/StrangerThings/?utm_content=trending_sr_1&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">
r/StrangerThings
</a>
</li>
<li>
<a href="/r/AskEurope/?utm_content=trending_sr_5&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">
r/AskEurope
</a>
</li>
<li>
<a href="/r/chairsunderwater/?utm_content=trending_sr_3&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">
r/chairsunderwater
</a>
</li>
<li>
<a href="/r/ScarySigns/?utm_content=trending_sr_2&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">
r/ScarySigns
</a>
</li>
<li>
<a href="/r/Glitch_in_the_Matrix/?utm_content=trending_sr_4&amp;utm_medium=trending_subreddits_bar&amp;utm_source=reddit&amp;utm_name=frontpage" target="_blank">
r/Glitch_in_the_Matrix
</a>
</li>
</ul>
<a class="comments may-blank" href="/r/trendingsubreddits/comments/79f8on/trending_subreddits_for_20171029_rstrangerthings/">
22 comments
</a>
</div>
</div>
</div>
<div class="spacer">
<style>
body >.content .link .rank, .rank-spacer { width: 2.2ex } body >.content .link .midcol, .midcol-spacer { width: 6.1ex } .adsense-wrap { background-color: #eff7ff; font-size: 18px; padding-left: 8.3ex; padding-right: 5px; }
</style>
<div class="sitetable linklisting" id="siteTable">
<div class=" thing id-t3_79i4cj odd link " data-author="AnimalCrust" data-author-fullname="t2_b3ir2" data-comments-count="2516" data-context="listing" data-domain="youtube.com" data-fullname="t3_79i4cj" data-num-crossposts="0" data-permalink="/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/" data-rank="1" data-score="19485" data-subreddit="videos" data-subreddit-fullname="t5_2qh1e" data-timestamp="1509301316000" data-type="link" data-url="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-whitelist-status="all_ads" id="thing_t3_79i4cj" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
1
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="19477">
19.5k
</div>
<div class="score unvoted" title="19478">
19.5k
</div>
<div class="score likes" title="19479">
19.5k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79i4cj?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DU0SOxb_Lfps&amp;token=AQAApV72WZbypHRafe2yq58Yhplu7Kx3_WP43eEPnkfvOgnM9eue&amp;app_name=reddit.com" href="https://www.youtube.com/watch?v=U0SOxb_Lfps" rel="">
<img alt="" height="52" src="//a.thumbs.redditmedia.com/nCDVrRti7nZV5Wf0tfM-nzdHWecO1B6us8BYPW2cj28.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://www.youtube.com/watch?v=U0SOxb_Lfps" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79i4cj?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DU0SOxb_Lfps&amp;token=AQAApV72WZbypHRafe2yq58Yhplu7Kx3_WP43eEPnkfvOgnM9eue&amp;app_name=reddit.com" href="https://www.youtube.com/watch?v=U0SOxb_Lfps" rel="" tabindex="1">
YouTube user demonstrating how Facebook listens to conversations to serve ads
</a>
<span class="domain">
(
<a href="/domain/youtube.com/">
youtube.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T18:21:56+00:00" title="Sun Oct 29 18:21:56 2017 UTC">
3 hours ago
</time>
by
<a class="author may-blank id-t2_b3ir2" href="https://www.reddit.com/user/AnimalCrust">
AnimalCrust
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/videos/">
r/videos
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/" data-inbound-url="/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/videos/comments/79i4cj/youtube_user_demonstrating_how_facebook_listens/" rel="nofollow">
2516 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79i4cj">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;iframe src="//www.redditmedia.com/mediaembed/79i4cj" id="media-embed-79i4cj-b79" class="media-embed" width="610" height="348" border="0" frameBorder="0" scrolling="no" allowfullscreen&gt;&lt;/iframe&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79il16 even link " data-author="madeyoulooktwice" data-author-fullname="t2_15zyt2" data-comments-count="299" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79il16" data-num-crossposts="0" data-permalink="/r/funny/comments/79il16/my_friends_halloween_costume/" data-rank="2" data-score="6215" data-subreddit="funny" data-subreddit-fullname="t5_2qh33" data-timestamp="1509305782000" data-type="link" data-url="https://i.redd.it/ou7cvhahntuz.jpg" data-whitelist-status="all_ads" id="thing_t3_79il16" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
2
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="6243">
6243
</div>
<div class="score unvoted" title="6244">
6244
</div>
<div class="score likes" title="6245">
6245
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/funny/comments/79il16/my_friends_halloween_costume/" data-inbound-url="/r/funny/comments/79il16/my_friends_halloween_costume/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/funny/comments/79il16/my_friends_halloween_costume/" rel="">
<img alt="" height="70" src="//a.thumbs.redditmedia.com/Do_WMeCfS4ECc0-oE3YeVTsqSeWHT590P36r6S-ybw0.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/funny/comments/79il16/my_friends_halloween_costume/" data-inbound-url="/r/funny/comments/79il16/my_friends_halloween_costume/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/funny/comments/79il16/my_friends_halloween_costume/" rel="" tabindex="1">
My friend's Halloween costume:
</a>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T19:36:22+00:00" title="Sun Oct 29 19:36:22 2017 UTC">
2 hours ago
</time>
by
<a class="author may-blank id-t2_15zyt2" href="https://www.reddit.com/user/madeyoulooktwice">
madeyoulooktwice
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/funny/">
r/funny
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/funny/comments/79il16/my_friends_halloween_costume/" data-inbound-url="/r/funny/comments/79il16/my_friends_halloween_costume/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/funny/comments/79il16/my_friends_halloween_costume/" rel="nofollow">
301 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79il16">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79il16" style="max-width: 640px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/ou7cvhahntuz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/Lu_rQ97Lrf0IC1FKU9Q2BwkRVubOHBQnh1eMBFFLY98.jpg?w=640&amp;amp;s=0b6c7a2eb0814207a97a47239ddad7b2" width="640" height="649"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79hgf8 linkflair linkflair-camera odd link " data-author="easycheesay" data-author-fullname="t2_5zfgo" data-comments-count="949" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79hgf8" data-num-crossposts="0" data-permalink="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-rank="3" data-score="57220" data-subreddit="sports" data-subreddit-fullname="t5_2qgzy" data-timestamp="1509294788000" data-type="link" data-url="https://i.redd.it/q0k99g3sqsuz.jpg" data-whitelist-status="all_ads" id="thing_t3_79hgf8" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
3
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="61280">
61.3k
</div>
<div class="score unvoted" title="61281">
61.3k
</div>
<div class="score likes" title="61282">
61.3k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-inbound-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" rel="">
<img alt="" height="69" src="//a.thumbs.redditmedia.com/0RWYJ2DefFdsJjuX2KRCA9aTC45RP2C_9IiRzxQ19Q0.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-inbound-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" rel="" tabindex="1">
Friend who lost his leg to cancer got creative for Halloween
</a>
<span class="linkflairlabel" title="Picture/Video">
Picture/Video
</span>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T16:33:08+00:00" title="Sun Oct 29 16:33:08 2017 UTC">
4 hours ago
</time>
by
<a class="author may-blank id-t2_5zfgo" href="https://www.reddit.com/user/easycheesay">
easycheesay
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/sports/">
r/sports
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" data-inbound-url="/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/sports/comments/79hgf8/friend_who_lost_his_leg_to_cancer_got_creative/" rel="nofollow">
1011 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79hgf8">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79hgf8" style="max-width: 750px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/q0k99g3sqsuz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/NHMhRKbDhZmm0gbqcBbujcLv8FhTZEQvdT8GOKvj_KM.jpg?w=750&amp;amp;s=7ec0314f40d2f1bddf0774fc927c61f9" width="750" height="748"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h9wb even link " data-author="HeadphoneJackal" data-author-fullname="t2_14ydp1" data-comments-count="785" data-context="listing" data-domain="mentalfloss.com" data-fullname="t3_79h9wb" data-num-crossposts="0" data-permalink="/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/" data-rank="4" data-score="35509" data-subreddit="todayilearned" data-subreddit-fullname="t5_2qqjc" data-timestamp="1509292993000" data-type="link" data-url="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-whitelist-status="all_ads" id="thing_t3_79h9wb" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
4
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="35514">
35.5k
</div>
<div class="score unvoted" title="35515">
35.5k
</div>
<div class="score likes" title="35516">
35.5k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79h9wb?url=https%3A%2F%2Fmentalfloss.com%2Farticle%2F70919%2F10-things-you-might-not-know-about-dennys&amp;token=AQAApV72WVDqQuN2YS-BwPww5_Dc2UdWun9S3VQblT1erE3yUNrN&amp;app_name=reddit.com" href="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" rel="">
<img alt="" height="46" src="//b.thumbs.redditmedia.com/Cuzhvy_kXhI-AvVZx3rYS90vV2vOUegkNpKubMh4WtA.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79h9wb?url=https%3A%2F%2Fmentalfloss.com%2Farticle%2F70919%2F10-things-you-might-not-know-about-dennys&amp;token=AQAApV72WVDqQuN2YS-BwPww5_Dc2UdWun9S3VQblT1erE3yUNrN&amp;app_name=reddit.com" href="https://mentalfloss.com/article/70919/10-things-you-might-not-know-about-dennys" rel="" tabindex="1">
TIL that when the 24-7-365 restaurant Denny's decided to close for Christmas in 1988 many stores realized that they didn’t have any keys, or even locks, since they never used them. 700 of the 1221 restaurants needed to get new locks installed for the holiday.
</a>
<span class="domain">
(
<a href="/domain/mentalfloss.com/">
mentalfloss.com
</a>
)
</span>
</p>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T16:03:13+00:00" title="Sun Oct 29 16:03:13 2017 UTC">
6 hours ago
</time>
by
<a class="author may-blank id-t2_14ydp1" href="https://www.reddit.com/user/HeadphoneJackal">
HeadphoneJackal
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/todayilearned/">
r/todayilearned
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/" data-inbound-url="/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/todayilearned/comments/79h9wb/til_that_when_the_247365_restaurant_dennys/" rel="nofollow">
785 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h9wb">
</div>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h9bc odd link " data-author="woopteewoopwoop" data-author-fullname="t2_tb9rr" data-comments-count="435" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79h9bc" data-num-crossposts="0" data-permalink="/r/trippinthroughtime/comments/79h9bc/selfreflection/" data-rank="5" data-score="23094" data-subreddit="trippinthroughtime" data-subreddit-fullname="t5_2y3e1" data-timestamp="1509292846000" data-type="link" data-url="https://i.imgur.com/kZrMJXL.jpg" data-whitelist-status="all_ads" id="thing_t3_79h9bc" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
5
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="23089">
23.1k
</div>
<div class="score unvoted" title="23090">
23.1k
</div>
<div class="score likes" title="23091">
23.1k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/kZrMJXL.jpg" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79h9bc?url=https%3A%2F%2Fi.imgur.com%2FkZrMJXL.jpg&amp;token=AQAApV72WVuKoSljqEScn3zFQElPEfgGEbhhFS6efMPnEa7EPEwr&amp;app_name=reddit.com" href="https://i.imgur.com/kZrMJXL.jpg" rel="">
<img alt="" height="68" src="//b.thumbs.redditmedia.com/GkHmz2_rxTvowRbGyxPpRU_u8G1FpFU9TJiQvAv2GUI.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/kZrMJXL.jpg" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79h9bc?url=https%3A%2F%2Fi.imgur.com%2FkZrMJXL.jpg&amp;token=AQAApV72WVuKoSljqEScn3zFQElPEfgGEbhhFS6efMPnEa7EPEwr&amp;app_name=reddit.com" href="https://i.imgur.com/kZrMJXL.jpg" rel="" tabindex="1">
Self-reflection
</a>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T16:00:46+00:00" title="Sun Oct 29 16:00:46 2017 UTC">
6 hours ago
</time>
by
<a class="author may-blank id-t2_tb9rr" href="https://www.reddit.com/user/woopteewoopwoop">
woopteewoopwoop
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/trippinthroughtime/">
r/trippinthroughtime
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/trippinthroughtime/comments/79h9bc/selfreflection/" data-inbound-url="/r/trippinthroughtime/comments/79h9bc/selfreflection/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/trippinthroughtime/comments/79h9bc/selfreflection/" rel="nofollow">
435 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h9bc">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79h9bc" style="max-width: 640px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/kZrMJXL.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/K7zRgxyjLURQTpFOazBRL8WFsPp6K289SCGomOA5pWo.jpg?w=640&amp;amp;s=07ac824245e8a641fff8fd9554b554db" width="640" height="629"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79hfbr even link " data-author="TrLOLvis" data-author-fullname="t2_6vvpe" data-comments-count="369" data-context="listing" data-domain="imgur.com" data-fullname="t3_79hfbr" data-num-crossposts="0" data-permalink="/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/" data-rank="6" data-score="10888" data-subreddit="canada" data-subreddit-fullname="t5_2qh68" data-timestamp="1509294503000" data-type="link" data-url="https://imgur.com/beekafi" data-whitelist-status="all_ads" id="thing_t3_79hfbr" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
6
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="10894">
10.9k
</div>
<div class="score unvoted" title="10895">
10.9k
</div>
<div class="score likes" title="10896">
10.9k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://imgur.com/beekafi" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hfbr?url=https%3A%2F%2Fimgur.com%2Fbeekafi&amp;token=AQAApV72WS9ZwoC8sCBV9gx9Pl3rZMHdjWD-EjTaBfxz6ZPaqxU9&amp;app_name=reddit.com" href="https://imgur.com/beekafi" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/x5eYDdrpThA1-nG4kmoa0P1NznjjKTCy6DY-sZea_bg.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://imgur.com/beekafi" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hfbr?url=https%3A%2F%2Fimgur.com%2Fbeekafi&amp;token=AQAApV72WS9ZwoC8sCBV9gx9Pl3rZMHdjWD-EjTaBfxz6ZPaqxU9&amp;app_name=reddit.com" href="https://imgur.com/beekafi" rel="" tabindex="1">
I dressed up as a Canadian icon for Halloween last night.
</a>
<span class="domain">
(
<a href="/domain/imgur.com/">
imgur.com
</a>
)
</span>
</p>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T16:28:23+00:00" title="Sun Oct 29 16:28:23 2017 UTC">
5 hours ago
</time>
by
<a class="author may-blank id-t2_6vvpe" href="https://www.reddit.com/user/TrLOLvis">
TrLOLvis
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/canada/">
r/canada
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/" data-inbound-url="/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/canada/comments/79hfbr/i_dressed_up_as_a_canadian_icon_for_halloween/" rel="nofollow">
369 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79hfbr">
</div>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h3xb odd link " data-author="deemandaniels" data-author-fullname="t2_bhknd" data-comments-count="497" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79h3xb" data-num-crossposts="0" data-permalink="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-rank="7" data-score="85250" data-subreddit="aww" data-subreddit-fullname="t5_2qh1o" data-timestamp="1509291276000" data-type="link" data-url="https://i.redd.it/cly5r9f9gsuz.jpg" data-whitelist-status="all_ads" id="thing_t3_79h3xb" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
7
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="90179">
90.2k
</div>
<div class="score unvoted" title="90180">
90.2k
</div>
<div class="score likes" title="90181">
90.2k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-inbound-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/6lyD8UW_L6ugVUiJO6OPfiiM9vqaQzRlD1M1sRwxqOg.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-inbound-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" rel="" tabindex="1">
This pic alone is worth the $9 I paid for this costume.
</a>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:34:36+00:00" title="Sun Oct 29 15:34:36 2017 UTC">
6 hours ago
</time>
by
<a class="author may-blank id-t2_bhknd" href="https://www.reddit.com/user/deemandaniels">
deemandaniels
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/aww/">
r/aww
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" data-inbound-url="/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/aww/comments/79h3xb/this_pic_alone_is_worth_the_9_i_paid_for_this/" rel="nofollow">
516 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h3xb">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79h3xb" style="max-width: 576px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/cly5r9f9gsuz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/XRbw1nFIbVum56I2mtHfIdOBUEuHN-rRkOv-ZAK3tTE.jpg?w=576&amp;amp;s=1de85280278ef95d913f6b24a9072415" width="576" height="768"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79hg4o linkflair even link " data-author="BunyipPouch" data-author-fullname="t2_a1s4w" data-comments-count="84" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79hg4o" data-num-crossposts="0" data-permalink="/r/Eyebleach/comments/79hg4o/enjoying_the_show/" data-rank="8" data-score="12916" data-subreddit="Eyebleach" data-subreddit-fullname="t5_2s427" data-timestamp="1509294704000" data-type="link" data-url="https://i.imgur.com/TF73oKb.gifv" data-whitelist-status="all_ads" id="thing_t3_79hg4o" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
8
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="12913">
12.9k
</div>
<div class="score unvoted" title="12914">
12.9k
</div>
<div class="score likes" title="12915">
12.9k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/TF73oKb.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hg4o?url=https%3A%2F%2Fi.imgur.com%2FTF73oKb.gifv&amp;token=AQAApV72WaHxLqZFrIoXM1GPkPOlpN7lNfJuVGibhDAUBrJ33tL2&amp;app_name=reddit.com" href="https://i.imgur.com/TF73oKb.gifv" rel="">
<img alt="" height="70" src="//a.thumbs.redditmedia.com/Nyn1JethEDU4QW24cKjbIZFn7AXzUV8e-UDYyIXFo38.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/TF73oKb.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hg4o?url=https%3A%2F%2Fi.imgur.com%2FTF73oKb.gifv&amp;token=AQAApV72WaHxLqZFrIoXM1GPkPOlpN7lNfJuVGibhDAUBrJ33tL2&amp;app_name=reddit.com" href="https://i.imgur.com/TF73oKb.gifv" rel="" tabindex="1">
Enjoying the Show
</a>
<span class="linkflairlabel" title="/r/all">
/r/all
</span>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T16:31:44+00:00" title="Sun Oct 29 16:31:44 2017 UTC">
5 hours ago
</time>
by
<a class="author may-blank id-t2_a1s4w" href="https://www.reddit.com/user/BunyipPouch">
BunyipPouch
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/Eyebleach/">
r/Eyebleach
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/Eyebleach/comments/79hg4o/enjoying_the_show/" data-inbound-url="/r/Eyebleach/comments/79hg4o/enjoying_the_show/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/Eyebleach/comments/79hg4o/enjoying_the_show/" rel="nofollow">
84 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79hg4o">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79hg4o" style="max-width: 614px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/TF73oKb.gifv" class="may-blank"&gt; &lt;video class="preview" preload="auto" autoplay="autoplay" muted="muted" loop="loop" webkit-playsinline="" style="width: 614px; height: 768px;"&gt; &lt;source src="https://g.redditmedia.com/PNF2Me4dVUHTnzoRikcbiu5ln2HJO-LDg7aSPVdf_i4.gif?w=614&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=40c5deb341498bcde4024dec44b603ea" type="video/mp4"&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79idus odd link " data-author="Looks_pretty_cool" data-author-fullname="t2_qyuz1" data-comments-count="102" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79idus" data-num-crossposts="0" data-permalink="/r/evilbuildings/comments/79idus/worst_fire_escape_ever/" data-rank="9" data-score="4900" data-subreddit="evilbuildings" data-subreddit-fullname="t5_3ckh2" data-timestamp="1509303843000" data-type="link" data-url="https://i.imgur.com/LxQVahs.jpg" data-whitelist-status="all_ads" id="thing_t3_79idus" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
9
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="4898">
4898
</div>
<div class="score unvoted" title="4899">
4899
</div>
<div class="score likes" title="4900">
4900
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/LxQVahs.jpg" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79idus?url=https%3A%2F%2Fi.imgur.com%2FLxQVahs.jpg&amp;token=AQAApV72WWy3A80yLreVuVgvnRI2poI5GdPW792oDMwBq4lGSJsD&amp;app_name=reddit.com" href="https://i.imgur.com/LxQVahs.jpg" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/loxZNU4NHlxH7Kg_X1otSg8WLjmeOVLAMviRNYxKC5s.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/LxQVahs.jpg" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79idus?url=https%3A%2F%2Fi.imgur.com%2FLxQVahs.jpg&amp;token=AQAApV72WWy3A80yLreVuVgvnRI2poI5GdPW792oDMwBq4lGSJsD&amp;app_name=reddit.com" href="https://i.imgur.com/LxQVahs.jpg" rel="" tabindex="1">
Worst fire escape ever
</a>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T19:04:03+00:00" title="Sun Oct 29 19:04:03 2017 UTC">
3 hours ago
</time>
by
<a class="author may-blank id-t2_qyuz1" href="https://www.reddit.com/user/Looks_pretty_cool">
Looks_pretty_cool
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/evilbuildings/">
r/evilbuildings
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/evilbuildings/comments/79idus/worst_fire_escape_ever/" data-inbound-url="/r/evilbuildings/comments/79idus/worst_fire_escape_ever/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/evilbuildings/comments/79idus/worst_fire_escape_ever/" rel="nofollow">
102 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79idus">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79idus" style="max-width: 768px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/LxQVahs.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/FIaEJ49JDwxcgE--kCVyQyW5bdGb_zn2D87p2sHOC6Q.jpg?w=768&amp;amp;s=0dffb96ceb73cdd61a264132efce10f2" width="768" height="768"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h7yg even link " data-author="shizzblatt" data-author-fullname="t2_mzkds" data-comments-count="46" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79h7yg" data-num-crossposts="0" data-permalink="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-rank="10" data-score="10514" data-subreddit="comics" data-subreddit-fullname="t5_2qh0s" data-timestamp="1509292465000" data-type="link" data-url="https://i.redd.it/ymio3n5ujsuz.png" data-whitelist-status="all_ads" id="thing_t3_79h7yg" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
10
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="12164">
12.2k
</div>
<div class="score unvoted" title="12165">
12.2k
</div>
<div class="score likes" title="12166">
12.2k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-inbound-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/comics/comments/79h7yg/a_fly_and_a_guy/" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/CvdZKhz1fLKyUUDK45_EKWVSz4HKw_EvcOGnh7kOHCc.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-inbound-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/comics/comments/79h7yg/a_fly_and_a_guy/" rel="" tabindex="1">
a fly and a guy...
</a>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:54:25+00:00" title="Sun Oct 29 15:54:25 2017 UTC">
5 hours ago
</time>
by
<a class="author may-blank id-t2_mzkds" href="https://www.reddit.com/user/shizzblatt">
shizzblatt
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/comics/">
r/comics
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/" data-inbound-url="/r/comics/comments/79h7yg/a_fly_and_a_guy/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/comics/comments/79h7yg/a_fly_and_a_guy/" rel="nofollow">
56 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h7yg">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79h7yg" style="max-width: 540px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/ymio3n5ujsuz.png" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/iU7UB_9GnvTrGA8Q8vx89pxIsdAwJGNZ1QZKL6ohnw0.png?w=540&amp;amp;s=5fe0225e9785b4fa75c4bf7786292ddd" width="540" height="700"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79hr0y linkflair linkflair-diy-other odd link " data-author="JoshDM" data-author-fullname="t2_6mv3r" data-comments-count="177" data-context="listing" data-domain="imgur.com" data-fullname="t3_79hr0y" data-num-crossposts="0" data-permalink="/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/" data-rank="11" data-score="7797" data-subreddit="DIY" data-subreddit-fullname="t5_2qh7d" data-timestamp="1509297722000" data-type="link" data-url="https://imgur.com/gallery/EbSWU" data-whitelist-status="all_ads" id="thing_t3_79hr0y" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
11
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="7796">
7796
</div>
<div class="score unvoted" title="7797">
7797
</div>
<div class="score likes" title="7798">
7798
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://imgur.com/gallery/EbSWU" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hr0y?url=https%3A%2F%2Fimgur.com%2Fgallery%2FEbSWU&amp;token=AQAApV72WWvoaWNYCZeMKjXZ11UfXevtC5f-oJkv2i4UapH6ZSHi&amp;app_name=reddit.com" href="https://imgur.com/gallery/EbSWU" rel="">
<img alt="" height="67" src="//b.thumbs.redditmedia.com/wzhcytj4Z0bJCZA3nPaXOtvRoyNOzMWhBe-qJLaUf_o.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://imgur.com/gallery/EbSWU" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hr0y?url=https%3A%2F%2Fimgur.com%2Fgallery%2FEbSWU&amp;token=AQAApV72WWvoaWNYCZeMKjXZ11UfXevtC5f-oJkv2i4UapH6ZSHi&amp;app_name=reddit.com" href="https://imgur.com/gallery/EbSWU" rel="" tabindex="1">
Cthulhu costume I made for my kid this year
</a>
<span class="linkflairlabel" title="other">
other
</span>
<span class="domain">
(
<a href="/domain/imgur.com/">
imgur.com
</a>
)
</span>
</p>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T17:22:02+00:00" title="Sun Oct 29 17:22:02 2017 UTC">
4 hours ago
</time>
by
<a class="author may-blank id-t2_6mv3r" href="https://www.reddit.com/user/JoshDM">
JoshDM
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/DIY/">
r/DIY
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/" data-inbound-url="/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/DIY/comments/79hr0y/cthulhu_costume_i_made_for_my_kid_this_year/" rel="nofollow">
177 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79hr0y">
</div>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gwjl linkflair linkflair-AwesomeBlue even link " data-author="ShiningConcepts" data-author-fullname="t2_orcvx" data-comments-count="465" data-context="listing" data-domain="gfycat.com" data-fullname="t3_79gwjl" data-num-crossposts="1" data-permalink="/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/" data-rank="12" data-score="35492" data-subreddit="oddlysatisfying" data-subreddit-fullname="t5_2x93b" data-timestamp="1509289023000" data-type="link" data-url="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-whitelist-status="all_ads" id="thing_t3_79gwjl" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
12
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="35485">
35.5k
</div>
<div class="score unvoted" title="35486">
35.5k
</div>
<div class="score likes" title="35487">
35.5k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gwjl?url=https%3A%2F%2Fgfycat.com%2Fgifs%2Fdetail%2FDevotedCompetentFlounder&amp;token=AQAApV72WVkJyqCOG9_vzGGRqXlRwyDzLrxFPZVr2y5ZS5eJZ4jp&amp;app_name=reddit.com" href="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" rel="">
<img alt="" height="39" src="//b.thumbs.redditmedia.com/u663axy2V9G4O4k6IjDdubJpmSCvtJyfdlB66EdcQYo.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gwjl?url=https%3A%2F%2Fgfycat.com%2Fgifs%2Fdetail%2FDevotedCompetentFlounder&amp;token=AQAApV72WVkJyqCOG9_vzGGRqXlRwyDzLrxFPZVr2y5ZS5eJZ4jp&amp;app_name=reddit.com" href="https://gfycat.com/gifs/detail/DevotedCompetentFlounder" rel="" tabindex="1">
Putting a camera under a faucet opens up a new dimension (xpost from /r/blackmagicfuckery)
</a>
<span class="linkflairlabel" title="Certified Satisfying">
Certified Satisfying
</span>
<span class="domain">
(
<a href="/domain/gfycat.com/">
gfycat.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T14:57:03+00:00" title="Sun Oct 29 14:57:03 2017 UTC">
7 hours ago
</time>
by
<a class="author may-blank id-t2_orcvx" href="https://www.reddit.com/user/ShiningConcepts">
ShiningConcepts
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/oddlysatisfying/">
r/oddlysatisfying
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/" data-inbound-url="/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/oddlysatisfying/comments/79gwjl/putting_a_camera_under_a_faucet_opens_up_a_new/" rel="nofollow">
465 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gwjl">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;iframe src="//www.redditmedia.com/mediaembed/79gwjl" id="media-embed-79gwjl-ctg" class="media-embed" width="610" height="348" border="0" frameBorder="0" scrolling="no" allowfullscreen&gt;&lt;/iframe&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gygd odd link self" data-author="KSolita" data-author-fullname="t2_h0jos" data-comments-count="642" data-context="listing" data-domain="self.Jokes" data-fullname="t3_79gygd" data-num-crossposts="0" data-permalink="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-rank="13" data-score="31198" data-subreddit="Jokes" data-subreddit-fullname="t5_2qh72" data-timestamp="1509289601000" data-type="link" data-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-whitelist-status="all_ads" id="thing_t3_79gygd" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
13
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="31462">
31.5k
</div>
<div class="score unvoted" title="31463">
31.5k
</div>
<div class="score likes" title="31464">
31.5k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned self may-blank " data-event-action="thumbnail" data-href-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-inbound-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" rel="">
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-inbound-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" rel="" tabindex="1">
A Polish immigrant went to the DMV to apply for a driver's license.
</a>
<span class="domain">
(
<a href="/r/Jokes/">
self.Jokes
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned selftext">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:06:41+00:00" title="Sun Oct 29 15:06:41 2017 UTC">
6 hours ago
</time>
by
<a class="author may-blank id-t2_h0jos" href="https://www.reddit.com/user/KSolita">
KSolita
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/Jokes/">
r/Jokes
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" data-inbound-url="/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/Jokes/comments/79gygd/a_polish_immigrant_went_to_the_dmv_to_apply_for_a/" rel="nofollow">
649 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="link-save-button save-button login-required">
<a href="#">
save
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gygd">
</div>
</div>
<div class="expando expando-uninitialized" data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79grd6 even link " data-author="13704" data-author-fullname="t2_uk36f" data-comments-count="2194" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79grd6" data-num-crossposts="0" data-permalink="/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/" data-rank="14" data-score="22856" data-subreddit="PoliticalHumor" data-subreddit-fullname="t5_2qm21" data-timestamp="1509287277000" data-type="link" data-url="https://i.imgur.com/zrkNGWN.png" data-whitelist-status="all_ads" id="thing_t3_79grd6" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
14
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="22855">
22.9k
</div>
<div class="score unvoted" title="22856">
22.9k
</div>
<div class="score likes" title="22857">
22.9k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/zrkNGWN.png" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79grd6?url=https%3A%2F%2Fi.imgur.com%2FzrkNGWN.png&amp;token=AQAApV72WX3umSN103Kv-IwD0TYaie0BFWGJr7vwwkPNSYYYFv6F&amp;app_name=reddit.com" href="https://i.imgur.com/zrkNGWN.png" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/kGYJqrmvosXM2imRB32Y0fzyYdcrhAe-Qp0IWYazybI.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/zrkNGWN.png" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79grd6?url=https%3A%2F%2Fi.imgur.com%2FzrkNGWN.png&amp;token=AQAApV72WX3umSN103Kv-IwD0TYaie0BFWGJr7vwwkPNSYYYFv6F&amp;app_name=reddit.com" href="https://i.imgur.com/zrkNGWN.png" rel="" tabindex="1">
I'm sure Trump's administration won't add to this total.
</a>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T14:27:57+00:00" title="Sun Oct 29 14:27:57 2017 UTC">
7 hours ago
</time>
by
<a class="author may-blank id-t2_uk36f" href="https://www.reddit.com/user/13704">
13704
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/PoliticalHumor/">
r/PoliticalHumor
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/" data-inbound-url="/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/PoliticalHumor/comments/79grd6/im_sure_trumps_administration_wont_add_to_this/" rel="nofollow">
2194 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79grd6">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79grd6" style="max-width: 426px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/zrkNGWN.png" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/6pljbSu9tp0f5lEW7LduQtPbVSsyVfYJTl-Ox6t5p-U.png?w=426&amp;amp;s=84426d18d533d100170d438ee2769c3d" width="426" height="764"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h5mn odd link " data-author="chistannuhguyin" data-author-fullname="t2_1rxpmml" data-comments-count="61" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79h5mn" data-num-crossposts="0" data-permalink="/r/hmmm/comments/79h5mn/hmmm/" data-rank="15" data-score="7624" data-subreddit="hmmm" data-subreddit-fullname="t5_2qq6z" data-timestamp="1509291794000" data-type="link" data-url="https://i.redd.it/p522enxvhsuz.jpg" data-whitelist-status="all_ads" id="thing_t3_79h5mn" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
15
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="10557">
10.6k
</div>
<div class="score unvoted" title="10558">
10.6k
</div>
<div class="score likes" title="10559">
10.6k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned image may-blank " data-event-action="thumbnail" data-href-url="/r/hmmm/comments/79h5mn/hmmm/" data-inbound-url="/r/hmmm/comments/79h5mn/hmmm/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/hmmm/comments/79h5mn/hmmm/" rel="">
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/hmmm/comments/79h5mn/hmmm/" data-inbound-url="/r/hmmm/comments/79h5mn/hmmm/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/hmmm/comments/79h5mn/hmmm/" rel="" tabindex="1">
hmmm
</a>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:43:14+00:00" title="Sun Oct 29 15:43:14 2017 UTC">
5 hours ago
</time>
by
<a class="author may-blank id-t2_1rxpmml" href="https://www.reddit.com/user/chistannuhguyin">
chistannuhguyin
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/hmmm/">
r/hmmm
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/hmmm/comments/79h5mn/hmmm/" data-inbound-url="/r/hmmm/comments/79h5mn/hmmm/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/hmmm/comments/79h5mn/hmmm/" rel="nofollow">
75 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h5mn">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79h5mn" style="max-width: 684px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/p522enxvhsuz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/XRwuYrk_RHQaRxg1sj3rpzx6c5Qh6Man12cENnHAzgE.jpg?w=684&amp;amp;s=389d4369cb2ccca03ede86b6baeda221" width="684" height="768"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h399 even link " data-author="marinamaral" data-author-fullname="t2_jtwq5" data-comments-count="625" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79h399" data-num-crossposts="0" data-permalink="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-rank="16" data-score="8465" data-subreddit="ColorizedHistory" data-subreddit-fullname="t5_2voya" data-timestamp="1509291070000" data-type="link" data-url="https://i.redd.it/qdd9rk6pfsuz.jpg" data-whitelist-status="all_ads" id="thing_t3_79h399" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
16
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="9872">
9872
</div>
<div class="score unvoted" title="9873">
9873
</div>
<div class="score likes" title="9874">
9874
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-inbound-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" rel="">
<img alt="" height="55" src="//a.thumbs.redditmedia.com/pL_Okc7Z8o_vh5xcOwogyRrWtC3Yz-NKagUWSf1r1N4.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-inbound-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" rel="" tabindex="1">
Lyndon B. Johnson takes the oath of office aboard Air Force One at Love Field in Dallas following the assassination of JFK
</a>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:31:10+00:00" title="Sun Oct 29 15:31:10 2017 UTC">
6 hours ago
</time>
by
<a class="author may-blank id-t2_jtwq5" href="https://www.reddit.com/user/marinamaral">
marinamaral
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/ColorizedHistory/">
r/ColorizedHistory
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" data-inbound-url="/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/ColorizedHistory/comments/79h399/lyndon_b_johnson_takes_the_oath_of_office_aboard/" rel="nofollow">
714 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h399">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79h399" style="max-width: 966px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/qdd9rk6pfsuz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/IyLgtpPji9RUJmQmvALaUkZkRHOg12-D8Ldl1_GGRqQ.jpg?w=966&amp;amp;s=14c42802a40676eb2ec4ecb5cfea833c" width="966" height="768"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79hj3t linkflair odd link " data-author="charmik12" data-author-fullname="t2_9lgjj" data-comments-count="553" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79hj3t" data-num-crossposts="0" data-permalink="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-rank="17" data-score="5524" data-subreddit="iamverysmart" data-subreddit-fullname="t5_2yuej" data-timestamp="1509295565000" data-type="link" data-url="https://i.redd.it/z86ammk3tsuz.jpg" data-whitelist-status="all_ads" id="thing_t3_79hj3t" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
17
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="6299">
6299
</div>
<div class="score unvoted" title="6300">
6300
</div>
<div class="score likes" title="6301">
6301
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-inbound-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/dLDXVJumxwtZ92psyCUuVhta_mCP4c2QmNda87MaOOM.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-inbound-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" rel="" tabindex="1">
I can use big unnecessary big words
</a>
<span class="linkflairlabel" title="/r/all">
/r/all
</span>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T16:46:05+00:00" title="Sun Oct 29 16:46:05 2017 UTC">
5 hours ago
</time>
by
<a class="author may-blank id-t2_9lgjj" href="https://www.reddit.com/user/charmik12">
charmik12
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/iamverysmart/">
r/iamverysmart
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" data-inbound-url="/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/iamverysmart/comments/79hj3t/i_can_use_big_unnecessary_big_words/" rel="nofollow">
622 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79hj3t">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79hj3t" style="max-width: 431px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/z86ammk3tsuz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/Qz8N9i-O0Y0WjJMZZuTwV4bBzcP7ZMq0LV1KFMOazpc.jpg?w=431&amp;amp;s=e621aa58c050e7d36032f2642eb666dc" width="431" height="768"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h4u0 even link " data-author="RespectMyAuthoriteh" data-author-fullname="t2_c35it" data-comments-count="125" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79h4u0" data-num-crossposts="0" data-permalink="/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/" data-rank="18" data-score="8938" data-subreddit="gifs" data-subreddit-fullname="t5_2qt55" data-timestamp="1509291555000" data-type="link" data-url="https://i.imgur.com/fv8333a.gifv" data-whitelist-status="all_ads" id="thing_t3_79h4u0" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
18
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="8928">
8928
</div>
<div class="score unvoted" title="8929">
8929
</div>
<div class="score likes" title="8930">
8930
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/fv8333a.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79h4u0?url=https%3A%2F%2Fi.imgur.com%2Ffv8333a.gifv&amp;token=AQAApV72Wa3SGQl4uXFoxT43sq-W5-ga7a_hXz3sPgqX210h7HXI&amp;app_name=reddit.com" href="https://i.imgur.com/fv8333a.gifv" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/1Y6vb9bp7konn5metnwzn8dXykYGSd-yH9r8-0HR0gU.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/fv8333a.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79h4u0?url=https%3A%2F%2Fi.imgur.com%2Ffv8333a.gifv&amp;token=AQAApV72Wa3SGQl4uXFoxT43sq-W5-ga7a_hXz3sPgqX210h7HXI&amp;app_name=reddit.com" href="https://i.imgur.com/fv8333a.gifv" rel="" tabindex="1">
"Let's make that a bit more difficult for you, shall we?"
</a>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:39:15+00:00" title="Sun Oct 29 15:39:15 2017 UTC">
6 hours ago
</time>
by
<a class="author may-blank id-t2_c35it" href="https://www.reddit.com/user/RespectMyAuthoriteh">
RespectMyAuthoriteh
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/gifs/">
r/gifs
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/" data-inbound-url="/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/gifs/comments/79h4u0/lets_make_that_a_bit_more_difficult_for_you_shall/" rel="nofollow">
125 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h4u0">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79h4u0" style="max-width: 614px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/fv8333a.gifv" class="may-blank"&gt; &lt;video class="preview" preload="auto" autoplay="autoplay" muted="muted" loop="loop" webkit-playsinline="" style="width: 614px; height: 768px;"&gt; &lt;source src="https://g.redditmedia.com/pLifm8xm-KBwxtxMg7RT_tAKQSy-bCtTtaGW-ueido8.gif?w=614&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=d374357373688748ebefd0eb07112564" type="video/mp4"&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79h5dc odd link self" data-author="JimBobBoBubba" data-author-fullname="t2_cmdmw" data-comments-count="1178" data-context="listing" data-domain="self.AskReddit" data-fullname="t3_79h5dc" data-num-crossposts="0" data-permalink="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-rank="19" data-score="8622" data-subreddit="AskReddit" data-subreddit-fullname="t5_2qh1i" data-timestamp="1509291717000" data-type="link" data-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-whitelist-status="all_ads" id="thing_t3_79h5dc" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
19
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="12309">
12.3k
</div>
<div class="score unvoted" title="12310">
12.3k
</div>
<div class="score likes" title="12311">
12.3k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned self may-blank " data-event-action="thumbnail" data-href-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-inbound-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" rel="">
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-inbound-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" rel="" tabindex="1">
You awaken, clothes smoking, in a ruined bunker in 1945 with a box containing a 2015-era laptop with Photoshop and Premiere Pro installed, a scanner, photo printer, analog-to-USB input converter and more than enough printer ink and card photo stock. How do you best start screwing with history?
</a>
<span class="domain">
(
<a href="/r/AskReddit/">
self.AskReddit
</a>
)
</span>
</p>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T15:41:57+00:00" title="Sun Oct 29 15:41:57 2017 UTC">
5 hours ago
</time>
by
<a class="author may-blank id-t2_cmdmw" href="https://www.reddit.com/user/JimBobBoBubba">
JimBobBoBubba
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/AskReddit/">
r/AskReddit
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" data-inbound-url="/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/AskReddit/comments/79h5dc/you_awaken_clothes_smoking_in_a_ruined_bunker_in/" rel="nofollow">
1581 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79h5dc">
</div>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gkuz linkflair linkflair-mods-choice-flair even link " data-author="meltedlaundry" data-author-fullname="t2_3rtuv" data-comments-count="250" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79gkuz" data-num-crossposts="0" data-permalink="/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/" data-rank="20" data-score="21848" data-subreddit="ChildrenFallingOver" data-subreddit-fullname="t5_2yo2z" data-timestamp="1509285063000" data-type="link" data-url="http://i.imgur.com/Rcx6rsF.gifv" data-whitelist-status="all_ads" id="thing_t3_79gkuz" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
20
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="21852">
21.9k
</div>
<div class="score unvoted" title="21853">
21.9k
</div>
<div class="score likes" title="21854">
21.9k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="http://i.imgur.com/Rcx6rsF.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gkuz?url=http%3A%2F%2Fi.imgur.com%2FRcx6rsF.gifv&amp;token=AQAApV72WYJaoyPMdYLiRa9Ol9lu6ggDA85i219fghQfGME6Y_5j&amp;app_name=reddit.com" href="http://i.imgur.com/Rcx6rsF.gifv" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/XSjuXh9zj5GBUnySDJ8rA_5lpiAkgG_bqsUZkN_FlAs.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="http://i.imgur.com/Rcx6rsF.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gkuz?url=http%3A%2F%2Fi.imgur.com%2FRcx6rsF.gifv&amp;token=AQAApV72WYJaoyPMdYLiRa9Ol9lu6ggDA85i219fghQfGME6Y_5j&amp;app_name=reddit.com" href="http://i.imgur.com/Rcx6rsF.gifv" rel="" tabindex="1">
Not a bad way to fall
</a>
<span class="linkflairlabel" title="Mods' Choice">
Mods' Choice
</span>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T13:51:03+00:00" title="Sun Oct 29 13:51:03 2017 UTC">
8 hours ago
</time>
by
<a class="author may-blank id-t2_3rtuv" href="https://www.reddit.com/user/meltedlaundry">
meltedlaundry
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/ChildrenFallingOver/">
r/ChildrenFallingOver
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/" data-inbound-url="/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/ChildrenFallingOver/comments/79gkuz/not_a_bad_way_to_fall/" rel="nofollow">
250 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gkuz">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79gkuz" style="max-width: 432px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="http://i.imgur.com/Rcx6rsF.gifv" class="may-blank"&gt; &lt;video class="preview" preload="auto" autoplay="autoplay" muted="muted" loop="loop" webkit-playsinline="" style="width: 432px; height: 768px;"&gt; &lt;source src="https://g.redditmedia.com/UQ1-RSNkocZZFrwAxQUpwqFH6QL1t1WjmIiHbQp1Hxg.gif?w=432&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=e8063c8dc99cd198da311a16b31524eb" type="video/mp4"&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79hxwr odd link " data-author="qorgon" data-author-fullname="t2_xap51" data-comments-count="237" data-context="listing" data-domain="imgur.com" data-fullname="t3_79hxwr" data-num-crossposts="0" data-permalink="/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/" data-rank="21" data-score="4176" data-subreddit="quityourbullshit" data-subreddit-fullname="t5_2y8xf" data-timestamp="1509299587000" data-type="link" data-url="https://imgur.com/hluCPPa" data-whitelist-status="all_ads" id="thing_t3_79hxwr" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
21
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="4173">
4173
</div>
<div class="score unvoted" title="4174">
4174
</div>
<div class="score likes" title="4175">
4175
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://imgur.com/hluCPPa" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hxwr?url=https%3A%2F%2Fimgur.com%2FhluCPPa&amp;token=AQAApV72WXIlWHdW4FmSr62zeBzxl1UEwdC7JqOaRJ00TpFUJrcu&amp;app_name=reddit.com" href="https://imgur.com/hluCPPa" rel="">
<img alt="" height="65" src="//b.thumbs.redditmedia.com/COOh5SGOmFmjg9dh7ErpIPeSH-SKp5LZq0q9aR6UjBA.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://imgur.com/hluCPPa" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79hxwr?url=https%3A%2F%2Fimgur.com%2FhluCPPa&amp;token=AQAApV72WXIlWHdW4FmSr62zeBzxl1UEwdC7JqOaRJ00TpFUJrcu&amp;app_name=reddit.com" href="https://imgur.com/hluCPPa" rel="" tabindex="1">
Part of a comment thread I saw on a picture of someone's dog bite wound.
</a>
<span class="domain">
(
<a href="/domain/imgur.com/">
imgur.com
</a>
)
</span>
</p>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T17:53:07+00:00" title="Sun Oct 29 17:53:07 2017 UTC">
4 hours ago
</time>
by
<a class="author may-blank id-t2_xap51" href="https://www.reddit.com/user/qorgon">
qorgon
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/quityourbullshit/">
r/quityourbullshit
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/" data-inbound-url="/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/quityourbullshit/comments/79hxwr/part_of_a_comment_thread_i_saw_on_a_picture_of/" rel="nofollow">
237 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79hxwr">
</div>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gu0m even link " data-author="Ibleedcarrots" data-author-fullname="t2_2wrtwm1" data-comments-count="306" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79gu0m" data-num-crossposts="1" data-permalink="/r/SweatyPalms/comments/79gu0m/wall_jumping/" data-rank="22" data-score="11534" data-subreddit="SweatyPalms" data-subreddit-fullname="t5_2v567" data-timestamp="1509288177000" data-type="link" data-url="https://i.imgur.com/A8O8Yfi.gifv" data-whitelist-status="all_ads" id="thing_t3_79gu0m" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
22
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="11531">
11.5k
</div>
<div class="score unvoted" title="11532">
11.5k
</div>
<div class="score likes" title="11533">
11.5k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/A8O8Yfi.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gu0m?url=https%3A%2F%2Fi.imgur.com%2FA8O8Yfi.gifv&amp;token=AQAApV72WYaM1pEG_kcTwL-d0cY6Tm5vOrXReSYkUaq8B3HEXH_W&amp;app_name=reddit.com" href="https://i.imgur.com/A8O8Yfi.gifv" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/-oNRQE60n5fstUoWxkuYpngNVqTbUXpnjZjOLVyE0PU.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/A8O8Yfi.gifv" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gu0m?url=https%3A%2F%2Fi.imgur.com%2FA8O8Yfi.gifv&amp;token=AQAApV72WYaM1pEG_kcTwL-d0cY6Tm5vOrXReSYkUaq8B3HEXH_W&amp;app_name=reddit.com" href="https://i.imgur.com/A8O8Yfi.gifv" rel="" tabindex="1">
Wall Jumping
</a>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T14:42:57+00:00" title="Sun Oct 29 14:42:57 2017 UTC">
7 hours ago
</time>
by
<a class="author may-blank id-t2_2wrtwm1" href="https://www.reddit.com/user/Ibleedcarrots">
Ibleedcarrots
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/SweatyPalms/">
r/SweatyPalms
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/SweatyPalms/comments/79gu0m/wall_jumping/" data-inbound-url="/r/SweatyPalms/comments/79gu0m/wall_jumping/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/SweatyPalms/comments/79gu0m/wall_jumping/" rel="nofollow">
306 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gu0m">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79gu0m" style="max-width: 640px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/A8O8Yfi.gifv" class="may-blank"&gt; &lt;video class="preview" preload="auto" autoplay="autoplay" muted="muted" loop="loop" webkit-playsinline="" style="width: 640px; height: 640px;"&gt; &lt;source src="https://g.redditmedia.com/LdxhmPfVU4c4Wx7DVWqywY4TqjXolyBoN5N_njAWKM0.gif?w=640&amp;amp;fm=mp4&amp;amp;mp4-fragmented=false&amp;amp;s=45f9a412cb5f27205eefcf550b31050c" type="video/mp4"&gt; &lt;/video&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gke3 odd link " data-author="Ibleedcarrots" data-author-fullname="t2_2wrtwm1" data-comments-count="247" data-context="listing" data-domain="i.imgur.com" data-fullname="t3_79gke3" data-num-crossposts="0" data-permalink="/r/BlackPeopleTwitter/comments/79gke3/equality/" data-rank="23" data-score="22577" data-subreddit="BlackPeopleTwitter" data-subreddit-fullname="t5_33x33" data-timestamp="1509284902000" data-type="link" data-url="https://i.imgur.com/qVBk8C9.jpg" data-whitelist-status="promo_all" id="thing_t3_79gke3" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
23
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="22575">
22.6k
</div>
<div class="score unvoted" title="22576">
22.6k
</div>
<div class="score likes" title="22577">
22.6k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank outbound" data-event-action="thumbnail" data-href-url="https://i.imgur.com/qVBk8C9.jpg" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gke3?url=https%3A%2F%2Fi.imgur.com%2FqVBk8C9.jpg&amp;token=AQAApV72WQ0Gpc6yjyDOVKMcVUbFHY8_DHlnv847PZpVpG-JMtm-&amp;app_name=reddit.com" href="https://i.imgur.com/qVBk8C9.jpg" rel="">
<img alt="" height="70" src="//b.thumbs.redditmedia.com/0ifOwaFoewkIr-OVkT8H1VAlG3hSy-uRj-ExIPAO7xc.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="https://i.imgur.com/qVBk8C9.jpg" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gke3?url=https%3A%2F%2Fi.imgur.com%2FqVBk8C9.jpg&amp;token=AQAApV72WQ0Gpc6yjyDOVKMcVUbFHY8_DHlnv847PZpVpG-JMtm-&amp;app_name=reddit.com" href="https://i.imgur.com/qVBk8C9.jpg" rel="" tabindex="1">
Equality
</a>
<span class="domain">
(
<a href="/domain/i.imgur.com/">
i.imgur.com
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T13:48:22+00:00" title="Sun Oct 29 13:48:22 2017 UTC">
8 hours ago
</time>
by
<a class="author may-blank id-t2_2wrtwm1" href="https://www.reddit.com/user/Ibleedcarrots">
Ibleedcarrots
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/BlackPeopleTwitter/">
r/BlackPeopleTwitter
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/BlackPeopleTwitter/comments/79gke3/equality/" data-inbound-url="/r/BlackPeopleTwitter/comments/79gke3/equality/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/BlackPeopleTwitter/comments/79gke3/equality/" rel="nofollow">
247 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gke3">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79gke3" style="max-width: 720px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.imgur.com/qVBk8C9.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/V62diui7qttbTruto7kBLIwWGrnXlQaMS-wtUW7wdTE.jpg?w=720&amp;amp;s=d7050ec56f7db1db983c269cc9799513" width="720" height="720"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gss8 even link " data-author="aCertainBlueLobster" data-author-fullname="t2_yhqwc" data-comments-count="747" data-context="listing" data-domain="i.redd.it" data-fullname="t3_79gss8" data-num-crossposts="0" data-permalink="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-rank="24" data-score="40056" data-subreddit="gaming" data-subreddit-fullname="t5_2qh03" data-timestamp="1509287752000" data-type="link" data-url="https://i.redd.it/o0oh1p3v5suz.jpg" data-whitelist-status="all_ads" id="thing_t3_79gss8" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
24
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="41166">
41.2k
</div>
<div class="score unvoted" title="41167">
41.2k
</div>
<div class="score likes" title="41168">
41.2k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned may-blank " data-event-action="thumbnail" data-href-url="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-inbound-url="/r/gaming/comments/79gss8/we_went_as_the_sims/?utm_content=thumbnail&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/gaming/comments/79gss8/we_went_as_the_sims/" rel="">
<img alt="" height="70" src="//a.thumbs.redditmedia.com/s7fmnEnm5rnJaOBFwB85-5ZMEgVbEsKbnxKwQB0vPE0.jpg" width="70"/>
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank " data-event-action="title" data-href-url="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-inbound-url="/r/gaming/comments/79gss8/we_went_as_the_sims/?utm_content=title&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="/r/gaming/comments/79gss8/we_went_as_the_sims/" rel="" tabindex="1">
We went as The Sims!
</a>
<span class="domain">
(
<a href="/domain/i.redd.it/">
i.redd.it
</a>
)
</span>
</p>
<div class="expando-button collapsed hide-when-pinned video">
</div>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T14:35:52+00:00" title="Sun Oct 29 14:35:52 2017 UTC">
7 hours ago
</time>
by
<a class="author may-blank id-t2_yhqwc" href="https://www.reddit.com/user/aCertainBlueLobster">
aCertainBlueLobster
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/gaming/">
r/gaming
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/gaming/comments/79gss8/we_went_as_the_sims/" data-inbound-url="/r/gaming/comments/79gss8/we_went_as_the_sims/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/gaming/comments/79gss8/we_went_as_the_sims/" rel="nofollow">
762 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gss8">
</div>
</div>
<div class="expando expando-uninitialized" data-cachedhtml=' &lt;div class="media-preview" id="media-preview-79gss8" style="max-width: 576px"&gt; &lt;div class="media-preview-content"&gt; &lt;a href="https://i.redd.it/o0oh1p3v5suz.jpg" class="may-blank"&gt; &lt;img class="preview" src="https://i.redditmedia.com/dqiT1FIDOiVui_9RIID8-nCQzAzJfN5WEdr0XTCS9ew.jpg?w=576&amp;amp;s=9125e0b1d9965e1bc84309c4b9e5b171" width="576" height="768"&gt; &lt;/a&gt; &lt;/div&gt; &lt;/div&gt; ' data-pin-condition="function() {return this.style.display != 'none';}" style="display: none">
<span class="error">
loading...
</span>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class=" thing id-t3_79gblx odd link " data-author="Pach1no" data-author-fullname="t2_sl55t" data-comments-count="2891" data-context="listing" data-domain="wafb.com" data-fullname="t3_79gblx" data-num-crossposts="1" data-permalink="/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/" data-rank="25" data-score="45936" data-subreddit="news" data-subreddit-fullname="t5_2qh3l" data-timestamp="1509281552000" data-type="link" data-url="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-whitelist-status="all_ads" id="thing_t3_79gblx" onclick="click_thing(this)">
<p class="parent">
</p>
<span class="rank">
25
</span>
<div class="midcol unvoted">
<div aria-label="upvote" class="arrow up login-required access-required" data-event-action="upvote" role="button" tabindex="0">
</div>
<div class="score dislikes" title="45935">
45.9k
</div>
<div class="score unvoted" title="45936">
45.9k
</div>
<div class="score likes" title="45937">
45.9k
</div>
<div aria-label="downvote" class="arrow down login-required access-required" data-event-action="downvote" role="button" tabindex="0">
</div>
</div>
<a class="thumbnail invisible-when-pinned default may-blank outbound" data-event-action="thumbnail" data-href-url="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gblx?url=http%3A%2F%2Fwww.wafb.com%2Fstory%2F36709925%2Fwomans-id-stolen-15-times-after-equifax-breach&amp;token=AQAApV72WUvAKQ2lWxsWZ_-yM88GB3S2tMlvJRUIaKir3O__k2-P&amp;app_name=reddit.com" href="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" rel="">
</a>
<div class="entry unvoted">
<div class="top-matter">
<p class="title">
<a class="title may-blank outbound" data-event-action="title" data-href-url="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" data-outbound-expiration="1509318309000" data-outbound-url="https://out.reddit.com/t3_79gblx?url=http%3A%2F%2Fwww.wafb.com%2Fstory%2F36709925%2Fwomans-id-stolen-15-times-after-equifax-breach&amp;token=AQAApV72WUvAKQ2lWxsWZ_-yM88GB3S2tMlvJRUIaKir3O__k2-P&amp;app_name=reddit.com" href="http://www.wafb.com/story/36709925/womans-id-stolen-15-times-after-equifax-breach" rel="" tabindex="1">
Woman's ID stolen 15 times after Equifax breach
</a>
<span class="domain">
(
<a href="/domain/wafb.com/">
wafb.com
</a>
)
</span>
</p>
<p class="tagline ">
submitted
<time class="live-timestamp" datetime="2017-10-29T12:52:32+00:00" title="Sun Oct 29 12:52:32 2017 UTC">
9 hours ago
</time>
by
<a class="author may-blank id-t2_sl55t" href="https://www.reddit.com/user/Pach1no">
Pach1no
</a>
<span class="userattrs">
</span>
to
<a class="subreddit hover may-blank" href="https://www.reddit.com/r/news/">
r/news
</a>
</p>
<ul class="flat-list buttons">
<li class="first">
<a class="bylink comments may-blank" data-event-action="comments" data-href-url="/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/" data-inbound-url="/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/?utm_content=comments&amp;utm_medium=hot&amp;utm_source=reddit&amp;utm_name=frontpage" href="https://www.reddit.com/r/news/comments/79gblx/womans_id_stolen_15_times_after_equifax_breach/" rel="nofollow">
2891 comments
</a>
</li>
<li class="share">
<a class="post-sharing-button" href="javascript: void 0;">
share
</a>
</li>
<li class="report-button login-required">
<a class="reportbtn access-required" data-event-action="report" href="javascript:void(0)">
report
</a>
</li>
</ul>
<div class="reportform report-t3_79gblx">
</div>
</div>
</div>
<div class="child">
</div>
<div class="clearleft">
</div>
</div>
<div class="clearleft">
</div>
<div class="nav-buttons">
<span class="nextprev">
view more:
<span class="next-button">
<a href="https://www.reddit.com/?count=25&amp;after=t3_79gblx" rel="nofollow next">
next ›
</a>
</span>
</span>
</div>
</div>
</div>
<script id="archived-popup" type="text/template">
<div class="interstitial"><img class="interstitial-image" src="//www.redditstatic.com/interstitial-image-archived.png" alt="archived" height="150" width="150"><div class="interstitial-message md-container"><div class="md"><h3>This is an archived post. You won't be able to vote or comment.</h3><p>Posts&#32;are&#32;automatically&#32;archived&#32;after&#32;6&#32;months.</p></div></div><div class="buttons"><a href="/" class="c-btn c-btn-primary">Got It</a></div></div>
</script>
</div>
<div class="footer-parent">
<div by-zero="" class="footer rounded">
<div class="col">
<ul class="flat-vert hover">
<li class="flat-vert title">
about
</li>
<li>
<a class="choice" href="https://www.reddit.com/blog/">
blog
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://about.reddit.com/">
about
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/code/">
source code
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/advertising/">
advertise
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://about.reddit.com/careers/">
careers
</a>
</li>
</ul>
</div>
<div class="col">
<ul class="flat-vert hover">
<li class="flat-vert title">
help
</li>
<li>
<a class="choice" href="https://www.reddit.com/rules/">
site rules
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddithelp.com">
help center
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/wiki/">
wiki
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/wiki/reddiquette/">
reddiquette
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/help/healthycommunities/">
mod guidelines
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/contact/">
contact us
</a>
</li>
</ul>
</div>
<div class="col">
<ul class="flat-vert hover">
<li class="flat-vert title">
apps &amp; tools
</li>
<li>
<a class="choice" href="https://itunes.apple.com/us/app/reddit-the-official-app/id1064216828?mt=8">
Reddit for iPhone
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://play.google.com/store/apps/details?id=com.reddit.frontpage">
Reddit for Android
</a>
</li>
<li>
<span class="separator">
</span>
<a class="mweb-redirect-btn choice" href="#">
mobile website
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="https://www.reddit.com/buttons/">
buttons
</a>
</li>
</ul>
</div>
<div class="col">
<ul class="flat-vert hover">
<li class="flat-vert title">
&lt;3
</li>
<li>
<a class="buygold choice" href="https://www.reddit.com/gold/about/">
reddit gold
</a>
</li>
<li>
<span class="separator">
</span>
<a class="choice" href="http://redditgifts.com">
redditgifts
</a>
</li>
</ul>
</div>
</div>
<p class="bottommenu">
Use of this site constitutes acceptance of our
<a href="https://www.reddit.com/help/useragreement">
User Agreement
</a>
and
<a href="https://www.reddit.com/help/privacypolicy">
Privacy Policy
</a>
. © 2017 reddit inc. All rights reserved.
</p>
<p class="bottommenu">
REDDIT and the ALIEN Logo are registered trademarks of reddit inc.
</p>
</div>
<script>
var BETA_HOST = 'beta.reddit.com'; if (location.host === BETA_HOST) { r.config.https_endpoint = 'https://' + BETA_HOST; }
</script>
<script id="login-popup" type="text/template">
<h3 id="cover-msg" class="modal-title">You need to login to do that.</h3><div id="login"><div class="split-panel"><div class="split-panel-section split-panel-divider"><h4 class="modal-title">create a new account</h4><form id="register-form" method="post" action="https://www.reddit.com/post/reg" class="form-v2"><input type="hidden" name="op" value="reg"><div class="c-form-group "><label for="user_reg" class="screenreader-only">username:</label><input value="" name="user" id="user_reg" class="c-form-control" type="text" maxlength="20" tabindex="2" placeholder="choose a username" data-validate-url="/api/check_username.json" data-validate-min="3" autocomplete="off" ><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="passwd_reg" class="screenreader-only">password:</label><input id="passwd_reg" class="c-form-control" name="passwd" type="password" tabindex="2" placeholder="password" data-validate-url='/api/check_password.json'><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="passwd2_reg" class="screenreader-only">verify password:</label><input name="passwd2" id="passwd2_reg" class="c-form-control" type="password" tabindex="2" placeholder="verify password"><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="email_reg" class="screenreader-only">email: &nbsp;<i>(optional)</i></label><input value="" name="email" id="email_reg" class="c-form-control" type="text" tabindex="2" placeholder="email" data-validate-url="/api/check_email.json" data-validate-on="change blur"><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-checkbox"><input type="checkbox" name="rem" id="rem_reg" tabindex="2"><label for="rem_reg">remember me</label></div><input type="hidden" name="digest_subscribe" id="digest_subscribe" value="true"><div class="spacer"><div class="c-form-group g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC"></div><span class="error BAD_CAPTCHA field-captcha" style="display:none"></span></div><div class="c-clearfix c-submit-group"><span class="c-form-throbber"></span><button type="submit" class="c-btn c-btn-primary c-pull-right" tabindex="2">sign up</button></div><div><div class="c-alert c-alert-danger"></div><span class="error RATELIMIT field-ratelimit" style="display:none"></span><span class="error RATELIMIT field-vdelay" style="display:none"></span></div></form></div><div class="split-panel-section" id="login-panel"><h4 class="modal-title">log in</h4><form id="login-form" method="post" action="https://www.reddit.com/post/login" class="form-v2"><input type="hidden" name="op" value="login"><div class="c-form-group "><label for="user_login" class="screenreader-only">username:</label><input value="" name="user" id="user_login" class="c-form-control" type="text" maxlength="20" tabindex="3" placeholder="username" ></div><div class="c-form-group "><label for="passwd_login" class="screenreader-only">password:</label><input id="passwd_login" class="c-form-control" name="passwd" type="password" tabindex="3" placeholder="password" ><div class="c-form-control-feedback-wrapper "><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-checkbox"><input type="checkbox" name="rem" id="rem_login" tabindex="3"><label for="rem_login">remember me</label><a href="/password" class="c-pull-right">reset password</a></div><div class="spacer"><div class="c-form-group g-recaptcha" data-sitekey="6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC"></div><span class="error BAD_CAPTCHA field-captcha" style="display:none"></span></div><div class="c-clearfix c-submit-group"><span class="c-form-throbber"></span><button type="submit" class="c-btn c-btn-primary c-pull-right" tabindex="3">log in</button></div><div><div class="c-alert c-alert-danger"></div></div></form></div></div><p class="login-disclaimer">By signing up, you agree to our&#32;<a href="https://www.reddit.com/help/useragreement/" >Terms</a>&#32;and that you have read our&#32;<a href="https://www.reddit.com/help/privacypolicy/" >Privacy Policy</a>&#32;and&#32;<a href="https://www.reddit.com/help/contentpolicy/" >Content Policy</a>.</p></div>
</script>
<script id="lang-popup" type="text/template">
<form action="https://www.reddit.com/post/unlogged_options" method="post" class="pretty-form short-text"><input type="hidden" name="uh" value="" /><table class="content preftable"><tr><th>interface language</th><td class="prefright"><select id="lang" name="lang"><option selected='selected' value="en">English [en]</option><option value="af">Afrikaans [af] (*)</option><option value="ar">العربية [ar] (*)</option><option value="be">Беларуская мова [be] (*)</option><option value="bg">български език [bg]</option><option value="bn-IN">বাংলা [bn-IN] (*)</option><option value="bn-bd">বাংলা [bn-bd] (*)</option><option value="bs">Bosanski [bs] (*)</option><option value="ca">català [ca]</option><option value="cs">česky [cs]</option><option value="cy">Cymraeg [cy] (*)</option><option value="da">dansk [da]</option><option value="de">Deutsch [de]</option><option value="el">Ελληνικά [el]</option><option value="en-au">English (Australia) [en-au]</option><option value="en-ca">English (Canadian) [en-ca]</option><option value="en-gb">English (Great Britain) [en-gb]</option><option value="en-us">English [en-us]</option><option value="eo">Esperanto [eo] (*)</option><option value="es">español [es]</option><option value="es-ar">español [es-ar]</option><option value="es-cl">español [es-cl]</option><option value="es-mx">Español [es-mx]</option><option value="et">eesti keel [et] (*)</option><option value="eu">Euskara [eu]</option><option value="fa">فارسی [fa]</option><option value="fi">suomi [fi]</option><option value="fil">Filipino [fil] (*)</option><option value="fr">français [fr]</option><option value="fr-ca">Français [fr-ca]</option><option value="fy-NL">Frysk [fy-NL] (*)</option><option value="ga-ie">Gaeilge [ga-ie] (*)</option><option value="gd">Gàidhlig [gd]</option><option value="gl">Galego [gl] (*)</option><option value="he">עברית [he] (*)</option><option value="hi">मानक हिन्दी [hi] (*)</option><option value="hr">hrvatski [hr]</option><option value="hu">Magyar [hu]</option><option value="hy">Հայերեն լեզու [hy]</option><option value="id">Bahasa Indonesia [id] (*)</option><option value="is">íslenska [is]</option><option value="it">italiano (Italy) [it]</option><option value="ja">日本語 [ja]</option><option value="kn_IN">ಕನ್ನಡ [kn_IN]</option><option value="ko">한국어 [ko]</option><option value="la">Latin [la] (*)</option><option value="leet">1337 [leet]</option><option value="lol">LOL [lol]</option><option value="lt">lietuvių kalba [lt] (*)</option><option value="lv">latviešu valoda [lv]</option><option value="ms">Bahasa Melayu [ms] (*)</option><option value="mt-MT">Malti [mt-MT]</option><option value="nl">Nederlands [nl]</option><option value="nn">Nynorsk [nn]</option><option value="no">Norsk [no]</option><option value="pir">Arrrrrrrr! [pir] (*)</option><option value="pl">polski [pl]</option><option value="pt">português [pt] (*)</option><option value="pt-pt">português [pt-pt]</option><option value="pt_BR">português brasileiro [pt_BR]</option><option value="ro">română [ro]</option><option value="ru">русский [ru]</option><option value="sk">slovenčina [sk]</option><option value="sl">slovenščina [sl] (*)</option><option value="sr">српски језик [sr]</option><option value="sr-la">Srpski [sr-la]</option><option value="sv">Svenska [sv]</option><option value="ta">தமிழ் [ta]</option><option value="th">ภาษาไทย [th]</option><option value="tr">Türkçe [tr]</option><option value="uk">українська мова [uk]</option><option value="vi">Tiếng Việt [vi]</option><option value="zh">中文 [zh]</option><option value="zh-cn">简化字 [zh-cn]</option></select>&#32;<span class="details hover">(*) incomplete &#32;<a href="https://www.reddit.com/r/i18n/wiki/getting_started">volunteer to translate</a></span></td></tr><tr><td><input type="submit" class="btn" value="save options"/></td></tr></table></form>
</script>
<img id="hsts_pixel" src="//reddit.com/static/pixel.png"/>
<p class="debuginfo">
<span class="icon">
π
</span>
<span class="content">
Rendered by PID 58317 on app-175 at 2017-10-29 22:05:08.944544+00:00 running 2c9616a country code: US.
</span>
</p>
<script src="//www.redditstatic.com/reddit.en.WLBZDlZ_bCY.js" type="text/javascript">
</script>
<script src="//www.redditstatic.com/author-tooltip.9XC7_8MXyJ0.js" type="text/javascript">
</script>
<script>
(function() { var ads = window.__adslots = window.__adslots || []; window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; function indexGoogleTagSlots(googSlots) { return googSlots.reduce(function(o, slot) { var slotID = slot.getSlotElementId(); o[slotID] = slot; return o; }, {}); } var gads = document.createElement('script'); gads.async = true; gads.type = 'text/javascript'; var useSSL = 'https:' == document.location.protocol; gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js'; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(gads, node); googletag.cmd.push(function() { googletag.pubads().disableInitialLoad(); googletag.pubads().setSafeFrameConfig({ allowOverlayExpansion: false, allowPushExpansion: false, sandbox: !(r.utils.testAcceptableAds() && /firefox/i.test(navigator.userAgent)), }); googletag.enableServices(); }); var percentage = 0.05; var usePrebid = window._usePrebid = Math.random()<= percentage || /.*prebid=1.*/.test(location.search || ''); if (usePrebid) { /* prebid */ window.pbjs = window.pbjs || {}; pbjs.que = pbjs.que || []; pbjs.que.push(function() { pbjs.setConfig({ priceGranularity: { buckets: [{ min: 0, max: 3, increment: 0.01, }, { min: 3, max: 8, increment: 0.05, }, { min: 8, max: 20, increment: 0.5, }, { min: 20, max: 35, increment: 1, }], }, }); }); var pb = document.createElement('script'); pb.type = 'text/javascript'; pb.async = true; pb.src = "//www.redditstatic.com/js/prebid.js"; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(pb, s); } else { /* amazon a9 ads */ !function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q('i',arguments)},fetchBids:function(){q('f',arguments)},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}('apstag',window,document,'script','//c.amazon-adsystem.com/aax2/apstag.js'); } r.hooks.get('reddit').register(function() { var category = ""; if (!usePrebid) { apstag.init({ pubID: r.utils.testAcceptableAds() ? '3570' : '3379', adServer: 'googletag', bidTimeout: 2e3, params: { position: 'sidebar', section: category, sis_sitesection: ['reddit.com', category].filter(function(x) { return x; }).join(':'), subreddit: r.config.post_site, }, }); } googletag.cmd.push(function() { var adSlots = googletag.pubads().getSlots(); var headerBidCallback = function() { var callbacks = _.pluck(ads, 'callback'); _.invoke(callbacks, 'call'); }; if (usePrebid) { var bidsBackHandler = function() { if (pbjs.adserverRequestSent) return; pbjs.adserverRequestSent = true; headerBidCallback(); }; pbjs.que.push(function() { pbjs.addAdUnits(ads.map(function(ad) { return { code: ad.slotID, sizes: ad.sizes, bids: [{ bidder: 'appnexus', params: { placementId: '11905719', }, }], }; })); pbjs.requestBids({ bidsBackHandler: bidsBackHandler, }); }); setTimeout(bidsBackHandler, 700); } else { apstag.fetchBids({ slots: _.map(ads, function(ad) { return _.pick(ad, ['slotID', 'sizes']); }), timeout: 2e3, }, function(bids) { googletag.cmd.push(function() { var slotsById = indexGoogleTagSlots(adSlots); bids.forEach(function(bid) { var slot = slotsById[bid.slotID]; if (slot) { apstag.targetingKeys().forEach(function(key) { slot.setTargeting(key, bid[key]) }); } }); }); headerBidCallback(); }); } }); }); })();
</script>
</body>
</html>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>While this has some more verbose elements removed, we can see that there is some structure to the above:</p>
<ul>
<li>The thread title is within an <code><a></code> tag with the attribute <code>data-event-action="title"</code>.</li>
<li>The time since the thread was created is within a <code><time></code> tag with attribute <code>class="live-timestamp"</code>.</li>
<li>The subreddit is within an <code><a></code> tag with the attribute <code>class="subreddit hover may-blank"</code>.</li>
<li>The number of comments is within an <code><a></code> tag with the attribute data-event-action="comments"`.</li>
</ul>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Write-4-functions-to-extract-these-items-(one-function-for-each):-title,-time,-subreddit,-and-number-of-comments.¶">Write 4 functions to extract these items (one function for each): title, time, subreddit, and number of comments.¶<a class="anchor-link" href="#Write-4-functions-to-extract-these-items-(one-function-for-each):-title,-time,-subreddit,-and-number-of-comments.¶">¶</a></h2><p>Example</p>
<div class="highlight"><pre><span></span><span class="k">def</span> <span class="nf">extract_title_from_result</span><span class="p">(</span><span class="n">result</span><span class="p">):</span>
<span class="k">return</span> <span class="n">result</span><span class="o">.</span><span class="n">find</span> <span class="o">...</span>
</pre></div>
<h5 id="--Make-sure-these-functions-are-robust-and-can-handle-cases-where-the-data/field-may-not-be-available.">- Make sure these functions are robust and can handle cases where the data/field may not be available.<a class="anchor-link" href="#--Make-sure-these-functions-are-robust-and-can-handle-cases-where-the-data/field-may-not-be-available.">¶</a></h5><blockquote><ul>
<li>Remember to check if a field is empty or None for attempting to call methods on it</li>
<li>Remember to use try/except if you anticipate errors.</li>
</ul>
</blockquote>
<ul>
<li><strong>Test</strong> the functions on the results above and simple examples</li>
</ul>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [8]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1">## YOUR CODE HERE</span>
<span class="k">def</span> <span class="nf">getTitles</span><span class="p">(</span><span class="n">result</span><span class="p">):</span>
<span class="k">return</span> <span class="p">[</span><span class="s2">"no_title"</span> <span class="k">if</span> <span class="n">name</span><span class="o">.</span><span class="n">text</span> <span class="ow">is</span> <span class="kc">None</span> <span class="k">else</span> <span class="n">name</span><span class="o">.</span><span class="n">text</span> <span class="k">for</span> <span class="n">name</span> <span class="ow">in</span> <span class="n">result</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'a'</span><span class="p">,{</span><span class="s1">'data-event-action'</span><span class="p">:</span><span class="s1">'title'</span><span class="p">})]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [9]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getTimes</span><span class="p">(</span><span class="n">result</span><span class="p">):</span>
<span class="k">return</span> <span class="p">[</span><span class="n">time</span><span class="p">[</span><span class="s1">'datetime'</span><span class="p">]</span> <span class="k">for</span> <span class="n">time</span> <span class="ow">in</span> <span class="n">result</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'time'</span><span class="p">,</span> <span class="n">class_</span><span class="o">=</span><span class="s2">"live-timestamp"</span><span class="p">)]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [10]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getSubreddits</span><span class="p">(</span><span class="n">result</span><span class="p">):</span>
<span class="k">return</span> <span class="p">[</span><span class="n">sub</span><span class="o">.</span><span class="n">text</span><span class="o">.</span><span class="n">strip</span><span class="p">(</span><span class="s1">'r/'</span><span class="p">)</span> <span class="k">for</span> <span class="n">sub</span> <span class="ow">in</span> <span class="n">result</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'a'</span><span class="p">,</span> <span class="n">class_</span><span class="o">=</span><span class="s2">"subreddit"</span><span class="p">)]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [11]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getCommentCounts</span><span class="p">(</span><span class="n">result</span><span class="p">):</span>
<span class="n">allcom</span> <span class="o">=</span> <span class="n">result</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'a'</span><span class="p">,{</span><span class="s1">'data-event-action'</span><span class="p">:</span><span class="s1">'comments'</span><span class="p">})</span>
<span class="n">comms</span><span class="o">=</span><span class="p">[]</span>
<span class="k">for</span> <span class="n">comment</span> <span class="ow">in</span> <span class="n">allcom</span><span class="p">:</span>
<span class="n">regex</span> <span class="o">=</span> <span class="sa">r</span><span class="s2">"\d+"</span>
<span class="n">match</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">search</span><span class="p">(</span><span class="n">regex</span><span class="p">,</span> <span class="n">comment</span><span class="o">.</span><span class="n">text</span><span class="p">)</span>
<span class="k">if</span> <span class="n">match</span><span class="p">:</span>
<span class="n">comms</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">match</span><span class="o">.</span><span class="n">group</span><span class="p">())</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">comms</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s1">'0'</span><span class="p">)</span>
<span class="c1">#if comment.text == "comment":</span>
<span class="c1"># comms.append(0)</span>
<span class="c1">#else:</span>
<span class="c1"># comms.append(int(comment.text.split()[0]))</span>
<span class="k">return</span> <span class="n">comms</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [12]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">getTitles</span><span class="p">(</span><span class="n">b</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[12]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>['YouTube user demonstrating how Facebook listens to conversations to serve ads',
"My friend's Halloween costume:",
'Friend who lost his leg to cancer got creative for Halloween',
"TIL that when the 24-7-365 restaurant Denny's decided to close for Christmas in 1988 many stores realized that they didn’t have any keys, or even locks, since they never used them. 700 of the 1221 restaurants needed to get new locks installed for the holiday.",
'Self-reflection',
'I dressed up as a Canadian icon for Halloween last night.',
'This pic alone is worth the $9 I paid for this costume.',
'Enjoying the Show',
'Worst fire escape ever',
'a fly and a guy...',
'Cthulhu costume I made for my kid this year',
'Putting a camera under a faucet opens up a new dimension (xpost from /r/blackmagicfuckery)',
"A Polish immigrant went to the DMV to apply for a driver's license.",
"I'm sure Trump's administration won't add to this total.",
'hmmm',
'Lyndon B. Johnson takes the oath of office aboard Air Force One at Love Field in Dallas following the assassination of JFK',
'I can use big unnecessary big words',
'"Let\'s make that a bit more difficult for you, shall we?"',
'You awaken, clothes smoking, in a ruined bunker in 1945 with a box containing a 2015-era laptop with Photoshop and Premiere Pro installed, a scanner, photo printer, analog-to-USB input converter and more than enough printer ink and card photo stock. How do you best start screwing with history?',
'Not a bad way to fall',
"Part of a comment thread I saw on a picture of someone's dog bite wound.",
'Wall Jumping',
'Equality',
'We went as The Sims!',
"Woman's ID stolen 15 times after Equifax breach"]</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [13]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">getTimes</span><span class="p">(</span><span class="n">b</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[13]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>['2017-10-29T18:21:56+00:00',
'2017-10-29T19:36:22+00:00',
'2017-10-29T16:33:08+00:00',
'2017-10-29T16:03:13+00:00',
'2017-10-29T16:00:46+00:00',
'2017-10-29T16:28:23+00:00',
'2017-10-29T15:34:36+00:00',
'2017-10-29T16:31:44+00:00',
'2017-10-29T19:04:03+00:00',
'2017-10-29T15:54:25+00:00',
'2017-10-29T17:22:02+00:00',
'2017-10-29T14:57:03+00:00',
'2017-10-29T15:06:41+00:00',
'2017-10-29T14:27:57+00:00',
'2017-10-29T15:43:14+00:00',
'2017-10-29T15:31:10+00:00',
'2017-10-29T16:46:05+00:00',
'2017-10-29T15:39:15+00:00',
'2017-10-29T15:41:57+00:00',
'2017-10-29T13:51:03+00:00',
'2017-10-29T17:53:07+00:00',
'2017-10-29T14:42:57+00:00',
'2017-10-29T13:48:22+00:00',
'2017-10-29T14:35:52+00:00',
'2017-10-29T12:52:32+00:00']</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [14]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">getSubreddits</span><span class="p">(</span><span class="n">b</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[14]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>['videos',
'funny',
'sports',
'todayilearned',
'trippinthroughtime',
'canada',
'aww',
'Eyebleach',
'evilbuildings',
'comics',
'DIY',
'oddlysatisfying',
'Jokes',
'PoliticalHumo',
'hmmm',
'ColorizedHistory',
'iamverysmart',
'gifs',
'AskReddit',
'ChildrenFallingOve',
'quityourbullshit',
'SweatyPalms',
'BlackPeopleTwitte',
'gaming',
'news']</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [15]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">getCommentCounts</span><span class="p">(</span><span class="n">b</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[15]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>['2516',
'301',
'1011',
'785',
'435',
'369',
'516',
'84',
'102',
'56',
'177',
'465',
'649',
'2194',
'75',
'714',
'622',
'125',
'1581',
'250',
'237',
'306',
'247',
'762',
'2891']</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>Now, to scale up our scraping, we need to accumulate more results.</p>
<p>First, look at the source of a Reddit.com page: (<a href="https://www.reddit.com/">https://www.reddit.com/</a>).
Try manually changing the page by clicking the 'next' button on the bottom. Look at how the url changes.</p>
<p>After leaving the Reddit homepage, the URLs should look something like this:</p>
<pre><code>https://www.reddit.com/?count=25&after=t3_787ptc</code></pre>
<p>The URL here has two query parameters</p>
<ul>
<li>count is the result number that the page starts with</li>
<li>after is the unique id of the last result on the <em>previous</em> page</li>
</ul>
<p>In order to scrape lots of pages from Reddit, we'll have to change these parameters every time we make a new request so that we're not just scraping the same page over and over again. Incrementing the count by 25 every time will be easy, but the bizarre code after <code>after</code> is a bit trickier.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>To start off, let's look at a block of HTML from a Reddit page to see how we might solve this problem:</p>
<div class="highlight"><pre><span></span><span class="p"><</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">" thing id-t3_788tye odd gilded link "</span> <span class="na">data-author</span><span class="o">=</span><span class="s">"LordSneaux"</span> <span class="na">data-author-fullname</span><span class="o">=</span><span class="s">"t2_j3pty"</span> <span class="na">data-comments-count</span><span class="o">=</span><span class="s">"1548"</span> <span class="na">data-context</span><span class="o">=</span><span class="s">"listing"</span> <span class="na">data-domain</span><span class="o">=</span><span class="s">"v.redd.it"</span> <span class="na">data-fullname</span><span class="o">=</span><span class="s">"t3_788tye"</span> <span class="na">data-kind</span><span class="o">=</span><span class="s">"video"</span> <span class="na">data-num-crossposts</span><span class="o">=</span><span class="s">"0"</span> <span class="na">data-permalink</span><span class="o">=</span><span class="s">"/r/funny/comments/788tye/not_all_heroes_wear_capes/"</span> <span class="na">data-rank</span><span class="o">=</span><span class="s">"25"</span> <span class="na">data-score</span><span class="o">=</span><span class="s">"51468"</span> <span class="na">data-subreddit</span><span class="o">=</span><span class="s">"funny"</span> <span class="na">data-subreddit-fullname</span><span class="o">=</span><span class="s">"t5_2qh33"</span> <span class="na">data-timestamp</span><span class="o">=</span><span class="s">"1508775581000"</span> <span class="na">data-type</span><span class="o">=</span><span class="s">"link"</span> <span class="na">data-url</span><span class="o">=</span><span class="s">"https://v.redd.it/ush0rh2tultz"</span> <span class="na">data-whitelist-status</span><span class="o">=</span><span class="s">"all_ads"</span> <span class="na">id</span><span class="o">=</span><span class="s">"thing_t3_788tye"</span> <span class="na">onclick</span><span class="o">=</span><span class="s">"click_thing(this)"</span><span class="p">></span>
<span class="p"><</span><span class="nt">p</span> <span class="na">class</span><span class="o">=</span><span class="s">"parent"</span><span class="p">></span>
<span class="p"></</span><span class="nt">p</span><span class="p">></span>
<span class="p"><</span><span class="nt">span</span> <span class="na">class</span><span class="o">=</span><span class="s">"rank"</span><span class="p">></span>
25
<span class="p"></</span><span class="nt">span</span><span class="p">></span>
<span class="p"><</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">"midcol unvoted"</span><span class="p">></span>
<span class="p"><</span><span class="nt">div</span> <span class="na">aria-label</span><span class="o">=</span><span class="s">"upvote"</span> <span class="na">class</span><span class="o">=</span><span class="s">"arrow up login-required access-required"</span> <span class="na">data-event-action</span><span class="o">=</span><span class="s">"upvote"</span> <span class="na">role</span><span class="o">=</span><span class="s">"button"</span> <span class="na">tabindex</span><span class="o">=</span><span class="s">"0"</span><span class="p">></span>
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
<span class="p"><</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">"score dislikes"</span> <span class="na">title</span><span class="o">=</span><span class="s">"53288"</span><span class="p">></span>
53.3k
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
<span class="p"><</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">"score unvoted"</span> <span class="na">title</span><span class="o">=</span><span class="s">"53289"</span><span class="p">></span>
53.3k
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
<span class="p"><</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">"score likes"</span> <span class="na">title</span><span class="o">=</span><span class="s">"53290"</span><span class="p">></span>
53.3k
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
<span class="p"><</span><span class="nt">div</span> <span class="na">aria-label</span><span class="o">=</span><span class="s">"downvote"</span> <span class="na">class</span><span class="o">=</span><span class="s">"arrow down login-required access-required"</span> <span class="na">data-event-action</span><span class="o">=</span><span class="s">"downvote"</span> <span class="na">role</span><span class="o">=</span><span class="s">"button"</span> <span class="na">tabindex</span><span class="o">=</span><span class="s">"0"</span><span class="p">></span>
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
</pre></div>
<p>Notice that within the <code>div</code> tag there is an attribute called <code>id</code> and it is set to <code>"thing_t3_788tye"</code>. By finding the last ID on your scraped page, you can tell your <em>next</em> request where to start (pass everything after "thing_").</p>
<p>For more info on this, you can take a look at the <a href="https://github.com/reddit/reddit/wiki/JSON">Reddit API docs</a></p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Write-one-more-function-that-finds-the-last-id-on-the-page,-and-stores-it.">Write one more function that finds the last <code>id</code> on the page, and stores it.<a class="anchor-link" href="#Write-one-more-function-that-finds-the-last-id-on-the-page,-and-stores-it.">¶</a></h2>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [46]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getLastID</span><span class="p">(</span><span class="n">results</span><span class="p">):</span>
<span class="n">ids</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'div'</span><span class="p">,{</span><span class="s1">'data-context'</span><span class="p">:</span><span class="s1">'listing'</span><span class="p">})</span>
<span class="n">lastid</span> <span class="o">=</span> <span class="mi">0</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">lastid</span> <span class="o">=</span> <span class="n">ids</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">][</span><span class="s1">'data-fullname'</span><span class="p">]</span>
<span class="k">except</span> <span class="ne">IndexError</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="n">ids</span><span class="p">)</span>
<span class="k">return</span> <span class="n">lastid</span>
<span class="c1">#return results.findAll('div',{'class':['thing','link']})[-1]['id'][6:]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="(Optional)-Collect-more-information">(Optional) Collect more information<a class="anchor-link" href="#(Optional)-Collect-more-information">¶</a></h2><p>While we only require you to collect four features, there may be other info that you can find on the results page that might be useful. Feel free to write more functions so that you have more interesting and useful data.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [40]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getDomains</span><span class="p">(</span><span class="n">results</span><span class="p">):</span>
<span class="n">allDomains</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'div'</span><span class="p">,{</span><span class="s1">'data-context'</span><span class="p">:</span><span class="s1">'listing'</span><span class="p">})</span>
<span class="n">domains</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">for</span> <span class="n">dmn</span> <span class="ow">in</span> <span class="n">allDomains</span><span class="p">:</span>
<span class="k">try</span><span class="p">:</span>
<span class="k">if</span> <span class="n">dmn</span><span class="p">[</span><span class="s1">'data-domain'</span><span class="p">][</span><span class="mi">0</span><span class="p">:</span><span class="mi">4</span><span class="p">]</span><span class="o">==</span><span class="s1">'self'</span><span class="p">:</span>
<span class="n">domains</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s1">'reddit.com'</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">domains</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">dmn</span><span class="p">[</span><span class="s1">'data-domain'</span><span class="p">])</span>
<span class="k">except</span><span class="p">:</span>
<span class="n">domains</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s1">'N/A'</span><span class="p">)</span>
<span class="k">return</span> <span class="n">domains</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [18]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getLinkFlairs</span><span class="p">(</span><span class="n">results</span><span class="p">):</span>
<span class="n">all_Links</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'p'</span><span class="p">,</span><span class="n">class_</span><span class="o">=</span><span class="s1">'title'</span><span class="p">)</span>
<span class="k">return</span> <span class="p">[</span><span class="s2">"None"</span> <span class="k">if</span> <span class="n">link</span><span class="o">.</span><span class="n">find</span><span class="p">(</span><span class="s1">'span'</span><span class="p">,</span><span class="n">class_</span><span class="o">=</span><span class="s1">'linkflairlabel'</span><span class="p">)</span> <span class="ow">is</span> <span class="kc">None</span> <span class="k">else</span> <span class="n">link</span><span class="o">.</span><span class="n">find</span><span class="p">(</span><span class="s1">'span'</span><span class="p">,</span><span class="n">class_</span><span class="o">=</span><span class="s1">'linkflairlabel'</span><span class="p">)</span><span class="o">.</span><span class="n">text</span> <span class="k">for</span> <span class="n">link</span> <span class="ow">in</span> <span class="n">all_Links</span><span class="p">]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [29]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getLikes</span><span class="p">(</span><span class="n">results</span><span class="p">):</span>
<span class="n">blah</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'div'</span><span class="p">,{</span><span class="s1">'class'</span><span class="p">:</span><span class="s1">'score likes'</span><span class="p">})</span>
<span class="n">likes</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">try</span><span class="p">:</span>
<span class="k">for</span> <span class="n">link</span> <span class="ow">in</span> <span class="n">blah</span><span class="p">:</span>
<span class="k">if</span> <span class="s1">'title'</span> <span class="ow">in</span> <span class="n">link</span><span class="p">:</span>
<span class="n">likes</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">link</span><span class="p">[</span><span class="s1">'title'</span><span class="p">])</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">likes</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s1">'0'</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">KeyError</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="n">link</span><span class="p">)</span>
<span class="k">return</span> <span class="n">likes</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [20]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">getDislikes</span><span class="p">(</span><span class="n">results</span><span class="p">):</span>
<span class="k">return</span> <span class="p">[</span><span class="n">link</span><span class="p">[</span><span class="s1">'title'</span><span class="p">]</span> <span class="k">if</span> <span class="ow">not</span> <span class="kc">None</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">link</span> <span class="ow">in</span> <span class="n">results</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'div'</span><span class="p">,</span><span class="n">class_</span><span class="o">=</span><span class="s1">'score dislikes'</span><span class="p">)]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [21]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">getDislikes</span><span class="p">(</span><span class="n">b</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[21]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>['19477',
'6243',
'61280',
'35514',
'23089',
'10894',
'90179',
'12913',
'4898',
'12164',
'7796',
'35485',
'31462',
'22855',
'10557',
'9872',
'6299',
'8928',
'12309',
'21852',
'4173',
'11531',
'22575',
'41166',
'45935']</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Now,-let's-put-it-all-together.">Now, let's put it all together.<a class="anchor-link" href="#Now,-let's-put-it-all-together.">¶</a></h2><p>Use the functions you wrote above to parse out the 4 fields - title, time, subreddit, and number of comments. Create a dataframe from the results with those 4 columns.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [71]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">url_template</span> <span class="o">=</span> <span class="s2">"http://www.reddit.com/r/all/?count=</span><span class="si">{}</span><span class="s2">&after=</span><span class="si">{}</span><span class="s2">"</span>
<span class="n">max_results</span> <span class="o">=</span> <span class="mi">50000</span> <span class="c1"># can set this to other values (5000) to generate quicker/more results. </span>
<span class="n">last_results</span> <span class="o">=</span> <span class="mi">15000</span>
<span class="n">results</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">()</span>
<span class="k">for</span> <span class="n">start</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="n">max_results</span><span class="p">,</span> <span class="mi">25</span><span class="p">):</span>
<span class="c1">#for start in range(5000,last_results,25):</span>
<span class="c1"># Grab the results from the request</span>
<span class="k">if</span> <span class="n">start</span><span class="o">==</span><span class="mi">0</span><span class="p">:</span> <span class="c1"># use the main page at first</span>
<span class="n">url</span> <span class="o">=</span> <span class="s1">'https://www.reddit.com/r/all'</span>
<span class="n">lastID</span> <span class="o">=</span> <span class="s1">'00'</span>
<span class="k">else</span><span class="p">:</span> <span class="c1"># add the start number and last post ID</span>
<span class="k">if</span> <span class="n">lastID</span> <span class="o">!=</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">url</span> <span class="o">=</span> <span class="n">url_template</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">start</span><span class="p">,</span><span class="n">lastID</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">url</span> <span class="o">=</span> <span class="s1">'http://www.reddit.com/r/all/?count=</span><span class="si">{}</span><span class="s1">'</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">start</span><span class="p">)</span>
<span class="n">html</span> <span class="o">=</span> <span class="n">requests</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="n">url</span><span class="p">,</span> <span class="n">headers</span><span class="o">=</span><span class="p">{</span><span class="s2">"User-agent"</span><span class="p">:</span> <span class="nb">str</span><span class="p">(</span><span class="n">uuid</span><span class="p">())})</span>
<span class="c1"># if the status code isn't "go ahead", wait a few seconds and try again</span>
<span class="k">while</span> <span class="n">html</span><span class="o">.</span><span class="n">status_code</span> <span class="o">!=</span> <span class="mi">200</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="n">html</span><span class="o">.</span><span class="n">status_code</span><span class="p">)</span>
<span class="n">sleep</span><span class="p">(</span><span class="mi">3</span><span class="p">)</span>
<span class="n">html</span> <span class="o">=</span> <span class="n">requests</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="n">url</span><span class="p">,</span> <span class="n">headers</span><span class="o">=</span><span class="p">{</span><span class="s2">"User-agent"</span><span class="p">:</span> <span class="nb">str</span><span class="p">(</span><span class="n">uuid</span><span class="p">())})</span>
<span class="c1"># make easy variable for HTML</span>
<span class="n">fullpage</span> <span class="o">=</span> <span class="n">html</span><span class="o">.</span><span class="n">text</span>
<span class="n">pagesoup</span> <span class="o">=</span> <span class="n">BeautifulSoup</span><span class="p">(</span><span class="n">fullpage</span><span class="p">,</span> <span class="s1">'lxml'</span><span class="p">)</span>
<span class="c1"># function calls</span>
<span class="n">titles</span> <span class="o">=</span> <span class="n">getTitles</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="n">times</span> <span class="o">=</span> <span class="n">getTimes</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="n">subs</span> <span class="o">=</span> <span class="n">getSubreddits</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="n">comments</span> <span class="o">=</span> <span class="n">getCommentCounts</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="n">domains</span> <span class="o">=</span> <span class="n">getDomains</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="n">flairs</span> <span class="o">=</span> <span class="n">getLinkFlairs</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="c1">#try:</span>
<span class="n">likes</span> <span class="o">=</span> <span class="n">getLikes</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="c1">#dislikes = getDislikes(pagesoup)</span>
<span class="c1">#except:</span>
<span class="c1"># print(start, lastID, len(likes))</span>
<span class="n">likes</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">asarray</span><span class="p">(</span><span class="n">likes</span><span class="p">)</span>
<span class="c1">#dislikes = np.asarray(dislikes)</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">lastID</span> <span class="o">=</span> <span class="n">getLastID</span><span class="p">(</span><span class="n">pagesoup</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">KeyError</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="n">pagesoup</span><span class="o">.</span><span class="n">findAll</span><span class="p">(</span><span class="s1">'div'</span><span class="p">,{</span><span class="s1">'data-context'</span><span class="p">:</span><span class="s1">'listing'</span><span class="p">}))</span>
<span class="c1"># create DF for page results</span>
<span class="c1">#print(pagesoup)</span>
<span class="k">try</span><span class="p">:</span>
<span class="c1">#pageDF = pd.DataFrame({'title':titles, 'posttime':times, 'subreddit':subs, 'comments':comments, 'domain':domains, 'link_flair':flairs})</span>
<span class="n">pageDF</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">({</span><span class="s1">'title'</span><span class="p">:</span><span class="n">titles</span><span class="p">,</span> <span class="s1">'posttime'</span><span class="p">:</span><span class="n">times</span><span class="p">,</span> <span class="s1">'subreddit'</span><span class="p">:</span><span class="n">subs</span><span class="p">,</span> <span class="s1">'comments'</span><span class="p">:</span><span class="n">comments</span><span class="p">,</span> <span class="s1">'domain'</span><span class="p">:</span><span class="n">domains</span><span class="p">,</span> <span class="s1">'link_flair'</span><span class="p">:</span><span class="n">flairs</span><span class="p">,</span> <span class="s1">'likes'</span><span class="p">:</span><span class="n">likes</span><span class="p">})</span>
<span class="k">except</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">titles</span><span class="p">),</span> <span class="nb">len</span><span class="p">(</span><span class="n">times</span><span class="p">),</span> <span class="nb">len</span><span class="p">(</span><span class="n">subs</span><span class="p">),</span> <span class="nb">len</span><span class="p">(</span><span class="n">comments</span><span class="p">),</span> <span class="nb">len</span><span class="p">(</span><span class="n">domains</span><span class="p">),</span> <span class="nb">len</span><span class="p">(</span><span class="n">flairs</span><span class="p">),</span> <span class="nb">len</span><span class="p">(</span><span class="n">likes</span><span class="p">))</span>
<span class="c1"># Append to the full set of results</span>
<span class="n">results</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">results</span><span class="p">,</span><span class="n">pageDF</span><span class="p">],</span><span class="n">ignore_index</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="k">if</span> <span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">results</span><span class="o">.</span><span class="n">index</span><span class="p">)</span> <span class="o">%</span> <span class="mi">2500</span> <span class="o">==</span> <span class="mi">0</span><span class="p">)</span> <span class="o">|</span> <span class="p">(</span><span class="n">start</span> <span class="o">==</span> <span class="n">max_results</span><span class="o">-</span><span class="mi">25</span><span class="p">):</span>
<span class="n">results</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">drop_duplicates</span><span class="p">()</span>
<span class="n">results</span><span class="o">.</span><span class="n">to_csv</span><span class="p">(</span><span class="s1">'reddit_scrape11.csv'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>[]
[]
[]
[]
[]
[]
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [64]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">results</span><span class="o">.</span><span class="n">shape</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[64]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>(14739, 7)</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Save-your-results-as-a-CSV">Save your results as a CSV<a class="anchor-link" href="#Save-your-results-as-a-CSV">¶</a></h3><p>You may do this regularly while scraping data as well, so that if your scraper stops of your computer crashes, you don't lose all your data.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [ ]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># Export to csv</span>
<span class="n">results</span><span class="o">.</span><span class="n">to_csv</span><span class="p">(</span><span class="s1">'reddit_scrape00.csv'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Predicting-comments-using-Random-Forests-+-Another-Classifier">Predicting comments using Random Forests + Another Classifier<a class="anchor-link" href="#Predicting-comments-using-Random-Forests-+-Another-Classifier">¶</a></h2>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Load-in-the-the-data-of-scraped-results">Load in the the data of scraped results<a class="anchor-link" href="#Load-in-the-the-data-of-scraped-results">¶</a></h4>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [2]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">folder</span> <span class="o">=</span> <span class="s1">'/Users/jamesdenney/Documents/GAGitRepo/project-3/'</span>
<span class="n">csvname</span> <span class="o">=</span> <span class="s1">'reddit_scrape</span><span class="si">{}</span><span class="s1">.csv'</span>
<span class="c1"># test = folder + csvname.format(9) # to make sure the string concatenation and formatting works as intended</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [3]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># I have several files to import, all named reddit_scrape#.csv, thus the need for a formatted csvname string</span>
<span class="n">reddit_data</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">()</span>
<span class="k">for</span> <span class="n">ii</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span><span class="mi">12</span><span class="p">):</span>
<span class="n">filepath</span> <span class="o">=</span> <span class="n">folder</span><span class="o">+</span><span class="n">csvname</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">ii</span><span class="p">)</span>
<span class="n">segment</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">read_csv</span><span class="p">(</span><span class="n">filepath</span><span class="p">)</span>
<span class="n">reddit_data</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">reddit_data</span><span class="p">,</span><span class="n">segment</span><span class="p">],</span><span class="n">ignore_index</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [4]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">reddit_data</span><span class="o">.</span><span class="n">shape</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[4]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>(98962, 8)</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [5]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">reddit_data</span><span class="o">.</span><span class="n">dtypes</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[5]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>Unnamed: 0 int64
comments float64
domain object
likes float64
link_flair object
posttime object
subreddit object
title object
dtype: object</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [4]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># drop null values in each column where they appear</span>
<span class="n">reddit_data</span><span class="o">.</span><span class="n">dropna</span><span class="p">(</span><span class="n">subset</span><span class="o">=</span><span class="p">[</span><span class="s1">'likes'</span><span class="p">,</span><span class="s1">'link_flair'</span><span class="p">],</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [5]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">reddit_data</span><span class="o">.</span><span class="n">drop</span><span class="p">([</span><span class="s1">'Unnamed: 0'</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [6]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># reset dataframe indices to be 0 to N</span>
<span class="n">reddit_data</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">drop</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">reddit_data</span><span class="o">.</span><span class="n">head</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[6]:</div>
<div class="output_html rendered_html output_subarea output_execute_result">
<div>
<style>
.dataframe thead tr:only-child th {
text-align: right;
}
.dataframe thead th {
text-align: left;
}
.dataframe tbody tr th {
vertical-align: top;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>comments</th>
<th>domain</th>
<th>likes</th>
<th>link_flair</th>
<th>posttime</th>
<th>subreddit</th>
<th>title</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>2041.0</td>
<td>youtube.com</td>
<td>15797.0</td>
<td>None</td>
<td>2017-10-29T18:21:56+00:00</td>
<td>videos</td>
<td>YouTube user demonstrating how Facebook listen...</td>
</tr>
<tr>
<th>1</th>
<td>993.0</td>
<td>i.redd.it</td>
<td>60389.0</td>
<td>Picture/Video</td>
<td>2017-10-29T16:33:08+00:00</td>
<td>sports</td>
<td>Friend who lost his leg to cancer got creative...</td>
</tr>
<tr>
<th>2</th>
<td>748.0</td>
<td>mentalfloss.com</td>
<td>33962.0</td>
<td>None</td>
<td>2017-10-29T16:03:13+00:00</td>
<td>todayilearned</td>
<td>TIL that when the 24-7-365 restaurant Denny's ...</td>
</tr>
<tr>
<th>3</th>
<td>431.0</td>
<td>i.imgur.com</td>
<td>22562.0</td>
<td>None</td>
<td>2017-10-29T16:00:46+00:00</td>
<td>trippinthroughtime</td>
<td>Self-reflection</td>
</tr>
<tr>
<th>4</th>
<td>506.0</td>
<td>i.redd.it</td>
<td>88641.0</td>
<td>None</td>
<td>2017-10-29T15:34:36+00:00</td>
<td>aww</td>
<td>This pic alone is worth the $9 I paid for this...</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [92]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># count each column to see how many (should be zero) null values there are</span>
<span class="n">reddit_data</span><span class="o">.</span><span class="n">count</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[92]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>comments 98306
domain 98306
likes 98306
link_flair 98306
posttime 98306
subreddit 98306
title 98306
dtype: int64</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="We-want-to-predict-a-binary-variable---whether-the-number-of-comments-was-low-or-high.-Compute-the-median-number-of-comments-and-create-a-new-binary-variable-that-is-true-when-the-number-of-comments-is-high-(above-the-median)">We want to predict a binary variable - whether the number of comments was low or high. Compute the median number of comments and create a new binary variable that is true when the number of comments is high (above the median)<a class="anchor-link" href="#We-want-to-predict-a-binary-variable---whether-the-number-of-comments-was-low-or-high.-Compute-the-median-number-of-comments-and-create-a-new-binary-variable-that-is-true-when-the-number-of-comments-is-high-(above-the-median)">¶</a></h4><p>We could also perform Linear Regression (or any regression) to predict the number of comments here. Instead, we are going to convert this into a <em>binary</em> classification problem, by predicting two classes, HIGH vs LOW number of comments.</p>
<p>While performing regression may be better, performing classification may help remove some of the noise of the extremely popular threads. We don't <em>have</em> to choose the <code>median</code> as the splitting point - we could also split on the 75th percentile or any other reasonable breaking point.</p>
<p>In fact, the ideal scenario may be to predict many levels of comment numbers.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [7]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># calculate the median using method median() and create a 50th percentile column with binaries</span>
<span class="c1"># True/1 means the level is above the median; False/0 means the number is at/below the median</span>
<span class="n">commentMedian</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">median</span><span class="p">()</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'percentile50'</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span> <span class="o">></span> <span class="n">commentMedian</span><span class="p">)</span> <span class="o">*</span> <span class="mi">1</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [8]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">commentMedian</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[8]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>18.0</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [9]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># these columns are for future classification on the levels of comment numbers to be predicted</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'percentile90'</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span> <span class="o">></span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">quantile</span><span class="p">(</span><span class="mf">0.9</span><span class="p">))</span> <span class="o">*</span> <span class="mi">1</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'percentile75'</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span> <span class="o">></span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">quantile</span><span class="p">(</span><span class="mf">0.75</span><span class="p">))</span><span class="o">*</span> <span class="mi">1</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'percentile67'</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span> <span class="o">></span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">quantile</span><span class="p">(</span><span class="mf">0.66</span><span class="p">))</span><span class="o">*</span> <span class="mi">1</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'percentile33'</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span> <span class="o">></span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">quantile</span><span class="p">(</span><span class="mf">0.33</span><span class="p">))</span><span class="o">*</span> <span class="mi">1</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'lowest_25pct'</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span> <span class="o"><</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">quantile</span><span class="p">(</span><span class="mf">0.25</span><span class="p">))</span><span class="o">*</span> <span class="mi">1</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [10]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">reddit_data</span><span class="o">.</span><span class="n">comments</span><span class="o">.</span><span class="n">quantile</span><span class="p">(</span><span class="mf">0.9</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[10]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>184.0</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Thought-experiment:-What-is-the-baseline-accuracy-for-this-model?">Thought experiment: What is the baseline accuracy for this model?<a class="anchor-link" href="#Thought-experiment:-What-is-the-baseline-accuracy-for-this-model?">¶</a></h4>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>I don't really know what to think about this part. Should the baseline accuracy be considered a thought-upon guess?</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>Intuitively, what I believe is that a model predicting success of a Reddit post (on number of comments) ought to be better than a coin flip (i.e., accuracy above 50%). If the model does more poorly than that, it's hard to take it seriously as a model of potential post success. There are many factors that come into play when trying to predict the success of a post online: time of day/week, audience exposure, title descriptiveness or enticement, etc.</p>
<p>Upon further reflection, it's harder to simply say that a coin-flip model ought to be sufficient as a baseline. We know (or can find, anyway) the general traffic estimates for Reddit as a function of time. This is how one might expect a lower chance of success for a post started at 3 AM Eastern Time as opposed to other times during daylight or evening hours. In this way, we can bump that guess of a model's accuracy up above 50%, but to what level? That, really, is the question -- how far beyond a coin flip can we aim for a model to go? 60%? 70%? 80%? After all, humans aren't always consistent in their reactions.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Create-a-Random-Forest-model-to-predict-High/Low-number-of-comments-using-Sklearn.-Start-by-ONLY-using-the-subreddit-as-a-feature.">Create a Random Forest model to predict High/Low number of comments using Sklearn. Start by ONLY using the subreddit as a feature.<a class="anchor-link" href="#Create-a-Random-Forest-model-to-predict-High/Low-number-of-comments-using-Sklearn.-Start-by-ONLY-using-the-subreddit-as-a-feature.">¶</a></h4>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [11]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># import the modules needed, moving to the non-deprecated versions of cross_val_score and StratifiedKFold</span>
<span class="kn">from</span> <span class="nn">sklearn.model_selection</span> <span class="k">import</span> <span class="n">cross_val_score</span><span class="p">,</span> <span class="n">StratifiedKFold</span><span class="p">,</span> <span class="n">train_test_split</span>
<span class="kn">from</span> <span class="nn">sklearn.tree</span> <span class="k">import</span> <span class="n">DecisionTreeClassifier</span>
<span class="kn">from</span> <span class="nn">sklearn.ensemble</span> <span class="k">import</span> <span class="n">RandomForestClassifier</span>
<span class="kn">from</span> <span class="nn">sklearn.metrics</span> <span class="k">import</span> <span class="n">accuracy_score</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [12]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">crossval</span> <span class="o">=</span> <span class="n">StratifiedKFold</span><span class="p">(</span><span class="n">n_splits</span> <span class="o">=</span> <span class="mi">5</span><span class="p">,</span> <span class="n">shuffle</span> <span class="o">=</span> <span class="kc">True</span><span class="p">,</span> <span class="n">random_state</span> <span class="o">=</span> <span class="mi">6</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [13]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># use subreddit data to create dummy variables and median data to establish target variable</span>
<span class="n">X</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">get_dummies</span><span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">subreddit</span><span class="p">)</span>
<span class="n">y</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile50</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [14]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># create train/test data split, making sure to shuffle the data sufficiently</span>
<span class="n">X_trn</span><span class="p">,</span> <span class="n">X_tst</span><span class="p">,</span> <span class="n">y_trn</span><span class="p">,</span> <span class="n">y_tst</span> <span class="o">=</span> <span class="n">train_test_split</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="n">y</span><span class="p">,</span> <span class="n">test_size</span><span class="o">=</span><span class="mf">0.3</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">,</span> <span class="n">shuffle</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [15]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># create a random forest classifier with balanced classes, and score it based solely on subreddit</span>
<span class="n">classy</span> <span class="o">=</span> <span class="n">RandomForestClassifier</span><span class="p">(</span><span class="n">class_weight</span><span class="o">=</span><span class="s1">'balanced'</span><span class="p">,</span><span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">)</span>
<span class="n">classy</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">X_trn</span><span class="p">,</span><span class="n">y_trn</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[15]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>RandomForestClassifier(bootstrap=True, class_weight='balanced',
criterion='gini', max_depth=None, max_features='auto',
max_leaf_nodes=None, min_impurity_decrease=0.0,
min_impurity_split=None, min_samples_leaf=1,
min_samples_split=2, min_weight_fraction_leaf=0.0,
n_estimators=10, n_jobs=1, oob_score=False, random_state=6,
verbose=0, warm_start=False)</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [16]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">preds</span> <span class="o">=</span> <span class="n">classy</span><span class="o">.</span><span class="n">predict</span><span class="p">(</span><span class="n">X_tst</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [17]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># compute accuracy of the first, subreddit-only, RFC</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"Training Data Accuracy: "</span><span class="p">,</span> <span class="n">accuracy_score</span><span class="p">(</span><span class="n">y_trn</span><span class="p">,</span> <span class="n">classy</span><span class="o">.</span><span class="n">predict</span><span class="p">(</span><span class="n">X_trn</span><span class="p">)))</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">" Testing Data Accuracy: "</span><span class="p">,</span> <span class="n">accuracy_score</span><span class="p">(</span><span class="n">y_tst</span><span class="p">,</span> <span class="n">preds</span><span class="p">))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>Training Data Accuracy: 0.726073182783
Testing Data Accuracy: 0.715787332158
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [102]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># create a second random forest, without balanced classes, to score based on subreddit</span>
<span class="c1"># not sure of any particular reason to do it again with unbalanced classes, but it's worth thinking about</span>
<span class="n">unclassy</span> <span class="o">=</span> <span class="n">RandomForestClassifier</span><span class="p">()</span>
<span class="n">unscores</span> <span class="o">=</span> <span class="n">cross_val_score</span><span class="p">(</span><span class="n">unclassy</span><span class="p">,</span> <span class="n">X</span><span class="p">,</span> <span class="n">y</span><span class="p">,</span> <span class="n">cv</span><span class="o">=</span><span class="n">crossval</span><span class="p">,</span> <span class="n">n_jobs</span><span class="o">=-</span><span class="mi">1</span><span class="p">)</span>
<span class="c1"># print unbalanced class scores</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"Unbalanced Class Weight Scores:</span><span class="se">\t</span><span class="si">{:0.3}</span><span class="s2"> ± </span><span class="si">{:0.3}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">unscores</span><span class="o">.</span><span class="n">mean</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">),</span> <span class="n">unscores</span><span class="o">.</span><span class="n">std</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">)))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>Unbalanced Class Weight Scores: 0.713 ± 0.003
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [105]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># create a random forest classifier with balanced classes, and score it based solely on subreddit</span>
<span class="c1"># FOR 90TH PERCENTILE OF COMMENT COUNT (184 comments)</span>
<span class="n">y90</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile90</span>
<span class="n">classy</span> <span class="o">=</span> <span class="n">RandomForestClassifier</span><span class="p">(</span><span class="n">class_weight</span><span class="o">=</span><span class="s1">'balanced'</span><span class="p">)</span>
<span class="n">scores</span> <span class="o">=</span> <span class="n">cross_val_score</span><span class="p">(</span><span class="n">classy</span><span class="p">,</span> <span class="n">X</span><span class="p">,</span> <span class="n">y90</span><span class="p">,</span> <span class="n">cv</span><span class="o">=</span><span class="n">crossval</span><span class="p">,</span> <span class="n">n_jobs</span><span class="o">=-</span><span class="mi">1</span><span class="p">)</span>
<span class="c1"># print balanced class scores</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"Balanced Class Weight Scores (90th Percentile Comment Count):</span><span class="se">\t</span><span class="si">{:0.3}</span><span class="s2"> ± </span><span class="si">{:0.3}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">scores</span><span class="o">.</span><span class="n">mean</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">),</span> <span class="n">scores</span><span class="o">.</span><span class="n">std</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">)))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>Balanced Class Weight Scores (90th Percentile Comment Count): 0.711 ± 0.002
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Notes">Notes<a class="anchor-link" href="#Notes">¶</a></h3><p>After looking at the three RFC models - balanced classes using a shuffled train/test split, unbalanced classes with a stratified k-fold cross-validation, and a balanced RFC with stratified k-fold cross-validation - it's encouraging(?) to see that the accuracy score of each method is in the same ballpark.</p>
<p>Balanced train/test with data shuffled: ~72%</p>
<p>Unbalanced 5-fold stratified cross-val: 71.0-71.6%</p>
<p>Balanced 5-fold stratified cross-val (90th percentile of comment count as target): 70.9-71.3%</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Add-Features">Add Features<a class="anchor-link" href="#Add-Features">¶</a></h2>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Create-a-few-new-variables-in-your-dataframe-to-represent-interesting-features-of-a-thread-title.">Create a few new variables in your dataframe to represent interesting features of a thread title.<a class="anchor-link" href="#Create-a-few-new-variables-in-your-dataframe-to-represent-interesting-features-of-a-thread-title.">¶</a></h4><ul>
<li>For example, create a feature that represents whether 'cat' is in the title or whether 'funny' is in the title. </li>
<li>Then build a new Random Forest with these features. Do they add any value?</li>
<li>After creating these variables, use count-vectorizer to create features based on the words in the thread titles.</li>
<li>Build a new random forest model with subreddit and these new features included.</li>
</ul>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [18]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">reddit_data</span><span class="p">[</span><span class="s1">'has_cat'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"cat"</span> <span class="ow">in</span> <span class="n">title</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'is_pict'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="nb">any</span><span class="p">(</span><span class="n">ii</span> <span class="ow">in</span> <span class="n">domain</span> <span class="k">for</span> <span class="n">ii</span> <span class="ow">in</span> <span class="p">[</span><span class="s1">'i.redd.it'</span><span class="p">,</span><span class="s1">'imgur.com'</span><span class="p">,</span><span class="s1">'pbs.twimg.com'</span><span class="p">])</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">domain</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">domain</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'is_gifv'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="nb">any</span><span class="p">(</span><span class="n">ii</span> <span class="ow">in</span> <span class="n">domain</span> <span class="k">for</span> <span class="n">ii</span> <span class="ow">in</span> <span class="p">[</span><span class="s1">'v.redd.it'</span><span class="p">,</span><span class="s1">'gfycat.com'</span><span class="p">,</span><span class="s1">'gifs.com'</span><span class="p">])</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">domain</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">domain</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'has_djt'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"trump"</span> <span class="ow">in</span> <span class="n">title</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'has_hrc'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="nb">any</span><span class="p">(</span><span class="n">dd</span> <span class="ow">in</span> <span class="n">title</span> <span class="k">for</span> <span class="n">dd</span> <span class="ow">in</span> <span class="p">[</span><span class="s1">'hillary'</span><span class="p">,</span><span class="s1">'clinton'</span><span class="p">])</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'has_dog'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"dog"</span> <span class="ow">in</span> <span class="n">title</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'flaired'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span> <span class="k">if</span> <span class="kc">None</span> <span class="k">else</span> <span class="mi">1</span> <span class="k">for</span> <span class="n">flair</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">link_flair</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'textpost'</span><span class="p">]</span><span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"reddit.com"</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">domain</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">domain</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'isa_TIL'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"TIL"</span> <span class="ow">in</span> <span class="n">title</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'game_th'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"game thread"</span> <span class="ow">in</span> <span class="n">title</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
<span class="n">reddit_data</span><span class="p">[</span><span class="s1">'holiday'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span> <span class="k">if</span> <span class="s2">"halloween"</span> <span class="ow">in</span> <span class="n">title</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="k">else</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">title</span> <span class="ow">in</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [19]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">rfcolumns</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'subreddit'</span><span class="p">,</span><span class="s1">'has_cat'</span><span class="p">,</span><span class="s1">'is_pict'</span><span class="p">,</span><span class="s1">'is_gifv'</span><span class="p">,</span><span class="s1">'has_djt'</span><span class="p">,</span><span class="s1">'has_hrc'</span><span class="p">,</span><span class="s1">'has_dog'</span><span class="p">,</span><span class="s1">'flaired'</span><span class="p">,</span><span class="s1">'textpost'</span><span class="p">,</span><span class="s1">'isa_TIL'</span><span class="p">,</span><span class="s1">'game_th'</span><span class="p">,</span><span class="s1">'holiday'</span><span class="p">]</span>
<span class="n">Xnew</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">get_dummies</span><span class="p">(</span><span class="n">reddit_data</span><span class="p">[</span><span class="n">rfcolumns</span><span class="p">])</span>
<span class="n">y_67</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile67</span>
<span class="n">y_75</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile75</span>
<span class="n">y_90</span> <span class="o">=</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile90</span>
<span class="c1"># with the idea of examining the thresholds for which a title might garner upvotes in the top third, quarter, or tenth</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [164]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># new random forest with all the above variables, operating to the 50th percentile of comments</span>
<span class="n">classy</span> <span class="o">=</span> <span class="n">RandomForestClassifier</span><span class="p">(</span><span class="n">class_weight</span><span class="o">=</span><span class="s1">'balanced'</span><span class="p">)</span>
<span class="n">scores</span> <span class="o">=</span> <span class="n">cross_val_score</span><span class="p">(</span><span class="n">classy</span><span class="p">,</span> <span class="n">Xnew</span><span class="p">,</span> <span class="n">y</span><span class="p">,</span> <span class="n">cv</span><span class="o">=</span><span class="n">crossval</span><span class="p">,</span> <span class="n">n_jobs</span><span class="o">=-</span><span class="mi">1</span><span class="p">)</span>
<span class="c1"># print balanced class scores</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"Balanced Class Weight Scores (50th Percentile Comment Count):</span><span class="se">\t</span><span class="si">{:0.3}</span><span class="s2"> ± </span><span class="si">{:0.3}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">scores</span><span class="o">.</span><span class="n">mean</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">),</span> <span class="n">scores</span><span class="o">.</span><span class="n">std</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">)))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>Balanced Class Weight Scores (50th Percentile Comment Count): 0.729 ± 0.003
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>Some value was added by adding the abovementioned features, but the improvement in scores is minimal compared to the earlier 50th percentile test (about 1-2 percentage points).</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [165]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># test again with the 90th percentile of comment counts</span>
<span class="n">scores</span> <span class="o">=</span> <span class="n">cross_val_score</span><span class="p">(</span><span class="n">classy</span><span class="p">,</span> <span class="n">Xnew</span><span class="p">,</span> <span class="n">y_90</span><span class="p">,</span> <span class="n">cv</span><span class="o">=</span><span class="n">crossval</span><span class="p">,</span> <span class="n">n_jobs</span><span class="o">=-</span><span class="mi">1</span><span class="p">)</span>
<span class="c1"># print balanced class scores</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"Balanced Class Weight Scores (90th Percentile Comment Count):</span><span class="se">\t</span><span class="si">{:0.3}</span><span class="s2"> ± </span><span class="si">{:0.3}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">scores</span><span class="o">.</span><span class="n">mean</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">),</span> <span class="n">scores</span><span class="o">.</span><span class="n">std</span><span class="p">()</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="mi">3</span><span class="p">)))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>Balanced Class Weight Scores (90th Percentile Comment Count): 0.736 ± 0.003
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>Looking at pre- and post-added features, the 90th percentile comment count accuracy increased by 2.5 percentage points. Respectable at first glance.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Add-Text-Features">Add Text Features<a class="anchor-link" href="#Add-Text-Features">¶</a></h2><p>This is where we get into the murky business of turning titles into word lists, using CountVectorizer, and things of that nature. These word features will be added to the above-defined featuers to test another set of classifiers.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [20]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">reddit_data</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [21]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># Have to make each title into one string with just letters and spaces to use count vectorizer</span>
<span class="n">cleaned_titles</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">numtitles</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">title</span><span class="p">)</span>
<span class="nb">print</span><span class="p">(</span><span class="n">numtitles</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>98306
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [22]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># h/t NLP-II lecture; turn each title string into just the words, separated by spaces</span>
<span class="k">def</span> <span class="nf">titleToWords</span><span class="p">(</span><span class="n">raw_title</span><span class="p">):</span>
<span class="c1"># Converts the full title to string of words</span>
<span class="c1"># Input: one title string</span>
<span class="c1"># Output: one preprocessed title</span>
<span class="c1"># get rid of all the non-alphabet letters</span>
<span class="n">justLetters</span> <span class="o">=</span> <span class="n">re</span><span class="o">.</span><span class="n">sub</span><span class="p">(</span><span class="s2">"[^a-zA-Z]"</span><span class="p">,</span> <span class="s2">" "</span><span class="p">,</span> <span class="n">raw_title</span><span class="p">)</span>
<span class="c1"># convert to lowercase and split into individual words</span>
<span class="n">words</span> <span class="o">=</span> <span class="n">justLetters</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span><span class="o">.</span><span class="n">split</span><span class="p">()</span>
<span class="c1"># not eliminating stop words, due to need to look at all language</span>
<span class="k">return</span> <span class="p">(</span><span class="s2">" "</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">words</span><span class="p">))</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [23]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">for</span> <span class="n">ii</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="n">numtitles</span><span class="p">):</span>
<span class="n">cleaned_titles</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">titleToWords</span><span class="p">(</span><span class="n">reddit_data</span><span class="p">[</span><span class="s1">'title'</span><span class="p">][</span><span class="n">ii</span><span class="p">]))</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [24]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># separate the cleaned titles into a train/test split to go with the "above/below median" target column</span>
<span class="n">Xtrain</span><span class="p">,</span> <span class="n">Xtest</span><span class="p">,</span> <span class="n">ytrain</span><span class="p">,</span> <span class="n">ytest</span> <span class="o">=</span> <span class="n">train_test_split</span><span class="p">(</span><span class="n">cleaned_titles</span><span class="p">,</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile50</span><span class="p">,</span> <span class="n">test_size</span><span class="o">=</span><span class="mf">0.3</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">,</span> <span class="n">shuffle</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [25]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># h/t NLP II lecture</span>
<span class="kn">from</span> <span class="nn">sklearn.feature_extraction.text</span> <span class="k">import</span> <span class="n">CountVectorizer</span>
<span class="c1"># Initialize the "CountVectorizer" object (scikit-learn's bag of words tool) </span>
<span class="n">vectorizer</span> <span class="o">=</span> <span class="n">CountVectorizer</span><span class="p">(</span><span class="n">analyzer</span> <span class="o">=</span> <span class="s2">"word"</span><span class="p">,</span> \
<span class="n">tokenizer</span> <span class="o">=</span> <span class="kc">None</span><span class="p">,</span> \
<span class="n">preprocessor</span> <span class="o">=</span> <span class="kc">None</span><span class="p">,</span> \
<span class="n">stop_words</span> <span class="o">=</span> <span class="kc">None</span><span class="p">,</span> \
<span class="n">max_features</span> <span class="o">=</span> <span class="mi">5000</span><span class="p">)</span>
<span class="c1"># fit the model & learn the vocabulary</span>
<span class="c1"># transform the training data into feature vectors</span>
<span class="n">titleFeatures</span> <span class="o">=</span> <span class="n">vectorizer</span><span class="o">.</span><span class="n">fit_transform</span><span class="p">(</span><span class="n">Xtrain</span><span class="p">)</span>
<span class="c1"># Numpy arrays are easy to work with, so convert the result to an </span>
<span class="c1"># array</span>
<span class="n">titleFeatures1</span> <span class="o">=</span> <span class="n">titleFeatures</span><span class="o">.</span><span class="n">toarray</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [26]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="n">titleFeatures</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>(68814, 5000)
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [27]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># this is here to (a) split the subreddit-plus-features matrix into train/test splits, and (b) combine each train and</span>
<span class="c1"># test split into separate dataframes for testing purposes</span>
<span class="n">titleFeatDF</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">(</span><span class="n">titleFeatures1</span><span class="p">)</span>
<span class="n">xtrn</span><span class="p">,</span> <span class="n">xtst</span><span class="p">,</span> <span class="n">ytrn</span><span class="p">,</span> <span class="n">ytst</span> <span class="o">=</span> <span class="n">train_test_split</span><span class="p">(</span><span class="n">Xnew</span><span class="p">,</span> <span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile50</span><span class="p">,</span> <span class="n">test_size</span><span class="o">=</span><span class="mf">0.3</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">,</span> <span class="n">shuffle</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="c1"># transform the Xtest from above using the vectorizer, make it into a dataframe, and</span>
<span class="c1"># then concat it to the xtst in this cell</span>
<span class="n">title_tests</span> <span class="o">=</span> <span class="n">vectorizer</span><span class="o">.</span><span class="n">transform</span><span class="p">(</span><span class="n">Xtest</span><span class="p">)</span>
<span class="n">title_tests</span> <span class="o">=</span> <span class="n">title_tests</span><span class="o">.</span><span class="n">toarray</span><span class="p">()</span>
<span class="n">titleTestsDF</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">(</span><span class="n">title_tests</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [28]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># these resets are necessary to align indices and maintain the proper number of entries for train/test data sets</span>
<span class="n">titleFeatDF</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">titleTestsDF</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [29]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">xtrn</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">xtst</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [30]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># SFW = subreddit, features, words</span>
<span class="n">train_SFW</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">xtrn</span><span class="p">,</span><span class="n">titleFeatDF</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="n">tests_SFW</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">xtst</span><span class="p">,</span><span class="n">titleTestsDF</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [31]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="n">train_SFW</span><span class="o">.</span><span class="n">shape</span><span class="p">,</span> <span class="n">tests_SFW</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>(68814, 8326) (29492, 8326)
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [32]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">vocab</span> <span class="o">=</span> <span class="n">vectorizer</span><span class="o">.</span><span class="n">get_feature_names</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [32]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">len</span><span class="p">(</span><span class="n">vocab</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[32]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>5000</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Use-cross-validation-in-scikit-learn-to-evaluate-the-model-above.">Use cross-validation in scikit-learn to evaluate the model above.<a class="anchor-link" href="#Use-cross-validation-in-scikit-learn-to-evaluate-the-model-above.">¶</a></h4><ul>
<li>Evaluate the accuracy of the model, as well as any other metrics you feel are appropriate. </li>
</ul>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [194]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># New random forest with subreddit, defined features, and word feature vectors</span>
<span class="c1"># trained to the 50th percentile of comments</span>
<span class="n">classy2</span> <span class="o">=</span> <span class="n">RandomForestClassifier</span><span class="p">(</span><span class="n">class_weight</span><span class="o">=</span><span class="s1">'balanced'</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">)</span>
<span class="n">classy2</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">train_SFW</span><span class="p">,</span><span class="n">ytrn</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[194]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>RandomForestClassifier(bootstrap=True, class_weight='balanced',
criterion='gini', max_depth=None, max_features='auto',
max_leaf_nodes=None, min_impurity_decrease=0.0,
min_impurity_split=None, min_samples_leaf=1,
min_samples_split=2, min_weight_fraction_leaf=0.0,
n_estimators=10, n_jobs=1, oob_score=False, random_state=6,
verbose=0, warm_start=False)</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [195]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">newpreds</span> <span class="o">=</span> <span class="n">classy2</span><span class="o">.</span><span class="n">predict</span><span class="p">(</span><span class="n">tests_SFW</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [196]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="s2">"New Training Data Accuracy: "</span><span class="p">,</span> <span class="n">accuracy_score</span><span class="p">(</span><span class="n">ytrn</span><span class="p">,</span> <span class="n">classy2</span><span class="o">.</span><span class="n">predict</span><span class="p">(</span><span class="n">train_SFW</span><span class="p">)))</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">" New Testing Data Accuracy: "</span><span class="p">,</span> <span class="n">accuracy_score</span><span class="p">(</span><span class="n">ytst</span><span class="p">,</span> <span class="n">newpreds</span><span class="p">))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>New Training Data Accuracy: 0.992094631906
New Testing Data Accuracy: 0.860538451105
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [49]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># new forest for 90th percentile</span>
<span class="n">xtrn90</span><span class="p">,</span><span class="n">xtst90</span><span class="p">,</span><span class="n">ytrn90</span><span class="p">,</span><span class="n">ytst90</span> <span class="o">=</span> <span class="n">train_test_split</span><span class="p">(</span><span class="n">Xnew</span><span class="p">,</span><span class="n">reddit_data</span><span class="o">.</span><span class="n">percentile90</span><span class="p">,</span><span class="n">test_size</span><span class="o">=</span><span class="mf">0.3</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">,</span> <span class="n">shuffle</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">xtrn90</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">xtst90</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">train90SFW</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">xtrn90</span><span class="p">,</span><span class="n">titleFeatDF</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="n">tests90SFW</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">xtst90</span><span class="p">,</span><span class="n">titleTestsDF</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="n">classy90</span> <span class="o">=</span> <span class="n">RandomForestClassifier</span><span class="p">(</span><span class="n">class_weight</span><span class="o">=</span><span class="s1">'balanced'</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">)</span>
<span class="n">classy90</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">train90SFW</span><span class="p">,</span><span class="n">ytrn90</span><span class="p">)</span>
<span class="n">preds90</span> <span class="o">=</span> <span class="n">classy90</span><span class="o">.</span><span class="n">predict</span><span class="p">(</span><span class="n">tests90SFW</span><span class="p">)</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"90th Percentile Comment Count Scoring"</span><span class="p">)</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">"New Training Data Accuracy: "</span><span class="p">,</span> <span class="n">accuracy_score</span><span class="p">(</span><span class="n">ytrn90</span><span class="p">,</span> <span class="n">classy90</span><span class="o">.</span><span class="n">predict</span><span class="p">(</span><span class="n">train90SFW</span><span class="p">)))</span>
<span class="nb">print</span><span class="p">(</span><span class="s2">" New Testing Data Accuracy: "</span><span class="p">,</span> <span class="n">accuracy_score</span><span class="p">(</span><span class="n">ytst90</span><span class="p">,</span> <span class="n">preds90</span><span class="p">))</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>90th Percentile Comment Count Scoring
New Training Data Accuracy: 0.997122678525
New Testing Data Accuracy: 0.970330937203
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Results">Results<a class="anchor-link" href="#Results">¶</a></h2><p>Wow! This is a significant increase in accuracy. Turns out adding the word features brings an accuracy bump far beyond the simple features added earlier.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="What-worked-the-best?">What worked the best?<a class="anchor-link" href="#What-worked-the-best?">¶</a></h3><p>One burning question after the text features were included is: Which words made the biggest impact? Here's how to find out...</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [243]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">importances</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">({</span><span class="s1">'feature'</span><span class="p">:</span><span class="n">train_SFW</span><span class="o">.</span><span class="n">columns</span><span class="p">,</span><span class="s1">'importance'</span><span class="p">:</span><span class="n">np</span><span class="o">.</span><span class="n">round</span><span class="p">(</span><span class="n">classy2</span><span class="o">.</span><span class="n">feature_importances_</span><span class="p">,</span><span class="mi">3</span><span class="p">)})</span>
<span class="n">importances</span> <span class="o">=</span> <span class="n">importances</span><span class="o">.</span><span class="n">sort_values</span><span class="p">(</span><span class="s1">'importance'</span><span class="p">,</span><span class="n">ascending</span><span class="o">=</span><span class="kc">False</span><span class="p">)</span><span class="o">.</span><span class="n">set_index</span><span class="p">(</span><span class="s1">'feature'</span><span class="p">)</span>
<span class="nb">print</span><span class="p">(</span><span class="n">importances</span><span class="p">[</span><span class="mi">50</span><span class="p">:</span><span class="mi">100</span><span class="p">])</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre> importance
feature
6 0.001
1809 0.001
1805 0.001
subreddit_worldnews 0.001
subreddit_wow 0.001
1764 0.001
1839 0.001
1840 0.001
1740 0.001
1841 0.001
1871 0.001
subreddit_videos 0.001
4092 0.001
subreddit_MMA 0.001
1677 0.001
85 0.001
128 0.001
subreddit_Justrolledintotheshop 0.001
3951 0.001
4077 0.001
295 0.001
1509 0.001
4519 0.001
439 0.001
1318 0.001
1304 0.001
1295 0.001
1283 0.001
1262 0.001
4592 0.001
subreddit_DestinyTheGame 0.001
1230 0.001
1228 0.001
4625 0.001
subreddit_CringeAnarchy 0.001
subreddit_Competitiveoverwatch 0.001
4676 0.001
4678 0.001
4691 0.001
subreddit_Celebs 0.001
4718 0.001
634 0.001
1127 0.001
661 0.001
4522 0.001
4508 0.001
1506 0.001
421 0.001
1505 0.001
264 0.001
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [ ]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">importances</span><span class="p">[</span><span class="mi">0</span><span class="p">:</span><span class="mi">60</span><span class="p">]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [252]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">vocab</span><span class="p">[</span><span class="mi">4092</span><span class="p">]</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[252]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>'some'</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>Unfortunately the indexing got muddled, but each number above corresponds to words in the vocabulary index. This can be corrected, but it'll take too long now to be useful. Let's look past it.</p>
<p>The most common non-stop-word in this data set is Halloween. Subreddits The_Donald, nba, fantasyfootball, soccer, AskReddit, and DotA2 are all high performers. CFB, news, politics, leagueoflegends, and NintendoSwitch round out the top 11 subreddits.</p>
<p>"What" is a popular word as well, and when combined with its slang use ("what" by itself is an expression of disbelief) and use as a question (e.g., in AskReddit), shows its utility. "Happy" is high on the importance list, as are "irl" ("in real life", often combined with "me", which is also high on the list), "any"/"anyone" (usually in the form of questions), "super", and "still."</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Repeat-the-model-building-process-with-a-non-tree-based-method.">Repeat the model-building process with a non-tree-based method.<a class="anchor-link" href="#Repeat-the-model-building-process-with-a-non-tree-based-method.">¶</a></h4>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [ ]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># build a logistic regression model to classify whether the post will achieve a certain number of comments</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [34]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="kn">from</span> <span class="nn">sklearn.linear_model</span> <span class="k">import</span> <span class="n">LogisticRegression</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [35]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">logreg</span> <span class="o">=</span> <span class="n">LogisticRegression</span><span class="p">(</span><span class="n">penalty</span><span class="o">=</span><span class="s1">'l2'</span><span class="p">,</span><span class="n">C</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [36]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># to test against 90th percentile comment data later</span>
<span class="n">xtrn</span><span class="p">,</span> <span class="n">xtst</span><span class="p">,</span> <span class="n">ytrn</span><span class="p">,</span> <span class="n">ytst</span> <span class="o">=</span> <span class="n">train_test_split</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="n">y_90</span><span class="p">,</span> <span class="n">test_size</span><span class="o">=</span><span class="mf">0.3</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">6</span><span class="p">,</span> <span class="n">shuffle</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [37]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># recall: X_trn, y_trn are from the initial data split and are just subreddit-based and 50th percentile</span>
<span class="n">model1</span> <span class="o">=</span> <span class="n">logreg</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">X_trn</span><span class="p">,</span> <span class="n">y_trn</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [44]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">logpreds</span> <span class="o">=</span> <span class="n">logreg</span><span class="o">.</span><span class="n">predict_proba</span><span class="p">(</span><span class="n">X_tst</span><span class="p">)[:,</span><span class="mi">1</span><span class="p">]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [45]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="kn">from</span> <span class="nn">sklearn.metrics</span> <span class="k">import</span> <span class="n">roc_auc_score</span>
<span class="n">roc_auc_score</span><span class="p">(</span><span class="n">y_tst</span><span class="p">,</span><span class="n">logpreds</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[45]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>0.79083607679503698</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [46]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">model2</span> <span class="o">=</span> <span class="n">logreg</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">xtrn</span><span class="p">,</span> <span class="n">ytrn</span><span class="p">)</span>
<span class="n">logpreds2</span> <span class="o">=</span> <span class="n">logreg</span><span class="o">.</span><span class="n">predict_proba</span><span class="p">(</span><span class="n">xtst</span><span class="p">)[:,</span><span class="mi">1</span><span class="p">]</span>
<span class="n">roc_auc_score</span><span class="p">(</span><span class="n">ytst</span><span class="p">,</span><span class="n">logpreds2</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[46]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>0.84085387430229475</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>From just the base subreddit classification, logistic regression for the 50th percentile of posts scores at an accuracy of nearly 80%. That's significantly higher than the random forest without text features. For the 90th percentile of posts, it scores at 84%!</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h4 id="Use-Count-Vectorizer-from-scikit-learn-to-create-features-from-the-thread-titles.">Use Count Vectorizer from scikit-learn to create features from the thread titles.<a class="anchor-link" href="#Use-Count-Vectorizer-from-scikit-learn-to-create-features-from-the-thread-titles.">¶</a></h4><ul>
<li>Examine using count or binary features in the model</li>
<li>Re-evaluate your models using these. Does this improve the model performance? </li>
<li>What text features are the most valuable? </li>
</ul>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [47]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># this adds the text features from the titles</span>
<span class="n">xtrn</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">xtst</span><span class="o">.</span><span class="n">reset_index</span><span class="p">(</span><span class="n">inplace</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
<span class="n">logTrainDF</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">xtrn</span><span class="p">,</span><span class="n">train_SFW</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="n">logTestsDF</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">xtst</span><span class="p">,</span><span class="n">tests_SFW</span><span class="p">],</span><span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="nb">print</span><span class="p">(</span><span class="n">logTrainDF</span><span class="o">.</span><span class="n">shape</span><span class="p">,</span> <span class="n">logTestsDF</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>(68814, 11640) (29492, 11640)
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [48]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">model3</span> <span class="o">=</span> <span class="n">logreg</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">logTrainDF</span><span class="p">,</span><span class="n">ytrn</span><span class="p">)</span>
<span class="n">logpreds3</span> <span class="o">=</span> <span class="n">logreg</span><span class="o">.</span><span class="n">predict_proba</span><span class="p">(</span><span class="n">logTestsDF</span><span class="p">)[:,</span><span class="mi">1</span><span class="p">]</span>
<span class="n">roc_auc_score</span><span class="p">(</span><span class="n">ytst</span><span class="p">,</span><span class="n">logpreds3</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[48]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>0.44724930859321899</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>For some reason, performance drops like a stone once text features are added. This may be an error in the programming somewhere...</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h1 id="Executive-Summary">Executive Summary<a class="anchor-link" href="#Executive-Summary">¶</a></h1><hr>
<p>Put your executive summary in a Markdown cell below.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h1 id="Reddit-Comment-Building-Protocol">Reddit Comment Building Protocol<a class="anchor-link" href="#Reddit-Comment-Building-Protocol">¶</a></h1><p>Reddit brands itself "The Front Page of the Internet." The link aggregator and sharing site is a powerhouse of information, discussion, and Internet culture; its unique stature as an online discussion forum, real-time news network, and social media platform affords it a lot of power on the web. The challenge on Reddit today is building, or creating, content that goes beyond something mildly interesting. Popular content, the posts that reach the top of /r/all, often come with hundreds or thousands of comments.</p>
<p>But what goes into a post that generates that many comments? Luck, timing, original content or repost, breaking news, and a whole host of factors can come into play. What FiveThirtyEight wants for its exposé on Reddit is the nitty-gritty on what makes a Reddit post really hum: the factors that go into the creation of some of the most comment-laden posts on the site.</p>
<p>After scraping the top posts from Reddit's /r/all for several days, the answer is pretty clear. A certain mix of subreddits, along with specific keywords, memetic references, and images, are the way to achieve this. These elements have shown, over the course of several days, to be strong indicators of Reddit success. Posting to subreddits in the following categories are good starting points: sports, video gaming, news, and politics. Posting images or GIFs will garner a lot of comments. Using memetic references or language (e.g., "me irl"), or prefacing a post with an informational word ("TIL") all are related to larger comment totals. Additionally, current events like holidays score well: since Halloween was a few days ago, the words "happy" and "Halloween" scored very highly when it came to their associated posts' comment counts.</p>
<p>The above insights were gleaned through the use of natural language processing techniques, which used the words in post titles to signify whether a post did well or poorly, as well as classification techniques such as whether the post was an image, video, or text-only. Specific keywords were called out in accordance with certain topics: Trump and Clinton were used; cat and dog were used due to the prevalence of pet and animal photos; Halloween was also used. This data was fed into a random forest classifier, which took all the classification methods (is it an image? video? text?) and single-word features, selected a group of them, and classified individual posts (yes/no) until the post was determined to have been above or below the comment threshold for a successful post.</p>
<p>This model was tested and compared to a logistic regression model in which posts are evaluated for whether they meet or do not meet specific criteria (having a keyword or not; being in a certain subreddit or not; etc.). The random forest performed admirably (73% accuracy) without using individual keywords to determine post success, but predicted a post's success with 86% accuracy when keywords were included in the classification algorithm. Our logistic regression model performed better without text features (79% accuracy at the median comment count, 84% at 90th percentile), but not with text features (44% accuracy at 90th percentile of comment count). Work is ongoing to determine the cause of this drop.</p>
<p>Using these simple steps, it is highly likely that one will see a post on /r/all made by a FiveThirtyEight reader or staffer who reads this article and applies the knowledge to soar to the top of the front page of the Internet.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="BONUS">BONUS<a class="anchor-link" href="#BONUS">¶</a></h3><p>Refer to the README for the bonus parts</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
| 46.456865 | 201,512 | 0.658512 |
78e2bfbe4c5821a7f706b8fb489a6677b54a4a0e | 7,485 | sql | SQL | data/registry/mysql/createregistryddl.sql | kef/hieos | 7d75d1465337293fc6b6832c4b52754b1fea4cc0 | [
"ECL-2.0",
"BSD-3-Clause-No-Nuclear-Warranty",
"Apache-2.0"
] | 4 | 2016-02-10T09:26:31.000Z | 2021-11-27T10:56:53.000Z | data/registry/mysql/createregistryddl.sql | kef/hieos | 7d75d1465337293fc6b6832c4b52754b1fea4cc0 | [
"ECL-2.0",
"BSD-3-Clause-No-Nuclear-Warranty",
"Apache-2.0"
] | null | null | null | data/registry/mysql/createregistryddl.sql | kef/hieos | 7d75d1465337293fc6b6832c4b52754b1fea4cc0 | [
"ECL-2.0",
"BSD-3-Clause-No-Nuclear-Warranty",
"Apache-2.0"
] | 12 | 2015-04-24T10:38:35.000Z | 2020-05-19T21:14:53.000Z | --
-- This code is subject to the HIEOS License, Version 1.0
--
-- Copyright(c) 2008-2009 Vangent, Inc. All rights reserved.
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
--
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- Server version 5.1.34-community-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO,MYSQL323' */;
--
-- Create schema omar
--
CREATE DATABASE IF NOT EXISTS omar;
USE omar;
--DROP TABLE IF EXISTS `adhocquery`;
--DROP TABLE IF EXISTS `affectedobject`;
--DROP TABLE IF EXISTS `auditableevent`;
--DROP TABLE IF EXISTS `classificationnode`;
--DROP TABLE IF EXISTS `classscheme`;
--DROP TABLE IF EXISTS `emailaddress`;
--DROP TABLE IF EXISTS `externallink`;
--DROP TABLE IF EXISTS `federation`;
--DROP TABLE IF EXISTS `notification`;
--DROP TABLE IF EXISTS `notificationobject`;
--DROP TABLE IF EXISTS `notifyaction`;
--DROP TABLE IF EXISTS `objectref`;
--DROP TABLE IF EXISTS `organization`;
--DROP TABLE IF EXISTS `person`;
--DROP TABLE IF EXISTS `postaladdress`;
--DROP TABLE IF EXISTS `registry`;
--DROP TABLE IF EXISTS `registryobject`;
--DROP VIEW IF EXISTS `registryobject`;
--DROP TABLE IF EXISTS `repositoryitem`;
--DROP TABLE IF EXISTS `service`;
--DROP TABLE IF EXISTS `servicebinding`;
--DROP TABLE IF EXISTS `specificationlink`;
--DROP TABLE IF EXISTS `subscription`;
--DROP TABLE IF EXISTS `telephonenumber`;
--DROP TABLE IF EXISTS `usagedescription`;
--DROP TABLE IF EXISTS `usageparameter`;
--DROP TABLE IF EXISTS `user_`;
--DROP TABLE IF EXISTS `identifiable`;
--DROP VIEW IF EXISTS `identifiable`;
--
-- Definition of table `association`
--
DROP TABLE IF EXISTS `association`;
CREATE TABLE `association` (
`id` varchar(64) NOT NULL,
`lid` varchar(64) NOT NULL,
`objectType` char(2) DEFAULT NULL,
`status` char(1) NOT NULL,
`versionName` varchar(16) DEFAULT NULL,
`associationType` char(2) NOT NULL,
`sourceObject` varchar(64) NOT NULL,
`targetObject` varchar(64) NOT NULL,
PRIMARY KEY (`id`),
KEY `src_Ass_idx` (`sourceObject`),
KEY `tgt_Ass_idx` (`targetObject`),
KEY `type_Ass_idx` (`associationType`)
) TYPE=InnoDB;
--
-- Dumping data for table `association`
--
/*!40000 ALTER TABLE `association` DISABLE KEYS */;
/*!40000 ALTER TABLE `association` ENABLE KEYS */;
--
-- Definition of table `classification`
--
DROP TABLE IF EXISTS `classification`;
CREATE TABLE `classification` (
`id` varchar(64) NOT NULL,
`lid` varchar(64) NOT NULL,
`objectType` char(2) DEFAULT NULL,
`status` char(1) NOT NULL,
`versionName` varchar(16) DEFAULT NULL,
`classificationNode` varchar(64) DEFAULT NULL,
`classificationScheme` varchar(64) DEFAULT NULL,
`classifiedObject` varchar(64) NOT NULL,
`nodeRepresentation` varchar(128) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `clsObj_Class_idx` (`classifiedObject`)
) TYPE=InnoDB;
--
-- Dumping data for table `classification`
--
/*!40000 ALTER TABLE `classification` DISABLE KEYS */;
/*!40000 ALTER TABLE `classification` ENABLE KEYS */;
--
-- Definition of table `description`
--
DROP TABLE IF EXISTS `description`;
CREATE TABLE `description` (
`charset` varchar(32) DEFAULT NULL,
`lang` varchar(32) NOT NULL,
`value` varchar(256) NOT NULL,
`parent` varchar(64) NOT NULL,
PRIMARY KEY (`parent`)
) TYPE=InnoDB;
--
-- Dumping data for table `description`
--
/*!40000 ALTER TABLE `description` DISABLE KEYS */;
/*!40000 ALTER TABLE `description` ENABLE KEYS */;
--
-- Definition of table `externalidentifier`
--
DROP TABLE IF EXISTS `externalidentifier`;
CREATE TABLE `externalidentifier` (
`id` varchar(64) NOT NULL,
`lid` varchar(64) NOT NULL,
`objectType` char(2) DEFAULT NULL,
`status` char(1) NOT NULL,
`versionName` varchar(16) DEFAULT NULL,
`registryObject` varchar(64) NOT NULL,
`identificationScheme` char(2) NOT NULL,
`value` varchar(128) NOT NULL,
PRIMARY KEY (`id`),
KEY `ro_EID_idx` (`registryObject`),
KEY `idscheme_EID_idx` (`identificationScheme`),
KEY `value_EID_idx` (`value`)
) TYPE=InnoDB;
--
-- Dumping data for table `externalidentifier`
--
/*!40000 ALTER TABLE `externalidentifier` DISABLE KEYS */;
/*!40000 ALTER TABLE `externalidentifier` ENABLE KEYS */;
--
-- Definition of table `extrinsicobject`
--
DROP TABLE IF EXISTS `extrinsicobject`;
CREATE TABLE `extrinsicobject` (
`id` varchar(64) NOT NULL,
`lid` varchar(64) NOT NULL,
`objectType` char(2) DEFAULT NULL,
`status` char(1) NOT NULL,
`versionName` varchar(16) DEFAULT NULL,
`isOpaque` char(1) NOT NULL,
`mimeType` varchar(128) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `lid_EO_idx` (`lid`)
) TYPE=InnoDB;
--
-- Dumping data for table `extrinsicobject`
--
/*!40000 ALTER TABLE `extrinsicobject` DISABLE KEYS */;
/*!40000 ALTER TABLE `extrinsicobject` ENABLE KEYS */;
--
-- Definition of table `name_`
--
DROP TABLE IF EXISTS `name_`;
CREATE TABLE `name_` (
`charset` varchar(32) DEFAULT NULL,
`lang` varchar(32) NOT NULL,
`value` varchar(256) NOT NULL,
`parent` varchar(64) NOT NULL,
PRIMARY KEY (`parent`)
) TYPE=InnoDB;
--
-- Dumping data for table `name_`
--
/*!40000 ALTER TABLE `name_` DISABLE KEYS */;
/*!40000 ALTER TABLE `name_` ENABLE KEYS */;
--
-- Definition of table `registrypackage`
--
DROP TABLE IF EXISTS `registrypackage`;
CREATE TABLE `registrypackage` (
`id` varchar(64) NOT NULL,
`lid` varchar(64) NOT NULL,
`objectType` char(2) DEFAULT NULL,
`status` char(1) NOT NULL,
`versionName` varchar(16) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `lid_RP_idx` (`lid`)
) TYPE=InnoDB;
--
-- Dumping data for table `registrypackage`
--
/*!40000 ALTER TABLE `registrypackage` DISABLE KEYS */;
/*!40000 ALTER TABLE `registrypackage` ENABLE KEYS */;
--
-- Definition of table `slot`
--
DROP TABLE IF EXISTS `slot`;
CREATE TABLE `slot` (
`sequenceId` int(11) NOT NULL,
`name_` varchar(128) NOT NULL,
`value` varchar(128) DEFAULT NULL,
`parent` varchar(64) NOT NULL,
PRIMARY KEY (`parent`,`name_`,`sequenceId`)
) TYPE=InnoDB;
--
-- Dumping data for table `slot`
--
/*!40000 ALTER TABLE `slot` DISABLE KEYS */;
/*!40000 ALTER TABLE `slot` ENABLE KEYS */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | 28.139098 | 85 | 0.680294 |
ddfbac4280975870a4a10bbf00684412267061e6 | 5,016 | php | PHP | application/libraries/paypalexpress.php | KunanonP/Research-prototype | 92762fdb3415236e09facf879e569d80ac0640e3 | [
"MIT"
] | 1 | 2022-01-11T13:34:42.000Z | 2022-01-11T13:34:42.000Z | application/libraries/paypalexpress.php | KunanonP/Research-prototype | 92762fdb3415236e09facf879e569d80ac0640e3 | [
"MIT"
] | null | null | null | application/libraries/paypalexpress.php | KunanonP/Research-prototype | 92762fdb3415236e09facf879e569d80ac0640e3 | [
"MIT"
] | null | null | null | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class PaypalExpress {
/**
* Paypal Express Checkout(NVP) CodeIgniter library
*
* This CodeIgniter library handles payments via paypal.
*
* @package codeigniter-paypal-express-checkout(NVP)
* @author Rakesh Sharma, <sharmarakesh395[at]gmail.com>
* @copyright Copyright (c) 2014, Rakesh Sharma
* @link https://github.com/rakeshksharma/codeigniter-payvector/
*/
public $pex_settings;
function __construct($pex_settings){
$this->pex_settings = $pex_settings;
}
/**
* hash_call: Function to perform the API call to PayPal using API signature
* @method_name is name of API method.
* @nvpStr is nvp string.
* returns an associtive array containing the response from the server.
*/
public function hash_call($method_name, $nvpstr)
{
$settings = $this->pex_settings;
$nvpheader = "&PWD=".urlencode($settings['api_password'])."&USER=".urlencode($settings['api_username'])."&SIGNATURE=".urlencode($settings['api_signature']);
//setting the curl parameters.
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$settings['api_endpoint']);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
//turning off the server and peer verification(TrustManager Concept).
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, 1);
$nvpstr=$nvpheader.$nvpstr;
//check if version is included in $nvpstr else include the version.
if(strlen(str_replace('VERSION=', '', strtoupper($nvpstr))) == strlen($nvpstr)) {
$nvpstr = "&VERSION=" . urlencode($settings['api_version']) . $nvpstr;
}
$nvpreq="METHOD=".urlencode($method_name).$nvpstr;
//setting the nvpreq as POST FIELD to curl
curl_setopt($ch,CURLOPT_POSTFIELDS,$nvpreq);
//getting response from server
$response = curl_exec($ch);
//convrting NVPResponse to an Associative Array
$nvpresarray = $this->deformat_nvp($response);
$nvpreqarray = $this->deformat_nvp($nvpreq);
$_SESSION['nvpreqarray']=$nvpreqarray;
if (curl_errno($ch)) {
// moving to display page to display curl errors
$_SESSION['curl_error_no'] = curl_errno($ch) ;
$_SESSION['curl_error_msg'] = curl_error($ch);
$location = "APIError.php";
header("Location: $location");
}
else {
//closing the curl
curl_close($ch);
}
return $nvpresarray;
}
/** This function will take nvpstring and convert it to an Associative Array and it will decode the response.
* It is usefull to search for a particular key and displaying arrays.
*/
function deformat_nvp($nvpstr)
{
$intial=0;
$nvparray = array();
while(strlen($nvpstr)){
//postion of Key
$keypos= strpos($nvpstr,'=');
//position of value
$valuepos = strpos($nvpstr,'&') ? strpos($nvpstr,'&'): strlen($nvpstr);
/*getting the Key and Value values and storing in a Associative Array*/
$keyval=substr($nvpstr,$intial,$keypos);
$valval=substr($nvpstr,$keypos+1,$valuepos-$keypos-1);
//decoding the respose
$nvparray[urldecode($keyval)] = urldecode($valval);
$nvpstr=substr($nvpstr,$valuepos+1,strlen($nvpstr));
}
return $nvparray;
}
/**
* This function will take token and processing actual payment with token.
*/
public function make_payment($token) {
// Getting settings.
$settings = $this->pex_settings;
$nvpstr="&TOKEN=".$token;
// call api with token and getting result.
$resarray = $this->hash_call("GetExpressCheckoutDetails",$nvpstr);
$ack = strtoupper($resarray["ACK"]);
if($ack == 'SUCCESS' || $ack == 'SUCCESSWITHWARNING'){
ini_set('session.bug_compat_42',0);
ini_set('session.bug_compat_warn',0);
$token = trim($resarray['TOKEN']);
$payment_amount = trim($resarray['AMT']);
$payerid = trim($resarray['PAYERID']);
$server_name = trim($_SERVER['SERVER_NAME']);
$nvpstr='&TOKEN='.$token.'&PAYERID='.$payerid.'&PAYMENTACTION='.$settings['payment_type'].'&AMT='.$payment_amount.'&CURRENCYCODE='.$settings['currency'].'&IPADDRESS='.$server_name ;
$resarray = $this->hash_call("DoExpressCheckoutPayment",$nvpstr);
$ack = strtoupper($resarray["ACK"]);
// checking response for success.
if($ack != 'SUCCESS' && $ack != 'SUCCESSWITHWARNING'){
return $resarray;
}
else {
return $resarray;
}
}
else
{
return $resarray;
}
}
/**
* This function will take NVP string and setting up express checkout call and sending user to paypal url.
*/
public function process_payment($nvpstr) {
// Getting settings.
$settings = $this->pex_settings;
// call api with nvp string andset checkout request.
$resarray = $this->hash_call("SetExpressCheckout",$nvpstr);
$ack = strtoupper($resarray["ACK"]);
if($ack=="SUCCESS") {
$token = trim($resarray["TOKEN"]);
$payurl = $settings['api_url'].$token;
// redirect user to paypal url.
header("Location: ".$payurl);
}
else {
return $resarray;
}
}
}
| 34.122449 | 184 | 0.680024 |
0bf445f8498cfdd69a705c86583b36568864f9be | 2,779 | js | JavaScript | public/custom_js/user_list.js | Abuthahir112792/mraqrcode | 64e1570aa166abc9cc2ace8e405ed5b84380dc91 | [
"MIT"
] | null | null | null | public/custom_js/user_list.js | Abuthahir112792/mraqrcode | 64e1570aa166abc9cc2ace8e405ed5b84380dc91 | [
"MIT"
] | null | null | null | public/custom_js/user_list.js | Abuthahir112792/mraqrcode | 64e1570aa166abc9cc2ace8e405ed5b84380dc91 | [
"MIT"
] | null | null | null |
$('.loder_cla').removeClass('div_hide');
jQuery(document).ready( function() {
var usersList = getAjaxData('admin/users-list', {});
usersList.then(function(data){
console.log(data);
$('#usersList').DataTable( {
data: data,
"order": [[ 0, "desc" ]],
columns: [
{ title: "ID" },
{ title: "Name" },
{ title: "Email" },
{ title: "Mobile Number" },
{ title: "Address" },
{ title: "Action" },
],
"columnDefs": [{
"targets": [ 0 ],
"visible": false,
"searchable": false
},{
targets: -1,
render : function (data, type, row) {
return '<a style="background: #090c2f;" class="edit_user" title="Edit" data-id="'+data+'"><i class="fa fa-pencil" aria-hidden="true"></i></a>'
}
}]/*,
dom: 'lBfrtip',
buttons: [
{
extend: 'excel',
filename: 'User History',
title:'',
exportOptions: {
columns: [ 1, 2, 3, 4 ]
}
},
{
extend: 'print',
title: '',
exportOptions: {
columns: [ 1, 2, 3, 4 ]
}
}
]*/
});
});
$(document).on('click','.edit_user',function(e){
var id = $(this).data('id');
$.ajax({
type : 'GET',
url : APP_URL + '/admin/user/details/'+id,
cache : false,
processData: false
})
.done(function(response) {
if(response.status_code == 200){
resetIncomingUser();
$("#user_update_id").val(id);
$(".name").val(response.data.name);
$(".email").val(response.data.email);
$(".mobile_number").val(response.data.mobile_number);
$(".room_number").val(response.data.room_number);
$(".password").val(response.data.password);
$("#incoming-user-modal").modal();
}
});
return false;
});
});
$('.loder_cla').addClass('div_hide');
function resetIncomingUser(){
$("#user_update_id").val('');
$(".name").val('');
$(".email").val('');
$(".mobile_number").val('');
$(".room_number").val('');
$(".password").val('');
} | 31.579545 | 166 | 0.371716 |
93ccd1429a8e71b0a89a8e91c036491651c53e0b | 5,895 | rs | Rust | src/methods/promote_chat_member.rs | ferrisgram/ferrisgram | f972e823a5215d92bf16f30a7bc10842b166a381 | [
"MIT"
] | 9 | 2022-02-28T10:12:54.000Z | 2022-03-15T22:23:40.000Z | src/methods/promote_chat_member.rs | ferrisgram/ferrisgram | f972e823a5215d92bf16f30a7bc10842b166a381 | [
"MIT"
] | null | null | null | src/methods/promote_chat_member.rs | ferrisgram/ferrisgram | f972e823a5215d92bf16f30a7bc10842b166a381 | [
"MIT"
] | null | null | null | // WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments)]
use serde::Serialize;
use crate::error::Result;
use crate::Bot;
impl Bot {
/// Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Pass False for all boolean parameters to demote a user. Returns True on success.
/// <https://core.telegram.org/bots/api#promotechatmember>
pub fn promote_chat_member(&self, chat_id: i64, user_id: i64) -> PromoteChatMemberBuilder {
PromoteChatMemberBuilder::new(self, chat_id, user_id)
}
}
#[derive(Serialize)]
pub struct PromoteChatMemberBuilder<'a> {
#[serde(skip)]
bot: &'a Bot,
/// Unique identifier for the target chat or username of the target channel (in the format @channelusername)
pub chat_id: i64,
/// Unique identifier of the target user
pub user_id: i64,
/// Pass True, if the administrator's presence in the chat is hidden
#[serde(skip_serializing_if = "Option::is_none")]
pub is_anonymous: Option<bool>,
/// Pass True, if the administrator can access the chat event log, chat statistics, message statistics in channels, see channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other administrator privilege
#[serde(skip_serializing_if = "Option::is_none")]
pub can_manage_chat: Option<bool>,
/// Pass True, if the administrator can create channel posts, channels only
#[serde(skip_serializing_if = "Option::is_none")]
pub can_post_messages: Option<bool>,
/// Pass True, if the administrator can edit messages of other users and can pin messages, channels only
#[serde(skip_serializing_if = "Option::is_none")]
pub can_edit_messages: Option<bool>,
/// Pass True, if the administrator can delete messages of other users
#[serde(skip_serializing_if = "Option::is_none")]
pub can_delete_messages: Option<bool>,
/// Pass True, if the administrator can manage voice chats
#[serde(skip_serializing_if = "Option::is_none")]
pub can_manage_voice_chats: Option<bool>,
/// Pass True, if the administrator can restrict, ban or unban chat members
#[serde(skip_serializing_if = "Option::is_none")]
pub can_restrict_members: Option<bool>,
/// Pass True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by him)
#[serde(skip_serializing_if = "Option::is_none")]
pub can_promote_members: Option<bool>,
/// Pass True, if the administrator can change chat title, photo and other settings
#[serde(skip_serializing_if = "Option::is_none")]
pub can_change_info: Option<bool>,
/// Pass True, if the administrator can invite new users to the chat
#[serde(skip_serializing_if = "Option::is_none")]
pub can_invite_users: Option<bool>,
/// Pass True, if the administrator can pin messages, supergroups only
#[serde(skip_serializing_if = "Option::is_none")]
pub can_pin_messages: Option<bool>,
}
impl<'a> PromoteChatMemberBuilder<'a> {
pub fn new(bot: &'a Bot, chat_id: i64, user_id: i64) -> Self {
Self {
bot,
chat_id,
user_id,
is_anonymous: None,
can_manage_chat: None,
can_post_messages: None,
can_edit_messages: None,
can_delete_messages: None,
can_manage_voice_chats: None,
can_restrict_members: None,
can_promote_members: None,
can_change_info: None,
can_invite_users: None,
can_pin_messages: None,
}
}
pub fn chat_id(mut self, chat_id: i64) -> Self {
self.chat_id = chat_id;
self
}
pub fn user_id(mut self, user_id: i64) -> Self {
self.user_id = user_id;
self
}
pub fn is_anonymous(mut self, is_anonymous: bool) -> Self {
self.is_anonymous = Some(is_anonymous);
self
}
pub fn can_manage_chat(mut self, can_manage_chat: bool) -> Self {
self.can_manage_chat = Some(can_manage_chat);
self
}
pub fn can_post_messages(mut self, can_post_messages: bool) -> Self {
self.can_post_messages = Some(can_post_messages);
self
}
pub fn can_edit_messages(mut self, can_edit_messages: bool) -> Self {
self.can_edit_messages = Some(can_edit_messages);
self
}
pub fn can_delete_messages(mut self, can_delete_messages: bool) -> Self {
self.can_delete_messages = Some(can_delete_messages);
self
}
pub fn can_manage_voice_chats(mut self, can_manage_voice_chats: bool) -> Self {
self.can_manage_voice_chats = Some(can_manage_voice_chats);
self
}
pub fn can_restrict_members(mut self, can_restrict_members: bool) -> Self {
self.can_restrict_members = Some(can_restrict_members);
self
}
pub fn can_promote_members(mut self, can_promote_members: bool) -> Self {
self.can_promote_members = Some(can_promote_members);
self
}
pub fn can_change_info(mut self, can_change_info: bool) -> Self {
self.can_change_info = Some(can_change_info);
self
}
pub fn can_invite_users(mut self, can_invite_users: bool) -> Self {
self.can_invite_users = Some(can_invite_users);
self
}
pub fn can_pin_messages(mut self, can_pin_messages: bool) -> Self {
self.can_pin_messages = Some(can_pin_messages);
self
}
pub async fn send(self) -> Result<bool> {
let form = serde_json::to_value(&self)?;
self.bot.get::<bool>("promoteChatMember", Some(&form)).await
}
}
| 39.039735 | 276 | 0.677354 |
bef5ce155b9eb9881aafbb786426c1fb8ab19c2d | 1,038 | html | HTML | manuscript/page-170/body.html | marvindanig/english-fairy-tales | a5e0e9221c651292f85882fab43ada47437f0cd4 | [
"BlueOak-1.0.0",
"MIT"
] | null | null | null | manuscript/page-170/body.html | marvindanig/english-fairy-tales | a5e0e9221c651292f85882fab43ada47437f0cd4 | [
"BlueOak-1.0.0",
"MIT"
] | null | null | null | manuscript/page-170/body.html | marvindanig/english-fairy-tales | a5e0e9221c651292f85882fab43ada47437f0cd4 | [
"BlueOak-1.0.0",
"MIT"
] | null | null | null | <div class="leaf "><div class="inner justify"><p class="no-indent ">woman all he had left, so that after their day's food, which cost what small spell Jack had by him, they were without a penny between them.</p><p>When the sun got low, the king's son said: “Jack, since we have no money, where can we lodge this night?”</p><p>But Jack replied: “Master, we'll do well enough, for I have an uncle lives within two miles of this place; he is a huge and monstrous giant with three heads; he'll fight five hundred men in armour, and make them to fly before him.” “Alas!” quoth the prince, “what shall we do there? He'll certainly chop us up at a mouthful. Nay, we are scarce enough to fill one of his hollow teeth!”</p><p class=" stretch-last-line ">“It is no matter for that,” quoth Jack; “I myself will go before and prepare the way for you; therefore stop here and wait till I return.” Jack then rode away at full speed, and coming to the gate of the castle, he knocked so loud that he made the neighbouring hills resound.</p></div> </div> | 1,038 | 1,038 | 0.737958 |
1f3a3b82fb45fb440b8068593a750d5a33c534ae | 290 | swift | Swift | crashes-duplicates/27805-swift-markasobjc.swift | greg/swift-compiler-crashes | c27c975aa95e7f0e511919fc508d24101c03a13b | [
"MIT"
] | null | null | null | crashes-duplicates/27805-swift-markasobjc.swift | greg/swift-compiler-crashes | c27c975aa95e7f0e511919fc508d24101c03a13b | [
"MIT"
] | null | null | null | crashes-duplicates/27805-swift-markasobjc.swift | greg/swift-compiler-crashes | c27c975aa95e7f0e511919fc508d24101c03a13b | [
"MIT"
] | null | null | null | // Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
struct B<T where B:a{
class A{
class A{class B{let d:A
class A{
struct S{enum b{struct B{{{
}}
class B{
class b{
class B
| 20.714286 | 87 | 0.731034 |
71ca203ae48304f27a9c9747855f277d478761d5 | 825 | ts | TypeScript | data/Gym/Gym Challenge/62.ts | Maxopoly/cards-database | cc075151f116676a59251f163eb33ef019b4f90f | [
"MIT"
] | 20 | 2020-03-10T11:51:37.000Z | 2022-03-31T08:31:26.000Z | data/Gym/Gym Challenge/62.ts | Maxopoly/cards-database | cc075151f116676a59251f163eb33ef019b4f90f | [
"MIT"
] | 81 | 2020-12-10T13:39:21.000Z | 2022-03-26T19:54:26.000Z | data/Gym/Gym Challenge/62.ts | Maxopoly/cards-database | cc075151f116676a59251f163eb33ef019b4f90f | [
"MIT"
] | 5 | 2021-02-12T15:48:29.000Z | 2022-02-09T12:25:24.000Z | import { Card } from '../../../interfaces'
import Set from '../Gym Challenge'
const card: Card = {
name: {
en: "Blaine's Growlithe",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
58,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Stoke",
},
effect: {
en: "Search your deck for a Energy card and attach it to Blaine's Growlithe. Shuffle your deck afterward.",
},
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Body Slam",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card
| 12.313433 | 111 | 0.522424 |
f01f9d9317aa7e9d59033c300105e008c93a9e93 | 318 | js | JavaScript | frontend/src/repository/ProfileRepository.js | TiggerMcNuggets/Travelr | 701aea49183104b4d126dfea178cd6490381715e | [
"CC0-1.0"
] | 1 | 2020-10-01T08:17:38.000Z | 2020-10-01T08:17:38.000Z | frontend/src/repository/ProfileRepository.js | TiggerMcNuggets/Travelr | 701aea49183104b4d126dfea178cd6490381715e | [
"CC0-1.0"
] | null | null | null | frontend/src/repository/ProfileRepository.js | TiggerMcNuggets/Travelr | 701aea49183104b4d126dfea178cd6490381715e | [
"CC0-1.0"
] | 1 | 2020-10-01T07:09:14.000Z | 2020-10-01T07:09:14.000Z |
import Repository from "./Repository";
export default {
// Gets a users profile with the provided id.
getProfile(id) {
return Repository.get(`/travellers/${id}`);
},
// Edits a users profile with valid data.
editProfile(payload, id) {
return Repository.put(`/travellers/${id}`, payload);
},
}
| 19.875 | 56 | 0.657233 |
fcb6bf76de0c19978dc8459ad78b35ee7961956c | 962 | asm | Assembly | Engine Hacks/MSS/asm/Enemy_Autolevel.asm | sme23/MekkahRestrictedHackComp1 | 1cc9d2fec557424f358b6bfa21f9f3bb6faf2978 | [
"CC0-1.0"
] | 3 | 2020-06-15T14:22:38.000Z | 2020-06-28T19:44:52.000Z | Wizardry/Necessary/ModularStatScreen/asm/Enemy_Autolevel.asm | sme23/WhatHeck | 746a2be83358aaa4e855182176b47c4808f2587a | [
"CC0-1.0"
] | null | null | null | Wizardry/Necessary/ModularStatScreen/asm/Enemy_Autolevel.asm | sme23/WhatHeck | 746a2be83358aaa4e855182176b47c4808f2587a | [
"CC0-1.0"
] | null | null | null | .thumb
.org 0x0
@jumped to from 2B9C4
@r0=(class) growth, r1=number of levels
push {r4,r14}
mov r4,r0
mul r4,r1
ldr r0,Growth_Options
mov r1,#0x1 @ is fixed mode even available
tst r0,r1
beq NormalGrowths
mov r1,#0x4 @ if it is on, does fixed mode affect enemy autolevelling
tst r0,r1
beq NormalGrowths
lsr r0,#0x10 @ event id
ldr r1,Check_Event_ID
mov r14,r1
.short 0xF800
cmp r0,#0x0
beq NormalGrowths
@Fixed growths mode
mov r0,#0x0
FixedLoop:
cmp r4,#100
blt GoBack
sub r4,#100
add r0,#1
b FixedLoop
NormalGrowths:
ldr r0,Generate_RN
mov r14,r0
mov r0,r4
cmp r4,#0
bge Label1
add r0,r4,#3
Label1:
asr r0,#2
.short 0xF800
mov r1,r0
ldr r0,Func_2B9A0
mov r14,r0
mov r0,r4
cmp r4,#0
bge Label2
add r0,r4,#7
Label2:
asr r0,#0x3
sub r0,r1,r0
add r0,r4
.short 0xF800
GoBack:
pop {r4}
pop {r1}
bx r1
.align
Check_Event_ID:
.long 0x08083DA8
Generate_RN:
.long 0x08000C80
Func_2B9A0:
.long 0x0802B9A0
Growth_Options:
@
| 13.742857 | 71 | 0.716216 |
d9eaba0f3078cfbf2914422f8a9130539f6a9219 | 1,208 | lua | Lua | test/syntax.lua | zhanglidong/lua | 3b4744ef7ad157bc316d96137f7289251c077f61 | [
"Zlib"
] | 16 | 2019-04-29T05:31:38.000Z | 2021-09-18T07:47:25.000Z | test/syntax.lua | zhanglidong/lua | 3b4744ef7ad157bc316d96137f7289251c077f61 | [
"Zlib"
] | 2 | 2019-05-18T04:59:39.000Z | 2019-05-26T08:43:15.000Z | test/syntax.lua | zhanglidong/lua | 3b4744ef7ad157bc316d96137f7289251c077f61 | [
"Zlib"
] | 1 | 2021-10-11T10:17:34.000Z | 2021-10-11T10:17:34.000Z | local test = {}
local string = require 'string'
function test.string()
assert(string.byte('\xc0') == 192)
assert(string.char(192, 193, 194) == '\xc0\xc1\xc2')
end
function test.table()
local t = {}
assert(#t == 0)
assert(t.test == nil)
assert(t[1] == nil)
assert(t['demo'] == nil)
local t = {'A', 'B', 'C', 'D', 'E'}
assert(#t == 5)
assert(t[0] == nil)
assert(t[1] == 'A')
assert(t[2] == 'B')
assert(t[3] == 'C')
assert(t[4] == 'D')
assert(t[5] == 'E')
assert(t[6] == nil)
t[4] = nil
t[5] = nil
assert(#t == 3)
local t = {
k1 = 123;
k2 = 'demo';
['k3'] = true;
}
assert(#t == 0)
assert(t['k1'] == 123)
assert(t.k2 == 'demo')
assert(t.k3 == true)
local t = {
k1 = 'vk1';
[-1] = 'v-1';
[0] = 'v0';
k2 = 'vk2';
[1] = 'v1';
[2] = 'v2';
k3 = 'vk3';
[3] = 'v3';
[4] = 'v4';
[5] = 'v5';
k4 = 'vk4';
}
assert(#t == 5)
assert(t.k1 == 'vk1')
assert(t.k2 == 'vk2')
assert(t.k3 == 'vk3')
assert(t.k4 == 'vk4')
assert(t[-1] == 'v-1')
assert(t[0] == 'v0')
assert(t[1] == 'v1')
assert(t[2] == 'v2')
assert(t[3] == 'v3')
assert(t[4] == 'v4')
assert(t[5] == 'v5')
local n = 0
for k, v in pairs(t) do
n = n + 1
end
assert(n == 11)
end
return test
| 16.777778 | 53 | 0.476821 |
80bfa11043c80f6d1b5c9737cfbc7e26a3b49e03 | 3,256 | sql | SQL | database/mudikoke.sql | RaihanDaffa/mudikokee | a80180846d6c309928bcd4cc54897b05dcd1d7e8 | [
"MIT"
] | null | null | null | database/mudikoke.sql | RaihanDaffa/mudikokee | a80180846d6c309928bcd4cc54897b05dcd1d7e8 | [
"MIT"
] | null | null | null | database/mudikoke.sql | RaihanDaffa/mudikokee | a80180846d6c309928bcd4cc54897b05dcd1d7e8 | [
"MIT"
] | null | null | null | -- phpMyAdmin SQL Dump
-- version 4.7.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 19, 2018 at 08:03 AM
-- Server version: 10.1.26-MariaDB
-- PHP Version: 7.1.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `mudikoke`
--
-- --------------------------------------------------------
--
-- Table structure for table `tcustomer`
--
CREATE TABLE `tcustomer` (
`id` int(11) NOT NULL,
`name` varchar(30) NOT NULL,
`address` varchar(30) NOT NULL,
`phone` int(11) NOT NULL,
`gender` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `treservation`
--
CREATE TABLE `treservation` (
`id` int(11) NOT NULL,
`reservation_code` int(11) NOT NULL,
`reservation_at` int(11) NOT NULL,
`reservation_date` varchar(30) NOT NULL,
`costumerid` int(11) NOT NULL,
`seat_code` int(11) NOT NULL,
`ruteid` int(11) NOT NULL,
`depart_at` int(11) NOT NULL,
`prince` varchar(30) NOT NULL,
`userid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `trute`
--
CREATE TABLE `trute` (
`id` int(11) NOT NULL,
`depart_at` int(11) NOT NULL,
`rute_form` varchar(60) NOT NULL,
`rute_to` varchar(60) NOT NULL,
`prince` varchar(30) NOT NULL,
`transportationid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `ttransportation`
--
CREATE TABLE `ttransportation` (
`id` int(11) NOT NULL,
`code` varchar(30) NOT NULL,
`description` varchar(300) NOT NULL,
`seat_qty` int(11) NOT NULL,
`transportation_typeid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `ttransportation_type`
--
CREATE TABLE `ttransportation_type` (
`id` int(11) NOT NULL,
`description` varchar(300) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tuser`
--
CREATE TABLE `tuser` (
`id` int(11) NOT NULL,
`username` varchar(10) NOT NULL,
`password` varchar(10) NOT NULL,
`fullname` varchar(30) NOT NULL,
`level` varchar(5) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `ttransportation`
--
ALTER TABLE `ttransportation`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ttransportation_type`
--
ALTER TABLE `ttransportation_type`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tuser`
--
ALTER TABLE `tuser`
ADD PRIMARY KEY (`id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
| 23.594203 | 67 | 0.620393 |
945105e9496e68860b5c707ebbecd509da905ec0 | 663 | kt | Kotlin | src/50_apply_scope_function.kt | quicklers/kotlinTutorials | 752615afe8e5c3564bed86481c9a8b066a330404 | [
"MIT"
] | 4 | 2021-12-06T09:13:34.000Z | 2022-01-11T13:25:12.000Z | src/50_apply_scope_function.kt | quicklers/kotlinTutorials | 752615afe8e5c3564bed86481c9a8b066a330404 | [
"MIT"
] | null | null | null | src/50_apply_scope_function.kt | quicklers/kotlinTutorials | 752615afe8e5c3564bed86481c9a8b066a330404 | [
"MIT"
] | 3 | 2021-11-20T15:59:50.000Z | 2021-11-20T16:28:25.000Z | class Person {
var name: String = ""
var age: Int = 0
}
fun main() {
/** Scope Function: 'apply'
Property 1: Refer to context object by using 'this'
Property 2: The return value is the 'context object' */
val person = Person().apply {
name = "Sriyank Siddhartha"
age = 26
}
with(person) {
println(name) // prints Sriyank Siddhartha
println(age) // prints 26
}
// Perform some other operations on 'person' object
person.also {
it.name = "Shreks from Smartherd"
println("New name: ${it.name}") // prints New name: Shreks from Smartherd
}
} | 24.555556 | 87 | 0.565611 |
608a0844b1f63942b863d0c9705d1a65b6e0651d | 4,558 | swift | Swift | KKFlyView/KKFlyView/Private/KKFlyViewModel.swift | onetys/KKFlyView | 0903c5e59dbba09d0ca5e908c0ee934df3894fb6 | [
"MIT"
] | null | null | null | KKFlyView/KKFlyView/Private/KKFlyViewModel.swift | onetys/KKFlyView | 0903c5e59dbba09d0ca5e908c0ee934df3894fb6 | [
"MIT"
] | null | null | null | KKFlyView/KKFlyView/Private/KKFlyViewModel.swift | onetys/KKFlyView | 0903c5e59dbba09d0ca5e908c0ee934df3894fb6 | [
"MIT"
] | 1 | 2021-10-11T02:30:24.000Z | 2021-10-11T02:30:24.000Z | //
// KKFlyViewModel.swift
// KKFlyViewModel
//
// Created by 王铁山 on 2017/3/11.
// Copyright © 2017年 kk. All rights reserved.
//
import Foundation
import UIKit
protocol KKFlyViewModelDelegate: NSObjectProtocol {
func close()
func reloadData()
}
/// 浮窗管理者
/// 通过此类可以编辑新的功能和事件,数据管理层
class KKFlyViewModel {
var viewType: KKFly.ViewType
var items: [KKFlyViewItem] = []
weak var delegate: KKFlyViewModelDelegate?
var onSelected: ((KKFlyViewItem)->Void)?
var project_key: String = "default"
var cacheAllNames: [String] {
get {
return (UserDefaults.standard.value(forKey: "com.onety.fly.\(project_key).allname") as? [String]) ?? []
}
set {
UserDefaults.standard.setValue(newValue, forKey: "com.onety.fly.\(project_key).allname")
}
}
var cacheShowingNames: [String] {
get {
return (UserDefaults.standard.value(forKey: "com.onety.fly.\(project_key).show") as? [String]) ?? []
}
set {
UserDefaults.standard.setValue(newValue, forKey: "com.onety.fly.\(project_key).show")
var result: [KKFlyViewItem] = []
for name in cacheShowingNames {
if let index = items.lastIndex(where: {$0.name == name}) {
result.append(items[index])
} else {
result.append(KKFlyViewItem.phItem())
}
}
showingItems = result
}
}
var showingItems: [KKFlyViewItem] = []
/// 是否正在设置
var setting: Bool = false
/// 是否为展开模式
var expending: Bool = false
/// 是否正在动画
var animating: Bool = false
/// 没有展开之前的 frame
var lastFrame: CGRect!
init(delegate: KKFlyViewModelDelegate, viewType: KKFly.ViewType, items: [KKFlyViewItem], project_key: String?) {
if let pk = project_key {
self.project_key = pk
}
self.viewType = viewType
self.delegate = delegate
self.items = items
// now
let nowNames: [String] = items.map({$0.name})
// cache all name
var cacheAllNames = self.cacheAllNames
if cacheAllNames.isEmpty {
cacheAllNames = nowNames
}
// cache
var cacheNames = cacheShowingNames
// cache empty, show all now
if cacheNames.isEmpty {
cacheNames = nowNames
}
// count less, add ph
if cacheNames.count < 6 {
let phName = KKFlyViewItem.phItem().name
for _ in 0..<(6-cacheNames.count) {
cacheNames.append(phName)
}
}
// delete abandoned
cacheNames = cacheNames.filter({KKFlyViewItem.isPHItem(name: $0) || nowNames.contains($0)})
// increase name
var addNames: [String] = nowNames.filter({!cacheAllNames.contains($0)})
cacheNames = cacheNames.map({ (name) -> String in
if KKFlyViewItem.isPHItem(name: name) && !addNames.isEmpty {
return addNames.popLast()!
} else {
return name
}
})
if cacheNames.count < 6 {
for _ in 0..<(6 - cacheNames.count) {
if !addNames.isEmpty {
cacheNames.append(addNames.popLast()!)
}
}
}
cacheShowingNames = cacheNames
cacheAllNames = nowNames
}
func updateShowingItems(items: [KKFlyViewItem]) {
self.cacheShowingNames = items.map({$0.name})
}
func selectedIndex(_ index: Int) {
guard !showingItems[index].isPHItem else { return }
onSelected?(showingItems[index])
delegate?.close()
}
func getValidPresentingVC() -> UIViewController? {
func getTopVC(_ base: UIViewController?) -> UIViewController? {
guard let vc = base else {return nil}
if let tabBar = vc as? UITabBarController {
return getTopVC(tabBar.selectedViewController)
} else if let na = vc as? UINavigationController {
return getTopVC(na.visibleViewController)
} else if let pre = vc.presentedViewController {
return getTopVC(pre)
} else {
return base
}
}
var resultWindow: UIWindow?
if let delegate = UIApplication.shared.delegate, let window = delegate.window {
resultWindow = window
} else {
resultWindow = UIApplication.shared.keyWindow
}
if let vc = resultWindow?.rootViewController {
return getTopVC(vc)
} else {
return nil
}
}
}
| 28.4875 | 115 | 0.578982 |
51aa35d590fc8d50c510d8541ce48ad00317b166 | 216 | kts | Kotlin | gradle-dsl/testData/parser/signingConfigModel/editConsoleReadPasswordElementsExpected.gradle.kts | phpc0de/idea-android | 79e20f027ca1d047b91aa7acd92fb71fa2968a09 | [
"Apache-2.0"
] | 831 | 2016-06-09T06:55:34.000Z | 2022-03-30T11:17:10.000Z | gradle-dsl/testData/parser/signingConfigModel/editConsoleReadPasswordElementsExpected.gradle.kts | phpc0de/idea-android | 79e20f027ca1d047b91aa7acd92fb71fa2968a09 | [
"Apache-2.0"
] | 19 | 2017-10-27T00:36:35.000Z | 2021-02-04T13:59:45.000Z | gradle-dsl/testData/parser/signingConfigModel/editConsoleReadPasswordElementsExpected.gradle.kts | phpc0de/idea-android | 79e20f027ca1d047b91aa7acd92fb71fa2968a09 | [
"Apache-2.0"
] | 210 | 2016-07-05T12:22:36.000Z | 2022-03-19T09:07:15.000Z | android {
signingConfigs {
create("release") {
storePassword = System.console().readLine("Another Keystore Password: ")
keyPassword = System.console().readLine("Another Key Password: ")
}
}
}
| 24 | 78 | 0.652778 |
279ce6d11ff153a9757d134d758d9ab49bc96db4 | 1,381 | css | CSS | src/Button.css | SikandarZameer/button | fc3755a46bdaee8cd3661d7af0109d0816e420b5 | [
"MIT"
] | null | null | null | src/Button.css | SikandarZameer/button | fc3755a46bdaee8cd3661d7af0109d0816e420b5 | [
"MIT"
] | null | null | null | src/Button.css | SikandarZameer/button | fc3755a46bdaee8cd3661d7af0109d0816e420b5 | [
"MIT"
] | null | null | null | :root {
--primary: #39a9db;
--warning: #f9dc5c;
--danger: #e84855;
--success: #abe188;
--white: #fdfdfd;
--dark: #181717;
}
.btn {
font-family: "Roboto", sans-serif;
font-weight: 400;
border-radius: 10px;
cursor: pointer;
transition: transform 0.3s ease;
}
.btn:hover {
transform: translateY(-3px);
}
/* Button Colors and Styles */
.btn--primary--solid {
background-color: var(--primary);
color: var(--white);
border: none;
}
.btn--warning--solid {
background-color: var(--warning);
color: var(--dark);
border: none;
}
.btn--danger--solid {
background-color: var(--danger);
color: var(--white);
border: none;
}
.btn--success--solid {
background-color: var(--success);
color: var(--white);
border: none;
}
.btn--primary--outline {
background-color: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.btn--warning--outline {
background-color: transparent;
border: 2px solid var(--warning);
color: var(--warning);
}
.btn--danger--outline {
background-color: transparent;
border: 2px solid var(--danger);
color: var(--danger);
}
.btn--success--outline {
background-color: transparent;
border: 2px solid var(--success);
color: var(--success);
}
/* Button Size */
.btn--medium {
padding: 10px 20px;
font-size: 18px;
}
.btn--large {
padding: 15px 30px;
font-size: 20px;
}
| 16.638554 | 36 | 0.635771 |
1670664180d109b17eed1c8023230c5a60ca6751 | 233 | h | C | FRLinkScrollView/FRLinkScrollView/FRSlideMenuController/FRSlideHorizontalLayout.h | fanrongQu/FRLinkScrollView | 2a77174539279bbca77aa33177c53ddf6444a23e | [
"MIT"
] | null | null | null | FRLinkScrollView/FRLinkScrollView/FRSlideMenuController/FRSlideHorizontalLayout.h | fanrongQu/FRLinkScrollView | 2a77174539279bbca77aa33177c53ddf6444a23e | [
"MIT"
] | null | null | null | FRLinkScrollView/FRLinkScrollView/FRSlideMenuController/FRSlideHorizontalLayout.h | fanrongQu/FRLinkScrollView | 2a77174539279bbca77aa33177c53ddf6444a23e | [
"MIT"
] | null | null | null | //
// FRHorizontalLayout.h
// NetEase News
//
// Created by 1860 on 16/6/15.
// Copyright © 2016年 FanrongQu. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface FRSlideHorizontalLayout : UICollectionViewFlowLayout
@end
| 16.642857 | 63 | 0.72103 |
0bd6238e292649c37065e505fa5cd2f09d04cc8a | 427 | js | JavaScript | page-objects/components/learnmore.js | anacosantos/test_architecture | 460a36dbb1e67a65517270d4e51b99ee0582a921 | [
"MIT"
] | null | null | null | page-objects/components/learnmore.js | anacosantos/test_architecture | 460a36dbb1e67a65517270d4e51b99ee0582a921 | [
"MIT"
] | null | null | null | page-objects/components/learnmore.js | anacosantos/test_architecture | 460a36dbb1e67a65517270d4e51b99ee0582a921 | [
"MIT"
] | null | null | null | class LearnMore {
constructor () {
this.beacheslement = element(by.xpath('/html/body/div[2]/div/h2'))
this.historylement = element(by.xpath('/html/body/div[2]/div/h2'))
this.skiingelement = element(by.xpath('/html/body/div[2]/div/h2'))
this.adventurelement = element(by.xpath('/html/body/div[2]/div/h2'))
this.familyelement = element(by.xpath('/html/body/div[2]/div/h2'))
}
}
module.exports = LearnMore
| 38.818182 | 72 | 0.676815 |
c59468605a2add824ca4b4b5b80dc8473b2e1247 | 1,761 | swift | Swift | Sources/SoundIODemo/sine/main.swift | thara/SoundIO | 35a99fd182a64a35f8af32833da4923d5ef7e7f8 | [
"MIT"
] | 1 | 2021-12-27T09:44:41.000Z | 2021-12-27T09:44:41.000Z | Sources/SoundIODemo/sine/main.swift | thara/SoundIO | 35a99fd182a64a35f8af32833da4923d5ef7e7f8 | [
"MIT"
] | null | null | null | Sources/SoundIODemo/sine/main.swift | thara/SoundIO | 35a99fd182a64a35f8af32833da4923d5ef7e7f8 | [
"MIT"
] | null | null | null | import Foundation
import SoundIO
var secondsOffset: Float = 0.0
func main() throws {
let soundio = try SoundIO()
try soundio.connect()
soundio.flushEvents()
let outputDeviceIndex = try soundio.defaultOutputDeviceIndex()
let device = try soundio.getOutputDevice(at: outputDeviceIndex)
print("Output device: \(device.name)")
let outstream = try OutStream(to: device)
outstream.format = .float32bitLittleEndian
outstream.writeCallback { (outstream, _, frameCountMax) in
let layout = outstream.layout
let secondsPerFrame = 1.0 / Float(outstream.sampleRate)
var framesLeft = frameCountMax
while 0 < framesLeft {
var frameCount = framesLeft
let areas = try! outstream.beginWriting(theNumberOf: &frameCount)
if frameCount == 0 {
break
}
let pitch: Float = 440.0
let radiansPerSecond = pitch * 2.0 * .pi
for frame in 0..<frameCount {
let sample = sin((secondsOffset + Float(frame) * secondsPerFrame) * radiansPerSecond)
for area in areas!.iterate(over: layout.channelCount) {
area.write(sample, stepBy: frame)
}
}
secondsOffset = (secondsOffset + secondsPerFrame * Float(frameCount)).truncatingRemainder(dividingBy: 1)
try! outstream.endWrite()
framesLeft -= frameCountMax
if framesLeft <= 0 {
break
}
}
}
try outstream.open()
try outstream.start()
while true {
soundio.waitEvents()
}
}
do {
try main()
} catch let error as SoundIOError {
print("Error: \(error)")
exit(EXIT_FAILURE)
}
| 27.952381 | 116 | 0.595684 |
85aca98bdd5af330472c218542ce7aeaea895001 | 199 | h | C | lib/abi/echo.h | dubmix3105/fudge | f30d2d80ca8820826374a432ec00ebbc57186628 | [
"MIT"
] | 1 | 2020-07-02T14:57:11.000Z | 2020-07-02T14:57:11.000Z | lib/abi/echo.h | dubmix3105/fudge | f30d2d80ca8820826374a432ec00ebbc57186628 | [
"MIT"
] | null | null | null | lib/abi/echo.h | dubmix3105/fudge | f30d2d80ca8820826374a432ec00ebbc57186628 | [
"MIT"
] | null | null | null | struct echo_buf
{
void *data;
unsigned int length;
};
union echo_arg
{
char *s;
int u;
struct echo_buf b;
};
void echo(unsigned int descriptor, char *s, union echo_arg *a);
| 10.473684 | 63 | 0.623116 |
22fd349bf7779b5d193328d7c0276f5767c9739e | 212 | h | C | KSMediaPlayer/Scripts/Classes/Main/Controller/ViewController.h | saeipi/KSMediaPlayer | da3dfa50fa5b0fdcc95a81cfff11b096cdb0e78f | [
"MIT"
] | 1 | 2021-05-26T02:00:37.000Z | 2021-05-26T02:00:37.000Z | KSMediaPlayer/Scripts/Classes/Main/Controller/ViewController.h | saeipi/KSMediaPlayer | da3dfa50fa5b0fdcc95a81cfff11b096cdb0e78f | [
"MIT"
] | null | null | null | KSMediaPlayer/Scripts/Classes/Main/Controller/ViewController.h | saeipi/KSMediaPlayer | da3dfa50fa5b0fdcc95a81cfff11b096cdb0e78f | [
"MIT"
] | 1 | 2021-05-26T02:00:38.000Z | 2021-05-26T02:00:38.000Z | //
// ViewController.h
// KSMediaPlayer
//
// Created by saeipi on 2020/5/7.
// Copyright © 2020 saeipi. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end
| 13.25 | 49 | 0.688679 |
7082e4f8b43b5e49686d88bfd2f82be019a5ba6f | 268 | h | C | ExGameLib/TextureManager.h | IWeidl/ExGameLib | 50e0b82710270494e9f17eb5cb988475830982c6 | [
"MIT"
] | null | null | null | ExGameLib/TextureManager.h | IWeidl/ExGameLib | 50e0b82710270494e9f17eb5cb988475830982c6 | [
"MIT"
] | 1 | 2021-08-16T04:37:02.000Z | 2021-08-16T04:38:34.000Z | ExGameLib/TextureManager.h | IWeidl/sfmlRL | 50e0b82710270494e9f17eb5cb988475830982c6 | [
"MIT"
] | null | null | null | #pragma once
#include <SFML/Graphics.hpp>
#include <nlohmann/json.hpp>
#include <iostream>
using json = nlohmann::ordered_json;
class TextureManager
{
public:
~TextureManager();
std::vector<sf::Texture*> textures;
void LoadTextures(json jsonData);
private:
};
| 14.888889 | 36 | 0.738806 |
7bb440081eb2f69d5a6e97de1230a44dd7535d84 | 1,430 | rb | Ruby | app/services/inspect_nested_folder_ingest.rb | duke-libraries/dul-hydra | 3b2c831262add9a02ddd45468327fcf6922e6957 | [
"BSD-3-Clause"
] | 8 | 2015-01-28T03:16:06.000Z | 2019-11-01T16:30:11.000Z | app/services/inspect_nested_folder_ingest.rb | duke-libraries/dul-hydra | 3b2c831262add9a02ddd45468327fcf6922e6957 | [
"BSD-3-Clause"
] | 425 | 2015-01-05T15:19:18.000Z | 2019-11-06T13:47:25.000Z | app/services/inspect_nested_folder_ingest.rb | duke-libraries/dul-hydra | 3b2c831262add9a02ddd45468327fcf6922e6957 | [
"BSD-3-Clause"
] | 1 | 2015-11-02T16:53:34.000Z | 2015-11-02T16:53:34.000Z | class InspectNestedFolderIngest
attr_accessor :results
attr_reader :scanner_config, :filepath
Results = Struct.new(:file_count, :exclusions, :content_model_stats, :filesystem)
def initialize(filepath, scanner_config={})
@scanner_config = scanner_config
@filepath = filepath
@results = Results.new
end
def call
inspect_filesystem
results
end
private
def inspect_filesystem
validate_filepath
scan_results = ScanFilesystem.new(filepath, scanner_config).call
results.file_count = scan_results.filesystem.file_count
results.exclusions = scan_results.exclusions
results.content_model_stats = content_model_stats(scan_results.filesystem)
results.filesystem = scan_results.filesystem
end
def scanner_configuration
configuration[:scanner]
end
def validate_filepath
raise DulHydra::BatchError, "#{filepath} not found or is not a directory" unless Dir.exist?(filepath)
raise DulHydra::BatchError, "#{filepath} is not readable" unless File.readable?(filepath)
end
def content_model_stats(filesystem)
collections = items = components = 0
filesystem.each do |n|
case ModelNestedFolderIngestContent.new(n).call
when 'Collection'
collections += 1
when 'Component'
items += 1
components += 1
end
end
{ collections: collections, items: items, components: components }
end
end
| 26.481481 | 105 | 0.723776 |
1fbc7291ac80357497670786cdc77604c7e62e26 | 227 | html | HTML | programacao-web/css/exemplos/padding/exemplo.html | ivocalado/material-ifal | 39836a8387f5f807c2d96b79262ac2ff9d012311 | [
"MIT"
] | 2 | 2018-08-09T20:28:27.000Z | 2021-11-08T09:00:16.000Z | programacao-web/css/exemplos/padding/exemplo.html | ivocalado/material-ifal | 39836a8387f5f807c2d96b79262ac2ff9d012311 | [
"MIT"
] | null | null | null | programacao-web/css/exemplos/padding/exemplo.html | ivocalado/material-ifal | 39836a8387f5f807c2d96b79262ac2ff9d012311 | [
"MIT"
] | null | null | null | <html>
<head>
<style type="text/css">
<!--
p {padding-left: 50px;
padding-top: 100px;
border-left-style:solid;
border-top-style:solid;
}
-->
</style>
</head>
<body>
<p>Um espaçamento esquerdo de 10%</p>
</body>
</html>
| 12.611111 | 37 | 0.625551 |
3b59428325d8bd2fbf61c0a05906098a279df48f | 305 | h | C | WindSDK/WindSDK.framework/Headers/WindIntersititialAdConnector.h | Sigmob/iOS-SDK | 4c56cb3b1d29b92d76dbe7019b968d3037cd16b7 | [
"MIT"
] | 2 | 2020-06-10T03:29:17.000Z | 2021-09-24T08:22:59.000Z | WindSDK/WindSDK.framework/Headers/WindIntersititialAdConnector.h | Sigmob/iOS-SDK | 4c56cb3b1d29b92d76dbe7019b968d3037cd16b7 | [
"MIT"
] | null | null | null | WindSDK/WindSDK.framework/Headers/WindIntersititialAdConnector.h | Sigmob/iOS-SDK | 4c56cb3b1d29b92d76dbe7019b968d3037cd16b7 | [
"MIT"
] | null | null | null | //
// WindRewardedVideoConnector.h
// WindSDK
//
// Created by Codi on 2021/4/20.
// Copyright © 2021 Codi. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol WindIntersititialAdConnector <WindAdConnector>
/**
* 广告关闭回调
*/
- (void)adapterDidClosed:(WADStrategy *)strategy;
@end
| 16.052632 | 56 | 0.708197 |
6b8877d5a0208382ac3c35dd1eb520039c3fe6fb | 877,564 | c | C | src/include/falconn/ffht/fht_avx.c | 1flei/FALCONN | abe6996fa7f7c2debbd04e41e2acb564f71f370f | [
"MIT"
] | 8 | 2020-07-18T18:49:43.000Z | 2022-02-13T13:34:51.000Z | src/include/falconn/ffht/fht_avx.c | 1flei/FALCONN | abe6996fa7f7c2debbd04e41e2acb564f71f370f | [
"MIT"
] | null | null | null | src/include/falconn/ffht/fht_avx.c | 1flei/FALCONN | abe6996fa7f7c2debbd04e41e2acb564f71f370f | [
"MIT"
] | 3 | 2020-07-06T08:16:50.000Z | 2021-02-17T02:39:23.000Z | #include "fht.h"
static inline void helper_float_1(float *buf);
static inline void helper_float_1(float *buf) {
for (int j = 0; j < 2; j += 2) {
for (int k = 0; k < 1; ++k) {
float u = buf[j + k];
float v = buf[j + k + 1];
buf[j + k] = u + v;
buf[j + k + 1] = u - v;
}
}
}
static inline void helper_float_2(float *buf);
static inline void helper_float_2(float *buf) {
for (int j = 0; j < 4; j += 2) {
for (int k = 0; k < 1; ++k) {
float u = buf[j + k];
float v = buf[j + k + 1];
buf[j + k] = u + v;
buf[j + k + 1] = u - v;
}
}
for (int j = 0; j < 4; j += 4) {
for (int k = 0; k < 2; ++k) {
float u = buf[j + k];
float v = buf[j + k + 2];
buf[j + k] = u + v;
buf[j + k + 2] = u - v;
}
}
}
static inline void helper_float_3(float *buf);
static inline void helper_float_3(float *buf) {
for (int j = 0; j < 8; j += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vmovups %%ymm0, (%0)\n"
:: "r"(buf + j) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
static inline void helper_float_4(float *buf);
static inline void helper_float_4(float *buf) {
for (int j = 0; j < 16; j += 16) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_float_5(float *buf);
static inline void helper_float_5(float *buf) {
for (int j = 0; j < 32; j += 32) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_float_6(float *buf);
static inline void helper_float_6(float *buf) {
for (int j = 0; j < 64; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_float_7_recursive(float *buf, int depth);
static inline void helper_float_7_recursive(float *buf, int depth) {
if (depth == 7) {
for (int j = 0; j < 128; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 128; j += 128) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_7(float *buf);
static inline void helper_float_7(float *buf) {
helper_float_7_recursive(buf, 7);
}
static inline void helper_float_8_recursive(float *buf, int depth);
static inline void helper_float_8_recursive(float *buf, int depth) {
if (depth == 6) {
for (int j = 0; j < 64; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 8) {
helper_float_8_recursive(buf + 0, 6);
helper_float_8_recursive(buf + 64, 6);
helper_float_8_recursive(buf + 128, 6);
helper_float_8_recursive(buf + 192, 6);
for (int j = 0; j < 256; j += 256) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_8(float *buf);
static inline void helper_float_8(float *buf) {
helper_float_8_recursive(buf, 8);
}
static inline void helper_float_9(float *buf);
static inline void helper_float_9(float *buf) {
for (int j = 0; j < 512; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_float_10_recursive(float *buf, int depth);
static inline void helper_float_10_recursive(float *buf, int depth) {
if (depth == 10) {
for (int j = 0; j < 1024; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 1024; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 1024; j += 1024) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_10(float *buf);
static inline void helper_float_10(float *buf) {
helper_float_10_recursive(buf, 10);
}
static inline void helper_float_11_recursive(float *buf, int depth);
static inline void helper_float_11_recursive(float *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_11(float *buf);
static inline void helper_float_11(float *buf) {
helper_float_11_recursive(buf, 11);
}
static inline void helper_float_12(float *buf);
static inline void helper_float_12(float *buf) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_float_13_recursive(float *buf, int depth);
static inline void helper_float_13_recursive(float *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 13) {
helper_float_13_recursive(buf + 0, 11);
helper_float_13_recursive(buf + 2048, 11);
helper_float_13_recursive(buf + 4096, 11);
helper_float_13_recursive(buf + 6144, 11);
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 2048; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_13(float *buf);
static inline void helper_float_13(float *buf) {
helper_float_13_recursive(buf, 13);
}
static inline void helper_float_14_recursive(float *buf, int depth);
static inline void helper_float_14_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_float_14_recursive(buf + 0, 12);
helper_float_14_recursive(buf + 4096, 12);
helper_float_14_recursive(buf + 8192, 12);
helper_float_14_recursive(buf + 12288, 12);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_14(float *buf);
static inline void helper_float_14(float *buf) {
helper_float_14_recursive(buf, 14);
}
static inline void helper_float_15_recursive(float *buf, int depth);
static inline void helper_float_15_recursive(float *buf, int depth) {
if (depth == 13) {
for (int j = 0; j < 8192; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_15_recursive(buf + 0, 13);
helper_float_15_recursive(buf + 8192, 13);
helper_float_15_recursive(buf + 16384, 13);
helper_float_15_recursive(buf + 24576, 13);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 8192; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_15(float *buf);
static inline void helper_float_15(float *buf) {
helper_float_15_recursive(buf, 15);
}
static inline void helper_float_16_recursive(float *buf, int depth);
static inline void helper_float_16_recursive(float *buf, int depth) {
if (depth == 13) {
for (int j = 0; j < 8192; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_float_16_recursive(buf + 0, 13);
helper_float_16_recursive(buf + 8192, 13);
helper_float_16_recursive(buf + 16384, 13);
helper_float_16_recursive(buf + 24576, 13);
helper_float_16_recursive(buf + 32768, 13);
helper_float_16_recursive(buf + 40960, 13);
helper_float_16_recursive(buf + 49152, 13);
helper_float_16_recursive(buf + 57344, 13);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 8192; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576), "r"(buf + j + k + 32768), "r"(buf + j + k + 40960), "r"(buf + j + k + 49152), "r"(buf + j + k + 57344) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_16(float *buf);
static inline void helper_float_16(float *buf) {
helper_float_16_recursive(buf, 16);
}
static inline void helper_float_17_recursive(float *buf, int depth);
static inline void helper_float_17_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_17_recursive(buf + 0, 12);
helper_float_17_recursive(buf + 4096, 12);
helper_float_17_recursive(buf + 8192, 12);
helper_float_17_recursive(buf + 12288, 12);
helper_float_17_recursive(buf + 16384, 12);
helper_float_17_recursive(buf + 20480, 12);
helper_float_17_recursive(buf + 24576, 12);
helper_float_17_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_float_17_recursive(buf + 0, 15);
helper_float_17_recursive(buf + 32768, 15);
helper_float_17_recursive(buf + 65536, 15);
helper_float_17_recursive(buf + 98304, 15);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_17(float *buf);
static inline void helper_float_17(float *buf) {
helper_float_17_recursive(buf, 17);
}
static inline void helper_float_18_recursive(float *buf, int depth);
static inline void helper_float_18_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_18_recursive(buf + 0, 12);
helper_float_18_recursive(buf + 4096, 12);
helper_float_18_recursive(buf + 8192, 12);
helper_float_18_recursive(buf + 12288, 12);
helper_float_18_recursive(buf + 16384, 12);
helper_float_18_recursive(buf + 20480, 12);
helper_float_18_recursive(buf + 24576, 12);
helper_float_18_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_18_recursive(buf + 0, 15);
helper_float_18_recursive(buf + 32768, 15);
helper_float_18_recursive(buf + 65536, 15);
helper_float_18_recursive(buf + 98304, 15);
helper_float_18_recursive(buf + 131072, 15);
helper_float_18_recursive(buf + 163840, 15);
helper_float_18_recursive(buf + 196608, 15);
helper_float_18_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_18(float *buf);
static inline void helper_float_18(float *buf) {
helper_float_18_recursive(buf, 18);
}
static inline void helper_float_19_recursive(float *buf, int depth);
static inline void helper_float_19_recursive(float *buf, int depth) {
if (depth == 13) {
for (int j = 0; j < 8192; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_float_19_recursive(buf + 0, 13);
helper_float_19_recursive(buf + 8192, 13);
helper_float_19_recursive(buf + 16384, 13);
helper_float_19_recursive(buf + 24576, 13);
helper_float_19_recursive(buf + 32768, 13);
helper_float_19_recursive(buf + 40960, 13);
helper_float_19_recursive(buf + 49152, 13);
helper_float_19_recursive(buf + 57344, 13);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 8192; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576), "r"(buf + j + k + 32768), "r"(buf + j + k + 40960), "r"(buf + j + k + 49152), "r"(buf + j + k + 57344) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 19) {
helper_float_19_recursive(buf + 0, 16);
helper_float_19_recursive(buf + 65536, 16);
helper_float_19_recursive(buf + 131072, 16);
helper_float_19_recursive(buf + 196608, 16);
helper_float_19_recursive(buf + 262144, 16);
helper_float_19_recursive(buf + 327680, 16);
helper_float_19_recursive(buf + 393216, 16);
helper_float_19_recursive(buf + 458752, 16);
for (int j = 0; j < 524288; j += 524288) {
for (int k = 0; k < 65536; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 65536), "r"(buf + j + k + 131072), "r"(buf + j + k + 196608), "r"(buf + j + k + 262144), "r"(buf + j + k + 327680), "r"(buf + j + k + 393216), "r"(buf + j + k + 458752) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_19(float *buf);
static inline void helper_float_19(float *buf) {
helper_float_19_recursive(buf, 19);
}
static inline void helper_float_20_recursive(float *buf, int depth);
static inline void helper_float_20_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_20_recursive(buf + 0, 12);
helper_float_20_recursive(buf + 4096, 12);
helper_float_20_recursive(buf + 8192, 12);
helper_float_20_recursive(buf + 12288, 12);
helper_float_20_recursive(buf + 16384, 12);
helper_float_20_recursive(buf + 20480, 12);
helper_float_20_recursive(buf + 24576, 12);
helper_float_20_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_20_recursive(buf + 0, 15);
helper_float_20_recursive(buf + 32768, 15);
helper_float_20_recursive(buf + 65536, 15);
helper_float_20_recursive(buf + 98304, 15);
helper_float_20_recursive(buf + 131072, 15);
helper_float_20_recursive(buf + 163840, 15);
helper_float_20_recursive(buf + 196608, 15);
helper_float_20_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_float_20_recursive(buf + 0, 18);
helper_float_20_recursive(buf + 262144, 18);
helper_float_20_recursive(buf + 524288, 18);
helper_float_20_recursive(buf + 786432, 18);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_20(float *buf);
static inline void helper_float_20(float *buf) {
helper_float_20_recursive(buf, 20);
}
static inline void helper_float_21_recursive(float *buf, int depth);
static inline void helper_float_21_recursive(float *buf, int depth) {
if (depth == 9) {
for (int j = 0; j < 512; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_float_21_recursive(buf + 0, 9);
helper_float_21_recursive(buf + 512, 9);
helper_float_21_recursive(buf + 1024, 9);
helper_float_21_recursive(buf + 1536, 9);
helper_float_21_recursive(buf + 2048, 9);
helper_float_21_recursive(buf + 2560, 9);
helper_float_21_recursive(buf + 3072, 9);
helper_float_21_recursive(buf + 3584, 9);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_21_recursive(buf + 0, 12);
helper_float_21_recursive(buf + 4096, 12);
helper_float_21_recursive(buf + 8192, 12);
helper_float_21_recursive(buf + 12288, 12);
helper_float_21_recursive(buf + 16384, 12);
helper_float_21_recursive(buf + 20480, 12);
helper_float_21_recursive(buf + 24576, 12);
helper_float_21_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_21_recursive(buf + 0, 15);
helper_float_21_recursive(buf + 32768, 15);
helper_float_21_recursive(buf + 65536, 15);
helper_float_21_recursive(buf + 98304, 15);
helper_float_21_recursive(buf + 131072, 15);
helper_float_21_recursive(buf + 163840, 15);
helper_float_21_recursive(buf + 196608, 15);
helper_float_21_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_21_recursive(buf + 0, 18);
helper_float_21_recursive(buf + 262144, 18);
helper_float_21_recursive(buf + 524288, 18);
helper_float_21_recursive(buf + 786432, 18);
helper_float_21_recursive(buf + 1048576, 18);
helper_float_21_recursive(buf + 1310720, 18);
helper_float_21_recursive(buf + 1572864, 18);
helper_float_21_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_21(float *buf);
static inline void helper_float_21(float *buf) {
helper_float_21_recursive(buf, 21);
}
static inline void helper_float_22_recursive(float *buf, int depth);
static inline void helper_float_22_recursive(float *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_float_22_recursive(buf + 0, 11);
helper_float_22_recursive(buf + 2048, 11);
helper_float_22_recursive(buf + 4096, 11);
helper_float_22_recursive(buf + 6144, 11);
helper_float_22_recursive(buf + 8192, 11);
helper_float_22_recursive(buf + 10240, 11);
helper_float_22_recursive(buf + 12288, 11);
helper_float_22_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_float_22_recursive(buf + 0, 14);
helper_float_22_recursive(buf + 16384, 14);
helper_float_22_recursive(buf + 32768, 14);
helper_float_22_recursive(buf + 49152, 14);
helper_float_22_recursive(buf + 65536, 14);
helper_float_22_recursive(buf + 81920, 14);
helper_float_22_recursive(buf + 98304, 14);
helper_float_22_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_float_22_recursive(buf + 0, 17);
helper_float_22_recursive(buf + 131072, 17);
helper_float_22_recursive(buf + 262144, 17);
helper_float_22_recursive(buf + 393216, 17);
helper_float_22_recursive(buf + 524288, 17);
helper_float_22_recursive(buf + 655360, 17);
helper_float_22_recursive(buf + 786432, 17);
helper_float_22_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 22) {
helper_float_22_recursive(buf + 0, 20);
helper_float_22_recursive(buf + 1048576, 20);
helper_float_22_recursive(buf + 2097152, 20);
helper_float_22_recursive(buf + 3145728, 20);
for (int j = 0; j < 4194304; j += 4194304) {
for (int k = 0; k < 1048576; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_22(float *buf);
static inline void helper_float_22(float *buf) {
helper_float_22_recursive(buf, 22);
}
static inline void helper_float_23_recursive(float *buf, int depth);
static inline void helper_float_23_recursive(float *buf, int depth) {
if (depth == 9) {
for (int j = 0; j < 512; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_float_23_recursive(buf + 0, 9);
helper_float_23_recursive(buf + 512, 9);
helper_float_23_recursive(buf + 1024, 9);
helper_float_23_recursive(buf + 1536, 9);
helper_float_23_recursive(buf + 2048, 9);
helper_float_23_recursive(buf + 2560, 9);
helper_float_23_recursive(buf + 3072, 9);
helper_float_23_recursive(buf + 3584, 9);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_23_recursive(buf + 0, 12);
helper_float_23_recursive(buf + 4096, 12);
helper_float_23_recursive(buf + 8192, 12);
helper_float_23_recursive(buf + 12288, 12);
helper_float_23_recursive(buf + 16384, 12);
helper_float_23_recursive(buf + 20480, 12);
helper_float_23_recursive(buf + 24576, 12);
helper_float_23_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_23_recursive(buf + 0, 15);
helper_float_23_recursive(buf + 32768, 15);
helper_float_23_recursive(buf + 65536, 15);
helper_float_23_recursive(buf + 98304, 15);
helper_float_23_recursive(buf + 131072, 15);
helper_float_23_recursive(buf + 163840, 15);
helper_float_23_recursive(buf + 196608, 15);
helper_float_23_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_23_recursive(buf + 0, 18);
helper_float_23_recursive(buf + 262144, 18);
helper_float_23_recursive(buf + 524288, 18);
helper_float_23_recursive(buf + 786432, 18);
helper_float_23_recursive(buf + 1048576, 18);
helper_float_23_recursive(buf + 1310720, 18);
helper_float_23_recursive(buf + 1572864, 18);
helper_float_23_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 23) {
helper_float_23_recursive(buf + 0, 21);
helper_float_23_recursive(buf + 2097152, 21);
helper_float_23_recursive(buf + 4194304, 21);
helper_float_23_recursive(buf + 6291456, 21);
for (int j = 0; j < 8388608; j += 8388608) {
for (int k = 0; k < 2097152; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_23(float *buf);
static inline void helper_float_23(float *buf) {
helper_float_23_recursive(buf, 23);
}
static inline void helper_float_24_recursive(float *buf, int depth);
static inline void helper_float_24_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_24_recursive(buf + 0, 12);
helper_float_24_recursive(buf + 4096, 12);
helper_float_24_recursive(buf + 8192, 12);
helper_float_24_recursive(buf + 12288, 12);
helper_float_24_recursive(buf + 16384, 12);
helper_float_24_recursive(buf + 20480, 12);
helper_float_24_recursive(buf + 24576, 12);
helper_float_24_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_24_recursive(buf + 0, 15);
helper_float_24_recursive(buf + 32768, 15);
helper_float_24_recursive(buf + 65536, 15);
helper_float_24_recursive(buf + 98304, 15);
helper_float_24_recursive(buf + 131072, 15);
helper_float_24_recursive(buf + 163840, 15);
helper_float_24_recursive(buf + 196608, 15);
helper_float_24_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_24_recursive(buf + 0, 18);
helper_float_24_recursive(buf + 262144, 18);
helper_float_24_recursive(buf + 524288, 18);
helper_float_24_recursive(buf + 786432, 18);
helper_float_24_recursive(buf + 1048576, 18);
helper_float_24_recursive(buf + 1310720, 18);
helper_float_24_recursive(buf + 1572864, 18);
helper_float_24_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_float_24_recursive(buf + 0, 21);
helper_float_24_recursive(buf + 2097152, 21);
helper_float_24_recursive(buf + 4194304, 21);
helper_float_24_recursive(buf + 6291456, 21);
helper_float_24_recursive(buf + 8388608, 21);
helper_float_24_recursive(buf + 10485760, 21);
helper_float_24_recursive(buf + 12582912, 21);
helper_float_24_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_24(float *buf);
static inline void helper_float_24(float *buf) {
helper_float_24_recursive(buf, 24);
}
static inline void helper_float_25_recursive(float *buf, int depth);
static inline void helper_float_25_recursive(float *buf, int depth) {
if (depth == 7) {
for (int j = 0; j < 128; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 128; j += 128) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 10) {
helper_float_25_recursive(buf + 0, 7);
helper_float_25_recursive(buf + 128, 7);
helper_float_25_recursive(buf + 256, 7);
helper_float_25_recursive(buf + 384, 7);
helper_float_25_recursive(buf + 512, 7);
helper_float_25_recursive(buf + 640, 7);
helper_float_25_recursive(buf + 768, 7);
helper_float_25_recursive(buf + 896, 7);
for (int j = 0; j < 1024; j += 1024) {
for (int k = 0; k < 128; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 128), "r"(buf + j + k + 256), "r"(buf + j + k + 384), "r"(buf + j + k + 512), "r"(buf + j + k + 640), "r"(buf + j + k + 768), "r"(buf + j + k + 896) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 13) {
helper_float_25_recursive(buf + 0, 10);
helper_float_25_recursive(buf + 1024, 10);
helper_float_25_recursive(buf + 2048, 10);
helper_float_25_recursive(buf + 3072, 10);
helper_float_25_recursive(buf + 4096, 10);
helper_float_25_recursive(buf + 5120, 10);
helper_float_25_recursive(buf + 6144, 10);
helper_float_25_recursive(buf + 7168, 10);
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 1024; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1024), "r"(buf + j + k + 2048), "r"(buf + j + k + 3072), "r"(buf + j + k + 4096), "r"(buf + j + k + 5120), "r"(buf + j + k + 6144), "r"(buf + j + k + 7168) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_float_25_recursive(buf + 0, 13);
helper_float_25_recursive(buf + 8192, 13);
helper_float_25_recursive(buf + 16384, 13);
helper_float_25_recursive(buf + 24576, 13);
helper_float_25_recursive(buf + 32768, 13);
helper_float_25_recursive(buf + 40960, 13);
helper_float_25_recursive(buf + 49152, 13);
helper_float_25_recursive(buf + 57344, 13);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 8192; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576), "r"(buf + j + k + 32768), "r"(buf + j + k + 40960), "r"(buf + j + k + 49152), "r"(buf + j + k + 57344) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 19) {
helper_float_25_recursive(buf + 0, 16);
helper_float_25_recursive(buf + 65536, 16);
helper_float_25_recursive(buf + 131072, 16);
helper_float_25_recursive(buf + 196608, 16);
helper_float_25_recursive(buf + 262144, 16);
helper_float_25_recursive(buf + 327680, 16);
helper_float_25_recursive(buf + 393216, 16);
helper_float_25_recursive(buf + 458752, 16);
for (int j = 0; j < 524288; j += 524288) {
for (int k = 0; k < 65536; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 65536), "r"(buf + j + k + 131072), "r"(buf + j + k + 196608), "r"(buf + j + k + 262144), "r"(buf + j + k + 327680), "r"(buf + j + k + 393216), "r"(buf + j + k + 458752) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 22) {
helper_float_25_recursive(buf + 0, 19);
helper_float_25_recursive(buf + 524288, 19);
helper_float_25_recursive(buf + 1048576, 19);
helper_float_25_recursive(buf + 1572864, 19);
helper_float_25_recursive(buf + 2097152, 19);
helper_float_25_recursive(buf + 2621440, 19);
helper_float_25_recursive(buf + 3145728, 19);
helper_float_25_recursive(buf + 3670016, 19);
for (int j = 0; j < 4194304; j += 4194304) {
for (int k = 0; k < 524288; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 524288), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1572864), "r"(buf + j + k + 2097152), "r"(buf + j + k + 2621440), "r"(buf + j + k + 3145728), "r"(buf + j + k + 3670016) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 25) {
helper_float_25_recursive(buf + 0, 22);
helper_float_25_recursive(buf + 4194304, 22);
helper_float_25_recursive(buf + 8388608, 22);
helper_float_25_recursive(buf + 12582912, 22);
helper_float_25_recursive(buf + 16777216, 22);
helper_float_25_recursive(buf + 20971520, 22);
helper_float_25_recursive(buf + 25165824, 22);
helper_float_25_recursive(buf + 29360128, 22);
for (int j = 0; j < 33554432; j += 33554432) {
for (int k = 0; k < 4194304; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4194304), "r"(buf + j + k + 8388608), "r"(buf + j + k + 12582912), "r"(buf + j + k + 16777216), "r"(buf + j + k + 20971520), "r"(buf + j + k + 25165824), "r"(buf + j + k + 29360128) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_25(float *buf);
static inline void helper_float_25(float *buf) {
helper_float_25_recursive(buf, 25);
}
static inline void helper_float_26_recursive(float *buf, int depth);
static inline void helper_float_26_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_26_recursive(buf + 0, 12);
helper_float_26_recursive(buf + 4096, 12);
helper_float_26_recursive(buf + 8192, 12);
helper_float_26_recursive(buf + 12288, 12);
helper_float_26_recursive(buf + 16384, 12);
helper_float_26_recursive(buf + 20480, 12);
helper_float_26_recursive(buf + 24576, 12);
helper_float_26_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_26_recursive(buf + 0, 15);
helper_float_26_recursive(buf + 32768, 15);
helper_float_26_recursive(buf + 65536, 15);
helper_float_26_recursive(buf + 98304, 15);
helper_float_26_recursive(buf + 131072, 15);
helper_float_26_recursive(buf + 163840, 15);
helper_float_26_recursive(buf + 196608, 15);
helper_float_26_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_26_recursive(buf + 0, 18);
helper_float_26_recursive(buf + 262144, 18);
helper_float_26_recursive(buf + 524288, 18);
helper_float_26_recursive(buf + 786432, 18);
helper_float_26_recursive(buf + 1048576, 18);
helper_float_26_recursive(buf + 1310720, 18);
helper_float_26_recursive(buf + 1572864, 18);
helper_float_26_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_float_26_recursive(buf + 0, 21);
helper_float_26_recursive(buf + 2097152, 21);
helper_float_26_recursive(buf + 4194304, 21);
helper_float_26_recursive(buf + 6291456, 21);
helper_float_26_recursive(buf + 8388608, 21);
helper_float_26_recursive(buf + 10485760, 21);
helper_float_26_recursive(buf + 12582912, 21);
helper_float_26_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 26) {
helper_float_26_recursive(buf + 0, 24);
helper_float_26_recursive(buf + 16777216, 24);
helper_float_26_recursive(buf + 33554432, 24);
helper_float_26_recursive(buf + 50331648, 24);
for (int j = 0; j < 67108864; j += 67108864) {
for (int k = 0; k < 16777216; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16777216), "r"(buf + j + k + 33554432), "r"(buf + j + k + 50331648) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_26(float *buf);
static inline void helper_float_26(float *buf) {
helper_float_26_recursive(buf, 26);
}
static inline void helper_float_27_recursive(float *buf, int depth);
static inline void helper_float_27_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_27_recursive(buf + 0, 12);
helper_float_27_recursive(buf + 4096, 12);
helper_float_27_recursive(buf + 8192, 12);
helper_float_27_recursive(buf + 12288, 12);
helper_float_27_recursive(buf + 16384, 12);
helper_float_27_recursive(buf + 20480, 12);
helper_float_27_recursive(buf + 24576, 12);
helper_float_27_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_27_recursive(buf + 0, 15);
helper_float_27_recursive(buf + 32768, 15);
helper_float_27_recursive(buf + 65536, 15);
helper_float_27_recursive(buf + 98304, 15);
helper_float_27_recursive(buf + 131072, 15);
helper_float_27_recursive(buf + 163840, 15);
helper_float_27_recursive(buf + 196608, 15);
helper_float_27_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_27_recursive(buf + 0, 18);
helper_float_27_recursive(buf + 262144, 18);
helper_float_27_recursive(buf + 524288, 18);
helper_float_27_recursive(buf + 786432, 18);
helper_float_27_recursive(buf + 1048576, 18);
helper_float_27_recursive(buf + 1310720, 18);
helper_float_27_recursive(buf + 1572864, 18);
helper_float_27_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_float_27_recursive(buf + 0, 21);
helper_float_27_recursive(buf + 2097152, 21);
helper_float_27_recursive(buf + 4194304, 21);
helper_float_27_recursive(buf + 6291456, 21);
helper_float_27_recursive(buf + 8388608, 21);
helper_float_27_recursive(buf + 10485760, 21);
helper_float_27_recursive(buf + 12582912, 21);
helper_float_27_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 27) {
helper_float_27_recursive(buf + 0, 24);
helper_float_27_recursive(buf + 16777216, 24);
helper_float_27_recursive(buf + 33554432, 24);
helper_float_27_recursive(buf + 50331648, 24);
helper_float_27_recursive(buf + 67108864, 24);
helper_float_27_recursive(buf + 83886080, 24);
helper_float_27_recursive(buf + 100663296, 24);
helper_float_27_recursive(buf + 117440512, 24);
for (int j = 0; j < 134217728; j += 134217728) {
for (int k = 0; k < 16777216; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16777216), "r"(buf + j + k + 33554432), "r"(buf + j + k + 50331648), "r"(buf + j + k + 67108864), "r"(buf + j + k + 83886080), "r"(buf + j + k + 100663296), "r"(buf + j + k + 117440512) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_27(float *buf);
static inline void helper_float_27(float *buf) {
helper_float_27_recursive(buf, 27);
}
static inline void helper_float_28_recursive(float *buf, int depth);
static inline void helper_float_28_recursive(float *buf, int depth) {
if (depth == 7) {
for (int j = 0; j < 128; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 128; j += 128) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 10) {
helper_float_28_recursive(buf + 0, 7);
helper_float_28_recursive(buf + 128, 7);
helper_float_28_recursive(buf + 256, 7);
helper_float_28_recursive(buf + 384, 7);
helper_float_28_recursive(buf + 512, 7);
helper_float_28_recursive(buf + 640, 7);
helper_float_28_recursive(buf + 768, 7);
helper_float_28_recursive(buf + 896, 7);
for (int j = 0; j < 1024; j += 1024) {
for (int k = 0; k < 128; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 128), "r"(buf + j + k + 256), "r"(buf + j + k + 384), "r"(buf + j + k + 512), "r"(buf + j + k + 640), "r"(buf + j + k + 768), "r"(buf + j + k + 896) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 13) {
helper_float_28_recursive(buf + 0, 10);
helper_float_28_recursive(buf + 1024, 10);
helper_float_28_recursive(buf + 2048, 10);
helper_float_28_recursive(buf + 3072, 10);
helper_float_28_recursive(buf + 4096, 10);
helper_float_28_recursive(buf + 5120, 10);
helper_float_28_recursive(buf + 6144, 10);
helper_float_28_recursive(buf + 7168, 10);
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 1024; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1024), "r"(buf + j + k + 2048), "r"(buf + j + k + 3072), "r"(buf + j + k + 4096), "r"(buf + j + k + 5120), "r"(buf + j + k + 6144), "r"(buf + j + k + 7168) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_float_28_recursive(buf + 0, 13);
helper_float_28_recursive(buf + 8192, 13);
helper_float_28_recursive(buf + 16384, 13);
helper_float_28_recursive(buf + 24576, 13);
helper_float_28_recursive(buf + 32768, 13);
helper_float_28_recursive(buf + 40960, 13);
helper_float_28_recursive(buf + 49152, 13);
helper_float_28_recursive(buf + 57344, 13);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 8192; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576), "r"(buf + j + k + 32768), "r"(buf + j + k + 40960), "r"(buf + j + k + 49152), "r"(buf + j + k + 57344) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 19) {
helper_float_28_recursive(buf + 0, 16);
helper_float_28_recursive(buf + 65536, 16);
helper_float_28_recursive(buf + 131072, 16);
helper_float_28_recursive(buf + 196608, 16);
helper_float_28_recursive(buf + 262144, 16);
helper_float_28_recursive(buf + 327680, 16);
helper_float_28_recursive(buf + 393216, 16);
helper_float_28_recursive(buf + 458752, 16);
for (int j = 0; j < 524288; j += 524288) {
for (int k = 0; k < 65536; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 65536), "r"(buf + j + k + 131072), "r"(buf + j + k + 196608), "r"(buf + j + k + 262144), "r"(buf + j + k + 327680), "r"(buf + j + k + 393216), "r"(buf + j + k + 458752) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 22) {
helper_float_28_recursive(buf + 0, 19);
helper_float_28_recursive(buf + 524288, 19);
helper_float_28_recursive(buf + 1048576, 19);
helper_float_28_recursive(buf + 1572864, 19);
helper_float_28_recursive(buf + 2097152, 19);
helper_float_28_recursive(buf + 2621440, 19);
helper_float_28_recursive(buf + 3145728, 19);
helper_float_28_recursive(buf + 3670016, 19);
for (int j = 0; j < 4194304; j += 4194304) {
for (int k = 0; k < 524288; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 524288), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1572864), "r"(buf + j + k + 2097152), "r"(buf + j + k + 2621440), "r"(buf + j + k + 3145728), "r"(buf + j + k + 3670016) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 25) {
helper_float_28_recursive(buf + 0, 22);
helper_float_28_recursive(buf + 4194304, 22);
helper_float_28_recursive(buf + 8388608, 22);
helper_float_28_recursive(buf + 12582912, 22);
helper_float_28_recursive(buf + 16777216, 22);
helper_float_28_recursive(buf + 20971520, 22);
helper_float_28_recursive(buf + 25165824, 22);
helper_float_28_recursive(buf + 29360128, 22);
for (int j = 0; j < 33554432; j += 33554432) {
for (int k = 0; k < 4194304; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4194304), "r"(buf + j + k + 8388608), "r"(buf + j + k + 12582912), "r"(buf + j + k + 16777216), "r"(buf + j + k + 20971520), "r"(buf + j + k + 25165824), "r"(buf + j + k + 29360128) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 28) {
helper_float_28_recursive(buf + 0, 25);
helper_float_28_recursive(buf + 33554432, 25);
helper_float_28_recursive(buf + 67108864, 25);
helper_float_28_recursive(buf + 100663296, 25);
helper_float_28_recursive(buf + 134217728, 25);
helper_float_28_recursive(buf + 167772160, 25);
helper_float_28_recursive(buf + 201326592, 25);
helper_float_28_recursive(buf + 234881024, 25);
for (int j = 0; j < 268435456; j += 268435456) {
for (int k = 0; k < 33554432; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 33554432), "r"(buf + j + k + 67108864), "r"(buf + j + k + 100663296), "r"(buf + j + k + 134217728), "r"(buf + j + k + 167772160), "r"(buf + j + k + 201326592), "r"(buf + j + k + 234881024) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_28(float *buf);
static inline void helper_float_28(float *buf) {
helper_float_28_recursive(buf, 28);
}
static inline void helper_float_29_recursive(float *buf, int depth);
static inline void helper_float_29_recursive(float *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_29_recursive(buf + 0, 12);
helper_float_29_recursive(buf + 4096, 12);
helper_float_29_recursive(buf + 8192, 12);
helper_float_29_recursive(buf + 12288, 12);
helper_float_29_recursive(buf + 16384, 12);
helper_float_29_recursive(buf + 20480, 12);
helper_float_29_recursive(buf + 24576, 12);
helper_float_29_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_29_recursive(buf + 0, 15);
helper_float_29_recursive(buf + 32768, 15);
helper_float_29_recursive(buf + 65536, 15);
helper_float_29_recursive(buf + 98304, 15);
helper_float_29_recursive(buf + 131072, 15);
helper_float_29_recursive(buf + 163840, 15);
helper_float_29_recursive(buf + 196608, 15);
helper_float_29_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_29_recursive(buf + 0, 18);
helper_float_29_recursive(buf + 262144, 18);
helper_float_29_recursive(buf + 524288, 18);
helper_float_29_recursive(buf + 786432, 18);
helper_float_29_recursive(buf + 1048576, 18);
helper_float_29_recursive(buf + 1310720, 18);
helper_float_29_recursive(buf + 1572864, 18);
helper_float_29_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_float_29_recursive(buf + 0, 21);
helper_float_29_recursive(buf + 2097152, 21);
helper_float_29_recursive(buf + 4194304, 21);
helper_float_29_recursive(buf + 6291456, 21);
helper_float_29_recursive(buf + 8388608, 21);
helper_float_29_recursive(buf + 10485760, 21);
helper_float_29_recursive(buf + 12582912, 21);
helper_float_29_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 27) {
helper_float_29_recursive(buf + 0, 24);
helper_float_29_recursive(buf + 16777216, 24);
helper_float_29_recursive(buf + 33554432, 24);
helper_float_29_recursive(buf + 50331648, 24);
helper_float_29_recursive(buf + 67108864, 24);
helper_float_29_recursive(buf + 83886080, 24);
helper_float_29_recursive(buf + 100663296, 24);
helper_float_29_recursive(buf + 117440512, 24);
for (int j = 0; j < 134217728; j += 134217728) {
for (int k = 0; k < 16777216; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16777216), "r"(buf + j + k + 33554432), "r"(buf + j + k + 50331648), "r"(buf + j + k + 67108864), "r"(buf + j + k + 83886080), "r"(buf + j + k + 100663296), "r"(buf + j + k + 117440512) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 29) {
helper_float_29_recursive(buf + 0, 27);
helper_float_29_recursive(buf + 134217728, 27);
helper_float_29_recursive(buf + 268435456, 27);
helper_float_29_recursive(buf + 402653184, 27);
for (int j = 0; j < 536870912; j += 536870912) {
for (int k = 0; k < 134217728; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vmovups %%ymm0, (%0)\n"
"vmovups %%ymm1, (%1)\n"
"vmovups %%ymm2, (%2)\n"
"vmovups %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 134217728), "r"(buf + j + k + 268435456), "r"(buf + j + k + 402653184) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_29(float *buf);
static inline void helper_float_29(float *buf) {
helper_float_29_recursive(buf, 29);
}
static inline void helper_float_30_recursive(float *buf, int depth);
static inline void helper_float_30_recursive(float *buf, int depth) {
if (depth == 6) {
for (int j = 0; j < 64; j += 64) {
for (int k = 0; k < 8; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vpermilps $160, %%ymm0, %%ymm8\n"
"vpermilps $245, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm0\n"
"vpermilps $160, %%ymm1, %%ymm8\n"
"vpermilps $245, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm1\n"
"vpermilps $160, %%ymm2, %%ymm8\n"
"vpermilps $245, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm2\n"
"vpermilps $160, %%ymm3, %%ymm8\n"
"vpermilps $245, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm3\n"
"vpermilps $160, %%ymm4, %%ymm8\n"
"vpermilps $245, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm4\n"
"vpermilps $160, %%ymm5, %%ymm8\n"
"vpermilps $245, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm5\n"
"vpermilps $160, %%ymm6, %%ymm8\n"
"vpermilps $245, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm6\n"
"vpermilps $160, %%ymm7, %%ymm8\n"
"vpermilps $245, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubps %%ymm11, %%ymm8, %%ymm7\n"
"vpermilps $68, %%ymm0, %%ymm8\n"
"vpermilps $238, %%ymm0, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm0\n"
"vpermilps $68, %%ymm1, %%ymm8\n"
"vpermilps $238, %%ymm1, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm1\n"
"vpermilps $68, %%ymm2, %%ymm8\n"
"vpermilps $238, %%ymm2, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm2\n"
"vpermilps $68, %%ymm3, %%ymm8\n"
"vpermilps $238, %%ymm3, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm3\n"
"vpermilps $68, %%ymm4, %%ymm8\n"
"vpermilps $238, %%ymm4, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm4\n"
"vpermilps $68, %%ymm5, %%ymm8\n"
"vpermilps $238, %%ymm5, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm5\n"
"vpermilps $68, %%ymm6, %%ymm8\n"
"vpermilps $238, %%ymm6, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm6\n"
"vpermilps $68, %%ymm7, %%ymm8\n"
"vpermilps $238, %%ymm7, %%ymm9\n"
"vxorps %%ymm10, %%ymm10, %%ymm10\n"
"vsubps %%ymm9, %%ymm10, %%ymm11\n"
"vblendps $204, %%ymm11, %%ymm9, %%ymm12\n"
"vaddps %%ymm8, %%ymm12, %%ymm7\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm0, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm0, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm0\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm1, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm1, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm1\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm2, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm2, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm2\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm3, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm3, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm3\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm4, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm4, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm4\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm5, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm5, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm5\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm6, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm6, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm6\n"
"vxorps %%ymm8, %%ymm8, %%ymm8\n"
"vsubps %%ymm7, %%ymm8, %%ymm9\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm10\n"
"vperm2f128 $49, %%ymm9, %%ymm7, %%ymm11\n"
"vaddps %%ymm10, %%ymm11, %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8), "r"(buf + j + k + 16), "r"(buf + j + k + 24), "r"(buf + j + k + 32), "r"(buf + j + k + 40), "r"(buf + j + k + 48), "r"(buf + j + k + 56) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 9) {
helper_float_30_recursive(buf + 0, 6);
helper_float_30_recursive(buf + 64, 6);
helper_float_30_recursive(buf + 128, 6);
helper_float_30_recursive(buf + 192, 6);
helper_float_30_recursive(buf + 256, 6);
helper_float_30_recursive(buf + 320, 6);
helper_float_30_recursive(buf + 384, 6);
helper_float_30_recursive(buf + 448, 6);
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 64; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 64), "r"(buf + j + k + 128), "r"(buf + j + k + 192), "r"(buf + j + k + 256), "r"(buf + j + k + 320), "r"(buf + j + k + 384), "r"(buf + j + k + 448) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_float_30_recursive(buf + 0, 9);
helper_float_30_recursive(buf + 512, 9);
helper_float_30_recursive(buf + 1024, 9);
helper_float_30_recursive(buf + 1536, 9);
helper_float_30_recursive(buf + 2048, 9);
helper_float_30_recursive(buf + 2560, 9);
helper_float_30_recursive(buf + 3072, 9);
helper_float_30_recursive(buf + 3584, 9);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_float_30_recursive(buf + 0, 12);
helper_float_30_recursive(buf + 4096, 12);
helper_float_30_recursive(buf + 8192, 12);
helper_float_30_recursive(buf + 12288, 12);
helper_float_30_recursive(buf + 16384, 12);
helper_float_30_recursive(buf + 20480, 12);
helper_float_30_recursive(buf + 24576, 12);
helper_float_30_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_float_30_recursive(buf + 0, 15);
helper_float_30_recursive(buf + 32768, 15);
helper_float_30_recursive(buf + 65536, 15);
helper_float_30_recursive(buf + 98304, 15);
helper_float_30_recursive(buf + 131072, 15);
helper_float_30_recursive(buf + 163840, 15);
helper_float_30_recursive(buf + 196608, 15);
helper_float_30_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_float_30_recursive(buf + 0, 18);
helper_float_30_recursive(buf + 262144, 18);
helper_float_30_recursive(buf + 524288, 18);
helper_float_30_recursive(buf + 786432, 18);
helper_float_30_recursive(buf + 1048576, 18);
helper_float_30_recursive(buf + 1310720, 18);
helper_float_30_recursive(buf + 1572864, 18);
helper_float_30_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_float_30_recursive(buf + 0, 21);
helper_float_30_recursive(buf + 2097152, 21);
helper_float_30_recursive(buf + 4194304, 21);
helper_float_30_recursive(buf + 6291456, 21);
helper_float_30_recursive(buf + 8388608, 21);
helper_float_30_recursive(buf + 10485760, 21);
helper_float_30_recursive(buf + 12582912, 21);
helper_float_30_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 27) {
helper_float_30_recursive(buf + 0, 24);
helper_float_30_recursive(buf + 16777216, 24);
helper_float_30_recursive(buf + 33554432, 24);
helper_float_30_recursive(buf + 50331648, 24);
helper_float_30_recursive(buf + 67108864, 24);
helper_float_30_recursive(buf + 83886080, 24);
helper_float_30_recursive(buf + 100663296, 24);
helper_float_30_recursive(buf + 117440512, 24);
for (int j = 0; j < 134217728; j += 134217728) {
for (int k = 0; k < 16777216; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16777216), "r"(buf + j + k + 33554432), "r"(buf + j + k + 50331648), "r"(buf + j + k + 67108864), "r"(buf + j + k + 83886080), "r"(buf + j + k + 100663296), "r"(buf + j + k + 117440512) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 30) {
helper_float_30_recursive(buf + 0, 27);
helper_float_30_recursive(buf + 134217728, 27);
helper_float_30_recursive(buf + 268435456, 27);
helper_float_30_recursive(buf + 402653184, 27);
helper_float_30_recursive(buf + 536870912, 27);
helper_float_30_recursive(buf + 671088640, 27);
helper_float_30_recursive(buf + 805306368, 27);
helper_float_30_recursive(buf + 939524096, 27);
for (int j = 0; j < 1073741824; j += 1073741824) {
for (int k = 0; k < 134217728; k += 8) {
__asm__ volatile (
"vmovups (%0), %%ymm0\n"
"vmovups (%1), %%ymm1\n"
"vmovups (%2), %%ymm2\n"
"vmovups (%3), %%ymm3\n"
"vmovups (%4), %%ymm4\n"
"vmovups (%5), %%ymm5\n"
"vmovups (%6), %%ymm6\n"
"vmovups (%7), %%ymm7\n"
"vaddps %%ymm1, %%ymm0, %%ymm8\n"
"vsubps %%ymm1, %%ymm0, %%ymm9\n"
"vaddps %%ymm3, %%ymm2, %%ymm10\n"
"vsubps %%ymm3, %%ymm2, %%ymm11\n"
"vaddps %%ymm5, %%ymm4, %%ymm12\n"
"vsubps %%ymm5, %%ymm4, %%ymm13\n"
"vaddps %%ymm7, %%ymm6, %%ymm14\n"
"vsubps %%ymm7, %%ymm6, %%ymm15\n"
"vaddps %%ymm10, %%ymm8, %%ymm0\n"
"vsubps %%ymm10, %%ymm8, %%ymm2\n"
"vaddps %%ymm11, %%ymm9, %%ymm1\n"
"vsubps %%ymm11, %%ymm9, %%ymm3\n"
"vaddps %%ymm14, %%ymm12, %%ymm4\n"
"vsubps %%ymm14, %%ymm12, %%ymm6\n"
"vaddps %%ymm15, %%ymm13, %%ymm5\n"
"vsubps %%ymm15, %%ymm13, %%ymm7\n"
"vaddps %%ymm4, %%ymm0, %%ymm8\n"
"vsubps %%ymm4, %%ymm0, %%ymm12\n"
"vaddps %%ymm5, %%ymm1, %%ymm9\n"
"vsubps %%ymm5, %%ymm1, %%ymm13\n"
"vaddps %%ymm6, %%ymm2, %%ymm10\n"
"vsubps %%ymm6, %%ymm2, %%ymm14\n"
"vaddps %%ymm7, %%ymm3, %%ymm11\n"
"vsubps %%ymm7, %%ymm3, %%ymm15\n"
"vmovups %%ymm8, (%0)\n"
"vmovups %%ymm9, (%1)\n"
"vmovups %%ymm10, (%2)\n"
"vmovups %%ymm11, (%3)\n"
"vmovups %%ymm12, (%4)\n"
"vmovups %%ymm13, (%5)\n"
"vmovups %%ymm14, (%6)\n"
"vmovups %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 134217728), "r"(buf + j + k + 268435456), "r"(buf + j + k + 402653184), "r"(buf + j + k + 536870912), "r"(buf + j + k + 671088640), "r"(buf + j + k + 805306368), "r"(buf + j + k + 939524096) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_float_30(float *buf);
static inline void helper_float_30(float *buf) {
helper_float_30_recursive(buf, 30);
}
int fht_float(float *buf, int log_n) {
if (log_n == 0) {
return 0;
}
if (log_n == 1) {
helper_float_1(buf);
return 0;
}
if (log_n == 2) {
helper_float_2(buf);
return 0;
}
if (log_n == 3) {
helper_float_3(buf);
return 0;
}
if (log_n == 4) {
helper_float_4(buf);
return 0;
}
if (log_n == 5) {
helper_float_5(buf);
return 0;
}
if (log_n == 6) {
helper_float_6(buf);
return 0;
}
if (log_n == 7) {
helper_float_7(buf);
return 0;
}
if (log_n == 8) {
helper_float_8(buf);
return 0;
}
if (log_n == 9) {
helper_float_9(buf);
return 0;
}
if (log_n == 10) {
helper_float_10(buf);
return 0;
}
if (log_n == 11) {
helper_float_11(buf);
return 0;
}
if (log_n == 12) {
helper_float_12(buf);
return 0;
}
if (log_n == 13) {
helper_float_13(buf);
return 0;
}
if (log_n == 14) {
helper_float_14(buf);
return 0;
}
if (log_n == 15) {
helper_float_15(buf);
return 0;
}
if (log_n == 16) {
helper_float_16(buf);
return 0;
}
if (log_n == 17) {
helper_float_17(buf);
return 0;
}
if (log_n == 18) {
helper_float_18(buf);
return 0;
}
if (log_n == 19) {
helper_float_19(buf);
return 0;
}
if (log_n == 20) {
helper_float_20(buf);
return 0;
}
if (log_n == 21) {
helper_float_21(buf);
return 0;
}
if (log_n == 22) {
helper_float_22(buf);
return 0;
}
if (log_n == 23) {
helper_float_23(buf);
return 0;
}
if (log_n == 24) {
helper_float_24(buf);
return 0;
}
if (log_n == 25) {
helper_float_25(buf);
return 0;
}
if (log_n == 26) {
helper_float_26(buf);
return 0;
}
if (log_n == 27) {
helper_float_27(buf);
return 0;
}
if (log_n == 28) {
helper_float_28(buf);
return 0;
}
if (log_n == 29) {
helper_float_29(buf);
return 0;
}
if (log_n == 30) {
helper_float_30(buf);
return 0;
}
return 1;
}
static inline void helper_double_1(double *buf);
static inline void helper_double_1(double *buf) {
for (int j = 0; j < 2; j += 2) {
for (int k = 0; k < 1; ++k) {
double u = buf[j + k];
double v = buf[j + k + 1];
buf[j + k] = u + v;
buf[j + k + 1] = u - v;
}
}
}
static inline void helper_double_2(double *buf);
static inline void helper_double_2(double *buf) {
for (int j = 0; j < 4; j += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vmovupd %%ymm0, (%0)\n"
:: "r"(buf + j) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
static inline void helper_double_3(double *buf);
static inline void helper_double_3(double *buf) {
for (int j = 0; j < 8; j += 8) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_4_recursive(double *buf, int depth);
static inline void helper_double_4_recursive(double *buf, int depth) {
if (depth == 4) {
for (int j = 0; j < 16; j += 16) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_4(double *buf);
static inline void helper_double_4(double *buf) {
helper_double_4_recursive(buf, 4);
}
static inline void helper_double_5(double *buf);
static inline void helper_double_5(double *buf) {
for (int j = 0; j < 32; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_6(double *buf);
static inline void helper_double_6(double *buf) {
for (int j = 0; j < 64; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 64; j += 64) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_7(double *buf);
static inline void helper_double_7(double *buf) {
for (int j = 0; j < 128; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 128; j += 128) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_8(double *buf);
static inline void helper_double_8(double *buf) {
for (int j = 0; j < 256; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 256; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_9(double *buf);
static inline void helper_double_9(double *buf) {
for (int j = 0; j < 512; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_10(double *buf);
static inline void helper_double_10(double *buf) {
for (int j = 0; j < 1024; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 1024; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 1024; j += 1024) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_11(double *buf);
static inline void helper_double_11(double *buf) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
}
static inline void helper_double_12_recursive(double *buf, int depth);
static inline void helper_double_12_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_double_12_recursive(buf + 0, 11);
helper_double_12_recursive(buf + 2048, 11);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_12(double *buf);
static inline void helper_double_12(double *buf) {
helper_double_12_recursive(buf, 12);
}
static inline void helper_double_13_recursive(double *buf, int depth);
static inline void helper_double_13_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 13) {
helper_double_13_recursive(buf + 0, 11);
helper_double_13_recursive(buf + 2048, 11);
helper_double_13_recursive(buf + 4096, 11);
helper_double_13_recursive(buf + 6144, 11);
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_13(double *buf);
static inline void helper_double_13(double *buf) {
helper_double_13_recursive(buf, 13);
}
static inline void helper_double_14_recursive(double *buf, int depth);
static inline void helper_double_14_recursive(double *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_14_recursive(buf + 0, 12);
helper_double_14_recursive(buf + 4096, 12);
helper_double_14_recursive(buf + 8192, 12);
helper_double_14_recursive(buf + 12288, 12);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 4096; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_14(double *buf);
static inline void helper_double_14(double *buf) {
helper_double_14_recursive(buf, 14);
}
static inline void helper_double_15_recursive(double *buf, int depth);
static inline void helper_double_15_recursive(double *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_double_15_recursive(buf + 0, 12);
helper_double_15_recursive(buf + 4096, 12);
helper_double_15_recursive(buf + 8192, 12);
helper_double_15_recursive(buf + 12288, 12);
helper_double_15_recursive(buf + 16384, 12);
helper_double_15_recursive(buf + 20480, 12);
helper_double_15_recursive(buf + 24576, 12);
helper_double_15_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_15(double *buf);
static inline void helper_double_15(double *buf) {
helper_double_15_recursive(buf, 15);
}
static inline void helper_double_16_recursive(double *buf, int depth);
static inline void helper_double_16_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_16_recursive(buf + 0, 11);
helper_double_16_recursive(buf + 2048, 11);
helper_double_16_recursive(buf + 4096, 11);
helper_double_16_recursive(buf + 6144, 11);
helper_double_16_recursive(buf + 8192, 11);
helper_double_16_recursive(buf + 10240, 11);
helper_double_16_recursive(buf + 12288, 11);
helper_double_16_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_double_16_recursive(buf + 0, 14);
helper_double_16_recursive(buf + 16384, 14);
helper_double_16_recursive(buf + 32768, 14);
helper_double_16_recursive(buf + 49152, 14);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_16(double *buf);
static inline void helper_double_16(double *buf) {
helper_double_16_recursive(buf, 16);
}
static inline void helper_double_17_recursive(double *buf, int depth);
static inline void helper_double_17_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_17_recursive(buf + 0, 11);
helper_double_17_recursive(buf + 2048, 11);
helper_double_17_recursive(buf + 4096, 11);
helper_double_17_recursive(buf + 6144, 11);
helper_double_17_recursive(buf + 8192, 11);
helper_double_17_recursive(buf + 10240, 11);
helper_double_17_recursive(buf + 12288, 11);
helper_double_17_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_17_recursive(buf + 0, 14);
helper_double_17_recursive(buf + 16384, 14);
helper_double_17_recursive(buf + 32768, 14);
helper_double_17_recursive(buf + 49152, 14);
helper_double_17_recursive(buf + 65536, 14);
helper_double_17_recursive(buf + 81920, 14);
helper_double_17_recursive(buf + 98304, 14);
helper_double_17_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_17(double *buf);
static inline void helper_double_17(double *buf) {
helper_double_17_recursive(buf, 17);
}
static inline void helper_double_18_recursive(double *buf, int depth);
static inline void helper_double_18_recursive(double *buf, int depth) {
if (depth == 12) {
for (int j = 0; j < 4096; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_double_18_recursive(buf + 0, 12);
helper_double_18_recursive(buf + 4096, 12);
helper_double_18_recursive(buf + 8192, 12);
helper_double_18_recursive(buf + 12288, 12);
helper_double_18_recursive(buf + 16384, 12);
helper_double_18_recursive(buf + 20480, 12);
helper_double_18_recursive(buf + 24576, 12);
helper_double_18_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_double_18_recursive(buf + 0, 15);
helper_double_18_recursive(buf + 32768, 15);
helper_double_18_recursive(buf + 65536, 15);
helper_double_18_recursive(buf + 98304, 15);
helper_double_18_recursive(buf + 131072, 15);
helper_double_18_recursive(buf + 163840, 15);
helper_double_18_recursive(buf + 196608, 15);
helper_double_18_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_18(double *buf);
static inline void helper_double_18(double *buf) {
helper_double_18_recursive(buf, 18);
}
static inline void helper_double_19_recursive(double *buf, int depth);
static inline void helper_double_19_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_19_recursive(buf + 0, 11);
helper_double_19_recursive(buf + 2048, 11);
helper_double_19_recursive(buf + 4096, 11);
helper_double_19_recursive(buf + 6144, 11);
helper_double_19_recursive(buf + 8192, 11);
helper_double_19_recursive(buf + 10240, 11);
helper_double_19_recursive(buf + 12288, 11);
helper_double_19_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_19_recursive(buf + 0, 14);
helper_double_19_recursive(buf + 16384, 14);
helper_double_19_recursive(buf + 32768, 14);
helper_double_19_recursive(buf + 49152, 14);
helper_double_19_recursive(buf + 65536, 14);
helper_double_19_recursive(buf + 81920, 14);
helper_double_19_recursive(buf + 98304, 14);
helper_double_19_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 19) {
helper_double_19_recursive(buf + 0, 17);
helper_double_19_recursive(buf + 131072, 17);
helper_double_19_recursive(buf + 262144, 17);
helper_double_19_recursive(buf + 393216, 17);
for (int j = 0; j < 524288; j += 524288) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_19(double *buf);
static inline void helper_double_19(double *buf) {
helper_double_19_recursive(buf, 19);
}
static inline void helper_double_20_recursive(double *buf, int depth);
static inline void helper_double_20_recursive(double *buf, int depth) {
if (depth == 9) {
for (int j = 0; j < 512; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_double_20_recursive(buf + 0, 9);
helper_double_20_recursive(buf + 512, 9);
helper_double_20_recursive(buf + 1024, 9);
helper_double_20_recursive(buf + 1536, 9);
helper_double_20_recursive(buf + 2048, 9);
helper_double_20_recursive(buf + 2560, 9);
helper_double_20_recursive(buf + 3072, 9);
helper_double_20_recursive(buf + 3584, 9);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_double_20_recursive(buf + 0, 12);
helper_double_20_recursive(buf + 4096, 12);
helper_double_20_recursive(buf + 8192, 12);
helper_double_20_recursive(buf + 12288, 12);
helper_double_20_recursive(buf + 16384, 12);
helper_double_20_recursive(buf + 20480, 12);
helper_double_20_recursive(buf + 24576, 12);
helper_double_20_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_double_20_recursive(buf + 0, 15);
helper_double_20_recursive(buf + 32768, 15);
helper_double_20_recursive(buf + 65536, 15);
helper_double_20_recursive(buf + 98304, 15);
helper_double_20_recursive(buf + 131072, 15);
helper_double_20_recursive(buf + 163840, 15);
helper_double_20_recursive(buf + 196608, 15);
helper_double_20_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_20_recursive(buf + 0, 18);
helper_double_20_recursive(buf + 262144, 18);
helper_double_20_recursive(buf + 524288, 18);
helper_double_20_recursive(buf + 786432, 18);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 262144; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_20(double *buf);
static inline void helper_double_20(double *buf) {
helper_double_20_recursive(buf, 20);
}
static inline void helper_double_21_recursive(double *buf, int depth);
static inline void helper_double_21_recursive(double *buf, int depth) {
if (depth == 7) {
for (int j = 0; j < 128; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 128; j += 128) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 10) {
helper_double_21_recursive(buf + 0, 7);
helper_double_21_recursive(buf + 128, 7);
helper_double_21_recursive(buf + 256, 7);
helper_double_21_recursive(buf + 384, 7);
helper_double_21_recursive(buf + 512, 7);
helper_double_21_recursive(buf + 640, 7);
helper_double_21_recursive(buf + 768, 7);
helper_double_21_recursive(buf + 896, 7);
for (int j = 0; j < 1024; j += 1024) {
for (int k = 0; k < 128; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 128), "r"(buf + j + k + 256), "r"(buf + j + k + 384), "r"(buf + j + k + 512), "r"(buf + j + k + 640), "r"(buf + j + k + 768), "r"(buf + j + k + 896) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 13) {
helper_double_21_recursive(buf + 0, 10);
helper_double_21_recursive(buf + 1024, 10);
helper_double_21_recursive(buf + 2048, 10);
helper_double_21_recursive(buf + 3072, 10);
helper_double_21_recursive(buf + 4096, 10);
helper_double_21_recursive(buf + 5120, 10);
helper_double_21_recursive(buf + 6144, 10);
helper_double_21_recursive(buf + 7168, 10);
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 1024; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1024), "r"(buf + j + k + 2048), "r"(buf + j + k + 3072), "r"(buf + j + k + 4096), "r"(buf + j + k + 5120), "r"(buf + j + k + 6144), "r"(buf + j + k + 7168) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_double_21_recursive(buf + 0, 13);
helper_double_21_recursive(buf + 8192, 13);
helper_double_21_recursive(buf + 16384, 13);
helper_double_21_recursive(buf + 24576, 13);
helper_double_21_recursive(buf + 32768, 13);
helper_double_21_recursive(buf + 40960, 13);
helper_double_21_recursive(buf + 49152, 13);
helper_double_21_recursive(buf + 57344, 13);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 8192; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576), "r"(buf + j + k + 32768), "r"(buf + j + k + 40960), "r"(buf + j + k + 49152), "r"(buf + j + k + 57344) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 19) {
helper_double_21_recursive(buf + 0, 16);
helper_double_21_recursive(buf + 65536, 16);
helper_double_21_recursive(buf + 131072, 16);
helper_double_21_recursive(buf + 196608, 16);
helper_double_21_recursive(buf + 262144, 16);
helper_double_21_recursive(buf + 327680, 16);
helper_double_21_recursive(buf + 393216, 16);
helper_double_21_recursive(buf + 458752, 16);
for (int j = 0; j < 524288; j += 524288) {
for (int k = 0; k < 65536; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 65536), "r"(buf + j + k + 131072), "r"(buf + j + k + 196608), "r"(buf + j + k + 262144), "r"(buf + j + k + 327680), "r"(buf + j + k + 393216), "r"(buf + j + k + 458752) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_double_21_recursive(buf + 0, 19);
helper_double_21_recursive(buf + 524288, 19);
helper_double_21_recursive(buf + 1048576, 19);
helper_double_21_recursive(buf + 1572864, 19);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 524288; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 524288), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1572864) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_21(double *buf);
static inline void helper_double_21(double *buf) {
helper_double_21_recursive(buf, 21);
}
static inline void helper_double_22_recursive(double *buf, int depth);
static inline void helper_double_22_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_22_recursive(buf + 0, 11);
helper_double_22_recursive(buf + 2048, 11);
helper_double_22_recursive(buf + 4096, 11);
helper_double_22_recursive(buf + 6144, 11);
helper_double_22_recursive(buf + 8192, 11);
helper_double_22_recursive(buf + 10240, 11);
helper_double_22_recursive(buf + 12288, 11);
helper_double_22_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_22_recursive(buf + 0, 14);
helper_double_22_recursive(buf + 16384, 14);
helper_double_22_recursive(buf + 32768, 14);
helper_double_22_recursive(buf + 49152, 14);
helper_double_22_recursive(buf + 65536, 14);
helper_double_22_recursive(buf + 81920, 14);
helper_double_22_recursive(buf + 98304, 14);
helper_double_22_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_22_recursive(buf + 0, 17);
helper_double_22_recursive(buf + 131072, 17);
helper_double_22_recursive(buf + 262144, 17);
helper_double_22_recursive(buf + 393216, 17);
helper_double_22_recursive(buf + 524288, 17);
helper_double_22_recursive(buf + 655360, 17);
helper_double_22_recursive(buf + 786432, 17);
helper_double_22_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 22) {
helper_double_22_recursive(buf + 0, 20);
helper_double_22_recursive(buf + 1048576, 20);
helper_double_22_recursive(buf + 2097152, 20);
helper_double_22_recursive(buf + 3145728, 20);
for (int j = 0; j < 4194304; j += 4194304) {
for (int k = 0; k < 1048576; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_22(double *buf);
static inline void helper_double_22(double *buf) {
helper_double_22_recursive(buf, 22);
}
static inline void helper_double_23_recursive(double *buf, int depth);
static inline void helper_double_23_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_23_recursive(buf + 0, 11);
helper_double_23_recursive(buf + 2048, 11);
helper_double_23_recursive(buf + 4096, 11);
helper_double_23_recursive(buf + 6144, 11);
helper_double_23_recursive(buf + 8192, 11);
helper_double_23_recursive(buf + 10240, 11);
helper_double_23_recursive(buf + 12288, 11);
helper_double_23_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_23_recursive(buf + 0, 14);
helper_double_23_recursive(buf + 16384, 14);
helper_double_23_recursive(buf + 32768, 14);
helper_double_23_recursive(buf + 49152, 14);
helper_double_23_recursive(buf + 65536, 14);
helper_double_23_recursive(buf + 81920, 14);
helper_double_23_recursive(buf + 98304, 14);
helper_double_23_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_23_recursive(buf + 0, 17);
helper_double_23_recursive(buf + 131072, 17);
helper_double_23_recursive(buf + 262144, 17);
helper_double_23_recursive(buf + 393216, 17);
helper_double_23_recursive(buf + 524288, 17);
helper_double_23_recursive(buf + 655360, 17);
helper_double_23_recursive(buf + 786432, 17);
helper_double_23_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 23) {
helper_double_23_recursive(buf + 0, 20);
helper_double_23_recursive(buf + 1048576, 20);
helper_double_23_recursive(buf + 2097152, 20);
helper_double_23_recursive(buf + 3145728, 20);
helper_double_23_recursive(buf + 4194304, 20);
helper_double_23_recursive(buf + 5242880, 20);
helper_double_23_recursive(buf + 6291456, 20);
helper_double_23_recursive(buf + 7340032, 20);
for (int j = 0; j < 8388608; j += 8388608) {
for (int k = 0; k < 1048576; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728), "r"(buf + j + k + 4194304), "r"(buf + j + k + 5242880), "r"(buf + j + k + 6291456), "r"(buf + j + k + 7340032) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_23(double *buf);
static inline void helper_double_23(double *buf) {
helper_double_23_recursive(buf, 23);
}
static inline void helper_double_24_recursive(double *buf, int depth);
static inline void helper_double_24_recursive(double *buf, int depth) {
if (depth == 10) {
for (int j = 0; j < 1024; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 1024; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 1024; j += 1024) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 13) {
helper_double_24_recursive(buf + 0, 10);
helper_double_24_recursive(buf + 1024, 10);
helper_double_24_recursive(buf + 2048, 10);
helper_double_24_recursive(buf + 3072, 10);
helper_double_24_recursive(buf + 4096, 10);
helper_double_24_recursive(buf + 5120, 10);
helper_double_24_recursive(buf + 6144, 10);
helper_double_24_recursive(buf + 7168, 10);
for (int j = 0; j < 8192; j += 8192) {
for (int k = 0; k < 1024; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1024), "r"(buf + j + k + 2048), "r"(buf + j + k + 3072), "r"(buf + j + k + 4096), "r"(buf + j + k + 5120), "r"(buf + j + k + 6144), "r"(buf + j + k + 7168) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 16) {
helper_double_24_recursive(buf + 0, 13);
helper_double_24_recursive(buf + 8192, 13);
helper_double_24_recursive(buf + 16384, 13);
helper_double_24_recursive(buf + 24576, 13);
helper_double_24_recursive(buf + 32768, 13);
helper_double_24_recursive(buf + 40960, 13);
helper_double_24_recursive(buf + 49152, 13);
helper_double_24_recursive(buf + 57344, 13);
for (int j = 0; j < 65536; j += 65536) {
for (int k = 0; k < 8192; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8192), "r"(buf + j + k + 16384), "r"(buf + j + k + 24576), "r"(buf + j + k + 32768), "r"(buf + j + k + 40960), "r"(buf + j + k + 49152), "r"(buf + j + k + 57344) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 19) {
helper_double_24_recursive(buf + 0, 16);
helper_double_24_recursive(buf + 65536, 16);
helper_double_24_recursive(buf + 131072, 16);
helper_double_24_recursive(buf + 196608, 16);
helper_double_24_recursive(buf + 262144, 16);
helper_double_24_recursive(buf + 327680, 16);
helper_double_24_recursive(buf + 393216, 16);
helper_double_24_recursive(buf + 458752, 16);
for (int j = 0; j < 524288; j += 524288) {
for (int k = 0; k < 65536; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 65536), "r"(buf + j + k + 131072), "r"(buf + j + k + 196608), "r"(buf + j + k + 262144), "r"(buf + j + k + 327680), "r"(buf + j + k + 393216), "r"(buf + j + k + 458752) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 22) {
helper_double_24_recursive(buf + 0, 19);
helper_double_24_recursive(buf + 524288, 19);
helper_double_24_recursive(buf + 1048576, 19);
helper_double_24_recursive(buf + 1572864, 19);
helper_double_24_recursive(buf + 2097152, 19);
helper_double_24_recursive(buf + 2621440, 19);
helper_double_24_recursive(buf + 3145728, 19);
helper_double_24_recursive(buf + 3670016, 19);
for (int j = 0; j < 4194304; j += 4194304) {
for (int k = 0; k < 524288; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 524288), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1572864), "r"(buf + j + k + 2097152), "r"(buf + j + k + 2621440), "r"(buf + j + k + 3145728), "r"(buf + j + k + 3670016) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_double_24_recursive(buf + 0, 22);
helper_double_24_recursive(buf + 4194304, 22);
helper_double_24_recursive(buf + 8388608, 22);
helper_double_24_recursive(buf + 12582912, 22);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 4194304; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4194304), "r"(buf + j + k + 8388608), "r"(buf + j + k + 12582912) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_24(double *buf);
static inline void helper_double_24(double *buf) {
helper_double_24_recursive(buf, 24);
}
static inline void helper_double_25_recursive(double *buf, int depth);
static inline void helper_double_25_recursive(double *buf, int depth) {
if (depth == 8) {
for (int j = 0; j < 256; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 256; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 11) {
helper_double_25_recursive(buf + 0, 8);
helper_double_25_recursive(buf + 256, 8);
helper_double_25_recursive(buf + 512, 8);
helper_double_25_recursive(buf + 768, 8);
helper_double_25_recursive(buf + 1024, 8);
helper_double_25_recursive(buf + 1280, 8);
helper_double_25_recursive(buf + 1536, 8);
helper_double_25_recursive(buf + 1792, 8);
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_25_recursive(buf + 0, 11);
helper_double_25_recursive(buf + 2048, 11);
helper_double_25_recursive(buf + 4096, 11);
helper_double_25_recursive(buf + 6144, 11);
helper_double_25_recursive(buf + 8192, 11);
helper_double_25_recursive(buf + 10240, 11);
helper_double_25_recursive(buf + 12288, 11);
helper_double_25_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_25_recursive(buf + 0, 14);
helper_double_25_recursive(buf + 16384, 14);
helper_double_25_recursive(buf + 32768, 14);
helper_double_25_recursive(buf + 49152, 14);
helper_double_25_recursive(buf + 65536, 14);
helper_double_25_recursive(buf + 81920, 14);
helper_double_25_recursive(buf + 98304, 14);
helper_double_25_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_25_recursive(buf + 0, 17);
helper_double_25_recursive(buf + 131072, 17);
helper_double_25_recursive(buf + 262144, 17);
helper_double_25_recursive(buf + 393216, 17);
helper_double_25_recursive(buf + 524288, 17);
helper_double_25_recursive(buf + 655360, 17);
helper_double_25_recursive(buf + 786432, 17);
helper_double_25_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 23) {
helper_double_25_recursive(buf + 0, 20);
helper_double_25_recursive(buf + 1048576, 20);
helper_double_25_recursive(buf + 2097152, 20);
helper_double_25_recursive(buf + 3145728, 20);
helper_double_25_recursive(buf + 4194304, 20);
helper_double_25_recursive(buf + 5242880, 20);
helper_double_25_recursive(buf + 6291456, 20);
helper_double_25_recursive(buf + 7340032, 20);
for (int j = 0; j < 8388608; j += 8388608) {
for (int k = 0; k < 1048576; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728), "r"(buf + j + k + 4194304), "r"(buf + j + k + 5242880), "r"(buf + j + k + 6291456), "r"(buf + j + k + 7340032) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 25) {
helper_double_25_recursive(buf + 0, 23);
helper_double_25_recursive(buf + 8388608, 23);
helper_double_25_recursive(buf + 16777216, 23);
helper_double_25_recursive(buf + 25165824, 23);
for (int j = 0; j < 33554432; j += 33554432) {
for (int k = 0; k < 8388608; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8388608), "r"(buf + j + k + 16777216), "r"(buf + j + k + 25165824) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_25(double *buf);
static inline void helper_double_25(double *buf) {
helper_double_25_recursive(buf, 25);
}
static inline void helper_double_26_recursive(double *buf, int depth);
static inline void helper_double_26_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_26_recursive(buf + 0, 11);
helper_double_26_recursive(buf + 2048, 11);
helper_double_26_recursive(buf + 4096, 11);
helper_double_26_recursive(buf + 6144, 11);
helper_double_26_recursive(buf + 8192, 11);
helper_double_26_recursive(buf + 10240, 11);
helper_double_26_recursive(buf + 12288, 11);
helper_double_26_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_26_recursive(buf + 0, 14);
helper_double_26_recursive(buf + 16384, 14);
helper_double_26_recursive(buf + 32768, 14);
helper_double_26_recursive(buf + 49152, 14);
helper_double_26_recursive(buf + 65536, 14);
helper_double_26_recursive(buf + 81920, 14);
helper_double_26_recursive(buf + 98304, 14);
helper_double_26_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_26_recursive(buf + 0, 17);
helper_double_26_recursive(buf + 131072, 17);
helper_double_26_recursive(buf + 262144, 17);
helper_double_26_recursive(buf + 393216, 17);
helper_double_26_recursive(buf + 524288, 17);
helper_double_26_recursive(buf + 655360, 17);
helper_double_26_recursive(buf + 786432, 17);
helper_double_26_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 23) {
helper_double_26_recursive(buf + 0, 20);
helper_double_26_recursive(buf + 1048576, 20);
helper_double_26_recursive(buf + 2097152, 20);
helper_double_26_recursive(buf + 3145728, 20);
helper_double_26_recursive(buf + 4194304, 20);
helper_double_26_recursive(buf + 5242880, 20);
helper_double_26_recursive(buf + 6291456, 20);
helper_double_26_recursive(buf + 7340032, 20);
for (int j = 0; j < 8388608; j += 8388608) {
for (int k = 0; k < 1048576; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728), "r"(buf + j + k + 4194304), "r"(buf + j + k + 5242880), "r"(buf + j + k + 6291456), "r"(buf + j + k + 7340032) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 26) {
helper_double_26_recursive(buf + 0, 23);
helper_double_26_recursive(buf + 8388608, 23);
helper_double_26_recursive(buf + 16777216, 23);
helper_double_26_recursive(buf + 25165824, 23);
helper_double_26_recursive(buf + 33554432, 23);
helper_double_26_recursive(buf + 41943040, 23);
helper_double_26_recursive(buf + 50331648, 23);
helper_double_26_recursive(buf + 58720256, 23);
for (int j = 0; j < 67108864; j += 67108864) {
for (int k = 0; k < 8388608; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8388608), "r"(buf + j + k + 16777216), "r"(buf + j + k + 25165824), "r"(buf + j + k + 33554432), "r"(buf + j + k + 41943040), "r"(buf + j + k + 50331648), "r"(buf + j + k + 58720256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_26(double *buf);
static inline void helper_double_26(double *buf) {
helper_double_26_recursive(buf, 26);
}
static inline void helper_double_27_recursive(double *buf, int depth);
static inline void helper_double_27_recursive(double *buf, int depth) {
if (depth == 9) {
for (int j = 0; j < 512; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_double_27_recursive(buf + 0, 9);
helper_double_27_recursive(buf + 512, 9);
helper_double_27_recursive(buf + 1024, 9);
helper_double_27_recursive(buf + 1536, 9);
helper_double_27_recursive(buf + 2048, 9);
helper_double_27_recursive(buf + 2560, 9);
helper_double_27_recursive(buf + 3072, 9);
helper_double_27_recursive(buf + 3584, 9);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_double_27_recursive(buf + 0, 12);
helper_double_27_recursive(buf + 4096, 12);
helper_double_27_recursive(buf + 8192, 12);
helper_double_27_recursive(buf + 12288, 12);
helper_double_27_recursive(buf + 16384, 12);
helper_double_27_recursive(buf + 20480, 12);
helper_double_27_recursive(buf + 24576, 12);
helper_double_27_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_double_27_recursive(buf + 0, 15);
helper_double_27_recursive(buf + 32768, 15);
helper_double_27_recursive(buf + 65536, 15);
helper_double_27_recursive(buf + 98304, 15);
helper_double_27_recursive(buf + 131072, 15);
helper_double_27_recursive(buf + 163840, 15);
helper_double_27_recursive(buf + 196608, 15);
helper_double_27_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_double_27_recursive(buf + 0, 18);
helper_double_27_recursive(buf + 262144, 18);
helper_double_27_recursive(buf + 524288, 18);
helper_double_27_recursive(buf + 786432, 18);
helper_double_27_recursive(buf + 1048576, 18);
helper_double_27_recursive(buf + 1310720, 18);
helper_double_27_recursive(buf + 1572864, 18);
helper_double_27_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_double_27_recursive(buf + 0, 21);
helper_double_27_recursive(buf + 2097152, 21);
helper_double_27_recursive(buf + 4194304, 21);
helper_double_27_recursive(buf + 6291456, 21);
helper_double_27_recursive(buf + 8388608, 21);
helper_double_27_recursive(buf + 10485760, 21);
helper_double_27_recursive(buf + 12582912, 21);
helper_double_27_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 27) {
helper_double_27_recursive(buf + 0, 24);
helper_double_27_recursive(buf + 16777216, 24);
helper_double_27_recursive(buf + 33554432, 24);
helper_double_27_recursive(buf + 50331648, 24);
helper_double_27_recursive(buf + 67108864, 24);
helper_double_27_recursive(buf + 83886080, 24);
helper_double_27_recursive(buf + 100663296, 24);
helper_double_27_recursive(buf + 117440512, 24);
for (int j = 0; j < 134217728; j += 134217728) {
for (int k = 0; k < 16777216; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16777216), "r"(buf + j + k + 33554432), "r"(buf + j + k + 50331648), "r"(buf + j + k + 67108864), "r"(buf + j + k + 83886080), "r"(buf + j + k + 100663296), "r"(buf + j + k + 117440512) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_27(double *buf);
static inline void helper_double_27(double *buf) {
helper_double_27_recursive(buf, 27);
}
static inline void helper_double_28_recursive(double *buf, int depth);
static inline void helper_double_28_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_28_recursive(buf + 0, 11);
helper_double_28_recursive(buf + 2048, 11);
helper_double_28_recursive(buf + 4096, 11);
helper_double_28_recursive(buf + 6144, 11);
helper_double_28_recursive(buf + 8192, 11);
helper_double_28_recursive(buf + 10240, 11);
helper_double_28_recursive(buf + 12288, 11);
helper_double_28_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_28_recursive(buf + 0, 14);
helper_double_28_recursive(buf + 16384, 14);
helper_double_28_recursive(buf + 32768, 14);
helper_double_28_recursive(buf + 49152, 14);
helper_double_28_recursive(buf + 65536, 14);
helper_double_28_recursive(buf + 81920, 14);
helper_double_28_recursive(buf + 98304, 14);
helper_double_28_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_28_recursive(buf + 0, 17);
helper_double_28_recursive(buf + 131072, 17);
helper_double_28_recursive(buf + 262144, 17);
helper_double_28_recursive(buf + 393216, 17);
helper_double_28_recursive(buf + 524288, 17);
helper_double_28_recursive(buf + 655360, 17);
helper_double_28_recursive(buf + 786432, 17);
helper_double_28_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 23) {
helper_double_28_recursive(buf + 0, 20);
helper_double_28_recursive(buf + 1048576, 20);
helper_double_28_recursive(buf + 2097152, 20);
helper_double_28_recursive(buf + 3145728, 20);
helper_double_28_recursive(buf + 4194304, 20);
helper_double_28_recursive(buf + 5242880, 20);
helper_double_28_recursive(buf + 6291456, 20);
helper_double_28_recursive(buf + 7340032, 20);
for (int j = 0; j < 8388608; j += 8388608) {
for (int k = 0; k < 1048576; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728), "r"(buf + j + k + 4194304), "r"(buf + j + k + 5242880), "r"(buf + j + k + 6291456), "r"(buf + j + k + 7340032) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 26) {
helper_double_28_recursive(buf + 0, 23);
helper_double_28_recursive(buf + 8388608, 23);
helper_double_28_recursive(buf + 16777216, 23);
helper_double_28_recursive(buf + 25165824, 23);
helper_double_28_recursive(buf + 33554432, 23);
helper_double_28_recursive(buf + 41943040, 23);
helper_double_28_recursive(buf + 50331648, 23);
helper_double_28_recursive(buf + 58720256, 23);
for (int j = 0; j < 67108864; j += 67108864) {
for (int k = 0; k < 8388608; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8388608), "r"(buf + j + k + 16777216), "r"(buf + j + k + 25165824), "r"(buf + j + k + 33554432), "r"(buf + j + k + 41943040), "r"(buf + j + k + 50331648), "r"(buf + j + k + 58720256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 28) {
helper_double_28_recursive(buf + 0, 26);
helper_double_28_recursive(buf + 67108864, 26);
helper_double_28_recursive(buf + 134217728, 26);
helper_double_28_recursive(buf + 201326592, 26);
for (int j = 0; j < 268435456; j += 268435456) {
for (int k = 0; k < 67108864; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vmovupd %%ymm0, (%0)\n"
"vmovupd %%ymm1, (%1)\n"
"vmovupd %%ymm2, (%2)\n"
"vmovupd %%ymm3, (%3)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 67108864), "r"(buf + j + k + 134217728), "r"(buf + j + k + 201326592) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_28(double *buf);
static inline void helper_double_28(double *buf) {
helper_double_28_recursive(buf, 28);
}
static inline void helper_double_29_recursive(double *buf, int depth);
static inline void helper_double_29_recursive(double *buf, int depth) {
if (depth == 11) {
for (int j = 0; j < 2048; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 2048; j += 2048) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256), "r"(buf + j + k + 512), "r"(buf + j + k + 768), "r"(buf + j + k + 1024), "r"(buf + j + k + 1280), "r"(buf + j + k + 1536), "r"(buf + j + k + 1792) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 14) {
helper_double_29_recursive(buf + 0, 11);
helper_double_29_recursive(buf + 2048, 11);
helper_double_29_recursive(buf + 4096, 11);
helper_double_29_recursive(buf + 6144, 11);
helper_double_29_recursive(buf + 8192, 11);
helper_double_29_recursive(buf + 10240, 11);
helper_double_29_recursive(buf + 12288, 11);
helper_double_29_recursive(buf + 14336, 11);
for (int j = 0; j < 16384; j += 16384) {
for (int k = 0; k < 2048; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2048), "r"(buf + j + k + 4096), "r"(buf + j + k + 6144), "r"(buf + j + k + 8192), "r"(buf + j + k + 10240), "r"(buf + j + k + 12288), "r"(buf + j + k + 14336) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 17) {
helper_double_29_recursive(buf + 0, 14);
helper_double_29_recursive(buf + 16384, 14);
helper_double_29_recursive(buf + 32768, 14);
helper_double_29_recursive(buf + 49152, 14);
helper_double_29_recursive(buf + 65536, 14);
helper_double_29_recursive(buf + 81920, 14);
helper_double_29_recursive(buf + 98304, 14);
helper_double_29_recursive(buf + 114688, 14);
for (int j = 0; j < 131072; j += 131072) {
for (int k = 0; k < 16384; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16384), "r"(buf + j + k + 32768), "r"(buf + j + k + 49152), "r"(buf + j + k + 65536), "r"(buf + j + k + 81920), "r"(buf + j + k + 98304), "r"(buf + j + k + 114688) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 20) {
helper_double_29_recursive(buf + 0, 17);
helper_double_29_recursive(buf + 131072, 17);
helper_double_29_recursive(buf + 262144, 17);
helper_double_29_recursive(buf + 393216, 17);
helper_double_29_recursive(buf + 524288, 17);
helper_double_29_recursive(buf + 655360, 17);
helper_double_29_recursive(buf + 786432, 17);
helper_double_29_recursive(buf + 917504, 17);
for (int j = 0; j < 1048576; j += 1048576) {
for (int k = 0; k < 131072; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 131072), "r"(buf + j + k + 262144), "r"(buf + j + k + 393216), "r"(buf + j + k + 524288), "r"(buf + j + k + 655360), "r"(buf + j + k + 786432), "r"(buf + j + k + 917504) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 23) {
helper_double_29_recursive(buf + 0, 20);
helper_double_29_recursive(buf + 1048576, 20);
helper_double_29_recursive(buf + 2097152, 20);
helper_double_29_recursive(buf + 3145728, 20);
helper_double_29_recursive(buf + 4194304, 20);
helper_double_29_recursive(buf + 5242880, 20);
helper_double_29_recursive(buf + 6291456, 20);
helper_double_29_recursive(buf + 7340032, 20);
for (int j = 0; j < 8388608; j += 8388608) {
for (int k = 0; k < 1048576; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 1048576), "r"(buf + j + k + 2097152), "r"(buf + j + k + 3145728), "r"(buf + j + k + 4194304), "r"(buf + j + k + 5242880), "r"(buf + j + k + 6291456), "r"(buf + j + k + 7340032) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 26) {
helper_double_29_recursive(buf + 0, 23);
helper_double_29_recursive(buf + 8388608, 23);
helper_double_29_recursive(buf + 16777216, 23);
helper_double_29_recursive(buf + 25165824, 23);
helper_double_29_recursive(buf + 33554432, 23);
helper_double_29_recursive(buf + 41943040, 23);
helper_double_29_recursive(buf + 50331648, 23);
helper_double_29_recursive(buf + 58720256, 23);
for (int j = 0; j < 67108864; j += 67108864) {
for (int k = 0; k < 8388608; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 8388608), "r"(buf + j + k + 16777216), "r"(buf + j + k + 25165824), "r"(buf + j + k + 33554432), "r"(buf + j + k + 41943040), "r"(buf + j + k + 50331648), "r"(buf + j + k + 58720256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 29) {
helper_double_29_recursive(buf + 0, 26);
helper_double_29_recursive(buf + 67108864, 26);
helper_double_29_recursive(buf + 134217728, 26);
helper_double_29_recursive(buf + 201326592, 26);
helper_double_29_recursive(buf + 268435456, 26);
helper_double_29_recursive(buf + 335544320, 26);
helper_double_29_recursive(buf + 402653184, 26);
helper_double_29_recursive(buf + 469762048, 26);
for (int j = 0; j < 536870912; j += 536870912) {
for (int k = 0; k < 67108864; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 67108864), "r"(buf + j + k + 134217728), "r"(buf + j + k + 201326592), "r"(buf + j + k + 268435456), "r"(buf + j + k + 335544320), "r"(buf + j + k + 402653184), "r"(buf + j + k + 469762048) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_29(double *buf);
static inline void helper_double_29(double *buf) {
helper_double_29_recursive(buf, 29);
}
static inline void helper_double_30_recursive(double *buf, int depth);
static inline void helper_double_30_recursive(double *buf, int depth) {
if (depth == 9) {
for (int j = 0; j < 512; j += 32) {
for (int k = 0; k < 4; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vpermilpd $0, %%ymm0, %%ymm8\n"
"vpermilpd $15, %%ymm0, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm0\n"
"vpermilpd $0, %%ymm1, %%ymm8\n"
"vpermilpd $15, %%ymm1, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm1\n"
"vpermilpd $0, %%ymm2, %%ymm8\n"
"vpermilpd $15, %%ymm2, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm2\n"
"vpermilpd $0, %%ymm3, %%ymm8\n"
"vpermilpd $15, %%ymm3, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm3\n"
"vpermilpd $0, %%ymm4, %%ymm8\n"
"vpermilpd $15, %%ymm4, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm4\n"
"vpermilpd $0, %%ymm5, %%ymm8\n"
"vpermilpd $15, %%ymm5, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm5\n"
"vpermilpd $0, %%ymm6, %%ymm8\n"
"vpermilpd $15, %%ymm6, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm6\n"
"vpermilpd $0, %%ymm7, %%ymm8\n"
"vpermilpd $15, %%ymm7, %%ymm9\n"
"vxorpd %%ymm10, %%ymm10, %%ymm10\n"
"vsubpd %%ymm9, %%ymm10, %%ymm11\n"
"vaddsubpd %%ymm11, %%ymm8, %%ymm7\n"
"vperm2f128 $0, %%ymm0, %%ymm0, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm0, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm0, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm0\n"
"vperm2f128 $0, %%ymm1, %%ymm1, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm1, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm1, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm1\n"
"vperm2f128 $0, %%ymm2, %%ymm2, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm2, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm2, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm2\n"
"vperm2f128 $0, %%ymm3, %%ymm3, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm3, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm3, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm3\n"
"vperm2f128 $0, %%ymm4, %%ymm4, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm4, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm4, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm4\n"
"vperm2f128 $0, %%ymm5, %%ymm5, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm5, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm5, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm5\n"
"vperm2f128 $0, %%ymm6, %%ymm6, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm6, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm6, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm6\n"
"vperm2f128 $0, %%ymm7, %%ymm7, %%ymm8\n"
"vxorpd %%ymm9, %%ymm9, %%ymm9\n"
"vsubpd %%ymm7, %%ymm9, %%ymm10\n"
"vperm2f128 $49, %%ymm10, %%ymm7, %%ymm11\n"
"vaddpd %%ymm11, %%ymm8, %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4), "r"(buf + j + k + 8), "r"(buf + j + k + 12), "r"(buf + j + k + 16), "r"(buf + j + k + 20), "r"(buf + j + k + 24), "r"(buf + j + k + 28) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 256) {
for (int k = 0; k < 32; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32), "r"(buf + j + k + 64), "r"(buf + j + k + 96), "r"(buf + j + k + 128), "r"(buf + j + k + 160), "r"(buf + j + k + 192), "r"(buf + j + k + 224) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
for (int j = 0; j < 512; j += 512) {
for (int k = 0; k < 256; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 256) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 12) {
helper_double_30_recursive(buf + 0, 9);
helper_double_30_recursive(buf + 512, 9);
helper_double_30_recursive(buf + 1024, 9);
helper_double_30_recursive(buf + 1536, 9);
helper_double_30_recursive(buf + 2048, 9);
helper_double_30_recursive(buf + 2560, 9);
helper_double_30_recursive(buf + 3072, 9);
helper_double_30_recursive(buf + 3584, 9);
for (int j = 0; j < 4096; j += 4096) {
for (int k = 0; k < 512; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 512), "r"(buf + j + k + 1024), "r"(buf + j + k + 1536), "r"(buf + j + k + 2048), "r"(buf + j + k + 2560), "r"(buf + j + k + 3072), "r"(buf + j + k + 3584) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 15) {
helper_double_30_recursive(buf + 0, 12);
helper_double_30_recursive(buf + 4096, 12);
helper_double_30_recursive(buf + 8192, 12);
helper_double_30_recursive(buf + 12288, 12);
helper_double_30_recursive(buf + 16384, 12);
helper_double_30_recursive(buf + 20480, 12);
helper_double_30_recursive(buf + 24576, 12);
helper_double_30_recursive(buf + 28672, 12);
for (int j = 0; j < 32768; j += 32768) {
for (int k = 0; k < 4096; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 4096), "r"(buf + j + k + 8192), "r"(buf + j + k + 12288), "r"(buf + j + k + 16384), "r"(buf + j + k + 20480), "r"(buf + j + k + 24576), "r"(buf + j + k + 28672) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 18) {
helper_double_30_recursive(buf + 0, 15);
helper_double_30_recursive(buf + 32768, 15);
helper_double_30_recursive(buf + 65536, 15);
helper_double_30_recursive(buf + 98304, 15);
helper_double_30_recursive(buf + 131072, 15);
helper_double_30_recursive(buf + 163840, 15);
helper_double_30_recursive(buf + 196608, 15);
helper_double_30_recursive(buf + 229376, 15);
for (int j = 0; j < 262144; j += 262144) {
for (int k = 0; k < 32768; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 32768), "r"(buf + j + k + 65536), "r"(buf + j + k + 98304), "r"(buf + j + k + 131072), "r"(buf + j + k + 163840), "r"(buf + j + k + 196608), "r"(buf + j + k + 229376) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 21) {
helper_double_30_recursive(buf + 0, 18);
helper_double_30_recursive(buf + 262144, 18);
helper_double_30_recursive(buf + 524288, 18);
helper_double_30_recursive(buf + 786432, 18);
helper_double_30_recursive(buf + 1048576, 18);
helper_double_30_recursive(buf + 1310720, 18);
helper_double_30_recursive(buf + 1572864, 18);
helper_double_30_recursive(buf + 1835008, 18);
for (int j = 0; j < 2097152; j += 2097152) {
for (int k = 0; k < 262144; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 262144), "r"(buf + j + k + 524288), "r"(buf + j + k + 786432), "r"(buf + j + k + 1048576), "r"(buf + j + k + 1310720), "r"(buf + j + k + 1572864), "r"(buf + j + k + 1835008) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 24) {
helper_double_30_recursive(buf + 0, 21);
helper_double_30_recursive(buf + 2097152, 21);
helper_double_30_recursive(buf + 4194304, 21);
helper_double_30_recursive(buf + 6291456, 21);
helper_double_30_recursive(buf + 8388608, 21);
helper_double_30_recursive(buf + 10485760, 21);
helper_double_30_recursive(buf + 12582912, 21);
helper_double_30_recursive(buf + 14680064, 21);
for (int j = 0; j < 16777216; j += 16777216) {
for (int k = 0; k < 2097152; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 2097152), "r"(buf + j + k + 4194304), "r"(buf + j + k + 6291456), "r"(buf + j + k + 8388608), "r"(buf + j + k + 10485760), "r"(buf + j + k + 12582912), "r"(buf + j + k + 14680064) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 27) {
helper_double_30_recursive(buf + 0, 24);
helper_double_30_recursive(buf + 16777216, 24);
helper_double_30_recursive(buf + 33554432, 24);
helper_double_30_recursive(buf + 50331648, 24);
helper_double_30_recursive(buf + 67108864, 24);
helper_double_30_recursive(buf + 83886080, 24);
helper_double_30_recursive(buf + 100663296, 24);
helper_double_30_recursive(buf + 117440512, 24);
for (int j = 0; j < 134217728; j += 134217728) {
for (int k = 0; k < 16777216; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 16777216), "r"(buf + j + k + 33554432), "r"(buf + j + k + 50331648), "r"(buf + j + k + 67108864), "r"(buf + j + k + 83886080), "r"(buf + j + k + 100663296), "r"(buf + j + k + 117440512) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
if (depth == 30) {
helper_double_30_recursive(buf + 0, 27);
helper_double_30_recursive(buf + 134217728, 27);
helper_double_30_recursive(buf + 268435456, 27);
helper_double_30_recursive(buf + 402653184, 27);
helper_double_30_recursive(buf + 536870912, 27);
helper_double_30_recursive(buf + 671088640, 27);
helper_double_30_recursive(buf + 805306368, 27);
helper_double_30_recursive(buf + 939524096, 27);
for (int j = 0; j < 1073741824; j += 1073741824) {
for (int k = 0; k < 134217728; k += 4) {
__asm__ volatile (
"vmovupd (%0), %%ymm0\n"
"vmovupd (%1), %%ymm1\n"
"vmovupd (%2), %%ymm2\n"
"vmovupd (%3), %%ymm3\n"
"vmovupd (%4), %%ymm4\n"
"vmovupd (%5), %%ymm5\n"
"vmovupd (%6), %%ymm6\n"
"vmovupd (%7), %%ymm7\n"
"vaddpd %%ymm1, %%ymm0, %%ymm8\n"
"vsubpd %%ymm1, %%ymm0, %%ymm9\n"
"vaddpd %%ymm3, %%ymm2, %%ymm10\n"
"vsubpd %%ymm3, %%ymm2, %%ymm11\n"
"vaddpd %%ymm5, %%ymm4, %%ymm12\n"
"vsubpd %%ymm5, %%ymm4, %%ymm13\n"
"vaddpd %%ymm7, %%ymm6, %%ymm14\n"
"vsubpd %%ymm7, %%ymm6, %%ymm15\n"
"vaddpd %%ymm10, %%ymm8, %%ymm0\n"
"vsubpd %%ymm10, %%ymm8, %%ymm2\n"
"vaddpd %%ymm11, %%ymm9, %%ymm1\n"
"vsubpd %%ymm11, %%ymm9, %%ymm3\n"
"vaddpd %%ymm14, %%ymm12, %%ymm4\n"
"vsubpd %%ymm14, %%ymm12, %%ymm6\n"
"vaddpd %%ymm15, %%ymm13, %%ymm5\n"
"vsubpd %%ymm15, %%ymm13, %%ymm7\n"
"vaddpd %%ymm4, %%ymm0, %%ymm8\n"
"vsubpd %%ymm4, %%ymm0, %%ymm12\n"
"vaddpd %%ymm5, %%ymm1, %%ymm9\n"
"vsubpd %%ymm5, %%ymm1, %%ymm13\n"
"vaddpd %%ymm6, %%ymm2, %%ymm10\n"
"vsubpd %%ymm6, %%ymm2, %%ymm14\n"
"vaddpd %%ymm7, %%ymm3, %%ymm11\n"
"vsubpd %%ymm7, %%ymm3, %%ymm15\n"
"vmovupd %%ymm8, (%0)\n"
"vmovupd %%ymm9, (%1)\n"
"vmovupd %%ymm10, (%2)\n"
"vmovupd %%ymm11, (%3)\n"
"vmovupd %%ymm12, (%4)\n"
"vmovupd %%ymm13, (%5)\n"
"vmovupd %%ymm14, (%6)\n"
"vmovupd %%ymm15, (%7)\n"
:: "r"(buf + j + k + 0), "r"(buf + j + k + 134217728), "r"(buf + j + k + 268435456), "r"(buf + j + k + 402653184), "r"(buf + j + k + 536870912), "r"(buf + j + k + 671088640), "r"(buf + j + k + 805306368), "r"(buf + j + k + 939524096) : "%ymm0", "%ymm1", "%ymm2", "%ymm3", "%ymm4", "%ymm5", "%ymm6", "%ymm7", "%ymm8", "%ymm9", "%ymm10", "%ymm11", "%ymm12", "%ymm13", "%ymm14", "%ymm15", "memory"
);
}
}
return;
}
}
static inline void helper_double_30(double *buf);
static inline void helper_double_30(double *buf) {
helper_double_30_recursive(buf, 30);
}
int fht_double(double *buf, int log_n) {
if (log_n == 0) {
return 0;
}
if (log_n == 1) {
helper_double_1(buf);
return 0;
}
if (log_n == 2) {
helper_double_2(buf);
return 0;
}
if (log_n == 3) {
helper_double_3(buf);
return 0;
}
if (log_n == 4) {
helper_double_4(buf);
return 0;
}
if (log_n == 5) {
helper_double_5(buf);
return 0;
}
if (log_n == 6) {
helper_double_6(buf);
return 0;
}
if (log_n == 7) {
helper_double_7(buf);
return 0;
}
if (log_n == 8) {
helper_double_8(buf);
return 0;
}
if (log_n == 9) {
helper_double_9(buf);
return 0;
}
if (log_n == 10) {
helper_double_10(buf);
return 0;
}
if (log_n == 11) {
helper_double_11(buf);
return 0;
}
if (log_n == 12) {
helper_double_12(buf);
return 0;
}
if (log_n == 13) {
helper_double_13(buf);
return 0;
}
if (log_n == 14) {
helper_double_14(buf);
return 0;
}
if (log_n == 15) {
helper_double_15(buf);
return 0;
}
if (log_n == 16) {
helper_double_16(buf);
return 0;
}
if (log_n == 17) {
helper_double_17(buf);
return 0;
}
if (log_n == 18) {
helper_double_18(buf);
return 0;
}
if (log_n == 19) {
helper_double_19(buf);
return 0;
}
if (log_n == 20) {
helper_double_20(buf);
return 0;
}
if (log_n == 21) {
helper_double_21(buf);
return 0;
}
if (log_n == 22) {
helper_double_22(buf);
return 0;
}
if (log_n == 23) {
helper_double_23(buf);
return 0;
}
if (log_n == 24) {
helper_double_24(buf);
return 0;
}
if (log_n == 25) {
helper_double_25(buf);
return 0;
}
if (log_n == 26) {
helper_double_26(buf);
return 0;
}
if (log_n == 27) {
helper_double_27(buf);
return 0;
}
if (log_n == 28) {
helper_double_28(buf);
return 0;
}
if (log_n == 29) {
helper_double_29(buf);
return 0;
}
if (log_n == 30) {
helper_double_30(buf);
return 0;
}
return 1;
}
| 44.609801 | 404 | 0.454765 |
3d7c682318818343d0f7d55e15e3de741cd643e9 | 173 | lua | Lua | MMOCoreORB/bin/scripts/object/building/player/yt1300.lua | V-Fib/FlurryClone | 40e0ca7245ec31b3815eb6459329fd9e70f88936 | [
"Zlib",
"OpenSSL"
] | 18 | 2017-02-09T15:36:05.000Z | 2021-12-21T04:22:15.000Z | MMOCoreORB/bin/scripts/object/building/player/yt1300.lua | V-Fib/FlurryClone | 40e0ca7245ec31b3815eb6459329fd9e70f88936 | [
"Zlib",
"OpenSSL"
] | 61 | 2016-12-30T21:51:10.000Z | 2021-12-10T20:25:56.000Z | MMOCoreORB/bin/scripts/object/building/player/yt1300.lua | V-Fib/FlurryClone | 40e0ca7245ec31b3815eb6459329fd9e70f88936 | [
"Zlib",
"OpenSSL"
] | 71 | 2017-01-01T05:34:38.000Z | 2022-03-29T01:04:00.000Z | object_building_player_yt1300 = object_building_player_shared_yt1300:new {
}
ObjectTemplates:addTemplate(object_building_player_yt1300, "object/building/player/yt1300.iff")
| 43.25 | 95 | 0.878613 |
d61250517367815c8b8b86e6edc8b2fc207c72f1 | 966 | swift | Swift | CarTrackCodeChallenge/CarTrackCodeChallenge/Core/Entities/Address/Address.swift | gmvicky/CarTestCodeChallenge | 142faceb9648c49682386b571380fe67c8db1546 | [
"MIT"
] | null | null | null | CarTrackCodeChallenge/CarTrackCodeChallenge/Core/Entities/Address/Address.swift | gmvicky/CarTestCodeChallenge | 142faceb9648c49682386b571380fe67c8db1546 | [
"MIT"
] | null | null | null | CarTrackCodeChallenge/CarTrackCodeChallenge/Core/Entities/Address/Address.swift | gmvicky/CarTestCodeChallenge | 142faceb9648c49682386b571380fe67c8db1546 | [
"MIT"
] | null | null | null | //
// Address.swift
// CarTrackCodeChallenge
//
// Created by WT-iOS on 3/8/20.
// Copyright © 2020 vic. All rights reserved.
//
import Foundation
class Address: NSObject, Codable {
private enum CodingKeys: String, CodingKey {
case city
case suite
case street
case zipcode
case geo
}
var city: String?
var geo: GeoCoordinates?
var suite: String?
var street: String?
var zipcode: String?
var formattedAddress: String {
return "\(suite ?? String()) \(street ?? String())\n\(city ?? String()) \(zipcode ?? String())"
// """
// \(suite ?? String()) \(street ?? String())
// \(city ?? String()) \(zipcode ?? String())
// """
}
}
struct GeoCoordinates: Codable {
private enum CodingKeys: String, CodingKey {
case lng
case lat
}
var lng: String?
var lat: String?
}
| 20.553191 | 103 | 0.531056 |
39c6243f3174cd081f258fcb4ffbf2c3f502b6c7 | 4,366 | js | JavaScript | game/main.js | mohamadhijazi/mohamadhijazi.github.io | 5364fc73c485ca7d77a6dfa876f8e5d155142cb7 | [
"CC-BY-3.0"
] | null | null | null | game/main.js | mohamadhijazi/mohamadhijazi.github.io | 5364fc73c485ca7d77a6dfa876f8e5d155142cb7 | [
"CC-BY-3.0"
] | null | null | null | game/main.js | mohamadhijazi/mohamadhijazi.github.io | 5364fc73c485ca7d77a6dfa876f8e5d155142cb7 | [
"CC-BY-3.0"
] | null | null | null | var canvas = CE.defines("canvas_id").
extend(Scrolling).
extend(Animation).
extend(Hit).
extend(Input).
ready(function() {
canvas.Scene.call("MyScene");
});
canvas.Scene.new({
name: "MyScene",
materials: {
images: {
"bird": "Bird.png",
"sky": "sky.jpg",
"box":"crate.jpg"
}
},
/* ready: function(stage) {
var map, animation;
var self = this;
function _entity(x, y, img) {
var entity = Class.New("Entity", [stage]);
entity.rect(128);
entity.position(x, y);
entity.el.drawImage(img);
stage.append(entity.el);
return entity;
}
this.scrolling = canvas.Scrolling.new(this, 64, 64);
this.player = this.createElement();
this.player.y = 110;
this.box1=this.createElement();
this.box1.drawImage("box");
this.box1.x=150;
animation = canvas.Animation.new({
images: "bird",
animations: {
walk: {
frames: [1, 3],
size: {
width: 320/5,
height: 64
},
frequence: 5
}
}
});
animation.add(this.player);
animation.play("walk", "loop");
this.scrolling.setMainElement(this.player);
map = this.createElement();
map.drawImage("sky");
map.append(this.player);
map.append(this.box1);
this.scrolling.addScroll({
element: map,
speed: 2,
block: true,
width: 1200,
height: 300
});
stage.append(map);
},
render: function(stage) {
this.player.x += 2;
this.scrolling.update();
//stage.refresh();
this.box1.move(-2); // Position X + 2
this.player.hit([this.box1], function(state, el) {
if (state == "over") {
el.opacity = 0.5;
}
else {
el.opacity = 1;
}
});
stage.refresh();
}*/
ready: function(stage) {
var self = this;
function _entity(x, y,img) {
var entity = Class.New("Entity", [stage]);
entity.rect(128);
entity.position(x, y);
entity.el.drawImage(img);
stage.append(entity.el);
return entity;
}
this.player = _entity(0, 50,"bird");
var p=this.player;
this.btn=this.createElement();
this.btn.fillText("Restart");
this.btn.fillStyle="red";
this.btn.font="normal 20px Arial";
this.btn.x=5;
// this.btn.on("click",function(e){this.player.el.x=0;});
animation = canvas.Animation.new({
images: "bird",
animations: {
walk: {
frames: [1, 3],
size: {
width: 320/5,
height: 64
},
frequence: 5
}
}
});
animation.add(this.player.el);
animation.play("walk", "loop");
// this.box1 = _entity(0, 50,"bird");
this.box2 = _entity(200, 50,"box");
var A=0;
this.box2.el.on("click",function(e){A=1;});
stage.append(this.btn);
canvas.Input.keyDown(Input.A, function(e) {
A=1;alert(A);
});
if(A==1){
this.player.el.x=0;
alert("A");
}
},
render: function(stage) {
this.player.move(2); // Position X + 2
var hits=0;
this.box2.hit([this.player], function(state, el) {
if (state == "over") {
el.opacity = 0.5;
hits=1;
}
else {
el.opacity = 1;
// hits=0;
}
});
this.box2.el.on("click",function(e){hits=1;});
if(hits==1)
{//this.player.move(-this.player.el.x);
// alert("hit");
}
stage.refresh();
}
}); | 26.621951 | 64 | 0.41869 |
73cf4edaab7e32e4eaef62e17d6129730330c952 | 2,343 | asm | Assembly | 3rd Year/Computer Architecture II/t3.asm | DanielNugent/College | 6b6807fd35334eb4bbcc65f800c5f5137f96be68 | [
"MIT"
] | 1 | 2020-03-13T12:20:39.000Z | 2020-03-13T12:20:39.000Z | 3rd Year/Computer Architecture II/t3.asm | DanielNugent/College | 6b6807fd35334eb4bbcc65f800c5f5137f96be68 | [
"MIT"
] | null | null | null | 3rd Year/Computer Architecture II/t3.asm | DanielNugent/College | 6b6807fd35334eb4bbcc65f800c5f5137f96be68 | [
"MIT"
] | 1 | 2020-05-12T14:01:07.000Z | 2020-05-12T14:01:07.000Z | add r0, #4, r9 ; int_inp = 4
max: ; int max(int a, int b, int c)
add r0, r26, r1 ; r1 = v = a
sub r27, r1, r0, {C} ; if(b > v) then v = b
jle max_1 ;
xor r0, r0, r0 ; no operation
add r0, r27, r1 ;
max_1:
sub r28, r1, r0, {C} ; if(c > v) then v = c
jle max_2 ;
xor r0, r0, r0 ;
add r0, r28, r1 ;
max_2:
ret r31, 0
xor r0, r0, r0 ; no operation
max5: ; int p(int i, int j, int k, int l)
add r0, r9, r10 ; r10 = r9 = int_inp = param 1
add r0, r26, r11 ; r11 = i = param 2
callr r31, max ; r1 = max(r10, r11, r12) / max(int_inp, i, j)
add r0, r27, r12 ; r12 = j = param 3
add r0, r1, r10 ; r10 = max(int_inp, i, j) = param 1
add r0, r28, r11 ; r11 = k = param 2
callr r31, max ; r1 = max((int_inp, i, j), k, l)
add r0, r29, r12 ; r12 = l = param 3
ret r31, 0
xor r0, r0, r0 ; no operation
fun: ; int fun(int a, int b)
sub r27, r0, r0, {C} ; if(b == 0) then return 0
jeq fun_3
add r0, r0, r1 ; r1 = 0
fun_1:
add r0, r27, r10 ; r10 = b = param 1
callr r31, mod ; r1 = mod(b, 2)
add r0, #2, r11 ; r11 = 2 = param 2
sub r1, r0, r0, {C} ; if(b % 2 == 0) then return fun(a + a, b / 2)
jne fun_2
add r0, r27, r10 ; r10 = b = param 1 (executed if jumped to fun_2 or not)
callr r31, divide ; r1 = divide(b, 2)
add r0, #2, r11 ; r11 = 2 = param 2
add r26, r26, r10 ; r10 = a + a = param 1
callr r31, fun ; r1 = fun(a + a, b / 2)
add r0, r1, r11 ; r11 = b / 2 = param 2
ret r31, 0
xor r0, r0, r0 ; no operation
fun_2:
add r0, #2, r11 ; r11 = 2 = param 2
callr r31, divide ; r1 = divide(b, 2)
add r26, r26, r10 ; r10 = a + a = param 1
callr r31, fun ; r1 = fun(a + a, b / 2)
add r0, r1, r11 ; r11 = b / 2 = param 2
add r1, r26, r1 ; r1 = fun(a + a, b / 2) + a
fun_3:
ret r31, 0
xor r0, r0, r0 ; no operation
| 32.09589 | 85 | 0.412292 |
16b703b1a739699dacce5200130632e358598ffb | 191 | ts | TypeScript | examples/example-natural-to-roman.ts | akaustav/roman-numeral-utils | 45a5d63a9e253fd3117fd54ada5dcb514ef119b1 | [
"MIT"
] | null | null | null | examples/example-natural-to-roman.ts | akaustav/roman-numeral-utils | 45a5d63a9e253fd3117fd54ada5dcb514ef119b1 | [
"MIT"
] | null | null | null | examples/example-natural-to-roman.ts | akaustav/roman-numeral-utils | 45a5d63a9e253fd3117fd54ada5dcb514ef119b1 | [
"MIT"
] | null | null | null | import { naturalToRoman } from 'https://deno.land/x/roman_number_utils@1.0.1/mod.ts';
const natural = 54;
const roman = naturalToRoman(natural);
console.log(roman); // expected output: LIV
| 27.285714 | 85 | 0.73822 |
2821365de24ef36aedecd3c7f1dde68450581f80 | 2,114 | swift | Swift | MyMap/ContentView.swift | YA-androidapp/Swift-iOS-MyMap | e7e920c8efbeec91ccb429654878d513cf8a7dda | [
"Apache-2.0"
] | null | null | null | MyMap/ContentView.swift | YA-androidapp/Swift-iOS-MyMap | e7e920c8efbeec91ccb429654878d513cf8a7dda | [
"Apache-2.0"
] | null | null | null | MyMap/ContentView.swift | YA-androidapp/Swift-iOS-MyMap | e7e920c8efbeec91ccb429654878d513cf8a7dda | [
"Apache-2.0"
] | null | null | null | import SwiftUI
import MapKit
struct ContentView: View {
@ObservedObject var manager = LocationManager()
@State var inputCoordinate:String = ""
@State var inputSearchKey:String = ""
@State var dispCoordinate = CLLocationCoordinate2DMake(0.0, 0.0)
@State var dispSearchKey:String = ""
@State var dispMapType:MKMapType = .standard
var body: some View {
VStack {
HStack{
let latetude = $manager.location.wrappedValue.coordinate.latitude
let longitude = $manager.location.wrappedValue.coordinate.longitude
Text(String(latetude) + "," + String(longitude)).padding()
Spacer()
Button(
action: {
dispCoordinate = CLLocationCoordinate2DMake(latetude, longitude)
}
) {
Image(systemName: "mappin").frame(
width: 35.0, height: 35.0, alignment: .leading)
}
}
TextField(
"Input a keyword.",
text: $inputSearchKey, onCommit: {
dispSearchKey = inputSearchKey
}
).padding()
ZStack(alignment: .bottomTrailing){
MapView(searchKey: dispSearchKey, mapType: dispMapType, coordinate: dispCoordinate)
Button(
action: {
if dispMapType == .standard {
dispMapType = .satellite
} else if dispMapType == .satellite {
dispMapType = .standard
}
}
) {
Image(systemName: "map").resizable().frame(
width: 35.0, height: 35.0, alignment: .leading)
}.padding(.trailing, 20.0).padding(.bottom, 30.0)
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
| 34.096774 | 99 | 0.486282 |
dd9ab496602d94d221688eb7bf72f4b07e775f96 | 1,175 | php | PHP | resources/views/members/dashboard/partials/_service_notice.blade.php | CodeMansion/afri-forex-trading | 8ac526a62418779fc4a98007f9f32eb1a0a2d47b | [
"MIT"
] | null | null | null | resources/views/members/dashboard/partials/_service_notice.blade.php | CodeMansion/afri-forex-trading | 8ac526a62418779fc4a98007f9f32eb1a0a2d47b | [
"MIT"
] | null | null | null | resources/views/members/dashboard/partials/_service_notice.blade.php | CodeMansion/afri-forex-trading | 8ac526a62418779fc4a98007f9f32eb1a0a2d47b | [
"MIT"
] | null | null | null | @if(isset($withdrawal->status))
@if($withdrawal->status == 3 || $withdrawal->status == 2)
@else
<div class="alert alert-warning" style="font-size:17px;">
<p>
@if($withdrawal->status == 0)
You made a withdrawal request |
@endif
@if($withdrawal->status == 1)
Your withdrawal request has been approved and undergoing processing |
@endif
<span class="badge badge-{{ withdrawal_status($withdrawal->status,'class') }}">{{ withdrawal_status($withdrawal->status,'name') }}</span> |
{{ $withdrawal->created_at->diffForHumans() }}
</p>
</div>
@endif
@endif
@if(isset($userSub))
@if($userSub->status == 2)
<div class="alert alert-warning" style="font-size:17px;">
<p>
Your daily subscription has expired. Renew your subscription to continue enjoying daily investment tips.
<span class="badge badge-{{ subscription_status($userSub->status,'class') }}">{{ subscription_status($userSub->status,'name') }}</span> |
{{ $userSub->updated_at->diffForHumans() }}
</p>
</div>
@endif
@endif | 40.517241 | 151 | 0.582979 |
9c6e77eb703d3de5e0f9f21667e7878fdcd2ec71 | 437 | js | JavaScript | frontend/webpack.client.config.babel.js | mp371366/sentences | 27ea5700e881d7c5ea544ac0c4d5d24493083f33 | [
"MIT"
] | null | null | null | frontend/webpack.client.config.babel.js | mp371366/sentences | 27ea5700e881d7c5ea544ac0c4d5d24493083f33 | [
"MIT"
] | 1 | 2021-03-10T08:59:14.000Z | 2021-03-10T08:59:14.000Z | frontend/webpack.client.config.babel.js | mp371366/sentences | 27ea5700e881d7c5ea544ac0c4d5d24493083f33 | [
"MIT"
] | null | null | null | const common = require('./webpack.common.config.babel');
const path = require('path');
const clientConfig = {
...common,
name: 'client',
target: 'web',
entry: {
client: ['@babel/polyfill', './src/index.js'],
},
mode: 'production',
node: {
fs: 'empty',
net: 'empty',
tls: 'empty',
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'build')
},
};
module.exports = clientConfig; | 19 | 56 | 0.583524 |
5f4b32a7e18389397c87b3ecaefe815e7eded6cf | 75 | ts | TypeScript | vendor.d.ts | calblueprint/nbjc | 000788ad91916e2c1b74170344b8691d904429fc | [
"MIT"
] | 4 | 2020-09-30T05:02:43.000Z | 2021-01-12T06:59:48.000Z | vendor.d.ts | calblueprint/nbjc | 000788ad91916e2c1b74170344b8691d904429fc | [
"MIT"
] | 74 | 2020-09-24T05:37:46.000Z | 2021-05-07T07:53:03.000Z | vendor.d.ts | calblueprint/nbjc | 000788ad91916e2c1b74170344b8691d904429fc | [
"MIT"
] | 1 | 2020-10-04T21:54:52.000Z | 2020-10-04T21:54:52.000Z | declare namespace NodeJS {
interface Global {
prisma: unknown;
}
}
| 12.5 | 26 | 0.666667 |
8ebd087dcf5c54fd09ecda39095798835e046eff | 1,182 | rb | Ruby | site/profile/lib/facter_extra/services.rb | example42/control-repo-original | f093b15b72293e64e5acc16caf29638a1430d74e | [
"Apache-2.0"
] | 2 | 2017-03-24T07:22:01.000Z | 2017-04-20T11:14:19.000Z | site/profile/lib/facter_extra/services.rb | example42/control-repo-original | f093b15b72293e64e5acc16caf29638a1430d74e | [
"Apache-2.0"
] | null | null | null | site/profile/lib/facter_extra/services.rb | example42/control-repo-original | f093b15b72293e64e5acc16caf29638a1430d74e | [
"Apache-2.0"
] | 1 | 2022-03-19T09:58:06.000Z | 2022-03-19T09:58:06.000Z | require 'time'
require 'yaml'
require 'facter'
require 'fileutils'
facts_dir = '/etc/puppetlabs/facter/facts.d/'
svc_cache_file = facts_dir + 'services.yaml'
cache_ttl = 21600 # Fact caching: 6 hours
Facter.add('services') do
setcode do
if File::exist?(svc_cache_file) then
svc_cache = YAML.load_file(svc_cache_file)
services_hash = svc_cache['services']
cache_time = File.mtime(svc_cache_file)
else
svc_cache = nil
cache_time = Time.at(0)
end
if !svc_cache || (Time.now - cache_time) > cache_ttl
begin
services_hash = YAML.load(%x{puppet resource service --to_yaml})
services_hash['services'] = services_hash.delete('service')
cachefile_hash = Hash.new
cachefile_hash.merge!(services_hash)
FileUtils.mkdir_p(facts_dir) if !File::exists?(facts_dir)
File.open(svc_cache_file, 'w') do |out|
YAML.dump(cachefile_hash, out)
end
end
end
# Since they service key is already added, we return directly its
# content.
services_hash['services']
end
end
| 27.488372 | 76 | 0.616751 |
dac9811a3e23c12bdcfbffae0cd9f4961f9917df | 718 | asm | Assembly | programs/oeis/102/A102770.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/102/A102770.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/102/A102770.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A102770: (p*q - 1)/2 where p and q are consecutive odd primes.
; 7,17,38,71,110,161,218,333,449,573,758,881,1010,1245,1563,1799,2043,2378,2591,2883,3278,3693,4316,4898,5201,5510,5831,6158,7175,8318,8973,9521,10355,11249,11853,12795,13610,14445,15483,16199,17285,18431,19010,19601,20994,23526,25310,25991,26678,27843,28799,30245,32253,33795,35373,36449,37533,38918,39761,41459,44975,47738,48671,49610,52463,55773,58469,60551,61598,63363,65876,68445,70683,72578,74493,77216,79598,82004,85685,88199,90725,93311,95043,97238,99453,102596,105338,106721,108110,111846,116636,119558,122504,125498,128013,132594,136241,141471,147963,152339
add $0,1
seq $0,6094 ; Products of 2 successive primes.
sub $0,15
div $0,2
add $0,7
| 79.777778 | 567 | 0.788301 |
9c232137ca014ec794c260046c1818b3a31492d2 | 351 | js | JavaScript | src/shared/page/NotFound.js | daweilv/react-isomorphic-boilerplate | 7affac7f2c38db61571292731a1d0a738d874250 | [
"MIT"
] | 1 | 2019-07-24T08:13:39.000Z | 2019-07-24T08:13:39.000Z | src/shared/page/NotFound.js | daweilv/react-isomorphic-boilerplate | 7affac7f2c38db61571292731a1d0a738d874250 | [
"MIT"
] | 2 | 2021-03-09T03:59:17.000Z | 2021-05-08T21:21:05.000Z | src/shared/page/NotFound.js | daweilv/react-isomorphic-boilerplate | 7affac7f2c38db61571292731a1d0a738d874250 | [
"MIT"
] | null | null | null | import React, { Component } from 'react';
class NotFound extends Component {
componentWillMount() {
const { staticContext } = this.props;
if (staticContext) {
staticContext.statusCode = 404;
}
}
render() {
console.log('404');
return <div>404页面</div>;
}
}
export default NotFound;
| 19.5 | 45 | 0.57265 |
b8b6dddba65eb3ffc4a806bfe86519b72a941644 | 7,284 | lua | Lua | extlib/ffi/OpenAL.lua | sd-/luajit | 612f1797554b5dc3f1d64e4755b3fdc4f11b617a | [
"MIT"
] | 2 | 2016-03-24T22:49:47.000Z | 2018-07-15T04:02:46.000Z | extlib/ffi/OpenAL.lua | sd-/luajit | 612f1797554b5dc3f1d64e4755b3fdc4f11b617a | [
"MIT"
] | null | null | null | extlib/ffi/OpenAL.lua | sd-/luajit | 612f1797554b5dc3f1d64e4755b3fdc4f11b617a | [
"MIT"
] | null | null | null | -- The code below was contributed by David Hollander along with OpenALUT.cpp
-- To run on Windows, there are few choices, easiest one is to download
-- http://connect.creativelabs.com/openal/Downloads/oalinst.zip
-- and run the executable from inside of it (I've seen couple of games use it).
ffi = require 'ffi'
local al = ffi.load( ffi.os=="Windows" and "openal32" or "openal" )
ffi.cdef[[
typedef char ALboolean; /** 8-bit boolean */
typedef char ALchar; /** character */
typedef signed char ALbyte; /** signed 8-bit 2's complement integer */
typedef unsigned char ALubyte; /** unsigned 8-bit integer */
typedef short ALshort; /** signed 16-bit 2's complement integer */
typedef unsigned short ALushort;/** unsigned 16-bit integer */
typedef int ALint; /** signed 32-bit 2's complement integer */
typedef unsigned int ALuint; /** unsigned 32-bit integer */
typedef int ALsizei; /** non-negative 32-bit binary integer size */
typedef int ALenum; /** enumerated 32-bit value */
typedef float ALfloat; /** 32-bit IEEE754 floating-point */
typedef double ALdouble; /** 64-bit IEEE754 floating-point */
typedef void ALvoid; /** void type (for opaque pointers only) */
enum {
AL_NONE = 0,
AL_FALSE = 0,
AL_TRUE = 1,
AL_SOURCE_RELATIVE = 0x202,
AL_CONE_INNER_ANGLE = 0x1001,
AL_CONE_OUTER_ANGLE = 0x1002,
AL_PITCH = 0x1003,
AL_POSITION = 0x1004,
AL_DIRECTION = 0x1005,
AL_VELOCITY = 0x1006,
AL_LOOPING = 0x1007,
AL_BUFFER = 0x1009,
AL_GAIN = 0x100A,
AL_MIN_GAIN = 0x100D,
AL_MAX_GAIN = 0x100E,
AL_ORIENTATION = 0x100F,
AL_SOURCE_STATE = 0x1010,
AL_INITIAL = 0x1011,
AL_PLAYING = 0x1012,
AL_PAUSED = 0x1013,
AL_STOPPED = 0x1014,
AL_BUFFERS_QUEUED = 0x1015,
AL_BUFFERS_PROCESSED = 0x1016,
AL_SEC_OFFSET = 0x1024,
AL_SAMPLE_OFFSET = 0x1025,
AL_BYTE_OFFSET = 0x1026,
AL_SOURCE_TYPE = 0x1027,
AL_STATIC = 0x1028,
AL_STREAMING = 0x1029,
AL_UNDETERMINED = 0x1030,
AL_FORMAT_MONO8 = 0x1100,
AL_FORMAT_MONO16 = 0x1101,
AL_FORMAT_STEREO8 = 0x1102,
AL_FORMAT_STEREO16 = 0x1103,
AL_REFERENCE_DISTANCE = 0x1020,
AL_ROLLOFF_FACTOR = 0x1021,
AL_CONE_OUTER_GAIN = 0x1022,
AL_MAX_DISTANCE = 0x1023,
AL_FREQUENCY = 0x2001,
AL_BITS = 0x2002,
AL_CHANNELS = 0x2003,
AL_SIZE = 0x2004,
AL_UNUSED = 0x2010,
AL_PENDING = 0x2011,
AL_PROCESSED = 0x2012,
AL_NO_ERROR = 0,
AL_INVALID_NAME = 0xA001,
AL_INVALID_ENUM = 0xA002,
AL_INVALID_VALUE = 0xA003,
AL_INVALID_OPERATION = 0xA004,
AL_OUT_OF_MEMORY = 0xA005,
AL_VENDOR = 0xB001,
AL_VERSION = 0xB002,
AL_RENDERER = 0xB003,
AL_EXTENSIONS = 0xB004,
AL_DOPPLER_FACTOR = 0xC000,
AL_DOPPLER_VELOCITY = 0xC001,
AL_SPEED_OF_SOUND = 0xC003,
AL_DISTANCE_MODEL = 0xD000,
AL_INVERSE_DISTANCE = 0xD001,
AL_INVERSE_DISTANCE_CLAMPED = 0xD002,
AL_LINEAR_DISTANCE = 0xD003,
AL_LINEAR_DISTANCE_CLAMPED = 0xD004,
AL_EXPONENT_DISTANCE = 0xD005,
AL_EXPONENT_DISTANCE_CLAMPED = 0xD006,
};
void alEnable( ALenum capability );
void alDisable( ALenum capability );
ALboolean alIsEnabled( ALenum capability );
const ALchar* alGetString( ALenum param );
void alGetBooleanv( ALenum param, ALboolean* data );
void alGetIntegerv( ALenum param, ALint* data );
void alGetFloatv( ALenum param, ALfloat* data );
void alGetDoublev( ALenum param, ALdouble* data );
ALboolean alGetBoolean( ALenum param );
ALint alGetInteger( ALenum param );
ALfloat alGetFloat( ALenum param );
ALdouble alGetDouble( ALenum param );
ALenum alGetError( void );
ALboolean alIsExtensionPresent( const ALchar* extname );
void* alGetProcAddress( const ALchar* fname );
ALenum alGetEnumValue( const ALchar* ename );
void alListenerf( ALenum param, ALfloat value );
void alListener3f( ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
void alListenerfv( ALenum param, const ALfloat* values );
void alListeneri( ALenum param, ALint value );
void alListener3i( ALenum param, ALint value1, ALint value2, ALint value3 );
void alListeneriv( ALenum param, const ALint* values );
void alGetListenerf( ALenum param, ALfloat* value );
void alGetListener3f( ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3 );
void alGetListenerfv( ALenum param, ALfloat* values );
void alGetListeneri( ALenum param, ALint* value );
void alGetListener3i( ALenum param, ALint *value1, ALint *value2, ALint *value3 );
void alGetListeneriv( ALenum param, ALint* values );
void alGenSources( ALsizei n, ALuint* sources );
void alDeleteSources( ALsizei n, const ALuint* sources );
ALboolean alIsSource( ALuint sid );
void alSourcef( ALuint sid, ALenum param, ALfloat value );
void alSource3f( ALuint sid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
void alSourcefv( ALuint sid, ALenum param, const ALfloat* values );
void alSourcei( ALuint sid, ALenum param, ALint value );
void alSource3i( ALuint sid, ALenum param, ALint value1, ALint value2, ALint value3 );
void alSourceiv( ALuint sid, ALenum param, const ALint* values );
void alGetSourcef( ALuint sid, ALenum param, ALfloat* value );
void alGetSource3f( ALuint sid, ALenum param, ALfloat* value1, ALfloat* value2, ALfloat* value3);
void alGetSourcefv( ALuint sid, ALenum param, ALfloat* values );
void alGetSourcei( ALuint sid, ALenum param, ALint* value );
void alGetSource3i( ALuint sid, ALenum param, ALint* value1, ALint* value2, ALint* value3);
void alGetSourceiv( ALuint sid, ALenum param, ALint* values );
void alSourcePlayv( ALsizei ns, const ALuint *sids );
void alSourceStopv( ALsizei ns, const ALuint *sids );
void alSourceRewindv( ALsizei ns, const ALuint *sids );
void alSourcePausev( ALsizei ns, const ALuint *sids );
void alSourcePlay( ALuint sid );
void alSourceStop( ALuint sid );
void alSourceRewind( ALuint sid );
void alSourcePause( ALuint sid );
void alSourceQueueBuffers( ALuint sid, ALsizei numEntries, const ALuint *bids );
void alSourceUnqueueBuffers( ALuint sid, ALsizei numEntries, ALuint *bids );
void alGenBuffers( ALsizei n, ALuint* buffers );
void alDeleteBuffers( ALsizei n, const ALuint* buffers );
ALboolean alIsBuffer( ALuint bid );
void alBufferData( ALuint bid, ALenum format, const ALvoid* data, ALsizei size, ALsizei freq );
void alBufferf( ALuint bid, ALenum param, ALfloat value );
void alBuffer3f( ALuint bid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
void alBufferfv( ALuint bid, ALenum param, const ALfloat* values );
void alBufferi( ALuint bid, ALenum param, ALint value );
void alBuffer3i( ALuint bid, ALenum param, ALint value1, ALint value2, ALint value3 );
void alBufferiv( ALuint bid, ALenum param, const ALint* values );
void alGetBufferf( ALuint bid, ALenum param, ALfloat* value );
void alGetBuffer3f( ALuint bid, ALenum param, ALfloat* value1, ALfloat* value2, ALfloat* value3);
void alGetBufferfv( ALuint bid, ALenum param, ALfloat* values );
void alGetBufferi( ALuint bid, ALenum param, ALint* value );
void alGetBuffer3i( ALuint bid, ALenum param, ALint* value1, ALint* value2, ALint* value3);
void alGetBufferiv( ALuint bid, ALenum param, ALint* values );
void alDopplerFactor( ALfloat value );
void alDopplerVelocity( ALfloat value );
void alSpeedOfSound( ALfloat value );
void alDistanceModel( ALenum distanceModel );
]]
return al
| 44.145455 | 97 | 0.745195 |
651fdac5827fe29d138693266254615918a91fe9 | 1,252 | lua | Lua | lua/lush/compiler.lua | ttys3/lush.nvim | 34e2cf62b86eae265acf521e0f2a6879982a68c0 | [
"MIT"
] | null | null | null | lua/lush/compiler.lua | ttys3/lush.nvim | 34e2cf62b86eae265acf521e0f2a6879982a68c0 | [
"MIT"
] | null | null | null | lua/lush/compiler.lua | ttys3/lush.nvim | 34e2cf62b86eae265acf521e0f2a6879982a68c0 | [
"MIT"
] | null | null | null |
-- TODO: args such as default, etc
-- TODO: include !?
local function make_link(from, to)
return "highlight! link " .. from .. " " .. to
end
local function make_group(name, opts)
-- We define groups "greedily", meaning we set any un-set options to NONE
-- TODO: good idea or nah?
-- 2021/02/19 - believe it was chosen because it allowed for {} group defs
-- which can clear exiting highlights
-- be nice and fix gui spaces if present
local gui = opts.gui or 'NONE'
gui = string.gsub(gui, ' ', '')
if gui == '' then
gui = 'NONE'
end
return table.concat({
'highlight ' .. name,
'guifg=' .. (opts.fg or 'NONE'),
'guibg=' .. (opts.bg or 'NONE'),
'guisp=' .. (opts.sp or 'NONE'),
'gui=' .. gui,
'blend=' .. (opts.blend or 'NONE'),
}, ' ')
end
local function compile(ast)
assert(type(ast) == "table" and ast.__lush.type == "parsed_lush_spec",
"can't compile, incorrect argument type", 4)
local commands = {}
for group_name, group_def in pairs(ast) do
if group_def.link then
table.insert(commands, make_link(group_name, group_def.link))
else
table.insert(commands, make_group(group_name, group_def))
end
end
return commands
end
return compile
| 26.083333 | 76 | 0.626997 |
f1381291bc7e7555753891ea6c31b99aeece64fa | 582 | rb | Ruby | spec/parcel_integration_spec.rb | jenleebell/parcel | 89734d721f4b78e63a3a2d32202707362e0e3aba | [
"Unlicense",
"MIT"
] | null | null | null | spec/parcel_integration_spec.rb | jenleebell/parcel | 89734d721f4b78e63a3a2d32202707362e0e3aba | [
"Unlicense",
"MIT"
] | null | null | null | spec/parcel_integration_spec.rb | jenleebell/parcel | 89734d721f4b78e63a3a2d32202707362e0e3aba | [
"Unlicense",
"MIT"
] | null | null | null | require('capybara/rspec')
require('launchy')
require('./app')
Capybara.app = Sinatra::Application
set(:show_exceptions, false)
describe('the parcel path', {:type => :feature}) do
it('processes the user entry and returns the total shipping cost') do
visit('/')
fill_in('length', :with => 2)
fill_in('width', :with => 2)
fill_in('depth', :with => 2)
fill_in('weight', :with => 2)
fill_in('distance', :with => 100)
select('First Class (up to 1 week)', :from => 'speed')
click_button('CALCULATE COST')
expect(page).to have_content('30')
end
end
| 29.1 | 71 | 0.640893 |
dfc6ef3bee9cc60268adddb842a397e45bcd7ce3 | 576 | tsx | TypeScript | web/src/ui/component/Tbutton.tsx | novanda1/teamhouse | 13d903b9428830c878291d137177e3fe878070ce | [
"MIT"
] | 4 | 2021-07-29T15:48:49.000Z | 2021-09-28T02:44:58.000Z | web/src/ui/component/Tbutton.tsx | novanda1/teamhouse | 13d903b9428830c878291d137177e3fe878070ce | [
"MIT"
] | 24 | 2021-06-18T14:28:18.000Z | 2021-12-07T07:48:52.000Z | web/src/ui/component/Tbutton.tsx | novanda1/teamhouse | 13d903b9428830c878291d137177e3fe878070ce | [
"MIT"
] | null | null | null | import { Button } from "@chakra-ui/react";
import React from "react";
interface TbuttonProps {
variant: "primary" | "secondary";
onClick: () => void;
}
export const Tbutton: React.FC<TbuttonProps> = ({
children,
variant,
onClick,
}) => {
return (
<Button
onClick={onClick}
backgroundColor={variant === "primary" ? "blackAlpha.900" : "white"}
color={variant === "primary" ? "white" : "blackAlpha.900"}
// _hover={variant === "primary" ? { color: "" } : { color: "#fafafa" }}
mb="4"
>
{children}
</Button>
);
};
| 22.153846 | 80 | 0.565972 |
32e1a8e93a435443240d032f9c3f0f35ed13c445 | 127 | sql | SQL | src/main/resources/db/migration/V1__superhero_create_table.sql | claudioaltamura/quarkus-superheroes | 22631fdca3e10b16712474c563d9c7e219d2c207 | [
"MIT"
] | null | null | null | src/main/resources/db/migration/V1__superhero_create_table.sql | claudioaltamura/quarkus-superheroes | 22631fdca3e10b16712474c563d9c7e219d2c207 | [
"MIT"
] | null | null | null | src/main/resources/db/migration/V1__superhero_create_table.sql | claudioaltamura/quarkus-superheroes | 22631fdca3e10b16712474c563d9c7e219d2c207 | [
"MIT"
] | null | null | null | CREATE TABLE superhero (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL,
real_name VARCHAR(100),
); | 25.4 | 36 | 0.614173 |
d9c9c4c5eff47022beed076f1ae52974cc43e8af | 2,341 | rs | Rust | implementations/rust/ockam/ockam_channel/src/lib.rs | L3pereira/ockam | f53336ec673eb137876551c240e31fae741ef0f9 | [
"Apache-2.0"
] | null | null | null | implementations/rust/ockam/ockam_channel/src/lib.rs | L3pereira/ockam | f53336ec673eb137876551c240e31fae741ef0f9 | [
"Apache-2.0"
] | null | null | null | implementations/rust/ockam/ockam_channel/src/lib.rs | L3pereira/ockam | f53336ec673eb137876551c240e31fae741ef0f9 | [
"Apache-2.0"
] | null | null | null | //! Secure channel types and traits of the Ockam library.
//!
//! This crate contains the secure channel types of the Ockam library and is intended
//! for use by other crates that provide features and add-ons to the main
//! Ockam library.
//!
//! The main Ockam crate re-exports types defined in this crate.
#![deny(
missing_docs,
trivial_casts,
trivial_numeric_casts,
unsafe_code,
unused_import_braces,
unused_qualifications,
warnings
)]
mod error;
mod local_info;
mod secure_channel;
mod secure_channel_listener;
mod secure_channel_worker;
mod traits;
pub use error::*;
pub use local_info::*;
pub use secure_channel::*;
pub use secure_channel_listener::*;
pub use secure_channel_worker::*;
pub use traits::*;
#[cfg(test)]
mod tests {
use crate::SecureChannel;
use ockam_core::Route;
use ockam_key_exchange_xx::XXNewKeyExchanger;
use ockam_vault::SoftwareVault;
use ockam_vault_sync_core::{Vault, VaultSync};
#[test]
fn simplest_channel() {
let (mut ctx, mut executor) = ockam_node::start_node();
executor
.execute(async move {
let vault = Vault::create_with_inner(&ctx, SoftwareVault::default())?;
let vault_sync = VaultSync::create_with_worker(&ctx, &vault).unwrap();
let new_key_exchanger = XXNewKeyExchanger::new(vault_sync.clone());
SecureChannel::create_listener_extended(
&ctx,
"secure_channel_listener".to_string(),
new_key_exchanger.clone(),
vault_sync.clone(),
)
.await?;
let initiator = SecureChannel::create_extended(
&ctx,
Route::new().append("secure_channel_listener"),
None,
&new_key_exchanger,
vault_sync,
)
.await?;
let test_msg = "Hello, channel".to_string();
ctx.send(
Route::new().append(initiator.address()).append("app"),
test_msg.clone(),
)
.await?;
assert_eq!(ctx.receive::<String>().await?, test_msg);
ctx.stop().await
})
.unwrap();
}
}
| 31.213333 | 86 | 0.572832 |
2723c3070176292efbdcf039ddb7e33d8fc68b25 | 83 | css | CSS | ansible_collections/juniper/device/docs/_static/juniper-junos-modules.css | tobiasjohanssonsdnit/ansible-junos-stdlib | aa33d23e65741aa988997b3a7954c0bf011c1cdc | [
"Apache-2.0",
"BSD-3-Clause"
] | 274 | 2015-01-04T06:12:53.000Z | 2022-02-24T07:19:12.000Z | ansible_collections/juniper/device/docs/_static/juniper-junos-modules.css | tobiasjohanssonsdnit/ansible-junos-stdlib | aa33d23e65741aa988997b3a7954c0bf011c1cdc | [
"Apache-2.0",
"BSD-3-Clause"
] | 369 | 2015-01-07T21:02:35.000Z | 2022-03-28T16:00:46.000Z | ansible_collections/juniper/device/docs/_static/juniper-junos-modules.css | tobiasjohanssonsdnit/ansible-junos-stdlib | aa33d23e65741aa988997b3a7954c0bf011c1cdc | [
"Apache-2.0",
"BSD-3-Clause"
] | 184 | 2015-01-08T00:47:57.000Z | 2022-03-25T05:15:43.000Z | td, th {
padding: 20px;
}
code {
color: #3a87ad;
background-color: #d9edf7;
} | 11.857143 | 28 | 0.614458 |
e965f83df0f033df2e9dc97ce694fbea91a2b52b | 1,464 | rb | Ruby | app/controllers/visit_details_controller.rb | coronasafe/arike | 481fd02f637363c877f5176bef1861798de1fa76 | [
"MIT"
] | 13 | 2021-03-13T15:04:05.000Z | 2021-12-30T05:54:50.000Z | app/controllers/visit_details_controller.rb | coronasafe/arike | 481fd02f637363c877f5176bef1861798de1fa76 | [
"MIT"
] | 98 | 2021-03-20T07:53:53.000Z | 2022-02-27T11:55:43.000Z | app/controllers/visit_details_controller.rb | coronasafe/arike | 481fd02f637363c877f5176bef1861798de1fa76 | [
"MIT"
] | 3 | 2021-03-17T08:06:55.000Z | 2021-08-13T03:37:09.000Z | class VisitDetailsController < ApplicationController
skip_before_action :verify_authenticity_token
def index
@patient = Patient.find_by(id: params[:patient_id])
@visits = VisitDetail.all.where(patient_id: params[:patient_id]).reverse()
render "index"
end
def create
visit =
VisitDetail.new()
if visit.save
flash[:notice] = 'Successfully created visit'
redirect_to new_visit_detail_path
else
flash[:alert] = visit.error.full_messages.join(', ')
redirect_to new_visit_detail_path
end
end
def new
@visit = VisitDetail.create!(patient_id: params[:patient_id])
@patient=Patient.find_by(id: params[:patient_id])
redirect_to patient_visit_general_information_path(@patient,@visit)
end
def show
@general_health_information = GeneralHealthInformation.find_by(visit_id: params[:id])
@physical_symptom = PhysicalSymptom.find_by(visit_id: params[:id])
@physical_examination = PhysicalExamination.find_by(visit_id: params[:id])
@psychological_review = PsychologicalReview.find_by(visit_id: params[:id])
puts "General Health Info"
puts @general_health_information
puts "Physical Symptom"
puts @physical_symptom
puts "Physical Examination"
puts @physical_examination
puts "Psychological"
puts @psychological_review
render "show"
end
def decision; end
def expired; end
def assign_to; end
def schedule_revisit; end
end
| 25.241379 | 89 | 0.729508 |
d29392ae7dd9d22c55f7f9586d6d2d2fb524e251 | 175 | php | PHP | resources/views/components/container.blade.php | pixeldoris/widd-test-2017 | 636fb68e5a777194f6247281c4a795c9cefbfe1f | [
"MIT"
] | null | null | null | resources/views/components/container.blade.php | pixeldoris/widd-test-2017 | 636fb68e5a777194f6247281c4a795c9cefbfe1f | [
"MIT"
] | null | null | null | resources/views/components/container.blade.php | pixeldoris/widd-test-2017 | 636fb68e5a777194f6247281c4a795c9cefbfe1f | [
"MIT"
] | null | null | null | <div class="grid">
<div class="container -title">
<h2 class="title -container">{{ $title }}</h2>
</div>
</div>
<div class="container -content">
{{ $slot }}
</div>
| 19.444444 | 50 | 0.565714 |
7409b6b95d800c9e5447ae2e135d17a28b64354c | 9,958 | c | C | TC_gui/main.c | tizenorg/framework.api.system-settings | 7ea8c1fec54173ecdb3f12a98019b73a14da3165 | [
"Apache-2.0"
] | null | null | null | TC_gui/main.c | tizenorg/framework.api.system-settings | 7ea8c1fec54173ecdb3f12a98019b73a14da3165 | [
"Apache-2.0"
] | null | null | null | TC_gui/main.c | tizenorg/framework.api.system-settings | 7ea8c1fec54173ecdb3f12a98019b73a14da3165 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "main.h"
#include <system_settings.h>
static void _quit_cb(void *data, Evas_Object* obj, void* event_info)
{
Evas_Object *win = (Evas_Object *) data;
elm_win_lower(win);
}
static Evas_Object* create_win(const char *name)
{
Evas_Object *eo;
int w, h;
eo = elm_win_add(NULL, name, ELM_WIN_BASIC);
if (!eo) return NULL;
elm_win_title_set(eo, name);
elm_win_borderless_set(eo, EINA_TRUE);
elm_win_autodel_set(eo, EINA_TRUE);
evas_object_smart_callback_add(eo, "delete,request", _quit_cb, NULL);
ecore_x_window_size_get(ecore_x_window_root_first_get(), &w, &h);
evas_object_resize(eo, w, h);
return eo;
}
static Evas_Object* _create_bg(Evas_Object *parent)
{
Evas_Object *bg;
bg = elm_bg_add(parent);
evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(parent, bg);
evas_object_show(bg);
return bg;
}
static Evas_Object* _create_layout_main(Evas_Object* parent)
{
Evas_Object *layout;
layout = elm_layout_add(parent);
elm_layout_theme_set(layout, "layout", "application", "default");
evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(parent, layout);
evas_object_show(layout);
return layout;
}
static Evas_Object* _create_naviframe_layout(Evas_Object* parent)
{
Evas_Object *navi;
navi = elm_naviframe_add(parent);
elm_object_part_content_set(parent, "elm.swallow.content", navi);
evas_object_show(navi);
return navi;
}
static void _create_view_layout(struct appdata *ad)
{
Evas_Object *list;
Evas_Object *btn;
list = _create_list_winset(ad->win_main, ad);
btn = elm_button_add(ad->navi);
elm_object_style_set(btn, "naviframe/end_btn/default");
evas_object_smart_callback_add(btn, "clicked", _quit_cb, ad->win_main);
elm_naviframe_item_push(ad->navi, _("Tizen UI"), btn, NULL, list, NULL);
}
void list_item_touch_handler_exit(void* data, Evas_Object* obj, void* event_info)
{
elm_exit();
}
/**
* Huge
*/
void list_item_touch_handler1(void* data, Evas_Object* obj, void* event_info)
{
int ret;
ret = system_settings_set_value_int(SYSTEM_SETTINGS_KEY_FONT_SIZE, SYSTEM_SETTINGS_FONT_SIZE_HUGE);
ret = system_settings_set_value_string(SYSTEM_SETTINGS_KEY_FONT_TYPE, "HelveticaNeue");
}
/**
* Normal
*/
void list_item_touch_handler2(void* data, Evas_Object* obj, void* event_info)
{
int ret;
ret = system_settings_set_value_int(SYSTEM_SETTINGS_KEY_FONT_SIZE, SYSTEM_SETTINGS_FONT_SIZE_NORMAL);
ret = system_settings_set_value_string(SYSTEM_SETTINGS_KEY_FONT_TYPE, "HelveticaNeue");
}
void list_item_touch_handler3(void* data, Evas_Object* obj, void* event_info)
{
int ret;
ret = system_settings_set_value_string(SYSTEM_SETTINGS_KEY_FONT_TYPE, "HelveticaNeue");
}
void list_item_touch_handler4(void* data, Evas_Object* obj, void* event_info)
{
int ret;
ret = system_settings_set_value_string(SYSTEM_SETTINGS_KEY_FONT_TYPE, "HelveticaNeue");
}
void list_item_touch_handler5(void* data, Evas_Object* obj, void* event_info)
{
printf(">>>>>>>> motion activation ON \n");
system_settings_set_value_bool(SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION, 1/*ON*/);
}
void list_item_touch_handler6(void* data, Evas_Object* obj, void* event_info)
{
printf(">>>>>>>> motion activation OFF \n");
system_settings_set_value_bool(SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION, 0/*OFF*/);
}
void system_settings_changed_font_size(system_settings_key_e key, void *user_data)
{
printf(">>>>>>>> system_settings_changed_font_size key = %d \n", key);
printf("---------------------------------CALLED BY USER APPLICATION -FONT SIZE \n");
}
void system_settings_changed_font_type(system_settings_key_e key, void *user_data)
{
printf(">>>>>>>> system_settings_changed_font_type key = %d \n", key);
printf("---------------------------------CALLED BY USER APPLICATION -FONT TYPE \n");
}
void system_settings_changed_motion_activation(system_settings_key_e key, void *user_data)
{
printf(">>>>>>>> system_settings_changed_motion_activation key = %d \n", key);
printf("---------------------------------CALLED BY USER APPLICATION-MOTION ACTIVIATION \n");
}
static Evas_Object* _create_list_winset(Evas_Object* parent, struct appdata* ad)
{
Evas_Object *li;
int idx = 0;
//struct _menu_item *menu_its;
int ret;
ret = system_settings_set_changed_cb(SYSTEM_SETTINGS_KEY_FONT_SIZE, system_settings_changed_font_size, NULL);
ret = system_settings_set_changed_cb(SYSTEM_SETTINGS_KEY_FONT_TYPE, system_settings_changed_font_type, NULL);
if (ret < 0) {
printf("SYSTEM_SETTINGS_KEY_FONT_TYPE returns negative values = %d \n", ret);
} else {
printf("SYSTEM_SETTINGS_KEY_FONT_TYPE returns positive values = %d, means successful return. \n", ret);
}
// callback registration
ret = system_settings_set_changed_cb(SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION, system_settings_changed_motion_activation, NULL);
if (ret < 0) {
printf("SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION returns negative values = %d \n", ret);
} else {
printf("SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION returns positive values = %d, means successful return. \n", ret);
}
li = elm_list_add(parent);
elm_list_mode_set(li, ELM_LIST_COMPRESS);
elm_list_item_append( li, "QUIT", NULL, NULL, list_item_touch_handler_exit, ad);
elm_list_item_append( li, "font size - bigger ", NULL, NULL, list_item_touch_handler1, ad);
elm_list_item_append( li, "font size - normal ", NULL, NULL, list_item_touch_handler2, ad);
elm_list_item_append( li, "font type - choose Helvetica 1 ", NULL, NULL, list_item_touch_handler3, ad);
elm_list_item_append( li, "font type - choose Helvetica 2 ", NULL, NULL, list_item_touch_handler4, ad);
elm_list_item_append( li, "motion activation ON ", NULL, NULL, list_item_touch_handler5, ad);
elm_list_item_append( li, "motion activation OFF ", NULL, NULL, list_item_touch_handler6, ad);
elm_list_go(li);
return li;
}
static void _mouse_down_cb(void *data, Evas *evas, Evas_Object *obj, void *event_info)
{
//struct appdata *ad = (struct appdata *)data;
//Evas_Event_Mouse_Down *ev = event_info;
}
static void _mouse_up_cb(void *data, Evas *evas, Evas_Object *obj, void *event_info)
{
//struct appdata *ad = (struct appdata *)data;
}
static void _mouse_move_cb(void *data, Evas *evas, Evas_Object *obj, void *event_info)
{
//struct appdata *ad = (struct appdata *)data;
}
static void _window_resize_cb(void *data, Evas * e, Evas_Object * obj, void *event_info)
{
struct appdata *ad = (struct appdata *)data;
evas_object_geometry_get(ad->win_main, NULL, NULL, &ad->root_w, &ad->root_h);
}
static int _rotation_cb(enum appcore_rm mode, void *data)
{
struct appdata *ad = (struct appdata *)data;
int angle;
switch (mode) {
case APPCORE_RM_LANDSCAPE_NORMAL:
angle = -90;
break;
case APPCORE_RM_LANDSCAPE_REVERSE:
angle = 90;
break;
case APPCORE_RM_PORTRAIT_REVERSE:
angle = 180;
break;
case APPCORE_RM_UNKNOWN:
case APPCORE_RM_PORTRAIT_NORMAL:
default:
angle = 0;
break;
}
elm_win_rotation_with_resize_set(ad->win_main, angle);
// set_rotation_degree(angle);
// This is need for customized rotation process.
// rotate_for_winset(mode);
return 0;
}
int app_create(void *data)
{
struct appdata *ad = (struct appdata *) data;
// Set the engine to opengl_x11
//elm_config_engine_set("opengl_x11");
ad->win_main = create_win(PACKAGE);
evas_object_event_callback_add(ad->win_main, EVAS_CALLBACK_RESIZE, _window_resize_cb, ad);
evas_object_show(ad->win_main);
ad->evas = evas_object_evas_get(ad->win_main);
appcore_set_rotation_cb(_rotation_cb, ad);
// set_edj_name(NULL);
ad->bg = _create_bg(ad->win_main);
ad->layout_main = _create_layout_main(ad->win_main);
elm_win_indicator_mode_set(ad->win_main, ELM_WIN_INDICATOR_SHOW);
ad->navi = _create_naviframe_layout(ad->layout_main);
_create_view_layout(ad);
evas_object_event_callback_add(ad->navi, EVAS_CALLBACK_MOUSE_DOWN, _mouse_down_cb, ad);
evas_object_event_callback_add(ad->navi, EVAS_CALLBACK_MOUSE_UP, _mouse_up_cb, ad);
evas_object_event_callback_add(ad->navi, EVAS_CALLBACK_MOUSE_MOVE, _mouse_move_cb, ad);
return 0;
}
int app_terminate(void *data)
{
//struct appdata *ad = data;
int ret;
// unregistration
ret = system_settings_unset_changed_cb(SYSTEM_SETTINGS_KEY_FONT_SIZE);
ret = system_settings_unset_changed_cb(SYSTEM_SETTINGS_KEY_FONT_TYPE);
ret = system_settings_unset_changed_cb(SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION);
return 0;
}
int app_pause(void *data)
{
//struct appdata *ad = data;
return 0;
}
int app_resume(void *data)
{
//struct appdata *ad = data;
return 0;
}
int app_reset(bundle* b, void* data)
{
struct appdata* ad = data;
if (ad->win_main)
elm_win_activate(ad->win_main);
return 0;
}
int main(int argc, char* argv[])
{
struct appdata ad;
struct appcore_ops ops = {
.create = app_create,
.terminate = app_terminate,
.pause = app_pause,
.resume = app_resume,
.reset = app_reset
};
ops.data = &ad;
return appcore_efl_main(PACKAGE, &argc, &argv, &ops);
}
| 29.03207 | 126 | 0.728259 |
84b8c6104f2cc181d327d7065a6ecbf75a3c9573 | 746 | h | C | Modules/Bullet/RNBulletInternals.h | uberpixel/Rayne | 94f601561aedfc3200e67ff9522f64fbc5ca4d8c | [
"MIT"
] | 13 | 2020-08-08T11:57:05.000Z | 2022-03-10T17:29:19.000Z | Modules/Bullet/RNBulletInternals.h | uberpixel/Rayne | 94f601561aedfc3200e67ff9522f64fbc5ca4d8c | [
"MIT"
] | 1 | 2022-03-10T17:35:28.000Z | 2022-03-10T18:21:57.000Z | Modules/Bullet/RNBulletInternals.h | uberpixel/Rayne | 94f601561aedfc3200e67ff9522f64fbc5ca4d8c | [
"MIT"
] | 3 | 2020-08-08T14:22:34.000Z | 2021-05-15T21:12:17.000Z | //
// RNBulletInternals.h
// Rayne-Bullet
//
// Copyright 2017 by Überpixel. All rights reserved.
// Unauthorized use is punishable by torture, mutilation, and vivisection.
//
#ifndef __RAYNE_BULLETINTERNALS_H_
#define __RAYNE_BULLETINTERNALS_H_
#include "RNBullet.h"
#include "btBulletDynamicsCommon.h"
namespace RN
{
class BulletRigidBodyMotionState : public btMotionState
{
public:
void SetSceneNode(SceneNodeAttachment *attachment);
void SetPositionOffset(Vector3 offset);
void getWorldTransform(btTransform &worldTrans) const override;
void setWorldTransform(const btTransform &worldTrans) override;
private:
SceneNodeAttachment *_attachment;
Vector3 _offset;
};
}
#endif /* defined(__RAYNE_BULLETINTERNALS_H_) */
| 22.606061 | 75 | 0.784182 |
f8d186550b2f3bd7aa83600c98d673765efe67d7 | 271 | swift | Swift | James/Learning Code 1/conquering a maze.swift | haiyanw5837/CodePracticeResult | 9a619f32f417ba16966f1b86ce0ec0d68326bff8 | [
"Apache-2.0"
] | 18 | 2019-12-29T11:35:10.000Z | 2020-08-30T14:34:28.000Z | James/Learning Code 1/conquering a maze.swift | haiyanw5837/CodePracticeResult | 9a619f32f417ba16966f1b86ce0ec0d68326bff8 | [
"Apache-2.0"
] | 63 | 2020-01-04T19:34:57.000Z | 2021-01-02T21:57:43.000Z | James/Learning Code 1/conquering a maze.swift | haiyanw5837/CodePracticeResult | 9a619f32f417ba16966f1b86ce0ec0d68326bff8 | [
"Apache-2.0"
] | 36 | 2021-01-29T22:39:07.000Z | 2022-01-24T00:41:13.000Z | func a() {
if isBlocked{
turnLeft()
}
if !isBlocked {
moveForward()
}
}
for i in 1 ... 19 {
a()
}
turnLeft()
for i in 1 ... 5 {
a()
}
turnRight()
a()
a()
a()
turnLeft()
for i in 1 ... 5 {
a()
}
turnRight()
a()
a()
collectGem()
| 9.678571 | 21 | 0.453875 |
f94373247744a3ff5a4d3f8b9d0e3b715fc6b3e8 | 116 | swift | Swift | Tests/LinuxMain.swift | srgisme/Swiftux | 69bcc2b4f867b5ecffb9c6348b30c423f034ad66 | [
"MIT"
] | null | null | null | Tests/LinuxMain.swift | srgisme/Swiftux | 69bcc2b4f867b5ecffb9c6348b30c423f034ad66 | [
"MIT"
] | 1 | 2020-02-13T22:19:47.000Z | 2020-02-13T22:19:47.000Z | Tests/LinuxMain.swift | srgisme/Swiftux | 69bcc2b4f867b5ecffb9c6348b30c423f034ad66 | [
"MIT"
] | null | null | null | import XCTest
import SwiftuxTests
var tests = [XCTestCaseEntry]()
tests += SwiftuxTests.allTests()
XCTMain(tests)
| 14.5 | 32 | 0.775862 |
4a9a9fd8570c35c92a7dbeeb01c3b0d1018e61f4 | 727 | lua | Lua | src/lua-coin-tree/Resources/src/app/asset/asset_tree_state.lua | dios-game/dios-cocos-samples | ac667e54070cab185bd7c236ac2710ad9d447407 | [
"MIT"
] | 1 | 2016-05-25T02:57:02.000Z | 2016-05-25T02:57:02.000Z | src/lua-coin-tree/Resources/src/app/asset/asset_tree_state.lua | dios-game/dios-cocos-samples | ac667e54070cab185bd7c236ac2710ad9d447407 | [
"MIT"
] | null | null | null | src/lua-coin-tree/Resources/src/app/asset/asset_tree_state.lua | dios-game/dios-cocos-samples | ac667e54070cab185bd7c236ac2710ad9d447407 | [
"MIT"
] | 1 | 2021-04-17T16:06:00.000Z | 2021-04-17T16:06:00.000Z | --region *.lua
--Date
--此文件由[BabeLua]插件自动生成
game.CAssetTreeState = {
['1'] = {
['name'] = "荒地",
['need_item_id'] = 1
},
['2'] = {
['name'] = "沃土",
['need_item_id'] = 2
},
['3'] = {
['name'] = "绿芽",
['need_item_id'] = 3
},
['4'] = {
['name'] = "小树苗",
['need_item_id'] = 3
},
['5'] = {
['name'] = "中树苗",
['need_item_id'] = 4
},
['6'] = {
['name'] = "大树",
['need_item_id'] = 4
},
['7'] = {
['name'] = "开花",
['need_item_id'] = 5
},
['8'] = {
['name'] = "结果",
['need_item_id'] = 0 -- 0是可以摇钱了
},
}
return game.CAssetTreeState
--endregion
| 16.906977 | 39 | 0.34663 |
fb4bf5d161459d75f10549882ff902b30321b984 | 355,004 | h | C | pop/extern/unicode/euc_jp_tables.h | nickpapadonis/poplog-x64 | c4af8c97e68823fe162fbedde0bc0af183c3a1ca | [
"MIT"
] | null | null | null | pop/extern/unicode/euc_jp_tables.h | nickpapadonis/poplog-x64 | c4af8c97e68823fe162fbedde0bc0af183c3a1ca | [
"MIT"
] | null | null | null | pop/extern/unicode/euc_jp_tables.h | nickpapadonis/poplog-x64 | c4af8c97e68823fe162fbedde0bc0af183c3a1ca | [
"MIT"
] | null | null | null | /* --- Copyright Integral Solutions Ltd 1997. All rights reserved. --------
* File: C.all/extern/unicode/euc_jp_tables.h
* Purpose: Conversion tables for EUC-JP
* Author: Todd Brye, NCR Corporation 1997 (see revisions)
*/
static const unsigned short
enXX[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
setXX[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en00[] = {0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xA,0xB,0xC,0xD,0xE,0xF,0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,0x1C,0x1D,0x1E,0x1F,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,0x2A,0x2B,0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x3A,0x3B,0x3C,0x3D,0x3E,0x3F,0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4A,0x4B,0x4C,0x4D,0x4E,0x4F,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5A,0x5B,/*0xA5*/0x5C,0x5D,0x5E,0x5F,0x60,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6A,0x6B,0x6C,0x6D,0x6E,0x6F,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7A,0x7B,0x7C,0x7D,/*0xAF*/0x7E,0x7F,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F,0x3F,0xA2C2,0xA1F1,0xA1F2,0xA2F0,0x3F,0xA2C3,0xA1F8,0xA1AF,0xA2D9,0xA2D8,0x3F,0xA2CC,0x3F,0xA2DA,0xA2B4,0xA1EB,0xA1DE,0x3F,0x3F,0xA1AD,0x3F,0xA2F9,0x3F,0xA2B1,0x3F,0xA2D7,0x3F,0x3F,0x3F,0x3F,0xA2C4,0xAAA2,0xAAA1,0xAAA4,0xAAAA,0xAAA3,0xAAA9,0xA9A1,0xAAAE,0xAAB2,0xAAB1,0xAAB4,0xAAB3,0xAAC0,0xAABF,0xAAC2,0xAAC1,0x3F,0xAAD0,0xAAD2,0xAAD1,0xAAD4,0xAAD8,0xAAD3,0xA1DF,0xA9AC,0xAAE3,0xAAE2,0xAAE5,0xAAE4,0xAAF2,0xA9B0,0xA9CE,0xABA2,0xABA1,0xABA4,0xABAA,0xABA3,0xABA9,0xA9C1,0xABAE,0xABB2,0xABB1,0xABB4,0xABB3,0xABC0,0xABBF,0xABC2,0xABC1,0xA9C3,0xABD0,0xABD2,0xABD1,0xABD4,0xABD8,0xABD3,0xA1E0,0xA9CC,0xABE3,0xABE2,0xABE5,0xABE4,0xABF2,0xA9D0,0xABF3},
set00[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0xFF,3,1,1,3,0xFF,3,1,1,3,3,0xFF,1,0xFF,3,3,1,1,0xFF,0xFF,1,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0xFF,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3},
en01[] = {0xAAA7,0xABA7,0xAAA5,0xABA5,0xAAA8,0xABA8,0xAAAB,0xABAB,0xAAAC,0xABAC,0xAAAF,0xABAF,0xAAAD,0xABAD,0xAAB0,0xABB0,0xA9A2,0xA9C2,0xAAB7,0xABB7,0x3F,0x3F,0xAAB6,0xABB6,0xAAB8,0xABB8,0xAAB5,0xABB5,0xAABA,0xABBA,0xAABB,0xABBB,0xAABD,0xABBD,0xAABC,0x3F,0xAABE,0xABBE,0xA9A4,0xA9C4,0xAAC7,0xABC7,0xAAC5,0xABC5,0x3F,0x3F,0xAAC6,0xABC6,0xAAC4,0xA9C5,0xA9A6,0xA9C6,0xAAC8,0xABC8,0xAAC9,0xABC9,0xA9C7,0xAACA,0xABCA,0xAACC,0xABCC,0xAACB,0xABCB,0xA9A9,0xA9C9,0xA9A8,0xA9C8,0xAACD,0xABCD,0xAACF,0xABCF,0xAACE,0xABCE,0xA9CA,0xA9AB,0xA9CB,0xAAD7,0xABD7,0x3F,0x3F,0xAAD6,0xABD6,0xA9AD,0xA9CD,0xAAD9,0xABD9,0xAADB,0xABDB,0xAADA,0xABDA,0xAADC,0xABDC,0xAADD,0xABDD,0xAADF,0xABDF,0xAADE,0xABDE,0xAAE1,0xABE1,0xAAE0,0xABE0,0xA9AF,0xA9CF,0xAAEC,0xABEC,0xAAE9,0xABE9,0xAAE6,0xABE6,0xAAEB,0xABEB,0xAAE8,0xABE8,0xAAEA,0xABEA,0xAAF1,0xABF1,0xAAF4,0xABF4,0xAAF3,0xAAF5,0xABF5,0xAAF7,0xABF7,0xAAF6,0xABF6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xAAA6,0xABA6,0xAAC3,0xABC3,0xAAD5,0xABD5,0xAAE7,0xABE7,0xAAF0,0xABF0,0xAAED,0xABED,0xAAEF,0xABEF,0xAAEE,0xABEE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xABB9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set01[] = {3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0xFF,0xFF,3,3,3,3,3,3,3,3,3,3,3,3,3,0xFF,3,3,3,3,3,3,3,3,0xFF,0xFF,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0xFF,0xFF,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en02[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2B0,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2AF,0xA2B2,0xA2B6,0xA2B5,0x3F,0xA2B3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set02[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en03[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2B8,0xA2B9,0xA6E1,0x3F,0xA6E2,0xA6E3,0xA6E4,0x3F,0xA6E7,0x3F,0xA6E9,0xA6EC,0xA6F6,0xA6A1,0xA6A2,0xA6A3,0xA6A4,0xA6A5,0xA6A6,0xA6A7,0xA6A8,0xA6A9,0xA6AA,0xA6AB,0xA6AC,0xA6AD,0xA6AE,0xA6AF,0xA6B0,0xA6B1,0x3F,0xA6B2,0xA6B3,0xA6B4,0xA6B5,0xA6B6,0xA6B7,0xA6B8,0xA6E5,0xA6EA,0xA6F1,0xA6F2,0xA6F3,0xA6F4,0xA6FB,0xA6C1,0xA6C2,0xA6C3,0xA6C4,0xA6C5,0xA6C6,0xA6C7,0xA6C8,0xA6C9,0xA6CA,0xA6CB,0xA6CC,0xA6CD,0xA6CE,0xA6CF,0xA6D0,0xA6D1,0xA6F8,0xA6D2,0xA6D3,0xA6D4,0xA6D5,0xA6D6,0xA6D7,0xA6D8,0xA6F5,0xA6FA,0xA6F7,0xA6F9,0xA6FC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set03[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,3,3,3,0xFF,3,0xFF,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,1,1,1,1,1,1,1,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,3,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en04[] = {0x3F,0xA7A7,0xA7C2,0xA7C3,0xA7C4,0xA7C5,0xA7C6,0xA7C7,0xA7C8,0xA7C9,0xA7CA,0xA7CB,0xA7CC,0xA7CD,0xA7CE,0xA7CF,0xA7A1,0xA7A2,0xA7A3,0xA7A4,0xA7A5,0xA7A6,0xA7A8,0xA7A9,0xA7AA,0xA7AB,0xA7AC,0xA7AD,0xA7AE,0xA7AF,0xA7B0,0xA7B1,0xA7B2,0xA7B3,0xA7B4,0xA7B5,0xA7B6,0xA7B7,0xA7B8,0xA7B9,0xA7BA,0xA7BB,0xA7BC,0xA7BD,0xA7BE,0xA7BF,0xA7C0,0xA7C1,0xA7D1,0xA7D2,0xA7D3,0xA7D4,0xA7D5,0xA7D6,0xA7D8,0xA7D9,0xA7DA,0xA7DB,0xA7DC,0xA7DD,0xA7DE,0xA7DF,0xA7E0,0xA7E1,0xA7E2,0xA7E3,0xA7E4,0xA7E5,0xA7E6,0xA7E7,0xA7E8,0xA7E9,0xA7EA,0xA7EB,0xA7EC,0xA7ED,0xA7EE,0xA7EF,0xA7F0,0xA7F1,0x3F,0xA7D7,0xA7F2,0xA7F3,0xA7F4,0xA7F5,0xA7F6,0xA7F7,0xA7F8,0xA7F9,0xA7FA,0xA7FB,0xA7FC,0x3F,0xA7FD,0xA7FE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set04[] = {0xFF,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,1,3,3,3,3,3,3,3,3,3,3,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en20[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1BE,0x3F,0x3F,0x3F,0x3F,0xA1BD,0xA1C2,0x3F,0xA1C6,0xA1C7,0x3F,0x3F,0xA1C8,0xA1C9,0x3F,0x3F,0xA2F7,0xA2F8,0x3F,0x3F,0x3F,0xA1C5,0xA1C4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2F3,0x3F,0xA1EC,0xA1ED,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2A8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set20[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en21[] = {0x3F,0x3F,0x3F,0xA1EE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2F1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2DB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2F2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2AB,0xA2AC,0xA2AA,0xA2AD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2CD,0x3F,0xA2CE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set21[] = {0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en22[] = {0xA2CF,0x3F,0xA2DF,0xA2D0,0x3F,0x3F,0x3F,0xA2E0,0xA2BA,0x3F,0x3F,0xA2BB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1DD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2E5,0x3F,0x3F,0xA2E7,0xA1E7,0x3F,0xA2DC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2CA,0xA2CB,0xA2C1,0xA2C0,0xA2E9,0xA2EA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1E8,0xA2E8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2E6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2E2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1E2,0xA2E1,0x3F,0x3F,0x3F,0x3F,0xA1E5,0xA1E6,0x3F,0x3F,0xA2E3,0xA2E4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2BE,0xA2BF,0x3F,0x3F,0xA2BC,0xA2BD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2DD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set22[] = {1,0xFF,1,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en23[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2DE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set23[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en25[] = {0xA8A1,0xA8AC,0xA8A2,0xA8AD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA8A3,0x3F,0x3F,0xA8AE,0xA8A4,0x3F,0x3F,0xA8AF,0xA8A6,0x3F,0x3F,0xA8B1,0xA8A5,0x3F,0x3F,0xA8B0,0xA8A7,0xA8BC,0x3F,0x3F,0xA8B7,0x3F,0x3F,0xA8B2,0xA8A9,0xA8BE,0x3F,0x3F,0xA8B9,0x3F,0x3F,0xA8B4,0xA8A8,0x3F,0x3F,0xA8B8,0xA8BD,0x3F,0x3F,0xA8B3,0xA8AA,0x3F,0x3F,0xA8BA,0xA8BF,0x3F,0x3F,0xA8B5,0xA8AB,0x3F,0x3F,0xA8BB,0x3F,0x3F,0xA8C0,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA8B6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2A3,0xA2A2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2A5,0xA2A4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2A7,0xA2A6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2A1,0xA1FE,0x3F,0x3F,0x3F,0xA1FB,0x3F,0x3F,0xA1FD,0xA1FC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2FE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set25[] = {1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,1,0xFF,0xFF,1,0xFF,0xFF,1,1,1,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en26[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0xA1FA,0xA1F9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1EA,0x3F,0xA1E9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA2F6,0x3F,0x3F,0xA2F5,0x3F,0xA2F4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set26[] = {0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en30[] = {0xA1A1,0xA1A2,0xA1A3,0xA1B7,0x3F,0xA1B9,0xA1BA,0xA1BB,0xA1D2,0xA1D3,0xA1D4,0xA1D5,0xA1D6,0xA1D7,0xA1D8,0xA1D9,0xA1DA,0xA1DB,0xA2A9,0xA2AE,0xA1CC,0xA1CD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1C1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA4A1,0xA4A2,0xA4A3,0xA4A4,0xA4A5,0xA4A6,0xA4A7,0xA4A8,0xA4A9,0xA4AA,0xA4AB,0xA4AC,0xA4AD,0xA4AE,0xA4AF,0xA4B0,0xA4B1,0xA4B2,0xA4B3,0xA4B4,0xA4B5,0xA4B6,0xA4B7,0xA4B8,0xA4B9,0xA4BA,0xA4BB,0xA4BC,0xA4BD,0xA4BE,0xA4BF,0xA4C0,0xA4C1,0xA4C2,0xA4C3,0xA4C4,0xA4C5,0xA4C6,0xA4C7,0xA4C8,0xA4C9,0xA4CA,0xA4CB,0xA4CC,0xA4CD,0xA4CE,0xA4CF,0xA4D0,0xA4D1,0xA4D2,0xA4D3,0xA4D4,0xA4D5,0xA4D6,0xA4D7,0xA4D8,0xA4D9,0xA4DA,0xA4DB,0xA4DC,0xA4DD,0xA4DE,0xA4DF,0xA4E0,0xA4E1,0xA4E2,0xA4E3,0xA4E4,0xA4E5,0xA4E6,0xA4E7,0xA4E8,0xA4E9,0xA4EA,0xA4EB,0xA4EC,0xA4ED,0xA4EE,0xA4EF,0xA4F0,0xA4F1,0xA4F2,0xA4F3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1AB,0xA1AC,0xA1B5,0xA1B6,0x3F,0x3F,0xA5A1,0xA5A2,0xA5A3,0xA5A4,0xA5A5,0xA5A6,0xA5A7,0xA5A8,0xA5A9,0xA5AA,0xA5AB,0xA5AC,0xA5AD,0xA5AE,0xA5AF,0xA5B0,0xA5B1,0xA5B2,0xA5B3,0xA5B4,0xA5B5,0xA5B6,0xA5B7,0xA5B8,0xA5B9,0xA5BA,0xA5BB,0xA5BC,0xA5BD,0xA5BE,0xA5BF,0xA5C0,0xA5C1,0xA5C2,0xA5C3,0xA5C4,0xA5C5,0xA5C6,0xA5C7,0xA5C8,0xA5C9,0xA5CA,0xA5CB,0xA5CC,0xA5CD,0xA5CE,0xA5CF,0xA5D0,0xA5D1,0xA5D2,0xA5D3,0xA5D4,0xA5D5,0xA5D6,0xA5D7,0xA5D8,0xA5D9,0xA5DA,0xA5DB,0xA5DC,0xA5DD,0xA5DE,0xA5DF,0xA5E0,0xA5E1,0xA5E2,0xA5E3,0xA5E4,0xA5E5,0xA5E6,0xA5E7,0xA5E8,0xA5E9,0xA5EA,0xA5EB,0xA5EC,0xA5ED,0xA5EE,0xA5EF,0xA5F0,0xA5F1,0xA5F2,0xA5F3,0xA5F4,0xA5F5,0xA5F6,0x3F,0x3F,0x3F,0x3F,0xA1A6,0xA1BC,0xA1B3,0xA1B4,0x3F},
set30[] = {1,1,1,1,0xFF,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,1,0xFF,0xFF,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,1,1,1,1,0xFF},
en4E[] = {0xB0EC,0xC3FA,0xB0A1,0xBCB7,0xB0A2,0xB0A3,0x3F,0xCBFC,0xBEE6,0xBBB0,0xBEE5,0xB2BC,0xB0A4,0xC9D4,0xCDBF,0x3F,0xD0A2,0xB1AF,0xB0A5,0x3F,0xB3EE,0xD0A3,0xC0A4,0xD2C2,0xB5D6,0xCABA,0x3F,0x3F,0x3F,0x3F,0xBEE7,0xB0A6,0x3F,0xCEBE,0x3F,0xB0A7,0xB0A8,0x3F,0xCAC2,0x3F,0xB0A9,0x3F,0xD0A4,0xB0AA,0x3F,0xC3E6,0xB0AB,0xB0AC,0xB0AD,0xD0A5,0xB6FA,0x3F,0x3F,0xB0AE,0xD0A6,0x3F,0xB4DD,0xC3B0,0x3F,0xBCE7,0xD0A7,0x3F,0x3F,0xD0A8,0xB0AF,0xB0B0,0xD0A9,0xC7B5,0xB0B1,0xB5D7,0x3F,0xB0B2,0x3F,0x3F,0x3F,0xC7B7,0x3F,0xC6E3,0xB8C3,0xCBB3,0x3F,0xB0B3,0x3F,0x3F,0x3F,0xE9C9,0xD0AA,0xBEE8,0xD0AB,0xB2B5,0xB0B4,0x3F,0xB0B5,0xB6E5,0xB8F0,0xCCE9,0x3F,0x3F,0xD6A6,0xB0B6,0x3F,0x3F,0x3F,0x3F,0xB0B7,0xB0B8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCDF0,0x3F,0xC6FD,0xB0B9,0xB0BA,0x3F,0x3F,0x3F,0xB0BB,0x3F,0x3F,0x3F,0x3F,0xB4A5,0xB0BC,0xB5B5,0x3F,0xD0AC,0x3F,0x3F,0xD0AD,0xCEBB,0x3F,0xCDBD,0xC1E8,0xD0AF,0xBBF6,0xC6F3,0xB0BD,0xD0B2,0x3F,0x3F,0xB1BE,0xB8DF,0x3F,0xB8DE,0xB0E6,0xB0BE,0xB0BF,0xCFCB,0xCFCA,0x3F,0xBAB3,0xB0A1,0xB0C0,0xD0B3,0xD0B4,0xD0B5,0xCBB4,0xD0B6,0x3F,0xB8F2,0xB0E7,0xCBF2,0x3F,0xB5FC,0x3F,0x3F,0xB5FD,0xB5FE,0xC4E2,0xCEBC,0xB0C1,0xD0B7,0x3F,0x3F,0xD0B8,0x3F,0x3F,0xD0B9,0x3F,0x3F,0xB0C2,0xBFCD,0x3F,0x3F,0x3F,0x3F,0x3F,0xBDBA,0xBFCE,0xD0BE,0xB0C3,0xD0BC,0x3F,0xD0BD,0xB5D8,0x3F,0x3F,0xBAA3,0xB2F0,0x3F,0xD0BB,0xD0BA,0xCAA9,0xB0C4,0x3F,0x3F,0x3F,0xBBC6,0xBBC5,0xC2BE,0xD0BF,0xC9D5,0xC0E7,0xB0C5,0xB0C6,0x3F,0xA1B8,0xD0C0,0xD0C2,0xB0C7,0xB0C8,0xB0C9,0xC2E5,0xCEE1,0xB0CA,0x3F,0x3F,0xB0CA,0x3F,0x3F,0x3F,0x3F,0xD0C1,0xB2BE,0xB0CB,0xB6C4,0xB0CC,0xC3E7,0xB0CD,0x3F,0xB0CE,0xB7EF,0xD0C3,0x3F,0x3F,0x3F,0xC7A4,0x3F,0xB0CF,0xB0D0,0xB0D1},
set4E[] = {1,1,3,1,3,3,0xFF,1,1,1,1,1,3,1,1,0xFF,1,1,3,0xFF,1,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,0xFF,3,3,0xFF,1,0xFF,3,0xFF,1,3,0xFF,1,3,3,3,1,1,0xFF,0xFF,3,1,0xFF,1,1,0xFF,1,1,0xFF,0xFF,1,3,3,1,1,3,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,1,1,0xFF,3,0xFF,0xFF,0xFF,1,1,1,1,1,3,0xFF,3,1,1,1,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,3,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,1,0xFF,0xFF,1,1,0xFF,1,1,1,1,1,3,1,0xFF,0xFF,1,1,0xFF,1,1,3,3,1,1,0xFF,1,1,3,1,1,1,1,1,0xFF,1,1,1,0xFF,1,0xFF,0xFF,1,1,1,1,3,1,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,3,1,0xFF,1,1,0xFF,0xFF,1,1,0xFF,1,1,1,3,0xFF,0xFF,0xFF,1,1,1,1,1,1,3,3,0xFF,1,1,1,3,3,3,1,1,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,3,1,3,1,3,0xFF,3,1,1,0xFF,0xFF,0xFF,1,0xFF,3,3,3},
en4F[] = {0xB0D2,0xB4EB,0xB0D3,0xB0D4,0x3F,0x3F,0x3F,0x3F,0xB0D5,0xD0C4,0xB0CB,0xB0D6,0xB0D7,0xB8E0,0xB4EC,0xC9FA,0xC8B2,0xB5D9,0xB0D8,0x3F,0x3F,0xB0D9,0xB0DA,0xB0DB,0x3F,0xB0DC,0xB2F1,0x3F,0xD0E7,0xC5C1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB0DD,0xC7EC,0xD0C6,0xB0DE,0x3F,0xB0E0,0xC8BC,0xB0E1,0xCEE2,0xB0E2,0xBFAD,0xB0E3,0xBBC7,0xB0E4,0xBBF7,0xB2C0,0xB0E5,0x3F,0xB0E6,0x3F,0xB0E7,0xC4D1,0x3F,0x3F,0xC3A2,0xD0CA,0xB0E8,0xB0E9,0x3F,0xB0EA,0xB0EB,0xB0CC,0xC4E3,0xBDBB,0xBAB4,0xCDA4,0xB0EC,0xC2CE,0xB0ED,0xB2BF,0xB0EE,0xD0C9,0xB0EF,0xCDBE,0xD0C5,0xD0C7,0xBAEE,0xD0C8,0xD5A4,0xB0F0,0xB0DF,0x3F,0x3F,0xB0F1,0x3F,0x3F,0x3F,0x3F,0x3F,0xD0D0,0xB0F2,0x3F,0xB0F3,0x3F,0xB0F4,0xD0D3,0xD0D1,0xB0F5,0x3F,0xB2C2,0x3F,0xCABB,0xD0CB,0xB0F6,0xB0F7,0xB0F8,0xB0F9,0xD0CF,0xB8F3,0xB0FA,0xB0FB,0xBBC8,0x3F,0xB0FC,0xB0FD,0xB4A6,0xB0FE,0xB1A1,0xD0D4,0x3F,0xD0CC,0xB1A2,0xB1A3,0xCEE3,0xB1A4,0xBBF8,0xB1A5,0xD0CD,0xB1A6,0xD0D2,0xB1A7,0xB1A8,0xB1A9,0x3F,0xD0D5,0xB1AA,0xD0CE,0xB1AB,0xB1AC,0xB6A1,0x3F,0xB0CD,0xB1AD,0xB1AE,0xB6A2,0xB2C1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD5A5,0x3F,0xCBF9,0xC9EE,0xB8F4,0x3F,0x3F,0xB1AF,0x3F,0x3F,0xBFAF,0xCEB7,0xB1B0,0x3F,0xB1B1,0x3F,0xB1B2,0xB1B3,0xB1B4,0xB1B5,0xCAD8,0xB1B6,0xB1B7,0xB7B8,0xC2A5,0xB2E4,0xB1B8,0xB1B9,0x3F,0xB1BA,0xB1BB,0xBDD3,0xB1BC,0xB1BD,0xB1BE,0xD0D9,0xB1BF,0xD0DE,0xD0DC,0xB1C0,0x3F,0xD0D7,0x3F,0x3F,0xC2AF,0xD0DA,0x3F,0xD0DD,0xD0DB,0xB1C1,0xCADD,0x3F,0xD0D8,0xB1C2,0xBFAE,0xB1C3,0xCBF3,0xD0DF,0xD0E0,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBDA4,0xD0ED,0xB1C4,0x3F,0xB1C5,0xC7D0,0x3F,0xC9B6,0xD0E8,0x3F,0xCAF0,0x3F,0xB2B6,0x3F,0xB1C6,0xB1C7,0xD0EC,0xB1C8},
set4F[] = {3,1,3,3,0xFF,0xFF,0xFF,0xFF,3,1,1,3,3,1,1,1,1,1,3,0xFF,0xFF,3,3,3,0xFF,3,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,3,0xFF,3,1,3,1,3,1,3,1,3,1,1,3,0xFF,3,0xFF,3,1,0xFF,0xFF,1,1,3,3,0xFF,3,3,1,1,1,1,1,3,1,3,1,3,1,3,1,1,1,1,1,1,3,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,3,0xFF,3,1,1,3,0xFF,1,0xFF,1,1,3,3,3,3,1,1,3,3,1,0xFF,3,3,1,3,3,1,0xFF,1,3,3,1,3,1,3,1,3,1,3,3,3,0xFF,1,3,1,3,3,1,0xFF,1,3,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,1,1,0xFF,0xFF,3,0xFF,0xFF,1,1,3,0xFF,3,0xFF,3,3,3,3,1,3,3,1,1,1,3,3,0xFF,3,3,1,3,3,3,1,3,1,1,3,0xFF,1,0xFF,0xFF,1,1,0xFF,1,1,3,1,0xFF,1,3,1,3,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,0xFF,3,1,0xFF,1,1,0xFF,1,0xFF,1,0xFF,3,3,1,3},
en50[] = {0xB1C9,0xB1CA,0x3F,0x3F,0xB1CB,0xD0E6,0xD0EF,0xB1CC,0x3F,0xC1D2,0xB1CD,0xB8C4,0xB1CE,0xC7DC,0xB1CF,0xE0C7,0xB1D0,0xD0EE,0xC5DD,0xB1D1,0xD0E3,0x3F,0xB8F6,0xB1D2,0xB1D3,0xB8F5,0xD0E1,0xB1D4,0xB1D5,0xB1D6,0xB1D7,0xBCDA,0x3F,0xD0E9,0xB1D8,0xCAEF,0xC3CD,0xD0E5,0xB7F1,0xB1D9,0xD0E2,0xD0EA,0xD0E4,0xCED1,0xD0EB,0xCFC1,0xB1DA,0x3F,0xB1DB,0x3F,0xB1DC,0xB1DD,0x3F,0xB1DE,0xB6E6,0x3F,0x3F,0xB7F0,0x3F,0xB1F6,0x3F,0x3F,0x3F,0x3F,0xB1DF,0xB1E0,0xB1E1,0xD0F0,0x3F,0xB1E2,0xB1E3,0xD0F1,0xD0F5,0xB0CE,0xB1E4,0x3F,0xB1E5,0x3F,0xB1E6,0xCAD0,0xD0F4,0xB1E7,0xB1E8,0xB1E9,0x3F,0xD0F3,0xD0F7,0xB1EA,0x3F,0xB1EB,0xD0F6,0x3F,0xC4E4,0x3F,0x3F,0xB1EC,0xB1ED,0x3F,0xB1EE,0xB1EF,0x3F,0xB7F2,0xB1F0,0xB1F1,0x3F,0x3F,0xB1F2,0x3F,0xD0F8,0xB1F3,0x3F,0x3F,0xB1F4,0xB1F5,0xBCC5,0x3F,0xC2A6,0xC4E5,0xB6F6,0x3F,0xD0F9,0x3F,0x3F,0x3F,0x3F,0xB5B6,0x3F,0x3F,0xD0FA,0xB1F7,0x3F,0xB1F8,0xB1F9,0xD0FC,0xB1FA,0x3F,0x3F,0x3F,0xB1FB,0x3F,0x3F,0xCBB5,0xB1FC,0xB1FD,0xB1FE,0xB7E6,0xB2A1,0xB2A2,0xB2A3,0x3F,0xB2A4,0x3F,0xBBB1,0xC8F7,0xD0FB,0xB2A5,0xB2A6,0x3F,0xB2A7,0xB2A8,0xB2A9,0xB2AA,0xB2AB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB2AC,0x3F,0xBAC5,0xCDC3,0x3F,0xB2AD,0xB2AE,0x3F,0xD0FE,0xD1A3,0xD0FD,0xBAC4,0x3F,0xBDFD,0x3F,0xB2AF,0xB2B0,0x3F,0x3F,0xB2B1,0xB7B9,0x3F,0xB2B2,0x3F,0xD1A4,0xB2B3,0xB2B4,0xB6CF,0x3F,0xB2B5,0x3F,0xD1A1,0xD1A2,0x3F,0xB2B6,0xC6AF,0xB2B7,0xC1FC,0xB2B8,0xB6A3,0x3F,0xB2B9,0xB2BA,0xCBCD,0xD1A5,0x3F,0xB2BB,0x3F,0xCEBD,0x3F,0xB2BC,0xB2BD,0xD1A6,0xB2BE,0x3F,0x3F,0xB2BF,0xD1A9,0xB2C0,0xD1A7,0xB2C1,0xC1CE,0xB2C2,0xB2C3,0x3F,0x3F,0x3F,0xD1A8,0xD1AA,0xB2C4,0x3F,0xB2C5,0xB2D1,0x3F,0x3F,0xD1AC,0xB2C6,0x3F,0x3F,0xD1AB,0xB2C7,0xCAC8,0x3F,0x3F,0xB2C8,0x3F},
set50[] = {3,3,0xFF,0xFF,3,1,1,3,0xFF,1,3,1,3,1,3,1,3,1,1,3,1,0xFF,1,3,3,1,1,3,3,3,3,1,0xFF,1,3,1,1,1,1,3,1,1,1,1,1,1,3,0xFF,3,0xFF,3,3,0xFF,3,1,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,3,1,0xFF,3,3,1,1,1,3,0xFF,3,0xFF,3,1,1,3,3,3,0xFF,1,1,3,0xFF,3,1,0xFF,1,0xFF,0xFF,3,3,0xFF,3,3,0xFF,1,3,3,0xFF,0xFF,3,0xFF,1,3,0xFF,0xFF,3,3,1,0xFF,1,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,3,0xFF,3,3,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,3,3,3,1,3,3,3,0xFF,3,0xFF,1,1,1,3,3,0xFF,3,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,3,3,0xFF,1,1,1,1,0xFF,1,0xFF,3,3,0xFF,0xFF,3,1,0xFF,3,0xFF,1,3,3,1,0xFF,3,0xFF,1,1,0xFF,3,1,3,1,3,1,0xFF,3,3,1,1,0xFF,3,0xFF,1,0xFF,3,3,1,3,0xFF,0xFF,3,1,3,1,3,1,3,3,0xFF,0xFF,0xFF,1,1,3,0xFF,3,3,0xFF,0xFF,1,3,0xFF,0xFF,1,3,1,0xFF,0xFF,3,0xFF},
en51[] = {0xB5B7,0xD1AE,0xD1AF,0xB2C9,0xB2AF,0x3F,0xB2CA,0xB2CB,0xB2CC,0xD1AD,0x3F,0xB2CD,0xB2CE,0xB2CF,0xB2D0,0x3F,0xB2D2,0x3F,0xBCF4,0x3F,0xD1B2,0xD1B1,0xD1B0,0xB2D3,0xD0D6,0xB2D4,0xD1B3,0xB2D5,0xB2D6,0xB2D7,0xB2D8,0xBDFE,0x3F,0xD1B4,0x3F,0xB2D9,0x3F,0x3F,0x3F,0xB2DA,0xB2DB,0x3F,0xCDA5,0x3F,0xB2DC,0xB2DD,0x3F,0xB2DE,0x3F,0xB2DF,0xCCD9,0xB2E0,0xB2E1,0xB2E2,0x3F,0xD1B6,0xB2E3,0xB2E4,0xD1B5,0xD1B8,0xD1B7,0x3F,0x3F,0xD1B9,0xD1BA,0xB0F4,0xB2E5,0xB8B5,0xB7BB,0xBDBC,0xC3FB,0xB6A4,0xC0E8,0xB8F7,0xB2E6,0xB9EE,0xD1BC,0xCCC8,0xC5C6,0xB2E7,0xBBF9,0x3F,0xD1BB,0xB2E8,0xD1BD,0xB2E9,0x3F,0xB2EA,0xB2EB,0x3F,0xC5DE,0x3F,0xB3F5,0x3F,0x3F,0xB2EC,0x3F,0x3F,0xD1BE,0x3F,0xB2ED,0xC6FE,0xB2EE,0x3F,0xC1B4,0xD1C0,0xD1C1,0xC8AC,0xB8F8,0xCFBB,0xD1C2,0x3F,0x3F,0xB6A6,0x3F,0x3F,0x3F,0xCABC,0xC2B6,0xB6F1,0xC5B5,0x3F,0x3F,0x3F,0xB7F3,0x3F,0xB2EF,0x3F,0xD1C3,0x3F,0xD1C4,0xB2F0,0xB2F1,0xC6E2,0xB1DF,0x3F,0x3F,0xD1C7,0xBAFD,0xB2F2,0xD1C6,0xBAC6,0xB2F3,0xD1C8,0xE6EE,0xD1C9,0xCBC1,0xD1CA,0x3F,0xD1CB,0xD1CC,0xBEE9,0xB2F4,0xBCCC,0x3F,0x3F,0x3F,0xB2F5,0x3F,0x3F,0xB4A7,0xB2F6,0xD1CF,0xB2F7,0xD1CD,0xCCBD,0xD1CE,0x3F,0xC9DA,0xD1D0,0xD1D1,0xD1D2,0xC5DF,0xB2F8,0x3F,0x3F,0xD1D6,0xD1D4,0xD1D5,0xD1D3,0xBAE3,0xD1D7,0xCCEA,0xCEE4,0xB2F9,0x3F,0xB2FA,0x3F,0xB2FB,0xD1D8,0xB2FC,0xB2FD,0x3F,0x3F,0xB2FE,0x3F,0xC0A8,0xD1D9,0xBDDA,0x3F,0xB3A1,0xD1DA,0x3F,0xC3FC,0xCEBF,0xC5E0,0x3F,0xB3A2,0x3F,0xB3A3,0xB3A4,0xB3A5,0x3F,0xB3A6,0xD2C5,0x3F,0xB3A7,0x3F,0x3F,0xD1DB,0xF4A5,0xB6C5,0xB3A8,0x3F,0xD1DC,0xCBDE,0xB3A9,0x3F,0x3F,0xB3AA,0xBDE8,0xC2FC,0x3F,0xD1DE,0xC6E4,0x3F,0x3F,0xD1DF,0xB3AB,0x3F,0xD1E0,0xB3AE,0xB3AC,0xB3AD,0xB3AE,0xD1E1,0xB6A7,0xB3AF,0xC6CC,0xB1FA,0xBDD0,0x3F,0x3F,0xC8A1,0xD1E2,0x3F},
set51[] = {1,1,1,3,1,0xFF,3,3,3,1,0xFF,3,3,3,3,0xFF,3,0xFF,1,0xFF,1,1,1,3,1,3,1,3,3,3,3,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,3,3,0xFF,1,0xFF,3,3,0xFF,3,0xFF,3,1,3,3,3,0xFF,1,3,3,1,1,1,0xFF,0xFF,1,1,1,3,1,1,1,1,1,1,1,3,1,1,1,1,3,1,0xFF,1,3,1,3,0xFF,3,3,0xFF,1,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,3,1,3,0xFF,1,1,1,1,1,1,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,1,1,1,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,1,0xFF,1,3,3,1,1,0xFF,0xFF,1,1,3,1,1,3,1,1,1,1,1,0xFF,1,1,1,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,3,1,3,1,1,1,0xFF,1,1,1,1,1,3,0xFF,0xFF,1,1,1,1,1,1,1,1,3,0xFF,3,0xFF,3,1,3,3,0xFF,0xFF,3,0xFF,1,1,1,0xFF,3,1,0xFF,1,1,1,0xFF,3,0xFF,3,3,3,0xFF,3,1,0xFF,3,0xFF,0xFF,1,1,1,3,0xFF,1,1,3,0xFF,0xFF,3,1,1,0xFF,1,1,0xFF,0xFF,1,3,0xFF,1,1,3,3,3,1,1,3,1,1,1,0xFF,0xFF,1,1,0xFF},
en52[] = {0xC5E1,0xB3B0,0xB3B1,0xBFCF,0xD1E3,0xB3B2,0xCAAC,0xC0DA,0xB4A2,0x3F,0xB4A9,0xD1E4,0x3F,0x3F,0xD1E6,0x3F,0x3F,0xB7BA,0xB3B3,0xB3B4,0xD1E5,0xB3B5,0xB3B6,0xCEF3,0xB3B7,0x3F,0x3F,0x3F,0x3F,0xBDE9,0x3F,0x3F,0x3F,0x3F,0xB3B8,0x3F,0xC8BD,0xCACC,0x3F,0xD1E7,0xB3B9,0xCDF8,0xD1E8,0x3F,0x3F,0x3F,0xD1E9,0x3F,0xC5FE,0xB3BA,0xB3BB,0xD1EA,0x3F,0xB3BC,0xC0A9,0xBAFE,0xB7F4,0xD1EB,0xBBC9,0xB9EF,0xB3BD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC4E6,0xD1ED,0xB3BE,0x3F,0xC2A7,0x3F,0xB3BF,0xBAEF,0xD1EE,0xD1EF,0xC1B0,0x3F,0xD1EC,0x3F,0x3F,0x3F,0x3F,0xD1F1,0xB3C0,0xCBB6,0xB3C1,0xB3C2,0x3F,0xB3C3,0xB9E4,0xB3C4,0x3F,0xD1F0,0xB3C5,0xB3C6,0xB3C7,0x3F,0xB7F5,0xBADE,0xC7ED,0xB3C8,0x3F,0x3F,0xD1F4,0xD1F2,0x3F,0x3F,0x3F,0xB3C9,0xC9FB,0xBEEA,0xD1FB,0xB3E4,0xD1F5,0xD1F3,0xC1CF,0x3F,0xB3CA,0xB3CB,0xB3CC,0x3F,0x3F,0x3F,0xD1F7,0x3F,0xD1F6,0xB3CD,0x3F,0xB3CE,0xB3C4,0x3F,0xB3CF,0x3F,0xB7E0,0xD1FC,0xCEAD,0xB3D0,0x3F,0xB3D1,0xD1F8,0x3F,0x3F,0x3F,0xD1FD,0xD1FA,0xB3D2,0xD1F9,0xB3D3,0xB3D4,0xB3D5,0xB3D6,0x3F,0xB3D7,0xCECF,0xB3D8,0x3F,0x3F,0xB8F9,0xB2C3,0x3F,0x3F,0xCEF4,0xB3D9,0xB3DA,0xB3DB,0xB3DC,0x3F,0xBDF5,0xC5D8,0xB9E5,0xD2A2,0xD2A3,0x3F,0xB3DD,0xB3DE,0xCEE5,0x3F,0x3F,0xCFAB,0xD2A5,0xB3DF,0xB3E0,0xB3E1,0xB8FA,0xB3E2,0xB3E3,0xD2A4,0xB3E4,0xB3AF,0x3F,0xB3E5,0xD2A6,0x3F,0xCBD6,0xB3E6,0xC4BC,0xB3E7,0xCDA6,0xB3E8,0xCAD9,0x3F,0x3F,0xB3E9,0xD2A7,0x3F,0xB3EA,0x3F,0xB3EB,0xF0D5,0x3F,0xB3EC,0xC6B0,0xB3ED,0xD2A8,0xB4AA,0xCCB3,0x3F,0xB3EE,0xB3EF,0xBEA1,0xD2A9,0xCAE7,0xD2AD,0xB3F0,0xC0AA,0xD2AA,0xB6D0,0xB3F1,0xD2AB,0xB4AB,0xB3F2,0xB3F3,0xB3F4,0x3F,0xB3F5,0x3F,0x3F,0x3F,0xB3F6,0xB3F7,0xB7AE,0xD2AE,0xB3F8,0xD2AF,0xB3F9,0xB3FA,0xD2B0,0xD2B1,0xBCDB,0x3F,0x3F,0x3F,0xB8FB,0xCCDE},
set52[] = {1,3,3,1,1,3,1,1,1,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,1,3,3,1,3,3,1,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,1,3,1,1,0xFF,0xFF,0xFF,1,0xFF,1,3,3,1,0xFF,3,1,1,1,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,0xFF,1,0xFF,3,1,1,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,1,3,3,0xFF,3,1,3,0xFF,1,3,3,3,0xFF,1,1,1,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,3,1,1,1,1,1,1,1,0xFF,3,3,3,0xFF,0xFF,0xFF,1,0xFF,1,3,0xFF,3,1,0xFF,3,0xFF,1,1,1,3,0xFF,3,1,0xFF,0xFF,0xFF,1,1,3,1,3,3,3,3,0xFF,3,1,3,0xFF,0xFF,1,1,0xFF,0xFF,1,3,3,3,3,0xFF,1,1,1,1,1,0xFF,3,3,1,0xFF,0xFF,1,1,3,3,3,1,3,3,1,3,1,0xFF,3,1,0xFF,1,3,1,3,1,3,1,0xFF,0xFF,3,1,0xFF,3,0xFF,3,1,0xFF,3,1,3,1,1,1,0xFF,3,3,1,1,1,1,3,1,1,1,3,1,1,3,3,3,0xFF,3,0xFF,0xFF,0xFF,3,3,1,1,3,1,3,3,1,1,1,0xFF,0xFF,0xFF,1,1},
en53[] = {0xB3FB,0xCCE8,0xC6F7,0xB3FC,0x3F,0xCAF1,0xD2B2,0x3F,0xD2B3,0x3F,0xB3FD,0xB3FE,0xB4A1,0xD2B5,0x3F,0xD2B7,0xD2B6,0xB4A2,0x3F,0xB4A3,0x3F,0xD2B8,0xB2BD,0xCBCC,0xB4A4,0xBAFC,0xD2B9,0xB4A5,0xB4A6,0xC1D9,0xB4A7,0xB4A8,0xBEA2,0xB6A9,0x3F,0xD2BA,0x3F,0xB4A9,0x3F,0xB4AA,0xB4AB,0xB4AC,0xC8DB,0xB4AD,0xB4AE,0xB4AF,0x3F,0xD2BB,0xB4B0,0xD2BC,0xB4B1,0xD2BD,0x3F,0xB4B2,0x3F,0x3F,0xD2BE,0xC9A4,0xB6E8,0xB0E5,0xB4B3,0xB4B4,0xB4B5,0xC6BF,0xD2BF,0xBDBD,0xB4B6,0xC0E9,0x3F,0xD2C1,0xD2C0,0xBEA3,0xB8E1,0xD2C3,0xC8BE,0xB4B8,0xB4B7,0xD2C4,0x3F,0x3F,0x3F,0xC8DC,0xC2B4,0xC2EE,0xB6A8,0x3F,0x3F,0xC6EE,0xC3B1,0xB4B9,0xC7EE,0xB4BA,0xCBCE,0x3F,0xD2C6,0x3F,0xC0EA,0xB4BB,0x3F,0xB4BC,0x3F,0xB4BD,0xB7B5,0x3F,0x3F,0xD2C7,0x3F,0x3F,0xB4BE,0xB4BF,0xD2C8,0xB1AC,0xB0F5,0xB4ED,0xB4C0,0xC2A8,0xB5D1,0xCDF1,0x3F,0xD2CB,0xB2B7,0xB4C1,0x3F,0xD2CA,0x3F,0x3F,0xB4C2,0xB6AA,0x3F,0x3F,0xD2CC,0xB4C3,0xCCF1,0x3F,0x3F,0xB4C4,0xB4C5,0x3F,0x3F,0x3F,0x3F,0x3F,0xB4C6,0x3F,0x3F,0x3F,0x3F,0xB4C7,0xB4C8,0x3F,0xD2CD,0x3F,0xCED2,0xB4C9,0xB8FC,0x3F,0x3F,0xB4CA,0x3F,0xB8B6,0xD2CE,0xB4CB,0x3F,0x3F,0xB4CC,0xD2D0,0xD2CF,0x3F,0xBFDF,0xB1B9,0xB4CD,0xB4CE,0x3F,0xB1DE,0xD2D1,0xB4CF,0xD2D2,0x3F,0xB4D0,0xB8B7,0xB4D1,0xB4D2,0xD2D3,0xB4D3,0xB4D4,0x3F,0xB4D5,0xB5EE,0x3F,0xB4D6,0x3F,0x3F,0xB4D7,0x3F,0xBBB2,0xD2D4,0x3F,0xB4D8,0x3F,0x3F,0xCBF4,0xBAB5,0xB5DA,0xCDA7,0xC1D0,0xC8BF,0xBCFD,0xB4D9,0x3F,0x3F,0xB4DA,0xB4DB,0xBDC7,0xB4DC,0xBCE8,0xBCF5,0x3F,0xBDF6,0xB4DD,0xC8C0,0x3F,0xB4DE,0xB4DF,0xD2D7,0xB4E0,0xB1C3,0xC1D1,0xB8FD,0xB8C5,0xB6E7,0xB4E1,0xB4E2,0xD2DB,0xC3A1,0xC2FE,0xB6AB,0xBEA4,0xD2DC,0xD2DA,0xB2C4,0xC2E6,0xBCB8,0xBBCB,0xB1A6,0x3F,0xB4E3,0xB3F0,0xB9E6,0xBBCA,0x3F,0xD2DD,0x3F,0x3F,0x3F,0x3F,0x3F},
set53[] = {3,1,1,3,0xFF,1,1,0xFF,1,0xFF,3,3,3,1,0xFF,1,1,3,0xFF,3,0xFF,1,1,1,3,1,1,3,3,1,3,3,1,1,0xFF,1,0xFF,3,0xFF,3,3,3,1,3,3,3,0xFF,1,3,1,3,1,0xFF,3,0xFF,0xFF,1,1,1,1,3,3,3,1,1,1,3,1,0xFF,1,1,1,1,1,1,3,3,1,0xFF,0xFF,0xFF,1,1,1,1,0xFF,0xFF,1,1,3,1,3,1,0xFF,1,0xFF,1,3,0xFF,3,0xFF,3,1,0xFF,0xFF,1,0xFF,0xFF,3,3,1,1,1,1,3,1,1,1,0xFF,1,1,3,0xFF,1,0xFF,0xFF,3,1,0xFF,0xFF,1,3,1,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,1,0xFF,1,3,1,0xFF,0xFF,3,0xFF,1,1,3,0xFF,0xFF,3,1,1,0xFF,1,1,3,3,0xFF,1,1,3,1,0xFF,3,1,3,3,1,3,3,0xFF,3,1,0xFF,3,0xFF,0xFF,3,0xFF,1,1,0xFF,3,0xFF,0xFF,1,1,1,1,1,1,1,3,0xFF,0xFF,3,3,1,3,1,1,0xFF,1,3,1,0xFF,3,3,1,3,1,1,1,1,1,3,3,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,3,1,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF},
en54[] = {0x3F,0xD2DE,0xB4E4,0xB5C9,0xB3C6,0x3F,0x3F,0x3F,0xB9E7,0xB5C8,0xC4DF,0xB1A5,0xC6B1,0xCCBE,0xB9A1,0xCDF9,0xC5C7,0xB8FE,0x3F,0xB4E5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB4E6,0xB7AF,0x3F,0xD2E7,0x3F,0xB6E3,0xCBCA,0xB4E7,0x3F,0x3F,0x3F,0x3F,0xC8DD,0xB4E8,0xB4E9,0xD2E6,0xB4EA,0xB4DE,0xD2E1,0xD2E2,0xD2E4,0xB4EB,0x3F,0xB4EC,0x3F,0x3F,0xB4ED,0xB4EE,0xD2E5,0x3F,0xB5DB,0xBFE1,0x3F,0xCAAD,0xD2E3,0xD2DF,0xB8E3,0x3F,0xD2E0,0x3F,0xCFA4,0xB4EF,0xB4F0,0x3F,0xCAF2,0xB4F1,0xC4E8,0xB8E2,0xB9F0,0x3F,0x3F,0xB4F2,0xD2E8,0xB4F3,0x3F,0xC6DD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB4F4,0xD2EC,0x3F,0x3F,0xB4F5,0x3F,0xB4F6,0x3F,0xB4F7,0xB4F8,0xBCFE,0xB4F9,0xBCF6,0xB4FA,0x3F,0xB4FB,0xB4FC,0x3F,0xD2EF,0xD2ED,0x3F,0xCCA3,0xB4FD,0xD2EA,0xD2F3,0xD2EE,0x3F,0x3F,0x3F,0xD2F1,0xB8C6,0xCCBF,0x3F,0xB4FE,0xD2F2,0xB5A1,0x3F,0xB5A2,0xD2F4,0xB5A3,0xD2F6,0x3F,0xB5A4,0xB5A5,0x3F,0xBAF0,0xCFC2,0xB5A6,0xD2EB,0xD2E9,0xD2F5,0xB5A7,0xD2F0,0x3F,0x3F,0xB5A8,0xB5A9,0x3F,0x3F,0x3F,0x3F,0x3F,0xB5AA,0x3F,0x3F,0xB5AB,0x3F,0xB5AC,0xD2F8,0x3F,0xD3A3,0xD2FA,0xB5AD,0xB5AE,0xD2FE,0xB5AF,0xB5B0,0xD3A1,0xD2FB,0xB5B1,0xB5B2,0xD3BE,0x3F,0xB5B3,0xBAE9,0xB3B1,0x3F,0x3F,0x3F,0xB5B4,0xD2F9,0xB5B5,0xB5B6,0xB5B7,0xD3A5,0xB0F6,0xD3A4,0xB5B8,0xB0A5,0xC9CA,0xD3A2,0x3F,0xD2FC,0x3F,0xB5B9,0xD2F7,0xD2FD,0xBAC8,0xB5BA,0x3F,0x3F,0xB5BB,0xB5BC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD3A6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB5BD,0xB0F7,0xD3AF,0x3F,0x3F,0xD3A7,0xD3A8,0x3F,0xBEA5,0xCBE9,0xB5BE,0x3F,0xB5BF,0xD3AD,0xD3AC,0xB5C0,0x3F,0x3F,0xC5AF,0x3F,0x3F,0x3F,0xB5C1,0x3F,0x3F,0x3F,0xD3AE,0x3F,0xB5C2,0xD3AB,0xB5C3,0xB5C4},
set54[] = {0xFF,1,3,1,1,0xFF,0xFF,0xFF,1,1,1,1,1,1,1,1,1,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,1,0xFF,1,1,3,0xFF,0xFF,0xFF,0xFF,1,3,3,1,3,1,1,1,1,3,0xFF,3,0xFF,0xFF,3,3,1,0xFF,1,1,0xFF,1,1,1,1,0xFF,1,0xFF,1,3,3,0xFF,1,3,1,1,1,0xFF,0xFF,3,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,3,0xFF,3,0xFF,3,3,1,3,1,3,0xFF,3,3,0xFF,1,1,0xFF,1,3,1,1,1,0xFF,0xFF,0xFF,1,1,1,0xFF,3,1,3,0xFF,3,1,3,1,0xFF,3,3,0xFF,1,1,3,1,1,1,3,1,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,3,1,0xFF,1,1,3,3,1,3,3,1,1,3,3,1,0xFF,3,1,1,0xFF,0xFF,0xFF,3,1,3,3,3,1,1,1,3,1,1,1,0xFF,1,0xFF,3,1,1,1,3,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,0xFF,0xFF,1,1,0xFF,1,1,3,0xFF,3,1,1,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,3,1,3,3},
en55[] = {0xB5C5,0xB5C6,0x3F,0x3F,0xB1B4,0xB5C7,0xBAB6,0xBFB0,0xB5C8,0xB5C9,0x3F,0x3F,0xB5CA,0xB5CB,0xB5CC,0xD3A9,0xC5E2,0x3F,0x3F,0x3F,0xD3AA,0xB5CD,0xB0A2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB5CE,0xB5CF,0x3F,0x3F,0xD3B4,0xCDA3,0x3F,0xBEA7,0xB5D0,0xD3BA,0x3F,0xB5D1,0xB5D2,0x3F,0xD3B9,0xD3B0,0x3F,0xB5D3,0xB5D4,0xB5D5,0xC2C3,0x3F,0xD3B1,0xB5D6,0x3F,0x3F,0xC2EF,0xD3B6,0xBEA6,0xB5D7,0x3F,0xB5D8,0xB5D9,0x3F,0xD3B3,0xB5DA,0x3F,0xCCE4,0xB5DB,0xB5DC,0x3F,0xB7BC,0x3F,0x3F,0xD3B7,0xD3B8,0xB5DD,0x3F,0xB5DE,0xB5DF,0xD3B5,0xD3BB,0xB5E0,0x3F,0xB5E1,0xB5E2,0x3F,0xD3B2,0xB5E3,0x3F,0xB5E4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD3C1,0xD3C6,0x3F,0xD3C2,0xB5E5,0xD3BD,0xB5E6,0xB5E7,0xD3C7,0xC1B1,0x3F,0xB5E8,0xD3C9,0xB5E9,0xB9A2,0xD3BF,0xC3FD,0x3F,0x3F,0xB5EA,0xB5EB,0x3F,0xB5EC,0xB5ED,0xB5EE,0xB5EF,0x3F,0x3F,0xB5F0,0xD3C3,0xD3BC,0xB4AD,0x3F,0xB4EE,0xB3E5,0xD3C4,0xD3C0,0x3F,0x3F,0x3F,0xB5F1,0xB5F2,0x3F,0x3F,0xB7F6,0xD3CA,0xD3C8,0xC1D3,0xB5CA,0xB6AC,0xB5F3,0xD3C5,0x3F,0xB6F4,0x3F,0xB5F4,0x3F,0x3F,0x3F,0xB1C4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB5F5,0x3F,0xB5F6,0x3F,0xB5F7,0xD3CE,0xD3CC,0xB5F8,0xD4A7,0x3F,0xB5F9,0x3F,0xB5FA,0xB5FB,0x3F,0xB5FC,0x3F,0x3F,0xB5FD,0xB5FE,0xB6A1,0xD3D1,0x3F,0x3F,0xB6A2,0xB6A3,0x3F,0xD3CB,0xB6A4,0xD3CF,0x3F,0xB6A5,0xD3CD,0x3F,0x3F,0xB6A6,0xBBCC,0xD3D0,0x3F,0x3F,0x3F,0x3F,0xB6A7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB6A8,0xD3D3,0x3F,0xD3D8,0x3F,0x3F,0x3F,0xD3D6,0xD3D5,0xB6A9},
set55[] = {3,3,0xFF,0xFF,1,3,1,1,3,3,0xFF,0xFF,3,3,3,1,1,0xFF,0xFF,0xFF,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,1,0xFF,1,3,1,0xFF,3,3,0xFF,1,1,0xFF,3,3,3,1,0xFF,1,3,0xFF,0xFF,1,1,1,3,0xFF,3,3,0xFF,1,3,0xFF,1,3,3,0xFF,1,0xFF,0xFF,1,1,3,0xFF,3,3,1,1,3,0xFF,3,3,0xFF,1,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,3,1,3,3,1,1,0xFF,3,1,3,1,1,1,0xFF,0xFF,3,3,0xFF,3,3,3,3,0xFF,0xFF,3,1,1,1,0xFF,1,1,1,1,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,1,1,1,1,1,3,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,3,1,1,3,1,0xFF,3,0xFF,3,3,0xFF,3,0xFF,0xFF,3,3,3,1,0xFF,0xFF,3,3,0xFF,1,3,1,0xFF,3,1,0xFF,0xFF,3,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,1,0xFF,0xFF,0xFF,1,1,3},
en56[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0xB6AA,0xC3B2,0x3F,0xB6AB,0xB2C5,0xB6AC,0x3F,0x3F,0xB6AD,0xB6AE,0xB6AF,0xB6B0,0xB6B1,0xB6B2,0x3F,0xD3D2,0x3F,0xD3D4,0xBEA8,0xB1B3,0xB6B3,0x3F,0xD3D7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB2DE,0x3F,0x3F,0xB6B4,0x3F,0x3F,0xD3E2,0xB6B5,0xBEFC,0xD3DE,0xB6B6,0xD3DC,0xB6B7,0xD3DD,0xB6B8,0xD3DF,0xB6B9,0x3F,0xB6BA,0xB6BB,0xB6BC,0x3F,0xB6BD,0xB6BE,0xB6BF,0xB1BD,0xB6C0,0xB6C1,0x3F,0xB6C2,0x3F,0x3F,0xB6C3,0x3F,0xB6C4,0xC1B9,0xB6C5,0xD3D9,0xB6C6,0xD3DA,0x3F,0x3F,0x3F,0xB6C7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB3FA,0x3F,0x3F,0xB6C8,0x3F,0xB6C9,0xB6CA,0xB6CB,0xB6CC,0xD3E1,0x3F,0xB6CD,0x3F,0xB4EF,0xB6CE,0xD3E4,0xD3E0,0xD3E3,0xB6CF,0x3F,0xB6D0,0x3F,0xB6D1,0xB6D2,0x3F,0xCAAE,0xB6D3,0x3F,0x3F,0xC6D5,0x3F,0xC8B8,0x3F,0x3F,0x3F,0x3F,0x3F,0xD3E6,0x3F,0x3F,0x3F,0xB6D4,0xB6D5,0xD3E5,0xB3C5,0xB6D6,0x3F,0xD3E7,0xB6D7,0xB6D8,0x3F,0x3F,0xD3EA,0x3F,0x3F,0x3F,0x3F,0xD3E9,0xB6D9,0x3F,0x3F,0x3F,0xB6DA,0xB6DB,0x3F,0x3F,0xB6DC,0xB6DD,0xB6DE,0xD3E8,0x3F,0xC7B9,0x3F,0x3F,0xD3EB,0xB6DF,0xB6E0,0xB6E1,0xB6E2,0x3F,0xB6E3,0xB6E4,0xB6E5,0xD3EC,0x3F,0x3F,0xB6E6,0x3F,0xB6E7,0xD3EE,0x3F,0xD3ED,0xB6E8,0x3F,0x3F,0x3F,0x3F,0xD3F0,0x3F,0xB6E9,0x3F,0xD3F3,0xD3F1,0xD3EF,0xD3F2,0x3F,0xB6EA,0x3F,0x3F,0xD3F4,0xB6EB,0xB6EC,0xB6ED,0xB6F0,0xB6F1,0xD3F5,0xB6EE,0xB6EF,0xD3F6,0x3F,0xD3F7,0x3F,0x3F,0x3F,0xD3F8,0xD1C5,0xB6F2,0xBCFC,0xBBCD,0xB6F3,0xB6F4,0xB2F3,0xB6F5,0xB0F8,0xB6F6,0x3F,0xC3C4,0xB6F7,0xB6F8,0xB6F9,0xB6FA,0xB6FB,0x3F,0x3F,0xB6FD,0x3F,0xB6FE,0xD3F9,0x3F,0xBAA4,0xB6FC,0xB0CF,0xBFDE,0x3F,0x3F,0xB7A1,0xB7A2,0x3F,0xD3FA,0xB8C7,0x3F,0x3F,0xB9F1,0x3F,0xD3FC},
set56[] = {0xFF,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,3,1,3,0xFF,0xFF,3,3,3,3,3,3,0xFF,1,0xFF,1,1,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,1,3,1,1,3,1,3,1,3,1,3,0xFF,3,3,3,0xFF,3,3,3,1,3,3,0xFF,3,0xFF,0xFF,3,0xFF,3,1,3,1,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,3,3,3,3,1,0xFF,3,0xFF,1,3,1,1,1,3,0xFF,3,0xFF,3,3,0xFF,1,3,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,3,1,1,3,0xFF,1,3,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,3,3,3,1,0xFF,1,0xFF,0xFF,1,3,3,3,3,0xFF,3,3,3,1,0xFF,0xFF,3,0xFF,3,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,1,1,1,1,0xFF,3,0xFF,0xFF,1,3,3,3,3,3,1,3,3,1,0xFF,1,0xFF,0xFF,0xFF,1,1,3,1,1,3,3,1,3,1,3,0xFF,1,3,3,3,3,3,0xFF,0xFF,3,0xFF,3,1,0xFF,1,3,1,1,0xFF,0xFF,3,3,0xFF,1,1,0xFF,0xFF,1,0xFF,1},
en57[] = {0xD3FB,0xB7A3,0xB7A4,0xCAE0,0xD3FD,0x3F,0x3F,0xB7A5,0xD4A1,0xD3FE,0xB7A6,0xD4A2,0xB7A7,0xD4A3,0x3F,0xB7F7,0x3F,0xB7A8,0xB1E0,0xD4A4,0x3F,0xB7A9,0xD4A6,0x3F,0xD4A5,0x3F,0xB7AA,0xB7AB,0xD4A8,0xB7AC,0x3F,0xC5DA,0xB7AD,0x3F,0xB7AE,0xB7AF,0xB7B0,0xB7B1,0xD4A9,0xB0B5,0xBADF,0xB7B2,0xB7B3,0x3F,0xB7B4,0xB7BD,0xB7B5,0xB7B6,0xC3CF,0x3F,0x3F,0xB7B7,0xB7B8,0x3F,0x3F,0xD4AA,0xD4AB,0x3F,0x3F,0xD4AD,0x3F,0xB7B9,0xB7BA,0xB7BB,0xD4AE,0x3F,0xBAE4,0x3F,0x3F,0xB7BC,0xB7BD,0xB6D1,0x3F,0x3F,0xCBB7,0x3F,0xB7BE,0xB7BF,0xD4AC,0xD4AF,0xBAC1,0xB9A3,0xB7C0,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD4B3,0xB7C1,0x3F,0xBAA5,0xB7C2,0xC3B3,0xB7C3,0xB7C4,0xD4B0,0xC4DA,0xB7C5,0x3F,0xB7C6,0xB7C7,0xB7C8,0xB7C9,0xB7CA,0x3F,0xB7CB,0xB7CC,0xB7CD,0x3F,0xB7CE,0x3F,0xB7CF,0xB7D0,0xB7D1,0xB7D2,0x3F,0xB7D3,0xD4B4,0x3F,0xB7D4,0xBFE2,0xB7D5,0x3F,0x3F,0x3F,0x3F,0xD4B2,0xD4B5,0x3F,0xB7BF,0xB7D6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD4B6,0xB7D7,0xB7E0,0x3F,0xB7D8,0x3F,0xB7D9,0xB7DA,0x3F,0xB7DB,0xB7DC,0xB7DD,0xB7DE,0xD4B7,0xB7DF,0xB9A4,0xB3C0,0xD4B9,0x3F,0x3F,0xB7E1,0xB7E2,0xB7E3,0xD4BA,0x3F,0xB7E4,0x3F,0x3F,0x3F,0xD4BB,0x3F,0x3F,0xD4B8,0x3F,0x3F,0x3F,0x3F,0xB7E5,0x3F,0x3F,0x3F,0x3F,0xB7E6,0x3F,0x3F,0xD4B1,0x3F,0x3F,0xD4BC,0x3F,0x3F,0xD4BD,0xB7E7,0xB7E8,0x3F,0x3F,0xCBE4,0xB7E9,0x3F,0xBEEB,0xB7EA,0x3F,0x3F,0xD4BF,0xD4C0,0xD4BE,0xB7EB,0xD4C2,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7B8,0xB7EC,0xB7ED,0xB0E8,0xC9D6,0xB7FE,0x3F,0xD4C3,0xB7EE,0x3F,0xB7EF,0xB7F0,0x3F,0xB7F1,0x3F,0x3F,0x3F,0xB7F2,0x3F,0x3F,0xB7F3,0x3F,0x3F,0x3F,0xBEFD,0xB7F4,0xB7F5,0xBCB9,0xB7F6,0xC7DD,0xB4F0,0x3F,0xBAEB,0xB7F7,0xB7F8,0xB7F9},
set57[] = {1,3,3,1,1,0xFF,0xFF,3,1,1,3,1,3,1,0xFF,1,0xFF,3,1,1,0xFF,3,1,0xFF,1,0xFF,3,3,1,3,0xFF,1,3,0xFF,3,3,3,3,1,1,1,3,3,0xFF,3,1,3,3,1,0xFF,0xFF,3,3,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,3,3,3,1,0xFF,1,0xFF,0xFF,3,3,1,0xFF,0xFF,1,0xFF,3,3,1,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,3,1,3,3,1,1,3,0xFF,3,3,3,3,3,0xFF,3,3,3,0xFF,3,0xFF,3,3,3,3,0xFF,3,1,0xFF,3,1,3,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,0xFF,3,0xFF,3,3,0xFF,3,3,3,3,1,3,1,1,1,0xFF,0xFF,3,3,3,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,1,3,3,0xFF,0xFF,1,3,0xFF,1,3,0xFF,0xFF,1,1,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,3,0xFF,1,3,0xFF,3,3,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,3,1,3,1,1,0xFF,1,3,3,3},
en58[] = {0xCBD9,0x3F,0xC6B2,0xB7FA,0xB7FB,0xB7F8,0xC2CF,0x3F,0xB7FC,0xB7FD,0xD4C1,0xD4C4,0xB8A1,0xB8A2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC2C4,0x3F,0x3F,0x3F,0xD4C5,0x3F,0xB8A3,0x3F,0xD4C6,0xB8A4,0xB8A5,0xB8A6,0xD4C8,0x3F,0x3F,0xC4E9,0x3F,0xB8A7,0xB8A8,0x3F,0x3F,0xB4AE,0x3F,0x3F,0xB8A9,0x3F,0xF4A1,0xB1E1,0xCAF3,0xB8AA,0x3F,0xBEEC,0xC5C8,0x3F,0x3F,0x3F,0xB8AB,0xBAE6,0x3F,0x3F,0xD4CE,0x3F,0xB8AC,0xCABD,0xCEDD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB8AD,0xB2F4,0xD4CA,0xB8AE,0xB8AF,0x3F,0xB8B0,0xB8B1,0xC1BA,0xD4CD,0x3F,0xC5E3,0xB8B2,0x3F,0xC5C9,0xC5E4,0xC8B9,0xC4CD,0x3F,0x3F,0x3F,0xBAC9,0xB8B3,0x3F,0xB8B4,0xD4C9,0x3F,0xB8B5,0x3F,0x3F,0xB8B6,0xB8B7,0xB1F6,0x3F,0xC5B6,0x3F,0x3F,0x3F,0x3F,0xD4CB,0x3F,0xD4C7,0x3F,0x3F,0xBFD0,0x3F,0x3F,0xB8B8,0xD4CF,0x3F,0x3F,0xB8B9,0x3F,0xBDCE,0xB8BA,0xB8BB,0xB8BC,0x3F,0xB6AD,0x3F,0xD4D0,0x3F,0xB8BD,0xB8BE,0xB8BF,0xB8C0,0x3F,0xB8C1,0xB8C2,0x3F,0xB8C3,0xB8C4,0x3F,0x3F,0xCAE8,0xB8C5,0x3F,0xB8C6,0xC1FD,0x3F,0x3F,0x3F,0x3F,0xC4C6,0xB8C7,0x3F,0xD4D2,0xB8C8,0xB8C9,0xB8CA,0x3F,0x3F,0x3F,0xB8CB,0x3F,0xCBCF,0xB8CC,0x3F,0xD4D3,0x3F,0x3F,0xD4D8,0x3F,0x3F,0xB8CD,0xB8CE,0xCAAF,0x3F,0x3F,0x3F,0x3F,0xD4D7,0xD4D1,0xD4D4,0xD4D6,0xB8D0,0x3F,0xBAA6,0x3F,0x3F,0xCAC9,0xB8D1,0x3F,0xB8CF,0xD4D9,0x3F,0xC3C5,0xB8D2,0x3F,0xB2F5,0x3F,0xBEED,0xB8D3,0xB8D4,0x3F,0xB8D5,0xD4DB,0xB8D6,0xD4DA,0xB8D7,0xB9E8,0xB8D8,0xD4DC,0xD4DE,0xD4DD,0xB8D9,0x3F,0xD4E0,0xB8DA,0xD4D5,0xD4E2,0x3F,0xB8DB,0xB8DC,0x3F,0xD4E1,0xD4DF,0x3F,0x3F,0x3F,0xB8DD,0x3F,0xBBCE,0xBFD1,0x3F,0xC1D4,0xD4E3,0xC0BC,0xB0ED,0xC7E4,0xB8DE,0x3F,0x3F,0x3F,0xC4DB,0x3F,0xD4E5,0xD4E4,0xD4E6,0xD4E7,0xD4E8,0x3F,0x3F},
set58[] = {1,0xFF,1,3,3,1,1,0xFF,3,3,1,1,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,1,3,3,3,1,0xFF,0xFF,1,0xFF,3,3,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,1,1,1,3,0xFF,1,1,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,1,0xFF,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,3,3,0xFF,3,3,1,1,0xFF,1,3,0xFF,1,1,1,1,0xFF,0xFF,0xFF,1,3,0xFF,3,1,0xFF,3,0xFF,0xFF,3,3,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,0xFF,3,0xFF,1,3,3,3,0xFF,1,0xFF,1,0xFF,3,3,3,3,0xFF,3,3,0xFF,3,3,0xFF,0xFF,1,3,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,3,3,3,0xFF,0xFF,0xFF,3,0xFF,1,3,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF,1,1,1,1,3,0xFF,1,0xFF,0xFF,1,3,0xFF,3,1,0xFF,1,3,0xFF,1,0xFF,1,3,3,0xFF,3,1,3,1,3,1,3,1,1,1,3,0xFF,1,3,1,1,0xFF,3,3,0xFF,1,1,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,1,1,1,1,1,3,0xFF,0xFF,0xFF,1,0xFF,1,1,1,1,1,0xFF,0xFF},
en59[] = {0x3F,0x3F,0xD4E9,0x3F,0x3F,0xB8DF,0xB8E0,0x3F,0x3F,0xCAD1,0xD4EA,0xB8E1,0xB8E2,0x3F,0x3F,0xB2C6,0xD4EB,0x3F,0xB8E3,0xB8E4,0xB8E5,0xCDBC,0xB3B0,0x3F,0xD2C9,0xBDC8,0xC2BF,0xD4EC,0xCCEB,0xB8E7,0x3F,0x3F,0x3F,0xB8E8,0xCCB4,0xB8E9,0xB8EA,0xD4EE,0x3F,0xC2E7,0xB8EB,0xC5B7,0xC2C0,0xC9D7,0xD4EF,0xD4F0,0xB1FB,0xB8EC,0xB8ED,0xBCBA,0xD4F1,0xB8EE,0x3F,0xB8EF,0xB8F0,0xB0D0,0xD4F2,0x3F,0x3F,0x3F,0x3F,0x3F,0xD4F3,0xB8F1,0x3F,0x3F,0x3F,0xB8F2,0xB1E2,0x3F,0xB8F3,0xB4F1,0xC6E0,0xCAF4,0x3F,0x3F,0x3F,0x3F,0xD4F7,0xC1D5,0xD4F6,0xB7C0,0xB8F4,0xB8F5,0xCBDB,0xD4F5,0x3F,0xC5E5,0xD4F9,0xB8F6,0xD4F8,0xB8F7,0x3F,0xB8F8,0xB8F9,0xB8FA,0xD4FB,0xB8FB,0xD4FA,0xB8FC,0x3F,0xB1FC,0x3F,0xD4FC,0xBEA9,0xD4FE,0xC3A5,0xB8FD,0xD4FD,0xB8FE,0xCAB3,0xB9A1,0x3F,0x3F,0xB9A2,0xBDF7,0xC5DB,0xB9A3,0xB9A4,0x3F,0xD5A1,0xB9A5,0x3F,0xB9A6,0xB9A7,0xB9A5,0x3F,0x3F,0x3F,0xD5A2,0xC7A1,0xC8DE,0xCCD1,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7A5,0xB9A8,0xB9A9,0xD5AB,0xB9AA,0x3F,0x3F,0x3F,0xB9AB,0xB5B8,0x3F,0xB9AC,0xCDC5,0xB9AD,0x3F,0xCCAF,0x3F,0xD6AC,0x3F,0xD5A3,0x3F,0xB9AE,0x3F,0x3F,0x3F,0xD5A6,0xB9AF,0xC2C5,0x3F,0xB9B0,0xCBB8,0x3F,0x3F,0x3F,0xC5CA,0xB9B1,0xB9B2,0xB9B3,0xB9B4,0x3F,0xD5A7,0xB9B5,0x3F,0x3F,0x3F,0xB9B6,0x3F,0xCBE5,0xB9B7,0xBACA,0xB9B8,0x3F,0xBEAA,0x3F,0x3F,0xB9B9,0x3F,0xB9BA,0xB9BB,0x3F,0xD5A8,0x3F,0xB9BC,0xBBD0,0xB9BD,0xBBCF,0x3F,0xB9BE,0x3F,0x3F,0xB0B9,0xB8C8,0xB9BF,0xC0AB,0xB0D1,0x3F,0x3F,0x3F,0x3F,0xD5AC,0xD5AD,0x3F,0xD5AA,0xB9C0,0xB9C1,0xB9C2,0x3F,0x3F,0x3F,0xB9C3,0xB9C4,0xB1B8,0xB4AF,0xB9C5,0xD5A9,0x3F,0xCCC5,0xC9B1,0x3F,0x3F,0xB9C6,0xB9C7,0x3F,0xB9C8,0xB9C9,0x3F,0xB9CA,0x3F,0xB0A8,0xB9CB,0x3F,0x3F,0x3F,0xB0F9,0x3F,0x3F,0x3F,0xBBD1},
set59[] = {0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,1,1,3,3,0xFF,0xFF,1,1,0xFF,3,3,3,1,1,0xFF,1,1,1,1,1,3,0xFF,0xFF,0xFF,3,1,3,3,1,0xFF,1,3,1,1,1,1,1,1,3,3,1,1,3,0xFF,3,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,1,0xFF,3,1,1,1,0xFF,0xFF,0xFF,0xFF,1,1,1,1,3,3,1,1,0xFF,1,1,3,1,3,0xFF,3,3,3,1,3,1,3,0xFF,1,0xFF,1,1,1,1,3,1,3,1,3,0xFF,0xFF,3,1,1,3,3,0xFF,1,3,0xFF,3,3,1,0xFF,0xFF,0xFF,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,1,3,0xFF,0xFF,0xFF,3,1,0xFF,3,1,3,0xFF,1,0xFF,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,3,1,0xFF,3,1,0xFF,0xFF,0xFF,1,3,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,1,3,1,3,0xFF,1,0xFF,0xFF,3,0xFF,3,3,0xFF,1,0xFF,3,1,3,1,0xFF,3,0xFF,0xFF,1,1,3,1,1,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,3,3,3,0xFF,0xFF,0xFF,3,3,1,1,3,1,0xFF,1,1,0xFF,0xFF,3,3,0xFF,3,3,0xFF,3,0xFF,1,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1},
en5A[] = {0xB9CC,0xB0D2,0x3F,0xB0A3,0xB9CD,0x3F,0x3F,0x3F,0x3F,0xD5B2,0x3F,0x3F,0xB9CE,0xB9CF,0xB9D0,0x3F,0x3F,0xD5B0,0xB9D1,0xB9D2,0x3F,0x3F,0x3F,0x3F,0xCCBC,0x3F,0xD5B3,0x3F,0xD5B1,0x3F,0xB9D3,0xD5AF,0xBFB1,0x3F,0x3F,0xB9D4,0xB9D5,0xD5AE,0x3F,0xB9D6,0xB9D7,0xCADA,0xB9D8,0x3F,0x3F,0xB9D9,0x3F,0xB8E4,0xB9DA,0x3F,0x3F,0x3F,0x3F,0xD5B7,0xD5B8,0x3F,0x3F,0x3F,0x3F,0x3F,0xBEAB,0x3F,0x3F,0x3F,0xD5B4,0xCFAC,0x3F,0x3F,0xB9DB,0xB9DC,0xC7CC,0xB9DD,0xB9DE,0xD5B6,0x3F,0x3F,0xB9DF,0x3F,0x3F,0x3F,0xB9E0,0x3F,0x3F,0x3F,0x3F,0xB9E1,0x3F,0x3F,0x3F,0x3F,0xBAA7,0x3F,0x3F,0x3F,0xB9E2,0x3F,0x3F,0x3F,0xD5B9,0xB9E3,0x3F,0xB9E4,0xC9D8,0xB9E5,0x3F,0x3F,0xD5BA,0x3F,0xD5B5,0xB9E6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB9E7,0x3F,0x3F,0xB9E8,0xB9E9,0x3F,0x3F,0xB9EA,0xCCBB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB9EB,0x3F,0x3F,0x3F,0x3F,0xB9EC,0x3F,0xC7DE,0xB9ED,0x3F,0x3F,0xB9EE,0x3F,0x3F,0xB9EF,0xD5BB,0xC9B2,0xB9F0,0x3F,0xB9F1,0xB9F2,0xB9F3,0x3F,0xB9F4,0x3F,0x3F,0x3F,0x3F,0xB9F5,0x3F,0x3F,0x3F,0x3F,0xB9F6,0x3F,0x3F,0x3F,0x3F,0xB9F7,0xB9F8,0xB9F9,0x3F,0xB9FA,0x3F,0x3F,0xB9FB,0x3F,0xB9FC,0xB9FD,0xD5BC,0xD5C0,0xD5BD,0xB9FE,0x3F,0xB2C7,0xD5BF,0x3F,0xBAA1,0x3F,0xBAA2,0x3F,0xBAA3,0xBCBB,0x3F,0xD5BE,0xB7F9,0x3F,0x3F,0xBAA4,0xD5CC,0x3F,0x3F,0x3F,0x3F,0x3F,0xD5C5,0xD5C2,0x3F,0x3F,0xBAA5,0x3F,0xBAA6,0x3F,0x3F,0x3F,0xBAA7,0xC3E4,0x3F,0xD5C1,0x3F,0xBAA8,0xD5C3,0x3F,0x3F,0xD5C4,0xBAA9,0x3F,0x3F,0x3F,0xBAAA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBAAB,0xBAAC,0x3F,0x3F,0x3F,0xD5C6,0xD5C7,0x3F,0xBAAD,0x3F,0x3F},
set5A[] = {3,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,3,3,0xFF,0xFF,1,3,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,0xFF,3,1,1,0xFF,0xFF,3,3,1,0xFF,3,3,1,3,0xFF,0xFF,3,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,3,3,1,3,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,0xFF,3,1,3,0xFF,0xFF,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,0xFF,0xFF,3,0xFF,0xFF,3,1,1,3,0xFF,3,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,3,0xFF,0xFF,3,0xFF,3,3,1,1,1,3,0xFF,1,1,0xFF,3,0xFF,3,0xFF,3,1,0xFF,1,1,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,3,1,0xFF,1,0xFF,3,1,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,1,1,0xFF,3,0xFF,0xFF},
en5B[] = {0xBAAE,0xBAAF,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBAB0,0xB4F2,0x3F,0xD5C9,0xD5C8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD5CA,0xBAB1,0x3F,0xBAB3,0x3F,0xBAB4,0x3F,0xBAB5,0x3F,0x3F,0x3F,0xBAB6,0xBEEE,0x3F,0x3F,0xBAB7,0x3F,0x3F,0x3F,0x3F,0xD5CD,0x3F,0xC4DC,0xBAB8,0x3F,0x3F,0xB1C5,0x3F,0xD5CB,0x3F,0xBAB2,0x3F,0xD5CE,0x3F,0xBAB9,0x3F,0x3F,0x3F,0x3F,0x3F,0xD5CF,0x3F,0xD5D2,0xBABA,0x3F,0xD5D0,0x3F,0xD5D1,0x3F,0x3F,0x3F,0x3F,0x3F,0xBABB,0xBABC,0x3F,0x3F,0x3F,0xBBD2,0xD5D3,0xBABD,0x3F,0xB9A6,0xD5D4,0xBABE,0xBBFA,0xC2B8,0x3F,0xD5D5,0xD5D6,0xBBDA,0xB9A7,0xBABF,0xCCD2,0x3F,0x3F,0x3F,0xB5A8,0xB8C9,0xD5D7,0xB3D8,0x3F,0xBAC0,0xD5D8,0x3F,0xC2B9,0x3F,0x3F,0xBAC1,0xBAC2,0xD5D9,0xD6A3,0x3F,0xD5DA,0x3F,0xD5DB,0x3F,0x3F,0xD5DC,0x3F,0xD5DE,0x3F,0xBAC3,0xBAC4,0xBAC5,0xBAC6,0xD5DF,0xBAC7,0x3F,0xD5E0,0xBAC8,0xC2F0,0xBAC9,0xB1A7,0xBCE9,0xB0C2,0xBACA,0xC1D7,0xB4B0,0xBCB5,0xBACB,0xB9A8,0xBACC,0xBACD,0x3F,0xBACE,0xBACF,0xC5E6,0xBAD0,0xBDA1,0xB4B1,0xC3E8,0xC4EA,0xB0B8,0xB5B9,0xCAF5,0x3F,0xBCC2,0x3F,0x3F,0xB5D2,0xC0EB,0xBCBC,0xCDA8,0xD5E1,0x3F,0xBAD1,0xBAD2,0x3F,0x3F,0xBAD3,0xBAD4,0xB5DC,0xBAD5,0xBACB,0xBAD6,0xBAD7,0xB3B2,0xB1E3,0xBEAC,0xB2C8,0xBAD8,0xD5E2,0xCDC6,0xBAD9,0x3F,0xBADA,0x3F,0x3F,0xBDC9,0xBADB,0xBADC,0xBCE4,0xD5E3,0xB4F3,0xC6D2,0xCCA9,0xD5E4,0x3F,0xD5E5,0x3F,0x3F,0xC9D9,0xBADD,0x3F,0xBADE,0xD5E7,0x3F,0xB4A8,0xB6F7,0xD5E6,0x3F,0xBADF,0xBAE0,0xBAE1,0xBAE2,0xBAE3,0xB4B2,0x3F,0xBFB2,0xD5EB,0xBBA1,0xBAE4,0xB2C9,0xD5EA,0x3F,0xD5E8,0xD5EC,0xD5E9,0xC7AB,0xDCCD,0xBFB3,0x3F,0xD5ED,0x3F,0x3F,0xCEC0,0xBAE5,0xD5EE,0xBAE6,0x3F,0xD5F0,0xBAE7,0xC3FE,0xD5EF,0x3F,0xC0A3,0x3F,0xBBFB,0x3F,0x3F,0xBAE8,0xC2D0,0xBCF7},
set5B[] = {3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,3,0xFF,0xFF,1,0xFF,1,0xFF,3,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,3,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,1,1,3,0xFF,1,1,3,1,1,0xFF,1,1,1,1,3,1,0xFF,0xFF,0xFF,1,1,1,1,0xFF,3,1,0xFF,1,0xFF,0xFF,3,3,1,1,0xFF,1,0xFF,1,0xFF,0xFF,1,0xFF,1,0xFF,3,3,3,3,1,3,0xFF,1,3,1,3,1,1,1,3,1,1,1,3,1,3,3,0xFF,3,3,1,3,1,1,1,1,1,1,1,0xFF,1,0xFF,0xFF,1,1,1,1,1,0xFF,3,3,0xFF,0xFF,3,3,1,3,1,3,3,1,1,1,1,3,1,1,3,0xFF,3,0xFF,0xFF,1,3,3,1,1,1,1,1,1,0xFF,1,0xFF,0xFF,1,3,0xFF,3,1,0xFF,1,1,1,0xFF,3,3,3,3,3,1,0xFF,1,1,1,3,1,1,0xFF,1,1,1,1,1,1,0xFF,1,0xFF,0xFF,1,3,1,3,0xFF,1,3,1,1,0xFF,1,0xFF,1,0xFF,0xFF,3,1,1},
en5C[] = {0x3F,0xC9F5,0xC0EC,0x3F,0xBCCD,0xD5F1,0xBEAD,0xD5F2,0xD5F3,0xB0D3,0xC2BA,0xBFD2,0xBAE9,0xD5F4,0xC6B3,0xBEAE,0x3F,0xBEAF,0x3F,0xD5F5,0x3F,0x3F,0xC0ED,0xBAEA,0x3F,0x3F,0xBEB0,0x3F,0x3F,0x3F,0xBAEB,0xBAEC,0xD5F6,0x3F,0xD5F7,0xBAED,0xCCE0,0x3F,0xBAEE,0x3F,0xD5F8,0xBAEF,0x3F,0xBAF0,0xBAF1,0xB6C6,0xBAF2,0x3F,0xBAF3,0xBDA2,0xBAF4,0x3F,0x3F,0xBAF5,0xBAF6,0x3F,0xD5F9,0xD5FA,0xBCDC,0xBFAC,0xC6F4,0xBFD4,0xC8F8,0xC7A2,0xB6C9,0xD5FB,0x3F,0x3F,0x3F,0xB5EF,0xD5FC,0x3F,0xB6FE,0x3F,0xC6CF,0xB2B0,0x3F,0xBBD3,0xD5FD,0xD6A2,0xD6A1,0xB6FD,0x3F,0xD5FE,0x3F,0xC5B8,0x3F,0x3F,0x3F,0xBAF7,0xBAF8,0x3F,0xBAF9,0x3F,0xC2B0,0x3F,0xC5CB,0xBCC8,0xBAFA,0xBAFB,0xC1D8,0xCDFA,0x3F,0xBAFC,0xBAFD,0xBAFE,0x3F,0x3F,0xD6A4,0xBBA1,0xD6A5,0xC6D6,0xBBA2,0xBBB3,0x3F,0x3F,0xBBA3,0xBBA4,0xD6A7,0x3F,0x3F,0xD6A8,0xBBA5,0xBBA6,0xBBA7,0xBBA8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBBA9,0xBBAA,0x3F,0xBBAB,0x3F,0xD6A9,0x3F,0x3F,0xBBAC,0xB4F4,0xD6AA,0xBBAD,0x3F,0xD6AB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBBAE,0x3F,0xBBAF,0xBBB0,0xB2AC,0xBBB1,0xBBB2,0x3F,0x3F,0xBBB3,0x3F,0xC1BB,0xB4E4,0xBBB4,0xD6AD,0xCCA8,0x3F,0x3F,0x3F,0x3F,0xC2D2,0xBBB5,0xB3D9,0xBBB6,0xBBB7,0xD6AF,0xD6B1,0xB4DF,0x3F,0xBBB8,0xD6AE,0xD6B0,0x3F,0xD6B3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD6B2,0x3F,0xD6B4,0x3F,0xBBB9,0x3F,0xBBBA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBBBB,0x3F,0x3F,0x3F,0x3F,0xBBBD,0x3F,0xD6B5,0x3F,0x3F,0x3F,0xBBBC,0x3F,0x3F,0xC6BD,0xB6AE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB2E5,0xD6B6,0xD6BB,0x3F,0x3F,0xD6B9,0xBBBE,0xCAF7,0xCAF6,0xBBBF,0xBBC0,0x3F,0xBBC1,0x3F,0xC5E7,0x3F,0x3F,0x3F,0xD6B8,0xBDD4,0x3F,0xD6B7,0x3F,0x3F},
set5C[] = {0xFF,1,1,0xFF,1,1,1,1,1,1,1,1,3,1,1,1,0xFF,1,0xFF,1,0xFF,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,3,1,0xFF,1,3,1,0xFF,3,0xFF,1,3,0xFF,3,3,1,3,0xFF,3,1,3,0xFF,0xFF,3,3,0xFF,1,1,1,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,1,1,0xFF,1,1,1,1,1,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,3,0xFF,1,0xFF,1,1,3,3,1,1,0xFF,3,3,3,0xFF,0xFF,1,3,1,1,3,1,0xFF,0xFF,3,3,1,0xFF,0xFF,1,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,0xFF,1,0xFF,0xFF,3,1,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,1,3,3,0xFF,0xFF,3,0xFF,1,1,3,1,1,0xFF,0xFF,0xFF,0xFF,1,3,1,3,3,1,1,1,0xFF,3,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,1,3,1,1,3,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,0xFF},
en5D[] = {0x3F,0xBBC2,0x3F,0x3F,0x3F,0x3F,0xBBC3,0xBFF2,0x3F,0x3F,0x3F,0xD6BC,0x3F,0xBBC4,0xBAEA,0x3F,0x3F,0xD6C2,0xBBC5,0x3F,0xD6C3,0xD6BD,0xB3B3,0xD6BE,0xD6C7,0xD6C6,0xD6C5,0xD6C1,0x3F,0x3F,0x3F,0xD6C0,0x3F,0x3F,0xD6C4,0xBBC7,0xBBC8,0x3F,0xBBC9,0xBBCA,0x3F,0xCAF8,0x3F,0xBBC6,0x3F,0x3F,0x3F,0x3F,0x3F,0xBBCB,0x3F,0x3F,0xBBCC,0x3F,0x3F,0x3F,0x3F,0xBBCD,0x3F,0x3F,0x3F,0xBBCE,0x3F,0xBBCF,0x3F,0x3F,0xBBD0,0xBBD1,0x3F,0x3F,0xBBD2,0x3F,0xBBD3,0x3F,0xBBD7,0xD6CB,0xD6C8,0x3F,0xD6CA,0x3F,0xCDF2,0xBBD5,0xD6C9,0x3F,0x3F,0xBBD4,0x3F,0x3F,0x3F,0xBBD6,0x3F,0x3F,0xD6BF,0x3F,0x3F,0xBBD8,0xBBD9,0xBBDA,0xBBDB,0x3F,0xBBDC,0x3F,0x3F,0x3F,0x3F,0xBFF3,0xBBDD,0x3F,0xD6CC,0xBBDE,0x3F,0xBAB7,0xBBDF,0x3F,0x3F,0xD6CD,0x3F,0x3F,0xD6CE,0x3F,0x3F,0xBBE0,0xBBE1,0x3F,0x3F,0x3F,0xBBE2,0xBBE3,0x3F,0xBBE4,0xD6D1,0xBBE5,0xD6D0,0x3F,0x3F,0xD6CF,0xBBE6,0x3F,0xBBE7,0xC5E8,0xD6BA,0x3F,0x3F,0x3F,0xD6D7,0x3F,0xBBE8,0xBBE9,0xBBEA,0xBBEB,0x3F,0x3F,0x3F,0xBBEC,0x3F,0xBBED,0x3F,0xD6D3,0x3F,0xBBEE,0xBBEF,0x3F,0xD6D2,0x3F,0x3F,0x3F,0x3F,0xBBF0,0x3F,0x3F,0x3F,0xBBF1,0xD6D4,0x3F,0xD6D5,0x3F,0xBBF2,0x3F,0xE6F4,0x3F,0xBBF3,0x3F,0x3F,0xD6D8,0xBBF4,0xBBF5,0xCEE6,0x3F,0xD6D9,0xD6D6,0x3F,0x3F,0x3F,0x3F,0x3F,0xBBF6,0x3F,0x3F,0x3F,0xBBF7,0x3F,0xD6DA,0x3F,0xBBF8,0xB4E0,0xD6DB,0xBBFA,0x3F,0xBBF9,0x3F,0xD6DD,0xD6DC,0x3F,0x3F,0xD6DE,0x3F,0xBBFB,0xBBFC,0x3F,0xD6DF,0x3F,0xC0EE,0xBDA3,0x3F,0xBBFD,0xBDE4,0x3F,0xC1E3,0xBBFE,0xB9A9,0xBAB8,0xB9AA,0xB5F0,0xBCA1,0x3F,0xD6E0,0x3F,0x3F,0xBAB9,0x3F,0x3F,0xB8CA,0xD6E1,0xCCA6,0xC7C3,0xD6E2,0x3F,0xB9AB,0xBCA2,0xBCA3,0x3F,0xB4AC,0x3F,0xC3A7,0xB6D2,0x3F},
set5D[] = {0xFF,3,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,0xFF,1,3,0xFF,1,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,3,3,0xFF,3,3,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,3,3,0xFF,0xFF,3,0xFF,3,0xFF,3,1,1,0xFF,1,0xFF,1,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,3,3,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,3,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,3,3,0xFF,3,1,3,1,0xFF,0xFF,1,3,0xFF,3,1,1,0xFF,0xFF,0xFF,1,0xFF,3,3,3,3,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,1,0xFF,3,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,0xFF,1,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,1,3,3,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,3,1,1,3,0xFF,3,0xFF,1,1,0xFF,0xFF,1,0xFF,3,3,0xFF,1,0xFF,1,1,0xFF,3,1,0xFF,1,3,1,1,1,1,3,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,1,1,1,1,1,0xFF,1,3,3,0xFF,1,0xFF,1,1,0xFF},
en5E[] = {0xBCA4,0x3F,0xBBD4,0xC9DB,0x3F,0x3F,0xC8C1,0xBCA5,0x3F,0x3F,0x3F,0xD6E3,0xB4F5,0xBCA6,0x3F,0x3F,0x3F,0xD6E6,0xBCA7,0x3F,0xBCA8,0xBCA9,0xC4A1,0x3F,0xBCAA,0xD6E5,0xD6E4,0xD6E7,0x3F,0xC4EB,0x3F,0xBCAB,0xBCAC,0x3F,0x3F,0x3F,0x3F,0xBFE3,0x3F,0x3F,0xBCAE,0x3F,0x3F,0xBBD5,0x3F,0xC0CA,0xBCAD,0xC2D3,0xB5A2,0x3F,0xBCAF,0xC4A2,0x3F,0xBCB0,0xD6E8,0xD6E9,0xBEEF,0x3F,0x3F,0x3F,0x3F,0xCBB9,0xBCB1,0x3F,0xD6EC,0x3F,0x3F,0xD6EB,0xD6EA,0xC9FD,0x3F,0xD6F3,0x3F,0xBCB4,0x3F,0xBCB2,0xCBDA,0x3F,0xD6ED,0x3F,0xBCB3,0xBCB5,0x3F,0x3F,0xD6EF,0xCBEB,0xBCB6,0xD6EE,0xBCB7,0x3F,0x3F,0xBCB8,0xBCB9,0x3F,0xBCBA,0xD6F0,0x3F,0xC8A8,0xD6F1,0xCABE,0xD6F2,0x3F,0x3F,0x3F,0xBCBB,0x3F,0xBCBC,0xBCBD,0xBCBE,0xBCBF,0xBCC0,0x3F,0xBCC1,0x3F,0xB4B3,0xCABF,0xC7AF,0xD6F4,0xD6F5,0x3F,0xB9AC,0xB4B4,0xD6F6,0xB8B8,0xCDC4,0xCDA9,0xB4F6,0xD6F8,0xBCC2,0xC4A3,0x3F,0xB9AD,0xBEB1,0x3F,0x3F,0xC8DF,0x3F,0x3F,0xBEB2,0xBCC3,0x3F,0x3F,0xBCC4,0xBDF8,0x3F,0x3F,0x3F,0x3F,0x3F,0xC4EC,0xCAF9,0xC5B9,0x3F,0x3F,0xB9AE,0x3F,0xC9DC,0x3F,0x3F,0x3F,0xD6F9,0x3F,0xBCC5,0x3F,0xBCC6,0xBCC7,0xC5D9,0xBAC2,0xBCC8,0x3F,0xBCC9,0xB8CB,0xBCCA,0xC4ED,0x3F,0x3F,0x3F,0xBCCB,0x3F,0xBCCC,0x3F,0xB0C3,0xBDEE,0xB9AF,0xCDC7,0x3F,0x3F,0x3F,0x3F,0xBCCD,0xBCCE,0xBCCF,0x3F,0xD6FA,0xD6FB,0xC7D1,0x3F,0x3F,0xBCD0,0x3F,0xD6FC,0xCEF7,0xCFAD,0xBCD2,0xBCD1,0x3F,0xBCD3,0xD6FE,0xD6FD,0xBCD4,0xBCD5,0xB3C7,0xBCD6,0xBCD7,0xD7A1,0x3F,0x3F,0x3F,0xD7A4,0xD7A5,0xBCD8,0xD7A3,0xBCD9,0xC9C0,0xBEB3,0xD7A7,0xD7A6,0xD7A2,0x3F,0xBCDA,0x3F,0x3F,0xD7A8,0xD7A9,0x3F,0xBCDB,0xD7AA,0x3F,0x3F,0x3F,0xD7AD,0xD7AB,0x3F,0xD7AC,0xD7AE,0x3F,0xB1E4,0xC4EE,0xD7AF,0x3F,0xB7FA,0xB2F6,0xC7B6,0x3F,0xD7B0,0xC6FB},
set5E[] = {3,0xFF,1,1,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,1,1,3,0xFF,0xFF,0xFF,1,3,0xFF,3,3,1,0xFF,3,1,1,1,0xFF,1,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,1,3,1,1,0xFF,3,1,0xFF,3,1,1,1,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,0xFF,0xFF,1,1,1,0xFF,1,0xFF,3,0xFF,3,1,0xFF,1,0xFF,3,3,0xFF,0xFF,1,1,3,1,3,0xFF,0xFF,3,3,0xFF,3,1,0xFF,1,1,1,1,0xFF,0xFF,0xFF,3,0xFF,3,3,3,3,3,0xFF,3,0xFF,1,1,1,1,1,0xFF,1,1,1,1,1,1,1,1,3,1,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,1,3,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,3,1,1,3,0xFF,3,1,3,1,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,1,1,1,1,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,1,1,1,0xFF,0xFF,3,0xFF,1,1,1,3,3,0xFF,3,1,1,3,3,1,3,3,1,0xFF,0xFF,0xFF,1,1,3,1,3,1,1,1,1,1,0xFF,3,0xFF,0xFF,1,1,0xFF,3,1,0xFF,0xFF,0xFF,1,1,0xFF,1,1,0xFF,1,1,1,0xFF,1,1,1,0xFF,1,1},
en5F[] = {0x3F,0xCADB,0xBCDC,0xD7B1,0xCFAE,0x3F,0xBCDD,0xBCDE,0xBCDF,0xD7B2,0xCAC0,0xD7B5,0xD0A1,0xD0B1,0xBCE0,0xBCB0,0xC6F5,0xD7B6,0x3F,0xB5DD,0xC4A4,0xB0FA,0xD7B7,0xCAA6,0xB9B0,0xBCE1,0x3F,0xC3D0,0xBCE2,0xBCE3,0x3F,0xC4EF,0x3F,0xBCE4,0xBCE5,0xBCE6,0xBCE7,0xCCEF,0xB8B9,0xB8CC,0xBCE8,0xD7B8,0x3F,0xBCE9,0xBCEA,0xD7B9,0xBCEB,0xD7BF,0xBCEC,0xBCE5,0x3F,0x3F,0xBCED,0xC4A5,0xBCEE,0xB6AF,0xD7BA,0x3F,0x3F,0xBCEF,0xC9AB,0xBCF0,0xC3C6,0xBCF1,0xBCF2,0xD7BB,0x3F,0x3F,0xBCF3,0xBCF4,0x3F,0xBCF5,0xD7BC,0x3F,0xB6B0,0x3F,0xD7BD,0xBCF6,0xD7BE,0x3F,0xBCF7,0xD7C0,0x3F,0xC5F6,0xBCF8,0x3F,0xD7C1,0xD7C2,0xBCF9,0xD7C3,0x3F,0xBCFA,0xD7B4,0xD7B3,0x3F,0x3F,0xBCFB,0xD7C4,0xB7C1,0xBCFC,0xBCFD,0x3F,0xC9A7,0xBCFE,0x3F,0xBACC,0xC9B7,0xC4A6,0xC9CB,0xD7C5,0x3F,0xBDA1,0xBEB4,0xB1C6,0xBDA2,0xD7C6,0xBDA3,0xBDA4,0x3F,0xD7C7,0xBDA5,0xCCF2,0xBDA6,0x3F,0xC8E0,0xBDA7,0xBDA8,0xD7CA,0xB1FD,0xC0AC,0xD7C9,0xD7C8,0xB7C2,0xC2D4,0x3F,0xD7CE,0xD7CC,0xBDA9,0xD7CB,0xCEA7,0xB8E5,0xBDAA,0x3F,0xBDAB,0xBDF9,0xD7CD,0xC5CC,0xBDBE,0x3F,0x3F,0xBDAC,0xC6C0,0xD7D1,0xD7D0,0x3F,0x3F,0xBDAD,0xBDAE,0xD7CF,0x3F,0xD7D2,0xB8E6,0xBDAF,0x3F,0xBDB2,0x3F,0x3F,0xBDB0,0xD7D3,0xC9FC,0xBDDB,0xBDB1,0xBDB3,0xD7D4,0xC8F9,0xBDB4,0xBDB5,0xBDB6,0x3F,0xC6C1,0xC4A7,0x3F,0x3F,0x3F,0xBDB7,0xC5B0,0x3F,0x3F,0xD7D5,0xB5AB,0x3F,0x3F,0x3F,0x3F,0x3F,0xBFB4,0xBDB8,0xC9AC,0x3F,0xBDB9,0xBDBA,0xBDBB,0x3F,0xBDBC,0xB4F7,0xC7A6,0x3F,0x3F,0xBDBD,0xBDBE,0xBDBF,0xBDC0,0xBDC1,0x3F,0xD7D6,0xBBD6,0xCBBA,0xCBBB,0x3F,0x3F,0xB1FE,0xD7DB,0xBDC2,0x3F,0xC3E9,0xBDC3,0xBDC4,0x3F,0xD7D8,0x3F,0x3F,0x3F,0xBDC5,0xBDC6,0xBDC7,0xB2F7,0xBDC8,0xBDC9,0xBDCA,0xBDCB,0xD8AD,0xD7DA,0xBDCC,0xBDCD,0x3F,0xC7B0,0xBDCE,0x3F,0xD7D9,0x3F,0xBDCF,0xD7D7,0xBDD0,0xB9FA,0x3F,0xD7DD},
set5F[] = {0xFF,1,3,1,1,0xFF,3,3,3,1,1,1,1,1,3,1,1,1,0xFF,1,1,1,1,1,1,3,0xFF,1,3,3,0xFF,1,0xFF,3,3,3,3,1,1,1,3,1,0xFF,3,3,1,3,1,3,1,0xFF,0xFF,3,1,3,1,1,0xFF,0xFF,3,1,3,1,3,3,1,0xFF,0xFF,3,3,0xFF,3,1,0xFF,1,0xFF,1,3,1,0xFF,3,1,0xFF,1,3,0xFF,1,1,3,1,0xFF,3,1,1,0xFF,0xFF,3,1,1,3,3,0xFF,1,3,0xFF,1,1,1,1,1,0xFF,3,1,1,3,1,3,3,0xFF,1,3,1,3,0xFF,1,3,3,1,1,1,1,1,1,1,0xFF,1,1,3,1,1,1,3,0xFF,3,1,1,1,1,0xFF,0xFF,3,1,1,1,0xFF,0xFF,3,3,1,0xFF,1,1,3,0xFF,3,0xFF,0xFF,3,1,1,1,3,3,1,1,3,3,3,0xFF,1,1,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,3,3,3,0xFF,3,1,1,0xFF,0xFF,3,3,3,3,3,0xFF,1,1,1,1,0xFF,0xFF,1,1,3,0xFF,1,3,3,0xFF,1,0xFF,0xFF,0xFF,3,3,3,1,3,3,3,3,1,1,3,3,0xFF,1,3,0xFF,1,0xFF,3,1,3,1,0xFF,1},
en60[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBDD1,0x3F,0x3F,0xBDD2,0x3F,0x3F,0xBDD3,0xD7E3,0xD7E9,0xD7E1,0x3F,0xC5DC,0xBDD4,0xBDD5,0xD7E6,0xC9DD,0xBDD6,0xBDD7,0xD7E0,0xBDD8,0xD7E5,0xCEE7,0xBBD7,0x3F,0xBDD9,0xC2D5,0xD7DE,0x3F,0x3F,0xBDDA,0xB5DE,0xD7E8,0xC0AD,0xB1E5,0xD7E2,0xB2F8,0xD7E7,0x3F,0xBDDB,0x3F,0xB6B1,0x3F,0xD7E4,0x3F,0xBDDC,0x3F,0xBDDD,0x3F,0x3F,0x3F,0x3F,0xD7EA,0x3F,0x3F,0x3F,0x3F,0x3F,0xBDDE,0xD7EC,0xD7F6,0xD7F4,0x3F,0x3F,0xD7F1,0xBDDF,0xBDE0,0xBDE1,0xD7F0,0xCEF8,0xBDE2,0xD7F2,0x3F,0x3F,0xB6B2,0xBDE3,0xB9B1,0x3F,0xBDE4,0xBDFA,0xBDE5,0xBDE6,0x3F,0xD7F9,0xD7EB,0x3F,0x3F,0xBDE7,0x3F,0xD7EF,0xD7DF,0xBDE8,0xB2FA,0xD7F3,0xD7F5,0xC3D1,0x3F,0xBDE9,0xBAA8,0xB2B8,0xD7ED,0xD7F8,0xD7F7,0xB6B3,0x3F,0xC2A9,0xB3E6,0xBDEA,0x3F,0x3F,0x3F,0xB7C3,0x3F,0xD7EE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBDEB,0xBDEC,0x3F,0xD7FA,0xBDED,0xD7FD,0xD8A1,0x3F,0xBDEE,0x3F,0xBDEF,0xBCBD,0xBDF0,0xD8A7,0xC4F0,0xD7FB,0xBDF1,0x3F,0x3F,0xBDF2,0xD8A5,0xBDF3,0xB2F9,0xBDF4,0xD8A3,0xD8A4,0xBDF5,0x3F,0xD7FE,0xD8A2,0x3F,0xBDF6,0xBDF7,0xB8E7,0xCDAA,0x3F,0xBDF8,0xB4B5,0xBDF9,0xBDFA,0xB1D9,0xD8A6,0xBDFB,0xC7BA,0xB0AD,0x3F,0x3F,0x3F,0x3F,0x3F,0xBDFC,0xBDFD,0xC8E1,0xD7DC,0xD8AC,0xD8B0,0xCCE5,0xBDFE,0xD8A9,0x3F,0x3F,0xBEA1,0xC5E9,0xD8AE,0xBEA2,0x3F,0x3F,0x3F,0xBEA3,0x3F,0xBEA4,0xBEF0,0xD8AF,0xC6D7,0xBEA5,0xBEA6,0xBEA7,0xBEA8,0x3F,0x3F,0xBEA9,0xBEAA,0x3F,0xCFC7,0x3F,0xD8AB,0xBEAB,0xBEAC,0x3F,0x3F,0xD8B1,0xBEAD,0xB9FB,0xBEAE,0xC0CB,0xBEAF,0xBEB0,0xB0D4,0xD8AA,0xD8A8,0xBEB1,0xC1DA,0x3F,0xBEB2,0x3F,0xD7FC,0xBBB4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC2C6,0xD8BD,0xBEB3,0xC1DB,0xD8B8,0xBEB4,0xD8B5,0xD8B6,0xBEB5,0xBCE6,0xD8B9,0xD8BC,0xBEB6,0xBEB7,0x3F,0x3F},
set60[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,3,1,1,1,0xFF,1,3,3,1,1,3,3,1,3,1,1,1,0xFF,3,1,1,0xFF,0xFF,3,1,1,1,1,1,1,1,0xFF,3,0xFF,1,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,1,0xFF,0xFF,1,3,3,3,1,1,3,1,0xFF,0xFF,1,3,1,0xFF,3,1,3,3,0xFF,1,1,0xFF,0xFF,3,0xFF,1,1,3,1,1,1,1,0xFF,3,1,1,1,1,1,1,0xFF,1,1,3,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,1,3,1,1,0xFF,3,0xFF,3,1,3,1,1,1,3,0xFF,0xFF,3,1,3,1,3,1,1,3,0xFF,1,1,0xFF,3,3,1,1,0xFF,3,1,3,3,1,1,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,1,1,1,1,1,3,1,0xFF,0xFF,3,1,1,3,0xFF,0xFF,0xFF,3,0xFF,3,1,1,1,3,3,3,3,0xFF,0xFF,3,3,0xFF,1,0xFF,1,3,3,0xFF,0xFF,1,3,1,3,1,3,3,1,1,1,3,1,0xFF,3,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,1,1,3,1,1,3,1,1,1,3,3,0xFF,0xFF},
en61[] = {0xD8B7,0xBDA5,0xBEB8,0xD8BA,0x3F,0x3F,0xD8B4,0xBEB9,0xCCFC,0xCCFB,0xBEBA,0x3F,0xBEBB,0xD8BE,0xD8BF,0xB0D5,0xBEBC,0xBEBD,0xBEBE,0xBEBF,0xBEC0,0xD8B3,0xBEC1,0xBEC2,0x3F,0xBEC3,0xB6F2,0xB0A6,0xBEC4,0x3F,0xBEC5,0xB4B6,0x3F,0xD8BB,0xBEC6,0x3F,0x3F,0x3F,0x3F,0xD8C3,0xD8C2,0x3F,0xBEC7,0xBEC8,0xD8C7,0x3F,0x3F,0x3F,0xBEC9,0xBECA,0x3F,0x3F,0xD8C8,0xBECB,0xBECC,0xBECD,0x3F,0xBECE,0x3F,0x3F,0xD8C6,0xD8C9,0xD8C1,0xD8C5,0x3F,0xBECF,0xD8CA,0x3F,0xD8CB,0xBED0,0xBED1,0xD8C0,0xBBFC,0xBED2,0xD8C4,0xC2D6,0xB9B2,0xD8B2,0xBFB5,0x3F,0x3F,0x3F,0x3F,0xD8D8,0x3F,0xCAE9,0x3F,0x3F,0xD8CE,0xD8CF,0xD8D0,0x3F,0x3F,0xD8D7,0xBED3,0xD8D6,0xBED4,0x3F,0xCBFD,0xB4B7,0x3F,0xD8D4,0x3F,0xB7C5,0xB3B4,0x3F,0x3F,0xD8D1,0xBED5,0x3F,0xCEB8,0xD8D3,0xB0D6,0xD8D5,0xBED6,0xD8CC,0xD8D2,0xD8D9,0xB7C4,0xD8CD,0xBED7,0x3F,0x3F,0xBED8,0xBED9,0x3F,0xCDDD,0xBEDA,0xBEDB,0xBEDC,0xCDAB,0xBEDD,0xBEDE,0x3F,0x3F,0xD8DC,0x3F,0x3F,0xD8E0,0xBEDF,0x3F,0xBEE0,0xC1FE,0x3F,0xCEF9,0xD8E1,0xBEE1,0xBEE2,0xD8DE,0x3F,0xD8DB,0xBEE3,0xBEE4,0xD8DA,0xD8DF,0x3F,0xBEE5,0xBEE6,0x3F,0xBEE7,0xBEE8,0x3F,0x3F,0x3F,0xCAB0,0xBEE9,0x3F,0xC6B4,0xBEEA,0xB7C6,0xBEEB,0xD8E2,0xD8DD,0xBEEC,0xD8E3,0x3F,0x3F,0x3F,0xB7FB,0x3F,0x3F,0x3F,0xB2B1,0x3F,0xBEED,0xBEEE,0xD8EB,0x3F,0xBEEF,0x3F,0xB4B8,0x3F,0xBEF0,0xBEF1,0xBEF2,0xD8E9,0x3F,0x3F,0xD8EA,0xBAA9,0xD8E8,0xD8E6,0xD8E5,0xD8EC,0xD8E4,0xD8EE,0xBEF3,0xBEF4,0xB2FB,0x3F,0x3F,0x3F,0x3F,0xBEF5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBEF6,0xBEF7,0xBEF8,0xBEF9,0x3F,0xBEFA,0xBEFB,0xD8F0,0x3F,0xBEFE,0xD8EF,0xBEFC,0x3F,0xBEFD,0x3F,0x3F,0xBFA1,0xBFA2,0x3F,0xBFA3,0x3F,0x3F,0xC4A8,0x3F,0xD8F3,0x3F,0xD8F1,0xD8E7,0xB7FC,0x3F,0xD8F2,0x3F,0xD8F6,0xD8F5,0xD8F7,0xD8F4},
set61[] = {1,1,3,1,0xFF,0xFF,1,3,1,1,3,0xFF,3,1,1,1,3,3,3,3,3,1,3,3,0xFF,3,1,1,3,0xFF,3,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,3,3,1,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,3,3,3,0xFF,3,0xFF,0xFF,1,1,1,1,0xFF,3,1,0xFF,1,3,3,1,1,3,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,1,1,1,0xFF,0xFF,1,3,1,3,0xFF,1,1,0xFF,1,0xFF,1,1,0xFF,0xFF,1,3,0xFF,1,1,1,1,3,1,1,1,1,1,3,0xFF,0xFF,3,3,0xFF,1,3,3,3,1,3,3,0xFF,0xFF,1,0xFF,0xFF,1,3,0xFF,3,1,0xFF,1,1,3,3,1,0xFF,1,3,3,1,1,0xFF,3,3,0xFF,3,3,0xFF,0xFF,0xFF,1,3,0xFF,1,3,1,3,1,1,3,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,3,3,1,0xFF,3,0xFF,1,0xFF,3,3,3,1,0xFF,0xFF,1,1,1,1,1,1,1,1,3,3,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,3,0xFF,3,3,1,0xFF,3,1,3,0xFF,3,0xFF,0xFF,3,3,0xFF,3,0xFF,0xFF,1,0xFF,1,0xFF,1,1,1,0xFF,1,0xFF,1,1,1,1},
en62[] = {0xD8F8,0xBFA4,0x3F,0xBFA5,0xBFA6,0x3F,0x3F,0xBFA7,0xD8F9,0xD8FA,0xCAEA,0x3F,0xD8FC,0xD8FB,0xBDBF,0x3F,0xC0AE,0xB2E6,0xB2FC,0xBFA8,0xD8FD,0xBFA9,0xB0BF,0x3F,0x3F,0x3F,0xC0CC,0xD8FE,0xBFAA,0xECC3,0xD9A1,0xB7E1,0xBFAB,0xD9A2,0xBFAC,0xBFAD,0x3F,0x3F,0xC0EF,0xBFAE,0x3F,0xBFAF,0xD9A3,0xBFB0,0x3F,0x3F,0xD9A4,0xB5BA,0xD9A5,0x3F,0xD9A6,0xD9A7,0xC2D7,0x3F,0x3F,0x3F,0xB8CD,0xBFB1,0x3F,0xCCE1,0x3F,0xBFB2,0x3F,0xCBBC,0xBDEA,0xD9A8,0xBFB3,0xBFB4,0xBFB5,0x3F,0xBFB6,0xC0F0,0xEEBD,0xC8E2,0x3F,0xBCEA,0xBFB7,0xBACD,0xD9A9,0x3F,0xBFB8,0xBFB9,0xBFBA,0xC2C7,0xBFBB,0xCAA7,0xBFBC,0x3F,0xC2F1,0x3F,0xBFBD,0xD9AC,0xBFBE,0x3F,0xD9AA,0x3F,0xD9AD,0x3F,0x3F,0xD9AB,0xBFBF,0x3F,0x3F,0x3F,0xD9AE,0x3F,0x3F,0x3F,0x3F,0xBFC0,0xCAB1,0xBFC1,0x3F,0xB0B7,0x3F,0xBFC2,0x3F,0x3F,0xC9DE,0x3F,0x3F,0xC8E3,0xBFC3,0x3F,0xD9AF,0xBFC4,0xD9B2,0xBEB5,0xB5BB,0x3F,0xD9B0,0xD9B7,0xBEB6,0x3F,0x3F,0x3F,0x3F,0xD9B1,0xC7C4,0x3F,0x3F,0xBFC5,0xBFC6,0xBFC7,0xBFC8,0xCDDE,0xD9B3,0xD9B4,0xD9B8,0xC5EA,0xD9B5,0xB9B3,0xC0DE,0x3F,0x3F,0xD9C6,0xC8B4,0x3F,0xC2F2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBFC9,0x3F,0xBFCA,0x3F,0x3F,0xC8E4,0xDAAD,0x3F,0x3F,0x3F,0x3F,0xCAFA,0x3F,0xBFCB,0x3F,0xC4F1,0xBFCC,0xBFCD,0x3F,0xCBF5,0xBFCE,0xD9BB,0xB2A1,0xC3EA,0xBFCF,0xBFD0,0x3F,0x3F,0xD9C4,0x3F,0xBFD1,0xC3B4,0xD9BE,0xD9C5,0xD9C0,0xD9C7,0xD9C3,0x3F,0xD9C2,0xC7EF,0xBFD2,0xD9BC,0xB2FD,0xD9BA,0xB5F1,0xC2F3,0xD9B6,0xBFD3,0xBFD4,0xD9B9,0xB9B4,0xC0DB,0xBFD5,0xBEB7,0xD9C1,0xC7D2,0x3F,0x3F,0xB5F2,0xB3C8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBFD6,0x3F,0xB3E7,0xBFA1,0xD9C9,0xD9CE,0x3F,0xD9CA,0xBFD7,0xB7FD,0xBFD8,0xD9CF,0xBBA2,0xB9E9,0x3F,0x3F,0x3F,0x3F,0xBFD9,0xBFDA,0xBDA6,0xD9BD},
set62[] = {1,3,0xFF,3,3,0xFF,0xFF,3,1,1,1,0xFF,1,1,1,0xFF,1,1,1,3,1,3,1,0xFF,0xFF,0xFF,1,1,3,1,1,1,3,1,3,3,0xFF,0xFF,1,3,0xFF,3,1,3,0xFF,0xFF,1,1,1,0xFF,1,1,1,0xFF,0xFF,0xFF,1,3,0xFF,1,0xFF,3,0xFF,1,1,1,3,3,3,0xFF,3,1,1,1,0xFF,1,3,1,1,0xFF,3,3,3,1,3,1,3,0xFF,1,0xFF,3,1,3,0xFF,1,0xFF,1,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,1,3,0xFF,1,3,1,1,1,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,3,3,3,3,1,1,1,1,1,1,1,1,0xFF,0xFF,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,1,3,3,0xFF,1,3,1,1,1,3,3,0xFF,0xFF,1,0xFF,3,1,1,1,1,1,1,0xFF,1,1,3,1,1,1,1,1,1,3,3,1,1,1,3,1,1,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,1,1,0xFF,1,3,1,3,1,1,1,0xFF,0xFF,0xFF,0xFF,3,3,1,1},
en63[] = {0x3F,0xBBFD,0xD9CC,0xBFDB,0xBFDC,0x3F,0x3F,0xBBD8,0xD9CD,0xB0C4,0xBFDD,0xBFDE,0xD9C8,0xBFDF,0x3F,0x3F,0xBFE0,0xC4A9,0x3F,0xBFE1,0x3F,0x3F,0xBFE2,0x3F,0xBFE3,0xB5F3,0x3F,0x3F,0x3F,0x3F,0x3F,0xB6B4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD9CB,0xB0A7,0xBFE4,0xBFE5,0xBAC3,0x3F,0xBFE6,0x3F,0xBFB6,0x3F,0x3F,0x3F,0x3F,0x3F,0xBFE7,0xBFE8,0x3F,0x3F,0xBFE9,0xC4F2,0x3F,0xBFEA,0xC8D4,0xD9D1,0xC1DE,0x3F,0xBFEB,0xBFEC,0xBFED,0xBFEE,0x3F,0xBFEF,0x3F,0x3F,0xC2AA,0xBFF0,0xBFF1,0xBBAB,0xD9D2,0xBFF2,0xD9D4,0xD9D0,0x3F,0xBFF3,0xBFF4,0xBFF5,0xCAE1,0x3F,0xC4BD,0xBFF6,0x3F,0x3F,0xBFF7,0xC1DC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBFF8,0xBFF9,0xCAFB,0xBCCE,0xD9E0,0x3F,0xD9DF,0xBFFA,0xBFFB,0xBFF8,0x3F,0x3F,0xBFFC,0xB7FE,0x3F,0xBFFD,0xBFFE,0xD9D9,0xBEB9,0xC0A1,0x3F,0xC6E8,0xC7B1,0xC0A2,0xC0A3,0x3F,0xC0A4,0xD9D7,0x3F,0xC0A5,0xC1DD,0xC0A6,0x3F,0x3F,0xC0A7,0xBCF8,0xD9DC,0xC0A8,0x3F,0xBEB8,0x3F,0xD9D6,0xD9DB,0xC0A9,0x3F,0xC7D3,0x3F,0xC0AA,0xC0AB,0xD9D5,0x3F,0xB7A1,0xC0AC,0xC0AD,0xB3DD,0x3F,0x3F,0xC0AE,0xD9DD,0xCEAB,0xBACE,0xC3B5,0xD9DA,0xC0AF,0xC0DC,0xC0B0,0xB9B5,0xBFE4,0xB1E6,0xC1BC,0xD9D8,0xB5C5,0xC0B1,0xC0B2,0xC0B3,0x3F,0x3F,0xB7C7,0x3F,0xC4CF,0xD9DE,0x3F,0x3F,0x3F,0x3F,0x3F,0xC1DF,0x3F,0xC0B4,0xD9E1,0x3F,0xD9E3,0xC0B5,0x3F,0xC2B7,0xD9E9,0xC0B6,0xD9E4,0x3F,0xC0B7,0xD9E6,0x3F,0x3F,0x3F,0x3F,0xC0B8,0xC9C1,0xC4F3,0xC0B9,0xD9E7,0xC0BA,0xC0BB,0xC0BC,0xCDAC,0x3F,0x3F,0x3F,0xCDC8,0xB4B9,0xC0BD,0x3F,0x3F,0x3F,0xC0BE,0xB0AE,0x3F,0xD9E5,0x3F,0xC0BF,0x3F,0x3F,0x3F,0xD9E2,0xC0C0,0x3F,0xC0C1,0x3F,0xB4F8,0x3F,0x3F,0x3F,0xC0C2,0xC0C3,0xB1E7,0xC0C4,0xD9E8,0x3F,0xC0C5,0xC0C6,0xCDC9,0x3F,0x3F,0x3F,0x3F,0x3F},
set63[] = {0xFF,1,1,3,3,0xFF,0xFF,1,1,1,3,3,1,3,0xFF,0xFF,3,1,0xFF,3,0xFF,0xFF,3,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,3,1,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,3,1,0xFF,3,1,1,1,0xFF,3,3,3,3,0xFF,3,0xFF,0xFF,1,3,3,1,1,3,1,1,0xFF,3,3,3,1,0xFF,1,3,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,1,1,1,0xFF,1,3,3,1,0xFF,0xFF,3,1,0xFF,3,3,1,1,3,0xFF,1,1,3,3,0xFF,3,1,0xFF,3,1,3,0xFF,0xFF,3,1,1,3,0xFF,1,0xFF,1,1,3,0xFF,1,0xFF,3,3,1,0xFF,1,3,3,1,0xFF,0xFF,3,1,1,1,1,1,3,1,3,1,1,1,1,1,1,3,3,3,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,1,3,0xFF,1,1,3,1,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,1,1,3,1,3,3,3,1,0xFF,0xFF,0xFF,1,1,3,0xFF,0xFF,0xFF,3,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,3,1,3,1,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF},
en64[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD9EC,0x3F,0x3F,0xC0C7,0xC0C8,0x3F,0x3F,0xC2BB,0x3F,0xD9F3,0xC0C9,0x3F,0xC0CA,0xD9ED,0xC0CB,0x3F,0xD9EA,0xD9F1,0xC0CC,0x3F,0x3F,0x3F,0xD9D3,0x3F,0xC0CD,0x3F,0xC0CE,0x3F,0xC0CF,0x3F,0xC0D0,0xC0D1,0xD9EE,0x3F,0xD9F2,0xC0D2,0xC0D3,0x3F,0xC8C2,0xC5EB,0x3F,0xC0D4,0xC0D5,0x3F,0x3F,0x3F,0xD9EB,0xC0D6,0xD9EF,0x3F,0x3F,0x3F,0xB7C8,0x3F,0x3F,0xC0D7,0xBAF1,0xC0D8,0x3F,0x3F,0xC0DD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC0D9,0x3F,0x3F,0xD9F7,0xC0DA,0x3F,0xC0DB,0xC0DC,0xC0DD,0xC0DE,0x3F,0x3F,0x3F,0xC5A6,0x3F,0xC0DF,0xC0E0,0xC0E1,0xC0E2,0x3F,0xC0E3,0xC0E4,0xC0E5,0x3F,0xC0E6,0x3F,0x3F,0x3F,0xD9F4,0x3F,0xCBE0,0x3F,0x3F,0x3F,0xC0E7,0x3F,0xD9F5,0x3F,0x3F,0x3F,0xC0E8,0xC0E9,0x3F,0xD9F6,0x3F,0xCCCE,0x3F,0xC0A2,0xC0EA,0x3F,0xC0EB,0x3F,0x3F,0x3F,0x3F,0x3F,0xB7E2,0x3F,0xC0EC,0x3F,0xC0ED,0xD9FD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC0EE,0xC0EF,0xC0F0,0xBBB5,0xD9FA,0x3F,0xD9F9,0x3F,0x3F,0xC0F1,0xC0F2,0xC7B2,0xC0F3,0x3F,0xC0F4,0xC6B5,0xC0F5,0x3F,0xC0F6,0x3F,0xC0F7,0xC5B1,0xD9FB,0xC0F8,0x3F,0xC0F9,0xD9FC,0x3F,0xC9EF,0xC0FA,0xC7C5,0xBBA3,0x3F,0xC0F1,0x3F,0xCBD0,0xC0FB,0x3F,0x3F,0x3F,0x3F,0x3F,0xB3C9,0x3F,0xDAA5,0xD9FE,0xC0FC,0xC0FD,0xC0FE,0x3F,0xCDCA,0xDAA7,0x3F,0xC1A1,0xDAA3,0x3F,0xDAA4,0x3F,0xC1A2,0xC1A3,0xC1A4,0xC1A5,0xC1E0,0xC1A6,0x3F,0xC1A7,0xC1A8,0xDAA2,0x3F,0xD9BF,0xC1A9,0x3F,0xC1AA,0xDAA6,0x3F,0xDAA1,0x3F,0x3F,0x3F,0x3F,0x3F,0xDAAB,0xDAAC,0xC5A7,0xDAAE,0xC1AB,0xC1AC,0xBBA4,0xDAA9,0x3F,0xC1AD,0xC1AE,0x3F,0xB5BC,0xC1AF,0x3F,0xDAAF,0xC1B0,0xDAA8,0xDAB3,0x3F,0xDAB2,0xC1B1,0xDAB1,0xC1B2,0x3F,0x3F,0xDAB4,0xC1B3,0x3F,0xDAB6,0xBEF1,0xC1B4},
set64[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,1,3,0xFF,3,1,3,0xFF,1,1,3,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,3,0xFF,3,3,1,0xFF,1,3,3,0xFF,1,1,0xFF,3,3,0xFF,0xFF,0xFF,1,3,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,3,0xFF,3,3,3,3,0xFF,0xFF,0xFF,1,0xFF,3,3,3,3,0xFF,3,3,3,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,1,0xFF,1,0xFF,1,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,1,1,0xFF,1,0xFF,0xFF,3,3,1,3,0xFF,3,1,3,0xFF,3,0xFF,3,1,1,3,0xFF,3,1,0xFF,1,3,1,1,0xFF,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,1,3,3,3,0xFF,1,1,0xFF,3,1,0xFF,1,0xFF,3,3,3,3,1,3,0xFF,3,3,1,0xFF,1,3,0xFF,3,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,1,3,3,1,1,0xFF,3,3,0xFF,1,3,0xFF,1,3,1,1,0xFF,1,3,1,3,0xFF,0xFF,1,3,0xFF,1,1,3},
en65[] = {0xDAB5,0xC1B5,0x3F,0x3F,0xC1B6,0xDAB9,0x3F,0x3F,0xC1B7,0xC1B8,0xC1B9,0x3F,0x3F,0x3F,0x3F,0xC1BA,0x3F,0x3F,0x3F,0xC1BB,0xC1BC,0x3F,0xC1BD,0x3F,0xDAB7,0xC1BE,0x3F,0xC1BF,0xDAB8,0xD9F0,0xC1C0,0xC1C1,0x3F,0x3F,0xC1C2,0xDABB,0xDABA,0x3F,0xC1C3,0x3F,0x3F,0xC1C4,0xD9F8,0xDABC,0xDAB0,0x3F,0xC1C5,0xBBD9,0x3F,0xC1C6,0x3F,0x3F,0xDABD,0xDABE,0xDAC0,0xDABF,0xDAC1,0xB2FE,0xC1C7,0xB9B6,0xC1C8,0xC1C9,0xCAFC,0xC0AF,0x3F,0x3F,0x3F,0xC1CA,0x3F,0xB8CE,0x3F,0xC1CB,0xDAC3,0xC1CC,0x3F,0x3F,0x3F,0xDAC6,0x3F,0xC9D2,0xC1CD,0xB5DF,0xC1CE,0x3F,0xC1CF,0xDAC5,0xDAC4,0xC7D4,0xDAC7,0xB6B5,0x3F,0x3F,0x3F,0xDAC9,0xDAC8,0xC1D0,0xC1D1,0x3F,0xB4BA,0xBBB6,0x3F,0x3F,0xC6D8,0xC1D2,0x3F,0x3F,0x3F,0xC1D3,0xB7C9,0x3F,0x3F,0x3F,0xBFF4,0x3F,0xDACA,0x3F,0xC0B0,0xC5A8,0x3F,0xC9DF,0xDACB,0x3F,0xC1D4,0x3F,0x3F,0xC1D5,0x3F,0x3F,0x3F,0xC1D6,0xDACC,0xDACD,0x3F,0xC1D7,0x3F,0xCAB8,0xD5DD,0xC0C6,0xC1D8,0x3F,0xC9CC,0x3F,0xBAD8,0x3F,0xC8E5,0xC8C3,0xC1D9,0x3F,0x3F,0xC1DA,0x3F,0xC5CD,0xC1DB,0xCEC1,0x3F,0xDACF,0xBCD0,0xC1DC,0x3F,0xDAD0,0xC1DD,0xB0B6,0x3F,0xC1DE,0xB6D4,0xC0CD,0xC1DF,0xC9E0,0x3F,0x3F,0x3F,0xDAD1,0xBBC2,0xC3C7,0xC1E0,0xBBDB,0xBFB7,0x3F,0xC1E1,0xC1E2,0xC1E3,0x3F,0x3F,0xDAD2,0x3F,0xCAFD,0x3F,0x3F,0xB1F7,0xBBDC,0x3F,0xC1E4,0x3F,0xDAD5,0xC1E5,0xDAD3,0xDAD6,0xCEB9,0xDAD4,0x3F,0xC1E6,0xC1E7,0x3F,0xC0FB,0xDAD7,0x3F,0xC1E8,0xC2B2,0xC1E9,0x3F,0xDAD8,0x3F,0xC1EA,0x3F,0xC1EB,0xB4FA,0xC1EC,0xDADA,0x3F,0xDAD9,0x3F,0x3F,0x3F,0xC1ED,0xDADB,0xDADC,0xB4FB,0x3F,0x3F,0xC6FC,0xC3B6,0xB5EC,0xBBDD,0xC1E1,0x3F,0x3F,0xBDDC,0xB0B0,0x3F,0x3F,0xC1EE,0xDADD,0xC1EF,0x3F,0xC1F0,0xC1F1,0x3F,0x3F,0x3F,0xC1F2,0xB2A2,0xDAE1,0x3F,0x3F,0xC1F3,0xC1F4},
set65[] = {1,3,0xFF,0xFF,3,1,0xFF,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,3,0xFF,3,0xFF,1,3,0xFF,3,1,1,3,3,0xFF,0xFF,3,1,1,0xFF,3,0xFF,0xFF,3,1,1,1,0xFF,3,1,0xFF,3,0xFF,0xFF,1,1,1,1,1,1,3,1,3,3,1,1,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,3,1,3,0xFF,0xFF,0xFF,1,0xFF,1,3,1,3,0xFF,3,1,1,1,1,1,0xFF,0xFF,0xFF,1,1,3,3,0xFF,1,1,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,1,0xFF,1,1,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,1,0xFF,3,0xFF,1,1,1,3,0xFF,1,0xFF,1,0xFF,1,1,3,0xFF,0xFF,3,0xFF,1,3,1,0xFF,1,1,3,0xFF,1,3,1,0xFF,3,1,1,3,1,0xFF,0xFF,0xFF,1,1,1,3,1,1,0xFF,3,3,3,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,1,1,0xFF,3,0xFF,1,3,1,1,1,1,0xFF,3,3,0xFF,1,1,0xFF,3,1,3,0xFF,1,0xFF,3,0xFF,3,1,3,1,0xFF,1,0xFF,0xFF,0xFF,3,1,1,1,0xFF,0xFF,1,1,1,1,1,0xFF,0xFF,1,1,0xFF,0xFF,3,1,3,0xFF,3,3,0xFF,0xFF,0xFF,3,1,1,0xFF,0xFF,3,3},
en66[] = {0xC1F5,0x3F,0xB9B7,0xDAE0,0xC1F6,0x3F,0xBAAB,0xBEBA,0xC1F7,0xC1F8,0xDADF,0x3F,0xBEBB,0xC1F9,0xCCC0,0xBAAA,0x3F,0xC1FA,0xC1FB,0xB0D7,0xC0CE,0xC1FC,0xC1FD,0x3F,0x3F,0x3F,0x3F,0x3F,0xDAE6,0xC1FE,0xC2A1,0xC0B1,0xB1C7,0xC2A2,0xC2A3,0xC2A4,0xC2A5,0xBDD5,0xC2A6,0xCBE6,0xBAF2,0xC2A7,0xC2A8,0xC2A9,0xC2AA,0xBEBC,0xC2AB,0xC0A7,0xC2AC,0xC2AD,0x3F,0xC2AE,0xDAE5,0xDAE3,0xDAE4,0xC2B0,0x3F,0xC2AF,0x3F,0x3F,0xC3EB,0x3F,0x3F,0xDBA6,0xC2B1,0xDAEA,0xBBFE,0xB9B8,0xDAE8,0xC2B2,0xC2B3,0x3F,0x3F,0xDAE9,0xC2B4,0xBFB8,0xC2B5,0x3F,0xC2B7,0xDAE7,0x3F,0xC2B6,0xBBAF,0x3F,0x3F,0x3F,0x3F,0xC2B8,0xC2B9,0xC2BA,0x3F,0xC2BB,0xC2BC,0xDAEC,0xDAEB,0xDAF0,0xC2BD,0xC2BE,0xDAF1,0x3F,0xDAED,0x3F,0xB3A2,0xDAEE,0xDAEF,0xC8D5,0xC2C0,0xC2C1,0xC2C2,0x3F,0xC9E1,0xB7CA,0xDAF2,0x3F,0x3F,0xC2C4,0xC0B2,0xC2C5,0xBEBD,0xC2C7,0xC2C8,0xC2C9,0xC3D2,0xC2CA,0xC2CC,0x3F,0xC2C3,0xC2C6,0xC2CB,0xB6C7,0x3F,0xDAF3,0xDAF7,0x3F,0x3F,0xB2CB,0xDAF4,0xDAF6,0x3F,0xC2CD,0xC2CE,0xC2CF,0xDAF5,0x3F,0xC2D0,0xBDEB,0xC2D1,0x3F,0x3F,0x3F,0xC3C8,0xB0C5,0xDAF8,0xC2D2,0xC2D3,0xC2D4,0xC2D5,0xDAF9,0x3F,0xC2D6,0xC2D7,0x3F,0xC4AA,0x3F,0xC2D8,0x3F,0xCEF1,0x3F,0x3F,0x3F,0x3F,0xBBC3,0x3F,0xC2D9,0xCAEB,0x3F,0x3F,0xC2DA,0xC2DB,0x3F,0xCBBD,0xC2DC,0x3F,0x3F,0xDBA2,0xDAFB,0x3F,0xC2DD,0xDAFE,0x3F,0xDAFD,0xC2DE,0xC2DF,0xDAFA,0xC2E0,0xC2E1,0xDBA1,0x3F,0x3F,0xC6DE,0xC2E2,0xDAFC,0x3F,0x3F,0xC2E3,0x3F,0xC2E4,0xC2E5,0x3F,0x3F,0x3F,0x3F,0xC2E6,0x3F,0xDBA3,0x3F,0x3F,0xBDEC,0xDBA4,0xC2E7,0xCDCB,0xC7F8,0x3F,0xC2E8,0xDBA5,0x3F,0x3F,0x3F,0x3F,0x3F,0xDBA7,0x3F,0xC2E9,0xDBA8,0x3F,0xC2EA,0xC2EB,0x3F,0xC2EC,0x3F,0xDBA9,0x3F,0xB6CA,0xB1C8,0xB9B9,0xDBAA,0x3F,0xDBAB,0xBDF1,0xC1E2,0xC2ED,0xC2BF,0xD2D8,0xC1BE,0xC1BD,0xC2D8},
set66[] = {3,0xFF,1,1,3,0xFF,1,1,3,3,1,0xFF,1,3,1,1,0xFF,3,3,1,1,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,3,3,3,3,1,3,1,1,3,3,3,3,1,3,1,3,3,0xFF,3,1,1,1,3,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,1,3,1,1,1,1,3,3,0xFF,0xFF,1,3,1,3,0xFF,3,1,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,3,3,1,1,1,3,3,1,0xFF,1,0xFF,1,1,1,1,3,3,3,0xFF,1,1,1,0xFF,0xFF,3,1,3,1,3,3,3,1,3,3,0xFF,3,3,3,1,0xFF,1,1,0xFF,0xFF,1,1,1,0xFF,3,3,3,1,0xFF,3,1,3,0xFF,0xFF,0xFF,1,1,1,3,3,3,3,1,0xFF,3,3,0xFF,1,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,0xFF,3,3,0xFF,1,3,0xFF,0xFF,1,1,0xFF,3,1,0xFF,1,3,3,1,3,3,1,0xFF,0xFF,1,3,1,0xFF,0xFF,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,1,1,3,1,1,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,3,3,0xFF,3,0xFF,1,0xFF,1,1,1,1,0xFF,1,1,1,3,3,1,1,1,1},
en67[] = {0xBAC7,0x3F,0x3F,0xD0F2,0x3F,0xC2EE,0x3F,0xC2EF,0xB7EE,0xCDAD,0x3F,0xCAFE,0x3F,0xC9FE,0xC2F0,0xDBAC,0x3F,0x3F,0x3F,0xC2F1,0xBAF3,0xC4BF,0xDBAD,0xCFAF,0x3F,0xC2F2,0x3F,0xCBBE,0xC2F3,0xC4AB,0xDBAE,0xB4FC,0xC2F4,0x3F,0xC2F5,0x3F,0x3F,0x3F,0xDBAF,0xDBB0,0xCCDA,0x3F,0xCCA4,0xCBF6,0xCBDC,0xBBA5,0xDBB2,0x3F,0x3F,0xBCEB,0x3F,0xC2F6,0xCBD1,0x3F,0xDBB4,0xDBB7,0xDBB6,0x3F,0xB4F9,0x3F,0x3F,0xB5E0,0xC2F7,0xDBB3,0x3F,0xDBB5,0x3F,0x3F,0x3F,0xC2F8,0xDBB8,0xC2F9,0xC2FA,0xBFF9,0x3F,0x3F,0xC2FB,0x3F,0xCDFB,0xB0C9,0xBAE0,0xC2BC,0x3F,0xBCDD,0xC2FC,0xC2FD,0xBEF3,0x3F,0x3F,0xDBBB,0x3F,0x3F,0xC5CE,0xC2FE,0xDBB9,0xC2AB,0xDBBA,0xBEF2,0xCCDD,0xDBBC,0xDBBD,0xCDE8,0xC3A1,0x3F,0x3F,0x3F,0xDBC2,0x3F,0xC3A2,0xB9BA,0xC3A3,0xC7D5,0xDBBF,0xC5EC,0xDADE,0xDAE2,0xC3A4,0xB5CF,0xC3A5,0xC7C7,0x3F,0x3F,0x3F,0xC3A6,0xDBC1,0x3F,0xBEBE,0xC8C4,0x3F,0xC3A7,0x3F,0x3F,0xC3A8,0xDBC7,0x3F,0xC8FA,0x3F,0xDBBE,0x3F,0xDBC4,0xDBC3,0x3F,0xC3A9,0xC3AA,0xC0CF,0xC3AB,0x3F,0xC3AC,0x3F,0xCBED,0xC3AD,0xCED3,0xC3AE,0xC3AF,0xCBE7,0xC3B0,0xB2CC,0xBBDE,0x3F,0x3F,0xCFC8,0xDBC6,0xBFF5,0x3F,0x3F,0x3F,0xDBC5,0x3F,0x3F,0xDBC0,0x3F,0x3F,0x3F,0x3F,0x3F,0xB8CF,0xC3B1,0xC3B2,0xC3B3,0xDBCC,0xDBCA,0xC3B4,0xB2CD,0xDBC8,0xDBCE,0xDBD4,0x3F,0xC3B5,0xC3B6,0xC3B7,0x3F,0x3F,0xC3B9,0xC2C8,0xC3BA,0xC3BB,0xCAC1,0xC3BC,0xDBD6,0x3F,0xC3BD,0xC3BE,0xC9A2,0x3F,0x3F,0x3F,0xDBD5,0xC7F0,0xCBBF,0xB4BB,0xC3BF,0xC0F7,0xBDC0,0x3F,0x3F,0xC3C0,0xC4D3,0xC3C1,0xCDAE,0x3F,0xC3C2,0xDBD1,0xDBD0,0x3F,0x3F,0xC3C3,0xDBD2,0x3F,0xDBCF,0x3F,0xC3C4,0xDBD7,0x3F,0xDBCD,0x3F,0x3F,0xDBCB,0x3F,0xDBD3,0xDBC9,0xC3C5,0xC3EC,0xC3C6,0xCCF8,0xBCC6,0xBAF4,0xC3C7,0xC3C8,0x3F,0xC3B8,0x3F,0xBABA,0x3F,0x3F,0xCBEF,0xB3C1},
set67[] = {1,0xFF,0xFF,1,0xFF,3,0xFF,3,1,1,0xFF,1,0xFF,1,3,1,0xFF,0xFF,0xFF,3,1,1,1,1,0xFF,3,0xFF,1,3,1,1,1,3,0xFF,3,0xFF,0xFF,0xFF,1,1,1,0xFF,1,1,1,1,1,0xFF,0xFF,1,0xFF,3,1,0xFF,1,1,1,0xFF,1,0xFF,0xFF,1,3,1,0xFF,1,0xFF,0xFF,0xFF,3,1,3,3,1,0xFF,0xFF,3,0xFF,1,1,1,1,0xFF,1,3,3,1,0xFF,0xFF,1,0xFF,0xFF,1,3,1,1,1,1,1,1,1,1,3,0xFF,0xFF,0xFF,1,0xFF,3,1,3,1,1,1,1,1,3,1,3,1,0xFF,0xFF,0xFF,3,1,0xFF,1,1,0xFF,3,0xFF,0xFF,3,1,0xFF,1,0xFF,1,0xFF,1,1,0xFF,3,3,1,3,0xFF,3,0xFF,1,3,1,3,3,1,3,1,1,0xFF,0xFF,1,1,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,3,1,1,3,1,1,1,1,0xFF,3,3,3,0xFF,0xFF,3,1,3,3,1,3,1,0xFF,3,3,1,0xFF,0xFF,0xFF,1,1,1,1,3,1,1,0xFF,0xFF,3,1,3,1,0xFF,3,1,1,0xFF,0xFF,3,1,0xFF,1,0xFF,3,1,0xFF,1,0xFF,0xFF,1,0xFF,1,1,3,1,3,1,1,1,3,3,0xFF,3,0xFF,1,0xFF,0xFF,1,1},
en68[] = {0x3F,0x3F,0xC4CE,0xC6CA,0xB1C9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC0F2,0xC3CA,0x3F,0xC0B4,0xB7AA,0x3F,0xC3CB,0x3F,0x3F,0x3F,0xC3CC,0xDBD9,0xC3CD,0x3F,0xB9BB,0xB3FC,0x3F,0x3F,0x3F,0x3F,0xC3CF,0xC3CE,0xDBDB,0xB3F4,0xDBE1,0xC3D0,0xC3D1,0x3F,0xC3D2,0xC3D3,0xC3D4,0xDBDE,0xC3D5,0xC0F3,0x3F,0x3F,0x3F,0xB3CB,0xBAAC,0x3F,0xC3D6,0xB3CA,0xBACF,0x3F,0xC3D7,0xDBDC,0xB7E5,0xB7CB,0xC5ED,0xC3D8,0xC3D9,0xDBDA,0x3F,0xB0C6,0x3F,0xC3DA,0x3F,0xC3DB,0xDBDD,0xDBDF,0x3F,0xB6CD,0xB7AC,0xC3C9,0xB4BC,0xB5CB,0xC3DC,0x3F,0xC3DD,0xC3DE,0xDBE2,0x3F,0xC3DF,0xBAF9,0xCBF1,0x3F,0xBBB7,0x3F,0x3F,0x3F,0xDBE3,0x3F,0x3F,0x3F,0xC9B0,0x3F,0x3F,0x3F,0xC3E0,0x3F,0x3F,0xC3E1,0xC3E2,0xC3E3,0xC3E4,0xC3E5,0x3F,0xDBEF,0xC3E6,0xB2B3,0xDBE4,0x3F,0xC3E7,0xC3E8,0xC3E9,0xC3EA,0x3F,0xDBF5,0xDBE5,0x3F,0xCEC2,0xC3EB,0xDBEC,0xC3EC,0xC7DF,0xC3ED,0x3F,0xC3EE,0x3F,0x3F,0x3F,0x3F,0xDBF4,0x3F,0xDBE7,0x3F,0x3F,0x3F,0xB0B4,0xDBE9,0x3F,0xC3EF,0xB9BC,0xC3F0,0x3F,0xC3F1,0xDBEB,0xC3F2,0xDBEA,0x3F,0xDBE6,0xDBF1,0xC3F3,0xBEBF,0xC3F4,0x3F,0xC3F5,0xD4ED,0xB8E8,0xCDFC,0xC3F6,0xC3F7,0x3F,0x3F,0xDBE8,0xC3F8,0xC4F4,0xB3A3,0xBAAD,0xC3F9,0xDBE0,0x3F,0xDBF0,0xB3E1,0x3F,0x3F,0xDBEE,0xDBF2,0xC3FA,0xC5EE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB4FE,0xC3FB,0xDCB2,0x3F,0xC3FC,0xCCC9,0xDBF7,0xB4FD,0xC3FD,0xDBFE,0x3F,0xC3FE,0xC4A1,0xC4A2,0xCBC0,0xC4A3,0xDCA1,0xDCA3,0xC4A4,0xDCA7,0xDBF9,0xC4A5,0xC3AA,0x3F,0xC4A6,0xC4A7,0x3F,0xC5EF,0xDCAB,0xDBFC,0x3F,0xDCA8,0x3F,0xC4A8,0x3F,0xDCA2,0xC4A9,0x3F,0xC4AA,0xC4AB,0xC4AC,0xC4AD,0xBFB9,0xDCAC,0xC4AE,0xC4AF,0xC0B3,0x3F,0x3F,0xC4B0,0xC4B1,0x3F,0x3F,0xDCAA,0xB4BD,0xC4B2,0xC4B3,0xC4B4,0x3F,0x3F},
set68[] = {0xFF,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,1,0xFF,3,0xFF,0xFF,0xFF,3,1,3,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,3,3,1,1,1,3,3,0xFF,3,3,3,1,3,1,0xFF,0xFF,0xFF,1,1,0xFF,3,1,1,0xFF,3,1,1,1,1,3,3,1,0xFF,1,0xFF,3,0xFF,3,1,1,0xFF,1,1,3,1,1,3,0xFF,3,3,1,0xFF,3,1,1,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,3,3,3,0xFF,1,3,1,1,0xFF,3,3,3,3,0xFF,1,1,0xFF,1,3,1,3,1,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,1,0xFF,3,1,3,0xFF,3,1,3,1,0xFF,1,1,3,1,3,0xFF,3,1,1,1,3,3,0xFF,0xFF,1,3,1,1,1,3,1,0xFF,1,1,0xFF,0xFF,1,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,3,1,1,1,3,1,0xFF,3,3,3,1,3,1,1,3,1,1,3,1,0xFF,3,3,0xFF,1,1,1,0xFF,1,0xFF,3,0xFF,1,3,0xFF,3,3,3,3,1,1,3,3,1,0xFF,0xFF,3,3,0xFF,0xFF,1,1,3,3,3,0xFF,0xFF},
en69[] = {0xCFD0,0xDBF6,0x3F,0x3F,0xDCA6,0xB0D8,0xC4B5,0x3F,0xDBF8,0xC4B6,0xC4B7,0xCCBA,0xDBFD,0xBFA2,0xC4C7,0xDBF3,0xC4B8,0xC4B9,0xDCA5,0xC4BA,0x3F,0x3F,0xC4BB,0xC4BC,0x3F,0xBFFA,0xDCAF,0xB3F1,0xB8A1,0x3F,0x3F,0x3F,0x3F,0xDCB1,0xDBFA,0xDCB0,0x3F,0xDCA9,0xDBFB,0x3F,0xDCAD,0x3F,0xDCAE,0x3F,0x3F,0x3F,0x3F,0x3F,0xDCBF,0xC4BD,0x3F,0xC4BE,0xC6CE,0xC4BF,0xDCA4,0x3F,0xC4C0,0xDCBB,0x3F,0xC4C1,0x3F,0xDCBD,0x3F,0xC4D8,0x3F,0x3F,0xC4C2,0x3F,0x3F,0xC4C3,0x3F,0x3F,0x3F,0xC4C4,0xCDCC,0x3F,0x3F,0x3F,0xC4C5,0x3F,0x3F,0x3F,0x3F,0xC9F6,0xDCB8,0xC2CA,0x3F,0xC4C6,0x3F,0xDCBE,0xC1BF,0xC4C7,0xDCB5,0xDCC2,0xDCC1,0x3F,0xC6EF,0xDCC0,0xC6EA,0xC4C8,0xC4C9,0xC4CA,0xC4CB,0x3F,0xC4CC,0xC4CD,0xDCC4,0xDCB7,0xC4CE,0xB6C8,0xDCBA,0xBDDD,0xC4CF,0xC4D0,0xC4D1,0xC7E0,0xDCBC,0xB6CB,0x3F,0xDCB4,0xDCB6,0xDCB3,0xC4D2,0xC4D3,0xCFB0,0xB3DA,0xDCB9,0xC4D4,0xC4D5,0xDCC3,0xB3B5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBAE7,0x3F,0x3F,0xC4D6,0xB1DD,0x3F,0x3F,0xDCD4,0xC4D7,0x3F,0xCFB1,0xDCD7,0xC4D8,0x3F,0xC4D9,0x3F,0x3F,0xBFBA,0xDCD6,0x3F,0x3F,0x3F,0xDCD5,0xC4DA,0x3F,0x3F,0x3F,0xC4DB,0xC4DC,0xDCD2,0xC4DD,0x3F,0x3F,0xC4DE,0x3F,0xC4DF,0xDCC6,0xC4E0,0x3F,0xDCE3,0xDCC5,0x3F,0xDCD8,0x3F,0x3F,0xC4E1,0xC4E2,0x3F,0xC4E3,0xDCD0,0xC4E4,0x3F,0xDCCB,0xDCC8,0x3F,0xDCC9,0x3F,0xDCD1,0x3F,0xC4E5,0x3F,0xF4A2,0xC4E6,0x3F,0xDCCE,0xB9BD,0xC4C8,0xC1E4,0xDCCC,0x3F,0xDCC7,0xC4E7,0x3F,0xDCCA,0x3F,0x3F,0xC4E8,0xC4E9,0xCDCD,0xCBEA,0x3F,0x3F,0x3F,0xDCCF,0xDCD9,0x3F,0x3F,0x3F,0xC4EA,0x3F,0x3F,0xC4EB,0x3F,0xDCE1,0xDCDA,0x3F,0x3F,0xDCE7,0x3F,0xDCE5,0xC4EC,0xC4ED,0x3F,0xC4EE,0xDCE0,0xC4EF,0x3F,0xC4F0,0x3F,0x3F,0x3F,0xDCDF,0x3F,0xC4D0,0x3F,0xC1E5,0xC4F1,0xDCDD},
set69[] = {1,1,0xFF,0xFF,1,1,3,0xFF,1,3,3,1,1,1,1,1,3,3,1,3,0xFF,0xFF,3,3,0xFF,1,1,1,1,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,1,1,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,3,1,3,1,0xFF,3,1,0xFF,3,0xFF,1,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,3,0xFF,1,1,3,1,1,1,0xFF,1,1,1,3,3,3,3,0xFF,3,3,1,1,3,1,1,1,3,3,3,1,1,1,0xFF,1,1,1,3,3,1,1,1,3,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,0xFF,1,3,0xFF,1,1,3,0xFF,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,3,1,3,0xFF,0xFF,3,0xFF,3,1,3,0xFF,1,1,0xFF,1,0xFF,0xFF,3,3,0xFF,3,1,3,0xFF,1,1,0xFF,1,0xFF,1,0xFF,3,0xFF,1,3,0xFF,1,1,1,1,1,0xFF,1,3,0xFF,1,0xFF,0xFF,3,3,1,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,1,1,0xFF,0xFF,1,0xFF,1,3,3,0xFF,3,1,3,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,3,1},
en6A[] = {0xC4F2,0xC4F3,0xDCDB,0xC4F4,0x3F,0xDCE2,0x3F,0x3F,0x3F,0x3F,0xDCE8,0xC8F5,0xDCEE,0x3F,0x3F,0xC4F5,0x3F,0xC4F6,0xDCE9,0xDCEC,0xDCE6,0xC4F7,0x3F,0xC3F4,0x3F,0xC9B8,0xC4F8,0xDCDC,0x3F,0xC4F9,0xDCE4,0xBEC0,0xC4FA,0xCCCF,0xDCF8,0xDCEB,0xC4FB,0x3F,0x3F,0x3F,0xC4FC,0xB8A2,0xB2A3,0xB3DF,0x3F,0x3F,0xDCD3,0x3F,0xC4FD,0x3F,0xC4FE,0x3F,0xC5A1,0xBEC1,0xDCF0,0xC5A2,0xDCF7,0xBCF9,0xB3F2,0xC5A3,0x3F,0xC3AE,0xC5A4,0xC5A5,0x3F,0x3F,0x3F,0x3F,0xDCED,0xC5A6,0xC5A7,0xDCF2,0xDCF6,0xC5A8,0xC5A9,0xB6B6,0x3F,0x3F,0xC5AA,0x3F,0xC5AB,0xC5AC,0xC5AD,0x3F,0x3F,0xC5AE,0xC5AF,0x3F,0xB5CC,0xDCF4,0x3F,0xC5B0,0x3F,0x3F,0x3F,0xB5A1,0x3F,0xC6CB,0xDCF3,0x3F,0xC5B1,0x3F,0xDCF5,0xC5B2,0x3F,0x3F,0xC5B3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC5B4,0xDCEF,0xC5B5,0x3F,0x3F,0x3F,0x3F,0xDCF1,0x3F,0x3F,0x3F,0x3F,0x3F,0xC5B6,0xB3E0,0xC3C9,0xC5B7,0x3F,0xC5B8,0xDCFC,0x3F,0xC5B9,0xC5BA,0x3F,0xC5BB,0x3F,0xC5BC,0x3F,0xDCFA,0xB8E9,0x3F,0xDCF9,0xC5BD,0x3F,0x3F,0x3F,0x3F,0x3F,0xDDA1,0x3F,0x3F,0x3F,0xC5BE,0xDBD8,0xC5BF,0xC5C0,0xC5C1,0xDCFB,0x3F,0xDCFD,0xDCFE,0x3F,0xC5C2,0x3F,0x3F,0x3F,0x3F,0xDDAC,0xC5C3,0xDDA8,0x3F,0xDBED,0xC5C4,0xC5C5,0xC5C6,0x3F,0xDDA7,0xC5C7,0x3F,0x3F,0x3F,0xDDA6,0x3F,0x3F,0xDDA3,0x3F,0xC5C8,0xC5C9,0xC5CA,0x3F,0xDCEA,0xDDA5,0xDDA4,0x3F,0x3F,0xC5CB,0x3F,0xC5CD,0xC5CC,0x3F,0x3F,0xC5CE,0x3F,0x3F,0x3F,0xC5CF,0xDDAA,0x3F,0xCFA6,0xC5D0,0xC5D1,0xC5D2,0x3F,0x3F,0x3F,0xDDAD,0xB6FB,0xC5D3,0xC5D4,0xDDA9,0xDDAB,0x3F,0x3F,0x3F,0x3F,0xC5D5,0x3F,0x3F,0xC5D6,0xC8A7,0x3F,0xDDAE,0x3F,0xC5D7,0x3F,0x3F,0x3F,0xC5D8,0xC5D9,0xC5DA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDDB2,0xDDAF,0xC5DB,0xC5DC,0x3F,0x3F},
set6A[] = {3,3,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,3,0xFF,3,1,1,1,3,0xFF,1,0xFF,1,3,1,0xFF,3,1,1,3,1,1,1,3,0xFF,0xFF,0xFF,3,1,1,1,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,3,1,1,3,1,1,1,3,0xFF,1,3,3,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,3,3,1,0xFF,0xFF,3,0xFF,3,3,3,0xFF,0xFF,3,3,0xFF,1,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,1,0xFF,3,0xFF,1,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,3,0xFF,3,1,0xFF,3,3,0xFF,3,0xFF,3,0xFF,1,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,1,3,3,3,1,0xFF,1,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,1,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,3,3,3,0xFF,1,1,1,0xFF,0xFF,3,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,0xFF,1,3,3,3,0xFF,0xFF,0xFF,1,1,3,3,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,3,0xFF,0xFF},
en6B[] = {0x3F,0x3F,0xC5DD,0xC5DE,0xCDF3,0xDDB0,0xC5DF,0xC5E0,0x3F,0xC5E1,0xDCDE,0x3F,0x3F,0x3F,0x3F,0xC5E2,0xC5E3,0xC5E4,0xDDB3,0x3F,0x3F,0x3F,0xDDB4,0xC5E5,0x3F,0x3F,0x3F,0xC5E6,0x3F,0xB1B5,0xC5E7,0xDDB6,0xB7E7,0xBCA1,0x3F,0xB6D5,0xC5E8,0x3F,0x3F,0xB2A4,0xC5E9,0x3F,0x3F,0xC5EA,0xC5EB,0x3F,0x3F,0xC5EC,0x3F,0x3F,0xCDDF,0x3F,0x3F,0xC5ED,0xC5EE,0xDDB8,0xDDB7,0xDDBA,0xB5BD,0xC5EF,0x3F,0xB6D6,0xB4BE,0xC5F0,0x3F,0x3F,0x3F,0xDDBD,0x3F,0x3F,0xC5F1,0xDDBC,0x3F,0xDDBE,0xC5F2,0x3F,0xB2CE,0xC5F3,0xC3B7,0x3F,0xDDBF,0x3F,0xC5F4,0xB4BF,0xDDC1,0x3F,0xC5F5,0x3F,0xC5F6,0xDDC0,0x3F,0xDDC2,0x3F,0xC5F7,0x3F,0xDDC3,0xC5F8,0xDDC4,0xBBDF,0xC0B5,0xBAA1,0x3F,0xC9F0,0xC5F9,0x3F,0xCAE2,0xCFC4,0xC5FA,0x3F,0x3F,0xC5FB,0xBBF5,0xC5FC,0x3F,0x3F,0xBAD0,0xCEF2,0xC5FD,0x3F,0x3F,0xDDC5,0xDDC6,0x3F,0xBBE0,0x3F,0xC5FE,0xC6A1,0xDDC7,0xDDC8,0x3F,0xC6A2,0xDDCA,0xDDC9,0xC6A3,0xCBD8,0x3F,0x3F,0xBDDE,0xBCEC,0xBBC4,0x3F,0xDDCB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDDCD,0xBFA3,0xC6A4,0xDDCC,0x3F,0x3F,0xC6A5,0x3F,0x3F,0xDDCE,0xC6A6,0xC6A7,0x3F,0xC6A8,0xC6A9,0xDDCF,0x3F,0x3F,0x3F,0xC6AA,0xC6AB,0xDDD0,0xDDD1,0xC6AC,0xC6AD,0xC6AE,0xDDD2,0xC6AF,0xDDD4,0xDDD3,0xDDD5,0xB2A5,0xC3CA,0x3F,0xDDD6,0xC6B0,0xC6B1,0xBBA6,0xB3CC,0xDDD7,0xC6B2,0xC6B3,0xC5C2,0xD4CC,0x3F,0x3F,0xC6B4,0xC6B5,0xB5A3,0xDDD8,0x3F,0x3F,0xC6B6,0x3F,0xDDD9,0xC6B7,0xCAEC,0xCBE8,0x3F,0x3F,0x3F,0xC6C7,0xDDDA,0xC8E6,0x3F,0xC6B8,0x3F,0xC8FB,0x3F,0xC6B9,0xCCD3,0x3F,0x3F,0x3F,0xDDDB,0x3F,0xC6BA,0x3F,0xC6BB,0x3F,0x3F,0xC6BC,0xC6BD,0x3F,0x3F,0x3F,0xDDDD,0xDDDC,0x3F,0xC6BE,0xDDDF,0x3F,0xC6BF,0x3F,0xDDDE,0x3F,0x3F,0x3F,0xC6C0,0x3F,0xC6C1,0x3F,0x3F,0x3F,0x3F,0x3F,0xC6C2},
set6B[] = {0xFF,0xFF,3,3,1,1,3,3,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,3,3,1,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,1,3,1,1,1,0xFF,1,3,0xFF,0xFF,1,3,0xFF,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,3,3,1,1,1,1,3,0xFF,1,1,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,1,3,0xFF,1,3,1,0xFF,1,0xFF,3,1,1,0xFF,3,0xFF,3,1,0xFF,1,0xFF,3,0xFF,1,3,1,1,1,1,0xFF,1,3,0xFF,1,1,3,0xFF,0xFF,3,1,3,0xFF,0xFF,1,1,3,0xFF,0xFF,1,1,0xFF,1,0xFF,3,3,1,1,0xFF,3,1,1,3,1,0xFF,0xFF,1,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,1,0xFF,0xFF,3,0xFF,0xFF,1,3,3,0xFF,3,3,1,0xFF,0xFF,0xFF,3,3,1,1,3,3,3,1,3,1,1,1,1,1,0xFF,1,3,3,1,1,1,3,3,1,1,0xFF,0xFF,3,3,1,1,0xFF,0xFF,3,0xFF,1,3,1,1,0xFF,0xFF,0xFF,1,1,1,0xFF,3,0xFF,1,0xFF,3,1,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,1,1,0xFF,3,1,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,3},
en6C[] = {0x3F,0x3F,0xC6C3,0x3F,0xC6C4,0xC6C5,0x3F,0x3F,0xDDE1,0xC6C6,0x3F,0x3F,0x3F,0xC6C7,0xC6C8,0xBBE1,0xC6C9,0xCCB1,0xC6CA,0xDDE2,0xDDE3,0x3F,0x3F,0xB5A4,0x3F,0xC6CB,0x3F,0xDDE4,0x3F,0x3F,0x3F,0xC6CC,0x3F,0x3F,0x3F,0xDDE6,0xDDE5,0x3F,0xC6CD,0xC6CE,0xC6CF,0x3F,0x3F,0x3F,0xC6D0,0x3F,0xC6D1,0x3F,0x3F,0x3F,0x3F,0xC6D2,0xBFE5,0xC6D3,0xC6D4,0xC9B9,0xB1CA,0x3F,0xC6D5,0xC6D6,0x3F,0x3F,0xC8C5,0xC6D7,0xC4F5,0xBDC1,0xB5E1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC6D8,0xC6D9,0x3F,0xC6DA,0xC8C6,0xC6DB,0xBCAE,0x3F,0xC6DC,0x3F,0xC6DD,0xDDE8,0x3F,0xB4C0,0x3F,0xC6DE,0xB1F8,0xC6DF,0xC6E0,0xC6F2,0xDDE7,0xB9BE,0xC3D3,0x3F,0xDDE9,0x3F,0x3F,0x3F,0x3F,0xC7B6,0xDDF1,0x3F,0xDDEA,0xC6E1,0x3F,0xC6E2,0x3F,0xC6E3,0xC2C1,0x3F,0xB5E2,0xDDF2,0xC6E4,0x3F,0xC6E5,0x3F,0xC6E6,0xC6E7,0xB7E8,0xC6E8,0x3F,0xB5A5,0xDDF0,0x3F,0x3F,0xDDEE,0xDDEB,0xCDE0,0x3F,0xC6E9,0xC6EA,0xC6EB,0xC4C0,0xC6EC,0x3F,0x3F,0xC6D9,0xDDEC,0x3F,0x3F,0xDDF4,0x3F,0xDDF3,0xB7A3,0xC6ED,0xC6EE,0xB2AD,0xC6EF,0xC6F0,0xBABB,0xDDED,0xDDEF,0xC6F1,0x3F,0x3F,0xC6F2,0x3F,0xCBD7,0xC2F4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCBF7,0x3F,0x3F,0xDDFC,0x3F,0xC6F3,0xDDFD,0xC6F4,0xB2CF,0xC6F5,0x3F,0x3F,0x3F,0xCAA8,0xCCFD,0xDEA1,0xBCA3,0xBEC2,0xDDF8,0xDDFE,0xB1E8,0x3F,0xB6B7,0xC6F6,0x3F,0xDDF5,0xDDFA,0xC6F7,0x3F,0x3F,0xC0F4,0xC7F1,0x3F,0xC8E7,0xC6F8,0x3F,0xC6F9,0xC6FA,0xC6FB,0xC6FC,0xDDF7,0xC6FD,0xCBA1,0xC6FE,0xDDF9,0x3F,0xDEA4,0xC7A1,0xDEA2,0xC7A2,0xDDFB,0x3F,0x3F,0xC7A3,0xCBA2,0xC7C8,0xB5E3,0x3F,0xC5A5,0x3F,0xC7A4,0xC3ED,0xC7A5,0xDEA5,0xC7A6,0xC7A7,0x3F,0xC7A8,0xDEA3,0xC2D9,0xDDF6,0xC7A9,0xB1CB,0xC7AA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set6C[] = {0xFF,0xFF,3,0xFF,3,3,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,3,1,3,1,3,1,1,0xFF,0xFF,1,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,1,0xFF,3,3,3,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,1,3,3,1,1,0xFF,3,3,0xFF,0xFF,1,3,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,1,3,1,0xFF,3,0xFF,3,1,0xFF,1,0xFF,3,1,3,3,1,1,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,1,3,0xFF,3,0xFF,3,1,0xFF,1,1,3,0xFF,3,0xFF,3,3,1,3,0xFF,1,1,0xFF,0xFF,1,1,1,0xFF,3,3,3,1,3,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,1,1,3,3,1,3,3,1,1,1,3,0xFF,0xFF,3,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,3,1,3,1,3,0xFF,0xFF,0xFF,1,1,1,1,1,1,1,1,0xFF,1,3,0xFF,1,1,3,0xFF,0xFF,1,1,0xFF,1,3,0xFF,3,3,3,3,1,3,1,3,1,0xFF,1,3,1,3,1,0xFF,0xFF,3,1,1,1,0xFF,1,0xFF,3,1,3,1,3,3,0xFF,3,1,1,1,3,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en6D[] = {0x3F,0x3F,0x3F,0x3F,0xC7AB,0x3F,0x3F,0xC7AC,0x3F,0x3F,0xC7AD,0xCDCE,0xDEB0,0x3F,0xC7AE,0xC7AF,0x3F,0xC7B0,0xDEAF,0xC7B1,0x3F,0x3F,0x3F,0xC0F6,0x3F,0xDEAC,0xC7B2,0xCDEC,0x3F,0x3F,0xC6B6,0xDEA6,0x3F,0x3F,0x3F,0x3F,0x3F,0xC4C5,0xC7B3,0xC7B4,0xC7B5,0xB1CC,0xB9BF,0xDEA9,0x3F,0x3F,0xC7B7,0xC7B8,0x3F,0xC7B9,0xBDA7,0xDEAE,0x3F,0xDEAD,0xDEA8,0x3F,0xDEAB,0xC7BA,0x3F,0xB3E8,0xC7BB,0xDEAA,0xC7C9,0xC7BC,0x3F,0xCEAE,0x3F,0x3F,0xBEF4,0xC0F5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7BD,0x3F,0xDEB6,0xDEB4,0x3F,0xC9CD,0x3F,0xC7BE,0xC7BF,0x3F,0xC7C0,0x3F,0xDEB1,0xDEB3,0xC7C1,0xB1BA,0xC7C2,0x3F,0xB9C0,0xCFB2,0x3F,0xB3BD,0x3F,0xC9E2,0xC7C3,0xC7C4,0x3F,0x3F,0x3F,0xCDE1,0x3F,0x3F,0xB3A4,0xBFBB,0xDEB5,0x3F,0x3F,0xC7C5,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7C6,0x3F,0x3F,0xDEBA,0x3F,0xC7C7,0xBEC3,0x3F,0x3F,0x3F,0xCDB0,0x3F,0xDEB7,0x3F,0x3F,0xC7C8,0xC7C9,0xDEB2,0xC7CA,0xDEB8,0xC7CB,0xC7CC,0xC7CD,0xCEDE,0x3F,0xC5F3,0xC6C2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7CE,0x3F,0xC7CF,0x3F,0x3F,0xB3B6,0x3F,0x3F,0xB1D5,0x3F,0xC7D0,0xDEBE,0x3F,0xC7D1,0xDEC1,0xC7D2,0x3F,0x3F,0xCEC3,0xC7D3,0x3F,0xC7D4,0xCDE4,0x3F,0x3F,0x3F,0xC7D5,0xDEC8,0xDEC2,0xDEBF,0xC7D6,0x3F,0xC7D7,0xCED4,0xDEC5,0x3F,0xC7D8,0xC7D9,0x3F,0xBDCA,0xDEC7,0x3F,0x3F,0xDECC,0xC7DA,0x3F,0xC5F1,0xDECA,0x3F,0xC7DB,0x3F,0xC7DC,0xDEC4,0xC7DD,0xC7DE,0xC3B8,0xC7DF,0x3F,0xDECB,0xC7E0,0xDEC0,0x3F,0xDEC6,0xC7E1,0xDECD,0xB0FC,0xDEC3,0x3F,0xDECE,0xC7E2,0xC7E3,0xBFBC,0x3F,0xBDDF,0xC7E4,0xCAA5,0xC7E5,0xBAAE,0x3F,0xDEBB,0xDEC9,0xC5BA,0xC7E6,0x3F,0x3F,0x3F},
set6D[] = {0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,3,1,1,0xFF,3,3,0xFF,3,1,3,0xFF,0xFF,0xFF,1,0xFF,1,3,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,3,1,1,1,0xFF,0xFF,3,3,0xFF,3,1,1,0xFF,1,1,0xFF,1,3,0xFF,1,3,1,1,3,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,1,0xFF,3,3,0xFF,3,0xFF,1,1,3,1,3,0xFF,1,1,0xFF,1,0xFF,1,3,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,3,1,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,3,3,1,3,1,3,3,3,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,3,1,0xFF,3,1,3,0xFF,0xFF,1,3,0xFF,3,1,0xFF,0xFF,0xFF,3,1,1,1,3,0xFF,3,1,1,0xFF,3,3,0xFF,1,1,0xFF,0xFF,1,3,0xFF,1,1,0xFF,3,0xFF,3,1,3,3,1,3,0xFF,1,3,1,0xFF,1,3,1,1,1,0xFF,1,3,3,1,0xFF,1,3,1,3,1,0xFF,1,1,1,3,0xFF,0xFF,0xFF},
en6E[] = {0xC7E7,0x3F,0x3F,0x3F,0xC7E8,0xC0B6,0x3F,0xB3E9,0xBAD1,0xBEC4,0xDEBD,0xBDC2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB7CC,0x3F,0xDEBC,0x3F,0x3F,0x3F,0xDED2,0xBDED,0xB8BA,0x3F,0xDEE1,0xC7E9,0xDEDB,0xB5F4,0xC5CF,0xC7EA,0xDED6,0xDEDF,0xB0AF,0xB1B2,0xC7EB,0x3F,0xB2B9,0x3F,0xDED8,0xC2AC,0xDECF,0xDED1,0xB9C1,0x3F,0x3F,0xC7EC,0x3F,0x3F,0x3F,0xC7ED,0x3F,0xDEE2,0xC7EE,0xDEDD,0xC7EF,0xC7F0,0x3F,0xDED5,0x3F,0x3F,0x3F,0x3F,0xDEDC,0xC7F1,0xC7F2,0x3F,0x3F,0xC7F3,0xC7F4,0xCCAB,0xC7F5,0x3F,0xDEDA,0xDEDE,0xC7F6,0x3F,0xC7F7,0xC7F8,0xC7F9,0xC7FA,0x3F,0xB8D0,0xC7FB,0xBEC5,0x3F,0x3F,0xC3B9,0xC7FC,0xC7FD,0xC7FE,0xDED4,0x3F,0x3F,0xC8A1,0xC8A2,0x3F,0x3F,0x3F,0xCDAF,0xC8A3,0x3F,0x3F,0xDED7,0x3F,0x3F,0xDED0,0xC5F2,0x3F,0x3F,0xDED3,0xC8A4,0x3F,0x3F,0xDED9,0x3F,0x3F,0x3F,0x3F,0xC8A5,0x3F,0xC8A6,0xCFD1,0xBCBE,0xCBFE,0x3F,0xDEE3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC8AE,0xC8A7,0x3F,0xDEEF,0xB8BB,0x3F,0x3F,0xC8A8,0x3F,0x3F,0xBDE0,0x3F,0xDEE5,0xC8A9,0x3F,0x3F,0xCEAF,0xB9C2,0x3F,0xDEF2,0xC8AA,0x3F,0xB0EE,0x3F,0x3F,0xDEF0,0x3F,0xC8AB,0x3F,0x3F,0xDEE4,0x3F,0x3F,0xC8AC,0xC8AD,0xDEEA,0x3F,0xC8AE,0xDEEC,0xC8AF,0x3F,0x3F,0xCDCF,0xDEE7,0x3F,0x3F,0xC5AE,0xC8B0,0x3F,0xDEE9,0x3F,0xC8B1,0xC8B2,0xC8B3,0xDEF1,0xC8B4,0xDEEB,0xCCC7,0x3F,0xC8B5,0xC8B6,0xDEE6,0xC8B7,0xBCA2,0xDEFE,0xC8B8,0xC8B9,0xC8BA,0x3F,0xB3EA,0x3F,0xDEE8,0xDEED,0xDEEE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC2EC,0xC2DA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC8BB,0xDEF6,0xC8BC,0xC8BD,0xDEFC,0x3F,0x3F,0xDEFA,0x3F,0xC5A9,0x3F,0x3F,0xDFA3,0xDEF7,0xC8BE,0x3F,0xC8BF,0x3F,0xC8C0,0xDEF8,0xDEE0},
set6E[] = {3,0xFF,0xFF,0xFF,3,1,0xFF,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,1,1,0xFF,1,3,1,1,1,3,1,1,1,1,3,0xFF,1,0xFF,1,1,1,1,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,1,3,1,3,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,3,0xFF,0xFF,3,3,1,3,0xFF,1,1,3,0xFF,3,3,3,3,0xFF,1,3,1,0xFF,0xFF,1,3,3,3,1,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,1,1,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,1,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,1,3,0xFF,0xFF,1,1,0xFF,1,3,0xFF,1,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,3,3,1,0xFF,3,1,3,0xFF,0xFF,1,1,0xFF,0xFF,1,3,0xFF,1,0xFF,3,3,3,1,3,1,1,0xFF,3,3,1,3,1,1,3,3,3,0xFF,1,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,3,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,1,1,3,0xFF,3,0xFF,3,1,1},
en6F[] = {0x3F,0xB5F9,0xC9BA,0x3F,0xC8C1,0x3F,0xBCBF,0x3F,0xC8C2,0xB9F7,0xC8C3,0x3F,0xC8C4,0xC8C5,0x3F,0xCFB3,0x3F,0xDEF4,0x3F,0xDFA2,0xB1E9,0xC1E6,0xC8C6,0x3F,0xC8C7,0x3F,0xC8C8,0xC8C9,0x3F,0x3F,0x3F,0x3F,0xC7F9,0x3F,0xB4C1,0xCEFA,0x3F,0x3F,0xC8CA,0x3F,0x3F,0xC8CB,0xC8CC,0xCCA1,0xC4D2,0xC8D3,0x3F,0xC8CD,0xC8CE,0xDEFB,0xDEFD,0xC8CF,0x3F,0x3F,0xC8D0,0x3F,0xC1B2,0x3F,0x3F,0xC8D1,0xC8D2,0x3F,0xDFA1,0xDEF9,0x3F,0xDEF3,0x3F,0x3F,0x3F,0xB4C3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC8D4,0x3F,0xC8D5,0xC8D6,0xC8D7,0xB7E9,0x3F,0x3F,0xC8D8,0xDFAF,0xC8D9,0xC8DA,0xDFAA,0xC0F8,0xC8DB,0xC8DC,0xB3E3,0x3F,0xC8DD,0xC8DE,0x3F,0xBDE1,0x3F,0xDFB3,0x3F,0xC8DF,0x3F,0x3F,0x3F,0xC8E0,0xDFAC,0xC4AC,0xDFA9,0xC4D9,0x3F,0x3F,0x3F,0xDFCC,0x3F,0x3F,0x3F,0xDFA6,0x3F,0xDFA5,0x3F,0xDFAE,0xC8E1,0xC8E2,0x3F,0xDFA8,0xDFA7,0xDFAD,0xC8E3,0xC0A1,0x3F,0xDFA4,0xC8E4,0xC8E5,0x3F,0x3F,0xC8E6,0xC8E7,0xC8E8,0xDFB0,0x3F,0xC8E9,0xDFB1,0xC8EA,0xC8EB,0xC8EC,0x3F,0xC8ED,0xB4C2,0x3F,0x3F,0xC8EE,0x3F,0x3F,0x3F,0x3F,0xC8EF,0xC8F0,0xDFB6,0x3F,0xDFB5,0xDFB7,0xC8F1,0xC8F2,0xC8F3,0xC8F4,0x3F,0xDFBA,0x3F,0x3F,0x3F,0xC8F5,0xC8F6,0xC8F7,0xC5C3,0x3F,0xDFB4,0x3F,0xC8F8,0xC8F9,0x3F,0x3F,0xDFB8,0x3F,0x3F,0xC8FA,0x3F,0x3F,0x3F,0xB7E3,0xC2F9,0xDFB2,0xC7BB,0x3F,0xC8FB,0xDFB9,0xC8FC,0xC8FD,0x3F,0xC8FE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDFBE,0xDFBC,0x3F,0x3F,0xDFBF,0x3F,0xC9A1,0xDFC2,0x3F,0x3F,0xC9A2,0xDFBB,0xB9EA,0xC7A8,0x3F,0x3F,0xDEB9,0x3F,0x3F,0x3F,0xC9A3,0xC9A4,0x3F,0xCDF4,0xDFBD,0x3F,0xDFC1,0xC2F5,0xC9A5,0xDFC0,0x3F,0xDFAB,0x3F,0xC9A6,0xEFE9,0x3F,0x3F,0xC9A7,0xDFC5,0x3F,0xC9A8,0xC9A9,0xDFC9,0x3F},
set6F[] = {0xFF,1,1,0xFF,3,0xFF,1,0xFF,3,1,3,0xFF,3,3,0xFF,1,0xFF,1,0xFF,1,1,1,3,0xFF,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,3,0xFF,0xFF,3,3,1,1,3,0xFF,3,3,1,1,3,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,3,3,0xFF,1,1,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,3,1,0xFF,0xFF,3,1,3,3,1,1,3,3,1,0xFF,3,3,0xFF,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,3,1,1,1,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,3,3,0xFF,1,1,1,3,1,0xFF,1,3,3,0xFF,0xFF,3,3,3,1,0xFF,3,1,3,3,3,0xFF,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,1,0xFF,1,1,3,3,3,3,0xFF,1,0xFF,0xFF,0xFF,3,3,3,1,0xFF,1,0xFF,3,3,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,1,1,1,0xFF,3,1,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,3,1,0xFF,0xFF,3,1,1,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,1,1,0xFF,1,1,3,1,0xFF,1,0xFF,3,1,0xFF,0xFF,3,1,0xFF,3,3,1,0xFF},
en70[] = {0xC9AA,0xDFC7,0x3F,0x3F,0x3F,0xC9AB,0xC9AC,0xC9AD,0x3F,0xDFC3,0x3F,0xDFC4,0x3F,0xC9AE,0x3F,0xDFC8,0x3F,0xDFC6,0x3F,0x3F,0x3F,0xC9CE,0x3F,0xC9AF,0xDFCE,0x3F,0xDFCB,0xDFCA,0x3F,0xDFCD,0xC6D4,0xDFCF,0xC9B0,0x3F,0x3F,0xC9B1,0x3F,0x3F,0xC3F5,0xC2ED,0x3F,0x3F,0x3F,0x3F,0xC0A5,0x3F,0x3F,0xC9B2,0xDFD0,0x3F,0xDFD2,0x3F,0xC9B3,0x3F,0x3F,0xC9B4,0x3F,0xC9B5,0x3F,0x3F,0xC9B6,0x3F,0xDFD1,0x3F,0x3F,0x3F,0x3F,0xC9B7,0xC9B8,0x3F,0x3F,0x3F,0xC9B9,0xC9BA,0xC9BB,0xC9BC,0xDEF5,0x3F,0xC9C1,0x3F,0x3F,0xDFD3,0x3F,0x3F,0xC9BD,0xC9BE,0x3F,0x3F,0xC6E7,0x3F,0x3F,0x3F,0x3F,0xC9BF,0xC9C0,0x3F,0x3F,0x3F,0x3F,0xDFD4,0xC9C2,0xC9C3,0x3F,0x3F,0x3F,0x3F,0x3F,0xB2D0,0xC9C4,0x3F,0xC9C5,0xC5F4,0xB3A5,0x3F,0x3F,0x3F,0x3F,0xC9C6,0xC9C7,0x3F,0xB5E4,0x3F,0x3F,0x3F,0xBCDE,0xBAD2,0xC9C8,0x3F,0x3F,0xC9C9,0x3F,0x3F,0x3F,0xC9CA,0xC9CB,0x3F,0x3F,0xCFA7,0xBFE6,0x3F,0x3F,0x3F,0xB1EA,0x3F,0x3F,0x3F,0xDFD6,0x3F,0xC9CC,0xC9CD,0xC9CE,0xC9CF,0xC9D0,0xDFD5,0x3F,0xC9D1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC9D2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC9D3,0xDFD9,0xC3BA,0xDFDC,0xDFD7,0xC9D4,0xC9D5,0x3F,0xDFDB,0xC9D6,0x3F,0x3F,0xC9D7,0xDFDA,0xC5C0,0xB0D9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCEF5,0x3F,0xC9D8,0xDFDE,0x3F,0x3F,0x3F,0xB1A8,0x3F,0xC9D9,0x3F,0xC9DA,0xC9DB,0xC9DC,0xC9DD,0x3F,0xC9DE,0xDFE0,0x3F,0x3F,0xC9DF,0xDFDF,0x3F,0xDFDD,0x3F,0x3F,0x3F,0x3F,0xC9E0,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDFD8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCBA3,0xC9E1,0x3F,0x3F,0xDFE2,0x3F,0x3F},
set70[] = {3,1,0xFF,0xFF,0xFF,3,3,3,0xFF,1,0xFF,1,0xFF,3,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,1,1,0xFF,1,1,1,3,0xFF,0xFF,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,1,0xFF,3,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,3,3,3,3,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,1,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,3,1,1,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,1,0xFF,0xFF,0xFF,1,1,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,3,3,3,3,3,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,1,1,3,3,0xFF,1,3,0xFF,0xFF,3,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,3,3,3,0xFF,3,1,0xFF,0xFF,3,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF},
en71[] = {0x3F,0x3F,0x3F,0xC9E2,0xC9E3,0xC9E4,0xC9E5,0xC9E6,0x3F,0xDFE1,0x3F,0xC9E7,0xC9E8,0x3F,0x3F,0xC9E9,0x3F,0x3F,0x3F,0x3F,0xB1EB,0x3F,0x3F,0x3F,0x3F,0xDFE4,0xCAB2,0x3F,0xDFE3,0x3F,0xC9EA,0x3F,0xC9EB,0xCCB5,0x3F,0x3F,0x3F,0x3F,0xBEC7,0x3F,0x3F,0x3F,0x3F,0xC9EC,0x3F,0xC9ED,0x3F,0xC9EE,0xC9EF,0xC9F0,0x3F,0x3F,0x3F,0x3F,0xC1B3,0x3F,0xC9F1,0x3F,0x3F,0x3F,0xBEC6,0x3F,0x3F,0x3F,0x3F,0xC9F2,0x3F,0x3F,0x3F,0xC9F3,0xC9F4,0xC9F5,0x3F,0xCEFB,0xC9F6,0xC9F7,0xDFEA,0x3F,0xC0F9,0x3F,0xC9F8,0x3F,0xC9F9,0x3F,0x3F,0xDFE6,0xDFEB,0xC9FA,0x3F,0xB1EC,0xC9FB,0x3F,0xC9FC,0x3F,0xC9FD,0x3F,0xC9FE,0x3F,0xDFE9,0x3F,0xC7E1,0xDFE5,0xDFE8,0xBEC8,0xCAA1,0xC8D1,0x3F,0x3F,0xDFEC,0x3F,0xBCD1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCAA2,0x3F,0x3F,0x3F,0xC0FA,0x3F,0x3F,0xCAA3,0x3F,0x3F,0x3F,0xDFEF,0xCAA4,0x3F,0xCAA5,0xDFE7,0x3F,0xB7A7,0x3F,0xCAA6,0x3F,0x3F,0xDFED,0x3F,0x3F,0xCAA7,0x3F,0xCDD0,0xDFF0,0x3F,0x3F,0x3F,0xF4A6,0xCAA8,0xCAA9,0x3F,0x3F,0x3F,0xBDCF,0xCAAA,0x3F,0xCAAB,0x3F,0x3F,0x3F,0x3F,0x3F,0xDFF1,0x3F,0x3F,0x3F,0xDFF2,0x3F,0x3F,0xCAAC,0xCAAD,0xC7AE,0xCAAE,0xCAAF,0x3F,0x3F,0x3F,0x3F,0x3F,0xDFF4,0xCAB0,0x3F,0x3F,0x3F,0xDFF5,0xCAB1,0xCAB2,0xCAB3,0x3F,0xC7B3,0xCAB4,0x3F,0x3F,0x3F,0xC5F5,0xDFF7,0x3F,0xCAB5,0xCAB6,0x3F,0xDFF9,0x3F,0xCED5,0x3F,0xDFF6,0xCAB7,0xDFF8,0xB1ED,0xCAB8,0xDFF3,0x3F,0xCAB9,0xCABA,0x3F,0xCABB,0x3F,0x3F,0xD3DB,0xDFFA,0x3F,0x3F,0x3F,0x3F,0xC1E7,0xBBB8,0xDFFC,0x3F,0x3F,0x3F,0x3F,0xDFFB,0xBFA4,0xD2D9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDFFD,0x3F,0x3F,0xCABC,0xE0A1,0x3F,0xDFEE,0xDFFE,0x3F,0xCABD,0xE0A2},
set71[] = {0xFF,0xFF,0xFF,3,3,3,3,3,0xFF,1,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,3,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,3,3,0xFF,1,3,3,1,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,1,1,3,0xFF,1,3,0xFF,3,0xFF,3,0xFF,3,0xFF,1,0xFF,1,1,1,1,3,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,0xFF,3,1,0xFF,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,1,1,0xFF,0xFF,0xFF,1,3,3,0xFF,0xFF,0xFF,1,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,3,1,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,1,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,1,1,0xFF,3,3,0xFF,1,0xFF,1,0xFF,1,3,1,1,3,1,0xFF,3,3,0xFF,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,1,1,0xFF,3,1},
en72[] = {0xCABE,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7FA,0xCABF,0xCAC0,0xCAC1,0x3F,0x3F,0x3F,0xE0A3,0x3F,0x3F,0xE0A4,0x3F,0x3F,0xCAC2,0x3F,0x3F,0x3F,0xCAC3,0x3F,0x3F,0xCAC4,0xE0A5,0x3F,0xCAC5,0x3F,0xCAC6,0x3F,0x3F,0x3F,0x3F,0xCAC7,0x3F,0x3F,0x3F,0xE0A6,0x3F,0xC4DE,0xCAC8,0xE0A8,0xE0A7,0x3F,0xCAC9,0xE0A9,0x3F,0xE0AA,0x3F,0xCACA,0xBCDF,0xC9E3,0x3F,0xCACB,0xCACC,0xCCEC,0xE0AB,0xE0AC,0xC1D6,0xBCA4,0xE0AD,0xE0AE,0xCACD,0xCACE,0xCACF,0x3F,0xCAD0,0xE0AF,0xCAD2,0xC8C7,0x3F,0x3F,0xE0B0,0xC7D7,0x3F,0xCAD1,0xCAD2,0xCAD3,0x3F,0xC4AD,0xCAD4,0x3F,0xCAD5,0xCAD6,0x3F,0xE0B1,0xB2E7,0xCAD7,0xB5ED,0xCAD8,0xCCC6,0xCAD9,0xCCB6,0xCADA,0xB2B4,0xCFB4,0xCADB,0x3F,0x3F,0x3F,0xCBD2,0xCADC,0xCAAA,0x3F,0xCADD,0x3F,0x3F,0xCADE,0xCADF,0x3F,0xCAE0,0xC0B7,0x3F,0xE0B2,0x3F,0x3F,0xCAE1,0xCAE2,0xC6C3,0x3F,0xCAE3,0xCAE4,0xB8A3,0xE0B3,0xCAE5,0xBAD4,0xE0B5,0xE0B4,0x3F,0xCAE6,0x3F,0x3F,0xE0B6,0x3F,0xCAE7,0x3F,0x3F,0x3F,0xCAE8,0xCAE9,0x3F,0x3F,0x3F,0xE0B7,0xCAEA,0x3F,0x3F,0xE0B8,0x3F,0x3F,0x3F,0x3F,0xCAEB,0x3F,0x3F,0x3F,0x3F,0xB5BE,0x3F,0xE0B9,0x3F,0x3F,0x3F,0x3F,0xE0BA,0xCAEC,0x3F,0x3F,0x3F,0xB8A4,0xCAED,0xCAEE,0xC8C8,0x3F,0xCAEF,0xE0BC,0x3F,0xCAF0,0x3F,0xBEF5,0x3F,0x3F,0xE0BB,0x3F,0x3F,0x3F,0x3F,0xCAF1,0x3F,0x3F,0xCAF2,0xB6B8,0xE0BD,0xE0BF,0x3F,0xE0BE,0xCAF3,0x3F,0xCAF4,0x3F,0x3F,0xCAF5,0x3F,0xE0C0,0x3F,0xB8D1,0x3F,0xE0C1,0x3F,0x3F,0xCAF6,0xCAF7,0xB6E9,0xCAF8,0xC1C0,0x3F,0xB9FD,0x3F,0x3F,0x3F,0xCAF9,0xE0C3,0xE0C4,0xE0C2,0x3F,0x3F,0xCAFA,0x3F,0x3F,0x3F,0xBCED,0x3F,0x3F,0xC6C8,0xB6B9,0x3F,0x3F,0x3F,0x3F,0x3F,0xCAFB,0xCAFC,0x3F,0x3F,0xE0C6,0xC3AC,0xE0C5,0xCAFD,0xCAFE,0xCFB5,0xC7E2,0xCBA1,0x3F},
set72[] = {3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,3,1,1,0xFF,3,1,0xFF,1,0xFF,3,1,1,0xFF,3,3,1,1,1,1,1,1,1,3,3,3,0xFF,3,1,1,1,0xFF,0xFF,1,1,0xFF,3,3,3,0xFF,1,3,0xFF,3,3,0xFF,1,1,3,1,3,1,3,1,3,1,1,3,0xFF,0xFF,0xFF,1,3,1,0xFF,3,0xFF,0xFF,3,3,0xFF,3,1,0xFF,1,0xFF,0xFF,3,3,1,0xFF,3,3,1,1,3,1,1,1,0xFF,3,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,1,3,3,1,0xFF,3,1,0xFF,3,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,1,1,1,0xFF,1,3,0xFF,3,0xFF,0xFF,3,0xFF,1,0xFF,1,0xFF,1,0xFF,0xFF,3,3,1,3,1,0xFF,1,0xFF,0xFF,0xFF,3,1,1,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,1,1,3,3,1,1,3,0xFF},
en73[] = {0x3F,0x3F,0xCBA2,0x3F,0xCBA3,0xCBA4,0x3F,0xCBA5,0x3F,0x3F,0xE0C9,0xCBA6,0x3F,0xCBA7,0x3F,0x3F,0x3F,0x3F,0xCBA8,0xCBA9,0x3F,0x3F,0xE0CB,0xE0C8,0xCBAA,0xCBAB,0x3F,0xCCD4,0xE0CA,0xE0CC,0xCBAC,0xCEC4,0x3F,0x3F,0xCBAD,0x3F,0xCBAE,0xE0D0,0x3F,0xCBAF,0xCBB0,0xE0CF,0xC3F6,0xC7AD,0xCBB1,0x3F,0xB8A5,0xE0CE,0x3F,0xCBB2,0xCBB3,0x3F,0xE0CD,0xCBB4,0xCDB1,0xCDB2,0x3F,0x3F,0xCBB5,0xCBB6,0x3F,0xCBB7,0xE0D1,0xB1EE,0x3F,0x3F,0x3F,0xCBB8,0xB9F6,0xBBE2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCBB9,0xE0D2,0xE0D3,0xCBBA,0x3F,0xCBBB,0x3F,0x3F,0x3F,0xCBBC,0xE0D5,0xCBBD,0x3F,0x3F,0x3F,0x3F,0xCBBE,0xCBBF,0xCBC0,0xCBC1,0x3F,0x3F,0xBDC3,0x3F,0x3F,0xCBC2,0xCBC3,0xE0D7,0xCBC4,0xE0D6,0xCBC5,0xCBC6,0x3F,0xCBC7,0xCBC8,0xE0D8,0xCBC9,0xB3CD,0x3F,0x3F,0xE0DA,0x3F,0xCBCA,0xE0D9,0xCBCB,0xE0DC,0xE0DB,0xCBCC,0x3F,0x3F,0x3F,0xCBCD,0xCBCE,0x3F,0xCBCF,0xB8BC,0xCBD0,0xCBD1,0xCEA8,0x3F,0xB6CC,0x3F,0xB2A6,0x3F,0x3F,0xCBD2,0x3F,0xCBD3,0x3F,0x3F,0xCBD4,0x3F,0xCBD5,0xB6EA,0xCBD6,0xCBD7,0x3F,0x3F,0x3F,0xCBD8,0x3F,0xCBD9,0xCBDA,0xCBDB,0x3F,0xCBDC,0x3F,0x3F,0xCBDD,0xCBDE,0x3F,0x3F,0xB4E1,0xCBDF,0xCBE0,0x3F,0xCBE1,0x3F,0x3F,0x3F,0x3F,0xCEE8,0xE0DE,0x3F,0xCBE2,0x3F,0xCBE3,0x3F,0xCBE4,0x3F,0xE0E0,0xCBE5,0xCBE6,0x3F,0xCBE7,0xE0E1,0x3F,0xB2D1,0x3F,0x3F,0xCBE8,0xCBE9,0x3F,0xE0DD,0xCBEA,0xBBB9,0xCBEB,0xCBEC,0xC4C1,0xE0DF,0xCBED,0x3F,0x3F,0xCBEE,0xCBEF,0x3F,0x3F,0xCBF0,0x3F,0x3F,0xCBF1,0x3F,0x3F,0x3F,0xCBF2,0xE0E4,0x3F,0xBCEE,0xCBF3,0x3F,0xCBF4,0x3F,0xE0E2,0xCBF5,0xCBF6,0x3F,0xCBF7,0xB7BE,0x3F,0x3F,0xC8C9,0xE0E3,0x3F,0x3F,0xE0FE,0x3F,0x3F,0xCBF8,0xCBF9,0x3F,0xCBFA,0xE0E9,0xCBFB,0xCBFC,0xCBFD,0x3F,0xCBFE,0xB8BD,0xCCA1},
set73[] = {0xFF,0xFF,3,0xFF,3,3,0xFF,3,0xFF,0xFF,1,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,1,3,3,0xFF,1,1,1,3,1,0xFF,0xFF,3,0xFF,3,1,0xFF,3,3,1,1,1,3,0xFF,1,1,0xFF,3,3,0xFF,1,3,1,1,0xFF,0xFF,3,3,0xFF,3,1,1,0xFF,0xFF,0xFF,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,3,0xFF,3,0xFF,0xFF,0xFF,3,1,3,0xFF,0xFF,0xFF,0xFF,3,3,3,3,0xFF,0xFF,1,0xFF,0xFF,3,3,1,3,1,3,3,0xFF,3,3,1,3,1,0xFF,0xFF,1,0xFF,3,1,3,1,1,3,0xFF,0xFF,0xFF,3,3,0xFF,3,1,3,3,1,0xFF,1,0xFF,1,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,3,0xFF,3,1,3,3,0xFF,0xFF,0xFF,3,0xFF,3,3,3,0xFF,3,0xFF,0xFF,3,3,0xFF,0xFF,1,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,3,0xFF,3,0xFF,3,0xFF,1,3,3,0xFF,3,1,0xFF,1,0xFF,0xFF,3,3,0xFF,1,3,1,3,3,1,1,3,0xFF,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,0xFF,1,3,0xFF,3,0xFF,1,3,3,0xFF,3,1,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,3,1,3,3,3,0xFF,3,1,3},
en74[] = {0xCCA2,0xCCA3,0x3F,0xB5E5,0xCCA4,0xE0E6,0xCDFD,0xCCA5,0x3F,0xCEB0,0xCCA6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCCA7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCCA8,0xCCA9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC2F6,0x3F,0xCCAA,0xE0E8,0xCCAB,0x3F,0xCCAC,0xCCAD,0xCCAE,0xCCAF,0xCCB0,0xCCB1,0xCCB2,0xCCB3,0xCCB4,0xCCB5,0xE0EA,0xCED6,0xB6D7,0xC8FC,0xC7CA,0x3F,0x3F,0xCCB6,0xE0EB,0x3F,0x3F,0x3F,0x3F,0xE0ED,0xCCB7,0xE0F0,0x3F,0xCCB8,0xCCB9,0x3F,0xCCBA,0xCCBB,0x3F,0x3F,0x3F,0xCCBC,0x3F,0xCCBD,0x3F,0x3F,0x3F,0xCCBE,0xCCBF,0x3F,0x3F,0xE0EC,0x3F,0xCCC0,0x3F,0xE0EF,0xB8EA,0xB1CD,0xE0F1,0xCCC1,0xBFF0,0xE0EE,0xCEDC,0x3F,0xCCC2,0xE0F4,0xF4A4,0x3F,0xCCC3,0xCCC4,0xCCC5,0xE0F2,0xE0F5,0xCCC6,0x3F,0xCCC7,0xCCC8,0xE0E7,0xE0F3,0xCCC9,0xCCCA,0xBABC,0x3F,0x3F,0xE0F6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE0F7,0x3F,0xCCCB,0xCCCC,0x3F,0xCDFE,0x3F,0xCCCD,0xCCCE,0xCCCF,0x3F,0xCCD0,0x3F,0xE0F8,0x3F,0x3F,0x3F,0xCCD1,0xCCD2,0xCCD3,0xCCD4,0x3F,0x3F,0x3F,0x3F,0x3F,0xCCD5,0xCCD6,0xCCD7,0x3F,0xCCD8,0x3F,0xE0F9,0xCCD9,0xCCDA,0xCCDB,0xE0E5,0xCCDC,0x3F,0x3F,0xCCDD,0xE0FA,0xCCDE,0xCCDF,0xCCE0,0xCCE1,0x3F,0x3F,0xCCE2,0xCCE3,0xB4C4,0xCCE4,0xCCE5,0x3F,0x3F,0xCCE6,0x3F,0x3F,0x3F,0xCCE7,0x3F,0xCCE8,0x3F,0xBCA5,0x3F,0xCCE9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCCEA,0xCCEB,0xE0FB,0x3F,0xCCEC,0x3F,0x3F,0xE0FC,0xCCED,0x3F,0x3F,0xCCEE,0xE0FD,0x3F,0x3F,0x3F,0xCCEF,0x3F,0xCCF0,0xCCF1,0xB1BB,0x3F,0xCCF2,0xCCF3,0xE1A1,0x3F,0xC9BB,0xE1A2,0xCCF4,0x3F,0xB4A4,0xE1A3,0xCCF5,0xE1A4,0xCCF6,0xCCF7,0x3F,0x3F,0xE1A5,0xCCF8,0xE1A7,0xE1A8,0xE1A6,0x3F,0xCCF9,0x3F,0xC9D3,0xE1AA,0xE1A9,0x3F,0xCCFA,0xCCFB,0xCCFC,0x3F,0x3F,0xCCFD},
set74[] = {3,3,0xFF,1,3,1,1,3,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,3,0xFF,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,3,3,0xFF,3,3,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,3,0xFF,1,1,1,1,3,1,1,1,0xFF,3,1,1,0xFF,3,3,3,1,1,3,0xFF,3,3,1,1,3,3,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,3,0xFF,1,0xFF,3,3,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,3,0xFF,1,3,3,3,1,3,0xFF,0xFF,3,1,3,3,3,3,0xFF,0xFF,3,3,1,3,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,1,0xFF,3,0xFF,0xFF,1,3,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,3,0xFF,3,3,1,0xFF,3,3,1,0xFF,1,1,3,0xFF,1,1,3,1,3,3,0xFF,0xFF,1,3,1,1,1,0xFF,3,0xFF,1,1,1,0xFF,3,3,3,0xFF,0xFF,3},
en75[] = {0x3F,0x3F,0x3F,0xE1AC,0xE1AB,0xE1AD,0xCCFE,0x3F,0x3F,0x3F,0x3F,0x3F,0xE1AE,0xE1B0,0xE1AF,0x3F,0x3F,0xB9F9,0xCDA1,0xE1B2,0x3F,0xE1B1,0xCDA2,0xCDA3,0xB4C5,0x3F,0xBFD3,0x3F,0xC5BC,0x3F,0xE1B3,0xC0B8,0xCDA4,0xCDA5,0x3F,0xBBBA,0xCDA6,0xB1F9,0xE1B4,0xCDA7,0xCDD1,0xCDA8,0xCDA9,0xCAE3,0xE1B5,0x3F,0x3F,0xCDAA,0xC5C4,0xCDB3,0xB9C3,0xBFBD,0x3F,0x3F,0xCDAB,0xC3CB,0xD2B4,0xCDAC,0xC4AE,0xB2E8,0xE1B6,0xCDAD,0xCDAE,0xCDAF,0xCDB0,0x3F,0x3F,0xCDB1,0xE1B7,0x3F,0xE1BC,0xCDB2,0xCDB3,0xE1BA,0xE1B9,0xDAC2,0xB3A6,0xE1B8,0xCDB4,0xB0DA,0xCDB5,0xC8AA,0xCDB6,0x3F,0xC8CA,0x3F,0x3F,0xCDB7,0x3F,0xCEB1,0xE1BD,0xE1BB,0xC3DC,0xC0A6,0xCDB8,0xCDB9,0xC8AB,0xCDBA,0xC9AD,0x3F,0xE1BF,0xCEAC,0xB7CD,0xE1C0,0x3F,0xE1BE,0xC8D6,0xE1C1,0x3F,0xE1C2,0x3F,0xCDBB,0xB0DB,0xCDBC,0x3F,0xBEF6,0xE1C7,0x3F,0xE1C4,0xC6ED,0xE1C3,0xCDBD,0xCDBE,0xCDBF,0xCDC0,0xCDC1,0xCDC2,0xB5A6,0x3F,0xCDC3,0xE1CA,0x3F,0x3F,0xCDC4,0xE1C5,0xE1C6,0x3F,0xE1C9,0xE1C8,0xC9A5,0x3F,0x3F,0xC1C2,0xC1C1,0xCDC5,0xB5BF,0xCDC6,0xCDC7,0xE1CB,0xCDC8,0x3F,0x3F,0x3F,0xCDC9,0xE1CC,0x3F,0xCDCA,0xE1CD,0x3F,0x3F,0x3F,0x3F,0xCDCB,0xE1CF,0xCDCC,0xE1CE,0x3F,0x3F,0x3F,0x3F,0x3F,0xB1D6,0x3F,0x3F,0x3F,0x3F,0x3F,0xE1D7,0xC8E8,0xE1D1,0xCDCD,0xE1D3,0x3F,0x3F,0xE1D5,0xBFBE,0xCDCE,0x3F,0xE1D6,0xE1D4,0xBCC0,0xCDCF,0xCDD0,0xCDD1,0xE1D0,0xE1D2,0xCDD2,0xC9C2,0xCDD3,0xBEC9,0x3F,0x3F,0xE1D9,0x3F,0xCDD4,0xE1D8,0xCDD5,0xCDD6,0x3F,0x3F,0xE1DA,0x3F,0xBCA6,0xBAAF,0x3F,0xCDD7,0xC5F7,0xE1DB,0x3F,0xC4CB,0xCDD8,0x3F,0xE1DD,0xCDD9,0xCDDA,0xCDDB,0xCEA1,0xE1DC,0xCDDC,0x3F,0x3F,0xCDDD,0x3F,0xC1E9,0x3F,0x3F,0xCDDE,0x3F,0xCDDF,0xCDE0,0xE1E2,0xCDE1,0xE1E4,0xE1E5,0xC3D4,0x3F,0x3F,0x3F,0x3F,0xCDE2,0xE1E3,0x3F,0xE1E0,0x3F,0xE1DE,0xE1DF},
set75[] = {0xFF,0xFF,0xFF,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,1,3,1,0xFF,1,3,3,1,0xFF,1,0xFF,1,0xFF,1,1,3,3,0xFF,1,3,1,1,3,1,3,3,1,1,0xFF,0xFF,3,1,1,1,1,0xFF,0xFF,3,1,1,3,1,1,1,3,3,3,3,0xFF,0xFF,3,1,0xFF,1,3,3,1,1,1,1,1,3,1,3,1,3,0xFF,1,0xFF,0xFF,3,0xFF,1,1,1,1,1,3,3,1,3,1,0xFF,1,1,1,1,0xFF,1,1,1,0xFF,1,0xFF,3,1,3,0xFF,1,1,0xFF,1,1,1,3,3,3,3,3,3,1,0xFF,3,1,0xFF,0xFF,3,1,1,0xFF,1,1,1,0xFF,0xFF,1,1,3,1,3,3,1,3,0xFF,0xFF,0xFF,3,1,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,3,1,0xFF,0xFF,1,1,3,0xFF,1,1,1,3,3,3,1,1,3,1,3,1,0xFF,0xFF,1,0xFF,3,1,3,3,0xFF,0xFF,1,0xFF,1,1,0xFF,3,1,1,0xFF,1,3,0xFF,1,3,3,3,1,1,3,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,3,0xFF,3,3,1,3,1,1,1,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,1,0xFF,1,1},
en76[] = {0xCDE3,0xE1E1,0xCDE4,0xCDE5,0xCDE6,0x3F,0x3F,0xCDE7,0xCDE8,0xE1E8,0xCDE9,0xE1E6,0xCDEA,0xE1E7,0x3F,0xCDEB,0x3F,0x3F,0xCDEC,0xCDED,0x3F,0xCDEE,0xCDEF,0x3F,0x3F,0xCDF0,0x3F,0xCDF1,0xCDF2,0xCDF3,0xCDF4,0xE1E9,0xE1EB,0xE1EC,0xE1ED,0xCDF5,0xE1EE,0xCDF6,0xCDF7,0xE1EA,0x3F,0xCDF8,0x3F,0x3F,0x3F,0xCDF9,0x3F,0x3F,0xE1F0,0x3F,0xCDFA,0xCDFB,0xE1EF,0xCDFC,0x3F,0x3F,0xCDFD,0xCDFE,0xCEA1,0xE1F1,0xCEA2,0x3F,0x3F,0x3F,0xCEA4,0xCEA5,0xCEC5,0xCEA6,0xCEA7,0xCEA8,0xE1F4,0xE1F2,0xE1F3,0xCEA9,0xCEA3,0xCEAA,0xB4E2,0x3F,0x3F,0x3F,0x3F,0x3F,0xCCFE,0x3F,0x3F,0xCEAB,0xCACA,0x3F,0xE1F6,0xCEAC,0x3F,0x3F,0xE1F5,0x3F,0x3F,0xCEAD,0x3F,0xE1F7,0xE1F8,0x3F,0xCEAE,0xCEAF,0x3F,0xE1FC,0xE1F9,0xE1FA,0xE1FB,0x3F,0xE1FD,0xCEB0,0xCEB1,0xCEB2,0xE1FE,0xCEB3,0xE2A1,0x3F,0xCEB4,0x3F,0xE2A2,0x3F,0xE2A3,0x3F,0xC8AF,0xC5D0,0xE2A4,0xC7F2,0xC9B4,0x3F,0xE2A5,0xCEB5,0x3F,0xE2A6,0xC5AA,0xCEB6,0xB3A7,0xB9C4,0xE2A7,0x3F,0x3F,0xE2A8,0xCEB7,0xCEB8,0xE2A9,0x3F,0xBBA9,0x3F,0x3F,0xE2AB,0x3F,0xCEB9,0xE2AA,0x3F,0x3F,0xE2AC,0xE2AD,0xCEBA,0xCEBB,0xCEBC,0x3F,0xCEBD,0xCEBE,0x3F,0xCEBF,0xCEC0,0xCEC1,0xCEC2,0xCEC3,0xCEC4,0xCEC5,0x3F,0xCEC6,0x3F,0x3F,0xCEC7,0xC8E9,0x3F,0xE2AE,0x3F,0x3F,0x3F,0xE2AF,0x3F,0x3F,0xF3E9,0xE2B0,0xE2B1,0xE2B2,0x3F,0x3F,0xCEC8,0x3F,0xBBAE,0x3F,0xCEC9,0xE2B3,0xC7D6,0x3F,0xCECA,0xCBDF,0x3F,0xB1CE,0xCECB,0xB1D7,0xCECC,0xCECD,0xE2B4,0xCECE,0x3F,0x3F,0x3F,0xE2B6,0x3F,0xCECF,0x3F,0xE2B5,0xC5F0,0x3F,0xCED0,0x3F,0xC0B9,0xDDB9,0x3F,0xE2B7,0xCCC1,0xCED1,0xE2B8,0x3F,0xB4C6,0xC8D7,0xE2B9,0xCED2,0xE2BA,0xCED3,0x3F,0xE2BB,0x3F,0xCED4,0x3F,0xCCDC,0x3F,0xCED5,0xCED6,0xCCD5,0x3F,0xC4BE,0x3F,0xCED7,0x3F,0xC1EA,0xCED8,0x3F,0xE2BD,0xCED9,0x3F,0xBDE2,0x3F},
set76[] = {3,1,3,3,3,0xFF,0xFF,3,3,1,3,1,3,1,0xFF,3,0xFF,0xFF,3,3,0xFF,3,3,0xFF,0xFF,3,0xFF,3,3,3,3,1,1,1,1,3,1,3,3,1,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,3,3,1,3,0xFF,0xFF,3,3,3,1,3,0xFF,0xFF,0xFF,3,3,1,3,3,3,1,1,1,3,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,1,1,0xFF,3,3,0xFF,1,1,1,1,0xFF,1,3,3,3,1,3,1,0xFF,3,0xFF,1,0xFF,1,0xFF,1,1,1,1,1,0xFF,1,3,0xFF,1,1,3,1,1,1,0xFF,0xFF,1,3,3,1,0xFF,1,0xFF,0xFF,1,0xFF,3,1,0xFF,0xFF,1,1,3,3,3,0xFF,3,3,0xFF,3,3,3,3,3,3,3,0xFF,3,0xFF,0xFF,3,1,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,1,1,0xFF,0xFF,3,0xFF,1,0xFF,3,1,1,0xFF,3,1,0xFF,1,3,1,3,3,1,3,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,1,1,0xFF,3,0xFF,1,1,0xFF,1,1,3,1,0xFF,1,1,1,3,1,3,0xFF,1,0xFF,3,0xFF,1,0xFF,3,3,1,0xFF,1,0xFF,3,0xFF,1,3,0xFF,1,3,0xFF,1,0xFF},
en77[] = {0xCEDA,0xBECA,0x3F,0x3F,0xE2C0,0x3F,0xCEDB,0xE2BF,0xE2BE,0xC8FD,0xCEDC,0xB4C7,0xB8A9,0x3F,0xCEDD,0x3F,0x3F,0x3F,0xCEDE,0x3F,0xCEDF,0xCEE0,0x3F,0xCEE1,0x3F,0xCEE2,0xCEE3,0xE2C6,0xCEE4,0x3F,0xE2C3,0xBFBF,0xCCB2,0x3F,0xCEE5,0x3F,0xE2C2,0xE2C4,0xE2C5,0x3F,0xCEE6,0xE2C1,0x3F,0x3F,0x3F,0xCEE7,0xCEE8,0xCEE9,0x3F,0x3F,0x3F,0x3F,0xCEEA,0xCEEB,0xCEEC,0xE2C7,0xE2C8,0xCEED,0xC4AF,0x3F,0xB4E3,0xCEEE,0xCEEF,0x3F,0xC3E5,0x3F,0xCEF0,0x3F,0x3F,0xCEF1,0xCEF2,0xE2C9,0x3F,0x3F,0xCEF3,0x3F,0x3F,0xCEF4,0xCEF5,0xCEF6,0x3F,0x3F,0xCEF7,0x3F,0x3F,0x3F,0xCEF8,0xCEF9,0x3F,0x3F,0xE2CA,0xE2CD,0xCEFA,0x3F,0xCEFB,0xCEFC,0xCEFD,0xBFE7,0xCEFE,0xC6C4,0xCFA1,0xE2CE,0xCBD3,0xCFA2,0xE2CB,0x3F,0xCFA3,0xE2CC,0xCFA4,0x3F,0x3F,0x3F,0xCFA5,0x3F,0xCFA6,0xCFA7,0xCFA8,0x3F,0x3F,0x3F,0x3F,0xE2D1,0xCFA9,0x3F,0x3F,0xCFAA,0xE2D0,0xE2CF,0xCFAB,0x3F,0x3F,0x3F,0xCFAC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE2D3,0xCFAD,0xCFAE,0xE2D2,0x3F,0x3F,0xE2D4,0x3F,0x3F,0xCFAF,0xCFB0,0xCFB1,0x3F,0x3F,0x3F,0xCFB2,0x3F,0x3F,0x3F,0xE2D6,0xCFB3,0xE2D5,0x3F,0xCFB4,0x3F,0x3F,0xCACD,0x3F,0xCFB5,0x3F,0x3F,0xCFB6,0x3F,0xBDD6,0xCEC6,0xCFB7,0xCFB8,0xE2D7,0xCFB9,0x3F,0xC6B7,0x3F,0xCFBA,0xE2D8,0x3F,0x3F,0xE2D9,0x3F,0xE2DD,0xE2DB,0xE2DC,0xCFBB,0xE2DA,0x3F,0x3F,0x3F,0xCFBC,0x3F,0x3F,0x3F,0xE2DE,0x3F,0xCFBD,0x3F,0x3F,0x3F,0xE2DF,0x3F,0x3F,0x3F,0xCFBE,0xCFBF,0x3F,0x3F,0xCFC0,0x3F,0xE2E0,0x3F,0xCFC1,0xE2E1,0xCCB7,0xE2E2,0x3F,0xCFC2,0xCFC3,0xCFC4,0x3F,0xCCF0,0xE2E3,0xCFC5,0xC3CE,0xCFC6,0xC7EA,0x3F,0xB6EB,0xCFC7,0x3F,0xCFC8,0xC3BB,0xE2E4,0xB6BA,0xCFC9,0xCFCA,0x3F,0xC0D0,0xCFCB,0x3F,0x3F,0x3F,0xCFCC,0x3F,0x3F,0xCFCD,0xE2E5,0x3F,0x3F,0x3F},
set77[] = {3,1,0xFF,0xFF,1,0xFF,3,1,1,1,3,1,1,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,3,3,0xFF,3,0xFF,3,3,1,3,0xFF,1,1,1,0xFF,3,0xFF,1,1,1,0xFF,3,1,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,3,3,3,1,1,3,1,0xFF,1,3,3,0xFF,1,0xFF,3,0xFF,0xFF,3,3,1,0xFF,0xFF,3,0xFF,0xFF,3,3,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,1,3,0xFF,3,3,3,1,3,1,3,1,1,3,1,0xFF,3,1,3,0xFF,0xFF,0xFF,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,3,1,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,1,0xFF,0xFF,1,0xFF,0xFF,3,3,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,1,0xFF,3,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,3,0xFF,1,1,3,3,1,3,0xFF,1,0xFF,3,1,0xFF,0xFF,1,0xFF,1,1,1,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,3,0xFF,1,0xFF,3,1,1,1,0xFF,3,3,3,0xFF,1,1,3,1,3,1,0xFF,1,3,0xFF,3,1,1,1,3,3,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,1,0xFF,0xFF,0xFF},
en78[] = {0x3F,0x3F,0xBABD,0x3F,0x3F,0xCFCE,0xCFCF,0x3F,0x3F,0xCFD0,0x3F,0x3F,0xE2E6,0xCFD1,0xCFD2,0x3F,0x3F,0xCFD3,0xE2E7,0x3F,0xB8A6,0xBAD5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCFD4,0x3F,0x3F,0xE2E9,0xCFD5,0xCFD6,0xCFD7,0x3F,0xC5D6,0xBAD6,0xB5CE,0x3F,0x3F,0x3F,0x3F,0x3F,0xCFD8,0xCFD9,0x3F,0xCFDA,0x3F,0xCBA4,0x3F,0xC7CB,0xCFDB,0x3F,0xCFDC,0x3F,0x3F,0xC5D7,0x3F,0x3F,0x3F,0x3F,0xB9DC,0x3F,0x3F,0x3F,0xCFDD,0xCFDE,0xE2EB,0x3F,0xCFDF,0xCFE0,0x3F,0x3F,0x3F,0xCFE1,0x3F,0xCFE2,0x3F,0x3F,0x3F,0xCFE3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCFE4,0xBECB,0xCFE5,0x3F,0xCFE6,0xCFE7,0x3F,0xCFE8,0xCFE9,0x3F,0x3F,0x3F,0xCFEA,0x3F,0xCFEB,0xCEB2,0xB9C5,0x3F,0xCFEC,0xB8A7,0x3F,0x3F,0xC8A3,0x3F,0xE2ED,0x3F,0x3F,0x3F,0x3F,0x3F,0xCFED,0x3F,0xE2EF,0x3F,0xCFEE,0x3F,0x3F,0xB8EB,0x3F,0x3F,0x3F,0x3F,0xE2EE,0xC4F6,0x3F,0x3F,0xCFEF,0x3F,0xE2F1,0xB3B7,0xE2EC,0xCFF0,0x3F,0xC8EA,0x3F,0xB1B0,0xCFF1,0xBAEC,0x3F,0xCFD2,0xCFF2,0x3F,0xE2F0,0x3F,0x3F,0xCFF4,0xCFF5,0xCFF6,0x3F,0xCFF3,0x3F,0xE2F2,0xCFF7,0x3F,0x3F,0xCACB,0xCFF8,0xC0D9,0xE2F4,0x3F,0xCFF9,0xCFFA,0x3F,0xE2F5,0xCFFB,0xCFFC,0xCFFD,0xCFFE,0x3F,0xE2F3,0x3F,0x3F,0x3F,0x3F,0xB3CE,0xD0A1,0xE2FB,0xD0A2,0xE2FA,0xD0A3,0x3F,0xBCA7,0x3F,0x3F,0x3F,0xE2FC,0xE2F7,0xD0A4,0xD0A5,0xD0A6,0xE2FD,0xE2F8,0xD0A7,0x3F,0xD0A8,0x3F,0xC8D8,0xE2F6,0xD0A9,0xD0AA,0xE2F9,0xD0AB,0xD0AC,0x3F,0x3F,0x3F,0xE3A2,0xD0AE,0x3F,0x3F,0x3F,0xD0AF,0xD0B0,0xD0B1,0x3F,0x3F,0xD0AD,0x3F,0xD0B2,0xE3A1,0xCBE1,0x3F,0xD0B3,0x3F,0xE2FE,0x3F,0x3F,0xB0EB,0x3F,0x3F,0xD0B4,0xD0B5,0xE3A4,0x3F,0xD0B7,0xD0B8,0x3F,0x3F,0xD0B9,0xD0BA,0x3F,0xE3A3,0x3F,0xD0BB},
set78[] = {0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,1,3,3,0xFF,0xFF,3,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,3,3,3,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,0xFF,1,0xFF,1,3,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,3,1,0xFF,3,3,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,3,3,0xFF,3,3,0xFF,0xFF,0xFF,3,0xFF,3,1,1,0xFF,3,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,3,0xFF,1,1,1,3,0xFF,1,0xFF,1,3,1,0xFF,1,3,0xFF,1,0xFF,0xFF,3,3,3,0xFF,3,0xFF,1,3,0xFF,0xFF,1,3,1,1,0xFF,3,3,0xFF,1,3,3,3,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,1,3,1,3,0xFF,1,0xFF,0xFF,0xFF,1,1,3,3,3,1,1,3,0xFF,3,0xFF,1,1,3,3,1,3,3,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,3,0xFF,3,1,1,0xFF,3,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,3,3,1,0xFF,3,3,0xFF,0xFF,3,3,0xFF,1,0xFF,3},
en79[] = {0xD0B6,0xBECC,0x3F,0x3F,0x3F,0x3F,0xD0BC,0xE3A5,0x3F,0x3F,0x3F,0x3F,0xD0BD,0x3F,0xC1C3,0x3F,0xD0BE,0xE3A7,0xE3A6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE3A8,0xD0BF,0x3F,0xD0C0,0x3F,0xD0C1,0xD0C2,0xD0C3,0x3F,0x3F,0x3F,0x3F,0xD0C4,0xE2E8,0xD0C5,0x3F,0xD0C6,0xE2EA,0xE3AA,0xE3A9,0xD0C7,0x3F,0x3F,0x3F,0xD0C8,0x3F,0x3F,0xD0C9,0xD0CA,0x3F,0x3F,0x3F,0x3F,0xBCA8,0xD0CB,0xCEE9,0xD0CC,0xBCD2,0xD0CD,0xE3AB,0xB7B7,0x3F,0x3F,0xD0CE,0xD0CF,0xD0D0,0xB5C0,0xB5A7,0xBBE3,0xD0D1,0xD0D2,0x3F,0x3F,0x3F,0xD0D3,0xCDB4,0xD0D4,0x3F,0xE3B1,0xD0D5,0xE3B0,0xC1C4,0xE3AD,0xD0D6,0x3F,0xE3AF,0xD0D7,0xD0D8,0xBDCB,0xBFC0,0xE3AE,0xE3AC,0x3F,0xC7AA,0x3F,0x3F,0xBECD,0x3F,0xD0D9,0xC9BC,0xD0DA,0x3F,0xD0DB,0x3F,0xBAD7,0x3F,0x3F,0x3F,0x3F,0xD0DC,0x3F,0x3F,0x3F,0x3F,0xC5F8,0x3F,0xD0DD,0xE3B2,0xD0DE,0xD0DF,0x3F,0xD0E0,0xE3B3,0xE3C9,0xB6D8,0x3F,0x3F,0xCFBD,0xC1B5,0x3F,0x3F,0x3F,0x3F,0xE3B4,0xD0E1,0xD0E2,0xB2D2,0xC4F7,0xCAA1,0x3F,0xD0E3,0x3F,0xD0E4,0xD0E5,0xD0E6,0xD0E7,0x3F,0xD0E8,0x3F,0x3F,0xD0E9,0xD0EA,0xE3B5,0x3F,0x3F,0x3F,0xD0EB,0x3F,0x3F,0x3F,0x3F,0xB5FA,0xE3B6,0xD0EC,0xD0ED,0xE3B8,0xD0EE,0x3F,0x3F,0xE3B9,0xD0EF,0xC7A9,0xD0F0,0x3F,0xE3BA,0xD0F1,0x3F,0x3F,0x3F,0xD0F2,0xE3BB,0xE3BC,0xD0F3,0x3F,0xB6D9,0xB2D3,0xC6C5,0xBDA8,0xBBE4,0xD0F4,0x3F,0xD0F5,0x3F,0x3F,0xD0F6,0xD0F7,0xE3BD,0xD0F8,0xBDA9,0x3F,0x3F,0x3F,0xD0F9,0x3F,0xB2CA,0xC9C3,0x3F,0xD0FA,0xE3BE,0xD0FB,0x3F,0xC8EB,0x3F,0xD0FC,0x3F,0x3F,0xD0FD,0xD0FE,0xC1C5,0xD1A1,0xE3C1,0xD1A2,0xE3C2,0xC7E9,0xD1A3,0xBFC1,0xE3BF,0x3F,0xC3E1,0xD1A4,0xD1A5,0xE3C0,0xD1A6,0x3F,0x3F,0xBECE,0xD1A7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD1A8,0x3F,0x3F,0xB0DC,0xD1A9,0x3F,0x3F,0x3F},
set79[] = {3,1,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,3,1,1,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,1,3,1,3,1,3,1,1,0xFF,0xFF,3,3,3,1,1,1,3,3,0xFF,0xFF,0xFF,3,1,3,0xFF,1,3,1,1,1,3,0xFF,1,3,3,1,1,1,1,0xFF,1,0xFF,0xFF,1,0xFF,3,1,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,3,3,0xFF,3,1,1,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,1,0xFF,3,0xFF,3,3,3,3,0xFF,3,0xFF,0xFF,3,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,3,3,1,3,0xFF,0xFF,1,3,1,3,0xFF,1,3,0xFF,0xFF,0xFF,3,1,1,3,0xFF,1,1,1,1,1,3,0xFF,3,0xFF,0xFF,3,3,1,3,1,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,3,1,3,0xFF,1,0xFF,3,0xFF,0xFF,3,3,1,3,1,3,1,1,3,1,1,0xFF,1,3,3,1,3,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,3,0xFF,0xFF,0xFF},
en7A[] = {0xB5A9,0x3F,0xD1AA,0xD1AB,0x3F,0x3F,0x3F,0xD1AC,0xE3C3,0xD1AD,0xD1AE,0xC4F8,0xD1AF,0xE3C4,0xC0C7,0x3F,0x3F,0xD1B0,0x3F,0x3F,0xCCAD,0xD1B1,0x3F,0xC9A3,0xE3C5,0xE3C6,0xC3D5,0xD1B2,0xCEC7,0x3F,0xD1B3,0xE3C8,0xE3C7,0xD1B4,0x3F,0x3F,0x3F,0x3F,0x3F,0xD1B5,0x3F,0x3F,0x3F,0xD1B6,0x3F,0xD1B7,0xBCEF,0xD1B8,0xD1B9,0xE3CA,0xB0F0,0x3F,0xD1BA,0xD1BB,0x3F,0xE3CD,0xD1BC,0xD1BD,0xD1BE,0xE3CB,0xB2D4,0xB7CE,0xE3CC,0xB9C6,0xB9F2,0x3F,0xCAE6,0xE3CE,0xD1BF,0xD1C0,0xCBD4,0xD1C1,0xD1C2,0xE3D0,0x3F,0x3F,0xD1C3,0xC0D1,0xB1CF,0xB2BA,0xB0AC,0x3F,0x3F,0x3F,0x3F,0xD1C4,0xD1C5,0xE3CF,0x3F,0xD1C6,0x3F,0x3F,0xD1C7,0xD1C8,0x3F,0xD1C9,0xD1CA,0xE3D1,0xE3D2,0xBEF7,0x3F,0xD1CB,0x3F,0xD1CC,0x3F,0xE3D3,0xD1CD,0xB3CF,0x3F,0xD1CE,0x3F,0x3F,0xE3D5,0x3F,0x3F,0x3F,0xB7EA,0xD1CF,0xB5E6,0x3F,0xD1D0,0xE3D6,0xB6F5,0x3F,0x3F,0xE3D7,0xD1D1,0xC0FC,0xD1D2,0xC6CD,0xD1D3,0xC0E0,0xBAF5,0xD1D4,0xD1D5,0x3F,0xE3D8,0x3F,0xD1D6,0xD1D7,0x3F,0x3F,0x3F,0x3F,0xD1D8,0xD1D9,0xC3E2,0xC1EB,0xD1DA,0xE3DA,0xE3DC,0xE3D9,0xE3DB,0x3F,0x3F,0x3F,0x3F,0x3F,0xD1DB,0xB7A2,0xD1DC,0x3F,0x3F,0xD1DD,0x3F,0x3F,0x3F,0x3F,0x3F,0xE3DD,0xB7A6,0x3F,0xD1DE,0x3F,0xB5E7,0xCDD2,0xE3DF,0x3F,0x3F,0xD1DF,0x3F,0xD1E0,0xE3E0,0x3F,0x3F,0xD1E1,0xB1AE,0xD1E2,0xD1E3,0x3F,0x3F,0xE3E3,0x3F,0x3F,0x3F,0xB3F6,0xE3E2,0xE3E1,0xD1E4,0xE3E5,0xE3DE,0xD1E5,0xE3E6,0xCEA9,0xD1E6,0xE3E7,0xD1E7,0xE3E8,0x3F,0xD1E8,0xD4F4,0xE3EA,0x3F,0xE3E9,0x3F,0x3F,0x3F,0xE3EB,0xE3EC,0xD1E9,0xCEB5,0xE3ED,0x3F,0xF0EF,0xBECF,0xE3EE,0xE3EF,0xBDD7,0x3F,0xC6B8,0xE3F0,0x3F,0xD1EA,0xD1EB,0xC3A8,0xD1EC,0xD1ED,0xE3F1,0x3F,0xC3BC,0xE3F2,0xD1EE,0x3F,0x3F,0xD1EF,0x3F,0xB6A5,0x3F,0xD1BF,0xC3DD,0xBCB3,0xD1F0,0x3F,0xD1F1,0xD1F2,0xB4C8},
set7A[] = {1,0xFF,3,3,0xFF,0xFF,0xFF,3,1,3,3,1,3,1,1,0xFF,0xFF,3,0xFF,0xFF,1,3,0xFF,1,1,1,1,3,1,0xFF,3,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,3,1,3,3,1,1,0xFF,3,3,0xFF,1,3,3,3,1,1,1,1,1,1,0xFF,1,1,3,3,1,3,3,1,0xFF,0xFF,3,1,1,1,1,0xFF,0xFF,0xFF,0xFF,3,3,1,0xFF,3,0xFF,0xFF,3,3,0xFF,3,3,1,1,1,0xFF,3,0xFF,3,0xFF,1,3,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,3,1,0xFF,3,1,1,0xFF,0xFF,1,3,1,3,1,3,1,1,3,3,0xFF,1,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,3,3,1,1,3,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,3,0xFF,1,1,1,0xFF,0xFF,3,0xFF,3,1,0xFF,0xFF,3,1,3,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,1,1,3,1,1,3,1,1,3,1,3,1,0xFF,3,1,1,0xFF,1,0xFF,0xFF,0xFF,1,1,3,1,1,0xFF,1,1,1,1,1,0xFF,1,1,0xFF,3,3,1,3,3,1,0xFF,1,1,3,0xFF,0xFF,3,0xFF,1,0xFF,1,1,1,3,0xFF,3,3,1},
en7B[] = {0x3F,0x3F,0xE3F3,0x3F,0xE4A2,0x3F,0xE3F6,0xD1F3,0xB5E8,0x3F,0xE3F5,0xE4A4,0x3F,0x3F,0x3F,0xE3F4,0x3F,0xBED0,0x3F,0x3F,0xD1F4,0x3F,0x3F,0x3F,0xE3F8,0xE3F9,0x3F,0xC5AB,0x3F,0x3F,0xE3FA,0xD1F5,0xB3DE,0x3F,0x3F,0xD1F6,0x3F,0xBFDA,0xC9E4,0xD1F7,0xE3FC,0xD1F8,0xD1F9,0xD1FA,0xC2E8,0xD1FB,0xD1FC,0xD1FD,0xD1FE,0xD2A1,0x3F,0xE3F7,0xD2A2,0xE3FB,0xE3FD,0x3F,0x3F,0xBAFB,0x3F,0x3F,0x3F,0xD2A3,0x3F,0xD2A4,0xD2A5,0xD2A6,0x3F,0x3F,0x3F,0xE4A6,0xC9AE,0xD2A7,0xC8A6,0xC5F9,0x3F,0xB6DA,0xE4A5,0xE4A3,0xD2A8,0xC8B5,0xE3FE,0xC3DE,0xC5FB,0x3F,0xC5FA,0xD2A9,0xBAF6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE4B8,0x3F,0x3F,0xD2AA,0x3F,0x3F,0x3F,0xD2AB,0xE4A8,0xD2AC,0xE4AA,0x3F,0xD2AD,0xD2AE,0x3F,0xE4AD,0xD2AF,0xE4AE,0xD2B0,0xE4AB,0xE4AC,0xD2B1,0xD2B2,0xE4A9,0xE4A7,0x3F,0xD2B3,0x3F,0x3F,0xE4A1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD2B4,0x3F,0xCACF,0xB2D5,0x3F,0xD2B5,0x3F,0xE4B5,0x3F,0xE4B2,0xD2B6,0xE4B7,0xD2B7,0xD2B8,0xE4B6,0x3F,0xC7F3,0xCCA7,0xD2B9,0xBBBB,0xE4B0,0xE4B9,0xE4B4,0xD2BA,0xE4B3,0xE4AF,0xD2BB,0xE4B1,0xD2BC,0xB4C9,0x3F,0x3F,0x3F,0xD2BD,0x3F,0x3F,0x3F,0x3F,0xC3BD,0x3F,0xD2BE,0xC0FD,0x3F,0xD2BF,0xD2C0,0xC8A2,0xD2C1,0x3F,0xE4BE,0xD2C2,0xD2C3,0x3F,0xC8A4,0x3F,0xD2C4,0xD2C5,0xD2C6,0xD2C7,0x3F,0x3F,0xC0E1,0xE4BB,0xD2C8,0x3F,0xC8CF,0xD2C9,0xE4BF,0xCAD3,0xD2CA,0xC3DB,0xD2CB,0xE4BA,0xE4BC,0x3F,0x3F,0xE4BD,0x3F,0x3F,0x3F,0x3F,0xD2CC,0x3F,0xD2CD,0xD2CE,0x3F,0xD2CF,0xD2D0,0xD2D1,0x3F,0xE4C0,0x3F,0x3F,0xBCC4,0x3F,0x3F,0x3F,0xC6C6,0xE4C5,0xE4C4,0x3F,0xD2D2,0xE4C1,0xD2D3,0x3F,0x3F,0xCFB6,0x3F,0x3F,0x3F,0x3F,0xD2D4,0xE4CA,0xD2D5,0xD2D6,0xE4CE,0xE4CB,0xD2D7,0xD2D8,0xD2D9,0x3F,0xD2DA,0x3F,0xD2DB,0x3F},
set7B[] = {0xFF,0xFF,1,0xFF,1,0xFF,1,3,1,0xFF,1,1,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,0xFF,1,3,1,0xFF,0xFF,3,0xFF,1,1,3,1,3,3,3,1,3,3,3,3,3,0xFF,1,3,1,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,3,3,3,0xFF,0xFF,0xFF,1,1,3,1,1,0xFF,1,1,1,3,1,1,1,1,0xFF,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,3,1,0xFF,3,3,0xFF,1,3,1,3,1,1,3,3,1,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,3,0xFF,1,0xFF,1,3,1,3,3,1,0xFF,1,1,3,1,1,1,1,3,1,1,3,1,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,0xFF,3,3,1,3,0xFF,1,3,3,0xFF,1,0xFF,3,3,3,3,0xFF,0xFF,1,1,3,0xFF,1,3,1,1,3,1,3,1,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,0xFF,3,3,3,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,1,1,0xFF,3,1,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,1,3,3,1,1,3,3,3,0xFF,3,0xFF,3,0xFF},
en7C[] = {0xE4C7,0xD2DC,0xD2DD,0xD2DE,0xD2DF,0x3F,0xD2E0,0xE4C8,0x3F,0xD2E1,0x3F,0xD2E2,0xD2E3,0xE4CD,0xD2E4,0xD2E5,0x3F,0xE4C2,0xD2D5,0xE4C9,0xE4C3,0x3F,0x3F,0xE4CC,0x3F,0xD2E6,0x3F,0xD2E7,0x3F,0x3F,0x3F,0xE4D2,0xD2E8,0xB4CA,0x3F,0xE4CF,0x3F,0xD2E9,0xD2EA,0xE4D0,0xD2EB,0x3F,0xE4D1,0xE4D4,0xD2EC,0x3F,0x3F,0x3F,0x3F,0xD2ED,0x3F,0xD2EE,0xD2EF,0x3F,0xD2F0,0xE4D3,0xC8F6,0xD2F1,0xD2F2,0x3F,0x3F,0xE4D5,0xCEFC,0xCAED,0xE4DA,0x3F,0x3F,0xE4D7,0x3F,0x3F,0xD2F3,0x3F,0x3F,0x3F,0xD2F4,0x3F,0xE4D6,0xC0D2,0x3F,0xE4D9,0xE4DB,0xD2F6,0xD2F7,0xD2F8,0xE4D8,0xD2F5,0xE4DF,0x3F,0xE4DC,0xD2F9,0xD2FA,0xD2FB,0xD2FC,0xD2FD,0xD2FE,0xE4DD,0xE4C6,0xD3A1,0x3F,0xD3A2,0xE4DE,0xE4E0,0x3F,0xD3A3,0x3F,0xD3A4,0x3F,0x3F,0xE4E1,0xD3A5,0xD3A6,0x3F,0xD3A7,0x3F,0xD3A8,0xCAC6,0x3F,0xE4E2,0x3F,0x3F,0x3F,0xD3A9,0x3F,0x3F,0xD3AA,0xD3AB,0xCCE2,0x3F,0x3F,0xB6CE,0xB7A9,0xE4E3,0x3F,0x3F,0xD3AC,0xD3AD,0x3F,0xCAB4,0x3F,0xBFE8,0x3F,0xCCB0,0x3F,0xD3AE,0xE4E4,0x3F,0xCEB3,0x3F,0xD3AF,0xC7F4,0x3F,0xC1C6,0xC7B4,0x3F,0x3F,0xBDCD,0x3F,0x3F,0xD3B0,0xB0C0,0xD3B1,0xE4E9,0xE4E7,0x3F,0xE4E5,0xB4A1,0xD3B2,0xBED1,0xE4EA,0x3F,0x3F,0xE4E8,0x3F,0xE4E6,0xE4EE,0x3F,0xD3B3,0xE4ED,0xE4EC,0xE4EB,0x3F,0x3F,0xD3B4,0xD3B5,0x3F,0xE4EF,0xD3B6,0xD3B7,0xD3B8,0xE4F0,0xC0BA,0xD3B9,0xE4F1,0x3F,0xE4F3,0x3F,0xD3BA,0xE4F2,0x3F,0xD3BB,0xD3BC,0xD3BD,0xB8D2,0x3F,0x3F,0xD3BE,0xC1B8,0xD3BF,0x3F,0x3F,0xE4F5,0xD3C0,0xD3C1,0xD3C2,0xC5FC,0xD3C3,0xE4F4,0xD3C4,0xD3C5,0x3F,0xE4F6,0xD3C6,0xCAB5,0xC1EC,0xB9C7,0x3F,0xE4F7,0x3F,0x3F,0x3F,0xD3C7,0xCEC8,0x3F,0xD3C8,0x3F,0xD3C9,0x3F,0x3F,0x3F,0xE4F9,0x3F,0x3F,0xE4FA,0x3F,0xE4FB,0xD3CA,0xE4FC,0x3F,0xBBE5,0x3F,0xE4FD,0xB7CF,0x3F,0x3F,0xB5EA,0x3F},
set7C[] = {1,3,3,3,3,0xFF,3,1,0xFF,3,0xFF,3,3,1,3,3,0xFF,1,1,1,1,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,1,3,1,0xFF,1,0xFF,3,3,1,3,0xFF,1,1,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,0xFF,3,1,1,3,3,0xFF,0xFF,1,1,1,1,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,1,1,3,3,3,1,3,1,0xFF,1,3,3,3,3,3,3,1,1,3,0xFF,3,1,1,0xFF,3,0xFF,3,0xFF,0xFF,1,3,3,0xFF,3,0xFF,3,1,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,1,0xFF,0xFF,1,1,1,0xFF,0xFF,3,3,0xFF,1,0xFF,1,0xFF,1,0xFF,3,1,0xFF,1,0xFF,3,1,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,3,1,3,1,1,0xFF,1,1,3,1,1,0xFF,0xFF,1,0xFF,1,1,0xFF,3,1,1,1,0xFF,0xFF,3,3,0xFF,1,3,3,3,1,1,3,1,0xFF,1,0xFF,3,1,0xFF,3,3,3,1,0xFF,0xFF,3,1,3,0xFF,0xFF,1,3,3,3,1,3,1,3,3,0xFF,1,3,1,1,1,0xFF,1,0xFF,0xFF,0xFF,3,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,1,3,1,0xFF,1,0xFF,1,1,0xFF,0xFF,1,0xFF},
en7D[] = {0xB5AA,0x3F,0xE5A1,0xD3CB,0xCCF3,0xB9C8,0xE4FE,0xD3CC,0xD3CD,0xD3CE,0xE5A4,0xCCE6,0x3F,0xC7BC,0x3F,0xD3CF,0xC9B3,0xD3D0,0xD3D1,0xD3D2,0xBDE3,0xE5A3,0xD3D3,0xBCD3,0xB9C9,0xBBE6,0xB5E9,0xCAB6,0xE5A2,0xD3D4,0xD3D5,0x3F,0xC1C7,0xCBC2,0xBAF7,0xD3D6,0x3F,0x3F,0xD3D7,0x3F,0x3F,0x3F,0xD3D8,0xBBE7,0xC4DD,0xD3D9,0xE5A7,0xCEDF,0xBAD9,0xD3DA,0xE5A8,0xBFC2,0x3F,0xE5AA,0x3F,0x3F,0x3F,0xBED2,0xBAB0,0x3F,0xD3DB,0xD3DC,0xD3DD,0xE5A9,0xD3DE,0xD3DF,0xBDAA,0xB8BE,0xC1C8,0xE5A5,0xE5AB,0xD3E0,0xD3E1,0x3F,0x3F,0xE5A6,0xB7D0,0xD3E2,0xE5AE,0xE5B2,0xB7EB,0xD3E3,0x3F,0xD3E4,0x3F,0x3F,0xE5AD,0xD3E5,0x3F,0xD3E6,0xD3E7,0xE5B6,0xD3E8,0xD3E9,0xB9CA,0x3F,0x3F,0xCDED,0xB0BC,0xE5B3,0x3F,0xD3EA,0xB5EB,0xD3EB,0xE5B0,0x3F,0xD3EC,0x3F,0x3F,0x3F,0xE5B1,0x3F,0xD3ED,0xC5FD,0xE5AF,0xE5AC,0x3F,0xB3A8,0xC0E4,0x3F,0xD3EE,0xB8A8,0xD3EF,0xD3F0,0x3F,0xE5B8,0x3F,0xD3F1,0x3F,0xD3F2,0xD3F3,0xD3F4,0x3F,0xD3F5,0xD3F6,0x3F,0xD3F7,0xE5B5,0x3F,0xD3F8,0xD3F9,0xD3FA,0x3F,0xE5B7,0x3F,0xD3FB,0x3F,0xE5B4,0x3F,0x3F,0xD3FC,0xD3FD,0x3F,0xB7D1,0xC2B3,0xE5B9,0xC1EE,0xD3FE,0xD4A1,0xE5C6,0x3F,0x3F,0xE5C2,0xE5BC,0x3F,0x3F,0xD4A2,0xD4A3,0x3F,0x3F,0xD4A4,0xE5C0,0xBCFA,0xB0DD,0xE5BB,0xE5C3,0xE5C7,0xB9CB,0xCCD6,0xD4A5,0xC4D6,0xE5BD,0xD4A6,0xD4A7,0xE5C5,0xD4A8,0xE5BA,0xC3BE,0x3F,0xE5BF,0xB0BD,0xCCCA,0x3F,0x3F,0xD4A9,0xD4AA,0xD4AB,0xD4AC,0xD4AD,0xE5BE,0x3F,0x3F,0xB6DB,0xC8EC,0xD4AE,0xD4AF,0xD4B0,0xC1ED,0x3F,0xCED0,0xBDEF,0x3F,0x3F,0xE5EE,0x3F,0xD4B1,0xE5C8,0xD4B2,0xC0FE,0x3F,0xE5C4,0xE5C9,0xE5CB,0x3F,0xC4F9,0xE5CE,0xD4B4,0x3F,0xE5CA,0xD4B5,0xD4B6,0x3F,0xCAD4,0xB4CB,0xD4B7,0xD4B8,0xCCCB,0xD4B9,0x3F,0xB0DE,0x3F,0xD4BA,0xE5CD,0x3F,0xCEFD,0xD4BB,0xD4BC,0x3F,0x3F,0xD4BD,0xD4BE,0xE5CC,0x3F,0x3F,0x3F,0x3F},
set7D[] = {1,0xFF,1,3,1,1,1,3,3,3,1,1,0xFF,1,0xFF,3,1,3,3,3,1,1,3,1,1,1,1,1,1,3,3,0xFF,1,1,1,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,1,3,1,1,1,3,1,1,0xFF,1,0xFF,0xFF,0xFF,1,1,0xFF,3,3,3,1,3,3,1,1,1,1,1,3,3,0xFF,0xFF,1,1,3,1,1,1,3,0xFF,3,0xFF,0xFF,1,3,0xFF,3,3,1,3,3,1,0xFF,0xFF,1,1,1,0xFF,3,1,3,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,3,1,1,1,0xFF,1,1,0xFF,3,1,3,3,0xFF,1,0xFF,3,0xFF,3,3,3,0xFF,3,3,0xFF,3,1,0xFF,3,3,3,0xFF,1,0xFF,3,0xFF,1,0xFF,0xFF,3,3,0xFF,1,1,1,1,3,3,1,0xFF,0xFF,1,1,0xFF,0xFF,3,3,0xFF,0xFF,3,1,1,1,1,1,1,1,1,3,1,1,3,3,1,3,1,1,0xFF,1,1,1,0xFF,0xFF,3,3,3,3,3,1,0xFF,0xFF,1,1,3,3,3,1,0xFF,1,1,0xFF,0xFF,1,0xFF,3,1,3,1,0xFF,1,1,1,0xFF,1,1,3,0xFF,1,3,3,0xFF,1,1,3,3,1,3,0xFF,1,0xFF,3,1,0xFF,1,3,3,0xFF,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF},
en7E[] = {0xD4B3,0xB1EF,0x3F,0x3F,0xC6EC,0xE5CF,0x3F,0x3F,0xD4BF,0xE5D6,0xE5D0,0xE5D7,0x3F,0x3F,0x3F,0x3F,0xD4C0,0xD4C1,0xE5D3,0x3F,0x3F,0xD4C2,0x3F,0xD4C3,0x3F,0x3F,0x3F,0xC7FB,0xD4C4,0xD4C5,0xBCCA,0xE5D5,0xD4C6,0xE5D2,0xE5D8,0xE5D1,0x3F,0x3F,0xBDC4,0xD4C7,0xD4C8,0x3F,0x3F,0xCBA5,0xD4C9,0xD4CA,0xBDCC,0xD4CB,0x3F,0xE5D4,0xE5E0,0xD4CC,0x3F,0xE5DC,0xD4CD,0xE5DF,0x3F,0xE5DD,0xE5E1,0xE5DB,0x3F,0xE5C1,0xC0D3,0xD4CE,0x3F,0xC8CB,0x3F,0xE5DE,0xD4CF,0xD4D0,0xE5D9,0xD4D1,0x3F,0x3F,0xC1A1,0xB7D2,0x3F,0xBDAB,0xD4D2,0x3F,0xD4D3,0x3F,0xD4D4,0x3F,0xBFA5,0xC1B6,0xE5E4,0x3F,0xD4D5,0xE5E6,0xE5E7,0x3F,0x3F,0xE5E3,0xE5E5,0xD4D6,0x3F,0xD4D7,0xD4D8,0x3F,0x3F,0xD4D9,0xE5DA,0xE5E2,0x3F,0xE5EA,0xE5E9,0xD4DA,0x3F,0xCBFA,0xD4DB,0xD4DC,0xB7AB,0x3F,0x3F,0xD4DD,0x3F,0x3F,0x3F,0x3F,0xD4DE,0xE5E8,0x3F,0xE5EC,0xE5EB,0xE5EF,0xD4DF,0xE5F1,0x3F,0xD4E0,0xBBBC,0xE5ED,0x3F,0x3F,0xD4E1,0xD4E2,0xE5F2,0xE5F3,0xD4E3,0x3F,0xE5F4,0xD4E4,0xE5FA,0xC5BB,0xE5F6,0xD4E5,0xE5F5,0xE5F7,0xE5F8,0xD4E6,0xE5F9,0x3F,0xD4E7,0x3F,0xD4E8,0xE5FB,0xE5FC,0xD4E9,0xD4EA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set7E[] = {3,1,0xFF,0xFF,1,1,0xFF,0xFF,3,1,1,1,0xFF,0xFF,0xFF,0xFF,3,3,1,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,1,3,3,1,1,3,1,1,1,0xFF,0xFF,1,3,3,0xFF,0xFF,1,3,3,1,3,0xFF,1,1,3,0xFF,1,3,1,0xFF,1,1,1,0xFF,1,1,3,0xFF,1,0xFF,1,3,3,1,3,0xFF,0xFF,1,1,0xFF,1,3,0xFF,3,0xFF,3,0xFF,1,1,1,0xFF,3,1,1,0xFF,0xFF,1,1,3,0xFF,3,3,0xFF,0xFF,3,1,1,0xFF,1,1,3,0xFF,1,3,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,1,1,1,3,1,0xFF,3,1,1,0xFF,0xFF,3,3,1,1,3,0xFF,1,3,1,1,1,3,1,1,1,3,1,0xFF,3,0xFF,3,1,1,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en7F[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB4CC,0x3F,0xE5FD,0x3F,0xE5FE,0xD4EC,0xD4EB,0xD4ED,0xD4EE,0xD4EF,0x3F,0x3F,0x3F,0xD4F0,0xD4F1,0xE6A1,0x3F,0xD4F2,0x3F,0x3F,0x3F,0x3F,0xE6A2,0xE6A3,0xE6A4,0xD4F3,0xE6A5,0xE6A6,0xD4F4,0xD4F5,0xE6A8,0xE6A7,0x3F,0x3F,0xE6A9,0x3F,0x3F,0xD4F6,0xD4F7,0xD4F8,0x3F,0xE6AA,0xE6AB,0xD4F9,0x3F,0xD4FA,0xD4FB,0xD4FC,0xD4FD,0xE6AE,0xE6AC,0xE6AD,0xBAE1,0xB7D3,0x3F,0xD4FE,0xC3D6,0x3F,0xC8B3,0xD5A1,0xBDF0,0x3F,0x3F,0xC7CD,0x3F,0xC8ED,0xE6AF,0xD8ED,0x3F,0x3F,0x3F,0xD5A2,0xD5A3,0xD5A4,0xD5A5,0x3F,0xE6B0,0xE6B2,0x3F,0xCDE5,0xE6B1,0xE6B4,0xE6B3,0x3F,0xCDD3,0xD5A6,0xE6B5,0xD5A7,0xC8FE,0xD5A8,0xD5A9,0xD5AA,0x3F,0x3F,0xE6B6,0x3F,0xD5AB,0xD5AC,0x3F,0x3F,0xE6B9,0x3F,0xD5AD,0xE6B8,0xE6B7,0x3F,0x3F,0xD5AE,0xD5AF,0xE6BA,0xB7B2,0x3F,0xD5B0,0x3F,0xC1A2,0xB5C1,0xD5B1,0x3F,0x3F,0xD5B2,0xE6BE,0xE6BB,0x3F,0x3F,0xE6BC,0x3F,0xD5B3,0x3F,0xE6BF,0x3F,0xE6C0,0xE6BD,0x3F,0x3F,0xD5B4,0xB1A9,0x3F,0xD5B5,0xD5B6,0xB2A7,0x3F,0xD5B7,0x3F,0xE6C2,0xE6C3,0x3F,0xD5B8,0x3F,0xE6C4,0x3F,0xCDE2,0x3F,0xD5B9,0xD5BA,0x3F,0x3F,0xBDAC,0x3F,0xE6C6,0xE6C5,0x3F,0x3F,0x3F,0x3F,0x3F,0xD5BB,0x3F,0x3F,0x3F,0xD5BC,0xBFE9,0xE6C7,0x3F,0xD5BD,0x3F,0xD5BE,0xE6C8,0x3F,0xD5BF,0xE6C9,0x3F,0xB4E5,0xD5C0,0x3F,0xD5C1,0xD5C2,0xB4CD,0x3F,0xD5C3,0xE6CA,0x3F,0x3F,0x3F,0x3F,0x3F,0xE6CB,0xD5C4,0xCBDD,0xCDE3,0xD5C5,0xD5C6,0xD5C7},
set7F[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,3,3,3,3,3,0xFF,0xFF,0xFF,3,3,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,1,3,1,1,3,3,1,1,0xFF,0xFF,1,0xFF,0xFF,3,3,3,0xFF,1,1,3,0xFF,3,3,3,3,1,1,1,1,1,0xFF,3,1,0xFF,1,3,1,0xFF,0xFF,1,0xFF,1,1,1,0xFF,0xFF,0xFF,3,3,3,3,0xFF,1,1,0xFF,1,1,1,1,0xFF,1,3,1,3,1,3,3,3,0xFF,0xFF,1,0xFF,3,3,0xFF,0xFF,1,0xFF,3,1,1,0xFF,0xFF,3,3,1,1,0xFF,3,0xFF,1,1,3,0xFF,0xFF,3,1,1,0xFF,0xFF,1,0xFF,3,0xFF,1,0xFF,1,1,0xFF,0xFF,3,1,0xFF,3,3,1,0xFF,3,0xFF,1,1,0xFF,3,0xFF,1,0xFF,1,0xFF,3,3,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,1,0xFF,3,0xFF,3,1,0xFF,3,1,0xFF,1,3,0xFF,3,3,1,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,1,1,3,3,3},
en80[] = {0xCDD4,0xCFB7,0x3F,0xB9CD,0xE6CE,0xBCD4,0xE6CD,0xD5C8,0xD5C9,0x3F,0xD5CA,0xE6CF,0xBCA9,0xD5CB,0xD5CC,0xD5CD,0xC2D1,0xD5CE,0xE6D0,0xD5CF,0xD5D0,0xB9CC,0xD5D1,0xCCD7,0xE6D1,0xE6D2,0x3F,0x3F,0xE6D3,0xD5D2,0xD5D3,0xD5D4,0xD5D5,0xE6D4,0x3F,0x3F,0xD5D6,0x3F,0xD5D7,0x3F,0xE6D5,0x3F,0x3F,0x3F,0xD5D8,0x3F,0xD5D9,0x3F,0xD5DA,0x3F,0x3F,0xBCAA,0xD5DB,0xD5DC,0xCCED,0xD5DD,0x3F,0xD5DE,0xD5DF,0xE6D7,0xD5E0,0xC3BF,0xD5E1,0xE6D6,0xD5E2,0x3F,0x3F,0x3F,0xD5E3,0x3F,0xE6D9,0x3F,0x3F,0x3F,0xE6D8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE6DA,0x3F,0x3F,0x3F,0xC0BB,0x3F,0xE6DB,0x3F,0xE6DC,0x3F,0x3F,0x3F,0xCAB9,0xE6DD,0xD5E4,0xC1EF,0xE6DE,0x3F,0xD5E5,0x3F,0xD5E6,0x3F,0xE6DF,0x3F,0x3F,0x3F,0x3F,0xD5E7,0x3F,0xCEFE,0xE6E2,0xD5E8,0xE6E1,0xE6E0,0xC4B0,0xD5E9,0xE6E3,0xBFA6,0x3F,0xE6E4,0x3F,0x3F,0x3F,0xE6E5,0xCFB8,0xE6E6,0x3F,0xD5EA,0x3F,0x3F,0xE6E7,0xE6E9,0xE6E8,0xC8A5,0xD5EB,0xC6F9,0x3F,0xCFBE,0xC8A9,0x3F,0xD5EC,0x3F,0x3F,0x3F,0x3F,0xE6EB,0x3F,0x3F,0xBED3,0x3F,0xC9AA,0x3F,0xE6EC,0xE6EA,0xD5ED,0xB4CE,0xD5EE,0x3F,0x3F,0xB8D4,0xBBE8,0x3F,0x3F,0xC8EE,0xD5EF,0xD5F0,0x3F,0xB8AA,0xCBC3,0xD5F1,0xE6EF,0xE6ED,0x3F,0xB9CE,0x3F,0xB9CF,0xB0E9,0x3F,0xBAE8,0x3F,0x3F,0x3F,0xD5F2,0xD5F3,0xC7D9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB0DF,0xE6F4,0x3F,0xC3C0,0x3F,0xD5F4,0x3F,0x3F,0x3F,0xC7D8,0xD5F5,0xC2DB,0xD5F6,0x3F,0x3F,0xD5F7,0x3F,0xD5F8,0xD5F9,0xE6F6,0xD5FA,0xD5FB,0xE6F2,0xE6F5,0xE6F0,0x3F,0xE6F3,0xCBA6,0x3F,0xD5FC,0xB8D5,0x3F,0x3F,0xB0FD,0xE6F1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD5FD,0xD5FE,0xE6F8,0xD6A1,0xE6F9,0xD6A2,0xD6A3,0xC6B9,0x3F,0xD6A4,0x3F,0xB6BB,0xD6A5,0xD6A6,0x3F,0xE7A6,0xC7BD,0xD6A7,0x3F},
set80[] = {1,1,0xFF,1,1,1,1,3,3,0xFF,3,1,1,3,3,3,1,3,1,3,3,1,3,1,1,1,0xFF,0xFF,1,3,3,3,3,1,0xFF,0xFF,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,1,3,3,1,3,0xFF,3,3,1,3,1,3,1,3,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,1,3,1,1,0xFF,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,3,1,1,1,3,1,1,0xFF,1,0xFF,0xFF,0xFF,1,1,1,0xFF,3,0xFF,0xFF,1,1,1,1,3,1,0xFF,1,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,1,0xFF,1,1,3,1,3,0xFF,0xFF,1,1,0xFF,0xFF,1,3,3,0xFF,1,1,3,1,1,0xFF,1,0xFF,1,1,0xFF,1,0xFF,0xFF,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,3,1,3,0xFF,0xFF,3,0xFF,3,3,1,3,3,1,1,1,0xFF,1,1,0xFF,3,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,1,3,1,3,3,1,0xFF,3,0xFF,1,3,3,0xFF,1,1,3,0xFF},
en81[] = {0x3F,0x3F,0xBBE9,0xD6A8,0x3F,0xB6BC,0xC0C8,0xCFC6,0xCCAE,0xE6F7,0xC0D4,0xD6A9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD6AA,0xD6AB,0xD6AC,0x3F,0xB5D3,0xE6FA,0xD6AD,0x3F,0xD6AE,0x3F,0xD6AF,0x3F,0x3F,0xE6FC,0xD6B0,0x3F,0x3F,0xD6B1,0x3F,0xE6FB,0x3F,0x3F,0xD6B2,0x3F,0x3F,0xE6FD,0xD6B3,0xC3A6,0x3F,0xC7BE,0x3F,0xD6B4,0x3F,0x3F,0x3F,0xC4B1,0xD6B5,0x3F,0xD6B6,0x3F,0xE7A3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD6B7,0xE7A2,0xD6B8,0x3F,0x3F,0xD6B9,0xE6FE,0xD6BA,0x3F,0xBFD5,0x3F,0xC9E5,0xE7A5,0xD6BB,0xE7A4,0xB9D0,0xCFD3,0x3F,0xD6BC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE7B5,0xD6BD,0xD6BE,0x3F,0x3F,0x3F,0xE7A9,0xE7AA,0xD6BF,0xD6C0,0xD6C1,0x3F,0xBCF0,0x3F,0xD6C2,0xE7A8,0xD6C3,0xB9F8,0xE7A7,0x3F,0x3F,0xE7AB,0x3F,0x3F,0xD6C4,0xC4B2,0xCAA2,0xC1A3,0x3F,0x3F,0x3F,0x3F,0xC2DC,0xE7AF,0xD6C5,0xE7B0,0xE7AC,0xD6C7,0xD6C8,0xD6C9,0x3F,0xE7AD,0x3F,0xE7AE,0xD6CA,0x3F,0x3F,0xD6CB,0xB9D1,0xD6C6,0x3F,0x3F,0xE7B6,0x3F,0xE7B2,0xD6CC,0x3F,0xD6CD,0x3F,0xC9E6,0xD6CE,0xCBEC,0xC9A8,0xD6CF,0x3F,0xE7B1,0x3F,0xD6D0,0xE7B4,0xE7B3,0x3F,0x3F,0x3F,0xCBC4,0xE7B7,0x3F,0x3F,0x3F,0x3F,0xD6D1,0x3F,0xE7B8,0x3F,0xD6D2,0xC1B7,0xD6D3,0xE7B9,0x3F,0x3F,0xE7BB,0x3F,0xE7BF,0xD6D4,0x3F,0xE7BC,0xE7BA,0xC7BF,0xE7BD,0x3F,0xE7BE,0xD6D6,0x3F,0xD6D7,0xB2B2,0x3F,0xE7C5,0xE7C0,0xD6D8,0xD6D5,0x3F,0xE7C1,0xD6D9,0xD6DA,0x3F,0xE7C2,0x3F,0xC2A1,0x3F,0xD6DB,0x3F,0xD6DC,0xE7C4,0xE7C3,0xE7C6,0xD6DD,0x3F,0xD6DE,0xD6DF,0xE7C7,0xE7C8,0xD6E0,0x3F,0xBFC3,0xD6E1,0xB2E9,0x3F,0xE7C9,0xCED7,0x3F,0xBCAB,0xD6E2,0xD6E3,0xBDAD,0x3F,0x3F,0xD6E4,0xD6E5,0xD6E6,0xBBEA,0xC3D7,0xD6E7,0xD6E8,0x3F,0xD6E9,0xD6EA,0xE7CA,0xE7CB,0xB1B1,0xD6EB,0xE7CC,0xD6EC},
set81[] = {0xFF,0xFF,1,3,0xFF,1,1,1,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,1,1,3,0xFF,3,0xFF,3,0xFF,0xFF,1,3,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,1,3,1,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,1,3,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,0xFF,3,1,3,0xFF,1,0xFF,1,1,3,1,1,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,0xFF,0xFF,0xFF,1,1,3,3,3,0xFF,1,0xFF,3,1,3,1,1,0xFF,0xFF,1,0xFF,0xFF,3,1,1,1,0xFF,0xFF,0xFF,0xFF,1,1,3,1,1,3,3,3,0xFF,1,0xFF,1,3,0xFF,0xFF,3,1,3,0xFF,0xFF,1,0xFF,1,3,0xFF,3,0xFF,1,3,1,1,3,0xFF,1,0xFF,3,1,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,3,1,3,1,0xFF,0xFF,1,0xFF,1,3,0xFF,1,1,1,1,0xFF,1,3,0xFF,3,1,0xFF,1,1,3,3,0xFF,1,3,3,0xFF,1,0xFF,1,0xFF,3,0xFF,3,1,1,1,3,0xFF,3,3,1,1,3,0xFF,1,3,1,0xFF,1,1,0xFF,1,3,3,1,0xFF,0xFF,3,3,3,1,1,3,3,0xFF,3,3,1,1,1,3,1,3},
en82[] = {0xD6ED,0xE7CD,0xE7CE,0xD6EE,0x3F,0xE7CF,0x3F,0xE7D0,0xB6BD,0xDAAA,0xE7D1,0x3F,0xC0E5,0xE7D2,0xBCCB,0xD6EF,0xE7D3,0x3F,0xD0B0,0xD6F0,0xD6F1,0x3F,0xE7D4,0xCADE,0xB4DC,0xD6F2,0xD6F3,0xC1A4,0xBDD8,0xD6F4,0xC9F1,0xBDAE,0x3F,0xD6F5,0xD6F6,0x3F,0x3F,0x3F,0x3F,0x3F,0xD6F7,0xE7D5,0xB9D2,0xE7D6,0xC8CC,0x3F,0xE7E4,0x3F,0x3F,0x3F,0xD6F8,0xE7D8,0xD6F9,0xC2C9,0xC7F5,0xB8BF,0xE7D7,0xC1A5,0xD6FA,0x3F,0x3F,0x3F,0x3F,0x3F,0xE7D9,0x3F,0x3F,0xD6FB,0xD6FC,0xD6FD,0xD6FE,0xC4FA,0x3F,0x3F,0x3F,0xD7A1,0x3F,0x3F,0xD7A2,0xD7A3,0x3F,0xD7A4,0x3F,0x3F,0x3F,0x3F,0xD7A5,0x3F,0xE7DB,0xE7DA,0xE7DD,0x3F,0xD7A6,0xE7DC,0x3F,0xE7DE,0xD7A7,0x3F,0xE7E0,0xD7A8,0xE7DF,0x3F,0xB4CF,0xD7A9,0xE7E1,0x3F,0xE7E2,0xE7E3,0x3F,0xD7AA,0xBAB1,0xCEC9,0x3F,0xE7E5,0xBFA7,0x3F,0xD7AB,0x3F,0xB1F0,0xE7E6,0xE7E7,0x3F,0x3F,0xD7AC,0x3F,0xD7AD,0xE7E8,0xD7AE,0xD7AF,0xD7B0,0x3F,0xD7B1,0xD7B2,0x3F,0x3F,0xD7B3,0x3F,0xD7B4,0xD7B5,0xB0F2,0x3F,0xE7E9,0xD7B6,0x3F,0x3F,0xD7B7,0xE7EA,0x3F,0xD7B8,0x3F,0xD7B9,0x3F,0xD7BA,0xC9E7,0xD7BB,0xD7BC,0x3F,0xBCC7,0x3F,0xE7EC,0xD7BD,0xD7BE,0x3F,0xD7BF,0xD7C0,0xB3A9,0xB0B2,0xD7C1,0xD7C2,0xD7C3,0xD7C4,0xE7EB,0xE7EE,0xC7CE,0xD7C5,0xBFC4,0xD7C6,0xB2D6,0xD7C7,0xCBA7,0xD7C8,0x3F,0x3F,0xD7C9,0xB7DD,0xB6DC,0xD7CA,0xE7ED,0xD7CB,0xB2EA,0xD7CC,0xD7CD,0x3F,0x3F,0x3F,0x3F,0x3F,0xB4A3,0xD7CE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD7CF,0xB1F1,0xE7F2,0xCEEA,0xC2DD,0xD7D0,0x3F,0xC9C4,0x3F,0xE7FE,0xD7D1,0xB2D7,0xE7FC,0x3F,0xE7FA,0xE7F1,0xD7D2,0xE7EF,0xD7D3,0xE7F0,0xD7D4,0xBCE3,0xB6EC,0xC3F7,0xD7D5,0x3F,0xD7D6,0xC6D1,0x3F,0xD7D7,0x3F,0xD7D8,0x3F,0xB1D1,0x3F,0xE7F4,0xE7F3,0x3F,0xD7D9,0xD7DA,0x3F,0xE7F9,0xE7F5,0xE7F8,0x3F,0xD7DB,0xD7DC,0x3F},
set82[] = {3,1,1,3,0xFF,1,0xFF,1,1,1,1,0xFF,1,1,1,3,1,0xFF,1,3,3,0xFF,1,1,1,3,3,1,1,3,1,1,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,1,1,0xFF,1,0xFF,0xFF,0xFF,3,1,3,1,1,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,3,3,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,1,0xFF,3,1,0xFF,1,3,0xFF,1,3,1,0xFF,1,3,1,0xFF,1,1,0xFF,3,1,1,0xFF,1,1,0xFF,3,0xFF,1,1,1,0xFF,0xFF,3,0xFF,3,1,3,3,3,0xFF,3,3,0xFF,0xFF,3,0xFF,3,3,1,0xFF,1,3,0xFF,0xFF,3,1,0xFF,3,0xFF,3,0xFF,3,1,3,3,0xFF,1,0xFF,1,3,3,0xFF,3,3,1,1,3,3,3,3,1,1,1,3,1,3,1,3,1,3,0xFF,0xFF,3,1,1,3,1,3,1,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,1,1,3,0xFF,1,0xFF,1,3,1,1,0xFF,1,1,3,1,3,1,3,1,1,1,3,0xFF,3,1,0xFF,3,0xFF,3,0xFF,1,0xFF,1,1,0xFF,3,3,0xFF,1,1,1,0xFF,3,3,0xFF},
en83[] = {0xD7DD,0xD7DE,0xCCD0,0xE7F7,0xB2D8,0xB3FD,0xE7FB,0xD7DF,0xD7E0,0xE7FD,0xD7E1,0xD7E2,0x3F,0x3F,0xB7D4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE8A3,0xE8AC,0xE8AD,0x3F,0x3F,0xD7E4,0xB0AB,0xD7E5,0xD7E6,0xD7E7,0x3F,0xD7E8,0xD7E9,0xE8B4,0x3F,0x3F,0x3F,0x3F,0xB0F1,0x3F,0x3F,0xE8AB,0xD7EA,0xD7EB,0xD7EC,0xE8AA,0xD7ED,0xE8A5,0xE8A4,0xD7EE,0xE8A2,0xE8A1,0xC3E3,0xD7EF,0xC2FB,0xE8A7,0xD7F0,0x3F,0xD7F1,0xD7F2,0x3F,0x3F,0xE8A6,0x3F,0xD7F3,0xD7F4,0xD7F5,0xE8A9,0x3F,0xD7F6,0x3F,0xC1F0,0xB7D5,0x3F,0x3F,0xD7F7,0xD7F8,0xB1C1,0xE8A8,0xD7F9,0xB9D3,0xD8BE,0xD7E3,0xD7FA,0xD7FB,0xD7FC,0xC1F1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD7FD,0x3F,0x3F,0xE8BA,0x3F,0xE8BB,0x3F,0xB2D9,0xD7FE,0x3F,0x3F,0xB2AE,0xE8B8,0xD8A1,0x3F,0xD8A2,0xD8A3,0x3F,0xD8A4,0x3F,0xD8A5,0xE8AE,0xD8A6,0xE8B6,0x3F,0xE8BD,0xE8B7,0x3F,0x3F,0xD8A7,0xE8B5,0x3F,0x3F,0x3F,0xD8A8,0xE7F6,0xD8A9,0xD8AA,0xE8B3,0x3F,0xD8AB,0xD8AC,0xE8AF,0xD8AD,0xD8AE,0xD8AF,0xB4D0,0xE8B1,0xE8BC,0x3F,0xE8B2,0x3F,0x3F,0x3F,0xD8B0,0xD8B1,0xE8BE,0xD8B2,0xE8B0,0xC7FC,0xD8B3,0xD8CC,0x3F,0x3F,0x3F,0xCDE9,0x3F,0x3F,0x3F,0xE8B9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE8CF,0xD8B4,0xD8B5,0xD8B6,0xE8C7,0x3F,0x3F,0x3F,0xBFFB,0x3F,0xD8B7,0x3F,0xD8B8,0xB5C6,0x3F,0xB6DD,0x3F,0xE8C2,0xD8B9,0xD8BA,0xD8BB,0x3F,0xB2DB,0xD8BC,0x3F,0xBED4,0x3F,0xE8C5,0x3F,0x3F,0x3F,0xBADA,0xD8BD,0x3F,0xC5D1,0xE8CA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD8BF,0xCAEE,0xD8C0,0xE8C1,0x3F,0x3F,0x3F,0xB2DA,0xB8D6,0xC9A9,0xE8CB,0x3F,0xE8BF,0x3F,0xD8C1,0xE8C8,0xD8C2,0xD8C3,0x3F,0xE8D2,0xD8C4,0xE8C3,0x3F,0x3F},
set83[] = {3,3,1,1,1,1,1,3,3,1,3,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,3,1,3,3,3,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,3,3,3,1,3,1,1,3,1,1,1,3,1,1,3,0xFF,3,3,0xFF,0xFF,1,0xFF,3,3,3,1,0xFF,3,0xFF,1,1,0xFF,0xFF,3,3,1,1,3,1,3,3,3,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,1,0xFF,1,3,0xFF,0xFF,1,1,3,0xFF,3,3,0xFF,3,0xFF,3,1,3,1,0xFF,1,1,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,3,1,3,3,1,0xFF,3,3,1,3,3,3,1,1,1,0xFF,1,0xFF,0xFF,0xFF,3,3,1,3,1,1,3,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,3,1,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,1,0xFF,1,0xFF,1,3,3,3,0xFF,1,3,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,3,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,1,0xFF,0xFF,0xFF,1,1,1,1,0xFF,1,0xFF,3,1,3,3,0xFF,1,3,1,0xFF,0xFF},
en84[] = {0x3F,0xD8C5,0x3F,0xE8C4,0xC6BA,0x3F,0xD8C6,0xE8C9,0x3F,0x3F,0xD8C7,0xE8C6,0xCBA8,0xE8CC,0xB0E0,0xD8C8,0x3F,0xD8C9,0x3F,0xE8C0,0x3F,0xD8CA,0x3F,0x3F,0x3F,0xD8CB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE8CE,0x3F,0xE8CD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC7EB,0xE8D4,0x3F,0xE8DF,0x3F,0x3F,0xD8CD,0x3F,0xB3FE,0x3F,0x3F,0x3F,0xE8E2,0x3F,0x3F,0xE8D0,0xD8CE,0x3F,0x3F,0xE8D5,0xCDEE,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD8CF,0xE8DE,0xD8D0,0xD8D1,0xCDD5,0xD8D2,0x3F,0x3F,0xD8D3,0xCEAA,0xD8D4,0x3F,0xD8D5,0xD8D6,0x3F,0x3F,0x3F,0xD8D7,0xC3F8,0xD8D8,0xD8D9,0xD8DA,0xB3EB,0xD8DB,0x3F,0x3F,0x3F,0xD8DC,0xC9F2,0xE8E4,0xC6A1,0xD8DD,0xD8DE,0xB0B1,0xD8DF,0x3F,0xE8DD,0xD8E0,0xE8D9,0xC1F2,0xE8D3,0xE8DB,0xE8E0,0xD8E1,0xC7AC,0x3F,0xD8E2,0xD8E3,0xB0AA,0xD8E4,0xE8D8,0xD8E5,0xE8E1,0xC9F8,0x3F,0xD8E6,0xD8E7,0x3F,0x3F,0x3F,0xD8E8,0xE8DC,0x3F,0xE8D7,0xD8E9,0x3F,0x3F,0x3F,0x3F,0x3F,0xBED5,0x3F,0x3F,0x3F,0x3F,0xBDAF,0x3F,0xD8EA,0xD8EB,0xBCAC,0xD8EC,0x3F,0x3F,0x3F,0xCCD8,0x3F,0x3F,0xC9C7,0x3F,0xD8ED,0xE8E7,0x3F,0xE8F0,0x3F,0x3F,0x3F,0x3F,0xD8EE,0x3F,0xD8EF,0xD8F0,0xD8F1,0x3F,0x3F,0xE8DA,0x3F,0xD8F2,0x3F,0xD8F3,0xB3F7,0x3F,0xD8F4,0x3F,0x3F,0x3F,0xBEF8,0xE8E5,0xD8F5,0xE8EA,0xC1F3,0xD8F6,0xD8F7,0xE8E6,0xD8F8,0xE8ED,0xD8F9,0x3F,0xC3DF,0x3F,0xE8EE,0xD8FA,0xD8FB,0xCDD6,0xE8E3,0xB3B8,0xD8FC,0xE8E9,0x3F,0xD8FD,0xE8EC,0xCCAC,0x3F,0xD8FE,0x3F,0x3F,0xE8EF,0x3F,0x3F,0xE8E8,0xE8EB,0x3F,0xD9A1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xD9A2,0x3F,0x3F,0xD9A3,0x3F,0xCBA9,0x3F,0xCFA1,0xD9A4,0xD9A5,0xD9A6,0xD9A7,0x3F,0xE8F3,0x3F,0x3F,0xD9A8,0x3F,0x3F,0xD9AA,0xD9AB,0xE8FA,0xD9AC,0x3F,0xE8F2},
set84[] = {0xFF,3,0xFF,1,1,0xFF,3,1,0xFF,0xFF,3,1,1,1,1,3,0xFF,3,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,3,1,3,0xFF,0xFF,3,1,3,0xFF,3,3,0xFF,0xFF,0xFF,3,1,3,3,3,1,3,0xFF,0xFF,0xFF,3,1,1,1,3,3,1,3,0xFF,1,3,1,1,1,1,1,3,1,0xFF,3,3,1,3,1,3,1,1,0xFF,3,3,0xFF,0xFF,0xFF,3,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,3,1,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,3,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,3,0xFF,0xFF,1,0xFF,3,0xFF,3,1,0xFF,3,0xFF,0xFF,0xFF,1,1,3,1,1,3,3,1,3,1,3,0xFF,1,0xFF,1,3,3,1,1,1,3,1,0xFF,3,1,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,1,0xFF,1,3,3,3,3,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,3,3,1,3,0xFF,1},
en85[] = {0xBCC3,0x3F,0xD9AD,0xD9AE,0x3F,0x3F,0xE8D1,0xD9AF,0x3F,0x3F,0x3F,0x3F,0xD9B0,0x3F,0xD9B1,0x3F,0xD9B2,0xCACE,0x3F,0xCCA2,0xE8F9,0xE8F8,0x3F,0xE8F4,0xE8F5,0x3F,0xB1B6,0x3F,0xD9B3,0x3F,0xD9B4,0xE8F7,0x3F,0xE8F1,0xD9B5,0xD9B6,0xD9B7,0xD9B8,0xC4D5,0xD9B9,0x3F,0x3F,0xD9BA,0xD9BB,0xE8F6,0xB0FE,0x3F,0xD9BC,0x3F,0x3F,0xD9A9,0xD9BD,0xD9BE,0xC2A2,0xD9BF,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCAC3,0x3F,0xD9C0,0xE8FB,0xE9A1,0x3F,0xC8D9,0x3F,0x3F,0xD9C1,0x3F,0xE8FE,0xBED6,0xBCC9,0xE9A3,0x3F,0x3F,0xB6BE,0xD9C2,0xD9C3,0xD9C4,0xD9C5,0xD9C6,0x3F,0xE9A4,0xD9C7,0xC9F9,0xE8FD,0xD9C8,0xE8D6,0x3F,0xD9C9,0xD9CA,0xD9CB,0xD9CC,0xD9CD,0xD9CE,0xD9CF,0xE8FC,0xD9D0,0x3F,0x3F,0x3F,0xCFCF,0xC6A2,0xC9F3,0xD9D1,0x3F,0xE9AB,0x3F,0xD9D2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE9B1,0x3F,0xD9D3,0xD9D4,0xD9D5,0x3F,0xD9D6,0xE9B2,0xD9D7,0xE9A5,0xD9D8,0x3F,0x3F,0xC7F6,0xD9D9,0xD9DA,0xE9AF,0xE9A7,0xD9DB,0xE9A9,0xD9DC,0xD9DD,0x3F,0x3F,0xD9DE,0xE9B3,0xE9A8,0x3F,0xD9DF,0xE9AC,0x3F,0x3F,0xB1F2,0xD9E0,0xC6E5,0x3F,0xE9AD,0xE9B0,0xD9E1,0x3F,0xD9E2,0xD9E3,0x3F,0xD9E4,0x3F,0xE9A6,0xD9E5,0xC1A6,0xD9E6,0xE9AA,0xBBA7,0xBFC5,0xB7B0,0xCCF4,0xD9F4,0xCCF9,0xBDF2,0x3F,0x3F,0x3F,0x3F,0xD9E7,0x3F,0xD9E8,0xD9E9,0xD9EA,0xE9B7,0xE9B5,0x3F,0xD9EB,0xD9EC,0xD9ED,0xD9EE,0x3F,0xCFCE,0xD9EF,0x3F,0x3F,0x3F,0x3F,0xD9F0,0x3F,0xE9B4,0xD9F1,0xD9F2,0x3F,0xCDF5,0xD9F3,0xE9B6,0xE9B8,0x3F,0x3F,0x3F,0x3F,0xE9B9,0x3F,0x3F,0xD9F5,0x3F,0xD9F6,0x3F,0xE9BC,0xE9BA,0x3F,0xD9F7,0xD9F8,0x3F,0x3F,0x3F,0xC6A3,0xE9BB,0xD9F9,0x3F,0xD9FA,0xC8CD,0xE9AE,0x3F,0x3F,0xD9FB,0x3F,0x3F,0x3F,0x3F,0x3F,0xD9FC,0x3F,0x3F,0xD9FD,0xBDF3,0x3F,0xE9BD,0xE9C2,0xC1F4,0xD9FE,0x3F,0xE9C1,0xDAA1},
set85[] = {1,0xFF,3,3,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,3,1,0xFF,1,1,1,0xFF,1,1,0xFF,1,0xFF,3,0xFF,3,1,0xFF,1,3,3,3,3,1,3,0xFF,0xFF,3,3,1,1,0xFF,3,0xFF,0xFF,3,3,3,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,1,0xFF,1,0xFF,0xFF,3,0xFF,1,1,1,1,0xFF,0xFF,1,3,3,3,3,3,0xFF,1,3,1,1,3,1,0xFF,3,3,3,3,3,3,3,1,3,0xFF,0xFF,0xFF,1,1,1,3,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,3,3,0xFF,3,1,3,1,3,0xFF,0xFF,1,3,3,1,1,3,1,3,3,0xFF,0xFF,3,1,1,0xFF,3,1,0xFF,0xFF,1,3,1,0xFF,1,1,3,0xFF,3,3,0xFF,3,0xFF,1,3,1,3,1,1,1,1,1,3,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,3,1,1,0xFF,3,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,3,0xFF,1,3,1,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,3,0xFF,1,1,0xFF,3,3,0xFF,0xFF,0xFF,1,1,3,0xFF,3,1,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,1,0xFF,1,1,1,3,0xFF,1,3},
en86[] = {0xDAA2,0x3F,0xE9A2,0x3F,0xDAA3,0xDAA4,0xE9C3,0xC1C9,0x3F,0x3F,0xE9BE,0xE9C0,0x3F,0xDAA5,0xDAA6,0x3F,0xDAA7,0xDAA8,0xDAA9,0xE9BF,0x3F,0x3F,0xDDB1,0xDDA2,0xDAAA,0xDAAB,0xE9C5,0xDAAC,0x3F,0x3F,0xDAAD,0x3F,0x3F,0xDAAE,0xE9C4,0x3F,0x3F,0x3F,0x3F,0xDAAF,0x3F,0xDAB0,0x3F,0x3F,0x3F,0xCDF6,0x3F,0xE2BC,0xE9C6,0x3F,0x3F,0x3F,0x3F,0x3F,0xDAB1,0x3F,0xDAB2,0x3F,0xDAB3,0x3F,0xDAB4,0xDAB5,0x3F,0xE9C7,0xDAB6,0xB8E6,0xDAB7,0x3F,0x3F,0x3F,0xDAB8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE9C8,0xB8D7,0x3F,0xB5D4,0x3F,0xDAB9,0xDABA,0xE9CA,0xD1DD,0xDABB,0xDABC,0xDABD,0xDABE,0xB5F5,0x3F,0xCEBA,0xDABF,0xB6F3,0xE9CB,0xDAC0,0xDAC1,0xDAC2,0xDAC3,0xDAC4,0x3F,0x3F,0xE9CC,0x3F,0xDAC5,0x3F,0xC3EE,0xDAC6,0x3F,0x3F,0xDAC7,0x3F,0xE9CD,0x3F,0x3F,0x3F,0xDAC8,0xDAC9,0xDACA,0x3F,0xC6FA,0xDACB,0xB0BA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDAED,0x3F,0xB2E3,0xE9D2,0xE9D3,0xDACC,0x3F,0x3F,0x3F,0xDACD,0x3F,0xE9CE,0x3F,0xBBBD,0xDACE,0x3F,0xDACF,0x3F,0xDAD0,0x3F,0xDAD1,0x3F,0x3F,0x3F,0x3F,0xDAD2,0x3F,0xE9CF,0xC7C2,0x3F,0xDAD3,0xDAD4,0xDAD5,0xE9D0,0xE9D1,0xE9DB,0x3F,0xDAD6,0x3F,0xE9D5,0xE9D8,0xDAD7,0x3F,0xDAD8,0xDAD9,0xDADA,0xE9D4,0xDADB,0xDADC,0xDADD,0x3F,0x3F,0x3F,0x3F,0x3F,0xDADE,0xDADF,0xDAE0,0x3F,0xDAE1,0xE9D6,0xDAE2,0xE9D7,0xBCD8,0x3F,0xE9D9,0x3F,0xC3C1,0x3F,0xB7D6,0xB3C2,0x3F,0x3F,0xDAE3,0xDAE4,0x3F,0xE9DC,0xDAE5,0x3F,0xDAE6,0x3F,0xB3BF,0xDAE7,0xE9E1,0xDAE8,0x3F,0xE9DD,0xE9E0,0xDAE9,0x3F,0x3F,0xDAEA,0xC8BA,0xDAEB,0x3F,0xDAEC,0x3F,0xE9DE,0x3F,0x3F,0xE9DF,0xC9C8,0xC8DA,0xE9E2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC2FD,0xE9EC,0xDAEE,0xE9E8,0xDAEF,0xDAF0,0xB2EB,0x3F},
set86[] = {3,0xFF,1,0xFF,3,3,1,1,0xFF,0xFF,1,1,0xFF,3,3,0xFF,3,3,3,1,0xFF,0xFF,1,1,3,3,1,3,0xFF,0xFF,3,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,3,0xFF,3,3,0xFF,1,3,3,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,0xFF,3,3,1,1,3,3,3,3,1,0xFF,1,3,1,1,3,3,3,3,3,0xFF,0xFF,1,0xFF,3,0xFF,1,3,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,3,3,0xFF,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,1,3,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,1,3,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,0xFF,3,3,3,1,1,1,0xFF,3,0xFF,1,1,3,0xFF,3,3,3,1,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,3,1,3,1,1,0xFF,1,0xFF,1,0xFF,1,1,0xFF,0xFF,3,3,0xFF,1,3,0xFF,3,0xFF,1,3,1,3,0xFF,1,1,3,0xFF,0xFF,3,1,3,0xFF,3,0xFF,1,0xFF,0xFF,1,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,1,3,3,1,0xFF},
en87[] = {0xE9E6,0x3F,0xCBAA,0xE9E7,0xDAF1,0xDAF2,0xE9E4,0xDAF3,0xE9E5,0xE9EA,0xE9ED,0xDAF4,0x3F,0xE9EB,0xDAF5,0xDAF6,0xDAF7,0xE9E9,0xE9E3,0xDAF8,0xDAF9,0x3F,0x3F,0x3F,0xC3D8,0xDAFA,0xE9F4,0x3F,0xCCAA,0x3F,0xDAFB,0xDAFC,0x3F,0xDAFD,0x3F,0xDAFE,0x3F,0xE9F2,0x3F,0x3F,0xDBA1,0xE9F3,0x3F,0x3F,0x3F,0x3F,0xDBA2,0xDBA3,0x3F,0xDBA4,0xDBA5,0x3F,0xE9EE,0x3F,0x3F,0xE9F0,0x3F,0xDBA6,0xDBA7,0xE9F1,0xDBA8,0xDBA9,0xDBAA,0xE9EF,0xDBAB,0x3F,0x3F,0xDBAC,0x3F,0xDBAD,0x3F,0x3F,0x3F,0xC0E6,0x3F,0xCFB9,0xE9F8,0xDBAE,0xE9F9,0x3F,0x3F,0x3F,0x3F,0xEAA1,0x3F,0xBFAA,0x3F,0xE9FB,0xDBAF,0xE9FE,0x3F,0x3F,0x3F,0xDBB0,0x3F,0xE9F6,0xE9F5,0xDBB1,0x3F,0xEAA2,0xDBB2,0xDBB3,0xB2DC,0x3F,0xE9FC,0x3F,0xEAA3,0x3F,0x3F,0x3F,0xE9FD,0xDBB4,0x3F,0xDBB5,0xDBB6,0x3F,0xE9FA,0x3F,0xC4B3,0x3F,0xE9F7,0x3F,0x3F,0xDBB7,0x3F,0x3F,0x3F,0xC7E8,0x3F,0x3F,0xEAA7,0xDBB8,0xDBB9,0xDBBA,0xDBBB,0xDBBC,0xDBBD,0xDBBE,0x3F,0xDBBF,0xDBC0,0xCDBB,0x3F,0x3F,0xDBC1,0x3F,0x3F,0xDBC2,0x3F,0xDBC3,0x3F,0xDBC4,0xDBC5,0xDBC6,0x3F,0x3F,0x3F,0x3F,0xDBC7,0xEAA6,0xDBC8,0x3F,0xEAA5,0xDBC9,0x3F,0x3F,0x3F,0xDBCA,0x3F,0x3F,0x3F,0xEAAE,0xDBCB,0xDBCC,0xDBCD,0xEAA8,0x3F,0xDBCE,0x3F,0xEAB0,0x3F,0xDBCF,0x3F,0x3F,0x3F,0x3F,0xCDE6,0xEAB3,0x3F,0xEAAA,0xDBD0,0xDBD1,0xEAAB,0xDBD2,0x3F,0x3F,0xEAAF,0x3F,0xEAB2,0xEAB1,0xDBD3,0xDBD4,0xDBD5,0xEAA9,0x3F,0x3F,0xDBD6,0x3F,0xEAAC,0x3F,0xEABD,0x3F,0x3F,0xDBD7,0xDBD8,0x3F,0x3F,0xDBD9,0xDBDA,0x3F,0xDBDB,0x3F,0x3F,0xDBDC,0xEAB6,0x3F,0xDBDD,0xDBDE,0xDBDF,0x3F,0x3F,0x3F,0x3F,0x3F,0xDBE0,0xDBE1,0x3F,0xDBE2,0x3F,0xEAB4,0x3F,0xDBE3,0xEAB5,0xDBE4,0x3F,0x3F,0xEABA,0xEABB,0xDBE5,0xB3AA,0xDBE6,0xB5C2,0x3F,0x3F,0xEAB9,0xDBE7},
set87[] = {1,0xFF,1,1,3,3,1,3,1,1,1,3,0xFF,1,3,3,3,1,1,3,3,0xFF,0xFF,0xFF,1,3,1,0xFF,1,0xFF,3,3,0xFF,3,0xFF,3,0xFF,1,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,3,0xFF,1,0xFF,0xFF,1,0xFF,3,3,1,3,3,3,1,3,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,1,1,3,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,1,3,1,0xFF,0xFF,0xFF,3,0xFF,1,1,3,0xFF,1,3,3,1,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,1,3,0xFF,3,3,0xFF,1,0xFF,1,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,3,3,3,3,3,3,3,0xFF,3,3,1,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,3,3,1,0xFF,3,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,1,3,3,1,3,0xFF,0xFF,1,0xFF,1,1,3,3,3,1,0xFF,0xFF,3,0xFF,1,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,3,3,0xFF,3,0xFF,0xFF,3,1,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,0xFF,1,0xFF,3,1,3,0xFF,0xFF,1,1,3,1,3,1,0xFF,0xFF,1,3},
en88[] = {0x3F,0xDBE8,0x3F,0xDBE9,0x3F,0xEAA4,0xDBEA,0x3F,0x3F,0xDBEB,0xDBEC,0xDBED,0x3F,0xEAB8,0xEABC,0xEAB7,0xDBEE,0xEABE,0xDBF0,0xDBF1,0xDBF2,0xEAC0,0xEABF,0x3F,0xDBF3,0xDBEF,0xDBF4,0xDBF5,0xDBF6,0x3F,0xDBF7,0xDBF8,0x3F,0xEAC2,0xEAC1,0xE9DA,0x3F,0x3F,0x3F,0xEAC6,0xDBF9,0x3F,0x3F,0x3F,0x3F,0xDBFA,0xDBFB,0x3F,0xDBFC,0xEAC3,0xDBFD,0x3F,0x3F,0xDBFE,0xEAC4,0x3F,0x3F,0xEAC5,0xDCA1,0xEAC7,0xDCA2,0x3F,0x3F,0x3F,0xB7EC,0xDCA3,0xEAC9,0xDCA4,0xEAC8,0xDCA5,0xBDB0,0x3F,0xDCA6,0xDCA7,0xDCA8,0xDCA9,0xB9D4,0xDEA7,0xDCAA,0x3F,0x3F,0xDCAB,0xEACA,0xBDD1,0x3F,0xDCAC,0xDCAD,0xB3B9,0xDCAE,0xEACB,0xDCAF,0xB1D2,0xDCB0,0xBED7,0xEACC,0xDCB1,0xDCB2,0xB9D5,0xEACD,0xB0E1,0xDCB3,0x3F,0x3F,0x3F,0xC9BD,0xDCB4,0x3F,0xEACE,0x3F,0x3F,0x3F,0x3F,0xBFEA,0xDCB5,0xEAD5,0x3F,0x3F,0xEAD2,0x3F,0xC3EF,0x3F,0xDCB6,0x3F,0xDCB7,0x3F,0xEAD3,0xEAD0,0xB6DE,0xDCB8,0xEACF,0xEAD6,0x3F,0x3F,0x3F,0x3F,0x3F,0xB7B6,0x3F,0x3F,0xC2DE,0x3F,0xEADC,0x3F,0x3F,0x3F,0x3F,0xEAD8,0x3F,0x3F,0x3F,0xC2B5,0xEAD7,0xDCB9,0xEADA,0xDCBA,0xDCBB,0xDCBC,0x3F,0xEAD1,0xDCBD,0xDCBE,0x3F,0xEADB,0x3F,0xEADD,0x3F,0x3F,0x3F,0xDCBF,0x3F,0xDCC0,0xC8EF,0x3F,0x3F,0xEAD9,0x3F,0xEADE,0xEAE0,0x3F,0x3F,0xB8D3,0xEAD4,0x3F,0xB0C1,0x3F,0x3F,0xDCC1,0x3F,0x3F,0xDCC2,0xDCC3,0xEADF,0xDCC4,0xBADB,0xCEF6,0xEAE1,0xEAE2,0xC1F5,0x3F,0x3F,0x3F,0x3F,0xDCC5,0xDCC6,0xDCC7,0xDCC8,0xDCC9,0xCEA2,0x3F,0xDCCA,0xDCCB,0xDCCC,0xEAE3,0xCDB5,0x3F,0x3F,0xEAE4,0xEAE5,0x3F,0xDCCD,0xCAE4,0xEAE6,0xDCCE,0xBAC0,0x3F,0xCEA3,0x3F,0x3F,0x3F,0x3F,0x3F,0xDCCF,0xEAEB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDCD0,0xDCD1,0xDCD2,0xEAEC,0xBED8,0xEAEA,0xDCD3,0x3F,0xDCD4,0xCDE7,0xEAE7,0x3F,0x3F,0xEAE9,0xC0BD,0xBFFE,0x3F},
set88[] = {0xFF,3,0xFF,3,0xFF,1,3,0xFF,0xFF,3,3,3,0xFF,1,1,1,3,1,3,3,3,1,1,0xFF,3,3,3,3,3,0xFF,3,3,0xFF,1,1,1,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,1,3,0xFF,0xFF,3,1,0xFF,0xFF,1,3,1,3,0xFF,0xFF,0xFF,1,3,1,3,1,3,1,0xFF,3,3,3,3,1,1,3,0xFF,0xFF,3,1,1,0xFF,3,3,1,3,1,3,1,3,1,1,3,3,1,1,1,3,0xFF,0xFF,0xFF,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,0xFF,1,0xFF,1,0xFF,3,0xFF,3,0xFF,1,1,1,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,1,3,1,3,3,3,0xFF,1,3,3,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,3,1,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,1,1,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,3,3,1,3,1,1,1,1,1,0xFF,0xFF,0xFF,0xFF,3,3,3,3,3,1,0xFF,3,3,3,1,1,0xFF,0xFF,1,1,0xFF,3,1,1,3,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,1,1,1,3,0xFF,3,1,1,0xFF,0xFF,1,1,1,0xFF},
en89[] = {0x3F,0xDCD5,0xEAE8,0x3F,0xEAED,0x3F,0xDCD6,0xCAA3,0x3F,0x3F,0xEAEF,0x3F,0xEAEE,0xDCD7,0xDCD8,0xDCD9,0xB3EC,0x3F,0xCBAB,0xEAF0,0x3F,0xDCDA,0xDCDB,0x3F,0xDCDC,0xDCDD,0xDCDE,0x3F,0xDCDF,0xEAFC,0xEAF2,0x3F,0xDCE0,0x3F,0x3F,0x3F,0x3F,0xEAF3,0xDCE1,0xDCE2,0xDCE3,0x3F,0xEAF4,0xEAF5,0x3F,0x3F,0x3F,0x3F,0xDCE4,0xDCE5,0xDCE6,0x3F,0x3F,0xDCE7,0xEAF9,0x3F,0xEAFA,0xDCE8,0xDCE9,0xEAF8,0x3F,0x3F,0xDCEA,0x3F,0xDCEB,0xEAF6,0xDCEC,0xEAF1,0xEAF7,0xDCED,0xDCEE,0x3F,0x3F,0xDCEF,0x3F,0x3F,0xEAFB,0xF0B7,0x3F,0xDCF0,0x3F,0x3F,0xDCF1,0x3F,0x3F,0x3F,0xB2A8,0xDCF2,0x3F,0x3F,0xDCF3,0xDCF4,0xDCF5,0x3F,0xEAFE,0xB6DF,0xEAFD,0xDCF6,0xDCF7,0xDCF8,0xEBA2,0x3F,0xEBA1,0x3F,0x3F,0x3F,0xEBA4,0xDCF9,0x3F,0xEBA3,0xDCFA,0xEBA5,0xDCFB,0x3F,0xBDB1,0xDCFC,0xEBA6,0xDCFD,0x3F,0xEBA7,0x3F,0x3F,0xDCFE,0xDDA1,0xDDA2,0xDDA3,0xEBA8,0xC0BE,0x3F,0xCDD7,0x3F,0xEBA9,0x3F,0x3F,0xCAA4,0xC7C6,0xEBAA,0xDDA4,0xEBAB,0xB8AB,0x3F,0xDDA5,0x3F,0xB5AC,0xDDA6,0x3F,0x3F,0xEBAC,0xDDA7,0xDDA8,0xBBEB,0xC7C1,0xEBAD,0x3F,0xB3D0,0xDDA9,0xDDAA,0x3F,0x3F,0xDDAB,0xDDAC,0xEBAE,0x3F,0x3F,0x3F,0xDDAD,0xEBB0,0xCDF7,0x3F,0xEBAF,0xBFC6,0x3F,0xEBB1,0x3F,0x3F,0xEBB2,0xDDAE,0x3F,0xEBB3,0xB4D1,0xDDAF,0xDDB0,0xDDB1,0xDDB2,0x3F,0x3F,0xEBB4,0x3F,0xDDB3,0xEBB5,0x3F,0xEBB6,0xEBB7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB3D1,0x3F,0xDDB4,0xDDB5,0xDDB6,0xDDB7,0xDDB8,0x3F,0xEBB8,0x3F,0xEBB9,0xEBBA,0x3F,0x3F,0x3F,0x3F,0x3F,0xB2F2,0x3F,0xDDB9,0xBFA8,0xEBBB,0x3F,0xDDBA,0x3F,0xDDBB,0x3F,0xDDBC,0x3F,0x3F,0x3F,0xDDBD,0x3F,0xDDBE,0xEBBC,0x3F,0xDDBF,0x3F,0xEBBD,0xDDC0,0x3F,0x3F,0x3F,0xDDC1,0x3F,0xDDC2},
set89[] = {0xFF,3,1,0xFF,1,0xFF,3,1,0xFF,0xFF,1,0xFF,1,3,3,3,1,0xFF,1,1,0xFF,3,3,0xFF,3,3,3,0xFF,3,1,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,3,3,3,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,3,1,0xFF,1,3,3,1,0xFF,0xFF,3,0xFF,3,1,3,1,1,3,3,0xFF,0xFF,3,0xFF,0xFF,1,1,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,3,3,3,0xFF,1,1,1,3,3,3,1,0xFF,1,0xFF,0xFF,0xFF,1,3,0xFF,1,3,1,3,0xFF,1,3,1,3,0xFF,1,0xFF,0xFF,3,3,3,3,1,1,0xFF,1,0xFF,1,0xFF,0xFF,1,1,1,3,1,1,0xFF,3,0xFF,1,3,0xFF,0xFF,1,3,3,1,1,1,0xFF,1,3,3,0xFF,0xFF,3,3,1,0xFF,0xFF,0xFF,3,1,1,0xFF,1,1,0xFF,1,0xFF,0xFF,1,3,0xFF,1,1,3,3,3,3,0xFF,0xFF,1,0xFF,3,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,3,3,3,3,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,1,1,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,3,1,0xFF,3,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,3},
en8A[] = {0xB8C0,0x3F,0xC4FB,0xEBBE,0xDDC3,0xDDC4,0x3F,0xDDC5,0xB7D7,0x3F,0xBFD6,0x3F,0xEBC1,0x3F,0xC6A4,0xDDC6,0xEBC0,0xDDC7,0xDDC8,0xB7B1,0xDDC9,0xDDCA,0xEBBF,0xC2F7,0xB5AD,0x3F,0x3F,0xEBC2,0x3F,0xEBC3,0xDDCB,0xBED9,0xDDCC,0x3F,0xDDCD,0xB7ED,0xDDCE,0xEBC4,0xDDCF,0x3F,0x3F,0x3F,0xCBAC,0xDDD0,0xDDD1,0xC0DF,0x3F,0xDDD2,0x3F,0xB5F6,0x3F,0xCCF5,0xC1CA,0xDDD3,0xEBC5,0xDDD4,0x3F,0x3F,0xBFC7,0xC3F0,0xBEDA,0xDDD5,0xDDD6,0x3F,0xDDD7,0xEBC6,0x3F,0xDDD8,0x3F,0xDDD9,0xEBC9,0xDDDA,0xEBCA,0xDDDB,0x3F,0x3F,0x3F,0xDDDC,0xDDDD,0x3F,0xBABE,0xC2C2,0xEBC8,0xDDDE,0xBEDB,0xC9BE,0xDDDF,0xDDE0,0xDDE1,0x3F,0x3F,0xEBC7,0xDDE2,0xDDE3,0xBBEC,0x3F,0xB1D3,0xDDE4,0xEBCE,0xB7D8,0x3F,0xDDE5,0xBBEE,0xDDE6,0x3F,0xBBED,0x3F,0xCFCD,0xEBCD,0xEBCC,0xC1A7,0x3F,0xB5CD,0xCFC3,0xB3BA,0xBEDC,0x3F,0xDDE7,0xDDE8,0xDDE9,0x3F,0xDDEA,0xDDEB,0xDDEC,0xEBCB,0x3F,0xDDED,0xDDEE,0xDDEF,0x3F,0xEBD0,0xDDF0,0xEBD1,0xEBCF,0xDDF1,0xB8D8,0x3F,0xCDC0,0x3F,0xDDF2,0xBBEF,0xC7A7,0x3F,0xDDF3,0xDDF4,0xEBD4,0xDDF5,0xC0C0,0x3F,0xC3C2,0xDDF6,0xDDF7,0xCDB6,0xDDF8,0xEBD7,0x3F,0x3F,0x3F,0xB8EC,0xDDF9,0xC0BF,0xEBD3,0x3F,0xEBD8,0xB8ED,0xEBD5,0xEBD6,0xDDFA,0xEBD2,0xDDFB,0x3F,0x3F,0xC0E2,0xC6C9,0xDDFC,0xDDFD,0xC3AF,0x3F,0xB2DD,0xDDFE,0x3F,0x3F,0xDEA1,0xDEA2,0x3F,0xC8F0,0x3F,0xDEA3,0xB5C3,0x3F,0xDEA4,0xC4B4,0x3F,0x3F,0xEBDB,0xDEA5,0xEBD9,0x3F,0xDEA6,0xC3CC,0xDEA7,0xDEA8,0xDEA9,0xC0C1,0xB4D2,0xEBDA,0x3F,0xBFDB,0x3F,0xDEAA,0xCECA,0xDEAB,0xDEAC,0xDEAD,0xCFC0,0xDEAE,0x3F,0x3F,0xEBDC,0xEBE7,0xC4B5,0xDEAF,0xEBE6,0xDEB0,0xEBE3,0xEBEB,0xEBE4,0x3F,0xEBE0,0x3F,0xC4FC,0xEBDF,0x3F,0x3F,0x3F,0xEBDD,0xDEB1,0xCDA1,0xBBF0,0x3F,0xDEB2,0xEBE1,0x3F,0xEBDE,0xDEB3,0xDEB4,0xDEB5,0xEBE5,0xBDF4,0x3F,0xB8C1,0x3F,0xDEB6,0x3F,0xC2FA,0xDEB7},
set8A[] = {1,0xFF,1,1,3,3,0xFF,3,1,0xFF,1,0xFF,1,0xFF,1,3,1,3,3,1,3,3,1,1,1,0xFF,0xFF,1,0xFF,1,3,1,3,0xFF,3,1,3,1,3,0xFF,0xFF,0xFF,1,3,3,1,0xFF,3,0xFF,1,0xFF,1,1,3,1,3,0xFF,0xFF,1,1,1,3,3,0xFF,3,1,0xFF,3,0xFF,3,1,3,1,3,0xFF,0xFF,0xFF,3,3,0xFF,1,1,1,3,1,1,3,3,3,0xFF,0xFF,1,3,3,1,0xFF,1,3,1,1,0xFF,3,1,3,0xFF,1,0xFF,1,1,1,1,0xFF,1,1,1,1,0xFF,3,3,3,0xFF,3,3,3,1,0xFF,3,3,3,0xFF,1,3,1,1,3,1,0xFF,1,0xFF,3,1,1,0xFF,3,3,1,3,1,0xFF,1,3,3,1,3,1,0xFF,0xFF,0xFF,1,3,1,1,0xFF,1,1,1,1,3,1,3,0xFF,0xFF,1,1,3,3,1,0xFF,1,3,0xFF,0xFF,3,3,0xFF,1,0xFF,3,1,0xFF,3,1,0xFF,0xFF,1,3,1,0xFF,3,1,3,3,3,1,1,1,0xFF,1,0xFF,3,1,3,3,3,1,3,0xFF,0xFF,1,1,1,3,1,3,1,1,1,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,1,3,1,1,0xFF,3,1,0xFF,1,3,3,3,1,1,0xFF,1,0xFF,3,0xFF,1,3},
en8B[] = {0xCBC5,0xB1DA,0xB0E2,0x3F,0xC6A5,0xDEB8,0xDEB9,0xEBE9,0x3F,0x3F,0xDEBF,0xDEBA,0xEBE8,0x3F,0xC6E6,0x3F,0xEBED,0xDEBB,0x3F,0x3F,0xEBE2,0x3F,0xEBEC,0xEBEE,0x3F,0xB8AC,0xEBEA,0xB9D6,0xDEBC,0xBCD5,0xDEBD,0xDEBE,0xEBEF,0xCDD8,0x3F,0x3F,0x3F,0x3F,0xEBF2,0x3F,0xEBF5,0x3F,0x3F,0xEBF3,0xC9B5,0xDEC0,0x3F,0x3F,0xDEC1,0x3F,0x3F,0xEBF0,0x3F,0x3F,0x3F,0xDEC2,0x3F,0xB6E0,0x3F,0x3F,0xDEC3,0x3F,0xEBF4,0x3F,0x3F,0xEBF6,0xDEC4,0xDEC5,0xDEC6,0xDEC7,0xDEC8,0x3F,0xDEC9,0xEBFA,0x3F,0x3F,0xEBF7,0xDECE,0xEBF9,0xEBF8,0x3F,0x3F,0xDECA,0xDECB,0xDECC,0x3F,0xEBFB,0x3F,0xBCB1,0xDECD,0xEBFD,0xEBFC,0xC9E8,0x3F,0xDECF,0xECA1,0x3F,0x3F,0x3F,0xDED0,0x3F,0x3F,0xB7D9,0x3F,0x3F,0x3F,0x3F,0xEBFE,0xECA2,0xDED1,0x3F,0xECA3,0xB5C4,0xE6C1,0xBEF9,0x3F,0xECA4,0x3F,0xDED2,0xB8EE,0xDED3,0xDED4,0x3F,0x3F,0xDED5,0xECA5,0xDED6,0x3F,0xECA6,0xDED7,0x3F,0xBBBE,0xDED8,0xDED9,0x3F,0x3F,0x3F,0x3F,0xDACE,0xDEDA,0xECA7,0xDEDB,0xECA8,0xDEDC,0xBDB2,0x3F,0xECA9,0xECAA,0xDEDD,0xDEDE,0xECAB,0x3F,0x3F,0xECAC,0xECAD,0x3F,0xDEDF,0x3F,0xDEE0,0xDEE1,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set8B[] = {1,1,1,0xFF,1,3,3,1,0xFF,0xFF,3,3,1,0xFF,1,0xFF,1,3,0xFF,0xFF,1,0xFF,1,1,0xFF,1,1,1,3,1,3,3,1,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,1,1,3,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,1,3,3,3,3,3,0xFF,3,1,0xFF,0xFF,1,3,1,1,0xFF,0xFF,3,3,3,0xFF,1,0xFF,1,3,1,1,1,0xFF,3,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,1,3,0xFF,1,1,1,1,0xFF,1,0xFF,3,1,3,3,0xFF,0xFF,3,1,3,0xFF,1,3,0xFF,1,3,3,0xFF,0xFF,0xFF,0xFF,1,3,1,3,1,3,1,0xFF,1,1,3,3,1,0xFF,0xFF,1,1,0xFF,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en8C[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC3AB,0xDEE2,0xDEE3,0xECAE,0x3F,0x3F,0xDEE4,0xDEE5,0xECB0,0x3F,0xECAF,0x3F,0x3F,0x3F,0xDEE6,0xC6A6,0xDEE7,0xECB1,0xDEE8,0xCBAD,0xDEE9,0xECB2,0x3F,0xECB3,0xDEEA,0xECB4,0xDEEB,0x3F,0xDEEC,0xDEED,0xECB5,0x3F,0xDEEE,0xDEEF,0xDEF2,0xC6DA,0xDEF0,0x3F,0xDEF1,0x3F,0x3F,0x3F,0xBEDD,0xECB6,0xDEF3,0xDEF4,0x3F,0xDEF5,0x3F,0xDEF6,0xDEF7,0xB9EB,0xD0AE,0xECB7,0xDEF8,0x3F,0x3F,0x3F,0x3F,0x3F,0xDEF9,0x3F,0xDEFA,0xDEFB,0x3F,0xECB8,0xC9BF,0xECB9,0xDEFC,0xECC1,0x3F,0xDEFD,0x3F,0x3F,0x3F,0xECBA,0x3F,0x3F,0xECBC,0xDEFE,0xDFA1,0x3F,0xECBB,0xECBD,0xDFA2,0xCBC6,0xECBE,0xECBF,0x3F,0xDFA3,0x3F,0xDFA4,0xDFA5,0xECC0,0x3F,0x3F,0x3F,0xECC2,0xDFA6,0x3F,0xDFA7,0xDFA8,0xB3AD,0xC4E7,0x3F,0xC9E9,0xBAE2,0xB9D7,0x3F,0xDFA9,0x3F,0x3F,0xC9CF,0xB2DF,0xC8CE,0xECC5,0xB4D3,0xC0D5,0xECC4,0xECC9,0xC3F9,0xCCE3,0x3F,0xECC7,0xECC8,0xB5AE,0x3F,0xECCA,0xC7E3,0xC2DF,0xDFAA,0xDFAB,0xC8F1,0xC5BD,0xECC6,0x3F,0xCBC7,0xB2EC,0xECCC,0xCFA8,0xC4C2,0xCFC5,0xDFAC,0xDFAD,0xBBF1,0xECCB,0xDFAE,0xC2B1,0xDFAF,0x3F,0xECDC,0xC1A8,0xDFB0,0x3F,0xC6F8,0x3F,0xC9D0,0x3F,0xDFB2,0xDFB1,0x3F,0x3F,0xDFB3,0xECCF,0xBBBF,0xBBF2,0xDFB4,0xBEDE,0x3F,0xC7E5,0xDFB5,0xB8AD,0xECCE,0xECCD,0x3F,0xC9EA,0x3F,0xDFB6,0x3F,0xBCC1,0x3F,0xDFB7,0xC5D2,0x3F,0xDFB8,0xDFB9,0x3F,0xDFBA,0x3F,0x3F,0xDFBB,0x3F,0xDFBC,0xDFBD,0x3F,0xECD1,0xECD2,0xB9D8,0xECD0,0xDFBE,0xDFBF},
set8C[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,1,0xFF,0xFF,3,3,1,0xFF,1,0xFF,0xFF,0xFF,3,1,3,1,3,1,3,1,0xFF,1,3,1,3,0xFF,3,3,1,0xFF,3,3,3,1,3,0xFF,3,0xFF,0xFF,0xFF,1,1,3,3,0xFF,3,0xFF,3,3,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,0xFF,1,1,1,3,1,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,3,3,0xFF,1,1,3,1,1,1,0xFF,3,0xFF,3,3,1,0xFF,0xFF,0xFF,1,3,0xFF,3,3,1,1,0xFF,1,1,1,0xFF,3,0xFF,0xFF,1,1,1,1,1,1,1,1,1,1,0xFF,1,1,1,0xFF,1,1,1,3,3,1,1,1,0xFF,1,1,1,1,1,1,3,3,1,1,3,1,3,0xFF,1,1,3,0xFF,1,0xFF,1,0xFF,3,3,0xFF,0xFF,3,1,1,1,3,1,0xFF,1,3,1,1,1,0xFF,1,0xFF,3,0xFF,1,0xFF,3,1,0xFF,3,3,0xFF,3,0xFF,0xFF,3,0xFF,3,3,0xFF,1,1,1,1,3,3},
en8D[] = {0x3F,0xDFC0,0x3F,0xDFC1,0xECD3,0xECD4,0x3F,0xECD6,0xC2A3,0xDFC2,0xECD5,0xB4E6,0x3F,0xECD8,0x3F,0xECD7,0xECD9,0x3F,0xDFC3,0xECDB,0xECDD,0x3F,0xECDE,0xDFC4,0x3F,0x3F,0x3F,0xDFC5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC0D6,0xDFC6,0xBCCF,0xECDF,0x3F,0xDFC7,0x3F,0xB3D2,0xDFC8,0xECE0,0xDFC9,0x3F,0xC1F6,0xECE1,0x3F,0xECE2,0xC9EB,0x3F,0x3F,0xB5AF,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xDFCA,0x3F,0xECE3,0xDFCB,0x3F,0xDFCC,0xC4B6,0x3F,0x3F,0xDFCD,0x3F,0xB1DB,0x3F,0x3F,0xDFCE,0x3F,0x3F,0xDFCF,0xDFD0,0x3F,0x3F,0x3F,0xDFD1,0x3F,0x3F,0x3F,0xECE4,0x3F,0x3F,0x3F,0x3F,0xDFD2,0xDFD3,0xDFD4,0x3F,0x3F,0xBCF1,0x3F,0x3F,0xDFD5,0x3F,0xBFF6,0x3F,0x3F,0xDFD6,0xDFD7,0x3F,0x3F,0xDFD8,0x3F,0x3F,0xDFD9,0xC2AD,0x3F,0xDFDA,0x3F,0xDFDB,0x3F,0xDFDC,0xECE7,0xDFDD,0xDFEF,0x3F,0xECE6,0x3F,0xDFDE,0x3F,0xECE5,0x3F,0x3F,0xDFDF,0xDFE0,0xDFE1,0xDFE2,0x3F,0xDFE3,0xECED,0xECEB,0x3F,0xDFE4,0xECE8,0x3F,0xDFE5,0x3F,0x3F,0xDFE6,0xDFE7,0xECEA,0xDFE8,0x3F,0xDFE9,0xECE9,0xECEC,0x3F,0xB5F7,0x3F,0xECF0,0x3F,0xC0D7,0x3F,0xECF1,0xDFEA,0xDFEB,0x3F,0xDFEC,0xB8D9,0x3F,0xECEE,0xECEF,0xDFED,0x3F,0x3F,0xCFA9,0xDFEE,0xDFF0,0xDFF1,0xC4B7,0xDFF2,0xC1A9,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xECF2,0xDFF3,0x3F,0xECF5},
set8D[] = {0xFF,3,0xFF,3,1,1,0xFF,1,1,3,1,1,0xFF,1,0xFF,1,1,0xFF,3,1,1,0xFF,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,1,1,0xFF,3,0xFF,1,3,1,3,0xFF,1,1,0xFF,1,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,0xFF,3,1,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,3,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,3,1,0xFF,3,0xFF,3,0xFF,3,1,3,3,0xFF,1,0xFF,3,0xFF,1,0xFF,0xFF,3,3,3,3,0xFF,3,1,1,0xFF,3,1,0xFF,3,0xFF,0xFF,3,3,1,3,0xFF,3,1,1,0xFF,1,0xFF,1,0xFF,1,0xFF,1,3,3,0xFF,3,1,0xFF,1,1,3,0xFF,0xFF,1,3,3,3,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1},
en8E[] = {0x3F,0xDFF4,0x3F,0x3F,0xDFF5,0xDFF6,0xDFF7,0x3F,0xECF3,0xECF4,0xCDD9,0xDFF8,0x3F,0x3F,0x3F,0xC6A7,0xECF8,0xDFF9,0x3F,0x3F,0xDFFA,0x3F,0xDFFB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xECF6,0xECF7,0xECF9,0xDFFC,0xDFFD,0xDFFE,0xE0A1,0x3F,0x3F,0xE0A2,0xE0A3,0x3F,0x3F,0xEDA9,0x3F,0x3F,0x3F,0x3F,0x3F,0xECFC,0xE0A4,0x3F,0xE0A5,0xECFD,0xECFB,0xE0A6,0xE0A7,0xE0A8,0xE0A9,0x3F,0x3F,0x3F,0xE0AA,0x3F,0x3F,0xE0AB,0xE0AC,0xECFA,0x3F,0xC4FD,0x3F,0x3F,0xEDA1,0xEDA5,0xEDA2,0xECFE,0xE0AD,0xEDA3,0xE0AE,0xE0AF,0xE0B0,0xEDA4,0x3F,0x3F,0x3F,0xE0B1,0xEDAB,0x3F,0x3F,0x3F,0xEDA6,0x3F,0xE0B2,0xE0B3,0xE0B4,0xE0B5,0xC0D8,0xEDA8,0xE0B6,0xE0B7,0xEDAA,0xEDA7,0x3F,0x3F,0x3F,0x3F,0xE0B8,0x3F,0x3F,0xE0B9,0xE0BA,0x3F,0xE0BB,0xE0BC,0xE0BD,0xEDAD,0x3F,0xBDB3,0x3F,0xEDAC,0x3F,0x3F,0xE0BE,0xE0BF,0xE0C0,0xEDAE,0x3F,0x3F,0x3F,0x3F,0xEDAF,0xE0C1,0xE0C2,0xEDB2,0xEDB1,0x3F,0xEDB0,0x3F,0xE0C3,0xEDB4,0xEDB3,0x3F,0xCCF6,0x3F,0x3F,0xE0C4,0xEDB6,0xE0C5,0xEDB5,0xEDB7,0xE0C6,0x3F,0x3F,0x3F,0xEDB8,0xE0C7,0xE0C8,0x3F,0xE0C9,0xE0CA,0x3F,0x3F,0xEDBA,0xE0CB,0x3F,0x3F,0x3F,0x3F,0xE0CC,0x3F,0xE0CD,0xEDB9,0xBFC8,0xEDBB,0xE0CE,0xE0CF,0xB6ED,0xEDBC,0xEDBE,0x3F,0xE0D0,0x3F,0xE0D1,0x3F,0x3F,0x3F,0x3F,0xE0D2,0xE0D3,0x3F,0x3F,0xEDBF,0x3F,0xE0D4,0xE0D5,0x3F,0xE0D6,0xE0D7,0xEDC0,0xEDBD,0xE0D8,0xEDC1,0x3F,0xBCD6,0xEDC2,0xB5B0,0xB7B3,0x3F,0xE0D9,0x3F,0xE0DA,0xB8AE,0x3F,0xE0DB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xEDC3,0xE0DC,0x3F,0x3F,0xC6F0,0x3F,0x3F,0xC5BE,0xEDC4,0x3F,0x3F,0x3F,0x3F,0xE0DD,0x3F,0x3F,0xEDC7,0x3F,0xE0E4,0xE0DE,0x3F,0xE0DF,0xE0E0,0x3F,0x3F,0x3F,0x3F,0x3F,0xE0E1,0xBCB4,0xE0E2,0xE0E3,0xEDC6,0xEDC5,0xB7DA,0xEDC8,0x3F},
set8E[] = {0xFF,3,0xFF,0xFF,3,3,3,0xFF,1,1,1,3,0xFF,0xFF,0xFF,1,1,3,0xFF,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,3,3,3,3,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,3,1,1,3,3,3,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,1,0xFF,1,0xFF,0xFF,1,1,1,1,3,1,3,3,3,1,0xFF,0xFF,0xFF,3,1,0xFF,0xFF,0xFF,1,0xFF,3,3,3,3,1,1,3,3,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,0xFF,3,3,3,1,0xFF,1,0xFF,1,0xFF,0xFF,3,3,3,1,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,0xFF,1,0xFF,3,1,1,0xFF,1,0xFF,0xFF,3,1,3,1,1,3,0xFF,0xFF,0xFF,1,3,3,0xFF,3,3,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,1,1,1,3,3,1,1,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,3,3,0xFF,3,3,1,1,3,1,0xFF,1,1,1,1,0xFF,3,0xFF,3,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,3,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,3,1,1,1,1,0xFF},
en8F[] = {0xE0E5,0x3F,0xE0E6,0xB3D3,0x3F,0xEDCA,0x3F,0xE0E7,0xE0E8,0xBADC,0xEDC9,0x3F,0xEDD2,0x3F,0x3F,0xE0E9,0xE0EA,0x3F,0xEDCC,0xEDCE,0xCAE5,0xEDCB,0xE0EB,0xE0EC,0xE0ED,0xEDCD,0x3F,0xEDD1,0xEDCF,0xB5B1,0xE0EE,0xEDD0,0xE0EF,0xE0F0,0x3F,0xE0F1,0x3F,0xE0F2,0xEDD3,0xE0F3,0xE0F4,0xC7DA,0xCED8,0x3F,0xE0F5,0xE0F6,0xE0F7,0xBDB4,0x3F,0x3F,0x3F,0xEDD4,0xE0F8,0xE0F9,0xE0FA,0xE0FB,0xCDA2,0xEDD6,0xE0FC,0xEDD5,0x3F,0x3F,0xEDD9,0xCDC1,0xE0FD,0xE0FE,0xEDD8,0xE1A1,0xB3ED,0xEDD7,0xEDDC,0xE1A2,0x3F,0xEDDB,0x3F,0x3F,0xEDDA,0xC5B2,0xEDDD,0xE1A3,0x3F,0xE1A4,0xE1A5,0xE1A6,0xE1A7,0xE1A8,0x3F,0xEDDE,0xE1A9,0x3F,0x3F,0x3F,0xEDDF,0xE1AA,0xE1AB,0xB9EC,0x3F,0xB7A5,0xEDE0,0xEDE1,0xEDE2,0xE1AC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBFC9,0xEDE3,0xE1AD,0xBCAD,0xEDE4,0xE1AE,0xE1AF,0x3F,0xEDE5,0xE1B0,0xE1B1,0xE1B2,0xD2A1,0xD1FE,0x3F,0x3F,0x3F,0x3F,0xEDE6,0xE5F0,0xEDE7,0xC3A4,0xBFAB,0xC7C0,0x3F,0x3F,0xE1B3,0xE1B4,0xEDE8,0xE1B5,0x3F,0xCAD5,0xC4D4,0xB9FE,0x3F,0xE1B6,0xC3A9,0xE1B7,0xE1B8,0xB1AA,0x3F,0xCBF8,0xBFD7,0xE1B9,0x3F,0x3F,0x3F,0xE1BA,0xE1BB,0x3F,0xE1BC,0xB7DE,0x3F,0xE1BD,0xB6E1,0xE1BE,0xE1BF,0xCAD6,0xE1C0,0x3F,0x3F,0x3F,0x3F,0xEDE9,0x3F,0x3F,0x3F,0x3F,0x3F,0xE1C1,0x3F,0xEDEB,0xE1C2,0xE1C3,0xEDEA,0xB2E0,0x3F,0xE1C4,0xC6F6,0xEDEC,0xC7F7,0x3F,0xC5B3,0xE1C5,0xEDED,0xBDD2,0xE1C6,0x3F,0x3F,0xEDEF,0xE1C7,0xE1C8,0xCCC2,0xEDFE,0xEDF1,0xEDF2,0xE1C9,0x3F,0xC4C9,0xE1CA,0x3F},
set8F[] = {3,0xFF,3,1,0xFF,1,0xFF,3,3,1,1,0xFF,1,0xFF,0xFF,3,3,0xFF,1,1,1,1,3,3,3,1,0xFF,1,1,1,3,1,3,3,0xFF,3,0xFF,3,1,3,3,1,1,0xFF,3,3,3,1,0xFF,0xFF,0xFF,1,3,3,3,3,1,1,3,1,0xFF,0xFF,1,1,3,3,1,3,1,1,1,3,0xFF,1,0xFF,0xFF,1,1,1,3,0xFF,3,3,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,1,3,3,1,0xFF,1,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,1,1,3,3,0xFF,1,3,3,3,1,1,0xFF,0xFF,0xFF,0xFF,1,1,1,1,1,1,0xFF,0xFF,3,3,1,3,0xFF,1,1,1,0xFF,3,1,3,3,1,0xFF,1,1,3,0xFF,0xFF,0xFF,3,3,0xFF,3,1,0xFF,3,1,3,3,1,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,3,1,1,0xFF,3,1,1,1,0xFF,1,3,1,1,3,0xFF,0xFF,1,3,3,1,1,1,1,3,0xFF,1,3,0xFF},
en90[] = {0xC2E0,0xC1F7,0xE1CB,0xC6A8,0xE1CC,0xEDF0,0xB5D5,0x3F,0xE1CD,0x3F,0x3F,0xEDF9,0xE1CE,0xEDF6,0xEEA5,0xC6A9,0xC3E0,0xEDF3,0x3F,0xC4FE,0xC5D3,0xEDF4,0xEDF8,0xBFE0,0xE1CF,0xC7E7,0xC4CC,0xE1D0,0x3F,0xC0C2,0xEDF7,0xC2AE,0xC2A4,0xEDF5,0xB0A9,0xCFA2,0x3F,0x3F,0x3F,0xEDFA,0xE1D1,0xE1D2,0xE1D4,0x3F,0xE1D5,0xE1D6,0xC2E1,0xE1D3,0x3F,0xBDB5,0xBFCA,0xE1D7,0xE1D8,0xEDFC,0xEDFB,0xE1D9,0xB0EF,0xEDFD,0x3F,0x3F,0xC9AF,0x3F,0xEEA7,0xE1DA,0x3F,0xC6DB,0xBFEB,0xE1DB,0xE1DC,0xC3D9,0x3F,0xB6F8,0x3F,0xEEA6,0xCDB7,0xB1BF,0xE1DD,0xCAD7,0xB2E1,0xEEA1,0xEEA2,0xEEA3,0xEEA4,0xC6BB,0xC3A3,0xB0E3,0xEEA8,0x3F,0xEEA9,0xF4A3,0x3F,0xE1DE,0xC2BD,0xE1DF,0xEEAA,0x3F,0xB1F3,0xC1CC,0xE1E0,0xB8AF,0x3F,0xCDDA,0xE1E1,0xE1E2,0xEEAB,0xC5AC,0x3F,0x3F,0xE1E3,0xC1F8,0xBCD7,0xEEAC,0xE1E4,0x3F,0xEEAF,0x3F,0xE1E5,0xBDE5,0xEEAD,0xC1AB,0xC1AA,0xE1E6,0xB0E4,0x3F,0xCECB,0xEEB1,0x3F,0xC8F2,0xEEB3,0xEEB2,0xEEB0,0xE3E4,0xB4D4,0xE1E7,0x3F,0xEDEE,0xE1E8,0xEEB5,0xEEB4,0xE1E9,0xE1EA,0x3F,0xE1EB,0xEEB6,0xE1EC,0xCDB8,0x3F,0x3F,0x3F,0xE1ED,0x3F,0xE1EE,0xE1EF,0xE1F0,0x3F,0xE1F1,0x3F,0x3F,0x3F,0x3F,0xE1F2,0xE1F3,0xE1F4,0xC6E1,0x3F,0xE1F5,0xCBAE,0x3F,0xEEB7,0x3F,0xBCD9,0x3F,0x3F,0x3F,0x3F,0xEEB8,0xE1F6,0xEEB9,0xE1F7,0xE1F8,0xE1F9,0xEEBA,0xE1FA,0x3F,0xC5A1,0x3F,0x3F,0x3F,0x3F,0xE1FB,0xE1FD,0x3F,0x3F,0xB0EA,0x3F,0xE1FE,0xE2A1,0xE2A2,0x3F,0xE2A3,0xE2A4,0x3F,0xB9D9,0x3F,0xE1FC,0x3F,0xCFBA,0x3F,0x3F,0x3F,0xE2AD,0x3F,0x3F,0xE2A5,0x3F,0xE2A6,0xE2A7,0xE2A8,0x3F,0xEEBE,0xE2A9,0xE2AA,0x3F,0xE2AB,0x3F,0xB7B4,0xEEBB,0x3F,0xEEBC,0xE2AC,0x3F,0x3F,0xC9F4,0x3F,0x3F,0xE2AF,0x3F,0xB3D4,0x3F,0xE2B0,0xE2B1,0x3F,0x3F,0x3F,0xE2B2,0xCDB9,0xE2AE,0xB6BF,0x3F,0x3F,0x3F,0x3F,0x3F,0xC5D4,0xE2B3,0xE2B4},
set90[] = {1,1,3,1,3,1,1,0xFF,3,0xFF,0xFF,1,3,1,1,1,1,1,0xFF,1,1,1,1,1,3,1,1,3,0xFF,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,1,3,3,3,0xFF,3,3,1,3,0xFF,1,1,3,3,1,1,3,1,1,0xFF,0xFF,1,0xFF,1,3,0xFF,1,1,3,3,1,0xFF,1,0xFF,1,1,1,3,1,1,1,1,1,1,1,1,1,1,0xFF,1,1,0xFF,3,1,3,1,0xFF,1,1,3,1,0xFF,1,3,3,1,1,0xFF,0xFF,3,1,1,1,3,0xFF,1,0xFF,3,1,1,1,1,3,1,0xFF,1,1,0xFF,1,1,1,1,1,1,3,0xFF,1,3,1,1,3,3,0xFF,3,1,3,1,0xFF,0xFF,0xFF,3,0xFF,3,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,3,1,0xFF,3,1,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,1,3,3,3,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,3,3,3,0xFF,3,3,0xFF,1,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,3,3,3,0xFF,1,3,3,0xFF,3,0xFF,1,1,0xFF,1,3,0xFF,0xFF,1,0xFF,0xFF,3,0xFF,1,0xFF,3,3,0xFF,0xFF,0xFF,3,1,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3},
en91[] = {0xE2B5,0x3F,0xEEBF,0x3F,0xE2B6,0xE2B7,0xE2B8,0x3F,0xE2B9,0x3F,0x3F,0x3F,0x3F,0xE2BA,0x3F,0x3F,0xE2BB,0x3F,0xEEC0,0x3F,0xE2BC,0x3F,0xE2BD,0xE2BE,0xE2BF,0xEEC1,0xE2C0,0x3F,0xE2C1,0x3F,0xE2C2,0x3F,0xE2C3,0x3F,0xE2C5,0xE2C6,0x3F,0xE2C4,0x3F,0xE2C7,0x3F,0xE2C8,0x3F,0x3F,0x3F,0xC5A2,0xE2C9,0xE2CA,0xEEC3,0xE2CB,0xEEC2,0x3F,0xE2CC,0x3F,0xE2CD,0xE2CE,0x3F,0xE2CF,0xE2D0,0x3F,0xE2D1,0xE2D2,0x3F,0x3F,0x3F,0x3F,0x3F,0xE2D3,0x3F,0x3F,0x3F,0xE2D4,0xE2D5,0xC6D3,0xEEC4,0xBDB6,0xBCE0,0xC7DB,0xC3F1,0xE2D6,0x3F,0x3F,0xBCF2,0xE2D7,0xBFEC,0x3F,0xEEC5,0xE2D8,0xEEC6,0xE2D9,0xE2DA,0xE2DB,0x3F,0x3F,0x3F,0x3F,0x3F,0xE2DC,0xBFDD,0xEEC7,0xE2DD,0xEEC8,0x3F,0xE2DE,0x3F,0xEEC9,0xCDEF,0x3F,0xBDB7,0xE2DF,0x3F,0x3F,0x3F,0x3F,0xEECB,0xEECA,0xE2E0,0xB9DA,0x3F,0xB9F3,0xBBC0,0xE2E1,0xE2E2,0xE2E3,0x3F,0x3F,0x3F,0x3F,0x3F,0xE2E4,0xEECE,0xE2E5,0x3F,0xE2E6,0xE2E7,0xBDE6,0x3F,0xEECD,0xE2E8,0xEECC,0x3F,0xC2E9,0xE2E9,0x3F,0xB8EF,0xE2EA,0xC0C3,0xE2EB,0xE2EC,0xE2ED,0x3F,0xC8B0,0xE2EE,0x3F,0x3F,0x3F,0xBDB9,0x3F,0xE2EF,0x3F,0x3F,0xE2F0,0xEECF,0x3F,0xBEDF,0x3F,0xE2F1,0x3F,0xE2F2,0x3F,0xEED2,0xEED0,0xE2F3,0xE2F4,0xE2F5,0xEED1,0xE2F6,0xE2F7,0xE2F8,0xE2F9,0xEED4,0xEED3,0xE2FA,0x3F,0xBEFA,0x3F,0xEED5,0xE2FB,0xE2FC,0xE2FD,0x3F,0xE2FE,0xEED6,0xEED7,0xE3A1,0xE3A2,0x3F,0xE3A3,0xC8D0,0xBAD3,0xBCE1,0xEED8,0x3F,0xEED9,0xCEA4,0xBDC5,0xCCEE,0xCECC,0xEEDA,0xB6E2,0x3F,0xE3A4,0xE3A5,0x3F,0xEEDB,0xE3A6,0xC5A3,0xE3A7,0xE3A8,0xEEDE,0xB3F8,0xBFCB,0xE3A9,0xEEDC,0x3F,0xEEDD,0x3F,0xC4E0,0xE3AA,0xE3AB,0xCBD5,0xB6FC,0x3F,0xE3AC,0xE3AD,0x3F,0xE3AE,0xE3AF,0xE3B0,0xE3B1,0xE3B2,0xE3B3,0x3F,0x3F,0x3F,0xEEE0,0xEEE1,0xE3B4,0x3F,0xE3B5,0x3F,0xE3B6,0xEEDF,0xE3B7,0x3F,0xEEE3},
set91[] = {3,0xFF,1,0xFF,3,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,1,0xFF,3,0xFF,3,3,3,1,3,0xFF,3,0xFF,3,0xFF,3,0xFF,3,3,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,1,3,3,1,3,1,0xFF,3,0xFF,3,3,0xFF,3,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,3,1,1,1,1,1,1,3,0xFF,0xFF,1,3,1,0xFF,1,3,1,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,1,3,1,0xFF,3,0xFF,1,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,1,1,3,1,0xFF,1,1,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,3,3,1,0xFF,1,3,1,0xFF,1,3,0xFF,1,3,1,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,3,1,0xFF,1,0xFF,3,0xFF,3,0xFF,1,1,3,3,3,1,3,3,3,3,1,1,3,0xFF,1,0xFF,1,3,3,3,0xFF,3,1,1,3,3,0xFF,3,1,1,1,1,0xFF,1,1,1,1,1,1,1,0xFF,3,3,0xFF,1,3,1,3,3,1,1,1,3,1,0xFF,1,0xFF,1,3,3,1,1,0xFF,3,3,0xFF,3,3,3,3,3,3,0xFF,0xFF,0xFF,1,1,3,0xFF,3,0xFF,3,1,3,0xFF,1},
en92[] = {0xE3B8,0xE3B9,0x3F,0x3F,0xE3BA,0xE3BB,0xE3BC,0xE3BD,0x3F,0xE3BE,0xE3BF,0x3F,0xE3C0,0xC6DF,0xB3C3,0x3F,0xE3C1,0xEEE7,0xE3C2,0xE3C3,0xEEE4,0xEEE6,0xE3C4,0x3F,0xE3C5,0x3F,0x3F,0x3F,0xE3C6,0xE3C7,0xEEE2,0x3F,0x3F,0x3F,0x3F,0xE3C8,0xE3C9,0xE3CA,0xE3CB,0x3F,0xE3CC,0xEFCF,0x3F,0x3F,0xEEE5,0x3F,0xE3CD,0xE3CE,0xE3CF,0x3F,0x3F,0xE3D0,0xCEEB,0xE3D1,0xE3D2,0xB8DA,0xE3D3,0xE3D4,0xE3D5,0x3F,0xE3D6,0x3F,0xE3D7,0xEEEF,0xE3D8,0x3F,0xE3D9,0xE3DA,0xC5B4,0xEEEA,0xE3DB,0xE3DC,0xEEED,0xEEEB,0xE3DD,0xEEF0,0x3F,0xE3DE,0xE3DF,0xE3E0,0xEEF1,0xE3E1,0x3F,0x3F,0x3F,0x3F,0x3F,0xEEE9,0xE3E2,0xE3E3,0xEEF6,0xB1F4,0xE3E4,0xE3E5,0xEEE8,0x3F,0xE3E6,0xE3E7,0xC8AD,0x3F,0xEEEC,0xE3E8,0xBEE0,0xE3E9,0xE3EA,0xE3EB,0x3F,0x3F,0x3F,0x3F,0xE3EC,0xE3ED,0xE3EE,0xB9DB,0x3F,0x3F,0x3F,0xE3EF,0xE3F0,0xE3F1,0xE3F2,0xE3F3,0x3F,0xE3F4,0xE3F5,0xE3F6,0xCBC8,0xE3F7,0xB6E4,0x3F,0x3F,0xBDC6,0x3F,0xC6BC,0x3F,0x3F,0xE3F8,0xE3F9,0xE3FA,0x3F,0x3F,0xE3FB,0xE3FC,0x3F,0x3F,0xC1AD,0xE3FD,0xEEF4,0x3F,0xEEEE,0xEEF3,0xE3FE,0xCCC3,0xE4A1,0xC4B8,0xEEF5,0xEEF2,0x3F,0x3F,0xE4A2,0xE4A3,0x3F,0x3F,0x3F,0xE4A4,0xE4A5,0x3F,0xE4A6,0xE4A7,0x3F,0x3F,0xE4A8,0x3F,0xC1AC,0x3F,0xE4A9,0x3F,0x3F,0xE4AA,0x3F,0x3F,0x3F,0xE4AB,0xEEF9,0xE4AC,0xEEF8,0xE4AD,0xE4AE,0xE4AF,0xE4B0,0x3F,0xE4B1,0xE4B2,0xE4B3,0xE4B4,0xE4B5,0x3F,0xE4B6,0xE4B7,0xE4B8,0xE4B9,0x3F,0x3F,0xE4BA,0xE4BB,0xE4BC,0xE4BD,0xEEF7,0xE4BE,0x3F,0xCBAF,0xE4BF,0x3F,0xE4C0,0x3F,0xE4C1,0xE4C2,0xE4C3,0x3F,0x3F,0xE4C4,0xE4C5,0x3F,0xE4C6,0xE4C7,0xE4C8,0x3F,0xE4C9,0xBDFB,0xE4CA,0x3F,0xE4CB,0xE4CC,0xEEFA,0xCADF,0x3F,0xE4CD,0xB1D4,0xE4CE,0x3F,0xE4CF,0x3F,0xC9C6,0xC3F2,0x3F,0x3F,0x3F,0x3F,0xB5F8,0xE4D0,0xEEFC,0xE4D1,0xB9DD,0x3F,0x3F,0xE4D2},
set92[] = {3,3,0xFF,0xFF,3,3,3,3,0xFF,3,3,0xFF,3,1,1,0xFF,3,1,3,3,1,1,3,0xFF,3,0xFF,0xFF,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF,3,3,3,3,0xFF,3,1,0xFF,0xFF,1,0xFF,3,3,3,0xFF,0xFF,3,1,3,3,1,3,3,3,0xFF,3,0xFF,3,1,3,0xFF,3,3,1,1,3,3,1,1,3,1,0xFF,3,3,3,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,3,3,1,0xFF,3,3,1,0xFF,1,3,1,3,3,3,0xFF,0xFF,0xFF,0xFF,3,3,3,1,0xFF,0xFF,0xFF,3,3,3,3,3,0xFF,3,3,3,1,3,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,3,3,3,0xFF,0xFF,3,3,0xFF,0xFF,1,3,1,0xFF,1,1,3,1,3,1,1,1,0xFF,0xFF,3,3,0xFF,0xFF,0xFF,3,3,0xFF,3,3,0xFF,0xFF,3,0xFF,1,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,1,3,1,3,3,3,3,0xFF,3,3,3,3,3,0xFF,3,3,3,3,0xFF,0xFF,3,3,3,3,1,3,0xFF,1,3,0xFF,3,0xFF,3,3,3,0xFF,0xFF,3,3,0xFF,3,3,3,0xFF,3,1,3,0xFF,3,3,1,1,0xFF,3,1,3,0xFF,3,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,3,1,3,1,0xFF,0xFF,3},
en93[] = {0xE4D3,0x3F,0xE4D4,0x3F,0x3F,0x3F,0xBBAC,0x3F,0xE4D5,0x3F,0x3F,0x3F,0x3F,0xE4D6,0x3F,0xEEFB,0xBFED,0xE4D7,0x3F,0x3F,0xE4D8,0xE4D9,0x3F,0x3F,0xBFEE,0xEFA1,0xEFA3,0x3F,0xE4DA,0xE4DB,0xE4DC,0xE4DD,0xBEFB,0xE4DE,0xEFA2,0xEFA4,0xE4DF,0xE4E0,0xB6D3,0xE4E1,0xC9C5,0xE4E2,0xE4E3,0xBCE2,0xCFA3,0x3F,0xEEFE,0xBAF8,0x3F,0x3F,0xCFBF,0xE4E4,0xE4E5,0xEFA6,0xE4E6,0xE4E7,0x3F,0x3F,0xEFA5,0xEFA7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xEEFD,0x3F,0x3F,0xE4E8,0xE4E9,0xE4EA,0x3F,0xC6E9,0x3F,0xC5D5,0x3F,0x3F,0xE4EB,0xE4EC,0xE4ED,0x3F,0xC4D7,0xE4EE,0xEFAC,0xE4EF,0xE4F0,0x3F,0xE4F1,0xC3C3,0xEFA8,0x3F,0xE4F2,0x3F,0xEFA9,0x3F,0x3F,0x3F,0xE4F3,0xE4F4,0x3F,0xE4F5,0x3F,0xE4F6,0xE4F7,0x3F,0xB7AD,0xE4F8,0xEFAB,0xE4F9,0xE4FA,0xE4FB,0x3F,0xE4FC,0xE4FD,0xB8B0,0xE4FE,0x3F,0x3F,0x3F,0xE5A1,0x3F,0xEFAA,0xE5A2,0xBEE1,0xE5A3,0xE5A4,0xE5A5,0xE5A6,0x3F,0x3F,0x3F,0x3F,0x3F,0xE5A7,0x3F,0xE5A8,0xE5A9,0xB3F9,0xE5AA,0x3F,0xE5AB,0x3F,0x3F,0xE5AC,0x3F,0xEFB0,0xE5AD,0xBABF,0xC1F9,0xE5AE,0x3F,0xC4CA,0xE5AF,0x3F,0x3F,0xE5B0,0x3F,0x3F,0xE5B1,0x3F,0xE5B2,0xE5B3,0x3F,0xE5B4,0xB3BB,0xE5B5,0xE5BB,0x3F,0xE5B6,0xEFAE,0xEFAF,0xC4C3,0x3F,0xEFAD,0x3F,0x3F,0x3F,0xE5B7,0xE5B8,0xE5B9,0x3F,0x3F,0xEFB1,0xE5BA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE5BC,0x3F,0xEFB7,0xE5BD,0xE5BE,0xE5BF,0xE5C0,0xEFBA,0xE5C1,0xE5C2,0xE5C3,0xE5C4,0xE5C5,0x3F,0x3F,0xEFB9,0xC5AD,0x3F,0xE5C6,0x3F,0x3F,0xEFB2,0xEFB3,0xEFB6,0xE5C7,0x3F,0x3F,0xE5C8,0xEFB8,0xE5C9,0xE5CA,0x3F,0xB6C0,0xE5CB,0x3F,0xEFBB,0xEFB5,0xE5CC,0xE5CD,0xEFB4,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xE5CF,0xE5D0,0xE5CE,0xE5D1,0xE5D2,0x3F,0xE5D3,0x3F,0x3F},
set93[] = {3,0xFF,3,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,1,3,0xFF,0xFF,3,3,0xFF,0xFF,1,1,1,0xFF,3,3,3,3,1,3,1,1,3,3,1,3,1,3,3,1,1,0xFF,1,1,0xFF,0xFF,1,3,3,1,3,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,3,3,0xFF,1,0xFF,1,0xFF,0xFF,3,3,3,0xFF,1,3,1,3,3,0xFF,3,1,1,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,3,0xFF,3,3,0xFF,1,3,1,3,3,3,0xFF,3,3,1,3,0xFF,0xFF,0xFF,3,0xFF,1,3,1,3,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,3,1,3,0xFF,3,0xFF,0xFF,3,0xFF,1,3,1,1,3,0xFF,1,3,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,3,3,0xFF,3,1,3,3,0xFF,3,1,1,1,0xFF,1,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,3,3,3,1,3,3,3,3,3,0xFF,0xFF,1,1,0xFF,3,0xFF,0xFF,1,1,1,3,0xFF,0xFF,3,1,3,3,0xFF,1,3,0xFF,1,1,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,3,3,3,0xFF,3,0xFF,0xFF},
en94[] = {0x3F,0xE5D4,0xE5D5,0xEFBF,0xE5D6,0x3F,0x3F,0xEFC0,0xE5D7,0xE5D8,0x3F,0x3F,0x3F,0xE5D9,0xE5DA,0xE5DB,0xEFC1,0x3F,0x3F,0xEFBE,0xEFBD,0xE5DC,0xE5DD,0xE5DE,0xBEE2,0xC6AA,0xEFBC,0x3F,0x3F,0x3F,0x3F,0xE5DF,0x3F,0xEFC5,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xEFC3,0x3F,0x3F,0xE5E0,0xE5E1,0x3F,0xE5E2,0xE5E3,0xE5E4,0xE5E5,0xEFC4,0xEFC2,0x3F,0xC2F8,0x3F,0xEFC6,0xE5E6,0x3F,0xE5E8,0x3F,0xE5E7,0x3F,0xEFC7,0x3F,0xE5E9,0xEFC9,0xE5EA,0x3F,0x3F,0xE5EB,0x3F,0xE5EC,0x3F,0xE5ED,0x3F,0x3F,0x3F,0x3F,0xB4D5,0xEFC8,0xCCFA,0x3F,0xE5EE,0x3F,0x3F,0x3F,0xE5EF,0xEFD4,0xEFCA,0xE5F0,0x3F,0xEFCD,0xE5F1,0xEFCB,0xE5F2,0xEFCC,0xE5F3,0x3F,0x3F,0x3F,0x3F,0xE5F4,0x3F,0xEFCE,0xE5F5,0x3F,0xE5F6,0xE5F7,0xE5F8,0xEFD0,0xE5F9,0xE5FA,0x3F,0x3F,0xEFD1,0x3F,0xEFD2,0x3F,0x3F,0x3F,0x3F,0xEFD5,0xEFD3,0xEFD6,0xEFD8,0x3F,0xEFD7,0x3F,0xE5FC,0xE5FB,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set94[] = {0xFF,3,3,1,3,0xFF,0xFF,1,3,3,0xFF,0xFF,0xFF,3,3,3,1,0xFF,0xFF,1,1,3,3,3,1,1,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,3,0xFF,3,3,3,3,1,1,0xFF,1,0xFF,1,3,0xFF,3,0xFF,3,0xFF,1,0xFF,3,1,3,0xFF,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,3,0xFF,0xFF,0xFF,3,1,1,3,0xFF,1,3,1,3,1,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,0xFF,3,3,3,1,3,3,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,1,1,1,0xFF,1,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en95[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC4B9,0xE5FD,0xE5FE,0x3F,0x3F,0x3F,0x3F,0xE6A1,0x3F,0xCCE7,0x3F,0xEFD9,0xC1AE,0xE6A2,0x3F,0x3F,0xEFDA,0xE6A3,0xCAC4,0xEFDB,0xB3AB,0xE6A4,0xE6A5,0xE6A6,0xB1BC,0x3F,0xB4D7,0x3F,0xB4D6,0xEFDC,0x3F,0xEFDD,0x3F,0xEFDE,0xEFDF,0x3F,0x3F,0x3F,0xE6A7,0xE6A8,0xE6A9,0xEFE0,0xE6AA,0xB4D8,0xB3D5,0xB9DE,0xC8B6,0xE6AB,0xEFE2,0xEFE1,0xE6AC,0x3F,0xE6AD,0xE6AE,0xEFE3,0x3F,0x3F,0x3F,0x3F,0xB1DC,0x3F,0xE6AF,0x3F,0xE6B0,0x3F,0x3F,0xEFE6,0xE6B1,0xEFE5,0xEFE4,0xE6B2,0xEFE7,0xE6B3,0x3F,0x3F,0x3F,0xEFEA,0x3F,0x3F,0xE6B4,0xB0C7,0xE6B5,0xE6B6,0xEFE8,0xE6B7,0xEFEC,0xEFEB,0x3F,0x3F,0xE6B8,0xE6B9,0xE6BA,0xE6BB,0xEFEE,0xEFED,0xEFEF,0x3F,0xC6AE,0xE6BC,0xE6BD,0x3F,0xEFF0,0xE6BE,0xE6BF,0xE6C0,0xE6C1,0xEFF1,0xEFF3,0x3F,0xE6C2,0xEFF2,0xE6C3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set95[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,0xFF,1,1,3,0xFF,0xFF,1,3,1,1,1,3,3,3,1,0xFF,1,0xFF,1,1,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,3,3,3,1,3,1,1,1,1,3,1,1,3,0xFF,3,3,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,1,3,1,1,3,1,3,0xFF,0xFF,0xFF,1,0xFF,0xFF,3,1,3,3,1,3,1,1,0xFF,0xFF,3,3,3,3,1,1,1,0xFF,1,3,3,0xFF,1,3,3,3,3,1,1,0xFF,3,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en96[] = {0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC9EC,0xE6C4,0xE6C5,0x3F,0x3F,0xEFF4,0xE6C6,0x3F,0xE6C7,0xE6C8,0xE6C9,0x3F,0xEFF5,0x3F,0xBAE5,0x3F,0xE6CA,0x3F,0xEFF6,0xEFF7,0x3F,0xE6CB,0xCBC9,0xE6CC,0x3F,0x3F,0x3F,0xE6CD,0xE6CE,0xE6CF,0xE6D0,0xC1CB,0xE6D1,0xE6D2,0x3F,0xB0A4,0xC2CB,0xE6D3,0xEFF8,0x3F,0xC9ED,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xEFFB,0xEFF9,0xB9DF,0x3F,0xEFFA,0xB8C2,0x3F,0xE6D4,0x3F,0xE6D5,0x3F,0xE6D6,0xE6D7,0xE6D8,0x3F,0x3F,0xCAC5,0xEFFD,0xF0A1,0xEFFE,0xF0A2,0x3F,0xE6D9,0xB1A1,0xBFD8,0xBDFC,0xB4D9,0xF0A3,0x3F,0x3F,0x3F,0xC7E6,0x3F,0xF0A5,0x3F,0xE6DA,0x3F,0xB1A2,0x3F,0xF0A4,0xC4C4,0xE6DB,0xCECD,0xC6AB,0xEFFC,0xCEA6,0x3F,0xB8B1,0xE6DC,0xE6DD,0xCDDB,0xE6DE,0xE6DF,0x3F,0xE6E0,0xE6E1,0xE6E2,0xE6E3,0xB6F9,0xCEB4,0x3F,0xB7A8,0xE6E4,0xC2E2,0xE7A1,0x3F,0xF0A6,0xB3AC,0xBFEF,0x3F,0xE6E5,0x3F,0x3F,0xB3D6,0xF0A8,0xE6E6,0xF0A9,0xF0A7,0xB7E4,0xE6E7,0xBADD,0xBEE3,0xE6E8,0x3F,0xE6E9,0xB1A3,0x3F,0x3F,0xCED9,0xE6EA,0xE6EB,0xE6EC,0xF0AB,0xEEAE,0xE6ED,0xF0AA,0x3F,0x3F,0x3F,0xE6EE,0xE6EF,0xF0AE,0xF0AC,0xF0AD,0xE6F0,0xF0AF,0x3F,0xF0B0,0xCEEC,0xF0B1,0xF0B2,0xE6F1,0xC0C9,0xC8BB,0x3F,0x3F,0x3F,0xBFFD,0xB4E7,0x3F,0x3F,0xCDBA,0xB2ED,0xBDB8,0xB8DB,0x3F,0xF0B5,0xE6F2,0xF0B4,0xBBF3,0xF0B6,0xF0B3,0x3F,0x3F,0xBBA8,0xE6F3,0x3F,0x3F,0xF0BA,0xEAAD,0x3F,0xE6F5,0xD2D6,0xE6F6,0xBFF7,0xF0B8,0xE6F7,0xE6F8,0xE6F9,0x3F,0x3F,0xCEA5,0xC6F1,0x3F,0x3F,0x3F,0x3F,0xB1AB,0xE6FA,0xC0E3,0xBCB6,0x3F,0x3F,0x3F,0xE6FB,0xCAB7,0xE6FC,0xB1C0,0x3F,0x3F,0x3F,0xCEED,0xCDEB,0x3F,0xF0BB,0xE6FD,0xC5C5,0x3F,0x3F,0x3F,0x3F},
set96[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,3,0xFF,0xFF,1,3,0xFF,3,3,3,0xFF,1,0xFF,1,0xFF,3,0xFF,1,1,0xFF,3,1,3,0xFF,0xFF,0xFF,3,3,3,3,1,3,3,0xFF,1,1,3,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF,1,1,0xFF,3,0xFF,3,0xFF,3,3,3,0xFF,0xFF,1,1,1,1,1,0xFF,3,1,1,1,1,1,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,3,0xFF,1,0xFF,1,1,3,1,1,1,1,0xFF,1,3,3,1,3,3,0xFF,3,3,3,3,1,1,0xFF,1,3,1,1,0xFF,1,1,1,0xFF,3,0xFF,0xFF,1,1,3,1,1,1,3,1,1,3,0xFF,3,1,0xFF,0xFF,1,3,3,3,1,1,3,1,0xFF,0xFF,0xFF,3,3,1,1,1,3,1,0xFF,1,1,1,1,3,1,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,1,1,1,1,0xFF,1,3,1,1,1,1,0xFF,0xFF,1,3,0xFF,0xFF,1,1,0xFF,3,1,3,1,1,3,3,3,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,3,1,1,0xFF,0xFF,0xFF,3,1,3,1,0xFF,0xFF,0xFF,1,1,0xFF,1,3,1,0xFF,0xFF,0xFF,0xFF},
en97[] = {0xBCFB,0x3F,0xE6FE,0xE7A1,0xF0BC,0xE7A2,0xF0BD,0xBFCC,0xF0BE,0xE7A3,0xCEEE,0x3F,0x3F,0xF0B9,0xF0C0,0xF0C2,0x3F,0xF0C1,0x3F,0xF0BF,0x3F,0x3F,0xF0C3,0x3F,0x3F,0xF0C4,0xE7A4,0xE7A5,0xC1FA,0xE7A6,0xB2E2,0x3F,0x3F,0xE7A7,0xE7A8,0xE7A9,0xF0C5,0x3F,0x3F,0xCCB8,0xE7AA,0x3F,0xF0C6,0x3F,0x3F,0x3F,0x3F,0x3F,0xF0C7,0xE7AB,0xCFAA,0xE7AC,0x3F,0x3F,0x3F,0x3F,0xDBB1,0xF0C8,0x3F,0x3F,0x3F,0xF0C9,0xF0CA,0x3F,0x3F,0xE7AD,0xF0CE,0xE7AE,0xF0CB,0x3F,0xF0CC,0x3F,0xF0CD,0xF0CF,0xE7AF,0x3F,0x3F,0x3F,0xE7B0,0xE7B1,0x3F,0x3F,0xC0C4,0x3F,0x3F,0xE7B2,0xCCF7,0xE7B3,0xE7B4,0xC0C5,0xE7B5,0xE7B6,0xF0D0,0x3F,0xC8F3,0x3F,0xF0D1,0xF3D3,0xCCCC,0xE7B7,0xF0D2,0x3F,0xF0D3,0xE7B8,0xF0D4,0xB3D7,0xE7B9,0xF0D6,0x3F,0xBFD9,0xE7BA,0x3F,0x3F,0xF0D7,0x3F,0xE7BB,0xB7A4,0x3F,0xE7BC,0xE7BD,0xE7BE,0xF0D8,0xF0DC,0xE7BF,0xF0DA,0xE7C0,0x3F,0xE7C1,0xE7C2,0xF0DB,0x3F,0x3F,0xB3F3,0xF0D9,0xF0DD,0x3F,0x3F,0xE7C3,0x3F,0xF0DE,0x3F,0xB0C8,0x3F,0xF0DF,0xF0E0,0x3F,0x3F,0x3F,0x3F,0xE7C4,0xE7C5,0xE7C6,0xBEE4,0xE7C7,0xE7C8,0x3F,0xF0E1,0x3F,0xE7C9,0xE7CA,0xB5C7,0x3F,0xE7CB,0xF0E4,0x3F,0x3F,0xF0E3,0x3F,0xF0E2,0x3F,0x3F,0xEBF1,0xE7CC,0xCADC,0xE7CD,0x3F,0x3F,0xE7CE,0xE7CF,0xF0E5,0xF0E6,0xE7D0,0xE7D1,0x3F,0xE7D2,0xE7D3,0xE7D4,0x3F,0xE7D5,0x3F,0xE7D6,0xE7D7,0x3F,0xE7D8,0x3F,0xF0E7,0xE7D9,0xE7DA,0xF0E8,0xE7DB,0xF0E9,0xE7DC,0xE7DD,0xF0EA,0xE7DE,0xE7DF,0xE7E0,0x3F,0xE7E1,0xE7E2,0x3F,0xB4DA,0xE7E3,0x3F,0x3F,0xE7E4,0xE7E5,0xE7E6,0x3F,0xE7EA,0xF0EB,0xE7E7,0xE7E8,0x3F,0xE7E9,0xE7EB,0x3F,0x3F,0xE7EC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xF0EC,0xC7A3,0xE7ED,0x3F,0xE7EE,0xF0EE,0xB2BB,0xE7EF,0xF0F1,0xF0F0,0xE7F0,0xE7F1,0x3F,0xE7F2,0xB1A4,0x3F,0x3F,0x3F,0xB6C1},
set97[] = {1,0xFF,3,3,1,3,1,1,1,3,1,0xFF,0xFF,1,1,1,0xFF,1,0xFF,1,0xFF,0xFF,1,0xFF,0xFF,1,3,3,1,3,1,0xFF,0xFF,3,3,3,1,0xFF,0xFF,1,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,1,3,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,3,1,3,1,0xFF,1,0xFF,1,1,3,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,0xFF,0xFF,3,1,3,3,1,3,3,1,0xFF,1,0xFF,1,1,1,3,1,0xFF,1,3,1,1,3,1,0xFF,1,3,0xFF,0xFF,1,0xFF,3,1,0xFF,3,3,3,1,1,3,1,3,0xFF,3,3,1,0xFF,0xFF,1,1,1,0xFF,0xFF,3,0xFF,1,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,3,3,3,1,3,3,0xFF,1,0xFF,3,3,1,0xFF,3,1,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,1,3,1,3,0xFF,0xFF,3,3,1,1,3,3,0xFF,3,3,3,0xFF,3,0xFF,3,3,0xFF,3,0xFF,1,3,3,1,3,1,3,3,1,3,3,3,0xFF,3,3,0xFF,1,3,0xFF,0xFF,3,3,3,0xFF,3,1,3,3,0xFF,3,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,3,0xFF,3,1,1,3,1,1,3,3,0xFF,3,1,0xFF,0xFF,0xFF,1},
en98[] = {0x3F,0xCAC7,0xC4BA,0xBAA2,0x3F,0xB9E0,0xBDE7,0xE7F3,0xBFDC,0x3F,0xE7F4,0x3F,0xF0F3,0xE7F6,0xE7F7,0xF0F2,0xCDC2,0xB4E8,0xC8D2,0xC6DC,0xE7F8,0x3F,0xE7F9,0xBFFC,0xCECE,0xE7F5,0xB7DB,0x3F,0xE7FA,0x3F,0xE7FB,0x3F,0xE7FC,0xF0F6,0x3F,0xE7FD,0xF0F5,0xE8A8,0xE7FE,0x3F,0x3F,0x3F,0x3F,0xE8A1,0xCBCB,0xC6AC,0xE8A2,0xE8A3,0xE8A4,0x3F,0xE8A5,0xE8A6,0xB1D0,0xE8A7,0x3F,0xF0F7,0xF0F4,0x3F,0x3F,0xC9D1,0xCDEA,0xF0F8,0xE8A9,0x3F,0x3F,0x3F,0x3F,0x3F,0xE8AA,0x3F,0xF0F9,0xE8AB,0x3F,0x3F,0xE8AC,0xF0FB,0xC2EA,0xB3DB,0xB3DC,0xF0FA,0x3F,0xE8AD,0xE8AE,0xE8AF,0xB4E9,0xB8B2,0xE8B0,0xE8B1,0xB4EA,0xE8B2,0xE8B3,0xC5BF,0x3F,0x3F,0xCEE0,0x3F,0x3F,0x3F,0xE8B4,0xE8B5,0x3F,0xE8B6,0xE8B7,0xB8DC,0x3F,0x3F,0xE8B8,0xF0FC,0xE8B9,0x3F,0x3F,0xF0FD,0xF0FE,0xF1A1,0x3F,0xF1A3,0xF1A2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC9F7,0x3F,0xF1A4,0xE8BA,0x3F,0xE8BB,0xE8BC,0xF1A5,0xE8BD,0xF1A6,0x3F,0x3F,0xE8BE,0x3F,0xF1A7,0xE8BF,0xE8C0,0x3F,0xE8C1,0xE8C2,0x3F,0x3F,0x3F,0xE8C3,0x3F,0x3F,0xE8C4,0xF1A9,0xF1A8,0xE8C5,0xF1AA,0x3F,0xE8C6,0x3F,0x3F,0x3F,0xE8C7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC8F4,0xE6CC,0x3F,0x3F,0xBFA9,0x3F,0xE8C8,0xB5B2,0xE8C9,0x3F,0xE8CA,0xE8CB,0xE8CC,0x3F,0xF1AB,0xE8CD,0xF1AC,0x3F,0xD2AC,0xDDBB,0xC8D3,0x3F,0x3F,0xB0FB,0xE8CE,0xB0BB,0x3F,0xE8CF,0x3F,0x3F,0x3F,0x3F,0x3F,0xBBF4,0xCBB0,0xBEFE,0x3F},
set98[] = {0xFF,1,1,1,0xFF,1,1,3,1,0xFF,3,0xFF,1,3,3,1,1,1,1,1,3,0xFF,3,1,1,3,1,0xFF,3,0xFF,3,0xFF,3,1,0xFF,3,1,3,3,0xFF,0xFF,0xFF,0xFF,3,1,1,3,3,3,0xFF,3,3,1,3,0xFF,1,1,0xFF,0xFF,1,1,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,1,3,0xFF,0xFF,3,1,1,1,1,1,0xFF,3,3,3,1,1,3,3,1,3,3,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,3,3,1,0xFF,0xFF,3,1,3,0xFF,0xFF,1,1,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,3,0xFF,3,3,1,3,1,0xFF,0xFF,3,0xFF,1,3,3,0xFF,3,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,1,1,3,1,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,0xFF,1,0xFF,3,1,3,0xFF,3,3,3,0xFF,1,3,1,0xFF,1,1,1,0xFF,0xFF,1,3,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,0xFF},
en99[] = {0x3F,0x3F,0xE8D0,0xF1AD,0x3F,0xCCDF,0x3F,0xE8D1,0xE8D2,0xF1AE,0xCDDC,0x3F,0xB1C2,0x3F,0x3F,0x3F,0xBBC1,0xE8D3,0xF1AF,0xB2EE,0xF1B0,0xE8D4,0xE8D5,0xE8D6,0xF1B1,0x3F,0xE8D7,0xE8D8,0xE8D9,0xF1B3,0xF1B4,0xE8DA,0xF1B6,0xF1B2,0xE8DB,0x3F,0xF1B5,0x3F,0xE8DC,0xE8DD,0xB4DB,0x3F,0x3F,0xE8DE,0xF1B7,0x3F,0xF1B8,0x3F,0x3F,0xE8DF,0xE8E0,0xE8E1,0xE8E2,0xE8E3,0x3F,0x3F,0x3F,0xE8E4,0xE8E5,0xE8E6,0xE8E7,0xF1B9,0xF1BA,0x3F,0xE8E8,0xE8E9,0xF1BB,0x3F,0x3F,0xF1BD,0xE8EA,0xE8EB,0xE8EC,0xF1BC,0x3F,0xF1BF,0xF1C2,0xE8ED,0xE8EE,0x3F,0xF1BE,0xF1C0,0xF1C1,0x3F,0xE8EF,0xF1C3,0x3F,0xB6C2,0xE8F0,0xE8F1,0x3F,0xE8F2,0xE8F3,0x3F,0xE8F4,0xE8F5,0xE8F6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xBCF3,0xF1C4,0xF1C5,0xB9E1,0x3F,0xE8F7,0x3F,0xE8F8,0x3F,0xE8F9,0x3F,0x3F,0x3F,0x3F,0x3F,0xF1C6,0xE8FA,0x3F,0xB3BE,0x3F,0x3F,0x3F,0xC7CF,0xF1C7,0xF1C8,0x3F,0xE8FB,0xE8FC,0xE8FD,0xC3DA,0xC6EB,0xE8FE,0x3F,0x3F,0x3F,0xE9A1,0xE9A2,0x3F,0xF1C9,0xE9A3,0x3F,0xE9A4,0x3F,0xC7FD,0x3F,0xE9A5,0xC2CC,0xB1D8,0xB6EE,0x3F,0xB6EF,0xE9A6,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC3F3,0xF1CE,0xB6F0,0xE9A7,0xE9A8,0xB2EF,0x3F,0x3F,0xF1CD,0xE9A9,0xE9AA,0xF1CB,0xE9AB,0xF1CC,0xE9AC,0xF1CA,0x3F,0x3F,0xF1D8,0x3F,0x3F,0x3F,0x3F,0xE9AD,0x3F,0x3F,0xE9AE,0xE9AF,0xE9B0,0xF1CF,0xF1D0,0x3F,0xE9B1,0xF1D1,0xF1D2,0x3F,0xE9B2,0xE9B3,0x3F,0x3F,0xF1D4,0xE9B4,0x3F,0xF1D3,0x3F,0xE9B5,0xE9B6,0xBDD9},
set99[] = {0xFF,0xFF,3,1,0xFF,1,0xFF,3,3,1,1,0xFF,1,0xFF,0xFF,0xFF,1,3,1,1,1,3,3,3,1,0xFF,3,3,3,1,1,3,1,1,3,0xFF,1,0xFF,3,3,1,0xFF,0xFF,3,1,0xFF,1,0xFF,0xFF,3,3,3,3,3,0xFF,0xFF,0xFF,3,3,3,3,1,1,0xFF,3,3,1,0xFF,0xFF,1,3,3,3,1,0xFF,1,1,3,3,0xFF,1,1,1,0xFF,3,1,0xFF,1,3,3,0xFF,3,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,1,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,0xFF,1,0xFF,0xFF,0xFF,1,1,1,0xFF,3,3,3,1,1,3,0xFF,0xFF,0xFF,3,3,0xFF,1,3,0xFF,3,0xFF,1,0xFF,3,1,1,1,0xFF,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,1,3,3,1,0xFF,0xFF,1,3,3,1,3,1,3,1,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,3,3,1,1,0xFF,3,1,1,0xFF,3,3,0xFF,0xFF,1,3,0xFF,1,0xFF,3,3,1},
en9A[] = {0x3F,0xF1D5,0xE9B7,0xE9B8,0xE9B9,0xF1D7,0x3F,0x3F,0x3F,0x3F,0x3F,0xE9BA,0xE9BB,0x3F,0xB5B3,0xF1D6,0xE9BC,0xE9BD,0xC1FB,0xB8B3,0x3F,0x3F,0xE9BE,0x3F,0x3F,0xF1D9,0x3F,0x3F,0x3F,0x3F,0xE9BF,0x3F,0xE9C0,0x3F,0xE9C1,0xE9C2,0xE9C3,0x3F,0x3F,0xE9C4,0xC2CD,0x3F,0x3F,0xF1DA,0x3F,0xE9C5,0xE9C6,0x3F,0xC6AD,0x3F,0x3F,0xE9C7,0x3F,0xE9C8,0xE9C9,0xF1DB,0xE9CA,0x3F,0x3F,0x3F,0x3F,0x3F,0xF1E0,0x3F,0xF1DE,0xE9CC,0xF1DD,0xF1DF,0xE9CD,0xF1DC,0x3F,0xE9CB,0x3F,0x3F,0xE9CE,0xE9CF,0xE9D0,0xF1E2,0xE9D1,0x3F,0x3F,0xE9D2,0x3F,0x3F,0xE9D3,0xF1E1,0xE9D4,0xF1E4,0x3F,0x3F,0xB6C3,0xF1E3,0x3F,0xE9D5,0x3F,0xF1E5,0x3F,0x3F,0xF1E6,0x3F,0xF1E8,0xF1E7,0x3F,0x3F,0x3F,0xF1E9,0xF1EB,0xF1EA,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xB9FC,0x3F,0xE9D6,0x3F,0xE9D7,0xF1EC,0xE9D8,0xE9D9,0xF1ED,0x3F,0xE9DA,0x3F,0xE9DB,0xE9DC,0xE9DD,0x3F,0xB3BC,0xE9DE,0x3F,0xE9DF,0xF1EE,0x3F,0xE9E0,0xE9E1,0xF1EF,0xE9E2,0x3F,0xE9E3,0xBFF1,0x3F,0xE9E4,0x3F,0xE9E5,0x3F,0x3F,0x3F,0x3F,0x3F,0xE9E6,0xF1F0,0xE9E7,0xF1F1,0xE9E8,0xF1F2,0xF1F3,0xE9E9,0xE9EA,0xE9EB,0xB9E2,0x3F,0x3F,0xE9EC,0xE9ED,0x3F,0xF1F4,0xF1F5,0xE9EE,0x3F,0xF1F6,0xF1F7,0xE9EF,0xE9F0,0xF1F8,0xE9F1,0x3F,0xE9F2,0xC8B1,0xF1FA,0xE9F3,0xC9A6,0xF1FB,0xF1F9,0x3F,0xF1FD,0xE9F4,0xE9F5,0xF1FC,0xE9F6,0x3F,0xF1FE,0x3F,0xE9F7,0xE9F8,0xF2A1,0x3F,0xE9F9,0x3F,0xE9FA},
set9A[] = {0xFF,1,3,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,1,1,3,3,1,1,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,3,0xFF,3,0xFF,3,3,3,0xFF,0xFF,3,1,0xFF,0xFF,1,0xFF,3,3,0xFF,1,0xFF,0xFF,3,0xFF,3,3,1,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,3,1,1,3,1,0xFF,3,0xFF,0xFF,3,3,3,1,3,0xFF,0xFF,3,0xFF,0xFF,3,1,3,1,0xFF,0xFF,1,1,0xFF,3,0xFF,1,0xFF,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,1,3,3,1,0xFF,3,0xFF,3,3,3,0xFF,1,3,0xFF,3,1,0xFF,3,3,1,3,0xFF,3,1,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,1,3,1,1,3,3,3,1,0xFF,0xFF,3,3,0xFF,1,1,3,0xFF,1,1,3,3,1,3,0xFF,3,1,1,3,1,1,1,0xFF,1,3,3,1,3,0xFF,1,0xFF,3,3,1,0xFF,3,0xFF,3},
en9B[] = {0xE9FB,0xE9FC,0xE9FD,0xE9FE,0xEAA1,0xEAA2,0xF2A2,0x3F,0xEAA3,0xEAA4,0x3F,0xEAA5,0xEAA6,0xEAA7,0xEAA8,0x3F,0xEAA9,0x3F,0xEAAA,0x3F,0x3F,0x3F,0xEAAB,0x3F,0xF2A3,0xEAAC,0xF2A4,0xEAAD,0xEAAE,0x3F,0x3F,0xF2A5,0xEAAF,0x3F,0xF2A6,0xF2A7,0x3F,0xF2A8,0xEAB0,0xF2A9,0xF2AA,0xF2AB,0xF2AC,0xEAB1,0x3F,0xEAB2,0xF2AD,0xF2AE,0x3F,0xDDB5,0xF2AF,0xEAB3,0xEAB4,0xEAB5,0x3F,0xEAB6,0x3F,0xEAB7,0xEAB8,0xE4F8,0xB5B4,0xEAB9,0x3F,0x3F,0x3F,0xB3A1,0xBAB2,0xF2B1,0xF2B0,0xCCA5,0x3F,0x3F,0xEABA,0x3F,0x3F,0xEABB,0xEABC,0xF2B3,0xF2B4,0xF2B2,0x3F,0xF2B5,0x3F,0x3F,0xCBE2,0xEABD,0xEABE,0xEABF,0xF2B6,0x3F,0xB5FB,0xEAC0,0x3F,0x3F,0xEAC1,0x3F,0x3F,0xEAC2,0x3F,0xEAC3,0x3F,0xEAC4,0xEAC5,0x3F,0xEAC6,0x3F,0xEAC7,0xEAC8,0xEAC9,0xEACA,0xEACB,0xCFA5,0x3F,0x3F,0x3F,0xEACC,0xF2B7,0xEACD,0x3F,0xEACE,0xEACF,0xEAD0,0x3F,0x3F,0x3F,0x3F,0x3F,0xEAD1,0xEAD2,0x3F,0x3F,0xF2B9,0xEAD3,0xEAD4,0xEAD5,0xEAD6,0x3F,0xEAD7,0xEAD8,0xEAD9,0x3F,0xEADA,0xB0BE,0xEADB,0xEADC,0xF2BA,0xCAAB,0xF2B8,0xEADD,0x3F,0xF2BB,0xF2BC,0x3F,0x3F,0xEADE,0x3F,0x3F,0xEADF,0xEAE0,0xF2BD,0xF2BE,0x3F,0x3F,0x3F,0x3F,0x3F,0xEAE1,0xEAE2,0xF2BF,0xEAE3,0xCBEE,0xBBAD,0xEAE4,0xBAFA,0xC1AF,0x3F,0xEAE5,0xEAE6,0xEAE7,0x3F,0xF2C0,0x3F,0x3F,0xEAE8,0xEAE9,0xF2C3,0x3F,0xEAEA,0xEAEB,0x3F,0xEAEC,0xEAED,0xF2C1,0xEAEE,0x3F,0x3F,0x3F,0x3F,0xF2C4,0xEAEF,0xEAF0,0xB8F1,0xF2C2,0x3F,0x3F,0x3F,0xEAF1,0xF2C5,0xEAF2,0xF2C6,0xF2C7,0x3F,0xF2CB,0x3F,0xBBAA,0xEAF3,0xEAF4,0x3F,0x3F,0xC2E4,0x3F,0xEAF5,0x3F,0xEAF6,0x3F,0xF2CC,0xF2C9,0xF2C8,0xF2CA,0xEAF7,0x3F,0xEAF8,0xB7DF,0x3F,0xEAF9,0xEAFA,0x3F,0x3F,0x3F,0xEAFB,0xF2D0,0xF2CF,0xF2CE,0xEAFC,0x3F,0xB0B3,0x3F,0xEAFD,0xEAFE,0xEBA1,0xEBA2,0x3F,0x3F,0xEBA3,0x3F,0xEBA4},
set9B[] = {3,3,3,3,3,3,1,0xFF,3,3,0xFF,3,3,3,3,0xFF,3,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,1,3,1,3,3,0xFF,0xFF,1,3,0xFF,1,1,0xFF,1,3,1,1,1,1,3,0xFF,3,1,1,0xFF,1,1,3,3,3,0xFF,3,0xFF,3,3,1,1,3,0xFF,0xFF,0xFF,1,1,1,1,1,0xFF,0xFF,3,0xFF,0xFF,3,3,1,1,1,0xFF,1,0xFF,0xFF,1,3,3,3,1,0xFF,1,3,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,3,0xFF,3,3,0xFF,3,0xFF,3,3,3,3,3,1,0xFF,0xFF,0xFF,3,1,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,3,3,3,3,0xFF,3,3,3,0xFF,3,1,3,3,1,1,1,3,0xFF,1,1,0xFF,0xFF,3,0xFF,0xFF,3,3,1,1,0xFF,0xFF,0xFF,0xFF,0xFF,3,3,1,3,1,1,3,1,1,0xFF,3,3,3,0xFF,1,0xFF,0xFF,3,3,1,0xFF,3,3,0xFF,3,3,1,3,0xFF,0xFF,0xFF,0xFF,1,3,3,1,1,0xFF,0xFF,0xFF,3,1,3,1,1,0xFF,1,0xFF,1,3,3,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,1,1,1,1,3,0xFF,3,1,0xFF,3,3,0xFF,0xFF,0xFF,3,1,1,1,3,0xFF,1,0xFF,3,3,3,3,0xFF,0xFF,3,0xFF,3},
en9C[] = {0xEBA5,0x3F,0xEBA6,0x3F,0xF2DA,0x3F,0xF2D6,0x3F,0xF2D7,0xF2D3,0xF2D9,0xEBA7,0xF2D5,0xB3E2,0x3F,0xEBA8,0xCFCC,0xEBA9,0xF2D8,0xF2D4,0xF2D2,0xF2D1,0xEBAA,0x3F,0xEBAB,0xEBAC,0xEBAD,0xF2DC,0xEBAE,0x3F,0xEBAF,0x3F,0x3F,0xF2DF,0xEBB0,0xEBB1,0xF2DE,0xF2DD,0xEBB2,0xEBB3,0xEBB4,0xEBB5,0xEBB6,0x3F,0x3F,0xC9C9,0xF2DB,0xB0F3,0xF2E0,0xEBB7,0xF2E2,0x3F,0x3F,0xEBB8,0xEBB9,0xEBBA,0x3F,0xB3EF,0xF2CD,0xB1B7,0x3F,0xEBBB,0xF2E4,0x3F,0x3F,0xEBBC,0x3F,0xEBBD,0xEBBE,0xEBBF,0xF2E3,0xF2E1,0xC3AD,0xEBC0,0xEBC1,0x3F,0x3F,0x3F,0xEBC2,0xEBC3,0xEBC4,0x3F,0xCBF0,0xEBC5,0xEBC6,0x3F,0xEBC7,0xCEDA,0xEBC8,0x3F,0xF2E5,0xEBC9,0xEBD0,0xEBCA,0xEBCB,0xEBCC,0xF2E6,0x3F,0x3F,0xEBCD,0x3F,0x3F,0x3F,0xF2E7,0xEBD2,0xEBCE,0xEBCF,0xEBD1,0x3F,0x3F,0xEBD3,0x3F,0xEBD4,0x3F,0xEBD5,0x3F,0x3F,0xEBD6,0xF2E8,0xEBD7,0xF2E9,0x3F,0x3F,0xEBD8,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xC4BB,0xEBD9,0xF2EA,0x3F,0xC8B7,0x3F,0xF2EF,0xF2EB,0x3F,0x3F,0x3F,0xF2EC,0x3F,0xEBDA,0xCBB1,0xCCC4,0x3F,0xC6D0,0xEBDB,0x3F,0xEBDC,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set9C[] = {3,0xFF,3,0xFF,1,0xFF,1,0xFF,1,1,1,3,1,1,0xFF,3,1,3,1,1,1,1,3,0xFF,3,3,3,1,3,0xFF,3,0xFF,0xFF,1,3,3,1,1,3,3,3,3,3,0xFF,0xFF,1,1,1,1,3,1,0xFF,0xFF,3,3,3,0xFF,1,1,1,0xFF,3,1,0xFF,0xFF,3,0xFF,3,3,3,1,1,1,3,3,0xFF,0xFF,0xFF,3,3,3,0xFF,1,3,3,0xFF,3,1,3,0xFF,1,3,3,3,3,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,1,3,3,3,3,0xFF,0xFF,3,0xFF,3,0xFF,3,0xFF,0xFF,3,1,3,1,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,3,1,0xFF,1,0xFF,1,1,0xFF,0xFF,0xFF,1,0xFF,3,1,1,0xFF,1,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
en9D[] = {0x3F,0x3F,0xEBDE,0xF2F0,0x3F,0x3F,0xF2F1,0xC6BE,0xF2EE,0xF2ED,0x3F,0xEBDD,0x3F,0x3F,0xB2AA,0x3F,0x3F,0xEBDF,0xF2F9,0x3F,0x3F,0xF2F8,0x3F,0xEBE0,0xEBE1,0x3F,0x3F,0xB1F5,0xEBE2,0xEBE3,0xEBE4,0xF2F6,0x3F,0x3F,0x3F,0xF2F5,0x3F,0x3F,0xF2F3,0x3F,0xB3FB,0x3F,0xF2F2,0xBCB2,0xB2A9,0x3F,0x3F,0xEBE5,0xEBE6,0x3F,0xEBE7,0xEBE8,0xEBE9,0x3F,0x3F,0x3F,0x3F,0x3F,0xEBEA,0xB9E3,0xEBEB,0xEBED,0xF2FC,0xF2FB,0x3F,0xF2FA,0xEBEE,0xEBEF,0xF2F7,0xEBEC,0xF2FD,0xEBF0,0xF2FE,0x3F,0xEBF1,0x3F,0x3F,0x3F,0x3F,0x3F,0xF3A5,0xF3A4,0x3F,0xEBF2,0xEBF3,0x3F,0x3F,0x3F,0x3F,0xF3A6,0x3F,0x3F,0xB1AD,0xF3A1,0xF3A2,0xEBF4,0xB9F4,0xCCB9,0xEBF6,0xEBF5,0xF3A3,0xEBF7,0x3F,0x3F,0x3F,0xEBF8,0xEBF9,0xEBFA,0xCBB2,0x3F,0x3F,0xF3AB,0xEBFB,0x3F,0xF3A7,0x3F,0x3F,0x3F,0xEBFC,0xEBFD,0x3F,0x3F,0xF3AC,0xEBFE,0xECA1,0x3F,0xECA2,0x3F,0x3F,0x3F,0x3F,0xECA3,0xECA4,0x3F,0xECA5,0xF3A9,0x3F,0xF3A8,0xECA6,0x3F,0x3F,0xECA7,0xECA8,0xB7DC,0x3F,0x3F,0xECA9,0xECAA,0x3F,0xECAB,0xECAC,0xECAD,0xECAE,0x3F,0xF3AD,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xECAF,0x3F,0x3F,0xF3AE,0x3F,0x3F,0x3F,0x3F,0xF3AF,0xECB0,0xF3AA,0xECB1,0x3F,0xECB2,0xF2F4,0x3F,0xECB3,0xF3B0,0x3F,0xC4E1,0xECB4,0x3F,0x3F,0xF3B4,0xECB5,0xF3B5,0xF3B3,0xECB6,0x3F,0x3F,0xECB7,0x3F,0xF3B2,0xF3B8,0xECB8,0xF3B1,0x3F,0xF3B6,0xECB9,0x3F,0xECBA,0xECBB,0x3F,0x3F,0x3F,0x3F,0xF3B7,0x3F,0x3F,0x3F,0xF3BA,0xECBC,0xECBD,0xECBE,0xECBF,0x3F,0xF3B9,0xECC0,0x3F,0x3F,0x3F,0xECC1,0xECC2,0xECC3,0x3F,0x3F,0x3F,0x3F,0xECC4,0xF3BC,0xECC5,0x3F,0xECC6,0x3F,0xECC7,0x3F,0xF3BD,0xECC8,0xF3BE,0xECC9,0x3F,0xCFC9,0xECCA,0xECCB,0x3F,0x3F,0x3F,0xF3BB,0xC2EB,0xBAED,0x3F,0x3F,0xF3BF,0xECCC,0x3F},
set9D[] = {0xFF,0xFF,3,1,0xFF,0xFF,1,1,1,1,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,3,1,0xFF,0xFF,1,0xFF,3,3,0xFF,0xFF,1,3,3,3,1,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,0xFF,1,0xFF,1,1,1,0xFF,0xFF,3,3,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,0xFF,3,1,3,3,1,1,0xFF,1,3,3,1,3,1,3,1,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,1,1,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,1,3,1,1,3,3,1,3,0xFF,0xFF,0xFF,3,3,3,1,0xFF,0xFF,1,3,0xFF,1,0xFF,0xFF,0xFF,3,3,0xFF,0xFF,1,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,3,0xFF,3,1,0xFF,1,3,0xFF,0xFF,3,3,1,0xFF,0xFF,3,3,0xFF,3,3,3,3,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,1,0xFF,0xFF,0xFF,0xFF,1,3,1,3,0xFF,3,1,0xFF,3,1,0xFF,1,3,0xFF,0xFF,1,3,1,1,3,0xFF,0xFF,3,0xFF,1,1,3,1,0xFF,1,3,0xFF,3,3,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,0xFF,1,3,3,3,3,0xFF,1,3,0xFF,0xFF,0xFF,3,3,3,0xFF,0xFF,0xFF,0xFF,3,1,3,0xFF,3,0xFF,3,0xFF,1,3,1,3,0xFF,1,3,3,0xFF,0xFF,0xFF,1,1,1,0xFF,0xFF,1,3,0xFF},
en9E[] = {0x3F,0x3F,0xECCE,0x3F,0x3F,0x3F,0x3F,0xECCF,0x3F,0x3F,0xECCD,0x3F,0x3F,0x3F,0xECD0,0x3F,0xECD1,0xECD2,0xECD3,0x3F,0x3F,0xECD4,0xECD5,0x3F,0x3F,0xECD6,0xF3C0,0xF3C1,0xECD7,0xECD8,0xF3C2,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xF3C3,0x3F,0x3F,0xB8B4,0xF3C4,0xECD9,0xECDA,0xECDB,0xF3C5,0x3F,0xBCAF,0xECDC,0xF3C6,0xECDD,0xECDE,0xECDF,0xECE0,0x3F,0xECE1,0xF3C7,0x3F,0x3F,0xF3C8,0xF3C9,0x3F,0xECE2,0xECE3,0x3F,0xF3CC,0xF3CA,0xCFBC,0x3F,0xF3CB,0xECE4,0xCEEF,0xECE5,0x3F,0x3F,0xECE6,0x3F,0xF3CD,0xECE7,0xCEDB,0x3F,0x3F,0x3F,0x3F,0xECE8,0xF3CE,0xC7FE,0x3F,0xECE9,0xF3CF,0xF3D1,0x3F,0xECEA,0xF3D2,0xECEB,0xECEC,0xECED,0x3F,0x3F,0xECEE,0xECEF,0xECF0,0x3F,0x3F,0xF3D0,0xB9ED,0xCCCD,0xCBE3,0xD6F7,0x3F,0xDDE0,0xCBFB,0x3F,0x3F,0x3F,0x3F,0xB2AB,0x3F,0xECF1,0x3F,0xECF2,0x3F,0x3F,0xECF3,0xF3D4,0xB5D0,0xF3D5,0xF3D6,0xF3D7,0x3F,0xB9F5,0x3F,0xF3D8,0xECF4,0x3F,0x3F,0xE0D4,0xCCDB,0x3F,0xC2E3,0xF3D9,0xF3DB,0xF3DA,0xECF5,0xF3DC,0x3F,0x3F,0x3F,0xECF6,0xF3DD,0x3F,0xECF7,0xF3DE,0x3F,0x3F,0x3F,0xECF8,0xECF9,0xECFA,0xF3DF,0xECFB,0xECFC,0xECFD,0x3F,0xF3E0,0xECFE,0xF3E1,0xF3E2,0xEDA1,0xF3E3,0x3F,0xF3E4,0xF3E5,0xF3E6,0x3F,0xEDA2},
set9E[] = {0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,0xFF,3,3,3,0xFF,0xFF,3,3,0xFF,0xFF,3,1,1,3,3,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,0xFF,1,1,3,3,3,1,0xFF,1,3,1,3,3,3,3,0xFF,3,1,0xFF,0xFF,1,1,0xFF,3,3,0xFF,1,1,1,0xFF,1,3,1,3,0xFF,0xFF,3,0xFF,1,3,1,0xFF,0xFF,0xFF,0xFF,3,1,1,0xFF,3,1,1,0xFF,3,1,3,3,3,0xFF,0xFF,3,3,3,0xFF,0xFF,1,1,1,1,1,0xFF,1,1,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,0xFF,3,0xFF,0xFF,3,1,1,1,1,1,0xFF,1,0xFF,1,3,0xFF,0xFF,1,1,0xFF,1,1,1,1,3,1,0xFF,0xFF,0xFF,3,1,0xFF,3,1,0xFF,0xFF,0xFF,3,3,3,1,3,3,3,0xFF,1,3,1,1,3,1,0xFF,1,1,1,0xFF,3},
en9F[] = {0x3F,0x3F,0xEDA3,0xEDA4,0x3F,0x3F,0x3F,0xF3E7,0xF3E8,0xEDA5,0x3F,0x3F,0x3F,0x3F,0xC5A4,0xEDA6,0xEDA7,0xEDA8,0xEDA9,0xB8DD,0xEDAA,0xF3EA,0xEDAB,0xEDAC,0x3F,0xEDAD,0xEDAE,0xEDAF,0x3F,0x3F,0x3F,0xEDB0,0xC1CD,0xF3EB,0xEDB1,0x3F,0x3F,0x3F,0xEDB2,0x3F,0x3F,0x3F,0xEDB3,0xEDB4,0xF3EC,0x3F,0x3F,0xEDB5,0x3F,0xEDB6,0xEDB7,0x3F,0xEDB8,0x3F,0x3F,0xEDB9,0x3F,0xEDBA,0xEDBB,0xC9A1,0xEDBC,0xEDBD,0xF3ED,0xEDBE,0x3F,0xEDBF,0x3F,0xEDC0,0xEDC1,0xEDC2,0xEDC3,0xEDC4,0x3F,0x3F,0xF3EE,0xE3B7,0x3F,0x3F,0xECDA,0xF0ED,0x3F,0x3F,0xF3EF,0xEDC5,0xF3F0,0xEDC6,0xEDC7,0xEDC8,0xEDC9,0x3F,0xEDCA,0x3F,0x3F,0xEDCB,0xEDCC,0xF3F2,0xF3F3,0xF3F4,0xCEF0,0xF3F1,0x3F,0x3F,0xF3F5,0xF3F6,0xEDCD,0xEDCE,0xF3F8,0x3F,0xF3F7,0xEDCF,0xEDD0,0xEDD1,0xEDD2,0xEDD3,0xF3FA,0xEDD4,0x3F,0xEDD5,0xF3FB,0xF3F9,0x3F,0x3F,0xEDD6,0x3F,0x3F,0xEDD7,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xCEB6,0x3F,0xEDD8,0xEDD9,0xEDDA,0xEDDB,0x3F,0xEDDC,0xF3FC,0xEDDD,0xEDDE,0x3F,0x3F,0x3F,0x3F,0xF3FD,0xE3D4,0xEDDF,0x3F,0xF3FE,0xEDE0,0xEDE1,0xEDE2,0x3F,0xEDE3,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
set9F[] = {0xFF,0xFF,3,3,0xFF,0xFF,0xFF,1,1,3,0xFF,0xFF,0xFF,0xFF,1,3,3,3,3,1,3,1,3,3,0xFF,3,3,3,0xFF,0xFF,0xFF,3,1,1,3,0xFF,0xFF,0xFF,3,0xFF,0xFF,0xFF,3,3,1,0xFF,0xFF,3,0xFF,3,3,0xFF,3,0xFF,0xFF,3,0xFF,3,3,1,3,3,1,3,0xFF,3,0xFF,3,3,3,3,3,0xFF,0xFF,1,1,0xFF,0xFF,1,1,0xFF,0xFF,1,3,1,3,3,3,3,0xFF,3,0xFF,0xFF,3,3,1,1,1,1,1,0xFF,0xFF,1,1,3,3,1,0xFF,1,3,3,3,3,3,1,3,0xFF,3,1,1,0xFF,0xFF,3,0xFF,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,3,3,3,3,0xFF,3,1,3,3,0xFF,0xFF,0xFF,0xFF,1,1,3,0xFF,1,3,3,3,0xFF,3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
enFF[] = {0x3F,0xA1AA,0x3F,0xA1F4,0xA1F0,0xA1F3,0xA1F5,0x3F,0xA1CA,0xA1CB,0xA1F6,0xA1DC,0xA1A4,0x3F,0xA1A5,0xA1BF,0xA3B0,0xA3B1,0xA3B2,0xA3B3,0xA3B4,0xA3B5,0xA3B6,0xA3B7,0xA3B8,0xA3B9,0xA1A7,0xA1A8,0xA1E3,0xA1E1,0xA1E4,0xA1A9,0xA1F7,0xA3C1,0xA3C2,0xA3C3,0xA3C4,0xA3C5,0xA3C6,0xA3C7,0xA3C8,0xA3C9,0xA3CA,0xA3CB,0xA3CC,0xA3CD,0xA3CE,0xA3CF,0xA3D0,0xA3D1,0xA3D2,0xA3D3,0xA3D4,0xA3D5,0xA3D6,0xA3D7,0xA3D8,0xA3D9,0xA3DA,0xA1CE,0x3F,0xA1CF,0xA1B0,0xA1B2,0xA1AE,0xA3E1,0xA3E2,0xA3E3,0xA3E4,0xA3E5,0xA3E6,0xA3E7,0xA3E8,0xA3E9,0xA3EA,0xA3EB,0xA3EC,0xA3ED,0xA3EE,0xA3EF,0xA3F0,0xA3F1,0xA3F2,0xA3F3,0xA3F4,0xA3F5,0xA3F6,0xA3F7,0xA3F8,0xA3F9,0xA3FA,0xA1D0,0xA1C3,0xA1D1,0x3F,0x3F,0x3F,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF,0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0xA1B1,0x3F,0xA1EF,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F},
setFF[] = {0xFF,1,0xFF,1,1,1,1,0xFF,1,1,1,1,1,0xFF,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0xFF,0xFF,0xFF,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,1,0xFF,1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},
*encode[] = {en00,en01,en02,en03,en04,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,en20,en21,en22,en23,enXX,en25,en26,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,en30,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,en4E,en4F,en50,en51,en52,en53,en54,en55,en56,en57,en58,en59,en5A,en5B,en5C,en5D,en5E,en5F,en60,en61,en62,en63,en64,en65,en66,en67,en68,en69,en6A,en6B,en6C,en6D,en6E,en6F,en70,en71,en72,en73,en74,en75,en76,en77,en78,en79,en7A,en7B,en7C,en7D,en7E,en7F,en80,en81,en82,en83,en84,en85,en86,en87,en88,en89,en8A,en8B,en8C,en8D,en8E,en8F,en90,en91,en92,en93,en94,en95,en96,en97,en98,en99,en9A,en9B,en9C,en9D,en9E,en9F,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enXX,enFF,},
*code_set[] = {set00,set01,set02,set03,set04,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,set20,set21,set22,set23,setXX,set25,set26,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,set30,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,set4E,set4F,set50,set51,set52,set53,set54,set55,set56,set57,set58,set59,set5A,set5B,set5C,set5D,set5E,set5F,set60,set61,set62,set63,set64,set65,set66,set67,set68,set69,set6A,set6B,set6C,set6D,set6E,set6F,set70,set71,set72,set73,set74,set75,set76,set77,set78,set79,set7A,set7B,set7C,set7D,set7E,set7F,set80,set81,set82,set83,set84,set85,set86,set87,set88,set89,set8A,set8B,set8C,set8D,set8E,set8F,set90,set91,set92,set93,set94,set95,set96,set97,set98,set99,set9A,set9B,set9C,set9D,set9E,set9F,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setXX,setFF,};
static const unsigned short
which_code_set[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,},
decode_set1_A1[] = {0x3000,0x3001,0x3002,0xFF0C,0xFF0E,0x30FB,0xFF1A,0xFF1B,0xFF1F,0xFF01,0x309B,0x309C,0xB4,0xFF40,0xA8,0xFF3E,0xFFE3,0xFF3F,0x30FD,0x30FE,0x309D,0x309E,0x3003,0x4EDD,0x3005,0x3006,0x3007,0x30FC,0x2015,0x2010,0xFF0F,0x5C,0x301C,0x2016,0xFF5C,0x2026,0x2025,0x2018,0x2019,0x201C,0x201D,0xFF08,0xFF09,0x3014,0x3015,0xFF3B,0xFF3D,0xFF5B,0xFF5D,0x3008,0x3009,0x300A,0x300B,0x300C,0x300D,0x300E,0x300F,0x3010,0x3011,0xFF0B,0x2212,0xB1,0xD7,0xF7,0xFF1D,0x2260,0xFF1C,0xFF1E,0x2266,0x2267,0x221E,0x2234,0x2642,0x2640,0xB0,0x2032,0x2033,0x2103,0xFFE5,0xFF04,0xA2,0xA3,0xFF05,0xFF03,0xFF06,0xFF0A,0xFF20,0xA7,0x2606,0x2605,0x25CB,0x25CF,0x25CE,0x25C7},
decode_set1_A2[] = {0x25C6,0x25A1,0x25A0,0x25B3,0x25B2,0x25BD,0x25BC,0x203B,0x3012,0x2192,0x2190,0x2191,0x2193,0x3013,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2208,0x220B,0x2286,0x2287,0x2282,0x2283,0x222A,0x2229,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2227,0x2228,0xAC,0x21D2,0x21D4,0x2200,0x2203,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2220,0x22A5,0x2312,0x2202,0x2207,0x2261,0x2252,0x226A,0x226B,0x221A,0x223D,0x221D,0x2235,0x222B,0x222C,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x212B,0x2030,0x266F,0x266D,0x266A,0x2020,0x2021,0xB6,0x0,0x0,0x0,0x0,0x25EF},
decode_set1_A3[] = {0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFF10,0xFF11,0xFF12,0xFF13,0xFF14,0xFF15,0xFF16,0xFF17,0xFF18,0xFF19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFF21,0xFF22,0xFF23,0xFF24,0xFF25,0xFF26,0xFF27,0xFF28,0xFF29,0xFF2A,0xFF2B,0xFF2C,0xFF2D,0xFF2E,0xFF2F,0xFF30,0xFF31,0xFF32,0xFF33,0xFF34,0xFF35,0xFF36,0xFF37,0xFF38,0xFF39,0xFF3A,0x0,0x0,0x0,0x0,0x0,0x0,0xFF41,0xFF42,0xFF43,0xFF44,0xFF45,0xFF46,0xFF47,0xFF48,0xFF49,0xFF4A,0xFF4B,0xFF4C,0xFF4D,0xFF4E,0xFF4F,0xFF50,0xFF51,0xFF52,0xFF53,0xFF54,0xFF55,0xFF56,0xFF57,0xFF58,0xFF59,0xFF5A,0x0,0x0,0x0,0x0},
decode_set1_A4[] = {0x3041,0x3042,0x3043,0x3044,0x3045,0x3046,0x3047,0x3048,0x3049,0x304A,0x304B,0x304C,0x304D,0x304E,0x304F,0x3050,0x3051,0x3052,0x3053,0x3054,0x3055,0x3056,0x3057,0x3058,0x3059,0x305A,0x305B,0x305C,0x305D,0x305E,0x305F,0x3060,0x3061,0x3062,0x3063,0x3064,0x3065,0x3066,0x3067,0x3068,0x3069,0x306A,0x306B,0x306C,0x306D,0x306E,0x306F,0x3070,0x3071,0x3072,0x3073,0x3074,0x3075,0x3076,0x3077,0x3078,0x3079,0x307A,0x307B,0x307C,0x307D,0x307E,0x307F,0x3080,0x3081,0x3082,0x3083,0x3084,0x3085,0x3086,0x3087,0x3088,0x3089,0x308A,0x308B,0x308C,0x308D,0x308E,0x308F,0x3090,0x3091,0x3092,0x3093,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_A5[] = {0x30A1,0x30A2,0x30A3,0x30A4,0x30A5,0x30A6,0x30A7,0x30A8,0x30A9,0x30AA,0x30AB,0x30AC,0x30AD,0x30AE,0x30AF,0x30B0,0x30B1,0x30B2,0x30B3,0x30B4,0x30B5,0x30B6,0x30B7,0x30B8,0x30B9,0x30BA,0x30BB,0x30BC,0x30BD,0x30BE,0x30BF,0x30C0,0x30C1,0x30C2,0x30C3,0x30C4,0x30C5,0x30C6,0x30C7,0x30C8,0x30C9,0x30CA,0x30CB,0x30CC,0x30CD,0x30CE,0x30CF,0x30D0,0x30D1,0x30D2,0x30D3,0x30D4,0x30D5,0x30D6,0x30D7,0x30D8,0x30D9,0x30DA,0x30DB,0x30DC,0x30DD,0x30DE,0x30DF,0x30E0,0x30E1,0x30E2,0x30E3,0x30E4,0x30E5,0x30E6,0x30E7,0x30E8,0x30E9,0x30EA,0x30EB,0x30EC,0x30ED,0x30EE,0x30EF,0x30F0,0x30F1,0x30F2,0x30F3,0x30F4,0x30F5,0x30F6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_A6[] = {0x391,0x392,0x393,0x394,0x395,0x396,0x397,0x398,0x399,0x39A,0x39B,0x39C,0x39D,0x39E,0x39F,0x3A0,0x3A1,0x3A3,0x3A4,0x3A5,0x3A6,0x3A7,0x3A8,0x3A9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3B1,0x3B2,0x3B3,0x3B4,0x3B5,0x3B6,0x3B7,0x3B8,0x3B9,0x3BA,0x3BB,0x3BC,0x3BD,0x3BE,0x3BF,0x3C0,0x3C1,0x3C3,0x3C4,0x3C5,0x3C6,0x3C7,0x3C8,0x3C9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_A7[] = {0x410,0x411,0x412,0x413,0x414,0x415,0x401,0x416,0x417,0x418,0x419,0x41A,0x41B,0x41C,0x41D,0x41E,0x41F,0x420,0x421,0x422,0x423,0x424,0x425,0x426,0x427,0x428,0x429,0x42A,0x42B,0x42C,0x42D,0x42E,0x42F,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x430,0x431,0x432,0x433,0x434,0x435,0x451,0x436,0x437,0x438,0x439,0x43A,0x43B,0x43C,0x43D,0x43E,0x43F,0x440,0x441,0x442,0x443,0x444,0x445,0x446,0x447,0x448,0x449,0x44A,0x44B,0x44C,0x44D,0x44E,0x44F,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_A8[] = {0x2500,0x2502,0x250C,0x2510,0x2518,0x2514,0x251C,0x252C,0x2524,0x2534,0x253C,0x2501,0x2503,0x250F,0x2513,0x251B,0x2517,0x2523,0x2533,0x252B,0x253B,0x254B,0x2520,0x252F,0x2528,0x2537,0x253F,0x251D,0x2530,0x2525,0x2538,0x2542,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_A9[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_AA[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_AB[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_AC[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_AD[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_AE[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_AF[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_B0[] = {0x4E9C,0x5516,0x5A03,0x963F,0x54C0,0x611B,0x6328,0x59F6,0x9022,0x8475,0x831C,0x7A50,0x60AA,0x63E1,0x6E25,0x65ED,0x8466,0x82A6,0x9BF5,0x6893,0x5727,0x65A1,0x6271,0x5B9B,0x59D0,0x867B,0x98F4,0x7D62,0x7DBE,0x9B8E,0x6216,0x7C9F,0x88B7,0x5B89,0x5EB5,0x6309,0x6697,0x6848,0x95C7,0x978D,0x674F,0x4EE5,0x4F0A,0x4F4D,0x4F9D,0x5049,0x56F2,0x5937,0x59D4,0x5A01,0x5C09,0x60DF,0x610F,0x6170,0x6613,0x6905,0x70BA,0x754F,0x7570,0x79FB,0x7DAD,0x7DEF,0x80C3,0x840E,0x8863,0x8B02,0x9055,0x907A,0x533B,0x4E95,0x4EA5,0x57DF,0x80B2,0x90C1,0x78EF,0x4E00,0x58F1,0x6EA2,0x9038,0x7A32,0x8328,0x828B,0x9C2F,0x5141,0x5370,0x54BD,0x54E1,0x56E0,0x59FB,0x5F15,0x98F2,0x6DEB,0x80E4,0x852D},
decode_set1_B1[] = {0x9662,0x9670,0x96A0,0x97FB,0x540B,0x53F3,0x5B87,0x70CF,0x7FBD,0x8FC2,0x96E8,0x536F,0x9D5C,0x7ABA,0x4E11,0x7893,0x81FC,0x6E26,0x5618,0x5504,0x6B1D,0x851A,0x9C3B,0x59E5,0x53A9,0x6D66,0x74DC,0x958F,0x5642,0x4E91,0x904B,0x96F2,0x834F,0x990C,0x53E1,0x55B6,0x5B30,0x5F71,0x6620,0x66F3,0x6804,0x6C38,0x6CF3,0x6D29,0x745B,0x76C8,0x7A4E,0x9834,0x82F1,0x885B,0x8A60,0x92ED,0x6DB2,0x75AB,0x76CA,0x99C5,0x60A6,0x8B01,0x8D8A,0x95B2,0x698E,0x53AD,0x5186,0x5712,0x5830,0x5944,0x5BB4,0x5EF6,0x6028,0x63A9,0x63F4,0x6CBF,0x6F14,0x708E,0x7114,0x7159,0x71D5,0x733F,0x7E01,0x8276,0x82D1,0x8597,0x9060,0x925B,0x9D1B,0x5869,0x65BC,0x6C5A,0x7525,0x51F9,0x592E,0x5965,0x5F80,0x5FDC},
decode_set1_B2[] = {0x62BC,0x65FA,0x6A2A,0x6B27,0x6BB4,0x738B,0x7FC1,0x8956,0x9D2C,0x9D0E,0x9EC4,0x5CA1,0x6C96,0x837B,0x5104,0x5C4B,0x61B6,0x81C6,0x6876,0x7261,0x4E59,0x4FFA,0x5378,0x6069,0x6E29,0x7A4F,0x97F3,0x4E0B,0x5316,0x4EEE,0x4F55,0x4F3D,0x4FA1,0x4F73,0x52A0,0x53EF,0x5609,0x590F,0x5AC1,0x5BB6,0x5BE1,0x79D1,0x6687,0x679C,0x67B6,0x6B4C,0x6CB3,0x706B,0x73C2,0x798D,0x79BE,0x7A3C,0x7B87,0x82B1,0x82DB,0x8304,0x8377,0x83EF,0x83D3,0x8766,0x8AB2,0x5629,0x8CA8,0x8FE6,0x904E,0x971E,0x868A,0x4FC4,0x5CE8,0x6211,0x7259,0x753B,0x81E5,0x82BD,0x86FE,0x8CC0,0x96C5,0x9913,0x99D5,0x4ECB,0x4F1A,0x89E3,0x56DE,0x584A,0x58CA,0x5EFB,0x5FEB,0x602A,0x6094,0x6062,0x61D0,0x6212,0x62D0,0x6539},
decode_set1_B3[] = {0x9B41,0x6666,0x68B0,0x6D77,0x7070,0x754C,0x7686,0x7D75,0x82A5,0x87F9,0x958B,0x968E,0x8C9D,0x51F1,0x52BE,0x5916,0x54B3,0x5BB3,0x5D16,0x6168,0x6982,0x6DAF,0x788D,0x84CB,0x8857,0x8A72,0x93A7,0x9AB8,0x6D6C,0x99A8,0x86D9,0x57A3,0x67FF,0x86CE,0x920E,0x5283,0x5687,0x5404,0x5ED3,0x62E1,0x64B9,0x683C,0x6838,0x6BBB,0x7372,0x78BA,0x7A6B,0x899A,0x89D2,0x8D6B,0x8F03,0x90ED,0x95A3,0x9694,0x9769,0x5B66,0x5CB3,0x697D,0x984D,0x984E,0x639B,0x7B20,0x6A2B,0x6A7F,0x68B6,0x9C0D,0x6F5F,0x5272,0x559D,0x6070,0x62EC,0x6D3B,0x6E07,0x6ED1,0x845B,0x8910,0x8F44,0x4E14,0x9C39,0x53F6,0x691B,0x6A3A,0x9784,0x682A,0x515C,0x7AC3,0x84B2,0x91DC,0x938C,0x565B,0x9D28,0x6822,0x8305,0x8431},
decode_set1_B4[] = {0x7CA5,0x5208,0x82C5,0x74E6,0x4E7E,0x4F83,0x51A0,0x5BD2,0x520A,0x52D8,0x52E7,0x5DFB,0x559A,0x582A,0x59E6,0x5B8C,0x5B98,0x5BDB,0x5E72,0x5E79,0x60A3,0x611F,0x6163,0x61BE,0x63DB,0x6562,0x67D1,0x6853,0x68FA,0x6B3E,0x6B53,0x6C57,0x6F22,0x6F97,0x6F45,0x74B0,0x7518,0x76E3,0x770B,0x7AFF,0x7BA1,0x7C21,0x7DE9,0x7F36,0x7FF0,0x809D,0x8266,0x839E,0x89B3,0x8ACC,0x8CAB,0x9084,0x9451,0x9593,0x9591,0x95A2,0x9665,0x97D3,0x9928,0x8218,0x4E38,0x542B,0x5CB8,0x5DCC,0x73A9,0x764C,0x773C,0x5CA9,0x7FEB,0x8D0B,0x96C1,0x9811,0x9854,0x9858,0x4F01,0x4F0E,0x5371,0x559C,0x5668,0x57FA,0x5947,0x5B09,0x5BC4,0x5C90,0x5E0C,0x5E7E,0x5FCC,0x63EE,0x673A,0x65D7,0x65E2,0x671F,0x68CB,0x68C4},
decode_set1_B5[] = {0x6A5F,0x5E30,0x6BC5,0x6C17,0x6C7D,0x757F,0x7948,0x5B63,0x7A00,0x7D00,0x5FBD,0x898F,0x8A18,0x8CB4,0x8D77,0x8ECC,0x8F1D,0x98E2,0x9A0E,0x9B3C,0x4E80,0x507D,0x5100,0x5993,0x5B9C,0x622F,0x6280,0x64EC,0x6B3A,0x72A0,0x7591,0x7947,0x7FA9,0x87FB,0x8ABC,0x8B70,0x63AC,0x83CA,0x97A0,0x5409,0x5403,0x55AB,0x6854,0x6A58,0x8A70,0x7827,0x6775,0x9ECD,0x5374,0x5BA2,0x811A,0x8650,0x9006,0x4E18,0x4E45,0x4EC7,0x4F11,0x53CA,0x5438,0x5BAE,0x5F13,0x6025,0x6551,0x673D,0x6C42,0x6C72,0x6CE3,0x7078,0x7403,0x7A76,0x7AAE,0x7B08,0x7D1A,0x7CFE,0x7D66,0x65E7,0x725B,0x53BB,0x5C45,0x5DE8,0x62D2,0x62E0,0x6319,0x6E20,0x865A,0x8A31,0x8DDD,0x92F8,0x6F01,0x79A6,0x9B5A,0x4EA8,0x4EAB,0x4EAC},
decode_set1_B6[] = {0x4F9B,0x4FA0,0x50D1,0x5147,0x7AF6,0x5171,0x51F6,0x5354,0x5321,0x537F,0x53EB,0x55AC,0x5883,0x5CE1,0x5F37,0x5F4A,0x602F,0x6050,0x606D,0x631F,0x6559,0x6A4B,0x6CC1,0x72C2,0x72ED,0x77EF,0x80F8,0x8105,0x8208,0x854E,0x90F7,0x93E1,0x97FF,0x9957,0x9A5A,0x4EF0,0x51DD,0x5C2D,0x6681,0x696D,0x5C40,0x66F2,0x6975,0x7389,0x6850,0x7C81,0x50C5,0x52E4,0x5747,0x5DFE,0x9326,0x65A4,0x6B23,0x6B3D,0x7434,0x7981,0x79BD,0x7B4B,0x7DCA,0x82B9,0x83CC,0x887F,0x895F,0x8B39,0x8FD1,0x91D1,0x541F,0x9280,0x4E5D,0x5036,0x53E5,0x533A,0x72D7,0x7396,0x77E9,0x82E6,0x8EAF,0x99C6,0x99C8,0x99D2,0x5177,0x611A,0x865E,0x55B0,0x7A7A,0x5076,0x5BD3,0x9047,0x9685,0x4E32,0x6ADB,0x91E7,0x5C51,0x5C48},
decode_set1_B7[] = {0x6398,0x7A9F,0x6C93,0x9774,0x8F61,0x7AAA,0x718A,0x9688,0x7C82,0x6817,0x7E70,0x6851,0x936C,0x52F2,0x541B,0x85AB,0x8A13,0x7FA4,0x8ECD,0x90E1,0x5366,0x8888,0x7941,0x4FC2,0x50BE,0x5211,0x5144,0x5553,0x572D,0x73EA,0x578B,0x5951,0x5F62,0x5F84,0x6075,0x6176,0x6167,0x61A9,0x63B2,0x643A,0x656C,0x666F,0x6842,0x6E13,0x7566,0x7A3D,0x7CFB,0x7D4C,0x7D99,0x7E4B,0x7F6B,0x830E,0x834A,0x86CD,0x8A08,0x8A63,0x8B66,0x8EFD,0x981A,0x9D8F,0x82B8,0x8FCE,0x9BE8,0x5287,0x621F,0x6483,0x6FC0,0x9699,0x6841,0x5091,0x6B20,0x6C7A,0x6F54,0x7A74,0x7D50,0x8840,0x8A23,0x6708,0x4EF6,0x5039,0x5026,0x5065,0x517C,0x5238,0x5263,0x55A7,0x570F,0x5805,0x5ACC,0x5EFA,0x61B2,0x61F8,0x62F3,0x6372},
decode_set1_B8[] = {0x691C,0x6A29,0x727D,0x72AC,0x732E,0x7814,0x786F,0x7D79,0x770C,0x80A9,0x898B,0x8B19,0x8CE2,0x8ED2,0x9063,0x9375,0x967A,0x9855,0x9A13,0x9E78,0x5143,0x539F,0x53B3,0x5E7B,0x5F26,0x6E1B,0x6E90,0x7384,0x73FE,0x7D43,0x8237,0x8A00,0x8AFA,0x9650,0x4E4E,0x500B,0x53E4,0x547C,0x56FA,0x59D1,0x5B64,0x5DF1,0x5EAB,0x5F27,0x6238,0x6545,0x67AF,0x6E56,0x72D0,0x7CCA,0x88B4,0x80A1,0x80E1,0x83F0,0x864E,0x8A87,0x8DE8,0x9237,0x96C7,0x9867,0x9F13,0x4E94,0x4E92,0x4F0D,0x5348,0x5449,0x543E,0x5A2F,0x5F8C,0x5FA1,0x609F,0x68A7,0x6A8E,0x745A,0x7881,0x8A9E,0x8AA4,0x8B77,0x9190,0x4E5E,0x9BC9,0x4EA4,0x4F7C,0x4FAF,0x5019,0x5016,0x5149,0x516C,0x529F,0x52B9,0x52FE,0x539A,0x53E3,0x5411},
decode_set1_B9[] = {0x540E,0x5589,0x5751,0x57A2,0x597D,0x5B54,0x5B5D,0x5B8F,0x5DE5,0x5DE7,0x5DF7,0x5E78,0x5E83,0x5E9A,0x5EB7,0x5F18,0x6052,0x614C,0x6297,0x62D8,0x63A7,0x653B,0x6602,0x6643,0x66F4,0x676D,0x6821,0x6897,0x69CB,0x6C5F,0x6D2A,0x6D69,0x6E2F,0x6E9D,0x7532,0x7687,0x786C,0x7A3F,0x7CE0,0x7D05,0x7D18,0x7D5E,0x7DB1,0x8015,0x8003,0x80AF,0x80B1,0x8154,0x818F,0x822A,0x8352,0x884C,0x8861,0x8B1B,0x8CA2,0x8CFC,0x90CA,0x9175,0x9271,0x783F,0x92FC,0x95A4,0x964D,0x9805,0x9999,0x9AD8,0x9D3B,0x525B,0x52AB,0x53F7,0x5408,0x58D5,0x62F7,0x6FE0,0x8C6A,0x8F5F,0x9EB9,0x514B,0x523B,0x544A,0x56FD,0x7A40,0x9177,0x9D60,0x9ED2,0x7344,0x6F09,0x8170,0x7511,0x5FFD,0x60DA,0x9AA8,0x72DB,0x8FBC},
decode_set1_BA[] = {0x6B64,0x9803,0x4ECA,0x56F0,0x5764,0x58BE,0x5A5A,0x6068,0x61C7,0x660F,0x6606,0x6839,0x68B1,0x6DF7,0x75D5,0x7D3A,0x826E,0x9B42,0x4E9B,0x4F50,0x53C9,0x5506,0x5D6F,0x5DE6,0x5DEE,0x67FB,0x6C99,0x7473,0x7802,0x8A50,0x9396,0x88DF,0x5750,0x5EA7,0x632B,0x50B5,0x50AC,0x518D,0x6700,0x54C9,0x585E,0x59BB,0x5BB0,0x5F69,0x624D,0x63A1,0x683D,0x6B73,0x6E08,0x707D,0x91C7,0x7280,0x7815,0x7826,0x796D,0x658E,0x7D30,0x83DC,0x88C1,0x8F09,0x969B,0x5264,0x5728,0x6750,0x7F6A,0x8CA1,0x51B4,0x5742,0x962A,0x583A,0x698A,0x80B4,0x54B2,0x5D0E,0x57FC,0x7895,0x9DFA,0x4F5C,0x524A,0x548B,0x643E,0x6628,0x6714,0x67F5,0x7A84,0x7B56,0x7D22,0x932F,0x685C,0x9BAD,0x7B39,0x5319,0x518A,0x5237},
decode_set1_BB[] = {0x5BDF,0x62F6,0x64AE,0x64E6,0x672D,0x6BBA,0x85A9,0x96D1,0x7690,0x9BD6,0x634C,0x9306,0x9BAB,0x76BF,0x6652,0x4E09,0x5098,0x53C2,0x5C71,0x60E8,0x6492,0x6563,0x685F,0x71E6,0x73CA,0x7523,0x7B97,0x7E82,0x8695,0x8B83,0x8CDB,0x9178,0x9910,0x65AC,0x66AB,0x6B8B,0x4ED5,0x4ED4,0x4F3A,0x4F7F,0x523A,0x53F8,0x53F2,0x55E3,0x56DB,0x58EB,0x59CB,0x59C9,0x59FF,0x5B50,0x5C4D,0x5E02,0x5E2B,0x5FD7,0x601D,0x6307,0x652F,0x5B5C,0x65AF,0x65BD,0x65E8,0x679D,0x6B62,0x6B7B,0x6C0F,0x7345,0x7949,0x79C1,0x7CF8,0x7D19,0x7D2B,0x80A2,0x8102,0x81F3,0x8996,0x8A5E,0x8A69,0x8A66,0x8A8C,0x8AEE,0x8CC7,0x8CDC,0x96CC,0x98FC,0x6B6F,0x4E8B,0x4F3C,0x4F8D,0x5150,0x5B57,0x5BFA,0x6148,0x6301,0x6642},
decode_set1_BC[] = {0x6B21,0x6ECB,0x6CBB,0x723E,0x74BD,0x75D4,0x78C1,0x793A,0x800C,0x8033,0x81EA,0x8494,0x8F9E,0x6C50,0x9E7F,0x5F0F,0x8B58,0x9D2B,0x7AFA,0x8EF8,0x5B8D,0x96EB,0x4E03,0x53F1,0x57F7,0x5931,0x5AC9,0x5BA4,0x6089,0x6E7F,0x6F06,0x75BE,0x8CEA,0x5B9F,0x8500,0x7BE0,0x5072,0x67F4,0x829D,0x5C61,0x854A,0x7E1E,0x820E,0x5199,0x5C04,0x6368,0x8D66,0x659C,0x716E,0x793E,0x7D17,0x8005,0x8B1D,0x8ECA,0x906E,0x86C7,0x90AA,0x501F,0x52FA,0x5C3A,0x6753,0x707C,0x7235,0x914C,0x91C8,0x932B,0x82E5,0x5BC2,0x5F31,0x60F9,0x4E3B,0x53D6,0x5B88,0x624B,0x6731,0x6B8A,0x72E9,0x73E0,0x7A2E,0x816B,0x8DA3,0x9152,0x9996,0x5112,0x53D7,0x546A,0x5BFF,0x6388,0x6A39,0x7DAC,0x9700,0x56DA,0x53CE,0x5468},
decode_set1_BD[] = {0x5B97,0x5C31,0x5DDE,0x4FEE,0x6101,0x62FE,0x6D32,0x79C0,0x79CB,0x7D42,0x7E4D,0x7FD2,0x81ED,0x821F,0x8490,0x8846,0x8972,0x8B90,0x8E74,0x8F2F,0x9031,0x914B,0x916C,0x96C6,0x919C,0x4EC0,0x4F4F,0x5145,0x5341,0x5F93,0x620E,0x67D4,0x6C41,0x6E0B,0x7363,0x7E26,0x91CD,0x9283,0x53D4,0x5919,0x5BBF,0x6DD1,0x795D,0x7E2E,0x7C9B,0x587E,0x719F,0x51FA,0x8853,0x8FF0,0x4FCA,0x5CFB,0x6625,0x77AC,0x7AE3,0x821C,0x99FF,0x51C6,0x5FAA,0x65EC,0x696F,0x6B89,0x6DF3,0x6E96,0x6F64,0x76FE,0x7D14,0x5DE1,0x9075,0x9187,0x9806,0x51E6,0x521D,0x6240,0x6691,0x66D9,0x6E1A,0x5EB6,0x7DD2,0x7F72,0x66F8,0x85AF,0x85F7,0x8AF8,0x52A9,0x53D9,0x5973,0x5E8F,0x5F90,0x6055,0x92E4,0x9664,0x50B7,0x511F},
decode_set1_BE[] = {0x52DD,0x5320,0x5347,0x53EC,0x54E8,0x5546,0x5531,0x5617,0x5968,0x59BE,0x5A3C,0x5BB5,0x5C06,0x5C0F,0x5C11,0x5C1A,0x5E84,0x5E8A,0x5EE0,0x5F70,0x627F,0x6284,0x62DB,0x638C,0x6377,0x6607,0x660C,0x662D,0x6676,0x677E,0x68A2,0x6A1F,0x6A35,0x6CBC,0x6D88,0x6E09,0x6E58,0x713C,0x7126,0x7167,0x75C7,0x7701,0x785D,0x7901,0x7965,0x79F0,0x7AE0,0x7B11,0x7CA7,0x7D39,0x8096,0x83D6,0x848B,0x8549,0x885D,0x88F3,0x8A1F,0x8A3C,0x8A54,0x8A73,0x8C61,0x8CDE,0x91A4,0x9266,0x937E,0x9418,0x969C,0x9798,0x4E0A,0x4E08,0x4E1E,0x4E57,0x5197,0x5270,0x57CE,0x5834,0x58CC,0x5B22,0x5E38,0x60C5,0x64FE,0x6761,0x6756,0x6D44,0x72B6,0x7573,0x7A63,0x84B8,0x8B72,0x91B8,0x9320,0x5631,0x57F4,0x98FE},
decode_set1_BF[] = {0x62ED,0x690D,0x6B96,0x71ED,0x7E54,0x8077,0x8272,0x89E6,0x98DF,0x8755,0x8FB1,0x5C3B,0x4F38,0x4FE1,0x4FB5,0x5507,0x5A20,0x5BDD,0x5BE9,0x5FC3,0x614E,0x632F,0x65B0,0x664B,0x68EE,0x699B,0x6D78,0x6DF1,0x7533,0x75B9,0x771F,0x795E,0x79E6,0x7D33,0x81E3,0x82AF,0x85AA,0x89AA,0x8A3A,0x8EAB,0x8F9B,0x9032,0x91DD,0x9707,0x4EBA,0x4EC1,0x5203,0x5875,0x58EC,0x5C0B,0x751A,0x5C3D,0x814E,0x8A0A,0x8FC5,0x9663,0x976D,0x7B25,0x8ACF,0x9808,0x9162,0x56F3,0x53A8,0x9017,0x5439,0x5782,0x5E25,0x63A8,0x6C34,0x708A,0x7761,0x7C8B,0x7FE0,0x8870,0x9042,0x9154,0x9310,0x9318,0x968F,0x745E,0x9AC4,0x5D07,0x5D69,0x6570,0x67A2,0x8DA8,0x96DB,0x636E,0x6749,0x6919,0x83C5,0x9817,0x96C0,0x88FE},
decode_set1_C0[] = {0x6F84,0x647A,0x5BF8,0x4E16,0x702C,0x755D,0x662F,0x51C4,0x5236,0x52E2,0x59D3,0x5F81,0x6027,0x6210,0x653F,0x6574,0x661F,0x6674,0x68F2,0x6816,0x6B63,0x6E05,0x7272,0x751F,0x76DB,0x7CBE,0x8056,0x58F0,0x88FD,0x897F,0x8AA0,0x8A93,0x8ACB,0x901D,0x9192,0x9752,0x9759,0x6589,0x7A0E,0x8106,0x96BB,0x5E2D,0x60DC,0x621A,0x65A5,0x6614,0x6790,0x77F3,0x7A4D,0x7C4D,0x7E3E,0x810A,0x8CAC,0x8D64,0x8DE1,0x8E5F,0x78A9,0x5207,0x62D9,0x63A5,0x6442,0x6298,0x8A2D,0x7A83,0x7BC0,0x8AAC,0x96EA,0x7D76,0x820C,0x8749,0x4ED9,0x5148,0x5343,0x5360,0x5BA3,0x5C02,0x5C16,0x5DDD,0x6226,0x6247,0x64B0,0x6813,0x6834,0x6CC9,0x6D45,0x6D17,0x67D3,0x6F5C,0x714E,0x717D,0x65CB,0x7A7F,0x7BAD,0x7DDA},
decode_set1_C1[] = {0x7E4A,0x7FA8,0x817A,0x821B,0x8239,0x85A6,0x8A6E,0x8CCE,0x8DF5,0x9078,0x9077,0x92AD,0x9291,0x9583,0x9BAE,0x524D,0x5584,0x6F38,0x7136,0x5168,0x7985,0x7E55,0x81B3,0x7CCE,0x564C,0x5851,0x5CA8,0x63AA,0x66FE,0x66FD,0x695A,0x72D9,0x758F,0x758E,0x790E,0x7956,0x79DF,0x7C97,0x7D20,0x7D44,0x8607,0x8A34,0x963B,0x9061,0x9F20,0x50E7,0x5275,0x53CC,0x53E2,0x5009,0x55AA,0x58EE,0x594F,0x723D,0x5B8B,0x5C64,0x531D,0x60E3,0x60F3,0x635C,0x6383,0x633F,0x63BB,0x64CD,0x65E9,0x66F9,0x5DE3,0x69CD,0x69FD,0x6F15,0x71E5,0x4E89,0x75E9,0x76F8,0x7A93,0x7CDF,0x7DCF,0x7D9C,0x8061,0x8349,0x8358,0x846C,0x84BC,0x85FB,0x88C5,0x8D70,0x9001,0x906D,0x9397,0x971C,0x9A12,0x50CF,0x5897,0x618E},
decode_set1_C2[] = {0x81D3,0x8535,0x8D08,0x9020,0x4FC3,0x5074,0x5247,0x5373,0x606F,0x6349,0x675F,0x6E2C,0x8DB3,0x901F,0x4FD7,0x5C5E,0x8CCA,0x65CF,0x7D9A,0x5352,0x8896,0x5176,0x63C3,0x5B58,0x5B6B,0x5C0A,0x640D,0x6751,0x905C,0x4ED6,0x591A,0x592A,0x6C70,0x8A51,0x553E,0x5815,0x59A5,0x60F0,0x6253,0x67C1,0x8235,0x6955,0x9640,0x99C4,0x9A28,0x4F53,0x5806,0x5BFE,0x8010,0x5CB1,0x5E2F,0x5F85,0x6020,0x614B,0x6234,0x66FF,0x6CF0,0x6EDE,0x80CE,0x817F,0x82D4,0x888B,0x8CB8,0x9000,0x902E,0x968A,0x9EDB,0x9BDB,0x4EE3,0x53F0,0x5927,0x7B2C,0x918D,0x984C,0x9DF9,0x6EDD,0x7027,0x5353,0x5544,0x5B85,0x6258,0x629E,0x62D3,0x6CA2,0x6FEF,0x7422,0x8A17,0x9438,0x6FC1,0x8AFE,0x8338,0x51E7,0x86F8,0x53EA},
decode_set1_C3[] = {0x53E9,0x4F46,0x9054,0x8FB0,0x596A,0x8131,0x5DFD,0x7AEA,0x8FBF,0x68DA,0x8C37,0x72F8,0x9C48,0x6A3D,0x8AB0,0x4E39,0x5358,0x5606,0x5766,0x62C5,0x63A2,0x65E6,0x6B4E,0x6DE1,0x6E5B,0x70AD,0x77ED,0x7AEF,0x7BAA,0x7DBB,0x803D,0x80C6,0x86CB,0x8A95,0x935B,0x56E3,0x58C7,0x5F3E,0x65AD,0x6696,0x6A80,0x6BB5,0x7537,0x8AC7,0x5024,0x77E5,0x5730,0x5F1B,0x6065,0x667A,0x6C60,0x75F4,0x7A1A,0x7F6E,0x81F4,0x8718,0x9045,0x99B3,0x7BC9,0x755C,0x7AF9,0x7B51,0x84C4,0x9010,0x79E9,0x7A92,0x8336,0x5AE1,0x7740,0x4E2D,0x4EF2,0x5B99,0x5FE0,0x62BD,0x663C,0x67F1,0x6CE8,0x866B,0x8877,0x8A3B,0x914E,0x92F3,0x99D0,0x6A17,0x7026,0x732A,0x82E7,0x8457,0x8CAF,0x4E01,0x5146,0x51CB,0x558B,0x5BF5},
decode_set1_C4[] = {0x5E16,0x5E33,0x5E81,0x5F14,0x5F35,0x5F6B,0x5FB4,0x61F2,0x6311,0x66A2,0x671D,0x6F6E,0x7252,0x753A,0x773A,0x8074,0x8139,0x8178,0x8776,0x8ABF,0x8ADC,0x8D85,0x8DF3,0x929A,0x9577,0x9802,0x9CE5,0x52C5,0x6357,0x76F4,0x6715,0x6C88,0x73CD,0x8CC3,0x93AE,0x9673,0x6D25,0x589C,0x690E,0x69CC,0x8FFD,0x939A,0x75DB,0x901A,0x585A,0x6802,0x63B4,0x69FB,0x4F43,0x6F2C,0x67D8,0x8FBB,0x8526,0x7DB4,0x9354,0x693F,0x6F70,0x576A,0x58F7,0x5B2C,0x7D2C,0x722A,0x540A,0x91E3,0x9DB4,0x4EAD,0x4F4E,0x505C,0x5075,0x5243,0x8C9E,0x5448,0x5824,0x5B9A,0x5E1D,0x5E95,0x5EAD,0x5EF7,0x5F1F,0x608C,0x62B5,0x633A,0x63D0,0x68AF,0x6C40,0x7887,0x798E,0x7A0B,0x7DE0,0x8247,0x8A02,0x8AE6,0x8E44,0x9013},
decode_set1_C5[] = {0x90B8,0x912D,0x91D8,0x9F0E,0x6CE5,0x6458,0x64E2,0x6575,0x6EF4,0x7684,0x7B1B,0x9069,0x93D1,0x6EBA,0x54F2,0x5FB9,0x64A4,0x8F4D,0x8FED,0x9244,0x5178,0x586B,0x5929,0x5C55,0x5E97,0x6DFB,0x7E8F,0x751C,0x8CBC,0x8EE2,0x985B,0x70B9,0x4F1D,0x6BBF,0x6FB1,0x7530,0x96FB,0x514E,0x5410,0x5835,0x5857,0x59AC,0x5C60,0x5F92,0x6597,0x675C,0x6E21,0x767B,0x83DF,0x8CED,0x9014,0x90FD,0x934D,0x7825,0x783A,0x52AA,0x5EA6,0x571F,0x5974,0x6012,0x5012,0x515A,0x51AC,0x51CD,0x5200,0x5510,0x5854,0x5858,0x5957,0x5B95,0x5CF6,0x5D8B,0x60BC,0x6295,0x642D,0x6771,0x6843,0x68BC,0x68DF,0x76D7,0x6DD8,0x6E6F,0x6D9B,0x706F,0x71C8,0x5F53,0x75D8,0x7977,0x7B49,0x7B54,0x7B52,0x7CD6,0x7D71,0x5230},
decode_set1_C6[] = {0x8463,0x8569,0x85E4,0x8A0E,0x8B04,0x8C46,0x8E0F,0x9003,0x900F,0x9419,0x9676,0x982D,0x9A30,0x95D8,0x50CD,0x52D5,0x540C,0x5802,0x5C0E,0x61A7,0x649E,0x6D1E,0x77B3,0x7AE5,0x80F4,0x8404,0x9053,0x9285,0x5CE0,0x9D07,0x533F,0x5F97,0x5FB3,0x6D9C,0x7279,0x7763,0x79BF,0x7BE4,0x6BD2,0x72EC,0x8AAD,0x6803,0x6A61,0x51F8,0x7A81,0x6934,0x5C4A,0x9CF6,0x82EB,0x5BC5,0x9149,0x701E,0x5678,0x5C6F,0x60C7,0x6566,0x6C8C,0x8C5A,0x9041,0x9813,0x5451,0x66C7,0x920D,0x5948,0x90A3,0x5185,0x4E4D,0x51EA,0x8599,0x8B0E,0x7058,0x637A,0x934B,0x6962,0x99B4,0x7E04,0x7577,0x5357,0x6960,0x8EDF,0x96E3,0x6C5D,0x4E8C,0x5C3C,0x5F10,0x8FE9,0x5302,0x8CD1,0x8089,0x8679,0x5EFF,0x65E5,0x4E73,0x5165},
decode_set1_C7[] = {0x5982,0x5C3F,0x97EE,0x4EFB,0x598A,0x5FCD,0x8A8D,0x6FE1,0x79B0,0x7962,0x5BE7,0x8471,0x732B,0x71B1,0x5E74,0x5FF5,0x637B,0x649A,0x71C3,0x7C98,0x4E43,0x5EFC,0x4E4B,0x57DC,0x56A2,0x60A9,0x6FC3,0x7D0D,0x80FD,0x8133,0x81BF,0x8FB2,0x8997,0x86A4,0x5DF4,0x628A,0x64AD,0x8987,0x6777,0x6CE2,0x6D3E,0x7436,0x7834,0x5A46,0x7F75,0x82AD,0x99AC,0x4FF3,0x5EC3,0x62DD,0x6392,0x6557,0x676F,0x76C3,0x724C,0x80CC,0x80BA,0x8F29,0x914D,0x500D,0x57F9,0x5A92,0x6885,0x6973,0x7164,0x72FD,0x8CB7,0x58F2,0x8CE0,0x966A,0x9019,0x877F,0x79E4,0x77E7,0x8429,0x4F2F,0x5265,0x535A,0x62CD,0x67CF,0x6CCA,0x767D,0x7B94,0x7C95,0x8236,0x8584,0x8FEB,0x66DD,0x6F20,0x7206,0x7E1B,0x83AB,0x99C1,0x9EA6},
decode_set1_C8[] = {0x51FD,0x7BB1,0x7872,0x7BB8,0x8087,0x7B48,0x6AE8,0x5E61,0x808C,0x7551,0x7560,0x516B,0x9262,0x6E8C,0x767A,0x9197,0x9AEA,0x4F10,0x7F70,0x629C,0x7B4F,0x95A5,0x9CE9,0x567A,0x5859,0x86E4,0x96BC,0x4F34,0x5224,0x534A,0x53CD,0x53DB,0x5E06,0x642C,0x6591,0x677F,0x6C3E,0x6C4E,0x7248,0x72AF,0x73ED,0x7554,0x7E41,0x822C,0x85E9,0x8CA9,0x7BC4,0x91C6,0x7169,0x9812,0x98EF,0x633D,0x6669,0x756A,0x76E4,0x78D0,0x8543,0x86EE,0x532A,0x5351,0x5426,0x5983,0x5E87,0x5F7C,0x60B2,0x6249,0x6279,0x62AB,0x6590,0x6BD4,0x6CCC,0x75B2,0x76AE,0x7891,0x79D8,0x7DCB,0x7F77,0x80A5,0x88AB,0x8AB9,0x8CBB,0x907F,0x975E,0x98DB,0x6A0B,0x7C38,0x5099,0x5C3E,0x5FAE,0x6787,0x6BD8,0x7435,0x7709,0x7F8E},
decode_set1_C9[] = {0x9F3B,0x67CA,0x7A17,0x5339,0x758B,0x9AED,0x5F66,0x819D,0x83F1,0x8098,0x5F3C,0x5FC5,0x7562,0x7B46,0x903C,0x6867,0x59EB,0x5A9B,0x7D10,0x767E,0x8B2C,0x4FF5,0x5F6A,0x6A19,0x6C37,0x6F02,0x74E2,0x7968,0x8868,0x8A55,0x8C79,0x5EDF,0x63CF,0x75C5,0x79D2,0x82D7,0x9328,0x92F2,0x849C,0x86ED,0x9C2D,0x54C1,0x5F6C,0x658C,0x6D5C,0x7015,0x8CA7,0x8CD3,0x983B,0x654F,0x74F6,0x4E0D,0x4ED8,0x57E0,0x592B,0x5A66,0x5BCC,0x51A8,0x5E03,0x5E9C,0x6016,0x6276,0x6577,0x65A7,0x666E,0x6D6E,0x7236,0x7B26,0x8150,0x819A,0x8299,0x8B5C,0x8CA0,0x8CE6,0x8D74,0x961C,0x9644,0x4FAE,0x64AB,0x6B66,0x821E,0x8461,0x856A,0x90E8,0x5C01,0x6953,0x98A8,0x847A,0x8557,0x4F0F,0x526F,0x5FA9,0x5E45,0x670D},
decode_set1_CA[] = {0x798F,0x8179,0x8907,0x8986,0x6DF5,0x5F17,0x6255,0x6CB8,0x4ECF,0x7269,0x9B92,0x5206,0x543B,0x5674,0x58B3,0x61A4,0x626E,0x711A,0x596E,0x7C89,0x7CDE,0x7D1B,0x96F0,0x6587,0x805E,0x4E19,0x4F75,0x5175,0x5840,0x5E63,0x5E73,0x5F0A,0x67C4,0x4E26,0x853D,0x9589,0x965B,0x7C73,0x9801,0x50FB,0x58C1,0x7656,0x78A7,0x5225,0x77A5,0x8511,0x7B86,0x504F,0x5909,0x7247,0x7BC7,0x7DE8,0x8FBA,0x8FD4,0x904D,0x4FBF,0x52C9,0x5A29,0x5F01,0x97AD,0x4FDD,0x8217,0x92EA,0x5703,0x6355,0x6B69,0x752B,0x88DC,0x8F14,0x7A42,0x52DF,0x5893,0x6155,0x620A,0x66AE,0x6BCD,0x7C3F,0x83E9,0x5023,0x4FF8,0x5305,0x5446,0x5831,0x5949,0x5B9D,0x5CF0,0x5CEF,0x5D29,0x5E96,0x62B1,0x6367,0x653E,0x65B9,0x670B},
decode_set1_CB[] = {0x6CD5,0x6CE1,0x70F9,0x7832,0x7E2B,0x80DE,0x82B3,0x840C,0x84EC,0x8702,0x8912,0x8A2A,0x8C4A,0x90A6,0x92D2,0x98FD,0x9CF3,0x9D6C,0x4E4F,0x4EA1,0x508D,0x5256,0x574A,0x59A8,0x5E3D,0x5FD8,0x5FD9,0x623F,0x66B4,0x671B,0x67D0,0x68D2,0x5192,0x7D21,0x80AA,0x81A8,0x8B00,0x8C8C,0x8CBF,0x927E,0x9632,0x5420,0x982C,0x5317,0x50D5,0x535C,0x58A8,0x64B2,0x6734,0x7267,0x7766,0x7A46,0x91E6,0x52C3,0x6CA1,0x6B86,0x5800,0x5E4C,0x5954,0x672C,0x7FFB,0x51E1,0x76C6,0x6469,0x78E8,0x9B54,0x9EBB,0x57CB,0x59B9,0x6627,0x679A,0x6BCE,0x54E9,0x69D9,0x5E55,0x819C,0x6795,0x9BAA,0x67FE,0x9C52,0x685D,0x4EA6,0x4FE3,0x53C8,0x62B9,0x672B,0x6CAB,0x8FC4,0x4FAD,0x7E6D,0x9EBF,0x4E07,0x6162,0x6E80},
decode_set1_CC[] = {0x6F2B,0x8513,0x5473,0x672A,0x9B45,0x5DF3,0x7B95,0x5CAC,0x5BC6,0x871C,0x6E4A,0x84D1,0x7A14,0x8108,0x5999,0x7C8D,0x6C11,0x7720,0x52D9,0x5922,0x7121,0x725F,0x77DB,0x9727,0x9D61,0x690B,0x5A7F,0x5A18,0x51A5,0x540D,0x547D,0x660E,0x76DF,0x8FF7,0x9298,0x9CF4,0x59EA,0x725D,0x6EC5,0x514D,0x68C9,0x7DBF,0x7DEC,0x9762,0x9EBA,0x6478,0x6A21,0x8302,0x5984,0x5B5F,0x6BDB,0x731B,0x76F2,0x7DB2,0x8017,0x8499,0x5132,0x6728,0x9ED9,0x76EE,0x6762,0x52FF,0x9905,0x5C24,0x623B,0x7C7E,0x8CB0,0x554F,0x60B6,0x7D0B,0x9580,0x5301,0x4E5F,0x51B6,0x591C,0x723A,0x8036,0x91CE,0x5F25,0x77E2,0x5384,0x5F79,0x7D04,0x85AC,0x8A33,0x8E8D,0x9756,0x67F3,0x85AE,0x9453,0x6109,0x6108,0x6CB9,0x7652},
decode_set1_CD[] = {0x8AED,0x8F38,0x552F,0x4F51,0x512A,0x52C7,0x53CB,0x5BA5,0x5E7D,0x60A0,0x6182,0x63D6,0x6709,0x67DA,0x6E67,0x6D8C,0x7336,0x7337,0x7531,0x7950,0x88D5,0x8A98,0x904A,0x9091,0x90F5,0x96C4,0x878D,0x5915,0x4E88,0x4F59,0x4E0E,0x8A89,0x8F3F,0x9810,0x50AD,0x5E7C,0x5996,0x5BB9,0x5EB8,0x63DA,0x63FA,0x64C1,0x66DC,0x694A,0x69D8,0x6D0B,0x6EB6,0x7194,0x7528,0x7AAF,0x7F8A,0x8000,0x8449,0x84C9,0x8981,0x8B21,0x8E0A,0x9065,0x967D,0x990A,0x617E,0x6291,0x6B32,0x6C83,0x6D74,0x7FCC,0x7FFC,0x6DC0,0x7F85,0x87BA,0x88F8,0x6765,0x83B1,0x983C,0x96F7,0x6D1B,0x7D61,0x843D,0x916A,0x4E71,0x5375,0x5D50,0x6B04,0x6FEB,0x85CD,0x862D,0x89A7,0x5229,0x540F,0x5C65,0x674E,0x68A8,0x7406,0x7483},
decode_set1_CE[] = {0x75E2,0x88CF,0x88E1,0x91CC,0x96E2,0x9678,0x5F8B,0x7387,0x7ACB,0x844E,0x63A0,0x7565,0x5289,0x6D41,0x6E9C,0x7409,0x7559,0x786B,0x7C92,0x9686,0x7ADC,0x9F8D,0x4FB6,0x616E,0x65C5,0x865C,0x4E86,0x4EAE,0x50DA,0x4E21,0x51CC,0x5BEE,0x6599,0x6881,0x6DBC,0x731F,0x7642,0x77AD,0x7A1C,0x7CE7,0x826F,0x8AD2,0x907C,0x91CF,0x9675,0x9818,0x529B,0x7DD1,0x502B,0x5398,0x6797,0x6DCB,0x71D0,0x7433,0x81E8,0x8F2A,0x96A3,0x9C57,0x9E9F,0x7460,0x5841,0x6D99,0x7D2F,0x985E,0x4EE4,0x4F36,0x4F8B,0x51B7,0x52B1,0x5DBA,0x601C,0x73B2,0x793C,0x82D3,0x9234,0x96B7,0x96F6,0x970A,0x9E97,0x9F62,0x66A6,0x6B74,0x5217,0x52A3,0x70C8,0x88C2,0x5EC9,0x604B,0x6190,0x6F23,0x7149,0x7C3E,0x7DF4,0x806F},
decode_set1_CF[] = {0x84EE,0x9023,0x932C,0x5442,0x9B6F,0x6AD3,0x7089,0x8CC2,0x8DEF,0x9732,0x52B4,0x5A41,0x5ECA,0x5F04,0x6717,0x697C,0x6994,0x6D6A,0x6F0F,0x7262,0x72FC,0x7BED,0x8001,0x807E,0x874B,0x90CE,0x516D,0x9E93,0x7984,0x808B,0x9332,0x8AD6,0x502D,0x548C,0x8A71,0x6B6A,0x8CC4,0x8107,0x60D1,0x67A0,0x9DF2,0x4E99,0x4E98,0x9C10,0x8A6B,0x85C1,0x8568,0x6900,0x6E7E,0x7897,0x8155,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_D0[] = {0x5F0C,0x4E10,0x4E15,0x4E2A,0x4E31,0x4E36,0x4E3C,0x4E3F,0x4E42,0x4E56,0x4E58,0x4E82,0x4E85,0x8C6B,0x4E8A,0x8212,0x5F0D,0x4E8E,0x4E9E,0x4E9F,0x4EA0,0x4EA2,0x4EB0,0x4EB3,0x4EB6,0x4ECE,0x4ECD,0x4EC4,0x4EC6,0x4EC2,0x4ED7,0x4EDE,0x4EED,0x4EDF,0x4EF7,0x4F09,0x4F5A,0x4F30,0x4F5B,0x4F5D,0x4F57,0x4F47,0x4F76,0x4F88,0x4F8F,0x4F98,0x4F7B,0x4F69,0x4F70,0x4F91,0x4F6F,0x4F86,0x4F96,0x5118,0x4FD4,0x4FDF,0x4FCE,0x4FD8,0x4FDB,0x4FD1,0x4FDA,0x4FD0,0x4FE4,0x4FE5,0x501A,0x5028,0x5014,0x502A,0x5025,0x5005,0x4F1C,0x4FF6,0x5021,0x5029,0x502C,0x4FFE,0x4FEF,0x5011,0x5006,0x5043,0x5047,0x6703,0x5055,0x5050,0x5048,0x505A,0x5056,0x506C,0x5078,0x5080,0x509A,0x5085,0x50B4,0x50B2},
decode_set1_D1[] = {0x50C9,0x50CA,0x50B3,0x50C2,0x50D6,0x50DE,0x50E5,0x50ED,0x50E3,0x50EE,0x50F9,0x50F5,0x5109,0x5101,0x5102,0x5116,0x5115,0x5114,0x511A,0x5121,0x513A,0x5137,0x513C,0x513B,0x513F,0x5140,0x5152,0x514C,0x5154,0x5162,0x7AF8,0x5169,0x516A,0x516E,0x5180,0x5182,0x56D8,0x518C,0x5189,0x518F,0x5191,0x5193,0x5195,0x5196,0x51A4,0x51A6,0x51A2,0x51A9,0x51AA,0x51AB,0x51B3,0x51B1,0x51B2,0x51B0,0x51B5,0x51BD,0x51C5,0x51C9,0x51DB,0x51E0,0x8655,0x51E9,0x51ED,0x51F0,0x51F5,0x51FE,0x5204,0x520B,0x5214,0x520E,0x5227,0x522A,0x522E,0x5233,0x5239,0x524F,0x5244,0x524B,0x524C,0x525E,0x5254,0x526A,0x5274,0x5269,0x5273,0x527F,0x527D,0x528D,0x5294,0x5292,0x5271,0x5288,0x5291,0x8FA8},
decode_set1_D2[] = {0x8FA7,0x52AC,0x52AD,0x52BC,0x52B5,0x52C1,0x52CD,0x52D7,0x52DE,0x52E3,0x52E6,0x98ED,0x52E0,0x52F3,0x52F5,0x52F8,0x52F9,0x5306,0x5308,0x7538,0x530D,0x5310,0x530F,0x5315,0x531A,0x5323,0x532F,0x5331,0x5333,0x5338,0x5340,0x5346,0x5345,0x4E17,0x5349,0x534D,0x51D6,0x535E,0x5369,0x536E,0x5918,0x537B,0x5377,0x5382,0x5396,0x53A0,0x53A6,0x53A5,0x53AE,0x53B0,0x53B6,0x53C3,0x7C12,0x96D9,0x53DF,0x66FC,0x71EE,0x53EE,0x53E8,0x53ED,0x53FA,0x5401,0x543D,0x5440,0x542C,0x542D,0x543C,0x542E,0x5436,0x5429,0x541D,0x544E,0x548F,0x5475,0x548E,0x545F,0x5471,0x5477,0x5470,0x5492,0x547B,0x5480,0x5476,0x5484,0x5490,0x5486,0x54C7,0x54A2,0x54B8,0x54A5,0x54AC,0x54C4,0x54C8,0x54A8},
decode_set1_D3[] = {0x54AB,0x54C2,0x54A4,0x54BE,0x54BC,0x54D8,0x54E5,0x54E6,0x550F,0x5514,0x54FD,0x54EE,0x54ED,0x54FA,0x54E2,0x5539,0x5540,0x5563,0x554C,0x552E,0x555C,0x5545,0x5556,0x5557,0x5538,0x5533,0x555D,0x5599,0x5580,0x54AF,0x558A,0x559F,0x557B,0x557E,0x5598,0x559E,0x55AE,0x557C,0x5583,0x55A9,0x5587,0x55A8,0x55DA,0x55C5,0x55DF,0x55C4,0x55DC,0x55E4,0x55D4,0x5614,0x55F7,0x5616,0x55FE,0x55FD,0x561B,0x55F9,0x564E,0x5650,0x71DF,0x5634,0x5636,0x5632,0x5638,0x566B,0x5664,0x562F,0x566C,0x566A,0x5686,0x5680,0x568A,0x56A0,0x5694,0x568F,0x56A5,0x56AE,0x56B6,0x56B4,0x56C2,0x56BC,0x56C1,0x56C3,0x56C0,0x56C8,0x56CE,0x56D1,0x56D3,0x56D7,0x56EE,0x56F9,0x5700,0x56FF,0x5704,0x5709},
decode_set1_D4[] = {0x5708,0x570B,0x570D,0x5713,0x5718,0x5716,0x55C7,0x571C,0x5726,0x5737,0x5738,0x574E,0x573B,0x5740,0x574F,0x5769,0x57C0,0x5788,0x5761,0x577F,0x5789,0x5793,0x57A0,0x57B3,0x57A4,0x57AA,0x57B0,0x57C3,0x57C6,0x57D4,0x57D2,0x57D3,0x580A,0x57D6,0x57E3,0x580B,0x5819,0x581D,0x5872,0x5821,0x5862,0x584B,0x5870,0x6BC0,0x5852,0x583D,0x5879,0x5885,0x58B9,0x589F,0x58AB,0x58BA,0x58DE,0x58BB,0x58B8,0x58AE,0x58C5,0x58D3,0x58D1,0x58D7,0x58D9,0x58D8,0x58E5,0x58DC,0x58E4,0x58DF,0x58EF,0x58FA,0x58F9,0x58FB,0x58FC,0x58FD,0x5902,0x590A,0x5910,0x591B,0x68A6,0x5925,0x592C,0x592D,0x5932,0x5938,0x593E,0x7AD2,0x5955,0x5950,0x594E,0x595A,0x5958,0x5962,0x5960,0x5967,0x596C,0x5969},
decode_set1_D5[] = {0x5978,0x5981,0x599D,0x4F5E,0x4FAB,0x59A3,0x59B2,0x59C6,0x59E8,0x59DC,0x598D,0x59D9,0x59DA,0x5A25,0x5A1F,0x5A11,0x5A1C,0x5A09,0x5A1A,0x5A40,0x5A6C,0x5A49,0x5A35,0x5A36,0x5A62,0x5A6A,0x5A9A,0x5ABC,0x5ABE,0x5ACB,0x5AC2,0x5ABD,0x5AE3,0x5AD7,0x5AE6,0x5AE9,0x5AD6,0x5AFA,0x5AFB,0x5B0C,0x5B0B,0x5B16,0x5B32,0x5AD0,0x5B2A,0x5B36,0x5B3E,0x5B43,0x5B45,0x5B40,0x5B51,0x5B55,0x5B5A,0x5B5B,0x5B65,0x5B69,0x5B70,0x5B73,0x5B75,0x5B78,0x6588,0x5B7A,0x5B80,0x5B83,0x5BA6,0x5BB8,0x5BC3,0x5BC7,0x5BC9,0x5BD4,0x5BD0,0x5BE4,0x5BE6,0x5BE2,0x5BDE,0x5BE5,0x5BEB,0x5BF0,0x5BF6,0x5BF3,0x5C05,0x5C07,0x5C08,0x5C0D,0x5C13,0x5C20,0x5C22,0x5C28,0x5C38,0x5C39,0x5C41,0x5C46,0x5C4E,0x5C53},
decode_set1_D6[] = {0x5C50,0x5C4F,0x5B71,0x5C6C,0x5C6E,0x4E62,0x5C76,0x5C79,0x5C8C,0x5C91,0x5C94,0x599B,0x5CAB,0x5CBB,0x5CB6,0x5CBC,0x5CB7,0x5CC5,0x5CBE,0x5CC7,0x5CD9,0x5CE9,0x5CFD,0x5CFA,0x5CED,0x5D8C,0x5CEA,0x5D0B,0x5D15,0x5D17,0x5D5C,0x5D1F,0x5D1B,0x5D11,0x5D14,0x5D22,0x5D1A,0x5D19,0x5D18,0x5D4C,0x5D52,0x5D4E,0x5D4B,0x5D6C,0x5D73,0x5D76,0x5D87,0x5D84,0x5D82,0x5DA2,0x5D9D,0x5DAC,0x5DAE,0x5DBD,0x5D90,0x5DB7,0x5DBC,0x5DC9,0x5DCD,0x5DD3,0x5DD2,0x5DD6,0x5DDB,0x5DEB,0x5DF2,0x5DF5,0x5E0B,0x5E1A,0x5E19,0x5E11,0x5E1B,0x5E36,0x5E37,0x5E44,0x5E43,0x5E40,0x5E4E,0x5E57,0x5E54,0x5E5F,0x5E62,0x5E64,0x5E47,0x5E75,0x5E76,0x5E7A,0x9EBC,0x5E7F,0x5EA0,0x5EC1,0x5EC2,0x5EC8,0x5ED0,0x5ECF},
decode_set1_D7[] = {0x5ED6,0x5EE3,0x5EDD,0x5EDA,0x5EDB,0x5EE2,0x5EE1,0x5EE8,0x5EE9,0x5EEC,0x5EF1,0x5EF3,0x5EF0,0x5EF4,0x5EF8,0x5EFE,0x5F03,0x5F09,0x5F5D,0x5F5C,0x5F0B,0x5F11,0x5F16,0x5F29,0x5F2D,0x5F38,0x5F41,0x5F48,0x5F4C,0x5F4E,0x5F2F,0x5F51,0x5F56,0x5F57,0x5F59,0x5F61,0x5F6D,0x5F73,0x5F77,0x5F83,0x5F82,0x5F7F,0x5F8A,0x5F88,0x5F91,0x5F87,0x5F9E,0x5F99,0x5F98,0x5FA0,0x5FA8,0x5FAD,0x5FBC,0x5FD6,0x5FFB,0x5FE4,0x5FF8,0x5FF1,0x5FDD,0x60B3,0x5FFF,0x6021,0x6060,0x6019,0x6010,0x6029,0x600E,0x6031,0x601B,0x6015,0x602B,0x6026,0x600F,0x603A,0x605A,0x6041,0x606A,0x6077,0x605F,0x604A,0x6046,0x604D,0x6063,0x6043,0x6064,0x6042,0x606C,0x606B,0x6059,0x6081,0x608D,0x60E7,0x6083,0x609A},
decode_set1_D8[] = {0x6084,0x609B,0x6096,0x6097,0x6092,0x60A7,0x608B,0x60E1,0x60B8,0x60E0,0x60D3,0x60B4,0x5FF0,0x60BD,0x60C6,0x60B5,0x60D8,0x614D,0x6115,0x6106,0x60F6,0x60F7,0x6100,0x60F4,0x60FA,0x6103,0x6121,0x60FB,0x60F1,0x610D,0x610E,0x6147,0x613E,0x6128,0x6127,0x614A,0x613F,0x613C,0x612C,0x6134,0x613D,0x6142,0x6144,0x6173,0x6177,0x6158,0x6159,0x615A,0x616B,0x6174,0x616F,0x6165,0x6171,0x615F,0x615D,0x6153,0x6175,0x6199,0x6196,0x6187,0x61AC,0x6194,0x619A,0x618A,0x6191,0x61AB,0x61AE,0x61CC,0x61CA,0x61C9,0x61F7,0x61C8,0x61C3,0x61C6,0x61BA,0x61CB,0x7F79,0x61CD,0x61E6,0x61E3,0x61F6,0x61FA,0x61F4,0x61FF,0x61FD,0x61FC,0x61FE,0x6200,0x6208,0x6209,0x620D,0x620C,0x6214,0x621B},
decode_set1_D9[] = {0x621E,0x6221,0x622A,0x622E,0x6230,0x6232,0x6233,0x6241,0x624E,0x625E,0x6263,0x625B,0x6260,0x6268,0x627C,0x6282,0x6289,0x627E,0x6292,0x6293,0x6296,0x62D4,0x6283,0x6294,0x62D7,0x62D1,0x62BB,0x62CF,0x62FF,0x62C6,0x64D4,0x62C8,0x62DC,0x62CC,0x62CA,0x62C2,0x62C7,0x629B,0x62C9,0x630C,0x62EE,0x62F1,0x6327,0x6302,0x6308,0x62EF,0x62F5,0x6350,0x633E,0x634D,0x641C,0x634F,0x6396,0x638E,0x6380,0x63AB,0x6376,0x63A3,0x638F,0x6389,0x639F,0x63B5,0x636B,0x6369,0x63BE,0x63E9,0x63C0,0x63C6,0x63E3,0x63C9,0x63D2,0x63F6,0x63C4,0x6416,0x6434,0x6406,0x6413,0x6426,0x6436,0x651D,0x6417,0x6428,0x640F,0x6467,0x646F,0x6476,0x644E,0x652A,0x6495,0x6493,0x64A5,0x64A9,0x6488,0x64BC},
decode_set1_DA[] = {0x64DA,0x64D2,0x64C5,0x64C7,0x64BB,0x64D8,0x64C2,0x64F1,0x64E7,0x8209,0x64E0,0x64E1,0x62AC,0x64E3,0x64EF,0x652C,0x64F6,0x64F4,0x64F2,0x64FA,0x6500,0x64FD,0x6518,0x651C,0x6505,0x6524,0x6523,0x652B,0x6534,0x6535,0x6537,0x6536,0x6538,0x754B,0x6548,0x6556,0x6555,0x654D,0x6558,0x655E,0x655D,0x6572,0x6578,0x6582,0x6583,0x8B8A,0x659B,0x659F,0x65AB,0x65B7,0x65C3,0x65C6,0x65C1,0x65C4,0x65CC,0x65D2,0x65DB,0x65D9,0x65E0,0x65E1,0x65F1,0x6772,0x660A,0x6603,0x65FB,0x6773,0x6635,0x6636,0x6634,0x661C,0x664F,0x6644,0x6649,0x6641,0x665E,0x665D,0x6664,0x6667,0x6668,0x665F,0x6662,0x6670,0x6683,0x6688,0x668E,0x6689,0x6684,0x6698,0x669D,0x66C1,0x66B9,0x66C9,0x66BE,0x66BC},
decode_set1_DB[] = {0x66C4,0x66B8,0x66D6,0x66DA,0x66E0,0x663F,0x66E6,0x66E9,0x66F0,0x66F5,0x66F7,0x670F,0x6716,0x671E,0x6726,0x6727,0x9738,0x672E,0x673F,0x6736,0x6741,0x6738,0x6737,0x6746,0x675E,0x6760,0x6759,0x6763,0x6764,0x6789,0x6770,0x67A9,0x677C,0x676A,0x678C,0x678B,0x67A6,0x67A1,0x6785,0x67B7,0x67EF,0x67B4,0x67EC,0x67B3,0x67E9,0x67B8,0x67E4,0x67DE,0x67DD,0x67E2,0x67EE,0x67B9,0x67CE,0x67C6,0x67E7,0x6A9C,0x681E,0x6846,0x6829,0x6840,0x684D,0x6832,0x684E,0x68B3,0x682B,0x6859,0x6863,0x6877,0x687F,0x689F,0x688F,0x68AD,0x6894,0x689D,0x689B,0x6883,0x6AAE,0x68B9,0x6874,0x68B5,0x68A0,0x68BA,0x690F,0x688D,0x687E,0x6901,0x68CA,0x6908,0x68D8,0x6922,0x6926,0x68E1,0x690C,0x68CD},
decode_set1_DC[] = {0x68D4,0x68E7,0x68D5,0x6936,0x6912,0x6904,0x68D7,0x68E3,0x6925,0x68F9,0x68E0,0x68EF,0x6928,0x692A,0x691A,0x6923,0x6921,0x68C6,0x6979,0x6977,0x695C,0x6978,0x696B,0x6954,0x697E,0x696E,0x6939,0x6974,0x693D,0x6959,0x6930,0x6961,0x695E,0x695D,0x6981,0x696A,0x69B2,0x69AE,0x69D0,0x69BF,0x69C1,0x69D3,0x69BE,0x69CE,0x5BE8,0x69CA,0x69DD,0x69BB,0x69C3,0x69A7,0x6A2E,0x6991,0x69A0,0x699C,0x6995,0x69B4,0x69DE,0x69E8,0x6A02,0x6A1B,0x69FF,0x6B0A,0x69F9,0x69F2,0x69E7,0x6A05,0x69B1,0x6A1E,0x69ED,0x6A14,0x69EB,0x6A0A,0x6A12,0x6AC1,0x6A23,0x6A13,0x6A44,0x6A0C,0x6A72,0x6A36,0x6A78,0x6A47,0x6A62,0x6A59,0x6A66,0x6A48,0x6A38,0x6A22,0x6A90,0x6A8D,0x6AA0,0x6A84,0x6AA2,0x6AA3},
decode_set1_DD[] = {0x6A97,0x8617,0x6ABB,0x6AC3,0x6AC2,0x6AB8,0x6AB3,0x6AAC,0x6ADE,0x6AD1,0x6ADF,0x6AAA,0x6ADA,0x6AEA,0x6AFB,0x6B05,0x8616,0x6AFA,0x6B12,0x6B16,0x9B31,0x6B1F,0x6B38,0x6B37,0x76DC,0x6B39,0x98EE,0x6B47,0x6B43,0x6B49,0x6B50,0x6B59,0x6B54,0x6B5B,0x6B5F,0x6B61,0x6B78,0x6B79,0x6B7F,0x6B80,0x6B84,0x6B83,0x6B8D,0x6B98,0x6B95,0x6B9E,0x6BA4,0x6BAA,0x6BAB,0x6BAF,0x6BB2,0x6BB1,0x6BB3,0x6BB7,0x6BBC,0x6BC6,0x6BCB,0x6BD3,0x6BDF,0x6BEC,0x6BEB,0x6BF3,0x6BEF,0x9EBE,0x6C08,0x6C13,0x6C14,0x6C1B,0x6C24,0x6C23,0x6C5E,0x6C55,0x6C62,0x6C6A,0x6C82,0x6C8D,0x6C9A,0x6C81,0x6C9B,0x6C7E,0x6C68,0x6C73,0x6C92,0x6C90,0x6CC4,0x6CF1,0x6CD3,0x6CBD,0x6CD7,0x6CC5,0x6CDD,0x6CAE,0x6CB1,0x6CBE},
decode_set1_DE[] = {0x6CBA,0x6CDB,0x6CEF,0x6CD9,0x6CEA,0x6D1F,0x884D,0x6D36,0x6D2B,0x6D3D,0x6D38,0x6D19,0x6D35,0x6D33,0x6D12,0x6D0C,0x6D63,0x6D93,0x6D64,0x6D5A,0x6D79,0x6D59,0x6D8E,0x6D95,0x6FE4,0x6D85,0x6DF9,0x6E15,0x6E0A,0x6DB5,0x6DC7,0x6DE6,0x6DB8,0x6DC6,0x6DEC,0x6DDE,0x6DCC,0x6DE8,0x6DD2,0x6DC5,0x6DFA,0x6DD9,0x6DE4,0x6DD5,0x6DEA,0x6DEE,0x6E2D,0x6E6E,0x6E2E,0x6E19,0x6E72,0x6E5F,0x6E3E,0x6E23,0x6E6B,0x6E2B,0x6E76,0x6E4D,0x6E1F,0x6E43,0x6E3A,0x6E4E,0x6E24,0x6EFF,0x6E1D,0x6E38,0x6E82,0x6EAA,0x6E98,0x6EC9,0x6EB7,0x6ED3,0x6EBD,0x6EAF,0x6EC4,0x6EB2,0x6ED4,0x6ED5,0x6E8F,0x6EA5,0x6EC2,0x6E9F,0x6F41,0x6F11,0x704C,0x6EEC,0x6EF8,0x6EFE,0x6F3F,0x6EF2,0x6F31,0x6EEF,0x6F32,0x6ECC},
decode_set1_DF[] = {0x6F3E,0x6F13,0x6EF7,0x6F86,0x6F7A,0x6F78,0x6F81,0x6F80,0x6F6F,0x6F5B,0x6FF3,0x6F6D,0x6F82,0x6F7C,0x6F58,0x6F8E,0x6F91,0x6FC2,0x6F66,0x6FB3,0x6FA3,0x6FA1,0x6FA4,0x6FB9,0x6FC6,0x6FAA,0x6FDF,0x6FD5,0x6FEC,0x6FD4,0x6FD8,0x6FF1,0x6FEE,0x6FDB,0x7009,0x700B,0x6FFA,0x7011,0x7001,0x700F,0x6FFE,0x701B,0x701A,0x6F74,0x701D,0x7018,0x701F,0x7030,0x703E,0x7032,0x7051,0x7063,0x7099,0x7092,0x70AF,0x70F1,0x70AC,0x70B8,0x70B3,0x70AE,0x70DF,0x70CB,0x70DD,0x70D9,0x7109,0x70FD,0x711C,0x7119,0x7165,0x7155,0x7188,0x7166,0x7162,0x714C,0x7156,0x716C,0x718F,0x71FB,0x7184,0x7195,0x71A8,0x71AC,0x71D7,0x71B9,0x71BE,0x71D2,0x71C9,0x71D4,0x71CE,0x71E0,0x71EC,0x71E7,0x71F5,0x71FC},
decode_set1_E0[] = {0x71F9,0x71FF,0x720D,0x7210,0x721B,0x7228,0x722D,0x722C,0x7230,0x7232,0x723B,0x723C,0x723F,0x7240,0x7246,0x724B,0x7258,0x7274,0x727E,0x7282,0x7281,0x7287,0x7292,0x7296,0x72A2,0x72A7,0x72B9,0x72B2,0x72C3,0x72C6,0x72C4,0x72CE,0x72D2,0x72E2,0x72E0,0x72E1,0x72F9,0x72F7,0x500F,0x7317,0x730A,0x731C,0x7316,0x731D,0x7334,0x732F,0x7329,0x7325,0x733E,0x734E,0x734F,0x9ED8,0x7357,0x736A,0x7368,0x7370,0x7378,0x7375,0x737B,0x737A,0x73C8,0x73B3,0x73CE,0x73BB,0x73C0,0x73E5,0x73EE,0x73DE,0x74A2,0x7405,0x746F,0x7425,0x73F8,0x7432,0x743A,0x7455,0x743F,0x745F,0x7459,0x7441,0x745C,0x7469,0x7470,0x7463,0x746A,0x7476,0x747E,0x748B,0x749E,0x74A7,0x74CA,0x74CF,0x74D4,0x73F1},
decode_set1_E1[] = {0x74E0,0x74E3,0x74E7,0x74E9,0x74EE,0x74F2,0x74F0,0x74F1,0x74F8,0x74F7,0x7504,0x7503,0x7505,0x750C,0x750E,0x750D,0x7515,0x7513,0x751E,0x7526,0x752C,0x753C,0x7544,0x754D,0x754A,0x7549,0x755B,0x7546,0x755A,0x7569,0x7564,0x7567,0x756B,0x756D,0x7578,0x7576,0x7586,0x7587,0x7574,0x758A,0x7589,0x7582,0x7594,0x759A,0x759D,0x75A5,0x75A3,0x75C2,0x75B3,0x75C3,0x75B5,0x75BD,0x75B8,0x75BC,0x75B1,0x75CD,0x75CA,0x75D2,0x75D9,0x75E3,0x75DE,0x75FE,0x75FF,0x75FC,0x7601,0x75F0,0x75FA,0x75F2,0x75F3,0x760B,0x760D,0x7609,0x761F,0x7627,0x7620,0x7621,0x7622,0x7624,0x7634,0x7630,0x763B,0x7647,0x7648,0x7646,0x765C,0x7658,0x7661,0x7662,0x7668,0x7669,0x766A,0x7667,0x766C,0x7670},
decode_set1_E2[] = {0x7672,0x7676,0x7678,0x767C,0x7680,0x7683,0x7688,0x768B,0x768E,0x7696,0x7693,0x7699,0x769A,0x76B0,0x76B4,0x76B8,0x76B9,0x76BA,0x76C2,0x76CD,0x76D6,0x76D2,0x76DE,0x76E1,0x76E5,0x76E7,0x76EA,0x862F,0x76FB,0x7708,0x7707,0x7704,0x7729,0x7724,0x771E,0x7725,0x7726,0x771B,0x7737,0x7738,0x7747,0x775A,0x7768,0x776B,0x775B,0x7765,0x777F,0x777E,0x7779,0x778E,0x778B,0x7791,0x77A0,0x779E,0x77B0,0x77B6,0x77B9,0x77BF,0x77BC,0x77BD,0x77BB,0x77C7,0x77CD,0x77D7,0x77DA,0x77DC,0x77E3,0x77EE,0x77FC,0x780C,0x7812,0x7926,0x7820,0x792A,0x7845,0x788E,0x7874,0x7886,0x787C,0x789A,0x788C,0x78A3,0x78B5,0x78AA,0x78AF,0x78D1,0x78C6,0x78CB,0x78D4,0x78BE,0x78BC,0x78C5,0x78CA,0x78EC},
decode_set1_E3[] = {0x78E7,0x78DA,0x78FD,0x78F4,0x7907,0x7912,0x7911,0x7919,0x792C,0x792B,0x7940,0x7960,0x7957,0x795F,0x795A,0x7955,0x7953,0x797A,0x797F,0x798A,0x799D,0x79A7,0x9F4B,0x79AA,0x79AE,0x79B3,0x79B9,0x79BA,0x79C9,0x79D5,0x79E7,0x79EC,0x79E1,0x79E3,0x7A08,0x7A0D,0x7A18,0x7A19,0x7A20,0x7A1F,0x7980,0x7A31,0x7A3B,0x7A3E,0x7A37,0x7A43,0x7A57,0x7A49,0x7A61,0x7A62,0x7A69,0x9F9D,0x7A70,0x7A79,0x7A7D,0x7A88,0x7A97,0x7A95,0x7A98,0x7A96,0x7AA9,0x7AC8,0x7AB0,0x7AB6,0x7AC5,0x7AC4,0x7ABF,0x9083,0x7AC7,0x7ACA,0x7ACD,0x7ACF,0x7AD5,0x7AD3,0x7AD9,0x7ADA,0x7ADD,0x7AE1,0x7AE2,0x7AE6,0x7AED,0x7AF0,0x7B02,0x7B0F,0x7B0A,0x7B06,0x7B33,0x7B18,0x7B19,0x7B1E,0x7B35,0x7B28,0x7B36,0x7B50},
decode_set1_E4[] = {0x7B7A,0x7B04,0x7B4D,0x7B0B,0x7B4C,0x7B45,0x7B75,0x7B65,0x7B74,0x7B67,0x7B70,0x7B71,0x7B6C,0x7B6E,0x7B9D,0x7B98,0x7B9F,0x7B8D,0x7B9C,0x7B9A,0x7B8B,0x7B92,0x7B8F,0x7B5D,0x7B99,0x7BCB,0x7BC1,0x7BCC,0x7BCF,0x7BB4,0x7BC6,0x7BDD,0x7BE9,0x7C11,0x7C14,0x7BE6,0x7BE5,0x7C60,0x7C00,0x7C07,0x7C13,0x7BF3,0x7BF7,0x7C17,0x7C0D,0x7BF6,0x7C23,0x7C27,0x7C2A,0x7C1F,0x7C37,0x7C2B,0x7C3D,0x7C4C,0x7C43,0x7C54,0x7C4F,0x7C40,0x7C50,0x7C58,0x7C5F,0x7C64,0x7C56,0x7C65,0x7C6C,0x7C75,0x7C83,0x7C90,0x7CA4,0x7CAD,0x7CA2,0x7CAB,0x7CA1,0x7CA8,0x7CB3,0x7CB2,0x7CB1,0x7CAE,0x7CB9,0x7CBD,0x7CC0,0x7CC5,0x7CC2,0x7CD8,0x7CD2,0x7CDC,0x7CE2,0x9B3B,0x7CEF,0x7CF2,0x7CF4,0x7CF6,0x7CFA,0x7D06},
decode_set1_E5[] = {0x7D02,0x7D1C,0x7D15,0x7D0A,0x7D45,0x7D4B,0x7D2E,0x7D32,0x7D3F,0x7D35,0x7D46,0x7D73,0x7D56,0x7D4E,0x7D72,0x7D68,0x7D6E,0x7D4F,0x7D63,0x7D93,0x7D89,0x7D5B,0x7D8F,0x7D7D,0x7D9B,0x7DBA,0x7DAE,0x7DA3,0x7DB5,0x7DC7,0x7DBD,0x7DAB,0x7E3D,0x7DA2,0x7DAF,0x7DDC,0x7DB8,0x7D9F,0x7DB0,0x7DD8,0x7DDD,0x7DE4,0x7DDE,0x7DFB,0x7DF2,0x7DE1,0x7E05,0x7E0A,0x7E23,0x7E21,0x7E12,0x7E31,0x7E1F,0x7E09,0x7E0B,0x7E22,0x7E46,0x7E66,0x7E3B,0x7E35,0x7E39,0x7E43,0x7E37,0x7E32,0x7E3A,0x7E67,0x7E5D,0x7E56,0x7E5E,0x7E59,0x7E5A,0x7E79,0x7E6A,0x7E69,0x7E7C,0x7E7B,0x7E83,0x7DD5,0x7E7D,0x8FAE,0x7E7F,0x7E88,0x7E89,0x7E8C,0x7E92,0x7E90,0x7E93,0x7E94,0x7E96,0x7E8E,0x7E9B,0x7E9C,0x7F38,0x7F3A},
decode_set1_E6[] = {0x7F45,0x7F4C,0x7F4D,0x7F4E,0x7F50,0x7F51,0x7F55,0x7F54,0x7F58,0x7F5F,0x7F60,0x7F68,0x7F69,0x7F67,0x7F78,0x7F82,0x7F86,0x7F83,0x7F88,0x7F87,0x7F8C,0x7F94,0x7F9E,0x7F9D,0x7F9A,0x7FA3,0x7FAF,0x7FB2,0x7FB9,0x7FAE,0x7FB6,0x7FB8,0x8B71,0x7FC5,0x7FC6,0x7FCA,0x7FD5,0x7FD4,0x7FE1,0x7FE6,0x7FE9,0x7FF3,0x7FF9,0x98DC,0x8006,0x8004,0x800B,0x8012,0x8018,0x8019,0x801C,0x8021,0x8028,0x803F,0x803B,0x804A,0x8046,0x8052,0x8058,0x805A,0x805F,0x8062,0x8068,0x8073,0x8072,0x8070,0x8076,0x8079,0x807D,0x807F,0x8084,0x8086,0x8085,0x809B,0x8093,0x809A,0x80AD,0x5190,0x80AC,0x80DB,0x80E5,0x80D9,0x80DD,0x80C4,0x80DA,0x80D6,0x8109,0x80EF,0x80F1,0x811B,0x8129,0x8123,0x812F,0x814B},
decode_set1_E7[] = {0x968B,0x8146,0x813E,0x8153,0x8151,0x80FC,0x8171,0x816E,0x8165,0x8166,0x8174,0x8183,0x8188,0x818A,0x8180,0x8182,0x81A0,0x8195,0x81A4,0x81A3,0x815F,0x8193,0x81A9,0x81B0,0x81B5,0x81BE,0x81B8,0x81BD,0x81C0,0x81C2,0x81BA,0x81C9,0x81CD,0x81D1,0x81D9,0x81D8,0x81C8,0x81DA,0x81DF,0x81E0,0x81E7,0x81FA,0x81FB,0x81FE,0x8201,0x8202,0x8205,0x8207,0x820A,0x820D,0x8210,0x8216,0x8229,0x822B,0x8238,0x8233,0x8240,0x8259,0x8258,0x825D,0x825A,0x825F,0x8264,0x8262,0x8268,0x826A,0x826B,0x822E,0x8271,0x8277,0x8278,0x827E,0x828D,0x8292,0x82AB,0x829F,0x82BB,0x82AC,0x82E1,0x82E3,0x82DF,0x82D2,0x82F4,0x82F3,0x82FA,0x8393,0x8303,0x82FB,0x82F9,0x82DE,0x8306,0x82DC,0x8309,0x82D9},
decode_set1_E8[] = {0x8335,0x8334,0x8316,0x8332,0x8331,0x8340,0x8339,0x8350,0x8345,0x832F,0x832B,0x8317,0x8318,0x8385,0x839A,0x83AA,0x839F,0x83A2,0x8396,0x8323,0x838E,0x8387,0x838A,0x837C,0x83B5,0x8373,0x8375,0x83A0,0x8389,0x83A8,0x83F4,0x8413,0x83EB,0x83CE,0x83FD,0x8403,0x83D8,0x840B,0x83C1,0x83F7,0x8407,0x83E0,0x83F2,0x840D,0x8422,0x8420,0x83BD,0x8438,0x8506,0x83FB,0x846D,0x842A,0x843C,0x855A,0x8484,0x8477,0x846B,0x84AD,0x846E,0x8482,0x8469,0x8446,0x842C,0x846F,0x8479,0x8435,0x84CA,0x8462,0x84B9,0x84BF,0x849F,0x84D9,0x84CD,0x84BB,0x84DA,0x84D0,0x84C1,0x84C6,0x84D6,0x84A1,0x8521,0x84FF,0x84F4,0x8517,0x8518,0x852C,0x851F,0x8515,0x8514,0x84FC,0x8540,0x8563,0x8558,0x8548},
decode_set1_E9[] = {0x8541,0x8602,0x854B,0x8555,0x8580,0x85A4,0x8588,0x8591,0x858A,0x85A8,0x856D,0x8594,0x859B,0x85EA,0x8587,0x859C,0x8577,0x857E,0x8590,0x85C9,0x85BA,0x85CF,0x85B9,0x85D0,0x85D5,0x85DD,0x85E5,0x85DC,0x85F9,0x860A,0x8613,0x860B,0x85FE,0x85FA,0x8606,0x8622,0x861A,0x8630,0x863F,0x864D,0x4E55,0x8654,0x865F,0x8667,0x8671,0x8693,0x86A3,0x86A9,0x86AA,0x868B,0x868C,0x86B6,0x86AF,0x86C4,0x86C6,0x86B0,0x86C9,0x8823,0x86AB,0x86D4,0x86DE,0x86E9,0x86EC,0x86DF,0x86DB,0x86EF,0x8712,0x8706,0x8708,0x8700,0x8703,0x86FB,0x8711,0x8709,0x870D,0x86F9,0x870A,0x8734,0x873F,0x8737,0x873B,0x8725,0x8729,0x871A,0x8760,0x875F,0x8778,0x874C,0x874E,0x8774,0x8757,0x8768,0x876E,0x8759},
decode_set1_EA[] = {0x8753,0x8763,0x876A,0x8805,0x87A2,0x879F,0x8782,0x87AF,0x87CB,0x87BD,0x87C0,0x87D0,0x96D6,0x87AB,0x87C4,0x87B3,0x87C7,0x87C6,0x87BB,0x87EF,0x87F2,0x87E0,0x880F,0x880D,0x87FE,0x87F6,0x87F7,0x880E,0x87D2,0x8811,0x8816,0x8815,0x8822,0x8821,0x8831,0x8836,0x8839,0x8827,0x883B,0x8844,0x8842,0x8852,0x8859,0x885E,0x8862,0x886B,0x8881,0x887E,0x889E,0x8875,0x887D,0x88B5,0x8872,0x8882,0x8897,0x8892,0x88AE,0x8899,0x88A2,0x888D,0x88A4,0x88B0,0x88BF,0x88B1,0x88C3,0x88C4,0x88D4,0x88D8,0x88D9,0x88DD,0x88F9,0x8902,0x88FC,0x88F4,0x88E8,0x88F2,0x8904,0x890C,0x890A,0x8913,0x8943,0x891E,0x8925,0x892A,0x892B,0x8941,0x8944,0x893B,0x8936,0x8938,0x894C,0x891D,0x8960,0x895E},
decode_set1_EB[] = {0x8966,0x8964,0x896D,0x896A,0x896F,0x8974,0x8977,0x897E,0x8983,0x8988,0x898A,0x8993,0x8998,0x89A1,0x89A9,0x89A6,0x89AC,0x89AF,0x89B2,0x89BA,0x89BD,0x89BF,0x89C0,0x89DA,0x89DC,0x89DD,0x89E7,0x89F4,0x89F8,0x8A03,0x8A16,0x8A10,0x8A0C,0x8A1B,0x8A1D,0x8A25,0x8A36,0x8A41,0x8A5B,0x8A52,0x8A46,0x8A48,0x8A7C,0x8A6D,0x8A6C,0x8A62,0x8A85,0x8A82,0x8A84,0x8AA8,0x8AA1,0x8A91,0x8AA5,0x8AA6,0x8A9A,0x8AA3,0x8AC4,0x8ACD,0x8AC2,0x8ADA,0x8AEB,0x8AF3,0x8AE7,0x8AE4,0x8AF1,0x8B14,0x8AE0,0x8AE2,0x8AF7,0x8ADE,0x8ADB,0x8B0C,0x8B07,0x8B1A,0x8AE1,0x8B16,0x8B10,0x8B17,0x8B20,0x8B33,0x97AB,0x8B26,0x8B2B,0x8B3E,0x8B28,0x8B41,0x8B4C,0x8B4F,0x8B4E,0x8B49,0x8B56,0x8B5B,0x8B5A,0x8B6B},
decode_set1_EC[] = {0x8B5F,0x8B6C,0x8B6F,0x8B74,0x8B7D,0x8B80,0x8B8C,0x8B8E,0x8B92,0x8B93,0x8B96,0x8B99,0x8B9A,0x8C3A,0x8C41,0x8C3F,0x8C48,0x8C4C,0x8C4E,0x8C50,0x8C55,0x8C62,0x8C6C,0x8C78,0x8C7A,0x8C82,0x8C89,0x8C85,0x8C8A,0x8C8D,0x8C8E,0x8C94,0x8C7C,0x8C98,0x621D,0x8CAD,0x8CAA,0x8CBD,0x8CB2,0x8CB3,0x8CAE,0x8CB6,0x8CC8,0x8CC1,0x8CE4,0x8CE3,0x8CDA,0x8CFD,0x8CFA,0x8CFB,0x8D04,0x8D05,0x8D0A,0x8D07,0x8D0F,0x8D0D,0x8D10,0x9F4E,0x8D13,0x8CCD,0x8D14,0x8D16,0x8D67,0x8D6D,0x8D71,0x8D73,0x8D81,0x8D99,0x8DC2,0x8DBE,0x8DBA,0x8DCF,0x8DDA,0x8DD6,0x8DCC,0x8DDB,0x8DCB,0x8DEA,0x8DEB,0x8DDF,0x8DE3,0x8DFC,0x8E08,0x8E09,0x8DFF,0x8E1D,0x8E1E,0x8E10,0x8E1F,0x8E42,0x8E35,0x8E30,0x8E34,0x8E4A},
decode_set1_ED[] = {0x8E47,0x8E49,0x8E4C,0x8E50,0x8E48,0x8E59,0x8E64,0x8E60,0x8E2A,0x8E63,0x8E55,0x8E76,0x8E72,0x8E7C,0x8E81,0x8E87,0x8E85,0x8E84,0x8E8B,0x8E8A,0x8E93,0x8E91,0x8E94,0x8E99,0x8EAA,0x8EA1,0x8EAC,0x8EB0,0x8EC6,0x8EB1,0x8EBE,0x8EC5,0x8EC8,0x8ECB,0x8EDB,0x8EE3,0x8EFC,0x8EFB,0x8EEB,0x8EFE,0x8F0A,0x8F05,0x8F15,0x8F12,0x8F19,0x8F13,0x8F1C,0x8F1F,0x8F1B,0x8F0C,0x8F26,0x8F33,0x8F3B,0x8F39,0x8F45,0x8F42,0x8F3E,0x8F4C,0x8F49,0x8F46,0x8F4E,0x8F57,0x8F5C,0x8F62,0x8F63,0x8F64,0x8F9C,0x8F9F,0x8FA3,0x8FAD,0x8FAF,0x8FB7,0x8FDA,0x8FE5,0x8FE2,0x8FEA,0x8FEF,0x9087,0x8FF4,0x9005,0x8FF9,0x8FFA,0x9011,0x9015,0x9021,0x900D,0x901E,0x9016,0x900B,0x9027,0x9036,0x9035,0x9039,0x8FF8},
decode_set1_EE[] = {0x904F,0x9050,0x9051,0x9052,0x900E,0x9049,0x903E,0x9056,0x9058,0x905E,0x9068,0x906F,0x9076,0x96A8,0x9072,0x9082,0x907D,0x9081,0x9080,0x908A,0x9089,0x908F,0x90A8,0x90AF,0x90B1,0x90B5,0x90E2,0x90E4,0x6248,0x90DB,0x9102,0x9112,0x9119,0x9132,0x9130,0x914A,0x9156,0x9158,0x9163,0x9165,0x9169,0x9173,0x9172,0x918B,0x9189,0x9182,0x91A2,0x91AB,0x91AF,0x91AA,0x91B5,0x91B4,0x91BA,0x91C0,0x91C1,0x91C9,0x91CB,0x91D0,0x91D6,0x91DF,0x91E1,0x91DB,0x91FC,0x91F5,0x91F6,0x921E,0x91FF,0x9214,0x922C,0x9215,0x9211,0x925E,0x9257,0x9245,0x9249,0x9264,0x9248,0x9295,0x923F,0x924B,0x9250,0x929C,0x9296,0x9293,0x929B,0x925A,0x92CF,0x92B9,0x92B7,0x92E9,0x930F,0x92FA,0x9344,0x932E},
decode_set1_EF[] = {0x9319,0x9322,0x931A,0x9323,0x933A,0x9335,0x933B,0x935C,0x9360,0x937C,0x936E,0x9356,0x93B0,0x93AC,0x93AD,0x9394,0x93B9,0x93D6,0x93D7,0x93E8,0x93E5,0x93D8,0x93C3,0x93DD,0x93D0,0x93C8,0x93E4,0x941A,0x9414,0x9413,0x9403,0x9407,0x9410,0x9436,0x942B,0x9435,0x9421,0x943A,0x9441,0x9452,0x9444,0x945B,0x9460,0x9462,0x945E,0x946A,0x9229,0x9470,0x9475,0x9477,0x947D,0x945A,0x947C,0x947E,0x9481,0x947F,0x9582,0x9587,0x958A,0x9594,0x9596,0x9598,0x9599,0x95A0,0x95A8,0x95A7,0x95AD,0x95BC,0x95BB,0x95B9,0x95BE,0x95CA,0x6FF6,0x95C3,0x95CD,0x95CC,0x95D5,0x95D4,0x95D6,0x95DC,0x95E1,0x95E5,0x95E2,0x9621,0x9628,0x962E,0x962F,0x9642,0x964C,0x964F,0x964B,0x9677,0x965C,0x965E},
decode_set1_F0[] = {0x965D,0x965F,0x9666,0x9672,0x966C,0x968D,0x9698,0x9695,0x9697,0x96AA,0x96A7,0x96B1,0x96B2,0x96B0,0x96B4,0x96B6,0x96B8,0x96B9,0x96CE,0x96CB,0x96C9,0x96CD,0x894D,0x96DC,0x970D,0x96D5,0x96F9,0x9704,0x9706,0x9708,0x9713,0x970E,0x9711,0x970F,0x9716,0x9719,0x9724,0x972A,0x9730,0x9739,0x973D,0x973E,0x9744,0x9746,0x9748,0x9742,0x9749,0x975C,0x9760,0x9764,0x9766,0x9768,0x52D2,0x976B,0x9771,0x9779,0x9785,0x977C,0x9781,0x977A,0x9786,0x978B,0x978F,0x9790,0x979C,0x97A8,0x97A6,0x97A3,0x97B3,0x97B4,0x97C3,0x97C6,0x97C8,0x97CB,0x97DC,0x97ED,0x9F4F,0x97F2,0x7ADF,0x97F6,0x97F5,0x980F,0x980C,0x9838,0x9824,0x9821,0x9837,0x983D,0x9846,0x984F,0x984B,0x986B,0x986F,0x9870},
decode_set1_F1[] = {0x9871,0x9874,0x9873,0x98AA,0x98AF,0x98B1,0x98B6,0x98C4,0x98C3,0x98C6,0x98E9,0x98EB,0x9903,0x9909,0x9912,0x9914,0x9918,0x9921,0x991D,0x991E,0x9924,0x9920,0x992C,0x992E,0x993D,0x993E,0x9942,0x9949,0x9945,0x9950,0x994B,0x9951,0x9952,0x994C,0x9955,0x9997,0x9998,0x99A5,0x99AD,0x99AE,0x99BC,0x99DF,0x99DB,0x99DD,0x99D8,0x99D1,0x99ED,0x99EE,0x99F1,0x99F2,0x99FB,0x99F8,0x9A01,0x9A0F,0x9A05,0x99E2,0x9A19,0x9A2B,0x9A37,0x9A45,0x9A42,0x9A40,0x9A43,0x9A3E,0x9A55,0x9A4D,0x9A5B,0x9A57,0x9A5F,0x9A62,0x9A65,0x9A64,0x9A69,0x9A6B,0x9A6A,0x9AAD,0x9AB0,0x9ABC,0x9AC0,0x9ACF,0x9AD1,0x9AD3,0x9AD4,0x9ADE,0x9ADF,0x9AE2,0x9AE3,0x9AE6,0x9AEF,0x9AEB,0x9AEE,0x9AF4,0x9AF1,0x9AF7},
decode_set1_F2[] = {0x9AFB,0x9B06,0x9B18,0x9B1A,0x9B1F,0x9B22,0x9B23,0x9B25,0x9B27,0x9B28,0x9B29,0x9B2A,0x9B2E,0x9B2F,0x9B32,0x9B44,0x9B43,0x9B4F,0x9B4D,0x9B4E,0x9B51,0x9B58,0x9B74,0x9B93,0x9B83,0x9B91,0x9B96,0x9B97,0x9B9F,0x9BA0,0x9BA8,0x9BB4,0x9BC0,0x9BCA,0x9BB9,0x9BC6,0x9BCF,0x9BD1,0x9BD2,0x9BE3,0x9BE2,0x9BE4,0x9BD4,0x9BE1,0x9C3A,0x9BF2,0x9BF1,0x9BF0,0x9C15,0x9C14,0x9C09,0x9C13,0x9C0C,0x9C06,0x9C08,0x9C12,0x9C0A,0x9C04,0x9C2E,0x9C1B,0x9C25,0x9C24,0x9C21,0x9C30,0x9C47,0x9C32,0x9C46,0x9C3E,0x9C5A,0x9C60,0x9C67,0x9C76,0x9C78,0x9CE7,0x9CEC,0x9CF0,0x9D09,0x9D08,0x9CEB,0x9D03,0x9D06,0x9D2A,0x9D26,0x9DAF,0x9D23,0x9D1F,0x9D44,0x9D15,0x9D12,0x9D41,0x9D3F,0x9D3E,0x9D46,0x9D48},
decode_set1_F3[] = {0x9D5D,0x9D5E,0x9D64,0x9D51,0x9D50,0x9D59,0x9D72,0x9D89,0x9D87,0x9DAB,0x9D6F,0x9D7A,0x9D9A,0x9DA4,0x9DA9,0x9DB2,0x9DC4,0x9DC1,0x9DBB,0x9DB8,0x9DBA,0x9DC6,0x9DCF,0x9DC2,0x9DD9,0x9DD3,0x9DF8,0x9DE6,0x9DED,0x9DEF,0x9DFD,0x9E1A,0x9E1B,0x9E1E,0x9E75,0x9E79,0x9E7D,0x9E81,0x9E88,0x9E8B,0x9E8C,0x9E92,0x9E95,0x9E91,0x9E9D,0x9EA5,0x9EA9,0x9EB8,0x9EAA,0x9EAD,0x9761,0x9ECC,0x9ECE,0x9ECF,0x9ED0,0x9ED4,0x9EDC,0x9EDE,0x9EDD,0x9EE0,0x9EE5,0x9EE8,0x9EEF,0x9EF4,0x9EF6,0x9EF7,0x9EF9,0x9EFB,0x9EFC,0x9EFD,0x9F07,0x9F08,0x76B7,0x9F15,0x9F21,0x9F2C,0x9F3E,0x9F4A,0x9F52,0x9F54,0x9F63,0x9F5F,0x9F60,0x9F61,0x9F66,0x9F67,0x9F6C,0x9F6A,0x9F77,0x9F72,0x9F76,0x9F95,0x9F9C,0x9FA0},
decode_set1_F4[] = {0x582F,0x69C7,0x9059,0x7464,0x51DC,0x7199,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_F5[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_F6[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_F7[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_F8[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set1_F9[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0},
decode_set1_FA[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0},
decode_set1_FB[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0},
decode_set1_FC[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0},
decode_set1_FD[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0},
decode_set1_FE[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD},
*decode_set1[] = {decode_set1_A1,decode_set1_A2,decode_set1_A3,decode_set1_A4,decode_set1_A5,decode_set1_A6,decode_set1_A7,decode_set1_A8,decode_set1_A9,decode_set1_AA,decode_set1_AB,decode_set1_AC,decode_set1_AD,decode_set1_AE,decode_set1_AF,decode_set1_B0,decode_set1_B1,decode_set1_B2,decode_set1_B3,decode_set1_B4,decode_set1_B5,decode_set1_B6,decode_set1_B7,decode_set1_B8,decode_set1_B9,decode_set1_BA,decode_set1_BB,decode_set1_BC,decode_set1_BD,decode_set1_BE,decode_set1_BF,decode_set1_C0,decode_set1_C1,decode_set1_C2,decode_set1_C3,decode_set1_C4,decode_set1_C5,decode_set1_C6,decode_set1_C7,decode_set1_C8,decode_set1_C9,decode_set1_CA,decode_set1_CB,decode_set1_CC,decode_set1_CD,decode_set1_CE,decode_set1_CF,decode_set1_D0,decode_set1_D1,decode_set1_D2,decode_set1_D3,decode_set1_D4,decode_set1_D5,decode_set1_D6,decode_set1_D7,decode_set1_D8,decode_set1_D9,decode_set1_DA,decode_set1_DB,decode_set1_DC,decode_set1_DD,decode_set1_DE,decode_set1_DF,decode_set1_E0,decode_set1_E1,decode_set1_E2,decode_set1_E3,decode_set1_E4,decode_set1_E5,decode_set1_E6,decode_set1_E7,decode_set1_E8,decode_set1_E9,decode_set1_EA,decode_set1_EB,decode_set1_EC,decode_set1_ED,decode_set1_EE,decode_set1_EF,decode_set1_F0,decode_set1_F1,decode_set1_F2,decode_set1_F3,decode_set1_F4,decode_set1_F5,decode_set1_F6,decode_set1_F7,decode_set1_F8,decode_set1_F9,decode_set1_FA,decode_set1_FB,decode_set1_FC,decode_set1_FD,decode_set1_FE,},
decode_set3_A1[] = {0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_A2[] = {0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2D8,0x2C7,0xB8,0x2D9,0x2DD,0xAF,0x2DB,0x2DA,0x7E,0x384,0x385,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xA1,0xA6,0xBF,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xBA,0xAA,0xA9,0xAE,0x2122,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xA4,0x2116,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_A3[] = {0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_A4[] = {0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_A5[] = {0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_A6[] = {0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x386,0x388,0x389,0x38A,0x3AA,0x0,0x38C,0x0,0x38E,0x3AB,0x0,0x38F,0x0,0x0,0x0,0x0,0x3AC,0x3AD,0x3AE,0x3AF,0x3CA,0x390,0x3CC,0x3C2,0x3CD,0x3CB,0x3B0,0x3CE,0x0,0x0},
decode_set3_A7[] = {0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x402,0x403,0x404,0x405,0x406,0x407,0x408,0x409,0x40A,0x40B,0x40C,0x40D,0x40E,0x40F,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x452,0x453,0x454,0x455,0x456,0x457,0x458,0x459,0x45A,0x45B,0x45C,0x45E,0x45F},
decode_set3_A8[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_A9[] = {0xC6,0x110,0x0,0x126,0x0,0x132,0x0,0x141,0x13F,0x0,0x14A,0xD8,0x152,0x0,0x166,0xDE,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xE6,0x111,0xF0,0x127,0x131,0x133,0x138,0x142,0x140,0x149,0x14B,0xF8,0x153,0xDF,0x167,0xFE,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_AA[] = {0xC1,0xC0,0xC4,0xC2,0x102,0x1CD,0x100,0x104,0xC5,0xC3,0x106,0x108,0x10C,0xC7,0x10A,0x10E,0xC9,0xC8,0xCB,0xCA,0x11A,0x116,0x112,0x118,0x0,0x11C,0x11E,0x122,0x120,0x124,0xCD,0xCC,0xCF,0xCE,0x1CF,0x130,0x12A,0x12E,0x128,0x134,0x136,0x139,0x13D,0x13B,0x143,0x147,0x145,0xD1,0xD3,0xD2,0xD6,0xD4,0x1D1,0x150,0x14C,0xD5,0x154,0x158,0x156,0x15A,0x15C,0x160,0x15E,0x164,0x162,0xDA,0xD9,0xDC,0xDB,0x16C,0x1D3,0x170,0x16A,0x172,0x16E,0x168,0x1D7,0x1DB,0x1D9,0x1D5,0x174,0xDD,0x178,0x176,0x179,0x17D,0x17B,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_AB[] = {0xE1,0xE0,0xE4,0xE2,0x103,0x1CE,0x101,0x105,0xE5,0xE3,0x107,0x109,0x10D,0xE7,0x10B,0x10F,0xE9,0xE8,0xEB,0xEA,0x11B,0x117,0x113,0x119,0x1F5,0x11D,0x11F,0x0,0x121,0x125,0xED,0xEC,0xEF,0xEE,0x1D0,0x0,0x12B,0x12F,0x129,0x135,0x137,0x13A,0x13E,0x13C,0x144,0x148,0x146,0xF1,0xF3,0xF2,0xF6,0xF4,0x1D2,0x151,0x14D,0xF5,0x155,0x159,0x157,0x15B,0x15D,0x161,0x15F,0x165,0x163,0xFA,0xF9,0xFC,0xFB,0x16D,0x1D4,0x171,0x16B,0x173,0x16F,0x169,0x1D8,0x1DC,0x1DA,0x1D6,0x175,0xFD,0xFF,0x177,0x17A,0x17E,0x17C,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_AC[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_AD[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_AE[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_AF[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_B0[] = {0x4E02,0x4E04,0x4E05,0x4E0C,0x4E12,0x4E1F,0x4E23,0x4E24,0x4E28,0x4E2B,0x4E2E,0x4E2F,0x4E30,0x4E35,0x4E40,0x4E41,0x4E44,0x4E47,0x4E51,0x4E5A,0x4E5C,0x4E63,0x4E68,0x4E69,0x4E74,0x4E75,0x4E79,0x4E7F,0x4E8D,0x4E96,0x4E97,0x4E9D,0x4EAF,0x4EB9,0x4EC3,0x4ED0,0x4EDA,0x4EDB,0x4EE0,0x4EE1,0x4EE2,0x4EE8,0x4EEF,0x4EF1,0x4EF3,0x4EF5,0x4EFD,0x4EFE,0x4EFF,0x4F00,0x4F02,0x4F03,0x4F08,0x4F0B,0x4F0C,0x4F12,0x4F15,0x4F16,0x4F17,0x4F19,0x4F2E,0x4F31,0x4F60,0x4F33,0x4F35,0x4F37,0x4F39,0x4F3B,0x4F3E,0x4F40,0x4F42,0x4F48,0x4F49,0x4F4B,0x4F4C,0x4F52,0x4F54,0x4F56,0x4F58,0x4F5F,0x4F63,0x4F6A,0x4F6C,0x4F6E,0x4F71,0x4F77,0x4F78,0x4F79,0x4F7A,0x4F7D,0x4F7E,0x4F81,0x4F82,0x4F84},
decode_set3_B1[] = {0x4F85,0x4F89,0x4F8A,0x4F8C,0x4F8E,0x4F90,0x4F92,0x4F93,0x4F94,0x4F97,0x4F99,0x4F9A,0x4F9E,0x4F9F,0x4FB2,0x4FB7,0x4FB9,0x4FBB,0x4FBC,0x4FBD,0x4FBE,0x4FC0,0x4FC1,0x4FC5,0x4FC6,0x4FC8,0x4FC9,0x4FCB,0x4FCC,0x4FCD,0x4FCF,0x4FD2,0x4FDC,0x4FE0,0x4FE2,0x4FF0,0x4FF2,0x4FFC,0x4FFD,0x4FFF,0x5000,0x5001,0x5004,0x5007,0x500A,0x500C,0x500E,0x5010,0x5013,0x5017,0x5018,0x501B,0x501C,0x501D,0x501E,0x5022,0x5027,0x502E,0x5030,0x5032,0x5033,0x5035,0x5040,0x5041,0x5042,0x5045,0x5046,0x504A,0x504C,0x504E,0x5051,0x5052,0x5053,0x5057,0x5059,0x505F,0x5060,0x5062,0x5063,0x5066,0x5067,0x506A,0x506D,0x5070,0x5071,0x503B,0x5081,0x5083,0x5084,0x5086,0x508A,0x508E,0x508F,0x5090},
decode_set3_B2[] = {0x5092,0x5093,0x5094,0x5096,0x509B,0x509C,0x509E,0x509F,0x50A0,0x50A1,0x50A2,0x50AA,0x50AF,0x50B0,0x50B9,0x50BA,0x50BD,0x50C0,0x50C3,0x50C4,0x50C7,0x50CC,0x50CE,0x50D0,0x50D3,0x50D4,0x50D8,0x50DC,0x50DD,0x50DF,0x50E2,0x50E4,0x50E6,0x50E8,0x50E9,0x50EF,0x50F1,0x50F6,0x50FA,0x50FE,0x5103,0x5106,0x5107,0x5108,0x510B,0x510C,0x510D,0x510E,0x50F2,0x5110,0x5117,0x5119,0x511B,0x511C,0x511D,0x511E,0x5123,0x5127,0x5128,0x512C,0x512D,0x512F,0x5131,0x5133,0x5134,0x5135,0x5138,0x5139,0x5142,0x514A,0x514F,0x5153,0x5155,0x5157,0x5158,0x515F,0x5164,0x5166,0x517E,0x5183,0x5184,0x518B,0x518E,0x5198,0x519D,0x51A1,0x51A3,0x51AD,0x51B8,0x51BA,0x51BC,0x51BE,0x51BF,0x51C2},
decode_set3_B3[] = {0x51C8,0x51CF,0x51D1,0x51D2,0x51D3,0x51D5,0x51D8,0x51DE,0x51E2,0x51E5,0x51EE,0x51F2,0x51F3,0x51F4,0x51F7,0x5201,0x5202,0x5205,0x5212,0x5213,0x5215,0x5216,0x5218,0x5222,0x5228,0x5231,0x5232,0x5235,0x523C,0x5245,0x5249,0x5255,0x5257,0x5258,0x525A,0x525C,0x525F,0x5260,0x5261,0x5266,0x526E,0x5277,0x5278,0x5279,0x5280,0x5282,0x5285,0x528A,0x528C,0x5293,0x5295,0x5296,0x5297,0x5298,0x529A,0x529C,0x52A4,0x52A5,0x52A6,0x52A7,0x52AF,0x52B0,0x52B6,0x52B7,0x52B8,0x52BA,0x52BB,0x52BD,0x52C0,0x52C4,0x52C6,0x52C8,0x52CC,0x52CF,0x52D1,0x52D4,0x52D6,0x52DB,0x52DC,0x52E1,0x52E5,0x52E8,0x52E9,0x52EA,0x52EC,0x52F0,0x52F1,0x52F4,0x52F6,0x52F7,0x5300,0x5303,0x530A,0x530B},
decode_set3_B4[] = {0x530C,0x5311,0x5313,0x5318,0x531B,0x531C,0x531E,0x531F,0x5325,0x5327,0x5328,0x5329,0x532B,0x532C,0x532D,0x5330,0x5332,0x5335,0x533C,0x533D,0x533E,0x5342,0x534C,0x534B,0x5359,0x535B,0x5361,0x5363,0x5365,0x536C,0x536D,0x5372,0x5379,0x537E,0x5383,0x5387,0x5388,0x538E,0x5393,0x5394,0x5399,0x539D,0x53A1,0x53A4,0x53AA,0x53AB,0x53AF,0x53B2,0x53B4,0x53B5,0x53B7,0x53B8,0x53BA,0x53BD,0x53C0,0x53C5,0x53CF,0x53D2,0x53D3,0x53D5,0x53DA,0x53DD,0x53DE,0x53E0,0x53E6,0x53E7,0x53F5,0x5402,0x5413,0x541A,0x5421,0x5427,0x5428,0x542A,0x542F,0x5431,0x5434,0x5435,0x5443,0x5444,0x5447,0x544D,0x544F,0x545E,0x5462,0x5464,0x5466,0x5467,0x5469,0x546B,0x546D,0x546E,0x5474,0x547F},
decode_set3_B5[] = {0x5481,0x5483,0x5485,0x5488,0x5489,0x548D,0x5491,0x5495,0x5496,0x549C,0x549F,0x54A1,0x54A6,0x54A7,0x54A9,0x54AA,0x54AD,0x54AE,0x54B1,0x54B7,0x54B9,0x54BA,0x54BB,0x54BF,0x54C6,0x54CA,0x54CD,0x54CE,0x54E0,0x54EA,0x54EC,0x54EF,0x54F6,0x54FC,0x54FE,0x54FF,0x5500,0x5501,0x5505,0x5508,0x5509,0x550C,0x550D,0x550E,0x5515,0x552A,0x552B,0x5532,0x5535,0x5536,0x553B,0x553C,0x553D,0x5541,0x5547,0x5549,0x554A,0x554D,0x5550,0x5551,0x5558,0x555A,0x555B,0x555E,0x5560,0x5561,0x5564,0x5566,0x557F,0x5581,0x5582,0x5586,0x5588,0x558E,0x558F,0x5591,0x5592,0x5593,0x5594,0x5597,0x55A3,0x55A4,0x55AD,0x55B2,0x55BF,0x55C1,0x55C3,0x55C6,0x55C9,0x55CB,0x55CC,0x55CE,0x55D1,0x55D2},
decode_set3_B6[] = {0x55D3,0x55D7,0x55D8,0x55DB,0x55DE,0x55E2,0x55E9,0x55F6,0x55FF,0x5605,0x5608,0x560A,0x560D,0x560E,0x560F,0x5610,0x5611,0x5612,0x5619,0x562C,0x5630,0x5633,0x5635,0x5637,0x5639,0x563B,0x563C,0x563D,0x563F,0x5640,0x5641,0x5643,0x5644,0x5646,0x5649,0x564B,0x564D,0x564F,0x5654,0x565E,0x5660,0x5661,0x5662,0x5663,0x5666,0x5669,0x566D,0x566F,0x5671,0x5672,0x5675,0x5684,0x5685,0x5688,0x568B,0x568C,0x5695,0x5699,0x569A,0x569D,0x569E,0x569F,0x56A6,0x56A7,0x56A8,0x56A9,0x56AB,0x56AC,0x56AD,0x56B1,0x56B3,0x56B7,0x56BE,0x56C5,0x56C9,0x56CA,0x56CB,0x56CF,0x56D0,0x56CC,0x56CD,0x56D9,0x56DC,0x56DD,0x56DF,0x56E1,0x56E4,0x56E5,0x56E6,0x56E7,0x56E8,0x56F1,0x56EB,0x56ED},
decode_set3_B7[] = {0x56F6,0x56F7,0x5701,0x5702,0x5707,0x570A,0x570C,0x5711,0x5715,0x571A,0x571B,0x571D,0x5720,0x5722,0x5723,0x5724,0x5725,0x5729,0x572A,0x572C,0x572E,0x572F,0x5733,0x5734,0x573D,0x573E,0x573F,0x5745,0x5746,0x574C,0x574D,0x5752,0x5762,0x5765,0x5767,0x5768,0x576B,0x576D,0x576E,0x576F,0x5770,0x5771,0x5773,0x5774,0x5775,0x5777,0x5779,0x577A,0x577B,0x577C,0x577E,0x5781,0x5783,0x578C,0x5794,0x5797,0x5799,0x579A,0x579C,0x579D,0x579E,0x579F,0x57A1,0x5795,0x57A7,0x57A8,0x57A9,0x57AC,0x57B8,0x57BD,0x57C7,0x57C8,0x57CC,0x57CF,0x57D5,0x57DD,0x57DE,0x57E4,0x57E6,0x57E7,0x57E9,0x57ED,0x57F0,0x57F5,0x57F6,0x57F8,0x57FD,0x57FE,0x57FF,0x5803,0x5804,0x5808,0x5809,0x57E1},
decode_set3_B8[] = {0x580C,0x580D,0x581B,0x581E,0x581F,0x5820,0x5826,0x5827,0x582D,0x5832,0x5839,0x583F,0x5849,0x584C,0x584D,0x584F,0x5850,0x5855,0x585F,0x5861,0x5864,0x5867,0x5868,0x5878,0x587C,0x587F,0x5880,0x5881,0x5887,0x5888,0x5889,0x588A,0x588C,0x588D,0x588F,0x5890,0x5894,0x5896,0x589D,0x58A0,0x58A1,0x58A2,0x58A6,0x58A9,0x58B1,0x58B2,0x58C4,0x58BC,0x58C2,0x58C8,0x58CD,0x58CE,0x58D0,0x58D2,0x58D4,0x58D6,0x58DA,0x58DD,0x58E1,0x58E2,0x58E9,0x58F3,0x5905,0x5906,0x590B,0x590C,0x5912,0x5913,0x5914,0x8641,0x591D,0x5921,0x5923,0x5924,0x5928,0x592F,0x5930,0x5933,0x5935,0x5936,0x593F,0x5943,0x5946,0x5952,0x5953,0x5959,0x595B,0x595D,0x595E,0x595F,0x5961,0x5963,0x596B,0x596D},
decode_set3_B9[] = {0x596F,0x5972,0x5975,0x5976,0x5979,0x597B,0x597C,0x598B,0x598C,0x598E,0x5992,0x5995,0x5997,0x599F,0x59A4,0x59A7,0x59AD,0x59AE,0x59AF,0x59B0,0x59B3,0x59B7,0x59BA,0x59BC,0x59C1,0x59C3,0x59C4,0x59C8,0x59CA,0x59CD,0x59D2,0x59DD,0x59DE,0x59DF,0x59E3,0x59E4,0x59E7,0x59EE,0x59EF,0x59F1,0x59F2,0x59F4,0x59F7,0x5A00,0x5A04,0x5A0C,0x5A0D,0x5A0E,0x5A12,0x5A13,0x5A1E,0x5A23,0x5A24,0x5A27,0x5A28,0x5A2A,0x5A2D,0x5A30,0x5A44,0x5A45,0x5A47,0x5A48,0x5A4C,0x5A50,0x5A55,0x5A5E,0x5A63,0x5A65,0x5A67,0x5A6D,0x5A77,0x5A7A,0x5A7B,0x5A7E,0x5A8B,0x5A90,0x5A93,0x5A96,0x5A99,0x5A9C,0x5A9E,0x5A9F,0x5AA0,0x5AA2,0x5AA7,0x5AAC,0x5AB1,0x5AB2,0x5AB3,0x5AB5,0x5AB8,0x5ABA,0x5ABB,0x5ABF},
decode_set3_BA[] = {0x5AC4,0x5AC6,0x5AC8,0x5ACF,0x5ADA,0x5ADC,0x5AE0,0x5AE5,0x5AEA,0x5AEE,0x5AF5,0x5AF6,0x5AFD,0x5B00,0x5B01,0x5B08,0x5B17,0x5B34,0x5B19,0x5B1B,0x5B1D,0x5B21,0x5B25,0x5B2D,0x5B38,0x5B41,0x5B4B,0x5B4C,0x5B52,0x5B56,0x5B5E,0x5B68,0x5B6E,0x5B6F,0x5B7C,0x5B7D,0x5B7E,0x5B7F,0x5B81,0x5B84,0x5B86,0x5B8A,0x5B8E,0x5B90,0x5B91,0x5B93,0x5B94,0x5B96,0x5BA8,0x5BA9,0x5BAC,0x5BAD,0x5BAF,0x5BB1,0x5BB2,0x5BB7,0x5BBA,0x5BBC,0x5BC0,0x5BC1,0x5BCD,0x5BCF,0x5BD6,0x5BD7,0x5BD8,0x5BD9,0x5BDA,0x5BE0,0x5BEF,0x5BF1,0x5BF4,0x5BFD,0x5C0C,0x5C17,0x5C1E,0x5C1F,0x5C23,0x5C26,0x5C29,0x5C2B,0x5C2C,0x5C2E,0x5C30,0x5C32,0x5C35,0x5C36,0x5C59,0x5C5A,0x5C5C,0x5C62,0x5C63,0x5C67,0x5C68,0x5C69},
decode_set3_BB[] = {0x5C6D,0x5C70,0x5C74,0x5C75,0x5C7A,0x5C7B,0x5C7C,0x5C7D,0x5C87,0x5C88,0x5C8A,0x5C8F,0x5C92,0x5C9D,0x5C9F,0x5CA0,0x5CA2,0x5CA3,0x5CA6,0x5CAA,0x5CB2,0x5CB4,0x5CB5,0x5CBA,0x5CC9,0x5CCB,0x5CD2,0x5CDD,0x5CD7,0x5CEE,0x5CF1,0x5CF2,0x5CF4,0x5D01,0x5D06,0x5D0D,0x5D12,0x5D2B,0x5D23,0x5D24,0x5D26,0x5D27,0x5D31,0x5D34,0x5D39,0x5D3D,0x5D3F,0x5D42,0x5D43,0x5D46,0x5D48,0x5D55,0x5D51,0x5D59,0x5D4A,0x5D5F,0x5D60,0x5D61,0x5D62,0x5D64,0x5D6A,0x5D6D,0x5D70,0x5D79,0x5D7A,0x5D7E,0x5D7F,0x5D81,0x5D83,0x5D88,0x5D8A,0x5D92,0x5D93,0x5D94,0x5D95,0x5D99,0x5D9B,0x5D9F,0x5DA0,0x5DA7,0x5DAB,0x5DB0,0x5DB4,0x5DB8,0x5DB9,0x5DC3,0x5DC7,0x5DCB,0x5DD0,0x5DCE,0x5DD8,0x5DD9,0x5DE0,0x5DE4},
decode_set3_BC[] = {0x5DE9,0x5DF8,0x5DF9,0x5E00,0x5E07,0x5E0D,0x5E12,0x5E14,0x5E15,0x5E18,0x5E1F,0x5E20,0x5E2E,0x5E28,0x5E32,0x5E35,0x5E3E,0x5E4B,0x5E50,0x5E49,0x5E51,0x5E56,0x5E58,0x5E5B,0x5E5C,0x5E5E,0x5E68,0x5E6A,0x5E6B,0x5E6C,0x5E6D,0x5E6E,0x5E70,0x5E80,0x5E8B,0x5E8E,0x5EA2,0x5EA4,0x5EA5,0x5EA8,0x5EAA,0x5EAC,0x5EB1,0x5EB3,0x5EBD,0x5EBE,0x5EBF,0x5EC6,0x5ECC,0x5ECB,0x5ECE,0x5ED1,0x5ED2,0x5ED4,0x5ED5,0x5EDC,0x5EDE,0x5EE5,0x5EEB,0x5F02,0x5F06,0x5F07,0x5F08,0x5F0E,0x5F19,0x5F1C,0x5F1D,0x5F21,0x5F22,0x5F23,0x5F24,0x5F28,0x5F2B,0x5F2C,0x5F2E,0x5F30,0x5F34,0x5F36,0x5F3B,0x5F3D,0x5F3F,0x5F40,0x5F44,0x5F45,0x5F47,0x5F4D,0x5F50,0x5F54,0x5F58,0x5F5B,0x5F60,0x5F63,0x5F64,0x5F67},
decode_set3_BD[] = {0x5F6F,0x5F72,0x5F74,0x5F75,0x5F78,0x5F7A,0x5F7D,0x5F7E,0x5F89,0x5F8D,0x5F8F,0x5F96,0x5F9C,0x5F9D,0x5FA2,0x5FA7,0x5FAB,0x5FA4,0x5FAC,0x5FAF,0x5FB0,0x5FB1,0x5FB8,0x5FC4,0x5FC7,0x5FC8,0x5FC9,0x5FCB,0x5FD0,0x5FD1,0x5FD2,0x5FD3,0x5FD4,0x5FDE,0x5FE1,0x5FE2,0x5FE8,0x5FE9,0x5FEA,0x5FEC,0x5FED,0x5FEE,0x5FEF,0x5FF2,0x5FF3,0x5FF6,0x5FFA,0x5FFC,0x6007,0x600A,0x600D,0x6013,0x6014,0x6017,0x6018,0x601A,0x601F,0x6024,0x602D,0x6033,0x6035,0x6040,0x6047,0x6048,0x6049,0x604C,0x6051,0x6054,0x6056,0x6057,0x605D,0x6061,0x6067,0x6071,0x607E,0x607F,0x6082,0x6086,0x6088,0x608A,0x608E,0x6091,0x6093,0x6095,0x6098,0x609D,0x609E,0x60A2,0x60A4,0x60A5,0x60A8,0x60B0,0x60B1,0x60B7},
decode_set3_BE[] = {0x60BB,0x60BE,0x60C2,0x60C4,0x60C8,0x60C9,0x60CA,0x60CB,0x60CE,0x60CF,0x60D4,0x60D5,0x60D9,0x60DB,0x60DD,0x60DE,0x60E2,0x60E5,0x60F2,0x60F5,0x60F8,0x60FC,0x60FD,0x6102,0x6107,0x610A,0x610C,0x6110,0x6111,0x6112,0x6113,0x6114,0x6116,0x6117,0x6119,0x611C,0x611E,0x6122,0x612A,0x612B,0x6130,0x6131,0x6135,0x6136,0x6137,0x6139,0x6141,0x6145,0x6146,0x6149,0x615E,0x6160,0x616C,0x6172,0x6178,0x617B,0x617C,0x617F,0x6180,0x6181,0x6183,0x6184,0x618B,0x618D,0x6192,0x6193,0x6197,0x6198,0x619C,0x619D,0x619F,0x61A0,0x61A5,0x61A8,0x61AA,0x61AD,0x61B8,0x61B9,0x61BC,0x61C0,0x61C1,0x61C2,0x61CE,0x61CF,0x61D5,0x61DC,0x61DD,0x61DE,0x61DF,0x61E1,0x61E2,0x61E7,0x61E9,0x61E5},
decode_set3_BF[] = {0x61EC,0x61ED,0x61EF,0x6201,0x6203,0x6204,0x6207,0x6213,0x6215,0x621C,0x6220,0x6222,0x6223,0x6227,0x6229,0x622B,0x6239,0x623D,0x6242,0x6243,0x6244,0x6246,0x624C,0x6250,0x6251,0x6252,0x6254,0x6256,0x625A,0x625C,0x6264,0x626D,0x626F,0x6273,0x627A,0x627D,0x628D,0x628E,0x628F,0x6290,0x62A6,0x62A8,0x62B3,0x62B6,0x62B7,0x62BA,0x62BE,0x62BF,0x62C4,0x62CE,0x62D5,0x62D6,0x62DA,0x62EA,0x62F2,0x62F4,0x62FC,0x62FD,0x6303,0x6304,0x630A,0x630B,0x630D,0x6310,0x6313,0x6316,0x6318,0x6329,0x632A,0x632D,0x6335,0x6336,0x6339,0x633C,0x6341,0x6342,0x6343,0x6344,0x6346,0x634A,0x634B,0x634E,0x6352,0x6353,0x6354,0x6358,0x635B,0x6365,0x6366,0x636C,0x636D,0x6371,0x6374,0x6375},
decode_set3_C0[] = {0x6378,0x637C,0x637D,0x637F,0x6382,0x6384,0x6387,0x638A,0x6390,0x6394,0x6395,0x6399,0x639A,0x639E,0x63A4,0x63A6,0x63AD,0x63AE,0x63AF,0x63BD,0x63C1,0x63C5,0x63C8,0x63CE,0x63D1,0x63D3,0x63D4,0x63D5,0x63DC,0x63E0,0x63E5,0x63EA,0x63EC,0x63F2,0x63F3,0x63F5,0x63F8,0x63F9,0x6409,0x640A,0x6410,0x6412,0x6414,0x6418,0x641E,0x6420,0x6422,0x6424,0x6425,0x6429,0x642A,0x642F,0x6430,0x6435,0x643D,0x643F,0x644B,0x644F,0x6451,0x6452,0x6453,0x6454,0x645A,0x645B,0x645C,0x645D,0x645F,0x6460,0x6461,0x6463,0x646D,0x6473,0x6474,0x647B,0x647D,0x6485,0x6487,0x648F,0x6490,0x6491,0x6498,0x6499,0x649B,0x649D,0x649F,0x64A1,0x64A3,0x64A6,0x64A8,0x64AC,0x64B3,0x64BD,0x64BE,0x64BF},
decode_set3_C1[] = {0x64C4,0x64C9,0x64CA,0x64CB,0x64CC,0x64CE,0x64D0,0x64D1,0x64D5,0x64D7,0x64E4,0x64E5,0x64E9,0x64EA,0x64ED,0x64F0,0x64F5,0x64F7,0x64FB,0x64FF,0x6501,0x6504,0x6508,0x6509,0x650A,0x650F,0x6513,0x6514,0x6516,0x6519,0x651B,0x651E,0x651F,0x6522,0x6526,0x6529,0x652E,0x6531,0x653A,0x653C,0x653D,0x6543,0x6547,0x6549,0x6550,0x6552,0x6554,0x655F,0x6560,0x6567,0x656B,0x657A,0x657D,0x6581,0x6585,0x658A,0x6592,0x6595,0x6598,0x659D,0x65A0,0x65A3,0x65A6,0x65AE,0x65B2,0x65B3,0x65B4,0x65BF,0x65C2,0x65C8,0x65C9,0x65CE,0x65D0,0x65D4,0x65D6,0x65D8,0x65DF,0x65F0,0x65F2,0x65F4,0x65F5,0x65F9,0x65FE,0x65FF,0x6600,0x6604,0x6608,0x6609,0x660D,0x6611,0x6612,0x6615,0x6616,0x661D},
decode_set3_C2[] = {0x661E,0x6621,0x6622,0x6623,0x6624,0x6626,0x6629,0x662A,0x662B,0x662C,0x662E,0x6630,0x6631,0x6633,0x6639,0x6637,0x6640,0x6645,0x6646,0x664A,0x664C,0x6651,0x664E,0x6657,0x6658,0x6659,0x665B,0x665C,0x6660,0x6661,0x66FB,0x666A,0x666B,0x666C,0x667E,0x6673,0x6675,0x667F,0x6677,0x6678,0x6679,0x667B,0x6680,0x667C,0x668B,0x668C,0x668D,0x6690,0x6692,0x6699,0x669A,0x669B,0x669C,0x669F,0x66A0,0x66A4,0x66AD,0x66B1,0x66B2,0x66B5,0x66BB,0x66BF,0x66C0,0x66C2,0x66C3,0x66C8,0x66CC,0x66CE,0x66CF,0x66D4,0x66DB,0x66DF,0x66E8,0x66EB,0x66EC,0x66EE,0x66FA,0x6705,0x6707,0x670E,0x6713,0x6719,0x671C,0x6720,0x6722,0x6733,0x673E,0x6745,0x6747,0x6748,0x674C,0x6754,0x6755,0x675D},
decode_set3_C3[] = {0x6766,0x676C,0x676E,0x6774,0x6776,0x677B,0x6781,0x6784,0x678E,0x678F,0x6791,0x6793,0x6796,0x6798,0x6799,0x679B,0x67B0,0x67B1,0x67B2,0x67B5,0x67BB,0x67BC,0x67BD,0x67F9,0x67C0,0x67C2,0x67C3,0x67C5,0x67C8,0x67C9,0x67D2,0x67D7,0x67D9,0x67DC,0x67E1,0x67E6,0x67F0,0x67F2,0x67F6,0x67F7,0x6852,0x6814,0x6819,0x681D,0x681F,0x6828,0x6827,0x682C,0x682D,0x682F,0x6830,0x6831,0x6833,0x683B,0x683F,0x6844,0x6845,0x684A,0x684C,0x6855,0x6857,0x6858,0x685B,0x686B,0x686E,0x686F,0x6870,0x6871,0x6872,0x6875,0x6879,0x687A,0x687B,0x687C,0x6882,0x6884,0x6886,0x6888,0x6896,0x6898,0x689A,0x689C,0x68A1,0x68A3,0x68A5,0x68A9,0x68AA,0x68AE,0x68B2,0x68BB,0x68C5,0x68C8,0x68CC,0x68CF},
decode_set3_C4[] = {0x68D0,0x68D1,0x68D3,0x68D6,0x68D9,0x68DC,0x68DD,0x68E5,0x68E8,0x68EA,0x68EB,0x68EC,0x68ED,0x68F0,0x68F1,0x68F5,0x68F6,0x68FB,0x68FC,0x68FD,0x6906,0x6909,0x690A,0x6910,0x6911,0x6913,0x6916,0x6917,0x6931,0x6933,0x6935,0x6938,0x693B,0x6942,0x6945,0x6949,0x694E,0x6957,0x695B,0x6963,0x6964,0x6965,0x6966,0x6968,0x6969,0x696C,0x6970,0x6971,0x6972,0x697A,0x697B,0x697F,0x6980,0x698D,0x6992,0x6996,0x6998,0x69A1,0x69A5,0x69A6,0x69A8,0x69AB,0x69AD,0x69AF,0x69B7,0x69B8,0x69BA,0x69BC,0x69C5,0x69C8,0x69D1,0x69D6,0x69D7,0x69E2,0x69E5,0x69EE,0x69EF,0x69F1,0x69F3,0x69F5,0x69FE,0x6A00,0x6A01,0x6A03,0x6A0F,0x6A11,0x6A15,0x6A1A,0x6A1D,0x6A20,0x6A24,0x6A28,0x6A30,0x6A32},
decode_set3_C5[] = {0x6A34,0x6A37,0x6A3B,0x6A3E,0x6A3F,0x6A45,0x6A46,0x6A49,0x6A4A,0x6A4E,0x6A50,0x6A51,0x6A52,0x6A55,0x6A56,0x6A5B,0x6A64,0x6A67,0x6A6A,0x6A71,0x6A73,0x6A7E,0x6A81,0x6A83,0x6A86,0x6A87,0x6A89,0x6A8B,0x6A91,0x6A9B,0x6A9D,0x6A9E,0x6A9F,0x6AA5,0x6AAB,0x6AAF,0x6AB0,0x6AB1,0x6AB4,0x6ABD,0x6ABE,0x6ABF,0x6AC6,0x6AC9,0x6AC8,0x6ACC,0x6AD0,0x6AD4,0x6AD5,0x6AD6,0x6ADC,0x6ADD,0x6AE4,0x6AE7,0x6AEC,0x6AF0,0x6AF1,0x6AF2,0x6AFC,0x6AFD,0x6B02,0x6B03,0x6B06,0x6B07,0x6B09,0x6B0F,0x6B10,0x6B11,0x6B17,0x6B1B,0x6B1E,0x6B24,0x6B28,0x6B2B,0x6B2C,0x6B2F,0x6B35,0x6B36,0x6B3B,0x6B3F,0x6B46,0x6B4A,0x6B4D,0x6B52,0x6B56,0x6B58,0x6B5D,0x6B60,0x6B67,0x6B6B,0x6B6E,0x6B70,0x6B75,0x6B7D},
decode_set3_C6[] = {0x6B7E,0x6B82,0x6B85,0x6B97,0x6B9B,0x6B9F,0x6BA0,0x6BA2,0x6BA3,0x6BA8,0x6BA9,0x6BAC,0x6BAD,0x6BAE,0x6BB0,0x6BB8,0x6BB9,0x6BBD,0x6BBE,0x6BC3,0x6BC4,0x6BC9,0x6BCC,0x6BD6,0x6BDA,0x6BE1,0x6BE3,0x6BE6,0x6BE7,0x6BEE,0x6BF1,0x6BF7,0x6BF9,0x6BFF,0x6C02,0x6C04,0x6C05,0x6C09,0x6C0D,0x6C0E,0x6C10,0x6C12,0x6C19,0x6C1F,0x6C26,0x6C27,0x6C28,0x6C2C,0x6C2E,0x6C33,0x6C35,0x6C36,0x6C3A,0x6C3B,0x6C3F,0x6C4A,0x6C4B,0x6C4D,0x6C4F,0x6C52,0x6C54,0x6C59,0x6C5B,0x6C5C,0x6C6B,0x6C6D,0x6C6F,0x6C74,0x6C76,0x6C78,0x6C79,0x6C7B,0x6C85,0x6C86,0x6C87,0x6C89,0x6C94,0x6C95,0x6C97,0x6C98,0x6C9C,0x6C9F,0x6CB0,0x6CB2,0x6CB4,0x6CC2,0x6CC6,0x6CCD,0x6CCF,0x6CD0,0x6CD1,0x6CD2,0x6CD4,0x6CD6},
decode_set3_C7[] = {0x6CDA,0x6CDC,0x6CE0,0x6CE7,0x6CE9,0x6CEB,0x6CEC,0x6CEE,0x6CF2,0x6CF4,0x6D04,0x6D07,0x6D0A,0x6D0E,0x6D0F,0x6D11,0x6D13,0x6D1A,0x6D26,0x6D27,0x6D28,0x6C67,0x6D2E,0x6D2F,0x6D31,0x6D39,0x6D3C,0x6D3F,0x6D57,0x6D5E,0x6D5F,0x6D61,0x6D65,0x6D67,0x6D6F,0x6D70,0x6D7C,0x6D82,0x6D87,0x6D91,0x6D92,0x6D94,0x6D96,0x6D97,0x6D98,0x6DAA,0x6DAC,0x6DB4,0x6DB7,0x6DB9,0x6DBD,0x6DBF,0x6DC4,0x6DC8,0x6DCA,0x6DCE,0x6DCF,0x6DD6,0x6DDB,0x6DDD,0x6DDF,0x6DE0,0x6DE2,0x6DE5,0x6DE9,0x6DEF,0x6DF0,0x6DF4,0x6DF6,0x6DFC,0x6E00,0x6E04,0x6E1E,0x6E22,0x6E27,0x6E32,0x6E36,0x6E39,0x6E3B,0x6E3C,0x6E44,0x6E45,0x6E48,0x6E49,0x6E4B,0x6E4F,0x6E51,0x6E52,0x6E53,0x6E54,0x6E57,0x6E5C,0x6E5D,0x6E5E},
decode_set3_C8[] = {0x6E62,0x6E63,0x6E68,0x6E73,0x6E7B,0x6E7D,0x6E8D,0x6E93,0x6E99,0x6EA0,0x6EA7,0x6EAD,0x6EAE,0x6EB1,0x6EB3,0x6EBB,0x6EBF,0x6EC0,0x6EC1,0x6EC3,0x6EC7,0x6EC8,0x6ECA,0x6ECD,0x6ECE,0x6ECF,0x6EEB,0x6EED,0x6EEE,0x6EF9,0x6EFB,0x6EFD,0x6F04,0x6F08,0x6F0A,0x6F0C,0x6F0D,0x6F16,0x6F18,0x6F1A,0x6F1B,0x6F26,0x6F29,0x6F2A,0x6F2F,0x6F30,0x6F33,0x6F36,0x6F3B,0x6F3C,0x6F2D,0x6F4F,0x6F51,0x6F52,0x6F53,0x6F57,0x6F59,0x6F5A,0x6F5D,0x6F5E,0x6F61,0x6F62,0x6F68,0x6F6C,0x6F7D,0x6F7E,0x6F83,0x6F87,0x6F88,0x6F8B,0x6F8C,0x6F8D,0x6F90,0x6F92,0x6F93,0x6F94,0x6F96,0x6F9A,0x6F9F,0x6FA0,0x6FA5,0x6FA6,0x6FA7,0x6FA8,0x6FAE,0x6FAF,0x6FB0,0x6FB5,0x6FB6,0x6FBC,0x6FC5,0x6FC7,0x6FC8,0x6FCA},
decode_set3_C9[] = {0x6FDA,0x6FDE,0x6FE8,0x6FE9,0x6FF0,0x6FF5,0x6FF9,0x6FFC,0x6FFD,0x7000,0x7005,0x7006,0x7007,0x700D,0x7017,0x7020,0x7023,0x702F,0x7034,0x7037,0x7039,0x703C,0x7043,0x7044,0x7048,0x7049,0x704A,0x704B,0x7054,0x7055,0x705D,0x705E,0x704E,0x7064,0x7065,0x706C,0x706E,0x7075,0x7076,0x707E,0x7081,0x7085,0x7086,0x7094,0x7095,0x7096,0x7097,0x7098,0x709B,0x70A4,0x70AB,0x70B0,0x70B1,0x70B4,0x70B7,0x70CA,0x70D1,0x70D3,0x70D4,0x70D5,0x70D6,0x70D8,0x70DC,0x70E4,0x70FA,0x7103,0x7104,0x7105,0x7106,0x7107,0x710B,0x710C,0x710F,0x711E,0x7120,0x712B,0x712D,0x712F,0x7130,0x7131,0x7138,0x7141,0x7145,0x7146,0x7147,0x714A,0x714B,0x7150,0x7152,0x7157,0x715A,0x715C,0x715E,0x7160},
decode_set3_CA[] = {0x7168,0x7179,0x7180,0x7185,0x7187,0x718C,0x7192,0x719A,0x719B,0x71A0,0x71A2,0x71AF,0x71B0,0x71B2,0x71B3,0x71BA,0x71BF,0x71C0,0x71C1,0x71C4,0x71CB,0x71CC,0x71D3,0x71D6,0x71D9,0x71DA,0x71DC,0x71F8,0x71FE,0x7200,0x7207,0x7208,0x7209,0x7213,0x7217,0x721A,0x721D,0x721F,0x7224,0x722B,0x722F,0x7234,0x7238,0x7239,0x7241,0x7242,0x7243,0x7245,0x724E,0x724F,0x7250,0x7253,0x7255,0x7256,0x725A,0x725C,0x725E,0x7260,0x7263,0x7268,0x726B,0x726E,0x726F,0x7271,0x7277,0x7278,0x727B,0x727C,0x727F,0x7284,0x7289,0x728D,0x728E,0x7293,0x729B,0x72A8,0x72AD,0x72AE,0x72B1,0x72B4,0x72BE,0x72C1,0x72C7,0x72C9,0x72CC,0x72D5,0x72D6,0x72D8,0x72DF,0x72E5,0x72F3,0x72F4,0x72FA,0x72FB},
decode_set3_CB[] = {0x72FE,0x7302,0x7304,0x7305,0x7307,0x730B,0x730D,0x7312,0x7313,0x7318,0x7319,0x731E,0x7322,0x7324,0x7327,0x7328,0x732C,0x7331,0x7332,0x7335,0x733A,0x733B,0x733D,0x7343,0x734D,0x7350,0x7352,0x7356,0x7358,0x735D,0x735E,0x735F,0x7360,0x7366,0x7367,0x7369,0x736B,0x736C,0x736E,0x736F,0x7371,0x7377,0x7379,0x737C,0x7380,0x7381,0x7383,0x7385,0x7386,0x738E,0x7390,0x7393,0x7395,0x7397,0x7398,0x739C,0x739E,0x739F,0x73A0,0x73A2,0x73A5,0x73A6,0x73AA,0x73AB,0x73AD,0x73B5,0x73B7,0x73B9,0x73BC,0x73BD,0x73BF,0x73C5,0x73C6,0x73C9,0x73CB,0x73CC,0x73CF,0x73D2,0x73D3,0x73D6,0x73D9,0x73DD,0x73E1,0x73E3,0x73E6,0x73E7,0x73E9,0x73F4,0x73F5,0x73F7,0x73F9,0x73FA,0x73FB,0x73FD},
decode_set3_CC[] = {0x73FF,0x7400,0x7401,0x7404,0x7407,0x740A,0x7411,0x741A,0x741B,0x7424,0x7426,0x7428,0x7429,0x742A,0x742B,0x742C,0x742D,0x742E,0x742F,0x7430,0x7431,0x7439,0x7440,0x7443,0x7444,0x7446,0x7447,0x744B,0x744D,0x7451,0x7452,0x7457,0x745D,0x7462,0x7466,0x7467,0x7468,0x746B,0x746D,0x746E,0x7471,0x7472,0x7480,0x7481,0x7485,0x7486,0x7487,0x7489,0x748F,0x7490,0x7491,0x7492,0x7498,0x7499,0x749A,0x749C,0x749F,0x74A0,0x74A1,0x74A3,0x74A6,0x74A8,0x74A9,0x74AA,0x74AB,0x74AE,0x74AF,0x74B1,0x74B2,0x74B5,0x74B9,0x74BB,0x74BF,0x74C8,0x74C9,0x74CC,0x74D0,0x74D3,0x74D8,0x74DA,0x74DB,0x74DE,0x74DF,0x74E4,0x74E8,0x74EA,0x74EB,0x74EF,0x74F4,0x74FA,0x74FB,0x74FC,0x74FF,0x7506},
decode_set3_CD[] = {0x7512,0x7516,0x7517,0x7520,0x7521,0x7524,0x7527,0x7529,0x752A,0x752F,0x7536,0x7539,0x753D,0x753E,0x753F,0x7540,0x7543,0x7547,0x7548,0x754E,0x7550,0x7552,0x7557,0x755E,0x755F,0x7561,0x756F,0x7571,0x7579,0x757A,0x757B,0x757C,0x757D,0x757E,0x7581,0x7585,0x7590,0x7592,0x7593,0x7595,0x7599,0x759C,0x75A2,0x75A4,0x75B4,0x75BA,0x75BF,0x75C0,0x75C1,0x75C4,0x75C6,0x75CC,0x75CE,0x75CF,0x75D7,0x75DC,0x75DF,0x75E0,0x75E1,0x75E4,0x75E7,0x75EC,0x75EE,0x75EF,0x75F1,0x75F9,0x7600,0x7602,0x7603,0x7604,0x7607,0x7608,0x760A,0x760C,0x760F,0x7612,0x7613,0x7615,0x7616,0x7619,0x761B,0x761C,0x761D,0x761E,0x7623,0x7625,0x7626,0x7629,0x762D,0x7632,0x7633,0x7635,0x7638,0x7639},
decode_set3_CE[] = {0x763A,0x763C,0x764A,0x7640,0x7641,0x7643,0x7644,0x7645,0x7649,0x764B,0x7655,0x7659,0x765F,0x7664,0x7665,0x766D,0x766E,0x766F,0x7671,0x7674,0x7681,0x7685,0x768C,0x768D,0x7695,0x769B,0x769C,0x769D,0x769F,0x76A0,0x76A2,0x76A3,0x76A4,0x76A5,0x76A6,0x76A7,0x76A8,0x76AA,0x76AD,0x76BD,0x76C1,0x76C5,0x76C9,0x76CB,0x76CC,0x76CE,0x76D4,0x76D9,0x76E0,0x76E6,0x76E8,0x76EC,0x76F0,0x76F1,0x76F6,0x76F9,0x76FC,0x7700,0x7706,0x770A,0x770E,0x7712,0x7714,0x7715,0x7717,0x7719,0x771A,0x771C,0x7722,0x7728,0x772D,0x772E,0x772F,0x7734,0x7735,0x7736,0x7739,0x773D,0x773E,0x7742,0x7745,0x7746,0x774A,0x774D,0x774E,0x774F,0x7752,0x7756,0x7757,0x775C,0x775E,0x775F,0x7760,0x7762},
decode_set3_CF[] = {0x7764,0x7767,0x776A,0x776C,0x7770,0x7772,0x7773,0x7774,0x777A,0x777D,0x7780,0x7784,0x778C,0x778D,0x7794,0x7795,0x7796,0x779A,0x779F,0x77A2,0x77A7,0x77AA,0x77AE,0x77AF,0x77B1,0x77B5,0x77BE,0x77C3,0x77C9,0x77D1,0x77D2,0x77D5,0x77D9,0x77DE,0x77DF,0x77E0,0x77E4,0x77E6,0x77EA,0x77EC,0x77F0,0x77F1,0x77F4,0x77F8,0x77FB,0x7805,0x7806,0x7809,0x780D,0x780E,0x7811,0x781D,0x7821,0x7822,0x7823,0x782D,0x782E,0x7830,0x7835,0x7837,0x7843,0x7844,0x7847,0x7848,0x784C,0x784E,0x7852,0x785C,0x785E,0x7860,0x7861,0x7863,0x7864,0x7868,0x786A,0x786E,0x787A,0x787E,0x788A,0x788F,0x7894,0x7898,0x78A1,0x789D,0x789E,0x789F,0x78A4,0x78A8,0x78AC,0x78AD,0x78B0,0x78B1,0x78B2,0x78B3},
decode_set3_D0[] = {0x78BB,0x78BD,0x78BF,0x78C7,0x78C8,0x78C9,0x78CC,0x78CE,0x78D2,0x78D3,0x78D5,0x78D6,0x78E4,0x78DB,0x78DF,0x78E0,0x78E1,0x78E6,0x78EA,0x78F2,0x78F3,0x7900,0x78F6,0x78F7,0x78FA,0x78FB,0x78FF,0x7906,0x790C,0x7910,0x791A,0x791C,0x791E,0x791F,0x7920,0x7925,0x7927,0x7929,0x792D,0x7931,0x7934,0x7935,0x793B,0x793D,0x793F,0x7944,0x7945,0x7946,0x794A,0x794B,0x794F,0x7951,0x7954,0x7958,0x795B,0x795C,0x7967,0x7969,0x796B,0x7972,0x7979,0x797B,0x797C,0x797E,0x798B,0x798C,0x7991,0x7993,0x7994,0x7995,0x7996,0x7998,0x799B,0x799C,0x79A1,0x79A8,0x79A9,0x79AB,0x79AF,0x79B1,0x79B4,0x79B8,0x79BB,0x79C2,0x79C4,0x79C7,0x79C8,0x79CA,0x79CF,0x79D4,0x79D6,0x79DA,0x79DD,0x79DE},
decode_set3_D1[] = {0x79E0,0x79E2,0x79E5,0x79EA,0x79EB,0x79ED,0x79F1,0x79F8,0x79FC,0x7A02,0x7A03,0x7A07,0x7A09,0x7A0A,0x7A0C,0x7A11,0x7A15,0x7A1B,0x7A1E,0x7A21,0x7A27,0x7A2B,0x7A2D,0x7A2F,0x7A30,0x7A34,0x7A35,0x7A38,0x7A39,0x7A3A,0x7A44,0x7A45,0x7A47,0x7A48,0x7A4C,0x7A55,0x7A56,0x7A59,0x7A5C,0x7A5D,0x7A5F,0x7A60,0x7A65,0x7A67,0x7A6A,0x7A6D,0x7A75,0x7A78,0x7A7E,0x7A80,0x7A82,0x7A85,0x7A86,0x7A8A,0x7A8B,0x7A90,0x7A91,0x7A94,0x7A9E,0x7AA0,0x7AA3,0x7AAC,0x7AB3,0x7AB5,0x7AB9,0x7ABB,0x7ABC,0x7AC6,0x7AC9,0x7ACC,0x7ACE,0x7AD1,0x7ADB,0x7AE8,0x7AE9,0x7AEB,0x7AEC,0x7AF1,0x7AF4,0x7AFB,0x7AFD,0x7AFE,0x7B07,0x7B14,0x7B1F,0x7B23,0x7B27,0x7B29,0x7B2A,0x7B2B,0x7B2D,0x7B2E,0x7B2F,0x7B30},
decode_set3_D2[] = {0x7B31,0x7B34,0x7B3D,0x7B3F,0x7B40,0x7B41,0x7B47,0x7B4E,0x7B55,0x7B60,0x7B64,0x7B66,0x7B69,0x7B6A,0x7B6D,0x7B6F,0x7B72,0x7B73,0x7B77,0x7B84,0x7B89,0x7B8E,0x7B90,0x7B91,0x7B96,0x7B9B,0x7B9E,0x7BA0,0x7BA5,0x7BAC,0x7BAF,0x7BB0,0x7BB2,0x7BB5,0x7BB6,0x7BBA,0x7BBB,0x7BBC,0x7BBD,0x7BC2,0x7BC5,0x7BC8,0x7BCA,0x7BD4,0x7BD6,0x7BD7,0x7BD9,0x7BDA,0x7BDB,0x7BE8,0x7BEA,0x7BF2,0x7BF4,0x7BF5,0x7BF8,0x7BF9,0x7BFA,0x7BFC,0x7BFE,0x7C01,0x7C02,0x7C03,0x7C04,0x7C06,0x7C09,0x7C0B,0x7C0C,0x7C0E,0x7C0F,0x7C19,0x7C1B,0x7C20,0x7C25,0x7C26,0x7C28,0x7C2C,0x7C31,0x7C33,0x7C34,0x7C36,0x7C39,0x7C3A,0x7C46,0x7C4A,0x7C55,0x7C51,0x7C52,0x7C53,0x7C59,0x7C5A,0x7C5B,0x7C5C,0x7C5D,0x7C5E},
decode_set3_D3[] = {0x7C61,0x7C63,0x7C67,0x7C69,0x7C6D,0x7C6E,0x7C70,0x7C72,0x7C79,0x7C7C,0x7C7D,0x7C86,0x7C87,0x7C8F,0x7C94,0x7C9E,0x7CA0,0x7CA6,0x7CB0,0x7CB6,0x7CB7,0x7CBA,0x7CBB,0x7CBC,0x7CBF,0x7CC4,0x7CC7,0x7CC8,0x7CC9,0x7CCD,0x7CCF,0x7CD3,0x7CD4,0x7CD5,0x7CD7,0x7CD9,0x7CDA,0x7CDD,0x7CE6,0x7CE9,0x7CEB,0x7CF5,0x7D03,0x7D07,0x7D08,0x7D09,0x7D0F,0x7D11,0x7D12,0x7D13,0x7D16,0x7D1D,0x7D1E,0x7D23,0x7D26,0x7D2A,0x7D2D,0x7D31,0x7D3C,0x7D3D,0x7D3E,0x7D40,0x7D41,0x7D47,0x7D48,0x7D4D,0x7D51,0x7D53,0x7D57,0x7D59,0x7D5A,0x7D5C,0x7D5D,0x7D65,0x7D67,0x7D6A,0x7D70,0x7D78,0x7D7A,0x7D7B,0x7D7F,0x7D81,0x7D82,0x7D83,0x7D85,0x7D86,0x7D88,0x7D8B,0x7D8C,0x7D8D,0x7D91,0x7D96,0x7D97,0x7D9D},
decode_set3_D4[] = {0x7D9E,0x7DA6,0x7DA7,0x7DAA,0x7DB3,0x7DB6,0x7DB7,0x7DB9,0x7DC2,0x7DC3,0x7DC4,0x7DC5,0x7DC6,0x7DCC,0x7DCD,0x7DCE,0x7DD7,0x7DD9,0x7E00,0x7DE2,0x7DE5,0x7DE6,0x7DEA,0x7DEB,0x7DED,0x7DF1,0x7DF5,0x7DF6,0x7DF9,0x7DFA,0x7E08,0x7E10,0x7E11,0x7E15,0x7E17,0x7E1C,0x7E1D,0x7E20,0x7E27,0x7E28,0x7E2C,0x7E2D,0x7E2F,0x7E33,0x7E36,0x7E3F,0x7E44,0x7E45,0x7E47,0x7E4E,0x7E50,0x7E52,0x7E58,0x7E5F,0x7E61,0x7E62,0x7E65,0x7E6B,0x7E6E,0x7E6F,0x7E73,0x7E78,0x7E7E,0x7E81,0x7E86,0x7E87,0x7E8A,0x7E8D,0x7E91,0x7E95,0x7E98,0x7E9A,0x7E9D,0x7E9E,0x7F3C,0x7F3B,0x7F3D,0x7F3E,0x7F3F,0x7F43,0x7F44,0x7F47,0x7F4F,0x7F52,0x7F53,0x7F5B,0x7F5C,0x7F5D,0x7F61,0x7F63,0x7F64,0x7F65,0x7F66,0x7F6D},
decode_set3_D5[] = {0x7F71,0x7F7D,0x7F7E,0x7F7F,0x7F80,0x7F8B,0x7F8D,0x7F8F,0x7F90,0x7F91,0x7F96,0x7F97,0x7F9C,0x7FA1,0x7FA2,0x7FA6,0x7FAA,0x7FAD,0x7FB4,0x7FBC,0x7FBF,0x7FC0,0x7FC3,0x7FC8,0x7FCE,0x7FCF,0x7FDB,0x7FDF,0x7FE3,0x7FE5,0x7FE8,0x7FEC,0x7FEE,0x7FEF,0x7FF2,0x7FFA,0x7FFD,0x7FFE,0x7FFF,0x8007,0x8008,0x800A,0x800D,0x800E,0x800F,0x8011,0x8013,0x8014,0x8016,0x801D,0x801E,0x801F,0x8020,0x8024,0x8026,0x802C,0x802E,0x8030,0x8034,0x8035,0x8037,0x8039,0x803A,0x803C,0x803E,0x8040,0x8044,0x8060,0x8064,0x8066,0x806D,0x8071,0x8075,0x8081,0x8088,0x808E,0x809C,0x809E,0x80A6,0x80A7,0x80AB,0x80B8,0x80B9,0x80C8,0x80CD,0x80CF,0x80D2,0x80D4,0x80D5,0x80D7,0x80D8,0x80E0,0x80ED,0x80EE},
decode_set3_D6[] = {0x80F0,0x80F2,0x80F3,0x80F6,0x80F9,0x80FA,0x80FE,0x8103,0x810B,0x8116,0x8117,0x8118,0x811C,0x811E,0x8120,0x8124,0x8127,0x812C,0x8130,0x8135,0x813A,0x813C,0x8145,0x8147,0x814A,0x814C,0x8152,0x8157,0x8160,0x8161,0x8167,0x8168,0x8169,0x816D,0x816F,0x8177,0x8181,0x8190,0x8184,0x8185,0x8186,0x818B,0x818E,0x8196,0x8198,0x819B,0x819E,0x81A2,0x81AE,0x81B2,0x81B4,0x81BB,0x81CB,0x81C3,0x81C5,0x81CA,0x81CE,0x81CF,0x81D5,0x81D7,0x81DB,0x81DD,0x81DE,0x81E1,0x81E4,0x81EB,0x81EC,0x81F0,0x81F1,0x81F2,0x81F5,0x81F6,0x81F8,0x81F9,0x81FD,0x81FF,0x8200,0x8203,0x820F,0x8213,0x8214,0x8219,0x821A,0x821D,0x8221,0x8222,0x8228,0x8232,0x8234,0x823A,0x8243,0x8244,0x8245,0x8246},
decode_set3_D7[] = {0x824B,0x824E,0x824F,0x8251,0x8256,0x825C,0x8260,0x8263,0x8267,0x826D,0x8274,0x827B,0x827D,0x827F,0x8280,0x8281,0x8283,0x8284,0x8287,0x8289,0x828A,0x828E,0x8291,0x8294,0x8296,0x8298,0x829A,0x829B,0x82A0,0x82A1,0x82A3,0x82A4,0x82A7,0x82A8,0x82A9,0x82AA,0x82AE,0x82B0,0x82B2,0x82B4,0x82B7,0x82BA,0x82BC,0x82BE,0x82BF,0x82C6,0x82D0,0x82D5,0x82DA,0x82E0,0x82E2,0x82E4,0x82E8,0x82EA,0x82ED,0x82EF,0x82F6,0x82F7,0x82FD,0x82FE,0x8300,0x8301,0x8307,0x8308,0x830A,0x830B,0x8354,0x831B,0x831D,0x831E,0x831F,0x8321,0x8322,0x832C,0x832D,0x832E,0x8330,0x8333,0x8337,0x833A,0x833C,0x833D,0x8342,0x8343,0x8344,0x8347,0x834D,0x834E,0x8351,0x8355,0x8356,0x8357,0x8370,0x8378},
decode_set3_D8[] = {0x837D,0x837F,0x8380,0x8382,0x8384,0x8386,0x838D,0x8392,0x8394,0x8395,0x8398,0x8399,0x839B,0x839C,0x839D,0x83A6,0x83A7,0x83A9,0x83AC,0x83BE,0x83BF,0x83C0,0x83C7,0x83C9,0x83CF,0x83D0,0x83D1,0x83D4,0x83DD,0x8353,0x83E8,0x83EA,0x83F6,0x83F8,0x83F9,0x83FC,0x8401,0x8406,0x840A,0x840F,0x8411,0x8415,0x8419,0x83AD,0x842F,0x8439,0x8445,0x8447,0x8448,0x844A,0x844D,0x844F,0x8451,0x8452,0x8456,0x8458,0x8459,0x845A,0x845C,0x8460,0x8464,0x8465,0x8467,0x846A,0x8470,0x8473,0x8474,0x8476,0x8478,0x847C,0x847D,0x8481,0x8485,0x8492,0x8493,0x8495,0x849E,0x84A6,0x84A8,0x84A9,0x84AA,0x84AF,0x84B1,0x84B4,0x84BA,0x84BD,0x84BE,0x84C0,0x84C2,0x84C7,0x84C8,0x84CC,0x84CF,0x84D3},
decode_set3_D9[] = {0x84DC,0x84E7,0x84EA,0x84EF,0x84F0,0x84F1,0x84F2,0x84F7,0x8532,0x84FA,0x84FB,0x84FD,0x8502,0x8503,0x8507,0x850C,0x850E,0x8510,0x851C,0x851E,0x8522,0x8523,0x8524,0x8525,0x8527,0x852A,0x852B,0x852F,0x8533,0x8534,0x8536,0x853F,0x8546,0x854F,0x8550,0x8551,0x8552,0x8553,0x8556,0x8559,0x855C,0x855D,0x855E,0x855F,0x8560,0x8561,0x8562,0x8564,0x856B,0x856F,0x8579,0x857A,0x857B,0x857D,0x857F,0x8581,0x8585,0x8586,0x8589,0x858B,0x858C,0x858F,0x8593,0x8598,0x859D,0x859F,0x85A0,0x85A2,0x85A5,0x85A7,0x85B4,0x85B6,0x85B7,0x85B8,0x85BC,0x85BD,0x85BE,0x85BF,0x85C2,0x85C7,0x85CA,0x85CB,0x85CE,0x85AD,0x85D8,0x85DA,0x85DF,0x85E0,0x85E6,0x85E8,0x85ED,0x85F3,0x85F6,0x85FC},
decode_set3_DA[] = {0x85FF,0x8600,0x8604,0x8605,0x860D,0x860E,0x8610,0x8611,0x8612,0x8618,0x8619,0x861B,0x861E,0x8621,0x8627,0x8629,0x8636,0x8638,0x863A,0x863C,0x863D,0x8640,0x8642,0x8646,0x8652,0x8653,0x8656,0x8657,0x8658,0x8659,0x865D,0x8660,0x8661,0x8662,0x8663,0x8664,0x8669,0x866C,0x866F,0x8675,0x8676,0x8677,0x867A,0x868D,0x8691,0x8696,0x8698,0x869A,0x869C,0x86A1,0x86A6,0x86A7,0x86A8,0x86AD,0x86B1,0x86B3,0x86B4,0x86B5,0x86B7,0x86B8,0x86B9,0x86BF,0x86C0,0x86C1,0x86C3,0x86C5,0x86D1,0x86D2,0x86D5,0x86D7,0x86DA,0x86DC,0x86E0,0x86E3,0x86E5,0x86E7,0x8688,0x86FA,0x86FC,0x86FD,0x8704,0x8705,0x8707,0x870B,0x870E,0x870F,0x8710,0x8713,0x8714,0x8719,0x871E,0x871F,0x8721,0x8723},
decode_set3_DB[] = {0x8728,0x872E,0x872F,0x8731,0x8732,0x8739,0x873A,0x873C,0x873D,0x873E,0x8740,0x8743,0x8745,0x874D,0x8758,0x875D,0x8761,0x8764,0x8765,0x876F,0x8771,0x8772,0x877B,0x8783,0x8784,0x8785,0x8786,0x8787,0x8788,0x8789,0x878B,0x878C,0x8790,0x8793,0x8795,0x8797,0x8798,0x8799,0x879E,0x87A0,0x87A3,0x87A7,0x87AC,0x87AD,0x87AE,0x87B1,0x87B5,0x87BE,0x87BF,0x87C1,0x87C8,0x87C9,0x87CA,0x87CE,0x87D5,0x87D6,0x87D9,0x87DA,0x87DC,0x87DF,0x87E2,0x87E3,0x87E4,0x87EA,0x87EB,0x87ED,0x87F1,0x87F3,0x87F8,0x87FA,0x87FF,0x8801,0x8803,0x8806,0x8809,0x880A,0x880B,0x8810,0x8819,0x8812,0x8813,0x8814,0x8818,0x881A,0x881B,0x881C,0x881E,0x881F,0x8828,0x882D,0x882E,0x8830,0x8832,0x8835},
decode_set3_DC[] = {0x883A,0x883C,0x8841,0x8843,0x8845,0x8848,0x8849,0x884A,0x884B,0x884E,0x8851,0x8855,0x8856,0x8858,0x885A,0x885C,0x885F,0x8860,0x8864,0x8869,0x8871,0x8879,0x887B,0x8880,0x8898,0x889A,0x889B,0x889C,0x889F,0x88A0,0x88A8,0x88AA,0x88BA,0x88BD,0x88BE,0x88C0,0x88CA,0x88CB,0x88CC,0x88CD,0x88CE,0x88D1,0x88D2,0x88D3,0x88DB,0x88DE,0x88E7,0x88EF,0x88F0,0x88F1,0x88F5,0x88F7,0x8901,0x8906,0x890D,0x890E,0x890F,0x8915,0x8916,0x8918,0x8919,0x891A,0x891C,0x8920,0x8926,0x8927,0x8928,0x8930,0x8931,0x8932,0x8935,0x8939,0x893A,0x893E,0x8940,0x8942,0x8945,0x8946,0x8949,0x894F,0x8952,0x8957,0x895A,0x895B,0x895C,0x8961,0x8962,0x8963,0x896B,0x896E,0x8970,0x8973,0x8975,0x897A},
decode_set3_DD[] = {0x897B,0x897C,0x897D,0x8989,0x898D,0x8990,0x8994,0x8995,0x899B,0x899C,0x899F,0x89A0,0x89A5,0x89B0,0x89B4,0x89B5,0x89B6,0x89B7,0x89BC,0x89D4,0x89D5,0x89D6,0x89D7,0x89D8,0x89E5,0x89E9,0x89EB,0x89ED,0x89F1,0x89F3,0x89F6,0x89F9,0x89FD,0x89FF,0x8A04,0x8A05,0x8A07,0x8A0F,0x8A11,0x8A12,0x8A14,0x8A15,0x8A1E,0x8A20,0x8A22,0x8A24,0x8A26,0x8A2B,0x8A2C,0x8A2F,0x8A35,0x8A37,0x8A3D,0x8A3E,0x8A40,0x8A43,0x8A45,0x8A47,0x8A49,0x8A4D,0x8A4E,0x8A53,0x8A56,0x8A57,0x8A58,0x8A5C,0x8A5D,0x8A61,0x8A65,0x8A67,0x8A75,0x8A76,0x8A77,0x8A79,0x8A7A,0x8A7B,0x8A7E,0x8A7F,0x8A80,0x8A83,0x8A86,0x8A8B,0x8A8F,0x8A90,0x8A92,0x8A96,0x8A97,0x8A99,0x8A9F,0x8AA7,0x8AA9,0x8AAE,0x8AAF,0x8AB3},
decode_set3_DE[] = {0x8AB6,0x8AB7,0x8ABB,0x8ABE,0x8AC3,0x8AC6,0x8AC8,0x8AC9,0x8ACA,0x8AD1,0x8AD3,0x8AD4,0x8AD5,0x8AD7,0x8ADD,0x8ADF,0x8AEC,0x8AF0,0x8AF4,0x8AF5,0x8AF6,0x8AFC,0x8AFF,0x8B05,0x8B06,0x8B0B,0x8B11,0x8B1C,0x8B1E,0x8B1F,0x8B0A,0x8B2D,0x8B30,0x8B37,0x8B3C,0x8B42,0x8B43,0x8B44,0x8B45,0x8B46,0x8B48,0x8B52,0x8B53,0x8B54,0x8B59,0x8B4D,0x8B5E,0x8B63,0x8B6D,0x8B76,0x8B78,0x8B79,0x8B7C,0x8B7E,0x8B81,0x8B84,0x8B85,0x8B8B,0x8B8D,0x8B8F,0x8B94,0x8B95,0x8B9C,0x8B9E,0x8B9F,0x8C38,0x8C39,0x8C3D,0x8C3E,0x8C45,0x8C47,0x8C49,0x8C4B,0x8C4F,0x8C51,0x8C53,0x8C54,0x8C57,0x8C58,0x8C5B,0x8C5D,0x8C59,0x8C63,0x8C64,0x8C66,0x8C68,0x8C69,0x8C6D,0x8C73,0x8C75,0x8C76,0x8C7B,0x8C7E,0x8C86},
decode_set3_DF[] = {0x8C87,0x8C8B,0x8C90,0x8C92,0x8C93,0x8C99,0x8C9B,0x8C9C,0x8CA4,0x8CB9,0x8CBA,0x8CC5,0x8CC6,0x8CC9,0x8CCB,0x8CCF,0x8CD6,0x8CD5,0x8CD9,0x8CDD,0x8CE1,0x8CE8,0x8CEC,0x8CEF,0x8CF0,0x8CF2,0x8CF5,0x8CF7,0x8CF8,0x8CFE,0x8CFF,0x8D01,0x8D03,0x8D09,0x8D12,0x8D17,0x8D1B,0x8D65,0x8D69,0x8D6C,0x8D6E,0x8D7F,0x8D82,0x8D84,0x8D88,0x8D8D,0x8D90,0x8D91,0x8D95,0x8D9E,0x8D9F,0x8DA0,0x8DA6,0x8DAB,0x8DAC,0x8DAF,0x8DB2,0x8DB5,0x8DB7,0x8DB9,0x8DBB,0x8DC0,0x8DC5,0x8DC6,0x8DC7,0x8DC8,0x8DCA,0x8DCE,0x8DD1,0x8DD4,0x8DD5,0x8DD7,0x8DD9,0x8DE4,0x8DE5,0x8DE7,0x8DEC,0x8DF0,0x8DBC,0x8DF1,0x8DF2,0x8DF4,0x8DFD,0x8E01,0x8E04,0x8E05,0x8E06,0x8E0B,0x8E11,0x8E14,0x8E16,0x8E20,0x8E21,0x8E22},
decode_set3_E0[] = {0x8E23,0x8E26,0x8E27,0x8E31,0x8E33,0x8E36,0x8E37,0x8E38,0x8E39,0x8E3D,0x8E40,0x8E41,0x8E4B,0x8E4D,0x8E4E,0x8E4F,0x8E54,0x8E5B,0x8E5C,0x8E5D,0x8E5E,0x8E61,0x8E62,0x8E69,0x8E6C,0x8E6D,0x8E6F,0x8E70,0x8E71,0x8E79,0x8E7A,0x8E7B,0x8E82,0x8E83,0x8E89,0x8E90,0x8E92,0x8E95,0x8E9A,0x8E9B,0x8E9D,0x8E9E,0x8EA2,0x8EA7,0x8EA9,0x8EAD,0x8EAE,0x8EB3,0x8EB5,0x8EBA,0x8EBB,0x8EC0,0x8EC1,0x8EC3,0x8EC4,0x8EC7,0x8ECF,0x8ED1,0x8ED4,0x8EDC,0x8EE8,0x8EEE,0x8EF0,0x8EF1,0x8EF7,0x8EF9,0x8EFA,0x8EED,0x8F00,0x8F02,0x8F07,0x8F08,0x8F0F,0x8F10,0x8F16,0x8F17,0x8F18,0x8F1E,0x8F20,0x8F21,0x8F23,0x8F25,0x8F27,0x8F28,0x8F2C,0x8F2D,0x8F2E,0x8F34,0x8F35,0x8F36,0x8F37,0x8F3A,0x8F40,0x8F41},
decode_set3_E1[] = {0x8F43,0x8F47,0x8F4F,0x8F51,0x8F52,0x8F53,0x8F54,0x8F55,0x8F58,0x8F5D,0x8F5E,0x8F65,0x8F9D,0x8FA0,0x8FA1,0x8FA4,0x8FA5,0x8FA6,0x8FB5,0x8FB6,0x8FB8,0x8FBE,0x8FC0,0x8FC1,0x8FC6,0x8FCA,0x8FCB,0x8FCD,0x8FD0,0x8FD2,0x8FD3,0x8FD5,0x8FE0,0x8FE3,0x8FE4,0x8FE8,0x8FEE,0x8FF1,0x8FF5,0x8FF6,0x8FFB,0x8FFE,0x9002,0x9004,0x9008,0x900C,0x9018,0x901B,0x9028,0x9029,0x902F,0x902A,0x902C,0x902D,0x9033,0x9034,0x9037,0x903F,0x9043,0x9044,0x904C,0x905B,0x905D,0x9062,0x9066,0x9067,0x906C,0x9070,0x9074,0x9079,0x9085,0x9088,0x908B,0x908C,0x908E,0x9090,0x9095,0x9097,0x9098,0x9099,0x909B,0x90A0,0x90A1,0x90A2,0x90A5,0x90B0,0x90B2,0x90B3,0x90B4,0x90B6,0x90BD,0x90CC,0x90BE,0x90C3},
decode_set3_E2[] = {0x90C4,0x90C5,0x90C7,0x90C8,0x90D5,0x90D7,0x90D8,0x90D9,0x90DC,0x90DD,0x90DF,0x90E5,0x90D2,0x90F6,0x90EB,0x90EF,0x90F0,0x90F4,0x90FE,0x90FF,0x9100,0x9104,0x9105,0x9106,0x9108,0x910D,0x9110,0x9114,0x9116,0x9117,0x9118,0x911A,0x911C,0x911E,0x9120,0x9125,0x9122,0x9123,0x9127,0x9129,0x912E,0x912F,0x9131,0x9134,0x9136,0x9137,0x9139,0x913A,0x913C,0x913D,0x9143,0x9147,0x9148,0x914F,0x9153,0x9157,0x9159,0x915A,0x915B,0x9161,0x9164,0x9167,0x916D,0x9174,0x9179,0x917A,0x917B,0x9181,0x9183,0x9185,0x9186,0x918A,0x918E,0x9191,0x9193,0x9194,0x9195,0x9198,0x919E,0x91A1,0x91A6,0x91A8,0x91AC,0x91AD,0x91AE,0x91B0,0x91B1,0x91B2,0x91B3,0x91B6,0x91BB,0x91BC,0x91BD,0x91BF},
decode_set3_E3[] = {0x91C2,0x91C3,0x91C5,0x91D3,0x91D4,0x91D7,0x91D9,0x91DA,0x91DE,0x91E4,0x91E5,0x91E9,0x91EA,0x91EC,0x91ED,0x91EE,0x91EF,0x91F0,0x91F1,0x91F7,0x91F9,0x91FB,0x91FD,0x9200,0x9201,0x9204,0x9205,0x9206,0x9207,0x9209,0x920A,0x920C,0x9210,0x9212,0x9213,0x9216,0x9218,0x921C,0x921D,0x9223,0x9224,0x9225,0x9226,0x9228,0x922E,0x922F,0x9230,0x9233,0x9235,0x9236,0x9238,0x9239,0x923A,0x923C,0x923E,0x9240,0x9242,0x9243,0x9246,0x9247,0x924A,0x924D,0x924E,0x924F,0x9251,0x9258,0x9259,0x925C,0x925D,0x9260,0x9261,0x9265,0x9267,0x9268,0x9269,0x926E,0x926F,0x9270,0x9275,0x9276,0x9277,0x9278,0x9279,0x927B,0x927C,0x927D,0x927F,0x9288,0x9289,0x928A,0x928D,0x928E,0x9292,0x9297},
decode_set3_E4[] = {0x9299,0x929F,0x92A0,0x92A4,0x92A5,0x92A7,0x92A8,0x92AB,0x92AF,0x92B2,0x92B6,0x92B8,0x92BA,0x92BB,0x92BC,0x92BD,0x92BF,0x92C0,0x92C1,0x92C2,0x92C3,0x92C5,0x92C6,0x92C7,0x92C8,0x92CB,0x92CC,0x92CD,0x92CE,0x92D0,0x92D3,0x92D5,0x92D7,0x92D8,0x92D9,0x92DC,0x92DD,0x92DF,0x92E0,0x92E1,0x92E3,0x92E5,0x92E7,0x92E8,0x92EC,0x92EE,0x92F0,0x92F9,0x92FB,0x92FF,0x9300,0x9302,0x9308,0x930D,0x9311,0x9314,0x9315,0x931C,0x931D,0x931E,0x931F,0x9321,0x9324,0x9325,0x9327,0x9329,0x932A,0x9333,0x9334,0x9336,0x9337,0x9347,0x9348,0x9349,0x9350,0x9351,0x9352,0x9355,0x9357,0x9358,0x935A,0x935E,0x9364,0x9365,0x9367,0x9369,0x936A,0x936D,0x936F,0x9370,0x9371,0x9373,0x9374,0x9376},
decode_set3_E5[] = {0x937A,0x937D,0x937F,0x9380,0x9381,0x9382,0x9388,0x938A,0x938B,0x938D,0x938F,0x9392,0x9395,0x9398,0x939B,0x939E,0x93A1,0x93A3,0x93A4,0x93A6,0x93A8,0x93AB,0x93B4,0x93B5,0x93B6,0x93BA,0x93A9,0x93C1,0x93C4,0x93C5,0x93C6,0x93C7,0x93C9,0x93CA,0x93CB,0x93CC,0x93CD,0x93D3,0x93D9,0x93DC,0x93DE,0x93DF,0x93E2,0x93E6,0x93E7,0x93F9,0x93F7,0x93F8,0x93FA,0x93FB,0x93FD,0x9401,0x9402,0x9404,0x9408,0x9409,0x940D,0x940E,0x940F,0x9415,0x9416,0x9417,0x941F,0x942E,0x942F,0x9431,0x9432,0x9433,0x9434,0x943B,0x943F,0x943D,0x9443,0x9445,0x9448,0x944A,0x944C,0x9455,0x9459,0x945C,0x945F,0x9461,0x9463,0x9468,0x946B,0x946D,0x946E,0x946F,0x9471,0x9472,0x9484,0x9483,0x9578,0x9579},
decode_set3_E6[] = {0x957E,0x9584,0x9588,0x958C,0x958D,0x958E,0x959D,0x959E,0x959F,0x95A1,0x95A6,0x95A9,0x95AB,0x95AC,0x95B4,0x95B6,0x95BA,0x95BD,0x95BF,0x95C6,0x95C8,0x95C9,0x95CB,0x95D0,0x95D1,0x95D2,0x95D3,0x95D9,0x95DA,0x95DD,0x95DE,0x95DF,0x95E0,0x95E4,0x95E6,0x961D,0x961E,0x9622,0x9624,0x9625,0x9626,0x962C,0x9631,0x9633,0x9637,0x9638,0x9639,0x963A,0x963C,0x963D,0x9641,0x9652,0x9654,0x9656,0x9657,0x9658,0x9661,0x966E,0x9674,0x967B,0x967C,0x967E,0x967F,0x9681,0x9682,0x9683,0x9684,0x9689,0x9691,0x9696,0x969A,0x969D,0x969F,0x96A4,0x96A5,0x96A6,0x96A9,0x96AE,0x96AF,0x96B3,0x96BA,0x96CA,0x96D2,0x5DB2,0x96D8,0x96DA,0x96DD,0x96DE,0x96DF,0x96E9,0x96EF,0x96F1,0x96FA,0x9702},
decode_set3_E7[] = {0x9703,0x9705,0x9709,0x971A,0x971B,0x971D,0x9721,0x9722,0x9723,0x9728,0x9731,0x9733,0x9741,0x9743,0x974A,0x974E,0x974F,0x9755,0x9757,0x9758,0x975A,0x975B,0x9763,0x9767,0x976A,0x976E,0x9773,0x9776,0x9777,0x9778,0x977B,0x977D,0x977F,0x9780,0x9789,0x9795,0x9796,0x9797,0x9799,0x979A,0x979E,0x979F,0x97A2,0x97AC,0x97AE,0x97B1,0x97B2,0x97B5,0x97B6,0x97B8,0x97B9,0x97BA,0x97BC,0x97BE,0x97BF,0x97C1,0x97C4,0x97C5,0x97C7,0x97C9,0x97CA,0x97CC,0x97CD,0x97CE,0x97D0,0x97D1,0x97D4,0x97D7,0x97D8,0x97D9,0x97DD,0x97DE,0x97E0,0x97DB,0x97E1,0x97E4,0x97EF,0x97F1,0x97F4,0x97F7,0x97F8,0x97FA,0x9807,0x980A,0x9819,0x980D,0x980E,0x9814,0x9816,0x981C,0x981E,0x9820,0x9823,0x9826},
decode_set3_E8[] = {0x982B,0x982E,0x982F,0x9830,0x9832,0x9833,0x9835,0x9825,0x983E,0x9844,0x9847,0x984A,0x9851,0x9852,0x9853,0x9856,0x9857,0x9859,0x985A,0x9862,0x9863,0x9865,0x9866,0x986A,0x986C,0x98AB,0x98AD,0x98AE,0x98B0,0x98B4,0x98B7,0x98B8,0x98BA,0x98BB,0x98BF,0x98C2,0x98C5,0x98C8,0x98CC,0x98E1,0x98E3,0x98E5,0x98E6,0x98E7,0x98EA,0x98F3,0x98F6,0x9902,0x9907,0x9908,0x9911,0x9915,0x9916,0x9917,0x991A,0x991B,0x991C,0x991F,0x9922,0x9926,0x9927,0x992B,0x9931,0x9932,0x9933,0x9934,0x9935,0x9939,0x993A,0x993B,0x993C,0x9940,0x9941,0x9946,0x9947,0x9948,0x994D,0x994E,0x9954,0x9958,0x9959,0x995B,0x995C,0x995E,0x995F,0x9960,0x999B,0x999D,0x999F,0x99A6,0x99B0,0x99B1,0x99B2,0x99B5},
decode_set3_E9[] = {0x99B9,0x99BA,0x99BD,0x99BF,0x99C3,0x99C9,0x99D3,0x99D4,0x99D9,0x99DA,0x99DC,0x99DE,0x99E7,0x99EA,0x99EB,0x99EC,0x99F0,0x99F4,0x99F5,0x99F9,0x99FD,0x99FE,0x9A02,0x9A03,0x9A04,0x9A0B,0x9A0C,0x9A10,0x9A11,0x9A16,0x9A1E,0x9A20,0x9A22,0x9A23,0x9A24,0x9A27,0x9A2D,0x9A2E,0x9A33,0x9A35,0x9A36,0x9A38,0x9A47,0x9A41,0x9A44,0x9A4A,0x9A4B,0x9A4C,0x9A4E,0x9A51,0x9A54,0x9A56,0x9A5D,0x9AAA,0x9AAC,0x9AAE,0x9AAF,0x9AB2,0x9AB4,0x9AB5,0x9AB6,0x9AB9,0x9ABB,0x9ABE,0x9ABF,0x9AC1,0x9AC3,0x9AC6,0x9AC8,0x9ACE,0x9AD0,0x9AD2,0x9AD5,0x9AD6,0x9AD7,0x9ADB,0x9ADC,0x9AE0,0x9AE4,0x9AE5,0x9AE7,0x9AE9,0x9AEC,0x9AF2,0x9AF3,0x9AF5,0x9AF9,0x9AFA,0x9AFD,0x9AFF,0x9B00,0x9B01,0x9B02,0x9B03},
decode_set3_EA[] = {0x9B04,0x9B05,0x9B08,0x9B09,0x9B0B,0x9B0C,0x9B0D,0x9B0E,0x9B10,0x9B12,0x9B16,0x9B19,0x9B1B,0x9B1C,0x9B20,0x9B26,0x9B2B,0x9B2D,0x9B33,0x9B34,0x9B35,0x9B37,0x9B39,0x9B3A,0x9B3D,0x9B48,0x9B4B,0x9B4C,0x9B55,0x9B56,0x9B57,0x9B5B,0x9B5E,0x9B61,0x9B63,0x9B65,0x9B66,0x9B68,0x9B6A,0x9B6B,0x9B6C,0x9B6D,0x9B6E,0x9B73,0x9B75,0x9B77,0x9B78,0x9B79,0x9B7F,0x9B80,0x9B84,0x9B85,0x9B86,0x9B87,0x9B89,0x9B8A,0x9B8B,0x9B8D,0x9B8F,0x9B90,0x9B94,0x9B9A,0x9B9D,0x9B9E,0x9BA6,0x9BA7,0x9BA9,0x9BAC,0x9BB0,0x9BB1,0x9BB2,0x9BB7,0x9BB8,0x9BBB,0x9BBC,0x9BBE,0x9BBF,0x9BC1,0x9BC7,0x9BC8,0x9BCE,0x9BD0,0x9BD7,0x9BD8,0x9BDD,0x9BDF,0x9BE5,0x9BE7,0x9BEA,0x9BEB,0x9BEF,0x9BF3,0x9BF7,0x9BF8},
decode_set3_EB[] = {0x9BF9,0x9BFA,0x9BFD,0x9BFF,0x9C00,0x9C02,0x9C0B,0x9C0F,0x9C11,0x9C16,0x9C18,0x9C19,0x9C1A,0x9C1C,0x9C1E,0x9C22,0x9C23,0x9C26,0x9C27,0x9C28,0x9C29,0x9C2A,0x9C31,0x9C35,0x9C36,0x9C37,0x9C3D,0x9C41,0x9C43,0x9C44,0x9C45,0x9C49,0x9C4A,0x9C4E,0x9C4F,0x9C50,0x9C53,0x9C54,0x9C56,0x9C58,0x9C5B,0x9C5D,0x9C5E,0x9C5F,0x9C63,0x9C69,0x9C6A,0x9C5C,0x9C6B,0x9C68,0x9C6E,0x9C70,0x9C72,0x9C75,0x9C77,0x9C7B,0x9CE6,0x9CF2,0x9CF7,0x9CF9,0x9D0B,0x9D02,0x9D11,0x9D17,0x9D18,0x9D1C,0x9D1D,0x9D1E,0x9D2F,0x9D30,0x9D32,0x9D33,0x9D34,0x9D3A,0x9D3C,0x9D45,0x9D3D,0x9D42,0x9D43,0x9D47,0x9D4A,0x9D53,0x9D54,0x9D5F,0x9D63,0x9D62,0x9D65,0x9D69,0x9D6A,0x9D6B,0x9D70,0x9D76,0x9D77,0x9D7B},
decode_set3_EC[] = {0x9D7C,0x9D7E,0x9D83,0x9D84,0x9D86,0x9D8A,0x9D8D,0x9D8E,0x9D92,0x9D93,0x9D95,0x9D96,0x9D97,0x9D98,0x9DA1,0x9DAA,0x9DAC,0x9DAE,0x9DB1,0x9DB5,0x9DB9,0x9DBC,0x9DBF,0x9DC3,0x9DC7,0x9DC9,0x9DCA,0x9DD4,0x9DD5,0x9DD6,0x9DD7,0x9DDA,0x9DDE,0x9DDF,0x9DE0,0x9DE5,0x9DE7,0x9DE9,0x9DEB,0x9DEE,0x9DF0,0x9DF3,0x9DF4,0x9DFE,0x9E0A,0x9E02,0x9E07,0x9E0E,0x9E10,0x9E11,0x9E12,0x9E15,0x9E16,0x9E19,0x9E1C,0x9E1D,0x9E7A,0x9E7B,0x9E7C,0x9E80,0x9E82,0x9E83,0x9E84,0x9E85,0x9E87,0x9E8E,0x9E8F,0x9E96,0x9E98,0x9E9B,0x9E9E,0x9EA4,0x9EA8,0x9EAC,0x9EAE,0x9EAF,0x9EB0,0x9EB3,0x9EB4,0x9EB5,0x9EC6,0x9EC8,0x9ECB,0x9ED5,0x9EDF,0x9EE4,0x9EE7,0x9EEC,0x9EED,0x9EEE,0x9EF0,0x9EF1,0x9EF2,0x9EF5},
decode_set3_ED[] = {0x9EF8,0x9EFF,0x9F02,0x9F03,0x9F09,0x9F0F,0x9F10,0x9F11,0x9F12,0x9F14,0x9F16,0x9F17,0x9F19,0x9F1A,0x9F1B,0x9F1F,0x9F22,0x9F26,0x9F2A,0x9F2B,0x9F2F,0x9F31,0x9F32,0x9F34,0x9F37,0x9F39,0x9F3A,0x9F3C,0x9F3D,0x9F3F,0x9F41,0x9F43,0x9F44,0x9F45,0x9F46,0x9F47,0x9F53,0x9F55,0x9F56,0x9F57,0x9F58,0x9F5A,0x9F5D,0x9F5E,0x9F68,0x9F69,0x9F6D,0x9F6E,0x9F6F,0x9F70,0x9F71,0x9F73,0x9F75,0x9F7A,0x9F7D,0x9F8F,0x9F90,0x9F91,0x9F92,0x9F94,0x9F96,0x9F97,0x9F9E,0x9FA1,0x9FA2,0x9FA3,0x9FA5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_EE[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_EF[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F0[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F1[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F2[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F3[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F4[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F5[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F6[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F7[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F8[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0,0x0},
decode_set3_F9[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0,0x0},
decode_set3_FA[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0,0x0},
decode_set3_FB[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0,0x0},
decode_set3_FC[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0,0x0},
decode_set3_FD[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD,0x0},
decode_set3_FE[] = {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xFFFD},
*decode_set3[] = {decode_set3_A1,decode_set3_A2,decode_set3_A3,decode_set3_A4,decode_set3_A5,decode_set3_A6,decode_set3_A7,decode_set3_A8,decode_set3_A9,decode_set3_AA,decode_set3_AB,decode_set3_AC,decode_set3_AD,decode_set3_AE,decode_set3_AF,decode_set3_B0,decode_set3_B1,decode_set3_B2,decode_set3_B3,decode_set3_B4,decode_set3_B5,decode_set3_B6,decode_set3_B7,decode_set3_B8,decode_set3_B9,decode_set3_BA,decode_set3_BB,decode_set3_BC,decode_set3_BD,decode_set3_BE,decode_set3_BF,decode_set3_C0,decode_set3_C1,decode_set3_C2,decode_set3_C3,decode_set3_C4,decode_set3_C5,decode_set3_C6,decode_set3_C7,decode_set3_C8,decode_set3_C9,decode_set3_CA,decode_set3_CB,decode_set3_CC,decode_set3_CD,decode_set3_CE,decode_set3_CF,decode_set3_D0,decode_set3_D1,decode_set3_D2,decode_set3_D3,decode_set3_D4,decode_set3_D5,decode_set3_D6,decode_set3_D7,decode_set3_D8,decode_set3_D9,decode_set3_DA,decode_set3_DB,decode_set3_DC,decode_set3_DD,decode_set3_DE,decode_set3_DF,decode_set3_E0,decode_set3_E1,decode_set3_E2,decode_set3_E3,decode_set3_E4,decode_set3_E5,decode_set3_E6,decode_set3_E7,decode_set3_E8,decode_set3_E9,decode_set3_EA,decode_set3_EB,decode_set3_EC,decode_set3_ED,decode_set3_EE,decode_set3_EF,decode_set3_F0,decode_set3_F1,decode_set3_F2,decode_set3_F3,decode_set3_F4,decode_set3_F5,decode_set3_F6,decode_set3_F7,decode_set3_F8,decode_set3_F9,decode_set3_FA,decode_set3_FB,decode_set3_FC,decode_set3_FD,decode_set3_FE,};
/* --- Revision History ---------------------------------------------------
--- Robert Duncan, Aug 11 1997
Changed en00 to leave '~' and '\\' unchanged (previous values were
illegal anyway)
*/
| 885.296758 | 1,690 | 0.798746 |
65055cb608c13b9ada0803b4c98f800c169f7118 | 1,490 | py | Python | data/raw_data/test.py | orion-orion/Cloze_Test | 021e550e4323d17832f992b9cd7000552b568bc8 | [
"MIT"
] | 1 | 2020-02-13T11:13:09.000Z | 2020-02-13T11:13:09.000Z | data/raw_data/test.py | lonelyprince7/cloze_test | 021e550e4323d17832f992b9cd7000552b568bc8 | [
"MIT"
] | 1 | 2020-02-08T06:34:19.000Z | 2020-02-12T13:02:19.000Z | data/raw_data/test.py | lonelyprince7/cloze_test | 021e550e4323d17832f992b9cd7000552b568bc8 | [
"MIT"
] | 1 | 2020-02-13T06:31:17.000Z | 2020-02-13T06:31:17.000Z | '''
Descripttion:
Version: 1.0
Author: ZhangHongYu
Date: 2022-02-05 18:23:00
LastEditors: ZhangHongYu
LastEditTime: 2022-05-17 16:26:12
'''
import os
import sys
import json
import argparse
from transformers import AlbertTokenizer
from pytorch_pretrained_bert import BertTokenizer, BertForMaskedLM
file_path = sys.argv[1]
#bert_model = BertForMaskedLM.from_pretrained('/data/jianghao/ralbert-cloth/model/albert-xxlarge-v2/pytorch_model.bin')
PAD, MASK, CLS, SEP = '[PAD]', '[MASK]', '[CLS]', '[SEP]'
bert_tokenizer = AlbertTokenizer.from_pretrained('albert-xxlarge-v2')
max=-1
cnt=0
tot=0
for file in os.listdir(file_path):
if file.endswith(".json"):
with open(os.path.join(file_path,file),'r') as f:
dict = json.load(f)
sentences=dict['article'].split('.')
str=""
for sentence in sentences:
sentence=sentence.replace('_','[MASK]')
tokens = bert_tokenizer.tokenize(sentence)
if len(tokens) == 0:
continue
if tokens[0] != CLS:
tokens = [CLS] + tokens
if tokens[-1] != SEP:
tokens.append(SEP)
str = ''.join(tokens)
# print(str)
# print('完了')
tot=tot+1
if len(str)>max:
max=len(str)
if len(str)>512:
cnt=cnt+1
#os.system("rm "+os.path.join(file_path,file))
print(cnt/tot)
| 31.041667 | 119 | 0.573826 |
e4fa22f317bb9f4e3d038ad316ade83b307ffa19 | 2,803 | kt | Kotlin | src/main/kotlin/br/com/mateuschacon/keymanager/grpc/recurso/cadastra/pix/server/grpc/CadastroNovaChavePixService.kt | ChaconLima/orange-talents-05-template-pix-keymanager-grpc | 28ad33694716580c60edba0bc386f391f240a5d9 | [
"Apache-2.0"
] | null | null | null | src/main/kotlin/br/com/mateuschacon/keymanager/grpc/recurso/cadastra/pix/server/grpc/CadastroNovaChavePixService.kt | ChaconLima/orange-talents-05-template-pix-keymanager-grpc | 28ad33694716580c60edba0bc386f391f240a5d9 | [
"Apache-2.0"
] | null | null | null | src/main/kotlin/br/com/mateuschacon/keymanager/grpc/recurso/cadastra/pix/server/grpc/CadastroNovaChavePixService.kt | ChaconLima/orange-talents-05-template-pix-keymanager-grpc | 28ad33694716580c60edba0bc386f391f240a5d9 | [
"Apache-2.0"
] | null | null | null | package br.com.mateuschacon.keymanager.grpc.recurso.cadastra.pix.server.grpc
import br.com.mateuschacon.keymanager.grpc.recurso.cadastra.pix.dtos.NovaChavePix
import br.com.mateuschacon.keymanager.grpc.recurso.clientes.ContasDeClientesNoItauClient
import br.com.mateuschacon.keymanager.grpc.recurso.clientes.SistemaPixdoBcbClient
import br.com.mateuschacon.keymanager.grpc.recurso.clientes.dtos.CreatePixKeyResponse
import br.com.mateuschacon.keymanager.grpc.recurso.clientes.dtos.InformacoesDoClienteDto
import br.com.mateuschacon.keymanager.grpc.recurso.exceptions.ExisteChavePixException
import br.com.mateuschacon.keymanager.grpc.recurso.modelos.ChavePix
import br.com.mateuschacon.keymanager.grpc.recurso.repositorios.ChavePixRepository
import io.micronaut.validation.Validated
import org.slf4j.LoggerFactory
import java.util.*
import javax.inject.Inject
import javax.inject.Singleton
import javax.transaction.Transactional
import javax.validation.Valid
@Validated
@Singleton
class CadastroNovaChavePixService(
@Inject val chavePixRepository: ChavePixRepository, //1
@Inject val contasDeClientesNoItauClient: ContasDeClientesNoItauClient, //1
@Inject val sistemaPixdoBcbClient: SistemaPixdoBcbClient //1
) {
private val logger = LoggerFactory.getLogger(this::class.java)
@Transactional
fun cadastro(
@Valid novaChavePix: NovaChavePix
): ChavePix {
if(this.isValid(novaChavePix.valorChave!!)) // 1
throw ExisteChavePixException("Chave Informada Já cadastrada")
this.logger.info("Requisição de Cadastro : ${novaChavePix.hashCode()}")
val informacoesDoCliente: InformacoesDoClienteDto =
this.contasDeClientesNoItauClient
.buscaContaPorTipo(
novaChavePix.identificadorCliente!!,
novaChavePix.tipoConta!!.name
).body() ?: throw IllegalArgumentException("Cliente não Encontrado") //2
val novaChavePixBcbResponse: CreatePixKeyResponse =
this.sistemaPixdoBcbClient.cadastramento(
novaChavePix.paraNovaChavePixBcbRequest(
informacoesDoCliente.paraContaAssociada()
)
).body() ?: throw IllegalArgumentException("Erro ao Cadastrar no Sistema do BCB") //2
val chavePix: ChavePix =
novaChavePix.paraChavePix(
novaChavePixBcbResponse,
informacoesDoCliente.paraContaAssociada()
) // 1
this.logger.info("Cadastro Concluido: ${chavePix.hashCode()}")
return this.chavePixRepository.save(chavePix) // 9
}
fun isValid(valor: String): Boolean{
val optional:Optional<ChavePix> =
this.chavePixRepository.findByValor(valor)
return optional.isPresent
}
} | 41.835821 | 97 | 0.731359 |
a1a345883d88d76b7c8b5cf7ee8d494f774b8b18 | 908 | h | C | qemu/tcg/ppc/tcg-target-con-set.h | hyunjoy/scripts | 01114d3627730d695b5ebe61093c719744432ffa | [
"Apache-2.0"
] | 44 | 2022-03-16T08:32:31.000Z | 2022-03-31T16:02:35.000Z | qemu/tcg/ppc/tcg-target-con-set.h | hyunjoy/scripts | 01114d3627730d695b5ebe61093c719744432ffa | [
"Apache-2.0"
] | 1 | 2022-03-29T02:30:28.000Z | 2022-03-30T03:40:46.000Z | qemu/tcg/ppc/tcg-target-con-set.h | hyunjoy/scripts | 01114d3627730d695b5ebe61093c719744432ffa | [
"Apache-2.0"
] | 18 | 2022-03-19T04:41:04.000Z | 2022-03-31T03:32:12.000Z | /* SPDX-License-Identifier: MIT */
/*
* Define PowerPC target-specific constraint sets.
* Copyright (c) 2021 Linaro
*/
/*
* C_On_Im(...) defines a constraint set with <n> outputs and <m> inputs.
* Each operand should be a sequence of constraint letters as defined by
* tcg-target-con-str.h; the constraint combination is inclusive or.
*/
C_O0_I1(r)
C_O0_I2(r, r)
C_O0_I2(r, ri)
C_O0_I2(S, S)
C_O0_I2(v, r)
C_O0_I3(S, S, S)
C_O0_I4(r, r, ri, ri)
C_O0_I4(S, S, S, S)
C_O1_I1(r, L)
C_O1_I1(r, r)
C_O1_I1(v, r)
C_O1_I1(v, v)
C_O1_I1(v, vr)
C_O1_I2(r, 0, rZ)
C_O1_I2(r, L, L)
C_O1_I2(r, rI, ri)
C_O1_I2(r, rI, rT)
C_O1_I2(r, r, r)
C_O1_I2(r, r, ri)
C_O1_I2(r, r, rI)
C_O1_I2(r, r, rT)
C_O1_I2(r, r, rU)
C_O1_I2(r, r, rZW)
C_O1_I2(v, v, v)
C_O1_I3(v, v, v, v)
C_O1_I4(r, r, ri, rZ, rZ)
C_O1_I4(r, r, r, ri, ri)
C_O2_I1(L, L, L)
C_O2_I2(L, L, L, L)
C_O2_I4(r, r, rI, rZM, r, r)
C_O2_I4(r, r, r, r, rI, rZM)
| 21.116279 | 73 | 0.644273 |
e7390cca060e1663ee08c6a5ef034b6a43d9217b | 2,865 | js | JavaScript | src/views/dashboard/StudentDashboard.js | abdulreh123/sis-backend | 707bdd938cd740e30b007a29b476e617879b8ba4 | [
"MIT"
] | null | null | null | src/views/dashboard/StudentDashboard.js | abdulreh123/sis-backend | 707bdd938cd740e30b007a29b476e617879b8ba4 | [
"MIT"
] | null | null | null | src/views/dashboard/StudentDashboard.js | abdulreh123/sis-backend | 707bdd938cd740e30b007a29b476e617879b8ba4 | [
"MIT"
] | null | null | null | import React, { lazy,useEffect } from 'react'
import {
CCard,
CCardBody,
CCol,
CRow,
} from '@coreui/react'
import { useSelector, useDispatch } from "react-redux";
import Annoucements from './Annoucements'
import {
getTimeTable
} from "../../actions/studentsActions";
import Timetable from 'react-timetable-events'
const WidgetsDropdown = lazy(() => import('../widgets/WidgetsDropdown.js'))
const Dashboard = () => {
const timeTable = useSelector((state) => state.student.timeTable);
const user = useSelector((state) => state.auth.user);
const dispatch = useDispatch()
useEffect(() => {
if(user)
dispatch(getTimeTable(user.Id));
}, [dispatch,user]);
const monday =timeTable[0]?.monday[0]?.map(day=>{
const data={
id: 1,
name: day[0]?.name,
type: "custom",
startTime: new Date(day[0]?.startTime),
endTime: new Date(day[0]?.endTime),
}
return data
})
const tuesday =timeTable[1]?.tuesday[0]?.map(day=>{
const data={
id: 1,
name: day[0]?.name,
type: "custom",
startTime: new Date(day[0]?.startTime),
endTime: new Date(day[0]?.endTime),
}
return data
})
const wednesday =timeTable[2]?.wednesday[0]?.map(day=>{
const data={
id: 1,
name: day[0]?.name,
type: "custom",
startTime: new Date(day[0]?.startTime),
endTime: new Date(day[0]?.endTime),
}
return data
})
const thursday =timeTable[3]?.thursday[0]?.map(day=>{
const data={
id: 1,
name: day[0]?.name,
type: "custom",
startTime: new Date(day[0]?.startTime),
endTime: new Date(day[0]?.endTime),
}
return data
})
const friday =timeTable[4]?.friday[0]?.map(day=>{
const data={
id: 1,
name: day[0]?.name,
type: "custom",
startTime: new Date(day[0]?.startTime),
endTime: new Date(day[0]?.endTime),
}
return data
})
const saturday =timeTable[5]?.saturday[0]?.map(day=>{
const data={
id: 1,
name: day[0]?.name,
type: "custom",
startTime: new Date(day[0]?.startTime),
endTime: new Date(day[0]?.endTime),
}
return data
})
return (
<>
<WidgetsDropdown />
<Annoucements />
<h3 style={{marginTop: '1rem'}}>Your Time Table</h3>
<div style={{marginTop: '1rem'}}>
<Timetable
hoursInterval= {{ from: 9, to: 20 }}
getDayLabel={((day) => day.slice(0,3))}
events={{
monday:monday ,
tuesday: tuesday,
wednesday: wednesday,
thursday: thursday,
friday: friday,
saturday: saturday,
}}
/>
</div>
</>
)
}
export default Dashboard
| 26.045455 | 75 | 0.537522 |
07b6d3264f0621464c6fe4f6d5dbf1355a377d7d | 4,477 | rs | Rust | stdlib/build.rs | grjte/miden | a07da543291e1e6fab77a9d9ab80f7ed42865621 | [
"MIT"
] | null | null | null | stdlib/build.rs | grjte/miden | a07da543291e1e6fab77a9d9ab80f7ed42865621 | [
"MIT"
] | null | null | null | stdlib/build.rs | grjte/miden | a07da543291e1e6fab77a9d9ab80f7ed42865621 | [
"MIT"
] | null | null | null | use std::collections::BTreeMap;
use std::io::Result;
use std::{
fs::{self, File},
io::Write,
path::Path,
};
// CONSTANTS
// ================================================================================================
const ASM_DIR_PATH: &str = "./asm";
const ASM_FILE_PATH: &str = "./src/asm.rs";
// TYPE ALIASES
// ================================================================================================
type ModuleMap = BTreeMap<String, String>;
// PRE-PROCESSING
// ================================================================================================
/// Reads the contents of the `./asm` directory, and writes these contents into a single `.rs`
/// file under `./src/asm.rs`.
///
/// The `asm.rs` file exports a single static array of string tuples. Each tuple consist of module
/// namespace label and the module source code for this label.
#[cfg(not(feature = "docs-rs"))]
fn main() {
let mut modules = BTreeMap::new();
// read the modules from the asm directory
let path = Path::new(ASM_DIR_PATH);
read_modules(path, "std".to_string(), &mut modules)
.expect("failed to read modules from the asm directory");
// write the modules into the asm file
write_asm_rs(modules).expect("failed to write modules into the module file");
}
// HELPER FUNCTIONS
// ================================================================================================
/// Recursively reads Miden assembly modules from the specified path, and inserts the modules
/// to the provided module map.
fn read_modules(fs_path: &Path, ns_path: String, modules: &mut ModuleMap) -> Result<()> {
// iterate over all entries in the directory
for dir in fs_path.read_dir()? {
let path = dir?.path();
if path.is_dir() {
// if the current path is a directory, continue reading it recursively
let dir_name = path
.file_name()
.expect("failed to get directory name from path")
.to_str()
.expect("failed to convert directory name to string");
let ns_path = format!("{}::{}", ns_path, dir_name);
read_modules(path.as_path(), ns_path, modules)?;
} else if path.is_file() {
// if the current path is a file, make sure it is a `.masm` file and read its contents
let extension = path
.extension()
.expect("failed to get file extension from path")
.to_str()
.expect("failed to convert file extension to string");
assert_eq!("masm", extension, "invalid file extension at: {:?}", path);
let source = fs::read_to_string(path.as_path())?;
// get the name of the file without extension
let file_name = path
.with_extension("") // strip te extension
.as_path()
.file_name()
.expect("failed to get file name from path")
.to_str()
.expect("failed to convert file name to string")
.to_string();
// insert the module source into the module map
modules.insert(format!("{}::{}", ns_path, file_name), source);
} else {
panic!("entry not a file or directory");
}
}
Ok(())
}
/// Writes Miden assembly modules into a single `asm.rs` file.
#[rustfmt::skip]
fn write_asm_rs(modules: ModuleMap) -> Result<()> {
// create the module file
let mut asm_file = File::create(ASM_FILE_PATH)?;
// write module header which also opens the array
writeln!(asm_file, "//! This module is automatically generated during build time and should not be modified manually.\n")?;
writeln!(asm_file, "/// An array of modules defined in Miden standard library.")?;
writeln!(asm_file, "///")?;
writeln!(asm_file, "/// Entries in the array are tuples containing module namespace and module source code.")?;
writeln!(asm_file, "#[rustfmt::skip]")?;
writeln!(asm_file, "pub const MODULES: [(&str, &str); {}] = [", modules.len())?;
// write each module into the module file
for (ns, source) in modules {
let separator_suffix = (0..(89 - ns.len())).map(|_| "-").collect::<String>();
writeln!(asm_file, "// ----- {} {}", ns, separator_suffix)?;
writeln!(asm_file, "(\"{}\", \"{}\"),", ns, source)?;
}
// close the array
writeln!(asm_file, "];")
}
| 39.619469 | 127 | 0.543891 |