mimgrating from another repo
11
lib/ann/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
include ../../../../var.mk
|
||||
|
||||
LIB_NAME=ann.$(LIB_EXT)
|
||||
LIB_OBJ=ann.o
|
||||
|
||||
LIB_INC=-I./fann/src/include/
|
||||
FANN_LIB_A=./fann/build/src/libdoublefann.a
|
||||
|
||||
LIB_CONF = $(FANN_LIB_A) $(FANN_INC)
|
||||
|
||||
include ../../lib.mk
|
266
lib/ann/ann.c
Normal file
@ -0,0 +1,266 @@
|
||||
/*
|
||||
This file is part of fann.
|
||||
|
||||
fann is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
fann is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with fann. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Copyright (C) 2009 - 2013 Lucas Hermann Negri
|
||||
*/
|
||||
|
||||
#include "lfann.h"
|
||||
#include "net.c"
|
||||
#include "data.c"
|
||||
#include "extension.c"
|
||||
|
||||
/* Interface */
|
||||
|
||||
static void priv_register(lua_State* L, const char* name, const char* mt,
|
||||
const luaL_reg* methods, lua_CFunction gc, lua_CFunction tostring)
|
||||
{
|
||||
/* Register the methods */
|
||||
luaL_register(L, name, methods);
|
||||
|
||||
/* Register the metatable */
|
||||
luaL_newmetatable(L, mt);
|
||||
|
||||
/* __index */
|
||||
lua_pushliteral(L, "__index");
|
||||
lua_pushvalue(L, -3);
|
||||
lua_rawset(L, -3);
|
||||
|
||||
/* __gc */
|
||||
lua_pushliteral(L, "__gc");
|
||||
lua_pushcfunction(L, gc);
|
||||
lua_rawset(L, -3);
|
||||
|
||||
/* __tostring */
|
||||
lua_pushliteral(L, "__tostring");
|
||||
lua_pushcfunction(L, tostring);
|
||||
lua_rawset(L, -3);
|
||||
}
|
||||
|
||||
static const struct luaL_reg ann [] =
|
||||
{
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
||||
static const struct luaL_reg data [] =
|
||||
{
|
||||
{"read_from_file", lfann_data_read_from_file},
|
||||
{"create_from_callback", lfann_data_create_from_callback},
|
||||
{"save", lfann_data_save},
|
||||
{"save_to_fixed", lfann_data_save_to_fixed},
|
||||
{"shuffle", lfann_data_shuffle},
|
||||
{"scale", lfann_data_scale},
|
||||
{"scale_input", lfann_data_scale_input},
|
||||
{"scale_output", lfann_data_scale_output},
|
||||
{"merge", lfann_data_merge},
|
||||
{"duplicate", lfann_data_duplicate},
|
||||
{"subset", lfann_data_subset},
|
||||
{"length", lfann_data_length},
|
||||
{"num_input", lfann_data_num_input},
|
||||
{"num_output", lfann_data_num_output},
|
||||
{"get_row", lfann_data_get_row},
|
||||
{"get_bounds", lfann_data_get_bounds},
|
||||
{"get_bounds_input", lfann_data_get_bounds_input},
|
||||
{"get_bounds_output", lfann_data_get_bounds_output},
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
||||
static const struct luaL_reg net [] =
|
||||
{
|
||||
{"copy", lfann_net_copy},
|
||||
{"create_standard", lfann_net_create_standard},
|
||||
{"create_sparse", lfann_net_create_sparse},
|
||||
{"create_shortcut", lfann_net_create_shortcut},
|
||||
{"create_from_file", lfann_net_create_from_file},
|
||||
{"print_connections", lfann_net_print_connections},
|
||||
{"train_on_file", lfann_net_train_on_file},
|
||||
{"train_on_data", lfann_net_train_on_data},
|
||||
{"train_epoch", lfann_net_train_epoch},
|
||||
{"save", lfann_net_save},
|
||||
{"save_to_fixed", lfann_net_save_to_fixed},
|
||||
{"run", lfann_net_run},
|
||||
{"init_weights", lfann_net_init_weights},
|
||||
{"randomize_weights", lfann_net_randomize_weights},
|
||||
{"print_parameters", lfann_net_print_parameters},
|
||||
{"set_weight", lfann_net_set_weight},
|
||||
{"get_MSE", lfann_net_get_MSE},
|
||||
{"get_training_algorithm", lfann_net_get_training_algorithm},
|
||||
{"set_training_algorithm", lfann_net_set_training_algorithm},
|
||||
{"reset_MSE", lfann_net_reset_MSE},
|
||||
{"get_bit_fail", lfann_net_get_bit_fail},
|
||||
{"set_callback", lfann_net_set_callback},
|
||||
{"test_data", lfann_net_test_data},
|
||||
{"get_network_type", lfann_net_get_network_type},
|
||||
{"set_learning_rate", lfann_net_set_learning_rate},
|
||||
{"get_learning_rate", lfann_net_get_learning_rate},
|
||||
{"set_learning_momentum", lfann_net_set_learning_momentum},
|
||||
{"get_learning_momentum", lfann_net_get_learning_momentum},
|
||||
{"set_activation_function", lfann_net_set_activation_function},
|
||||
{"get_activation_function", lfann_net_get_activation_function},
|
||||
{"set_activation_function_hidden", lfann_net_set_activation_function_hidden},
|
||||
{"set_activation_function_layer", lfann_net_set_activation_function_layer},
|
||||
{"set_activation_function_output", lfann_net_set_activation_function_output},
|
||||
{"set_activation_steepness", lfann_net_set_activation_steepness},
|
||||
{"get_activation_steepness", lfann_net_get_activation_steepness},
|
||||
{"set_activation_steepness_hidden", lfann_net_set_activation_steepness_hidden},
|
||||
{"set_activation_steepness_layer", lfann_net_set_activation_steepness_layer},
|
||||
{"set_activation_steepness_output", lfann_net_set_activation_steepness_output},
|
||||
{"set_train_error_function", lfann_net_set_train_error_function},
|
||||
{"get_train_error_function", lfann_net_get_train_error_function},
|
||||
{"set_train_stop_function", lfann_net_set_train_stop_function},
|
||||
{"get_train_stop_function", lfann_net_get_train_stop_function},
|
||||
{"set_bit_fail_limit", lfann_net_set_bit_fail_limit},
|
||||
{"get_bit_fail_limit", lfann_net_get_bit_fail_limit},
|
||||
{"set_quickprop_decay", lfann_net_set_quickprop_decay},
|
||||
{"get_quickprop_decay", lfann_net_get_quickprop_decay},
|
||||
{"set_quickprop_mu", lfann_net_set_quickprop_mu},
|
||||
{"get_quickprop_mu", lfann_net_get_quickprop_mu},
|
||||
{"set_rprop_increase_factor", lfann_net_set_rprop_increase_factor},
|
||||
{"get_rprop_increase_factor", lfann_net_get_rprop_increase_factor},
|
||||
{"set_rprop_decrease_factor", lfann_net_set_rprop_decrease_factor},
|
||||
{"get_rprop_decrease_factor", lfann_net_get_rprop_decrease_factor},
|
||||
{"get_rprop_delta_min", lfann_net_get_rprop_delta_min},
|
||||
{"set_rprop_delta_min", lfann_net_set_rprop_delta_min},
|
||||
{"get_rprop_delta_max", lfann_net_get_rprop_delta_max},
|
||||
{"set_rprop_delta_max", lfann_net_set_rprop_delta_max},
|
||||
{"set_rprop_delta_zero", lfann_net_set_rprop_delta_zero},
|
||||
{"get_rprop_delta_zero", lfann_net_get_rprop_delta_zero},
|
||||
{"get_num_input", lfann_net_get_num_input},
|
||||
{"get_num_output", lfann_net_get_num_output},
|
||||
{"get_total_neurons", lfann_net_get_total_neurons},
|
||||
{"get_total_connections", lfann_net_get_total_connections},
|
||||
{"get_connection_rate", lfann_net_get_connection_rate},
|
||||
{"get_num_layers", lfann_net_get_num_layers},
|
||||
{"get_layer_array", lfann_net_get_layer_array},
|
||||
{"get_bias_array", lfann_net_get_bias_array},
|
||||
{"get_connection_array", lfann_net_get_connection_array},
|
||||
{"cascade_train_on_data", lfann_net_cascade_train_on_data},
|
||||
{"cascade_train_on_file", lfann_net_cascade_train_on_file},
|
||||
{"set_cascade_output_change_fraction", lfann_net_set_cascade_output_change_fraction},
|
||||
{"get_cascade_output_change_fraction", lfann_net_get_cascade_output_change_fraction},
|
||||
{"set_cascade_output_stagnation_epochs", lfann_net_set_cascade_output_stagnation_epochs},
|
||||
{"get_cascade_output_stagnation_epochs", lfann_net_get_cascade_output_stagnation_epochs},
|
||||
{"set_cascade_candidate_change_fraction", lfann_net_set_cascade_candidate_change_fraction},
|
||||
{"get_cascade_candidate_change_fraction", lfann_net_get_cascade_candidate_change_fraction},
|
||||
{"set_cascade_candidate_stagnation_epochs", lfann_net_set_cascade_candidate_stagnation_epochs},
|
||||
{"get_cascade_candidate_stagnation_epochs", lfann_net_get_cascade_candidate_stagnation_epochs},
|
||||
{"set_cascade_weight_multiplier", lfann_net_set_cascade_weight_multiplier},
|
||||
{"get_cascade_weight_multiplier", lfann_net_get_cascade_weight_multiplier},
|
||||
{"set_cascade_candidate_limit", lfann_net_set_cascade_candidate_limit},
|
||||
{"get_cascade_candidate_limit", lfann_net_get_cascade_candidate_limit},
|
||||
{"get_cascade_max_cand_epochs", lfann_net_get_cascade_max_cand_epochs},
|
||||
{"set_cascade_max_cand_epochs", lfann_net_set_cascade_max_cand_epochs},
|
||||
{"get_cascade_max_out_epochs", lfann_net_get_cascade_max_out_epochs},
|
||||
{"set_cascade_max_out_epochs", lfann_net_set_cascade_max_out_epochs},
|
||||
{"get_cascade_num_candidates", lfann_net_get_cascade_num_candidates},
|
||||
{"get_cascade_activation_functions_count", lfann_net_get_cascade_activation_functions_count},
|
||||
{"get_cascade_activation_functions", lfann_net_get_cascade_activation_functions},
|
||||
{"set_cascade_activation_functions", lfann_net_set_cascade_activation_functions},
|
||||
{"get_cascade_activation_steepnesses_count", lfann_net_get_cascade_activation_steepnesses_count},
|
||||
{"get_cascade_activation_steepnesses", lfann_net_get_cascade_activation_steepnesses},
|
||||
{"set_cascade_activation_steepnesses", lfann_net_set_cascade_activation_steepnesses},
|
||||
{"get_cascade_activation_steepnesses_count", lfann_net_get_cascade_activation_steepnesses_count},
|
||||
{"set_cascade_num_candidate_groups", lfann_net_set_cascade_num_candidate_groups},
|
||||
{"get_cascade_num_candidate_groups", lfann_net_get_cascade_num_candidate_groups},
|
||||
{"get_cascade_min_out_epochs", lfann_net_get_cascade_min_out_epochs},
|
||||
{"set_cascade_min_out_epochs", lfann_net_set_cascade_min_out_epochs},
|
||||
{"get_cascade_min_cand_epochs", lfann_net_get_cascade_min_cand_epochs},
|
||||
{"set_cascade_min_cand_epochs", lfann_net_set_cascade_min_cand_epochs},
|
||||
{"get_sarprop_weight_decay_shift", lfann_net_get_sarprop_weight_decay_shift},
|
||||
{"set_sarprop_weight_decay_shift", lfann_net_set_sarprop_weight_decay_shift},
|
||||
{"get_sarprop_step_error_threshold_factor", lfann_net_get_sarprop_step_error_threshold_factor},
|
||||
{"set_sarprop_step_error_threshold_factor", lfann_net_set_sarprop_step_error_threshold_factor},
|
||||
{"get_sarprop_step_error_shift", lfann_net_get_sarprop_step_error_shift},
|
||||
{"set_sarprop_step_error_shift", lfann_net_set_sarprop_step_error_shift},
|
||||
{"get_sarprop_temperature", lfann_net_get_sarprop_temperature},
|
||||
{"set_sarprop_temperature", lfann_net_set_sarprop_temperature},
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
||||
#ifdef _MSC_VER
|
||||
__declspec(dllexport)
|
||||
#endif
|
||||
int luaopen_lfann(lua_State *L)
|
||||
{
|
||||
int top;
|
||||
|
||||
fann_set_error_log(&err_handler, NULL);
|
||||
|
||||
luaL_register(L, "fann", ann);
|
||||
top = lua_gettop(L);
|
||||
priv_register(L, "fann.Net", "lfannNeT", net, lfann_net_gc, lfann_net_tostring);
|
||||
priv_register(L, "fann.Data", "lfannDaTa", data, lfann_data_gc, lfann_data_tostring);
|
||||
lua_settop(L, top);
|
||||
|
||||
/* activation_functipn_enum */
|
||||
lua_pushliteral(L, "LINEAR"); lua_pushnumber(L, FANN_LINEAR); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "THRESHOLD"); lua_pushnumber(L, FANN_THRESHOLD); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "THRESHOLD_SYMMETRIC"); lua_pushnumber(L, FANN_THRESHOLD_SYMMETRIC); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "SIGMOID"); lua_pushnumber(L, FANN_SIGMOID); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "SIGMOID_STEPWISE"); lua_pushnumber(L, FANN_SIGMOID_STEPWISE); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "SIGMOID_SYMMETRIC"); lua_pushnumber(L, FANN_SIGMOID_SYMMETRIC); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "GAUSSIAN"); lua_pushnumber(L, FANN_GAUSSIAN); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "GAUSSIAN_SYMMETRIC"); lua_pushnumber(L, FANN_GAUSSIAN_SYMMETRIC); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "ELLIOT"); lua_pushnumber(L, FANN_ELLIOT); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "ELLIOT_SYMMETRIC"); lua_pushnumber(L, FANN_ELLIOT_SYMMETRIC); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "LINEAR_PIECE"); lua_pushnumber(L, FANN_LINEAR_PIECE); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "LINEAR_PIECE_SYMMETRIC"); lua_pushnumber(L, FANN_LINEAR_PIECE_SYMMETRIC); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "SIN"); lua_pushnumber(L, FANN_SIN); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "SIN_SYMMETRIC"); lua_pushnumber(L, FANN_SIN_SYMMETRIC); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "COS"); lua_pushnumber(L, FANN_COS); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "COS_SYMMETRIC"); lua_pushnumber(L, FANN_COS_SYMMETRIC); lua_rawset(L, -3);
|
||||
|
||||
/* training_algorithm_enum */
|
||||
lua_pushliteral(L, "TRAIN_INCREMENTAL"); lua_pushnumber(L, FANN_TRAIN_INCREMENTAL); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "TRAIN_BATCH"); lua_pushnumber(L, FANN_TRAIN_BATCH); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "TRAIN_RPROP"); lua_pushnumber(L, FANN_TRAIN_RPROP); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "TRAIN_QUICKPROP"); lua_pushnumber(L, FANN_TRAIN_QUICKPROP); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "TRAIN_SARPROP"); lua_pushnumber(L, FANN_TRAIN_SARPROP); lua_rawset(L, -3);
|
||||
|
||||
/* error_function_enum */
|
||||
lua_pushliteral(L, "ERRORFUNC_LINEAR"); lua_pushnumber(L, FANN_ERRORFUNC_LINEAR); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "ERRORFUNC_TANH"); lua_pushnumber(L, FANN_ERRORFUNC_TANH); lua_rawset(L, -3);
|
||||
|
||||
/* stop_function_enum */
|
||||
lua_pushliteral(L, "STOPFUNC_MSE"); lua_pushnumber(L, FANN_STOPFUNC_MSE); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "STOPFUNC_BIT"); lua_pushnumber(L, FANN_STOPFUNC_BIT); lua_rawset(L, -3);
|
||||
|
||||
/* network_type_enum */
|
||||
lua_pushliteral(L, "NETTYPE_LAYER"); lua_pushnumber(L, FANN_NETTYPE_LAYER); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "NETTYPE_SHORTCUT"); lua_pushnumber(L, FANN_NETTYPE_SHORTCUT); lua_rawset(L, -3);
|
||||
|
||||
/* lfann_errno_enum */
|
||||
lua_pushliteral(L, "E_NO_ERROR"); lua_pushnumber(L, FANN_E_NO_ERROR); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_OPEN_CONFIG_R"); lua_pushnumber(L, FANN_E_CANT_OPEN_CONFIG_R); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_OPEN_CONFIG_W"); lua_pushnumber(L, FANN_E_CANT_OPEN_CONFIG_W); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_WRONG_CONFIG_VERSION"); lua_pushnumber(L, FANN_E_WRONG_CONFIG_VERSION); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_READ_CONFIG"); lua_pushnumber(L, FANN_E_CANT_READ_CONFIG); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_READ_NEURON"); lua_pushnumber(L, FANN_E_CANT_READ_NEURON); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_READ_CONNECTIONS"); lua_pushnumber(L, FANN_E_CANT_READ_CONNECTIONS); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_WRONG_NUM_CONNECTIONS"); lua_pushnumber(L, FANN_E_WRONG_NUM_CONNECTIONS); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_OPEN_TD_W"); lua_pushnumber(L, FANN_E_CANT_OPEN_TD_W); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_OPEN_TD_R"); lua_pushnumber(L, FANN_E_CANT_OPEN_TD_R); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_READ_TD"); lua_pushnumber(L, FANN_E_CANT_READ_TD); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_ALLOCATE_MEM"); lua_pushnumber(L, FANN_E_CANT_ALLOCATE_MEM); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_TRAIN_ACTIVATION"); lua_pushnumber(L, FANN_E_CANT_TRAIN_ACTIVATION); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_USE_ACTIVATION"); lua_pushnumber(L, FANN_E_CANT_USE_ACTIVATION); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_TRAIN_DATA_MISMATCH"); lua_pushnumber(L, FANN_E_TRAIN_DATA_MISMATCH); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_CANT_USE_TRAIN_ALG"); lua_pushnumber(L, FANN_E_CANT_USE_TRAIN_ALG); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_TRAIN_DATA_SUBSET"); lua_pushnumber(L, FANN_E_TRAIN_DATA_SUBSET); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_INDEX_OUT_OF_BOUND"); lua_pushnumber(L, FANN_E_INDEX_OUT_OF_BOUND); lua_rawset(L, -3);
|
||||
lua_pushliteral(L, "E_SCALE_NOT_PRESENT"); lua_pushnumber(L, FANN_E_SCALE_NOT_PRESENT); lua_rawset(L, -3);
|
||||
|
||||
return 1;
|
||||
}
|
255
lib/ann/data.c
Normal file
@ -0,0 +1,255 @@
|
||||
/*
|
||||
This file is part of lfann.
|
||||
|
||||
lfann is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
lfann is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with lfann. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Copyright (C) 2009 - 2013 Lucas Hermann Negri
|
||||
*/
|
||||
static void priv_push_data(lua_State* L, struct fann_train_data* ptr)
|
||||
{
|
||||
if(ptr)
|
||||
{
|
||||
Object* obj = lua_newuserdata(L, sizeof(Object));
|
||||
obj->pointer = ptr;
|
||||
|
||||
luaL_getmetatable(L, "lfannDaTa");
|
||||
lua_setmetatable(L, -2);
|
||||
}
|
||||
else
|
||||
lua_pushnil(L);
|
||||
}
|
||||
|
||||
static int lfann_data_read_from_file(lua_State* L)
|
||||
{
|
||||
struct fann_train_data* ptr;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TSTRING);
|
||||
ptr = fann_read_train_from_file(lua_tostring(L, 1));
|
||||
priv_push_data(L, ptr);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_merge(lua_State* L)
|
||||
{
|
||||
Object* obj1;
|
||||
Object* obj2;
|
||||
struct fann_train_data* ptr;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TUSERDATA);
|
||||
|
||||
obj1 = lua_touserdata(L, 1);
|
||||
obj2 = lua_touserdata(L, 2);
|
||||
|
||||
ptr = fann_merge_train_data(obj1->pointer, obj2->pointer);
|
||||
priv_push_data(L, ptr);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_duplicate(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* ptr;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
ptr = fann_duplicate_train_data(obj->pointer);
|
||||
priv_push_data(L, ptr);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_subset(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* ptr;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
ptr = fann_subset_train_data(obj->pointer,
|
||||
lua_tointeger(L, 2), lua_tointeger(L, 3));
|
||||
priv_push_data(L, ptr);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_tostring(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
char name[41];
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
#ifndef _MSC_VER
|
||||
snprintf(name, 40, "Training Data: %p", obj->pointer);
|
||||
#else
|
||||
_snprintf(name, 40, "Training Data: %p", obj->pointer);
|
||||
#endif
|
||||
lua_pushstring(L, name);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_gc(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
|
||||
#ifdef IDEBUG
|
||||
fprintf(stderr, "Garbage collecting a Training Data\n");
|
||||
#endif
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
fann_destroy_train(obj->pointer);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_shuffle(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
fann_shuffle_train_data(obj->pointer);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_save(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
int res;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TSTRING);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
res = fann_save_train(obj->pointer, lua_tostring(L, 2));
|
||||
lua_pushinteger(L, res);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_save_to_fixed(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
int res;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TSTRING);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
res = fann_save_train_to_fixed(obj->pointer, lua_tostring(L, 2),
|
||||
lua_tointeger(L, 3));
|
||||
lua_pushinteger(L, res);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_length(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
int res;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
res = fann_length_train_data(obj->pointer);
|
||||
lua_pushinteger(L, res);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_num_input(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
int res;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
res = fann_num_input_train_data(obj->pointer);
|
||||
lua_pushinteger(L, res);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_num_output(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
int res;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
res = fann_num_output_train_data(obj->pointer);
|
||||
lua_pushinteger(L, res);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
There's a bug in FANN 2.1beta that makes this unusable. lfann reimplements
|
||||
the scaling functions in the file extension.c .
|
||||
static int lfann_data_scale(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
fann_scale_train_data(obj->pointer, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_scale_input(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
fann_scale_input_train_data(obj->pointer, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_scale_output(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
fann_scale_output_train_data(obj->pointer, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
return 0;
|
||||
} */
|
14
lib/ann/examples/cascade/test.lua
Executable file
@ -0,0 +1,14 @@
|
||||
#! /usr/bin/env lua
|
||||
|
||||
require("lfann")
|
||||
|
||||
-- Load the network from a file
|
||||
local net = fann.Net.create_from_file("xor.net")
|
||||
|
||||
-- Test using command line args
|
||||
local input = {arg[1] and tonumber(arg[1]) or 1, arg[1] and tonumber(arg[2]) or 0}
|
||||
local output = net:run(input)
|
||||
|
||||
for i, j in ipairs(output) do
|
||||
print(j)
|
||||
end
|
9
lib/ann/examples/cascade/train.data
Normal file
@ -0,0 +1,9 @@
|
||||
4 2 1
|
||||
1 1
|
||||
0
|
||||
1 0
|
||||
1
|
||||
0 1
|
||||
1
|
||||
0 0
|
||||
0
|
13
lib/ann/examples/cascade/train.lua
Executable file
@ -0,0 +1,13 @@
|
||||
#! /usr/bin/env lua
|
||||
|
||||
require("lfann")
|
||||
|
||||
-- Create a shortcut neural network to serve as base to the cascade training
|
||||
local net = fann.Net.create_shortcut{2, 1}
|
||||
|
||||
-- Train the net from a file
|
||||
net:set_train_stop_function(fann.STOPFUNC_MSE)
|
||||
net:cascade_train_on_file("train.data", 10, 1, 0.0001)
|
||||
|
||||
-- Save the net to a file for a latter execution
|
||||
net:save("xor.net");
|
86
lib/ann/examples/rpg/test.lua
Executable file
@ -0,0 +1,86 @@
|
||||
#! /usr/bin/env lua
|
||||
|
||||
require("lfann")
|
||||
|
||||
local classes = {
|
||||
"Fighter", "Paladin", "Druid", "Cleric", "Monk",
|
||||
"Thief", "Sorceress", "Mage", "Bard"
|
||||
}
|
||||
|
||||
-- Load the network from a file
|
||||
local net = fann.Net.create_from_file("rpg.net")
|
||||
math.randomseed(os.time())
|
||||
|
||||
while true do
|
||||
print("Enter the character attributes or: -1 to exit, -2 to generate:")
|
||||
|
||||
local input = {}
|
||||
local aux = io.read("*n")
|
||||
|
||||
if not aux or aux == -1 then
|
||||
-- Quit
|
||||
break
|
||||
elseif aux == -2 then
|
||||
-- Random
|
||||
|
||||
for i = 1, 6 do
|
||||
local d = {}
|
||||
for i = 1, 4 do table.insert(d, math.random(1, 6)) end
|
||||
table.sort(d)
|
||||
table.insert(input, d[2] + d[3] + d[4])
|
||||
end
|
||||
|
||||
print("Generated attributes:")
|
||||
print(table.concat(input, " "))
|
||||
else
|
||||
-- Read the attributes from stdin
|
||||
table.insert(input, aux)
|
||||
|
||||
for i = 2, 6 do
|
||||
aux = io.read("*n")
|
||||
table.insert(input, aux)
|
||||
end
|
||||
end
|
||||
|
||||
-- Get the result and calculate suggest the character class
|
||||
local output = net:run(input)
|
||||
local maxClass, maxValue = -1, -1
|
||||
|
||||
-- Get the max value
|
||||
for class, value in ipairs(output) do
|
||||
if value > maxValue then
|
||||
maxClass = class
|
||||
maxValue = value
|
||||
end
|
||||
end
|
||||
|
||||
-- Only check if there's a class with at least 0.4 fitting
|
||||
if maxValue < 0.4 then
|
||||
print("-> The attributes are too low to suggest a class")
|
||||
else
|
||||
-- Calculate the diff using the maxValue
|
||||
local diff = maxValue / 6
|
||||
diff = math.max(diff, 0.1)
|
||||
|
||||
-- Get the suggestions
|
||||
local suggestions = {}
|
||||
|
||||
for class, value in ipairs(output) do
|
||||
if value > maxValue - diff then
|
||||
table.insert(suggestions, {["class"] = class, ["value"] = value})
|
||||
end
|
||||
end
|
||||
|
||||
-- Sort the suggestions according to the fitness
|
||||
table.sort(suggestions, function(a, b) return a.value > b.value end)
|
||||
|
||||
-- Inform the user about the suggestions
|
||||
print("\nClass suggestions:")
|
||||
|
||||
for i, tbl in ipairs(suggestions) do
|
||||
print(string.format("-> %s (%d%%)", classes[tbl.class], tbl.value * 100))
|
||||
end
|
||||
end
|
||||
|
||||
print()
|
||||
end
|
53
lib/ann/examples/rpg/train.data
Normal file
@ -0,0 +1,53 @@
|
||||
26 6 9
|
||||
18 13 15 10 9 10
|
||||
1.0 0.3 0.0 0.0 0.1 0.4 0.0 0.0 0.0
|
||||
15 10 14 10 14 14
|
||||
0.6 1.0 0.6 0.5 0.4 0.0 0.4 0.0 0.3
|
||||
10 12 10 14 16 12
|
||||
0.1 0.4 1.0 0.6 0.2 0.1 0.1 0.4 0.1
|
||||
14 8 12 10 16 12
|
||||
0.4 0.8 0.6 1.0 0.3 0.0 0.1 0.0 0.1
|
||||
14 14 14 10 16 10
|
||||
0.7 0.8 0.9 0.9 1.0 0.2 0.0 0.0 0.0
|
||||
10 18 11 14 10 12
|
||||
0.2 0.1 0.0 0.0 0.1 1.0 0.1 0.3 0.2
|
||||
10 12 14 12 10 17
|
||||
0.1 0.1 0.0 0.0 0.1 0.2 0.9 0.1 0.6
|
||||
12 14 12 12 10 18
|
||||
0.1 0.1 0.0 0.0 0.1 0.2 1.0 0.1 0.9
|
||||
8 11 16 18 10 10
|
||||
0.1 0.1 0.0 0.0 0.2 0.2 0.0 1.0 0.0
|
||||
18 10 16 10 10 10
|
||||
1.0 0.1 0.0 0.0 0.2 0.0 0.0 0.0 0.0
|
||||
16 14 14 10 18 10
|
||||
0.7 0.8 0.6 1.0 0.9 0.6 0.0 0.0 0.0
|
||||
10 12 14 16 10 10
|
||||
0.1 0.1 0.0 0.0 0.1 0.2 0.0 1.0 0.0
|
||||
10 12 14 20 10 10
|
||||
0.1 0.1 0.0 0.0 0.1 0.2 0.0 1.0 0.0
|
||||
12 12 14 12 16 10
|
||||
0.2 0.5 1.0 0.7 0.2 0.2 0.0 0.1 0.0
|
||||
3 3 3 3 3 3
|
||||
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
|
||||
18 18 18 18 18 18
|
||||
1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0
|
||||
14 10 9 9 11 15
|
||||
0.2 0.0 0.0 0.0 0.1 0.0 0.7 0.0 0.2
|
||||
13 15 14 14 14 16
|
||||
0.2 0.4 0.3 0.4 0.2 0.5 0.7 0.3 1.0
|
||||
12 16 12 10 16 11
|
||||
0.2 0.3 0.5 0.4 0.4 0.5 0.0 0.0 0.0
|
||||
15 17 12 12 12 13
|
||||
1.0 0.3 0.2 0.1 0.3 0.5 0.1 0.2 0.1
|
||||
16 12 14 10 16 15
|
||||
0.7 1.0 0.8 0.9 0.8 0.1 0.3 0.0 0.2
|
||||
10 16 14 18 10 14
|
||||
0.0 0.0 0.0 0.0 0.1 0.8 0.2 1.0 0.3
|
||||
12 12 12 12 12 12
|
||||
0.2 0.1 0.2 0.2 0.1 0.2 0.1 0.1 0.2
|
||||
14 14 14 14 13 14
|
||||
0.4 0.5 0.5 0.5 0.4 0.4 0.1 0.2 0.6
|
||||
8 8 8 18 18 18
|
||||
0.0 0.0 0.1 0.1 0.0 0.0 1.0 1.0 1.0
|
||||
18 18 18 8 8 8
|
||||
1.0 0.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0
|
24
lib/ann/examples/rpg/train.lua
Executable file
@ -0,0 +1,24 @@
|
||||
#! /usr/bin/env lua
|
||||
|
||||
--[[
|
||||
This example classifies a RPG character in classes, according to its
|
||||
attributes (strength, dexterity, constitution, intelligence, wisdom and
|
||||
charisma).
|
||||
--]]
|
||||
|
||||
require("lfann")
|
||||
|
||||
local net = fann.Net.create_standard{6, 18, 18, 9}
|
||||
|
||||
-- Configure the activation function
|
||||
net:set_activation_function_hidden(fann.SIGMOID_SYMMETRIC)
|
||||
net:set_activation_function_output(fann.SIGMOID_SYMMETRIC)
|
||||
|
||||
-- Configure other parameters
|
||||
net:set_training_algorithm(fann.TRAIN_RPROP)
|
||||
|
||||
-- Train the net from a file
|
||||
net:train_on_file("train.data", 100000, 50, 0.001)
|
||||
|
||||
-- Save the net to a file for a latter execution
|
||||
net:save("rpg.net");
|
41
lib/ann/examples/xor/test.lua
Executable file
@ -0,0 +1,41 @@
|
||||
#! /usr/bin/env lua
|
||||
|
||||
-- load the library
|
||||
require("lfann")
|
||||
|
||||
-- load the network from the exported file
|
||||
local net = fann.Net.create_from_file("xor.net")
|
||||
|
||||
local n_input, n_output = 2, 1
|
||||
local input, output = {}
|
||||
local write, sf = io.write, string.format
|
||||
|
||||
-- test using the stdio (enter q to quit)
|
||||
while true do
|
||||
local cont = true
|
||||
|
||||
-- input
|
||||
for i = 1, n_input do
|
||||
local aux = io.read("*n")
|
||||
|
||||
if not aux then
|
||||
cont = false
|
||||
break
|
||||
end
|
||||
|
||||
input[i] = aux
|
||||
end
|
||||
|
||||
if not cont then break end
|
||||
|
||||
-- run the network
|
||||
output = net:run(input)
|
||||
|
||||
-- output
|
||||
for i = 1, n_output do
|
||||
if i > 1 then write(" ") end
|
||||
write( sf("%.6f", output[i]) )
|
||||
end
|
||||
|
||||
write("\n")
|
||||
end
|
9
lib/ann/examples/xor/train.data
Normal file
@ -0,0 +1,9 @@
|
||||
4 2 1
|
||||
1 1
|
||||
-1
|
||||
1 -1
|
||||
1
|
||||
-1 1
|
||||
1
|
||||
-1 -1
|
||||
-1
|
17
lib/ann/examples/xor/train.lua
Executable file
@ -0,0 +1,17 @@
|
||||
#! /usr/bin/env lua
|
||||
|
||||
require("lfann")
|
||||
|
||||
-- Create a Neural Network with tree layers, with 2, 3 and 1 neurons, plus one
|
||||
-- bias neuron per layer
|
||||
local net = fann.Net.create_standard{2, 3, 1}
|
||||
|
||||
-- Configure the activation function
|
||||
net:set_activation_function_hidden(fann.GAUSSIAN_SYMMETRIC)
|
||||
net:set_activation_function_output(fann.GAUSSIAN_SYMMETRIC)
|
||||
|
||||
-- Train the net from a file
|
||||
net:train_on_file("train.data", 1000, 10, 0.0001)
|
||||
|
||||
-- Save the net to a file for a latter execution
|
||||
net:save("xor.net");
|
309
lib/ann/extension.c
Normal file
@ -0,0 +1,309 @@
|
||||
/*
|
||||
This file is part of lfann.
|
||||
|
||||
lfann is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
lfann is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with lfann. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Copyright (C) 2009 - 2013 Lucas Hermann Negri
|
||||
*/
|
||||
|
||||
static int lfann_data_create_from_callback(lua_State* L)
|
||||
{
|
||||
unsigned int num_data, num_input, num_output;
|
||||
unsigned int i, j;
|
||||
struct fann_train_data* data;
|
||||
int top, n_params;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TNUMBER);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
luaL_checktype(L, 4, LUA_TFUNCTION);
|
||||
|
||||
// Userdata?
|
||||
top = lua_gettop(L);
|
||||
if(top == 4) {lua_pushnil(L); ++top;}
|
||||
|
||||
num_data = lua_tointeger(L, 1);
|
||||
num_input = lua_tointeger(L, 2);
|
||||
num_output = lua_tointeger(L, 3);
|
||||
|
||||
data = fann_create_train(num_data, num_input, num_output);
|
||||
|
||||
n_params = num_input + num_output;
|
||||
|
||||
/* Get all the training data from the callback */
|
||||
for(i = 0; i < num_data; ++i)
|
||||
{
|
||||
/* Call the function */
|
||||
lua_pushvalue(L, 4); /* function */
|
||||
lua_pushvalue(L, 5); /* ud */
|
||||
lua_pushinteger(L, i + 1);
|
||||
lua_pushinteger(L, num_input);
|
||||
lua_pushinteger(L, num_output);
|
||||
lua_call(L, 4, n_params);
|
||||
|
||||
/* Get the input */
|
||||
for(j = 1; j <= num_input; ++j)
|
||||
data->input[i][j - 1] = lua_tonumber(L, top + j);
|
||||
|
||||
/* Get the output */
|
||||
for(j = 1; j <= num_output; ++j)
|
||||
data->output[i][j - 1] = lua_tonumber(L, top + j + num_input);
|
||||
|
||||
/* clear the stack */
|
||||
lua_settop(L, top);
|
||||
}
|
||||
|
||||
priv_push_data(L, data);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lfann_data_get_row(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* data;
|
||||
unsigned int i, n_data;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
obj = lua_touserdata(L, 1);
|
||||
|
||||
data = obj->pointer;
|
||||
n_data = lua_tonumber(L, 2) - 1;
|
||||
if(n_data < 0 || n_data > data->num_data) luaL_error(L, "Invalid index\n");
|
||||
|
||||
lua_newtable(L);
|
||||
|
||||
/* set the input */
|
||||
for(i = 0; i < data->num_input; ++i)
|
||||
{
|
||||
lua_pushinteger(L, i + 1);
|
||||
lua_pushnumber(L, data->input[n_data][i]);
|
||||
lua_rawset(L, -3);
|
||||
}
|
||||
|
||||
/* set the output */
|
||||
for(i = 0; i < data->num_output; ++i)
|
||||
{
|
||||
lua_pushinteger(L, i + data->num_input + 1);
|
||||
lua_pushnumber(L, data->output[n_data][i]);
|
||||
lua_rawset(L, -3);
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
#define SMALL 0.000001
|
||||
|
||||
static void priv_data_get_bounds(fann_type** array, size_t rows, size_t cols,
|
||||
fann_type* omin, fann_type* omax)
|
||||
{
|
||||
fann_type rmin = array[0][0], rmax = array[0][0], aux;
|
||||
size_t i, j;
|
||||
|
||||
if(rows < 1 || cols < 1)
|
||||
{
|
||||
*omin = 0;
|
||||
*omax = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
for(i = 0; i < rows; ++i)
|
||||
for(j = 0; j < cols; ++j)
|
||||
{
|
||||
aux = array[i][j];
|
||||
if(aux < rmin) rmin = aux;
|
||||
if(aux > rmax) rmax = aux;
|
||||
}
|
||||
|
||||
*omin = rmin;
|
||||
*omax = rmax;
|
||||
}
|
||||
|
||||
static void priv_data_scale_array(fann_type** array, size_t rows, size_t cols,
|
||||
fann_type rmin, fann_type rmax, fann_type dmin, fann_type dmax)
|
||||
{
|
||||
fann_type rscale;
|
||||
fann_type dscale;
|
||||
fann_type mean;
|
||||
|
||||
size_t i, j;
|
||||
|
||||
rscale = rmax - rmin;
|
||||
dscale = dmax - dmin;
|
||||
|
||||
/* If the desired span is too close or the contents are too close,
|
||||
* just set the values to the mean */
|
||||
if(rscale < SMALL || dscale < SMALL)
|
||||
{
|
||||
mean = (dmax + dmin) * 2;
|
||||
|
||||
for(i = 0; i < rows; ++i)
|
||||
for(j = 0; j < cols; ++j)
|
||||
array[i][j] = mean;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Second pass: do the scaling */
|
||||
for(i = 0; i < rows; ++i)
|
||||
for(j = 0; j < cols; ++j)
|
||||
array[i][j] = ( (array[i][j] - rmin) / rscale ) * dscale + dmin;
|
||||
}
|
||||
}
|
||||
|
||||
static int lfann_data_scale_input(lua_State* L)
|
||||
{
|
||||
Object* obj = lua_touserdata(L, 1);
|
||||
struct fann_train_data* data = obj->pointer;
|
||||
|
||||
fann_type rmin, rmax;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
data = obj->pointer;
|
||||
|
||||
priv_data_get_bounds(data->input, data->num_data, data->num_input,
|
||||
&rmin, &rmax);
|
||||
|
||||
priv_data_scale_array(data->input, data->num_data, data->num_input,
|
||||
rmin, rmax, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_scale_output(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* data;
|
||||
fann_type rmin, rmax;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
data = obj->pointer;
|
||||
|
||||
priv_data_get_bounds(data->output, data->num_data, data->num_output,
|
||||
&rmin, &rmax);
|
||||
|
||||
priv_data_scale_array(data->output, data->num_data, data->num_output,
|
||||
rmin, rmax, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_scale(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* data;
|
||||
fann_type rmin_in, rmax_in;
|
||||
fann_type rmin_out, rmax_out;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
luaL_checktype(L, 2, LUA_TNUMBER);
|
||||
luaL_checktype(L, 3, LUA_TNUMBER);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
data = obj->pointer;
|
||||
|
||||
priv_data_get_bounds(data->input, data->num_data, data->num_input,
|
||||
&rmin_in, &rmax_in);
|
||||
|
||||
priv_data_get_bounds(data->output, data->num_data, data->num_output,
|
||||
&rmin_out, &rmax_out);
|
||||
|
||||
/* Scale them with the unified bounds */
|
||||
if(rmin_out < rmin_in) rmin_in = rmin_out;
|
||||
if(rmax_out > rmax_in) rmax_in = rmax_out;
|
||||
|
||||
priv_data_scale_array(data->input, data->num_data, data->num_input,
|
||||
rmin_in, rmax_in, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
priv_data_scale_array(data->output, data->num_data, data->num_output,
|
||||
rmin_in, rmax_in, lua_tonumber(L, 2), lua_tonumber(L, 3));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lfann_data_get_bounds_input(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* data;
|
||||
fann_type rmin, rmax;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
data = obj->pointer;
|
||||
|
||||
priv_data_get_bounds(data->input, data->num_data, data->num_input,
|
||||
&rmin, &rmax);
|
||||
|
||||
lua_pushnumber(L, rmin);
|
||||
lua_pushnumber(L, rmax);
|
||||
|
||||
return 2;
|
||||
}
|
||||
|
||||
static int lfann_data_get_bounds_output(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* data;
|
||||
fann_type rmin, rmax;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
data = obj->pointer;
|
||||
|
||||
priv_data_get_bounds(data->output, data->num_data, data->num_output,
|
||||
&rmin, &rmax);
|
||||
|
||||
lua_pushnumber(L, rmin);
|
||||
lua_pushnumber(L, rmax);
|
||||
|
||||
return 2;
|
||||
}
|
||||
|
||||
static int lfann_data_get_bounds(lua_State* L)
|
||||
{
|
||||
Object* obj;
|
||||
struct fann_train_data* data;
|
||||
fann_type rmin_in, rmax_in;
|
||||
fann_type rmin_out, rmax_out;
|
||||
|
||||
luaL_checktype(L, 1, LUA_TUSERDATA);
|
||||
|
||||
obj = lua_touserdata(L, 1);
|
||||
data = obj->pointer;
|
||||
|
||||
priv_data_get_bounds(data->input, data->num_data, data->num_input,
|
||||
&rmin_in, &rmax_in);
|
||||
|
||||
priv_data_get_bounds(data->output, data->num_data, data->num_output,
|
||||
&rmin_out, &rmax_out);
|
||||
|
||||
/* Scale them with the unified bounds */
|
||||
if(rmin_out < rmin_in) rmin_in = rmin_out;
|
||||
if(rmax_out > rmax_in) rmax_in = rmax_out;
|
||||
|
||||
lua_pushnumber(L, rmin_in);
|
||||
lua_pushnumber(L, rmax_in);
|
||||
|
||||
return 2;
|
||||
}
|
36
lib/ann/fann/.gitignore
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
*.sdf
|
||||
*.suo
|
||||
*.user
|
||||
*.opensdf
|
||||
ipch
|
||||
Debug
|
||||
Release
|
||||
/bin/fanndoubled.dll
|
||||
/bin/fanndoubled.lib
|
||||
/bin/fannfixedd.dll
|
||||
/bin/fannfixedd.lib
|
||||
/bin/fannfloatd.dll
|
||||
/bin/fannfloatd.lib
|
||||
/bin/simple_train_doubled.exe
|
||||
/bin/simple_train_floatd.exe
|
||||
/bin/xor_test_fixedd.exe
|
||||
/bin/xor_test_floatd.exe
|
||||
/bin/xor_traind.exe
|
||||
Makefile
|
||||
CMakeFiles
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
*~
|
||||
/bin/cascade_traind.exe
|
||||
/bin/momentumsd.exe
|
||||
/bin/mushroomd.exe
|
||||
/bin/robotd.exe
|
||||
/bin/scaling_testd.exe
|
||||
/bin/scaling_traind.exe
|
||||
/bin/steepness_traind.exe
|
||||
/bin/xor_cpp_sampled.exe
|
||||
*.sln
|
||||
*.suo
|
||||
*.filters
|
||||
*.vcxproj
|
6
lib/ann/fann/.idea/encodings.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding">
|
||||
<file url="PROJECT" charset="UTF-8" />
|
||||
</component>
|
||||
</project>
|
400
lib/ann/fann/.idea/fann.iml
generated
Normal file
@ -0,0 +1,400 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="CPP_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/cmake/config.h.in" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/cmake/fann-config.cmake.in" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/cmake/fann.pc.cmake" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/cmake/Modules/DefineInstallationPaths.cmake" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/CMakeLists.txt" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/lib/googletest/cmake/internal_utils.cmake" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/lib/googletest/CMakeLists.txt" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/lib/googletest/src/gtest-all.cc" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/lib/googletest/src/gtest_main.cc" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/CMakeLists.txt" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/doublefann.c" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/fixedfann.c" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/floatfann.c" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/include/CMakeLists.txt" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/CMakeLists.txt" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/fann_test.cpp" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/fann_test.h" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/fann_test_data.cpp" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/fann_test_data.h" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/fann_test_train.cpp" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/fann_test_train.h" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/tests/main.cpp" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module-library">
|
||||
<library name="Header Search Paths">
|
||||
<CLASSES>
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accounts.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AddressBook.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppKitScripting.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppleScriptKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppleScriptObjC.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/LangAnalysis.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioVideoBridging.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Automator.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AVFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AVKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CalendarStore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/CarbonSound.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/CommonPanels.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/Help.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/ImageCapture.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/Ink.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/NavigationServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/OpenScripting.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/Print.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/SecurityHI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/SpeechRecognition.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CFNetwork.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CloudKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Cocoa.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Collaboration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Contacts.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ContactsUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreAudio.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreAudioKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreData.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreImage.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreLocation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMedia.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMediaIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMIDI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreTelephony.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreText.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreVideo.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreWLAN.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CryptoTokenKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DirectoryService.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiscRecording.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiscRecordingUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DVComponentGlue.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DVDPlayback.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/EventKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ExceptionHandling.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/FinderSync.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ForceFeedback.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Foundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/FWAUserLib.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameController.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameplayKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GLKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GLUT.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GSS.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Hypervisor.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ICADevices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ImageCaptureCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ImageIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IMServicePlugIn.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InputMethodKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InstallerPlugins.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InstantMessage.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetooth.framework/Frameworks/CoreBluetooth.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetooth.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetoothUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOSurface.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaFrameEmbedding.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaScriptCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaNativeFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Kerberos.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Kernel.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LatentSemanticMapping.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LDAP.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LocalAuthentication.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MapKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaAccessibility.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaLibrary.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Metal.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MetalKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ModelIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MultipeerConnectivity.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NetFS.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NetworkExtension.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NotificationCenter.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenAL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenCL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenDirectory.framework/Frameworks/CFOpenDirectory.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenDirectory.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OSAKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PCSC.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Photos.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PhotosUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PreferencePanes.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PubSub.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Python.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QTKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/ImageKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/QuartzFilters.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuartzCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuickLook.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuickTime.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Ruby.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SceneKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ScreenSaver.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Scripting.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ScriptingBridge.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Security.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SecurityFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SecurityInterface.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ServiceManagement.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Social.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SpriteKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/StoreKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SyncServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Tcl.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Tk.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/TWAIN.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/vecLib.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/VideoDecodeAcceleration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/VideoToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/vmnet.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/WebKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/include" />
|
||||
<root url="file://$MODULE_DIR$/lib/googletest" />
|
||||
<root url="file://$MODULE_DIR$/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/Debug/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/MinSizeRel/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/Release/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/RelWithDebInfo/src/include" />
|
||||
</CLASSES>
|
||||
<SOURCES>
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accounts.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AddressBook.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppKitScripting.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppleScriptKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppleScriptObjC.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/LangAnalysis.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioVideoBridging.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Automator.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AVFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AVKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CalendarStore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/CarbonSound.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/CommonPanels.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/Help.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/ImageCapture.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/Ink.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/NavigationServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/OpenScripting.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/Print.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/SecurityHI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Frameworks/SpeechRecognition.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CFNetwork.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CloudKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Cocoa.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Collaboration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Contacts.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ContactsUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreAudio.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreAudioKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreData.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreImage.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreLocation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMedia.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMediaIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMIDI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreTelephony.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreText.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreVideo.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreWLAN.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CryptoTokenKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DirectoryService.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiscRecording.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiscRecordingUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DVComponentGlue.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DVDPlayback.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/EventKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ExceptionHandling.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/FinderSync.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ForceFeedback.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Foundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/FWAUserLib.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameController.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameplayKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GLKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GLUT.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GSS.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Hypervisor.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ICADevices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ImageCaptureCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ImageIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IMServicePlugIn.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InputMethodKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InstallerPlugins.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InstantMessage.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetooth.framework/Frameworks/CoreBluetooth.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetooth.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetoothUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOSurface.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaFrameEmbedding.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaScriptCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaNativeFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Kerberos.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Kernel.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LatentSemanticMapping.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LDAP.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LocalAuthentication.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MapKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaAccessibility.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaLibrary.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Metal.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MetalKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ModelIO.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MultipeerConnectivity.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NetFS.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NetworkExtension.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NotificationCenter.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenAL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenCL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenDirectory.framework/Frameworks/CFOpenDirectory.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenDirectory.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OSAKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PCSC.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Photos.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PhotosUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PreferencePanes.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PubSub.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Python.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QTKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/ImageKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/QuartzFilters.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuartzCore.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuickLook.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuickTime.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Ruby.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SceneKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ScreenSaver.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Scripting.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ScriptingBridge.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Security.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SecurityFoundation.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SecurityInterface.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ServiceManagement.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Social.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SpriteKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/StoreKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SyncServices.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SystemConfiguration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Tcl.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Tk.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/TWAIN.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/vecLib.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/VideoDecodeAcceleration.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/VideoToolbox.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/vmnet.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/WebKit.framework/Headers" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include" />
|
||||
<root url="file:///Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/include" />
|
||||
<root url="file://$MODULE_DIR$/lib/googletest" />
|
||||
<root url="file://$MODULE_DIR$/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/Debug/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/MinSizeRel/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/Release/src/include" />
|
||||
<root url="file://$USER_HOME$/Library/Caches/CLion12/cmake/generated/44245c0d/44245c0d/RelWithDebInfo/src/include" />
|
||||
</SOURCES>
|
||||
<excluded>
|
||||
<root url="file://$MODULE_DIR$/lib/googletest/cmake/internal_utils.cmake" />
|
||||
<root url="file://$MODULE_DIR$/lib/googletest/CMakeLists.txt" />
|
||||
<root url="file://$MODULE_DIR$/lib/googletest/src/gtest_main.cc" />
|
||||
<root url="file://$MODULE_DIR$/lib/googletest/src/gtest-all.cc" />
|
||||
<root url="file://$MODULE_DIR$/src/include/CMakeLists.txt" />
|
||||
</excluded>
|
||||
</library>
|
||||
</orderEntry>
|
||||
</component>
|
||||
</module>
|
4
lib/ann/fann/.idea/misc.xml
generated
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
|
||||
</project>
|
8
lib/ann/fann/.idea/modules.xml
generated
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/fann.iml" filepath="$PROJECT_DIR$/.idea/fann.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
lib/ann/fann/.idea/runConfigurations/Tests.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="Tests" type="CMakeGoogleTestRunConfigurationType" factoryName="Google Test" WORKING_DIR="" PASS_PARENT_ENVS="FALSE" PROJECT_NAME="FANN" TARGET_NAME="fann_tests" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="FANN" RUN_TARGET_NAME="fann_tests" TEST_MODE="SUITE_TEST">
|
||||
<envs />
|
||||
<method />
|
||||
</configuration>
|
||||
</component>
|
6
lib/ann/fann/.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
27
lib/ann/fann/.travis.yml
Normal file
@ -0,0 +1,27 @@
|
||||
sudo: false
|
||||
|
||||
language: cpp
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- llvm-toolchain-precise
|
||||
- ubuntu-toolchain-r-test
|
||||
packages:
|
||||
- clang-3.7
|
||||
- g++-5
|
||||
- gcc-5
|
||||
install:
|
||||
- if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi
|
||||
- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.7" CC="clang-3.7"; fi
|
||||
|
||||
before_script:
|
||||
- cmake .
|
||||
|
||||
script:
|
||||
- make
|
||||
- ./tests/fann_tests
|
||||
|
148
lib/ann/fann/CMakeLists.txt
Normal file
@ -0,0 +1,148 @@
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
IF(BIICODE)
|
||||
# Initializes block variables
|
||||
INIT_BIICODE_BLOCK()
|
||||
|
||||
# Output folder for binaries
|
||||
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../bin/fann/examples)
|
||||
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_SOURCE_DIR}/../bin/fann/examples)
|
||||
|
||||
# Copy datasets for examples if exists
|
||||
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/datasets)
|
||||
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/datasets DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../bin/)
|
||||
ENDIF()
|
||||
|
||||
# Include recipes block for CPP11 activation
|
||||
INCLUDE(biicode/cmake/tools)
|
||||
|
||||
# Are examples present?
|
||||
LIST(FIND BII_BLOCK_EXES examples_parallel_train examples_present)
|
||||
SET(examples_present (NOT ${examples_present} EQUAL "-1")) # Depending on examples
|
||||
IF(${examples_present} AND NOT WIN32 AND NOT APPLE) # Linux doesn't have GetTickCount
|
||||
LIST(REMOVE_ITEM BII_BLOCK_EXES examples_parallel_train)
|
||||
ENDIF()
|
||||
|
||||
ADD_BIICODE_TARGETS()
|
||||
|
||||
IF(${examples_present})
|
||||
# This example needs CPP11
|
||||
ACTIVATE_CPP11(lasote_fann_examples_xor_sample)
|
||||
ENDIF()
|
||||
|
||||
TARGET_COMPILE_OPTIONS(${BII_BLOCK_TARGET} INTERFACE -DGTEST_ENABLE_CATCH_EXCEPTIONS_=1)
|
||||
|
||||
IF(MSVC)
|
||||
TARGET_COMPILE_OPTIONS(${BII_LIB_TARGET} PUBLIC -DFANN_DLL_EXPORTS)
|
||||
ELSE()
|
||||
IF(${examples_present})
|
||||
TARGET_LINK_LIBRARIES(${BII_BLOCK_TARGET} INTERFACE gomp)
|
||||
ENDIF()
|
||||
ENDIF()
|
||||
ELSE()
|
||||
cmake_minimum_required (VERSION 2.8)
|
||||
|
||||
if (NOT DEFINED CMAKE_BUILD_TYPE)
|
||||
set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type")
|
||||
endif ()
|
||||
|
||||
project (FANN)
|
||||
|
||||
list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)
|
||||
|
||||
set (FANN_VERSION_MAJOR 2)
|
||||
set (FANN_VERSION_MINOR 2)
|
||||
set (FANN_VERSION_PATCH 0)
|
||||
set (FANN_VERSION_STRING ${FANN_VERSION_MAJOR}.${FANN_VERSION_MINOR}.${FANN_VERSION_PATCH})
|
||||
|
||||
option(BUILD_SHARED_LIBS "build shared/static libs" ON)
|
||||
|
||||
INCLUDE(DefineInstallationPaths)
|
||||
|
||||
|
||||
configure_file (cmake/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/src/include/config.h)
|
||||
include_directories (${CMAKE_CURRENT_BINARY_DIR}/src/include/)
|
||||
|
||||
configure_file (cmake/fann.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/fann.pc @ONLY)
|
||||
|
||||
########### install files ###############
|
||||
|
||||
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/fann.pc DESTINATION ${PKGCONFIG_INSTALL_DIR})
|
||||
|
||||
ADD_SUBDIRECTORY( src )
|
||||
|
||||
################# cpack ################
|
||||
|
||||
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Fast Artificial Neural Network Library (FANN)")
|
||||
SET(CPACK_PACKAGE_VENDOR "Steffen Nissen")
|
||||
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
|
||||
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md")
|
||||
SET(CPACK_PACKAGE_VERSION_MAJOR "${FANN_VERSION_MAJOR}")
|
||||
SET(CPACK_PACKAGE_VERSION_MINOR "${FANN_VERSION_MINOR}")
|
||||
SET(CPACK_PACKAGE_VERSION_PATCH "${FANN_VERSION_PATCH}")
|
||||
SET(CPACK_GENERATOR "TGZ;ZIP")
|
||||
SET(CPACK_SOURCE_GENERATOR "TGZ;ZIP")
|
||||
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Steffen Nissen")
|
||||
SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CMake ${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}")
|
||||
IF(WIN32 AND NOT UNIX)
|
||||
# There is a bug in NSI that does not handle full unix paths properly. Make
|
||||
# sure there is at least one set of four (4) backlasshes.
|
||||
# SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/Utilities/Release\\\\InstallIcon.bmp")
|
||||
# SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\MyExecutable.exe")
|
||||
# SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} My Famous Project")
|
||||
SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\leenissen.dk/fann/")
|
||||
SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\leenissen.dk/fann/")
|
||||
SET(CPACK_NSIS_CONTACT "steffen.fann@gmail.com")
|
||||
SET(CPACK_NSIS_MODIFY_PATH ON)
|
||||
ELSE(WIN32 AND NOT UNIX)
|
||||
# SET(CPACK_STRIP_FILES "bin/MyExecutable")
|
||||
# SET(CPACK_SOURCE_STRIP_FILES "")
|
||||
ENDIF(WIN32 AND NOT UNIX)
|
||||
#SET(CPACK_PACKAGE_EXECUTABLES "MyExecutable" "My Executable")
|
||||
INCLUDE(CPack)
|
||||
|
||||
################# config ################
|
||||
|
||||
set (FANN_USE_FILE ${CMAKE_CONFIG_DIR}/fann-use.cmake)
|
||||
set (FANN_ROOT_DIR ${CMAKE_INSTALL_PREFIX})
|
||||
set (FANN_INCLUDE_DIR ${CMAKE_INSTALL_PREFIX}/include)
|
||||
set (FANN_INCLUDE_DIRS ${FANN_INCLUDE_DIR})
|
||||
set (FANN_LIBRARY_DIRS ${CMAKE_INSTALL_PREFIX}/lib)
|
||||
set (FANN_LIBRARY fann)
|
||||
set (FANN_LIBRARIES ${FANN_LIBRARY})
|
||||
if (UNIX)
|
||||
list (APPEND FANN_LIBRARIES m)
|
||||
endif ()
|
||||
|
||||
if (CMAKE_VERSION VERSION_LESS 2.8.8)
|
||||
configure_file (cmake/fann-config.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/fann-config.cmake @ONLY)
|
||||
else ()
|
||||
|
||||
include (CMakePackageConfigHelpers)
|
||||
|
||||
configure_package_config_file (
|
||||
cmake/fann-config.cmake.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/fann-config.cmake
|
||||
INSTALL_DESTINATION FANN_CMAKE_CONFIG_DIR
|
||||
PATH_VARS
|
||||
FANN_USE_FILE
|
||||
FANN_ROOT_DIR
|
||||
FANN_INCLUDE_DIR
|
||||
FANN_INCLUDE_DIRS
|
||||
FANN_LIBRARY_DIRS
|
||||
NO_CHECK_REQUIRED_COMPONENTS_MACRO
|
||||
)
|
||||
|
||||
endif ()
|
||||
|
||||
install (FILES
|
||||
${CMAKE_CURRENT_BINARY_DIR}/fann-config.cmake
|
||||
cmake/fann-use.cmake
|
||||
DESTINATION ${CMAKE_CONFIG_DIR}
|
||||
)
|
||||
|
||||
################# compile tests ################
|
||||
|
||||
ADD_SUBDIRECTORY( lib/googletest )
|
||||
ADD_SUBDIRECTORY( tests )
|
||||
|
||||
ENDIF()
|
504
lib/ann/fann/LICENSE.md
Normal file
@ -0,0 +1,504 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
63
lib/ann/fann/README.md
Normal file
@ -0,0 +1,63 @@
|
||||
# Fast Artificial Neural Network Library
|
||||
## FANN
|
||||
|
||||
**Fast Artificial Neural Network (FANN) Library** is a free open source neural network library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks.
|
||||
|
||||
Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast.
|
||||
|
||||
Bindings to more than 15 programming languages are available.
|
||||
|
||||
An easy to read introduction article and a reference manual accompanies the library with examples and recommendations on how to use the library.
|
||||
|
||||
Several graphical user interfaces are also available for the library.
|
||||
|
||||
## FANN Features
|
||||
|
||||
* Multilayer Artificial Neural Network Library in C
|
||||
* Backpropagation training (RPROP, Quickprop, Batch, Incremental)
|
||||
* Evolving topology training which dynamically builds and trains the ANN (Cascade2)
|
||||
* Easy to use (create, train and run an ANN with just three function calls)
|
||||
* Fast (up to 150 times faster execution than other libraries)
|
||||
* Versatile (possible to adjust many parameters and features on-the-fly)
|
||||
* Well documented (An easy to read introduction article, a thorough reference manual, and a 50+ page university report describing the implementation considerations etc.)
|
||||
* Cross-platform (configure script for linux and unix, dll files for windows, project files for MSVC++ and Borland compilers are also reported to work)
|
||||
* Several different activation functions implemented (including stepwise linear functions for that extra bit of speed)
|
||||
* Easy to save and load entire ANNs
|
||||
* Several easy to use examples
|
||||
* Can use both floating point and fixed point numbers (actually both float, double and int are available)
|
||||
* Cache optimized (for that extra bit of speed)
|
||||
* Open source, but can still be used in commercial applications (licenced under LGPL)
|
||||
* Framework for easy handling of training data sets
|
||||
* Graphical Interfaces
|
||||
* Language Bindings to a large number of different programming languages
|
||||
* Widely used (approximately 100 downloads a day)
|
||||
|
||||
## To Install
|
||||
|
||||
### On Linux
|
||||
|
||||
#### From Source
|
||||
|
||||
First you'll want to clone the repository:
|
||||
|
||||
`git clone https://github.com/libfann/fann.git`
|
||||
|
||||
Once that's finished, navigate to the Root directory. In this case it would be ./fann:
|
||||
|
||||
`cd ./fann`
|
||||
|
||||
Then run CMake
|
||||
|
||||
`cmake .`
|
||||
|
||||
After that, you'll need to use elevated priviledges to install the library:
|
||||
|
||||
`sudo make install`
|
||||
|
||||
That's it! If everything went right, you should see a lot of text, and FANN should be installed!
|
||||
|
||||
## To Learn More
|
||||
|
||||
To get started with FANN, go to the [FANN help site](http://leenissen.dk/fann/wp/help/), which will include links to all the available resources.
|
||||
|
||||
For more information about FANN, please refer to the [FANN website](http://leenissen.dk/fann/wp/)
|
45
lib/ann/fann/biicode.conf
Normal file
@ -0,0 +1,45 @@
|
||||
# Biicode configuration file
|
||||
|
||||
[requirements]
|
||||
biicode/cmake: 3
|
||||
google/gtest: 10
|
||||
|
||||
[parent]
|
||||
# The parent version of this block. Must match folder name. E.g.
|
||||
# user/block # No version number means not published yet
|
||||
# You can change it to publish to a different track, and change version, e.g.
|
||||
# user/block(track): 7
|
||||
lasote/fann: 0
|
||||
|
||||
[paths]
|
||||
# Local directories to look for headers (within block)
|
||||
# /
|
||||
# include
|
||||
src
|
||||
src/include
|
||||
|
||||
|
||||
[dependencies]
|
||||
# Manual adjust file implicit dependencies, add (+), remove (-), or overwrite (=)
|
||||
# hello.h + hello_imp.cpp hello_imp2.cpp
|
||||
# *.h + *.cpp
|
||||
|
||||
[mains]
|
||||
# Manual adjust of files that define an executable
|
||||
# !main.cpp # Do not build executable from this file
|
||||
# main2.cpp # Build it (it doesnt have a main() function, but maybe it includes it)
|
||||
|
||||
[hooks]
|
||||
# These are defined equal to [dependencies],files names matching bii*stage*hook.py
|
||||
# will be launched as python scripts at stage = {post_process, clean}
|
||||
# CMakeLists.txt + bii/my_post_process1_hook.py bii_clean_hook.py
|
||||
|
||||
[includes]
|
||||
gtest/gtest.h: google/gtest/include
|
||||
|
||||
[data]
|
||||
# Manually define data files dependencies, that will be copied to bin for execution
|
||||
# By default they are copied to bin/user/block/... which should be taken into account
|
||||
# when loading from disk such data
|
||||
# image.cpp + image.jpg # code should write open("user/block/image.jpg")
|
||||
|
4
lib/ann/fann/bin/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
*.pdb
|
||||
*.exp
|
||||
*.ilk
|
10
lib/ann/fann/bin/Guitar.exe.config
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<appSettings>
|
||||
<add key="gtest" value="C:\DEV\fann\bin\tests_floatd.exe" />
|
||||
<add key="gtest-params" value="" />
|
||||
<add key="gtest-filters" value="" />
|
||||
<add key="maxHistory" value="5" />
|
||||
</appSettings>
|
||||
<startup/>
|
||||
</configuration>
|
9
lib/ann/fann/bin/Win32/xor.data
Normal file
@ -0,0 +1,9 @@
|
||||
4 2 1
|
||||
-1 -1
|
||||
-1
|
||||
-1 1
|
||||
1
|
||||
1 -1
|
||||
1
|
||||
1 1
|
||||
-1
|
9
lib/ann/fann/bin/x64/xor.data
Normal file
@ -0,0 +1,9 @@
|
||||
4 2 1
|
||||
-1 -1
|
||||
-1
|
||||
-1 1
|
||||
1
|
||||
1 -1
|
||||
1
|
||||
1 1
|
||||
-1
|
141
lib/ann/fann/cmake/Modules/DefineInstallationPaths.cmake
Normal file
@ -0,0 +1,141 @@
|
||||
if (UNIX OR MINGW OR WIN32)
|
||||
IF (NOT APPLICATION_NAME)
|
||||
MESSAGE(STATUS "${PROJECT_NAME} is used as APPLICATION_NAME")
|
||||
SET(APPLICATION_NAME ${PROJECT_NAME})
|
||||
ENDIF (NOT APPLICATION_NAME)
|
||||
|
||||
# Suffix for Linux
|
||||
SET(LIB_SUFFIX
|
||||
CACHE STRING "Define suffix of directory name (32/64)"
|
||||
)
|
||||
|
||||
SET(EXEC_INSTALL_PREFIX
|
||||
"${CMAKE_INSTALL_PREFIX}"
|
||||
CACHE PATH "Base directory for executables and libraries"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(SHARE_INSTALL_PREFIX
|
||||
"${CMAKE_INSTALL_PREFIX}/share"
|
||||
CACHE PATH "Base directory for files which go to share/"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(DATA_INSTALL_PREFIX
|
||||
"${SHARE_INSTALL_PREFIX}/${APPLICATION_NAME}"
|
||||
CACHE PATH "The parent directory where applications can install their data" FORCE
|
||||
)
|
||||
|
||||
# The following are directories where stuff will be installed to
|
||||
SET(BIN_INSTALL_DIR
|
||||
"${EXEC_INSTALL_PREFIX}/bin"
|
||||
CACHE PATH "The ${APPLICATION_NAME} binary install dir (default prefix/bin)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(SBIN_INSTALL_DIR
|
||||
"${EXEC_INSTALL_PREFIX}/sbin"
|
||||
CACHE PATH "The ${APPLICATION_NAME} sbin install dir (default prefix/sbin)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(LIB_INSTALL_DIR
|
||||
"${EXEC_INSTALL_PREFIX}/lib${LIB_SUFFIX}"
|
||||
CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is prefix/lib)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(LIBEXEC_INSTALL_DIR
|
||||
"${EXEC_INSTALL_PREFIX}/libexec"
|
||||
CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is prefix/libexec)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(PLUGIN_INSTALL_DIR
|
||||
"${LIB_INSTALL_DIR}/${APPLICATION_NAME}"
|
||||
CACHE PATH "The subdirectory relative to the install prefix where plugins will be installed (default is prefix/lib/${APPLICATION_NAME})"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(INCLUDE_INSTALL_DIR
|
||||
"${CMAKE_INSTALL_PREFIX}/include"
|
||||
CACHE PATH "The subdirectory to the header prefix (default prefix/include)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(DATA_INSTALL_DIR
|
||||
"${DATA_INSTALL_PREFIX}"
|
||||
CACHE PATH "The parent directory where applications can install their data (default prefix/share/${APPLICATION_NAME})"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(HTML_INSTALL_DIR
|
||||
"${DATA_INSTALL_PREFIX}/doc/HTML"
|
||||
CACHE PATH "The HTML install dir for documentation (default data/doc/html)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(ICON_INSTALL_DIR
|
||||
"${DATA_INSTALL_PREFIX}/icons"
|
||||
CACHE PATH "The icon install dir (default data/icons/)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(SOUND_INSTALL_DIR
|
||||
"${DATA_INSTALL_PREFIX}/sounds"
|
||||
CACHE PATH "The install dir for sound files (default data/sounds)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(LOCALE_INSTALL_DIR
|
||||
"${SHARE_INSTALL_PREFIX}/locale"
|
||||
CACHE PATH "The install dir for translations (default prefix/share/locale)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(XDG_APPS_DIR
|
||||
"${SHARE_INSTALL_PREFIX}/applications/"
|
||||
CACHE PATH "The XDG apps dir"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(XDG_DIRECTORY_DIR
|
||||
"${SHARE_INSTALL_PREFIX}/desktop-directories"
|
||||
CACHE PATH "The XDG directory"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(SYSCONF_INSTALL_DIR
|
||||
"${EXEC_INSTALL_PREFIX}/etc"
|
||||
CACHE PATH "The ${APPLICATION_NAME} sysconfig install dir (default prefix/etc)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(MAN_INSTALL_DIR
|
||||
"${SHARE_INSTALL_PREFIX}/man"
|
||||
CACHE PATH "The ${APPLICATION_NAME} man install dir (default prefix/man)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
SET(INFO_INSTALL_DIR
|
||||
"${SHARE_INSTALL_PREFIX}/info"
|
||||
CACHE PATH "The ${APPLICATION_NAME} info install dir (default prefix/info)"
|
||||
FORCE
|
||||
)
|
||||
|
||||
set (CMAKE_CONFIG_DIR "${LIB_INSTALL_DIR}/cmake/fann" CACHE PATH "config dir" FORCE)
|
||||
set (PKGCONFIG_INSTALL_DIR "${LIB_INSTALL_DIR}/pkgconfig" CACHE PATH "pkgconfig dir" FORCE)
|
||||
endif ()
|
||||
|
||||
if (MSCV)
|
||||
# Same same
|
||||
SET(BIN_INSTALL_DIR .)
|
||||
SET(SBIN_INSTALL_DIR .)
|
||||
SET(LIB_INSTALL_DIR .)
|
||||
SET(PLUGIN_INSTALL_DIR plugins)
|
||||
SET(HTML_INSTALL_DIR doc/HTML)
|
||||
SET(ICON_INSTALL_DIR .)
|
||||
SET(SOUND_INSTALL_DIR .)
|
||||
SET(LOCALE_INSTALL_DIR lang)
|
||||
endif (MSCV)
|
||||
|
8
lib/ann/fann/cmake/config.h.in
Normal file
@ -0,0 +1,8 @@
|
||||
/* Name of package */
|
||||
#cmakedefine PACKAGE "@PACKAGE@"
|
||||
|
||||
/* Version number of package */
|
||||
#cmakedefine VERSION "@FANN_VERSION_STRING@"
|
||||
|
||||
/* Define for the x86_64 CPU famyly */
|
||||
#cmakedefine X86_64 "@X86_64@"
|
38
lib/ann/fann/cmake/fann-config.cmake.in
Normal file
@ -0,0 +1,38 @@
|
||||
# -*- cmake -*-
|
||||
#
|
||||
# fann-config.cmake(.in)
|
||||
#
|
||||
|
||||
# Use the following variables to compile and link against FANN:
|
||||
# FANN_FOUND - True if FANN was found on your system
|
||||
# FANN_USE_FILE - The file making FANN usable
|
||||
# FANN_DEFINITIONS - Definitions needed to build with FANN
|
||||
# FANN_INCLUDE_DIR - Directory where fann.h can be found
|
||||
# FANN_INCLUDE_DIRS - List of directories of FANN and it's dependencies
|
||||
# FANN_LIBRARY - FANN library location
|
||||
# FANN_LIBRARIES - List of libraries to link against FANN library
|
||||
# FANN_LIBRARY_DIRS - List of directories containing FANN' libraries
|
||||
# FANN_ROOT_DIR - The base directory of FANN
|
||||
# FANN_VERSION_STRING - A human-readable string containing the version
|
||||
# FANN_VERSION_MAJOR - The major version of FANN
|
||||
# FANN_VERSION_MINOR - The minor version of FANN
|
||||
# FANN_VERSION_PATCH - The patch version of FANN
|
||||
|
||||
@PACKAGE_INIT@
|
||||
|
||||
set ( FANN_FOUND 1 )
|
||||
set ( FANN_USE_FILE "@FANN_USE_FILE@" )
|
||||
|
||||
set ( FANN_DEFINITIONS "@FANN_DEFINITIONS@" )
|
||||
set ( FANN_INCLUDE_DIR "@FANN_INCLUDE_DIR@" )
|
||||
set ( FANN_INCLUDE_DIRS "@FANN_INCLUDE_DIRS@" )
|
||||
set ( FANN_LIBRARY "@FANN_LIBRARY@" )
|
||||
set ( FANN_LIBRARIES "@FANN_LIBRARIES@" )
|
||||
set ( FANN_LIBRARY_DIRS "@FANN_LIBRARY_DIRS@" )
|
||||
set ( FANN_ROOT_DIR "@FANN_ROOT_DIR@" )
|
||||
|
||||
set ( FANN_VERSION_STRING "@FANN_VERSION_STRING@" )
|
||||
set ( FANN_VERSION_MAJOR "@FANN_VERSION_MAJOR@" )
|
||||
set ( FANN_VERSION_MINOR "@FANN_VERSION_MINOR@" )
|
||||
set ( FANN_VERSION_PATCH "@FANN_VERSION_PATCH@" )
|
||||
|
9
lib/ann/fann/cmake/fann-use.cmake
Normal file
@ -0,0 +1,9 @@
|
||||
# -*- cmake -*-
|
||||
#
|
||||
# fann-use.cmake
|
||||
#
|
||||
|
||||
add_definitions ( ${FANN_DEFINITIONS} )
|
||||
include_directories ( ${FANN_INCLUDE_DIRS} )
|
||||
link_directories ( ${FANN_LIBRARY_DIRS} )
|
||||
|
10
lib/ann/fann/cmake/fann.pc.cmake
Normal file
@ -0,0 +1,10 @@
|
||||
prefix=@CMAKE_INSTALL_PREFIX@
|
||||
exec_prefix=@BIN_INSTALL_DIR@
|
||||
libdir=@LIB_INSTALL_DIR@
|
||||
includedir=@INCLUDE_INSTALL_DIR@
|
||||
|
||||
Name: fann
|
||||
Description: Fast Artificial Neural Network Library
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lm -lfann
|
||||
Cflags: -I${includedir}
|
4179
lib/ann/fann/datasets/abelone.test
Normal file
4177
lib/ann/fann/datasets/abelone.train
Normal file
4097
lib/ann/fann/datasets/bank32fm.test
Normal file
4097
lib/ann/fann/datasets/bank32fm.train
Normal file
4097
lib/ann/fann/datasets/bank32nh.test
Normal file
4097
lib/ann/fann/datasets/bank32nh.train
Normal file
4209
lib/ann/fann/datasets/building.test
Normal file
4209
lib/ann/fann/datasets/building.train
Normal file
22785
lib/ann/fann/datasets/census-house.test
Normal file
22785
lib/ann/fann/datasets/census-house.train
Normal file
769
lib/ann/fann/datasets/diabetes.test
Normal file
@ -0,0 +1,769 @@
|
||||
384 8 2
|
||||
0.058823 0.755000 0.491803 0 0 0.388972 0.043125 0.016667
|
||||
0 1
|
||||
0.882353 0.680000 0.573770 0.320000 0.130024 0.552906 0.032024 0.366667
|
||||
1 0
|
||||
0.823529 0.875000 0.508197 0.300000 0 0.500745 0.057216 0.283333
|
||||
1 0
|
||||
0.411765 0.500000 0 0 0 0.447094 0.173356 0.183333
|
||||
1 0
|
||||
0.235294 0.580000 0.590164 0.120000 0.102837 0.329359 0.164389 0.266667
|
||||
0 1
|
||||
0.411765 0.310000 0.639344 0 0 0.485842 0.133646 0.333333
|
||||
0 1
|
||||
0.058823 0.700000 0.606557 0.260000 0.212766 0.359165 0.320239 0.033333
|
||||
0 1
|
||||
0.058823 0.485000 0.540984 0.150000 0.165485 0.345753 0.174637 0.016667
|
||||
0 1
|
||||
0.411765 0.405000 0.639344 0.400000 0.056738 0.695976 0.078138 0.350000
|
||||
0 1
|
||||
0.235294 0.740000 0.491803 0.270000 0.375887 0.460507 0.030743 0.133333
|
||||
1 0
|
||||
0 0.625000 0.557377 0 0 0.368107 0.054654 0
|
||||
0 1
|
||||
0.352941 0.510000 0.737705 0.390000 0 0.532042 0.254483 0.116667
|
||||
0 1
|
||||
0.411765 0.625000 0.704918 0 0 0.560358 0.096499 0.500000
|
||||
0 1
|
||||
0.117647 0.450000 0.557377 0.420000 0 0.569300 0.181469 0.100000
|
||||
1 0
|
||||
0.470588 0.905000 0.557377 0.360000 0.585106 0.448584 0.229291 0.650000
|
||||
1 0
|
||||
0.411765 0.970000 0.557377 0.280000 0 0.535022 0.284799 0.333333
|
||||
1 0
|
||||
0 0.510000 0.704918 0.170000 0.124113 0.436662 0.263450 0.100000
|
||||
0 1
|
||||
0.117647 0.495000 0.573770 0.160000 0.052010 0.304024 0.067037 0.100000
|
||||
0 1
|
||||
0.529412 0.360000 0.639344 0.250000 0 0.470939 0.086251 0.283333
|
||||
0 1
|
||||
0.117647 0.610000 0.426230 0.430000 0.186761 0.539493 0.315115 0.116667
|
||||
0 1
|
||||
0.411765 0.935000 0.557377 0.390000 0.359338 0.561848 0.075149 0.333333
|
||||
1 0
|
||||
0.470588 0.755000 0.639344 0.320000 0.248227 0.639344 0.187020 0.250000
|
||||
1 0
|
||||
0.058823 0.535000 0.590164 0.300000 0.096927 0.459016 0.317250 0.050000
|
||||
0 1
|
||||
0.117647 0.470000 0.622951 0.180000 0.078014 0.470939 0.243809 0.033333
|
||||
0 1
|
||||
0.235294 0.625000 0.573770 0.180000 0.144208 0.430700 0.455167 0.400000
|
||||
1 0
|
||||
0.411765 0.545000 0.655738 0.310000 0 0.535022 0.447908 0.366667
|
||||
1 0
|
||||
0.117647 0.525000 0.655738 0.450000 0.225768 0.502235 0.270282 0.133333
|
||||
1 0
|
||||
0.117647 0.470000 0.557377 0.180000 0.089834 0.387481 0.206234 0
|
||||
0 1
|
||||
0.117647 0.530000 0.459016 0.270000 0.195035 0.432191 0.148591 0.016667
|
||||
0 1
|
||||
0.352941 0.740000 0.590164 0.350000 0 0.500745 0.234415 0.483333
|
||||
1 0
|
||||
0 0.475000 0.524590 0.390000 0.124113 0.664680 0.122972 0.016667
|
||||
0 1
|
||||
0.058823 0.785000 0.590164 0.210000 0.198582 0.381520 0.019214 0.050000
|
||||
0 1
|
||||
0.058823 0.630000 0.459016 0.290000 0.179669 0.427720 0.308711 0
|
||||
0 1
|
||||
0.647059 0.555000 0.688525 0.400000 0 0.697466 0.361657 0.400000
|
||||
1 0
|
||||
0.176471 0.870000 0.475410 0.220000 0.229314 0.490313 0.219898 0.250000
|
||||
1 0
|
||||
0.117647 0.695000 0.614754 0 0 0.381520 0.038002 0.133333
|
||||
0 1
|
||||
0.117647 0.500000 0.524590 0.230000 0 0.442623 0.123826 0
|
||||
0 1
|
||||
0.411765 0.805000 0.704918 0 0 0.453055 0.037148 0.433333
|
||||
1 0
|
||||
0.529412 0.920000 0.696721 0.150000 0 0.447094 0.484629 0.466667
|
||||
1 0
|
||||
0 0.490000 0.672131 0.150000 0.099291 0.375559 0.094364 0.016667
|
||||
0 1
|
||||
0.235294 0.615000 0.508197 0 0 0.476900 0.063194 0.233333
|
||||
1 0
|
||||
0.294118 0.220000 0.508197 0 0 0.372578 0.217336 0.250000
|
||||
0 1
|
||||
0.176471 0.815000 0.573770 0.180000 0.124113 0.470939 0.081127 0.116667
|
||||
1 0
|
||||
0 0.510000 0.426230 0 0 0.374069 0 0
|
||||
0 1
|
||||
0.058823 0.495000 0.590164 0.300000 0.021277 0.575261 0.142613 0
|
||||
0 1
|
||||
0.235294 0.660000 0.704918 0.310000 0 0.417288 0.145602 0.700000
|
||||
0 1
|
||||
0.058823 0 0.557377 0.350000 0 0.476900 0.132792 0.016667
|
||||
0 1
|
||||
0.235294 0.470000 0.532787 0.220000 0 0.368107 0.029889 0
|
||||
0 1
|
||||
0 0.510000 0.614754 0.230000 0 0 0.210931 0
|
||||
0 1
|
||||
0 0.505000 0.622951 0 0 0.532042 0.051238 0.083333
|
||||
0 1
|
||||
0 0.585000 0.655738 0.310000 0.062648 0.673621 0.004697 0.050000
|
||||
0 1
|
||||
0.176471 0.580000 0.606557 0.150000 0.124113 0.391952 0.012383 0.050000
|
||||
0 1
|
||||
0.117647 0.585000 0.737705 0.190000 0.083924 0.375559 0.100342 0
|
||||
0 1
|
||||
0.294118 0.425000 0.606557 0.220000 0 0.432191 0.489325 0.183333
|
||||
1 0
|
||||
0 0.620000 0.459016 0.130000 0.124113 0.324888 0.159693 0
|
||||
0 1
|
||||
0.058823 0.395000 0.614754 0.300000 0 0.476900 0.135781 0.016667
|
||||
0 1
|
||||
0.352941 0.570000 0 0 0 0 0.047395 0.083333
|
||||
0 1
|
||||
0.764706 0.380000 0.491803 0 0 0.488823 0.043552 0.333333
|
||||
0 1
|
||||
0.058823 0.395000 0.655738 0.250000 0.043735 0.378539 0.215628 0.016667
|
||||
0 1
|
||||
0 0.660000 0.639344 0 0 0.482861 0.134500 0
|
||||
0 1
|
||||
0.176471 0.865000 0.639344 0.390000 0.218676 0.503726 0.380871 0.166667
|
||||
1 0
|
||||
0.411765 0.485000 0.622951 0.320000 0.107565 0.609538 0.338599 0.183333
|
||||
1 0
|
||||
0.058823 0.395000 0.491803 0.420000 0.056738 0.648286 0.256191 0.033333
|
||||
0 1
|
||||
0.117647 0.540000 0.508197 0.320000 0.066194 0.375559 0.021349 0
|
||||
0 1
|
||||
0.117647 0.370000 0 0 0 0 0.010248 0.016667
|
||||
0 1
|
||||
0.529412 0.820000 0.639344 0 0 0.488823 0.029889 0.400000
|
||||
1 0
|
||||
0 0.760000 0.672131 0.390000 0.321513 0.618480 0.081981 0.100000
|
||||
0 1
|
||||
0.470588 0.970000 0.655738 0 0 0.388972 0.201964 0.766667
|
||||
0 1
|
||||
0.411765 0.570000 0.524590 0 0 0.408346 0.279249 0.216667
|
||||
1 0
|
||||
0.352941 0.720000 0.590164 0.270000 0.269504 0.505216 0.075576 0.316667
|
||||
0 1
|
||||
0.294118 0.550000 0.557377 0 0 0.387481 0.091375 0.150000
|
||||
0 1
|
||||
0.352941 0.625000 0.622951 0 0 0.503726 0.018360 0.550000
|
||||
1 0
|
||||
0.058823 0.580000 0.639344 0.290000 0.212766 0.538003 0.178480 0.066667
|
||||
0 1
|
||||
0.235294 0.645000 0.704918 0.200000 0.319149 0.523100 0.065329 0.033333
|
||||
0 1
|
||||
0.058823 0.650000 0.573770 0.130000 0.124113 0.385991 0.168232 0.016667
|
||||
0 1
|
||||
0.117647 0.480000 0.557377 0.130000 0.057920 0.314456 0.242955 0.083333
|
||||
0 1
|
||||
0.058823 0.945000 0.491803 0.230000 1 0.448584 0.136635 0.633333
|
||||
1 0
|
||||
0.411765 0.595000 0 0 0 0.375559 0.055935 0.266667
|
||||
0 1
|
||||
0.705882 0.700000 0.672131 0.430000 0.384161 0.584203 0.192143 0.616667
|
||||
1 0
|
||||
0.352941 0.495000 0.491803 0.190000 0.063830 0.400894 0.178907 0.183333
|
||||
0 1
|
||||
0.294118 0.660000 0.655738 0 0 0.399404 0.046114 0.800000
|
||||
0 1
|
||||
0 0.655000 0.721311 0 0 0.470939 0.283945 0.183333
|
||||
1 0
|
||||
0.294118 0.560000 0.540984 0 0 0.563338 0.078138 0.333333
|
||||
1 0
|
||||
0.176471 0.495000 0.442623 0.190000 0.101655 0.381520 0.032451 0.050000
|
||||
0 1
|
||||
0.176471 0.500000 0.557377 0.230000 0.095745 0.470939 0.371904 0.116667
|
||||
0 1
|
||||
0.588235 0.575000 0.803279 0 0 0.357675 0.403074 0.216667
|
||||
0 1
|
||||
0.588235 0.610000 0.557377 0 0 0.464978 0.076857 0.333333
|
||||
0 1
|
||||
0 0.475000 0.696721 0.250000 0.042553 0.557377 0.072160 0.050000
|
||||
1 0
|
||||
0.117647 0.450000 0.573770 0.170000 0 0.406855 0.002989 0.016667
|
||||
0 1
|
||||
0.117647 0.555000 0.491803 0 0 0.390462 0.113151 0.033333
|
||||
0 1
|
||||
0.117647 0.420000 0.409836 0.230000 0.089834 0.453055 0.380017 0
|
||||
0 1
|
||||
0.176471 0.965000 0.573770 0.310000 0 0.520119 0.069599 0.066667
|
||||
1 0
|
||||
0.058823 0.630000 0.491803 0 0 0.448584 0.115713 0.433333
|
||||
1 0
|
||||
0 0.685000 0.573770 0.380000 0 0.494784 0.039283 0.016667
|
||||
0 1
|
||||
0.352941 0.770000 0.606557 0.320000 0.228132 0.436662 0.324936 0.300000
|
||||
0 1
|
||||
0.117647 0.500000 0.540984 0.200000 0.106383 0.490313 0.336892 0.116667
|
||||
1 0
|
||||
0.058823 0.535000 0.557377 0.190000 0 0.394933 0.037148 0.050000
|
||||
0 1
|
||||
0.058823 0.860000 0.557377 0.490000 0.684397 0.631893 0.266439 0.116667
|
||||
1 0
|
||||
0.058823 0.595000 0.442623 0.130000 0.059102 0.332340 0.054227 0.050000
|
||||
0 1
|
||||
0.235294 0.570000 0.532787 0 0 0.326379 0.151153 0.266667
|
||||
0 1
|
||||
0.588235 0.840000 0.606557 0 0 0.566319 0.195986 0.216667
|
||||
1 0
|
||||
0 0.565000 0.622951 0 0 0.496274 0.085397 0.033333
|
||||
1 0
|
||||
0.705882 0.605000 0.639344 0.170000 0 0.394933 0.077284 0.683333
|
||||
0 1
|
||||
0.235294 0.575000 0.590164 0 0 0.430700 0.127242 0.416667
|
||||
1 0
|
||||
0.235294 0.610000 0.557377 0 0 0.521610 0.134927 0.133333
|
||||
0 1
|
||||
0.411765 0.570000 0.540984 0 0 0.488823 0.076857 0.350000
|
||||
1 0
|
||||
0.117647 0.985000 0.573770 0.450000 0.641844 0.454545 0.034159 0.533333
|
||||
1 0
|
||||
0.647059 0.635000 0.868852 0 0 0.581222 0.047822 0.500000
|
||||
0 1
|
||||
0.117647 0.560000 0.704918 0.420000 0.189125 0.572280 0.071734 0.116667
|
||||
0 1
|
||||
0.176471 0.695000 0.442623 0 0 0.381520 0.138343 0.016667
|
||||
1 0
|
||||
0.176471 0.480000 0.459016 0.340000 0.135934 0.368107 0.369769 0.300000
|
||||
0 1
|
||||
0.411765 0.510000 0.606557 0.400000 0.124113 0.554396 0.053800 0.400000
|
||||
0 1
|
||||
0.117647 0.465000 0.524590 0.320000 0.189125 0.566319 0.254483 0.033333
|
||||
1 0
|
||||
0.352941 0.515000 0.540984 0 0 0.362146 0.073014 0.133333
|
||||
0 1
|
||||
0.176471 0.390000 0.573770 0 0 0.484352 0.081981 0.300000
|
||||
0 1
|
||||
0.058823 0.545000 0.459016 0.210000 0.159574 0.375559 0.322374 0.033333
|
||||
0 1
|
||||
0 0.525000 0.737705 0 0 0.441133 0.050811 0.416667
|
||||
0 1
|
||||
0.117647 0.540000 0.426230 0.260000 0.074468 0.484352 0.102477 0.016667
|
||||
0 1
|
||||
0.117647 0.340000 0.573770 0.320000 0.078014 0.372578 0.046541 0.066667
|
||||
0 1
|
||||
0.235294 0.480000 0.459016 0.170000 0.057920 0.309985 0.111870 0.083333
|
||||
0 1
|
||||
0.235294 0.915000 0 0 0 0.423249 0.057216 0.250000
|
||||
1 0
|
||||
0 0.535000 0.508197 0.300000 0.087470 0.545455 0.289923 0.066667
|
||||
1 0
|
||||
0.058823 0.355000 0.639344 0.500000 0.053192 0.494784 0.146883 0
|
||||
0 1
|
||||
0.588235 0.450000 0.696721 0.320000 0 0.520119 0.318958 0.583333
|
||||
1 0
|
||||
0.176471 0.565000 0.360656 0.130000 0 0.333830 0.026473 0.016667
|
||||
0 1
|
||||
0.352941 0.525000 0.655738 0.280000 0 0.484352 0.341588 0.083333
|
||||
0 1
|
||||
0.529412 0.725000 0.655738 0.460000 0.153664 0.564829 0.238685 0.316667
|
||||
1 0
|
||||
0.058823 0.965000 0.409836 0.160000 0.443262 0.385991 0.246371 0.050000
|
||||
0 1
|
||||
0 0.595000 0.524590 0.180000 0.108747 0.520119 0.276260 0.033333
|
||||
0 1
|
||||
0 0.895000 0.409836 0.360000 0.187943 0.563338 0.160974 0.016667
|
||||
1 0
|
||||
0.117647 0.775000 0.606557 0.170000 0.113475 0.396423 0.151580 0.100000
|
||||
1 0
|
||||
0 0.670000 0.475410 0.200000 0.343972 0.393443 0.116994 0
|
||||
0 1
|
||||
0 0.595000 0.540984 0.270000 0 0.578241 0.077284 0.016667
|
||||
0 1
|
||||
0.176471 0.790000 0.622951 0.360000 0.289598 0.470939 0.330060 0.116667
|
||||
1 0
|
||||
0.117647 0.490000 0.491803 0.170000 0.141844 0.517139 0.051238 0.016667
|
||||
0 1
|
||||
0.117647 0.670000 0.573770 0 0 0.430700 0.198121 0.033333
|
||||
1 0
|
||||
0.235294 0.550000 0.754098 0 0 0.560358 0.048249 0.150000
|
||||
0 1
|
||||
0.352941 0.975000 0.573770 0 0 0.460507 0.106746 0.166667
|
||||
1 0
|
||||
0.352941 0.520000 0.606557 0.180000 0.184397 0.445604 0.274979 0.333333
|
||||
1 0
|
||||
0.470588 0.630000 0.721311 0.360000 0.127660 0.573770 0.115713 0.466667
|
||||
0 1
|
||||
0.294118 0.680000 0.672131 0 0 0 0.239966 0.800000
|
||||
0 1
|
||||
0.117647 0.410000 0.426230 0.220000 0.135934 0.424739 0.692143 0.066667
|
||||
0 1
|
||||
0 0.500000 0.573770 0.260000 0.059102 0.459016 0.221605 0
|
||||
0 1
|
||||
0.058823 0.640000 0.393443 0.450000 0.229314 0.603577 0.228437 0.050000
|
||||
1 0
|
||||
0 0.530000 0.573770 0.370000 0.174941 0.587183 0.225021 0.016667
|
||||
0 1
|
||||
0.235294 0.655000 0.557377 0.210000 0.196217 0.493294 0.035013 0.116667
|
||||
0 1
|
||||
0 0.865000 0.639344 0.320000 0.313239 0.692996 0.461571 0.616667
|
||||
0 1
|
||||
0.235294 0.475000 0.573770 0.320000 0 0.478390 0.228010 0.050000
|
||||
0 1
|
||||
0 0.690000 0 0 0 0.540984 0.365073 0.066667
|
||||
1 0
|
||||
0.705882 0.530000 0.655738 0 0 0.351714 0.025192 0.383333
|
||||
0 1
|
||||
0.470588 0.425000 0.450820 0.200000 0 0.363636 0.024765 0.350000
|
||||
0 1
|
||||
0.529412 0.780000 0.704918 0 0 0.369598 0.064902 0.533333
|
||||
1 0
|
||||
0.117647 0.610000 0.491803 0.180000 0.125296 0.444113 0.272844 0.016667
|
||||
0 1
|
||||
0.176471 0.650000 0.524590 0 0 0.344262 0.100769 0.016667
|
||||
0 1
|
||||
0.705882 0.700000 0.696721 0.330000 0 0.557377 0.070880 0.333333
|
||||
0 1
|
||||
0.117647 0.545000 0.754098 0 0 0.636364 0.327498 0.550000
|
||||
0 1
|
||||
0.176471 0.645000 0.524590 0.290000 0.135934 0.393443 0.060205 0.116667
|
||||
1 0
|
||||
0.117647 0.785000 0.606557 0.350000 0.520095 0.587183 0.023911 0.150000
|
||||
0 1
|
||||
0.470588 0.625000 0.786885 0 0 0 0.065756 0.550000
|
||||
1 0
|
||||
0.235294 0.680000 0.573770 0 0 0.464978 0.471392 0.016667
|
||||
1 0
|
||||
0.470588 0.500000 0.606557 0.400000 0.254137 0.587183 0.248933 0.366667
|
||||
1 0
|
||||
0 0.420000 0.524590 0.220000 0.078014 0.533532 0.199402 0
|
||||
0 1
|
||||
0 0.700000 0.532787 0.260000 0.153664 0.634873 0.150726 0.050000
|
||||
1 0
|
||||
0 0.540000 0.557377 0.200000 0 0.406855 0.302733 0.183333
|
||||
0 1
|
||||
0.058823 0.465000 0.573770 0.310000 0 0.453055 0.101196 0.033333
|
||||
0 1
|
||||
0.588235 0.375000 0.672131 0 0 0.496274 0.078992 0.283333
|
||||
0 1
|
||||
0.117647 0.645000 0.606557 0.260000 0.242317 0.494784 0.219044 0.066667
|
||||
0 1
|
||||
0.176471 0.495000 0.508197 0.190000 0.087470 0.324888 0.085824 0.083333
|
||||
0 1
|
||||
0.058823 0.540000 0.491803 0.460000 0.210402 0.529061 0.143894 0.050000
|
||||
0 1
|
||||
0 0.510000 0.524590 0.460000 0.092199 0.605067 0.178480 0
|
||||
0 1
|
||||
0.352941 0.460000 0.508197 0.320000 0.148936 0.476900 0.002989 0.416667
|
||||
0 1
|
||||
0.176471 0.900000 0.524590 0.250000 0.082742 0.506706 0.082408 0.083333
|
||||
0 1
|
||||
0.117647 0.645000 0 0 0 0.573770 0.096499 0.333333
|
||||
0 1
|
||||
0.588235 0.645000 0.622951 0.280000 0.144208 0.535022 0.086251 0.300000
|
||||
0 1
|
||||
0.176471 0.555000 0.508197 0 0 0.336811 0.027327 0
|
||||
0 1
|
||||
0.117647 0.790000 0.737705 0 0 0.470939 0.310418 0.750000
|
||||
1 0
|
||||
0.705882 0.460000 0.508197 0.070000 0.304965 0.411326 0.362084 0.383333
|
||||
1 0
|
||||
0.058823 0.355000 0.508197 0 0 0.324888 0.144321 0.083333
|
||||
0 1
|
||||
0.176471 0.560000 0.606557 0.300000 0 0.470939 0.050811 0.066667
|
||||
1 0
|
||||
0.058823 0.405000 0.590164 0.180000 0.047281 0.396423 0.087532 0.050000
|
||||
0 1
|
||||
0.411765 0.680000 0.606557 0.260000 0.159574 0.387481 0.242955 0.500000
|
||||
0 1
|
||||
0.470588 0.560000 0.590164 0 0 0.351714 0.325363 0.616667
|
||||
0 1
|
||||
0.176471 0.710000 0.655738 0.150000 0 0.482861 0.052092 0.700000
|
||||
0 1
|
||||
0.117647 0.505000 0.475410 0.170000 0.313239 0.360656 0.228864 0.033333
|
||||
0 1
|
||||
0.235294 0.625000 0.655738 0 0 0.481371 0.195559 0.100000
|
||||
1 0
|
||||
0.294118 0.715000 0.639344 0 0 0.670641 0.047822 0.433333
|
||||
0 1
|
||||
0.294118 0.525000 0.590164 0.290000 0.384161 0.549925 0.034586 0.116667
|
||||
0 1
|
||||
0 0.525000 0.688525 0 0 0.415797 0.283091 0.683333
|
||||
1 0
|
||||
0.529412 0.560000 0.672131 0.240000 0 0.420268 0.514091 0.483333
|
||||
1 0
|
||||
0 0.705000 0 0 0 0.631893 0.054227 0.133333
|
||||
1 0
|
||||
0.411765 0.750000 0.639344 0.290000 0.148936 0.524590 0.262169 0.550000
|
||||
1 0
|
||||
0.058823 0.905000 0.524590 0.300000 0.212766 0.508197 0.106746 0.283333
|
||||
1 0
|
||||
0.411765 0.470000 0.524590 0.250000 0.093381 0.496274 0.281810 0.333333
|
||||
0 1
|
||||
0.176471 0.935000 0.573770 0.220000 0.236407 0.542474 0.140905 0.250000
|
||||
1 0
|
||||
0.411765 0.980000 0.737705 0 0 0.593145 0.159266 0.333333
|
||||
1 0
|
||||
0.470588 0.600000 0.704918 0 0 0.423249 0.077284 0.016667
|
||||
1 0
|
||||
0 0.730000 0.573770 0 0 0.564829 0.109308 0.116667
|
||||
1 0
|
||||
0 0.630000 0.704918 0.270000 0.141844 0.408346 0.186593 0
|
||||
0 1
|
||||
0.411765 0.710000 0.491803 0.330000 0.224586 0.429210 0.260034 0.666667
|
||||
0 1
|
||||
0.117647 0.440000 0.475410 0.260000 0.018912 0.423249 0.293766 0.016667
|
||||
0 1
|
||||
0.529412 0.770000 0.639344 0.300000 0.118203 0.460507 0.036721 0.400000
|
||||
0 1
|
||||
0.058823 0.415000 0.557377 0 0 0.271237 0.233134 0.100000
|
||||
0 1
|
||||
0.470588 0.500000 0.622951 0 0 0.576751 0.047822 0.350000
|
||||
0 1
|
||||
0.117647 0.985000 0.573770 0.990000 0 0.517139 0.212212 0.683333
|
||||
1 0
|
||||
0 0.895000 0.737705 0.270000 0 0.657228 0.259607 0.033333
|
||||
1 0
|
||||
0.352941 0.950000 0.754098 0 0 0.529061 0.085397 0.750000
|
||||
1 0
|
||||
0.588235 0.895000 0.573770 0 0 0.523100 0.052092 0.266667
|
||||
0 1
|
||||
0.588235 0.805000 0.557377 0.230000 0.156028 0.380030 0.105892 0.433333
|
||||
1 0
|
||||
0.411765 0.665000 0.721311 0.150000 0.183215 0.482861 0.078565 0.266667
|
||||
0 1
|
||||
0.235294 0.705000 0.606557 0 0 0.411326 0.070880 0.316667
|
||||
0 1
|
||||
0 0.590000 0.688525 0.470000 0.271868 0.682563 0.201964 0.166667
|
||||
1 0
|
||||
0.235294 0.380000 0.508197 0 0 0.506706 0.133646 0.066667
|
||||
0 1
|
||||
0.235294 0.450000 0 0 0 0.417288 0.227156 0.166667
|
||||
0 1
|
||||
0.294118 0.720000 0.672131 0.260000 0.336879 0.476900 0.159693 0.616667
|
||||
1 0
|
||||
0.058823 0.560000 0.655738 0.450000 0.156028 0.518629 0.059351 0.050000
|
||||
0 1
|
||||
0 0.370000 0.426230 0.100000 0.042553 0.414307 0.081554 0.016667
|
||||
0 1
|
||||
0 0.495000 0 0 0 0.372578 0.074722 0.016667
|
||||
0 1
|
||||
0.117647 0.645000 0.688525 0 0 0.417288 0.087959 0.100000
|
||||
0 1
|
||||
0.235294 0.790000 0.639344 0 0 0.490313 0.309564 0.166667
|
||||
1 0
|
||||
0.529412 0.445000 0.508197 0 0 0.335320 0.027327 0.200000
|
||||
0 1
|
||||
0.176471 0.530000 0.442623 0.210000 0.186761 0.460507 0.091375 0.050000
|
||||
0 1
|
||||
0.294118 0.530000 0.672131 0.300000 0 0.588674 0.088813 0.283333
|
||||
0 1
|
||||
0.176471 0.600000 0.573770 0.300000 0.159574 0.639344 0.159693 0.150000
|
||||
0 1
|
||||
0.294118 0.365000 0.491803 0 0 0.399404 0.081127 0.100000
|
||||
0 1
|
||||
0.058823 0.530000 0.622951 0 0 0.558867 0.050811 0.083333
|
||||
0 1
|
||||
0.470588 0.545000 0.622951 0.390000 0.134752 0.415797 0.239966 0.166667
|
||||
1 0
|
||||
0.058823 0.485000 0.524590 0.190000 0.096927 0.271237 0.094364 0
|
||||
0 1
|
||||
0.176471 0.740000 0.540984 0.250000 0 0.484352 0.076003 0.016667
|
||||
0 1
|
||||
0.235294 0.495000 0.590164 0.170000 0 0.381520 0.092229 0.116667
|
||||
0 1
|
||||
0.058823 0.595000 0.721311 0.410000 0.200946 0.675112 0.183177 0.083333
|
||||
0 1
|
||||
0.058823 0.430000 0.540984 0.520000 0.076832 0.615499 0.358241 0.133333
|
||||
0 1
|
||||
0.470588 0.535000 0.655738 0 0 0.366617 0.332195 0.216667
|
||||
0 1
|
||||
0.058823 0.435000 0.639344 0.270000 0.037825 0.515648 0.009821 0.016667
|
||||
0 1
|
||||
0.294118 0.680000 0.688525 0.410000 0.104019 0.521610 0.088813 0.233333
|
||||
1 0
|
||||
0.470588 0.630000 0.606557 0.380000 0.088652 0.385991 0.035867 0.300000
|
||||
0 1
|
||||
0.058823 0.540000 0.721311 0.190000 0 0.403875 0.137489 0.050000
|
||||
0 1
|
||||
0.235294 0.670000 0.590164 0 0 0.354694 0.084970 0.650000
|
||||
1 0
|
||||
0.058823 0.695000 0.508197 0.410000 0.567376 0.606557 0.195559 0
|
||||
0 1
|
||||
0.117647 0.280000 0.459016 0.280000 0.053192 0.360656 0.108454 0.016667
|
||||
0 1
|
||||
0.058823 0.460000 0.508197 0.250000 0.048463 0.290611 0.172502 0.066667
|
||||
0 1
|
||||
0.352941 0.810000 0.508197 0 0 0.362146 0.042698 0.483333
|
||||
1 0
|
||||
0.058823 0 0.393443 0.200000 0 0.368107 0.026473 0.016667
|
||||
0 1
|
||||
0.235294 0.720000 0.475410 0.280000 0.165485 0.439642 0.089240 0.266667
|
||||
0 1
|
||||
0.294118 0.695000 0.524590 0.350000 0.165485 0.426230 0.142186 0.083333
|
||||
0 1
|
||||
0.529412 0.560000 0.672131 0.320000 0.206856 0.509687 0.077711 0.250000
|
||||
1 0
|
||||
0.058823 0.595000 0.704918 0.390000 0.260047 0.679583 0.311699 0.133333
|
||||
1 0
|
||||
0.117647 0.560000 0.614754 0.320000 0 0.532042 0.029889 0
|
||||
0 1
|
||||
0.470588 0.770000 0.639344 0.320000 0 0.482861 0.155850 0.400000
|
||||
1 0
|
||||
0.117647 0.505000 0.475410 0.350000 0.106383 0.324888 0.032878 0.016667
|
||||
0 1
|
||||
0.176471 0.705000 0 0 0 0.447094 0.291631 0.100000
|
||||
1 0
|
||||
0 0.595000 0 0 0 0.482861 0.026900 0.050000
|
||||
1 0
|
||||
0.058823 0.680000 0.606557 0.500000 0.241135 0.557377 0.137062 0.050000
|
||||
0 1
|
||||
0.058823 0.655000 0.524590 0.140000 0.490544 0.353204 0.132792 0
|
||||
0 1
|
||||
0.058823 0.440000 0.508197 0.240000 0.052010 0.445604 0.146883 0.033333
|
||||
0 1
|
||||
0 0.420000 0.672131 0.310000 0.147754 0.569300 0.066183 0.033333
|
||||
0 1
|
||||
0.117647 0.730000 0 0 0 0.409836 0.069172 0.116667
|
||||
1 0
|
||||
0.235294 0.555000 0.590164 0.470000 0.244681 0.552906 0.560205 0.583333
|
||||
1 0
|
||||
0.470588 0.600000 0.639344 0 0 0.372578 0.141332 0.716667
|
||||
0 1
|
||||
0.058823 0.440000 0.245902 0.420000 0.117021 0.819672 0.178480 0.083333
|
||||
1 0
|
||||
0 0.525000 0.557377 0.220000 0 0.298063 0.067464 0.016667
|
||||
0 1
|
||||
0.058823 0.425000 0.540984 0.290000 0 0.396423 0.116567 0.166667
|
||||
0 1
|
||||
0 0.470000 0 0 0 0 0.076003 0.066667
|
||||
0 1
|
||||
0.058823 0.480000 0.524590 0.270000 0.102837 0.494784 0.090094 0
|
||||
0 1
|
||||
1 0.815000 0.590164 0.410000 0.134752 0.609538 0.315542 0.433333
|
||||
1 0
|
||||
0.352941 0.555000 0.524590 0.390000 0 0.509687 0.077711 0.050000
|
||||
0 1
|
||||
0.235294 0.730000 0.696721 0.270000 0.118203 0.430700 0.047395 0.100000
|
||||
0 1
|
||||
0.117647 0.355000 0.573770 0.270000 0 0.417288 0.216909 0.016667
|
||||
0 1
|
||||
0.352941 0.825000 0.557377 0.260000 0.198582 0.500745 0.236123 0.466667
|
||||
0 1
|
||||
0.058823 0.605000 0.639344 0.390000 0.087470 0.581222 0.078138 0.116667
|
||||
0 1
|
||||
0.411765 0.760000 0.721311 0.440000 0 0.745156 0.110589 0.250000
|
||||
1 0
|
||||
0.294118 0.520000 0.606557 0 0 0.429210 0.032024 0.450000
|
||||
0 1
|
||||
0.588235 0.540000 0.540984 0 0 0.482861 0.082835 0.350000
|
||||
1 0
|
||||
0.058823 0.675000 0.442623 0 0 0.397914 0.260034 0.683333
|
||||
0 1
|
||||
0.058823 0.745000 0.557377 0.290000 0.150118 0.436662 0.115713 0.350000
|
||||
1 0
|
||||
0.294118 0.485000 0.622951 0.270000 0 0.530551 0.128096 0.516667
|
||||
1 0
|
||||
0.352941 0.540000 0.360656 0.200000 0.153664 0.357675 0.313834 0.233333
|
||||
0 1
|
||||
0.764706 0.520000 0.590164 0 0 0.464978 0.165243 0.283333
|
||||
1 0
|
||||
0 0.365000 0 0 0 0.314456 0.112724 0.066667
|
||||
0 1
|
||||
0.235294 0.920000 0.639344 0.390000 0.327423 0.551416 0.079419 0.166667
|
||||
1 0
|
||||
0.705882 0.440000 0.606557 0.400000 0.063830 0.526080 0.128096 0.450000
|
||||
0 1
|
||||
0.176471 0.435000 0.491803 0.180000 0 0.324888 0.156277 0
|
||||
0 1
|
||||
0.294118 0.580000 0.606557 0.290000 0 0.481371 0.248506 0.233333
|
||||
1 0
|
||||
0.058823 0.515000 0.245902 0.380000 0.098109 0.645306 0.044833 0.200000
|
||||
0 1
|
||||
0.294118 0.390000 0.393443 0 0 0.502235 0.245944 0.066667
|
||||
0 1
|
||||
0.529412 0.650000 0.573770 0 0 0.509687 0.245090 0.400000
|
||||
1 0
|
||||
0.058823 0.600000 0.655738 0.480000 0.236407 0.579732 0.462852 0.333333
|
||||
0 1
|
||||
0.294118 0 0.655738 0.320000 0 0.611028 0.114432 0.266667
|
||||
1 0
|
||||
0.176471 0.400000 0.672131 0.310000 0.082742 0.509687 0.518360 0.100000
|
||||
1 0
|
||||
0.117647 0.560000 0.540984 0.220000 0 0.372578 0.097780 0.050000
|
||||
0 1
|
||||
0.352941 0.455000 0 0 0 0.444113 0.180615 0.166667
|
||||
0 1
|
||||
0.176471 0.865000 0.688525 0.330000 0.560284 0.532042 0.076857 0.016667
|
||||
1 0
|
||||
0.352941 0 0.557377 0.410000 0 0.581222 0.277114 0.333333
|
||||
1 0
|
||||
0 0.570000 0.655738 0.340000 0.336879 0.658718 0.038002 0.100000
|
||||
0 1
|
||||
0.176471 0.605000 0.426230 0 0 0.536513 0.020922 0.066667
|
||||
1 0
|
||||
0.529412 0.455000 0.557377 0 0 0.360656 0.052092 0.616667
|
||||
0 1
|
||||
0.470588 0.550000 0.622951 0 0 0.414307 0.067891 0.616667
|
||||
0 1
|
||||
0.529412 0.600000 0.590164 0.220000 0.066194 0.309985 0.279675 0.450000
|
||||
0 1
|
||||
0.235294 0.865000 0.573770 0.140000 0.198582 0.442623 0.120837 0.200000
|
||||
1 0
|
||||
0 0.825000 0.737705 0.330000 0.803783 0.779434 0.149018 0.033333
|
||||
0 1
|
||||
0.176471 0.540000 0.508197 0.240000 0 0.387481 0.061913 0.066667
|
||||
0 1
|
||||
0.176471 0.790000 0.573770 0.300000 0.387707 0.529061 0.113578 0.233333
|
||||
1 0
|
||||
0.411765 0.795000 0.540984 0 0 0.453055 0.130231 0.250000
|
||||
1 0
|
||||
0.294118 0.735000 0.614754 0 0 0.445604 0.152007 0.116667
|
||||
0 1
|
||||
0 0.630000 0.688525 0.290000 0.254137 0.457526 0.188728 0.050000
|
||||
0 1
|
||||
0.117647 0.640000 0.524590 0.420000 0 0.596125 0.436806 0.050000
|
||||
0 1
|
||||
0 0.655000 0.540984 0.400000 0 0.511177 0.050384 0.016667
|
||||
1 0
|
||||
0.294118 0.685000 0.885246 0 0 0.727273 0.063621 0.266667
|
||||
1 0
|
||||
0 0.640000 0.557377 0.190000 0.212766 0.454545 0.560632 0.066667
|
||||
1 0
|
||||
0.176471 0.575000 0.540984 0.390000 0.165485 0.567809 0.030743 0.116667
|
||||
0 1
|
||||
0.058823 0.665000 0.836066 0.280000 0.165485 0.488823 0.066610 0.400000
|
||||
1 0
|
||||
0.294118 0.840000 0.524590 0 0 0.490313 0.024338 0.333333
|
||||
1 0
|
||||
0 0.500000 0.721311 0.600000 0.130024 0.697466 0.377455 0.166667
|
||||
0 1
|
||||
0.647059 0.675000 0 0 0 0.779434 0.213493 0.316667
|
||||
1 0
|
||||
0.294118 0.605000 0.590164 0.230000 0.132388 0.390462 0.071307 0.150000
|
||||
0 1
|
||||
0.117647 0.540000 0.655738 0 0 0.402385 0.077284 0.516667
|
||||
1 0
|
||||
0 0.625000 0.786885 0 0 0.335320 0.078565 0
|
||||
0 1
|
||||
0.764706 0.530000 0.590164 0.540000 0 0.545455 0.042698 0.400000
|
||||
0 1
|
||||
0.117647 0.540000 0.508197 0.100000 0.328605 0.377049 0.342869 0.016667
|
||||
0 1
|
||||
0.294118 0.495000 0.442623 0.280000 0.098109 0.506706 0.179761 0.150000
|
||||
0 1
|
||||
0 0.690000 0.491803 0.350000 0.197400 0.515648 0.194705 0
|
||||
1 0
|
||||
0.117647 0.650000 0.786885 0 0 0.336811 0.081127 0
|
||||
0 1
|
||||
0 0.655000 0 0 0 0.643815 0.081981 0.083333
|
||||
1 0
|
||||
0.647059 0.425000 0.606557 0 0 0.448584 0.094791 0.233333
|
||||
0 1
|
||||
0.117647 0.625000 0.491803 0.200000 0.165485 0.503726 0.004270 0.166667
|
||||
0 1
|
||||
0 0.900000 0.737705 0.260000 0.106383 0.543964 0.100769 0.233333
|
||||
1 0
|
||||
0.176471 0.420000 0.590164 0.320000 0 0.554396 0.080700 0.116667
|
||||
0 1
|
||||
0.058823 0.475000 0.672131 0.250000 0.212766 0.521610 0.066183 0.366667
|
||||
1 0
|
||||
0 0.900000 0.639344 0.630000 0.016548 0.885246 1 0.066667
|
||||
1 0
|
||||
0.235294 0.545000 0.524590 0.440000 0.117021 0.518629 0.353117 0.083333
|
||||
1 0
|
||||
0.117647 0.495000 0.491803 0.170000 0.189125 0.545455 0.160120 0
|
||||
0 1
|
||||
0.235294 0.475000 0.524590 0 0 0.476900 0.035440 0.166667
|
||||
1 0
|
||||
0.117647 0.600000 0.442623 0 0 0.399404 0.160974 0.100000
|
||||
0 1
|
||||
0.117647 0.445000 0.737705 0.300000 0 0.499255 0.091375 0.350000
|
||||
0 1
|
||||
0.058823 0.590000 0.475410 0.360000 0.111111 0.496274 0.078138 0.033333
|
||||
0 1
|
||||
0.294118 0.830000 0.590164 0.190000 0.206856 0.384501 0.217336 0.500000
|
||||
1 0
|
||||
0.470588 0.600000 0 0 0 0.447094 0.044833 0.283333
|
||||
1 0
|
||||
0.588235 0.575000 0 0 0 0.526080 0.023911 0.133333
|
||||
0 1
|
||||
0.235294 0.550000 0.540984 0 0 0.475410 0.167805 0.133333
|
||||
0 1
|
||||
0.411765 0.735000 0.622951 0 0 0.587183 0.076430 0.366667
|
||||
1 0
|
||||
0.117647 0.405000 0.491803 0.220000 0 0.412817 0.090521 0.066667
|
||||
0 1
|
||||
0.294118 0.475000 0.590164 0.330000 0 0.561848 0.124680 0.100000
|
||||
0 1
|
||||
0.294118 0.775000 0.688525 0.440000 0.644208 0.576751 0.230999 0.216667
|
||||
0 1
|
||||
0.235294 0.515000 0.491803 0.330000 0.226950 0.357675 0.379163 0.200000
|
||||
0 1
|
||||
0.352941 0.490000 0.475410 0.330000 0.224586 0.506706 0.150299 0.366667
|
||||
0 1
|
||||
0.352941 0.570000 0.721311 0 0 0.414307 0.072160 0.750000
|
||||
0 1
|
||||
0.058823 0.365000 0.409836 0.100000 0 0.342772 0.072587 0
|
||||
0 1
|
||||
0.588235 0.505000 0.704918 0.370000 0 0.679583 0.451751 0.283333
|
||||
1 0
|
||||
0.058823 0.595000 0.360656 0.470000 0.074468 0.529061 0.086251 0.066667
|
||||
0 1
|
||||
0.058823 0.765000 0.672131 0.420000 0.573286 0.605067 0.260034 0.033333
|
||||
0 1
|
||||
0.294118 0.630000 0.639344 0.270000 0.026005 0.441133 0.154142 0.316667
|
||||
0 1
|
||||
0.176471 0.415000 0.475410 0.310000 0.021277 0.511177 0.110162 0.066667
|
||||
0 1
|
||||
0 0.620000 0.573770 0.200000 0 0.408346 0.075149 0.250000
|
||||
1 0
|
||||
0.235294 0.985000 0.573770 0.390000 0.879433 0.546945 0.961144 0.166667
|
||||
0 1
|
||||
0.235294 0.585000 0.524590 0.270000 0.141844 0.494784 0.064902 0.050000
|
||||
0 1
|
||||
0.176471 0.620000 0.655738 0.330000 0.153664 0.494784 0.096926 0.083333
|
||||
0 1
|
||||
0 0.390000 0.721311 0.290000 0.047281 0.549925 0.152007 0
|
||||
0 1
|
||||
0.058823 0.450000 0.508197 0.120000 0.050827 0.405365 0.214347 0.050000
|
||||
0 1
|
||||
0.470588 0.895000 0.590164 0.420000 0.153664 0.487332 0.273698 0.250000
|
||||
1 0
|
||||
0 0.520000 0.524590 0.370000 0.075650 0.500745 0.184458 0.016667
|
||||
1 0
|
||||
0.352941 0.465000 0.409836 0.300000 0.075650 0.427720 0.118702 0.033333
|
||||
0 1
|
||||
0.117647 0.570000 0.557377 0.220000 0 0.427720 0.005978 0.066667
|
||||
0 1
|
||||
0.529412 0.285000 0.655738 0.370000 0 0.488823 0.007686 0.333333
|
||||
0 1
|
||||
0.058823 0.475000 0.491803 0.180000 0.068558 0.356185 0.077711 0.016667
|
||||
0 1
|
||||
0.352941 0.670000 0.573770 0.230000 0.153664 0.527571 0.198121 0.133333
|
||||
1 0
|
||||
0.058823 0.620000 0.491803 0.320000 0 0.533532 0.186166 0
|
||||
0 1
|
||||
0.588235 0.610000 0.639344 0.310000 0 0.411326 0.185312 0.400000
|
||||
0 1
|
||||
0 0.990000 0.540984 0.320000 0.323877 0.615499 0.181042 0.116667
|
||||
1 0
|
||||
0.411765 0.975000 0.573770 0.330000 0.171395 0.374069 0.036294 0.566667
|
||||
1 0
|
||||
0.176471 0.450000 0.639344 0 0 0.636364 0.205380 0
|
||||
0 1
|
||||
0.235294 0.425000 0.475410 0.220000 0.057920 0.414307 0.097353 0.116667
|
||||
0 1
|
||||
0.117647 0.500000 0.573770 0.520000 0.067376 0.603577 0.255764 0.066667
|
||||
0 1
|
||||
0.058823 0.695000 0.377049 0.190000 0.098109 0.427720 0.245944 0.016667
|
||||
0 1
|
||||
0.117647 0.455000 0.508197 0 0 0.406855 0.190863 0.016667
|
||||
0 1
|
||||
0.058823 0.495000 0.475410 0.100000 0 0.378539 0.201964 0
|
||||
0 1
|
||||
0.176471 0.495000 0.655738 0.110000 0.075650 0.287630 0.087959 0.150000
|
||||
0 1
|
||||
0.294118 0.640000 0.655738 0 0 0.515648 0.028181 0.400000
|
||||
0 1
|
||||
0 0.585000 0.540984 0.310000 0.222222 0.459016 0.177199 0.016667
|
||||
0 1
|
||||
0 0.615000 0.721311 0.370000 0 0.524590 0.050811 0.133333
|
||||
0 1
|
||||
0.117647 0.340000 0.508197 0.130000 0.017731 0.299553 0.076430 0.033333
|
||||
0 1
|
||||
0.352941 0.970000 0.639344 0 0 0.350224 0.021776 0.633333
|
||||
1 0
|
||||
0.117647 0.450000 0.491803 0 0 0.350224 0.048249 0.066667
|
||||
0 1
|
||||
0.176471 0.850000 0.524590 0.370000 0.265957 0.514158 0.118702 0.150000
|
||||
1 0
|
||||
0.529412 0.725000 0.721311 0.340000 0.195035 0.451565 0.295901 0.533333
|
||||
1 0
|
||||
0.352941 0.525000 0.573770 0.320000 0.080378 0.459016 0.018787 0.266667
|
||||
0 1
|
769
lib/ann/fann/datasets/diabetes.train
Normal file
@ -0,0 +1,769 @@
|
||||
384 8 2
|
||||
0.058823 0.445000 0.196721 0.190000 0.029551 0.414307 0.205380 0
|
||||
0 1
|
||||
0 0.590000 0.524590 0.230000 0.105201 0 0.705807 0
|
||||
0 1
|
||||
0.058823 0.720000 0.672131 0.400000 0 0.615499 0.225875 0.116667
|
||||
0 1
|
||||
0 0.825000 0.622951 0.430000 0.301418 0.713860 0.077284 0.083333
|
||||
0 1
|
||||
0.058823 0.510000 0.606557 0 0 0.588674 0.091802 0.350000
|
||||
1 0
|
||||
0.058823 0.450000 0.557377 0.080000 0 0.365127 0.452605 0.250000
|
||||
0 1
|
||||
0.058823 0.575000 0.573770 0.300000 0.113475 0.515648 0.192570 0.183333
|
||||
1 0
|
||||
0.235294 0.475000 0.491803 0.320000 0 0.527571 0.087959 0.116667
|
||||
0 1
|
||||
0.058823 0.640000 0.721311 0.390000 0.130024 0.543964 0.418019 0.266667
|
||||
1 0
|
||||
0.176471 0.400000 0 0 0 0 0.040991 0.016667
|
||||
0 1
|
||||
0.058823 0.840000 0.721311 0.290000 0 0.521610 0.353117 0.516667
|
||||
1 0
|
||||
0 0.475000 0.655738 0.450000 0.108747 0.543964 0.107600 0.083333
|
||||
0 1
|
||||
0.117647 0.495000 0.426230 0.150000 0.111111 0.366617 0.238685 0
|
||||
0 1
|
||||
0.470588 0.985000 0.606557 0 0 0.385991 0.475235 0.300000
|
||||
1 0
|
||||
0.058823 0.585000 0.721311 0.240000 0.171395 0.514158 0.138770 0.316667
|
||||
1 0
|
||||
0.058823 0.815000 0.590164 0 0 0.581222 0.488471 0.200000
|
||||
1 0
|
||||
0.117647 0.460000 0.426230 0 0 0.448584 0.026900 0.016667
|
||||
0 1
|
||||
0.117647 0.560000 0.557377 0.220000 0.111111 0.508197 0.101196 0.083333
|
||||
0 1
|
||||
0.058823 0.475000 0.540984 0.130000 0.044917 0.292101 0.109308 0.066667
|
||||
0 1
|
||||
0.058823 0.485000 0.573770 0.150000 0 0.271237 0.029462 0
|
||||
0 1
|
||||
0.352941 0.545000 0.491803 0.270000 0 0.372578 0.054654 0.100000
|
||||
0 1
|
||||
0.058823 0.405000 0.606557 0.410000 0.067376 0.690015 0.434671 0.183333
|
||||
0 1
|
||||
0.294118 0.545000 0.508197 0.410000 0.152482 0.533532 0.186166 0.066667
|
||||
1 0
|
||||
0.588235 0.575000 0 0 0 0 0.078138 0.150000
|
||||
1 0
|
||||
0.117647 0.620000 0.557377 0.280000 0.242317 0.490313 0.340307 0.150000
|
||||
1 0
|
||||
0.294118 0.440000 0.639344 0.300000 0 0.411326 0.076857 0.266667
|
||||
0 1
|
||||
0.235294 0.735000 0.606557 0.250000 0.346336 0.520119 0.131085 0.150000
|
||||
0 1
|
||||
0 0.615000 0.590164 0 0 0.540984 0.076857 0.516667
|
||||
1 0
|
||||
0.588235 0.555000 0.573770 0.270000 0 0.409836 0.026900 0.316667
|
||||
1 0
|
||||
0.411765 0.415000 0.639344 0.260000 0.083924 0.436662 0.294193 0.250000
|
||||
0 1
|
||||
0.058823 0.585000 0.491803 0.230000 0.125296 0.503726 0.165670 0.100000
|
||||
0 1
|
||||
0.294118 0.620000 0.606557 0 0 0.506706 0.060632 0.283333
|
||||
1 0
|
||||
0.176471 0.615000 0.819672 0.350000 0.283688 0.853949 0.342442 0.016667
|
||||
0 1
|
||||
0.235294 0.780000 0.614754 0 0 0.719821 0.068318 0.183333
|
||||
1 0
|
||||
0 0.835000 0 0 0 0.481371 0.324936 0.150000
|
||||
1 0
|
||||
0.470588 0.455000 0.672131 0 0 0.530551 0.217336 0.783333
|
||||
0 1
|
||||
0.411765 0.535000 0.606557 0 0 0.441133 0.075149 0.166667
|
||||
1 0
|
||||
0.176471 0.510000 0.606557 0 0 0.439642 0.018360 0.183333
|
||||
0 1
|
||||
0.176471 0.650000 0.639344 0.230000 0.093381 0.423249 0.104611 0.216667
|
||||
1 0
|
||||
0.294118 0.735000 0.639344 0 0 0.502235 0.059778 0.733333
|
||||
0 1
|
||||
0.058823 0.735000 0.770492 0.410000 0 0.734724 0.119556 0.100000
|
||||
1 0
|
||||
0.294118 0.440000 0.540984 0.210000 0.027187 0.363636 0.112724 0.150000
|
||||
0 1
|
||||
0 0.535000 0.491803 0.250000 0 0.393443 0.023484 0.033333
|
||||
0 1
|
||||
0.117647 0.440000 0.606557 0.190000 0.062648 0.432191 0.064475 0.016667
|
||||
0 1
|
||||
0.411765 0.685000 0.737705 0.410000 0 0.476900 0.133646 0.300000
|
||||
0 1
|
||||
0.058823 0.525000 0.475410 0 0 0.362146 0.046541 0
|
||||
0 1
|
||||
0 0.905000 0.721311 0.440000 0.602837 0.645306 0.061486 0.083333
|
||||
1 0
|
||||
0.176471 0.865000 0.672131 0.480000 0.549645 0.572280 0.879163 0.066667
|
||||
1 0
|
||||
0.058823 0.640000 0.803279 0.410000 0.068558 0.476900 0.530743 0.200000
|
||||
1 0
|
||||
0.176471 0.555000 0.459016 0.390000 0 0.448584 0.204526 0.150000
|
||||
0 1
|
||||
0 0.505000 0.508197 0 0 0.326379 0.110162 0.066667
|
||||
0 1
|
||||
0.058823 0.690000 0.672131 0 0 0.597615 0.067464 0.116667
|
||||
0 1
|
||||
0.117647 0.500000 0.442623 0.280000 0.124113 0.563338 0.179334 0.050000
|
||||
0 1
|
||||
0.176471 0.555000 0.737705 0.120000 0.092199 0.423249 0.178053 0.133333
|
||||
0 1
|
||||
0.470588 0.370000 0.573770 0.400000 0.057920 0.526080 0.267720 0.300000
|
||||
0 1
|
||||
0 0.675000 0.770492 0.460000 0.171395 0.605067 0.087959 0.083333
|
||||
0 1
|
||||
0.411765 0.920000 0.688525 0.330000 0 0.529061 0.118275 0.333333
|
||||
1 0
|
||||
0.235294 0.945000 0.901639 0.310000 0 0.424739 0.257045 0.266667
|
||||
0 1
|
||||
0.058823 0.820000 0.672131 0.430000 0.079196 0.488823 0.112297 0.483333
|
||||
0 1
|
||||
0.176471 0.660000 0.655738 0 0 0.512668 0.138343 0.383333
|
||||
1 0
|
||||
0.529412 0.820000 0.688525 0.210000 0 0.459016 0.321520 0.183333
|
||||
1 0
|
||||
0.588235 0.740000 0.688525 0.480000 0.280142 0.560358 0.394108 0.500000
|
||||
1 0
|
||||
0.352941 0.755000 0.508197 0.310000 0.141844 0.529061 0.262169 0.116667
|
||||
0 1
|
||||
0.470588 0.665000 0.590164 0 0 0.490313 0.081981 0.300000
|
||||
1 0
|
||||
0.117647 0.525000 0.475410 0.400000 0.111111 0.520119 0.062767 0.066667
|
||||
0 1
|
||||
0.235294 0.495000 0.557377 0.380000 0 0.488823 0.028608 0.200000
|
||||
0 1
|
||||
0.058823 0.995000 0.622951 0.430000 0 0.639344 0.561913 0.016667
|
||||
1 0
|
||||
0 0.485000 0.524590 0.360000 0.118203 0.548435 0.222886 0.066667
|
||||
0 1
|
||||
0.117647 0.610000 0.622951 0.270000 0.236407 0.535022 0.172929 0.083333
|
||||
0 1
|
||||
0.058823 0.625000 0.573770 0.240000 0.130024 0.362146 0.061059 0.066667
|
||||
0 1
|
||||
0.058823 0.480000 1 0 0 0.333830 0.055081 0.100000
|
||||
0 1
|
||||
0.117647 0.550000 0.606557 0.290000 0.147754 0.482861 0.264731 0.100000
|
||||
0 1
|
||||
0.117647 0.595000 0 0 0 0.292101 0.321947 0.850000
|
||||
0 1
|
||||
0.058823 0.570000 0.540984 0.360000 0.236407 0.567809 0.090094 0
|
||||
0 1
|
||||
0.235294 0.710000 0.704918 0 0 0.655738 0.242101 0.016667
|
||||
1 0
|
||||
0.176471 0.445000 0.606557 0.160000 0.100473 0.453055 0.201964 0.283333
|
||||
0 1
|
||||
0.294118 0.695000 0.655738 0.350000 0.189125 0.470939 0.120837 0.066667
|
||||
1 0
|
||||
0 0.705000 0.688525 0.260000 0 0.482861 0.151580 0.016667
|
||||
0 1
|
||||
0.117647 0.600000 0.622951 0.370000 0.124113 0.591654 0.058497 0.133333
|
||||
0 1
|
||||
0.588235 0.460000 0.508197 0 0 0.385991 0.038002 0.166667
|
||||
0 1
|
||||
0.588235 0.470000 0.590164 0.180000 0 0.344262 0.220751 0.583333
|
||||
0 1
|
||||
0.117647 0.640000 0.639344 0.370000 0.215130 0.645306 0.489325 0.166667
|
||||
1 0
|
||||
0.411765 0.680000 0.737705 0 0 0.445604 0.056362 0.483333
|
||||
0 1
|
||||
0.764706 0.790000 0.934426 0 0 0.630402 0.076430 0.383333
|
||||
1 0
|
||||
0 0.565000 0.655738 0.160000 0 0.461997 0.339880 0
|
||||
0 1
|
||||
0.411765 0.935000 0.409836 0.330000 0.463357 0.505216 0.319385 0.216667
|
||||
1 0
|
||||
0 0.685000 0.688525 0.270000 0 0.406855 0.065329 0.633333
|
||||
0 1
|
||||
0.294118 0.385000 0.672131 0.410000 0.049645 0.533532 0.033305 0.233333
|
||||
0 1
|
||||
0.411765 0.515000 0.540984 0.320000 0 0.582712 0.113578 0.166667
|
||||
1 0
|
||||
0 0.725000 0 0 0 0.658718 0.235696 0.166667
|
||||
1 0
|
||||
0.058823 0.555000 0.704918 0.190000 0 0.448584 0.027754 0.033333
|
||||
0 1
|
||||
0 0.755000 0.737705 0.460000 0 0.627422 0.125107 0
|
||||
1 0
|
||||
0.058823 0 0.606557 0.200000 0.027187 0.412817 0.094364 0
|
||||
0 1
|
||||
0.058823 0.440000 0.639344 0.290000 0.089834 0.476900 0.122545 0.133333
|
||||
0 1
|
||||
0.294118 0.580000 0.606557 0 0 0.381520 0.052519 0.150000
|
||||
0 1
|
||||
0 0.685000 0.557377 0.140000 0.174941 0.369598 0.027754 0
|
||||
0 1
|
||||
0.764706 0.530000 0.573770 0 0 0.509687 0.073868 0.516667
|
||||
0 1
|
||||
0 0.525000 0.524590 0.410000 0.167849 0.618480 0.040564 0.016667
|
||||
0 1
|
||||
0.058823 0.455000 0.524590 0.240000 0 0.435171 0.048676 0
|
||||
0 1
|
||||
0.176471 0.420000 0.557377 0.300000 0.125296 0.475410 0.219044 0.066667
|
||||
0 1
|
||||
0.117647 0.530000 0.524590 0.350000 0.140662 0.454545 0.564475 0.216667
|
||||
0 1
|
||||
0.764706 0.725000 0.672131 0.190000 0.130024 0.330849 0.071307 0.600000
|
||||
0 1
|
||||
0.117647 0.425000 0.532787 0 0 0.590164 0.363792 0.100000
|
||||
0 1
|
||||
0.058823 0.515000 0.655738 0.110000 0.096927 0.289121 0.176345 0.016667
|
||||
0 1
|
||||
0.176471 0.305000 0.672131 0.280000 0 0.512668 0.070453 0.416667
|
||||
0 1
|
||||
0.235294 0.730000 0.639344 0 0 0.573770 0.188728 0.766667
|
||||
1 0
|
||||
0.470588 0.775000 0.508197 0.260000 0.585106 0.506706 0.198548 0.416667
|
||||
1 0
|
||||
0.176471 0.855000 0.590164 0.330000 0.159574 0.496274 0.051665 0.050000
|
||||
1 0
|
||||
0.352941 0.625000 0.557377 0.300000 0.141844 0.447094 0.164816 0.183333
|
||||
0 1
|
||||
0.235294 0.495000 0.622951 0.150000 0.060284 0.345753 0.061913 0
|
||||
0 1
|
||||
0.529412 0.620000 0.573770 0.330000 0.475177 0.527571 0.087105 0.216667
|
||||
0 1
|
||||
0.764706 0.630000 0.737705 0 0 0.646796 0.215628 0.350000
|
||||
1 0
|
||||
0.117647 0.575000 0.524590 0.220000 0 0.459016 0.146456 0
|
||||
0 1
|
||||
0.117647 0.875000 0.721311 0 0 0.341282 0.105892 0.016667
|
||||
0 1
|
||||
0.294118 0.545000 0.614754 0.260000 0 0.536513 0.199829 0.650000
|
||||
0 1
|
||||
0.058823 0.715000 0.704918 0.300000 0.390071 0.448584 0.347566 0.033333
|
||||
0 1
|
||||
0.235294 0.640000 0.573770 0 0 0.511177 0.096072 0.050000
|
||||
0 1
|
||||
0.058823 0.650000 0.491803 0.230000 0.200946 0.426230 0.262169 0
|
||||
0 1
|
||||
0.352941 0.585000 0.786885 0 0 0.427720 0.033732 0.150000
|
||||
0 1
|
||||
0.352941 0.625000 0.639344 0.310000 0 0.411326 0.207942 0.466667
|
||||
1 0
|
||||
0.352941 0.670000 0.655738 0.370000 0.437352 0.688525 0.068318 0.416667
|
||||
1 0
|
||||
0.529412 0.855000 0.901639 0.240000 0.283688 0.676602 0.274552 0.550000
|
||||
1 0
|
||||
0.411765 0.530000 0.754098 0.180000 0 0.338301 0.067037 0.450000
|
||||
0 1
|
||||
0.764706 0.645000 0 0.300000 0 0.594635 0.209650 0.383333
|
||||
1 0
|
||||
0.117647 0.435000 0 0.230000 0 0.430700 0.296755 0.066667
|
||||
0 1
|
||||
0.588235 0.810000 0.688525 0 0 0.412817 0.044406 0.550000
|
||||
0 1
|
||||
0.058823 0.555000 0.508197 0.130000 0.215130 0.357675 0.025619 0.033333
|
||||
0 1
|
||||
0.176471 0.630000 0.721311 0.410000 0.277778 0.585693 0.267293 0.100000
|
||||
0 1
|
||||
0.411765 0.665000 0.688525 0 0 0.599106 0.263877 0.266667
|
||||
0 1
|
||||
0.058823 0.445000 0.622951 0.340000 0.043735 0.464978 0.048676 0.033333
|
||||
0 1
|
||||
0.647059 0.775000 0.622951 0.280000 0.177305 0.496274 0.544406 0.500000
|
||||
1 0
|
||||
0.117647 0.635000 0.377049 0.210000 0.395981 0.512668 0.041845 0.016667
|
||||
0 1
|
||||
0.058823 0.580000 0.573770 0.280000 0 0.408346 0.053800 0
|
||||
0 1
|
||||
0 0.735000 0.696721 0.540000 0 0.637854 0.126815 0.050000
|
||||
0 1
|
||||
0 0.810000 0.622951 0.360000 0 0.739195 0.122118 0.083333
|
||||
1 0
|
||||
0 0.465000 0.819672 0.390000 0.085106 0.646796 0.402647 0.233333
|
||||
0 1
|
||||
0.058823 0.610000 0.524590 0.320000 0.184397 0.523100 0.262169 0.150000
|
||||
1 0
|
||||
0.176471 0.625000 0.475410 0 0 0.470939 0.031170 0.050000
|
||||
0 1
|
||||
0.294118 0.430000 0.557377 0.280000 0.083924 0.450075 0.122118 0.050000
|
||||
0 1
|
||||
0 0.940000 0.672131 0.140000 0.218676 0.476900 0.257899 0.016667
|
||||
1 0
|
||||
0.647059 0.715000 0.770492 0.330000 0.172577 0.545455 0.075149 0.500000
|
||||
1 0
|
||||
0.235294 0.420000 0.737705 0.230000 0.066194 0.588674 0.034586 0.066667
|
||||
0 1
|
||||
0.058823 0.500000 0.540984 0.150000 0.066194 0.351714 0.251067 0.083333
|
||||
0 1
|
||||
0.176471 0.810000 0.426230 0.380000 0 0.554396 0.245090 0.050000
|
||||
1 0
|
||||
0.470588 0.420000 0.606557 0.310000 0 0.570790 0.161827 0.300000
|
||||
0 1
|
||||
0.117647 0.420000 0 0 0 0 0.096499 0
|
||||
0 1
|
||||
0 0.885000 0.491803 0.290000 0.565012 0.515648 0.424424 0
|
||||
1 0
|
||||
0.352941 0.645000 0.737705 0.070000 0.385343 0.292101 0.215201 0.650000
|
||||
0 1
|
||||
0 0.805000 0.409836 0 0 0.326379 0.075149 0.733333
|
||||
0 1
|
||||
0.647059 0.600000 0.655738 0.370000 0.177305 0.630402 0.301879 0.450000
|
||||
1 0
|
||||
0.176471 0.410000 0.573770 0 0 0.314456 0.132792 0.066667
|
||||
0 1
|
||||
0.235294 0.590000 0.573770 0 0 0.663189 0.352690 0.083333
|
||||
0 1
|
||||
0.470588 0.930000 0.737705 0.350000 0.265957 0.514158 0.147310 0.266667
|
||||
1 0
|
||||
0.176471 0.515000 0.590164 0.300000 0.179669 0.411326 0.278395 0.100000
|
||||
0 1
|
||||
0.058823 0.500000 0.590164 0.120000 0.082742 0.377049 0.247652 0.116667
|
||||
0 1
|
||||
0.647059 0.680000 0.688525 0.350000 0.153664 0.421759 0.077711 0.350000
|
||||
1 0
|
||||
0.058823 0.905000 0.639344 0.420000 0.346336 0.596125 0.503843 0.016667
|
||||
1 0
|
||||
0.117647 0.460000 0.508197 0.280000 0 0.470939 0.022203 0.050000
|
||||
0 1
|
||||
0.647059 0.690000 0.622951 0 0 0.494784 0.146029 0.233333
|
||||
0 1
|
||||
0.058823 0.465000 0.459016 0.110000 0 0.335320 0.144748 0.016667
|
||||
0 1
|
||||
0.235294 0.615000 0.655738 0.150000 0.208038 0.476900 0.155850 0.216667
|
||||
0 1
|
||||
0.058823 0.625000 0.409836 0.400000 0.197400 0.496274 0.377455 0.116667
|
||||
1 0
|
||||
0.529412 0.530000 0.426230 0 0 0.464978 0.128950 0.350000
|
||||
0 1
|
||||
0.470588 0.715000 0.540984 0 0 0.520119 0.021776 0.333333
|
||||
1 0
|
||||
0.294118 0.585000 0.704918 0.300000 0.124113 0.582712 0.073868 0.350000
|
||||
0 1
|
||||
0.117647 0.525000 0.614754 0 0 0.347243 0.205807 0.533333
|
||||
0 1
|
||||
0.411765 0.525000 0 0 0 0 0.096926 0.050000
|
||||
0 1
|
||||
0.411765 0.530000 0.491803 0.240000 0 0.394933 0.093083 0.133333
|
||||
1 0
|
||||
0.529412 0.760000 0.639344 0.340000 0.202128 0.509687 0.347993 0.200000
|
||||
1 0
|
||||
0.117647 0.510000 0.704918 0.360000 0.141844 0.678092 0.020922 0.033333
|
||||
1 0
|
||||
0.470588 0.915000 0.524590 0 0 0.347243 0.253629 0.183333
|
||||
1 0
|
||||
0 0.430000 0.557377 0.320000 0 0.533532 0.068318 0.066667
|
||||
0 1
|
||||
0 0.520000 0.524590 0.230000 0.137116 0.414307 0.160547 0.033333
|
||||
0 1
|
||||
0.117647 0.375000 0.524590 0.240000 0.065012 0.442623 0.124680 0.200000
|
||||
0 1
|
||||
0 0.645000 0.655738 0 0 0.464978 0.266866 0.133333
|
||||
0 1
|
||||
0.235294 0.685000 0.688525 0 0 0.464978 0.074295 0.150000
|
||||
0 1
|
||||
0.235294 0.585000 0.508197 0.120000 0 0.442623 0.128950 0.150000
|
||||
1 0
|
||||
0.294118 0.650000 0.672131 0 0 0.582712 0.374893 0.266667
|
||||
1 0
|
||||
0.235294 0.720000 0.672131 0.320000 0 0.573770 0.203245 0.266667
|
||||
1 0
|
||||
0.294118 0.495000 0.606557 0.270000 0 0.432191 0.053373 0.183333
|
||||
0 1
|
||||
0.058823 0.485000 0.573770 0.400000 0 0.567809 0.059778 0.150000
|
||||
0 1
|
||||
0.058823 0.420000 0.524590 0.230000 0.135934 0.549925 0.167805 0.116667
|
||||
0 1
|
||||
0.411765 0.890000 0.688525 0 0 0.594635 0.108027 0.333333
|
||||
1 0
|
||||
0 0.470000 0.573770 0.270000 0.135934 0.648286 0.114859 0
|
||||
0 1
|
||||
0.470588 0.325000 0.590164 0.230000 0 0.476900 0.222886 0.350000
|
||||
0 1
|
||||
0 0.685000 0.327869 0.350000 0.198582 0.642325 0.943638 0.200000
|
||||
1 0
|
||||
0.352941 0.595000 0.409836 0.220000 0.208038 0.403875 0.529462 0.200000
|
||||
1 0
|
||||
0.235294 0.600000 0.557377 0 0 0.441133 0.269428 0.216667
|
||||
0 1
|
||||
0.588235 0.645000 0.508197 0.360000 0 0.614009 0.154996 0.283333
|
||||
1 0
|
||||
0.529412 0.510000 0.622951 0.370000 0 0.490313 0.250640 0.416667
|
||||
1 0
|
||||
0.058823 0.610000 0.737705 0.510000 0.260047 0.740686 0.105465 0.166667
|
||||
1 0
|
||||
0.058823 0.435000 0.491803 0.370000 0.088652 0.554396 0.184031 0.016667
|
||||
0 1
|
||||
0.117647 0.415000 0.540984 0.230000 0.059102 0.479881 0.178907 0.016667
|
||||
0 1
|
||||
0 0.695000 0.508197 0.170000 0.248227 0.329359 0.055081 0
|
||||
0 1
|
||||
0.352941 0.425000 0.639344 0 0 0.464978 0.129804 0.350000
|
||||
0 1
|
||||
0 0.585000 0 0 0 0.503726 0.364646 0.383333
|
||||
0 1
|
||||
0.529412 0.595000 0.655738 0.350000 0 0.432191 0.078992 0.133333
|
||||
1 0
|
||||
0.058823 0.530000 0.573770 0.280000 0.159574 0.509687 0.027327 0.016667
|
||||
0 1
|
||||
0.352941 0.400000 0.655738 0.360000 0 0.593145 0.042272 0.116667
|
||||
0 1
|
||||
0.235294 0.450000 0.721311 0.470000 0.063830 0.561848 0.121264 0.133333
|
||||
0 1
|
||||
0.117647 0.610000 0.573770 0.270000 0 0.548435 0.111870 0.100000
|
||||
0 1
|
||||
0.176471 0.845000 0.606557 0.190000 0.147754 0.445604 0.081127 0.166667
|
||||
1 0
|
||||
0.058823 0.555000 0.770492 0 0 0.488823 0.079846 0.400000
|
||||
0 1
|
||||
0.529412 0.700000 0.770492 0 0 0.487332 0.280102 0.400000
|
||||
1 0
|
||||
0.529412 0.850000 0.606557 0.310000 0 0.655738 0.138770 0.366667
|
||||
1 0
|
||||
0.117647 0.720000 0.475410 0.330000 0.159574 0.470939 0.146883 0.066667
|
||||
1 0
|
||||
0.235294 0.635000 0.721311 0.110000 0.183215 0.514158 0.222032 0.116667
|
||||
0 1
|
||||
0.588235 0.340000 0.868852 0.230000 0.057920 0.529061 0.088386 0.433333
|
||||
0 1
|
||||
0.705882 0.500000 0.688525 0.330000 0.124113 0.447094 0.175064 0.416667
|
||||
0 1
|
||||
0.529412 0.780000 0.704918 0.280000 0.183215 0.511177 0.474381 0.350000
|
||||
1 0
|
||||
0.235294 0.645000 0.491803 0.120000 0.273050 0.409836 0.191716 0.166667
|
||||
0 1
|
||||
0.117647 0.475000 0.442623 0.140000 0.104019 0.388972 0.286080 0.016667
|
||||
0 1
|
||||
0.058823 0.400000 0.450820 0 0 0.284650 0.076857 0
|
||||
0 1
|
||||
0.470588 0.495000 0.688525 0 0 0.527571 0.132365 0.483333
|
||||
0 1
|
||||
0.058823 0.730000 0.459016 0 0 0.442623 0.207515 0.133333
|
||||
0 1
|
||||
0.470588 0.525000 0.819672 0.360000 0 0.645306 0.068745 0.400000
|
||||
1 0
|
||||
0.294118 0.570000 0.606557 0 0 0.371088 0.284372 0.600000
|
||||
0 1
|
||||
0.176471 0.955000 0.557377 0.150000 0.153664 0.460507 0.094364 0.216667
|
||||
0 1
|
||||
0.235294 0.725000 0.672131 0.180000 0 0.484352 0.067037 0.816667
|
||||
1 0
|
||||
0.411765 0.620000 0.573770 0.330000 0.254137 0.380030 0.035440 0.266667
|
||||
0 1
|
||||
0.058823 0.450000 0.508197 0.180000 0.069740 0.374069 0.508113 0.066667
|
||||
0 1
|
||||
0.117647 0.775000 0.426230 0.270000 0.638298 0.576751 0.069172 0.066667
|
||||
1 0
|
||||
0.411765 0.795000 0.524590 0 0 0.408346 0.092229 0.316667
|
||||
0 1
|
||||
0.352941 0.575000 0.491803 0.390000 0 0.502235 0.071307 0.316667
|
||||
1 0
|
||||
0 0.545000 0.721311 0.300000 0 0.484352 0.331768 0.283333
|
||||
1 0
|
||||
0.117647 0.730000 0.622951 0.350000 0.229314 0.569300 0.107173 0.133333
|
||||
0 1
|
||||
0.058823 0.400000 0.606557 0.110000 0.070922 0.447094 0.191716 0.016667
|
||||
0 1
|
||||
0 0.510000 0.639344 0.400000 0.106383 0.514158 0.068318 0.050000
|
||||
0 1
|
||||
0.117647 0.710000 0.672131 0.180000 0.075650 0.368107 0.291631 0
|
||||
0 1
|
||||
0.058823 0.410000 0.524590 0.130000 0.112293 0.315946 0.143894 0.033333
|
||||
0 1
|
||||
0.117647 0.635000 0.475410 0.240000 0.325059 0.412817 0.649872 0.066667
|
||||
0 1
|
||||
0 0.465000 0.491803 0 0 0.526080 0.078992 0.066667
|
||||
0 1
|
||||
0.176471 0.510000 0.360656 0.200000 0.111111 0.459016 0.137489 0.083333
|
||||
0 1
|
||||
0.117647 0.495000 0 0 0 0.330849 0.012810 0.033333
|
||||
0 1
|
||||
0.470588 0.980000 0.622951 0.290000 0.330969 0.558867 0.225021 0.600000
|
||||
1 0
|
||||
0.058823 0.715000 0.606557 0.220000 0.072104 0.390462 0.076003 0
|
||||
0 1
|
||||
0 0.505000 0.532787 0.280000 0 0.366617 0.067891 0.016667
|
||||
0 1
|
||||
0 0.555000 0.532787 0 0 0.366617 0.248506 0.166667
|
||||
0 1
|
||||
0.176471 0.565000 0.409836 0.100000 0.100473 0.439642 0.233988 0.066667
|
||||
0 1
|
||||
0.294118 0.555000 0.590164 0.280000 0 0.356185 0.140478 0.100000
|
||||
0 1
|
||||
0.117647 0.730000 0.573770 0.380000 0.425532 0.417288 0.110589 0.133333
|
||||
1 0
|
||||
0.470588 0.940000 0.639344 0 0 0.713860 0.025192 0.366667
|
||||
1 0
|
||||
0.058823 0.435000 0.557377 0.340000 0.091017 0.560358 0.137916 0.050000
|
||||
0 1
|
||||
0.176471 0.555000 0.475410 0.310000 0.052010 0.439642 0.150299 0.016667
|
||||
0 1
|
||||
0.764706 0.765000 0.721311 0.370000 0.165485 0.605067 0.467976 0.300000
|
||||
0 1
|
||||
0 0.505000 0.524590 0.170000 0 0.312966 0.074295 0
|
||||
0 1
|
||||
0 0.455000 0.655738 0 0 0.482861 0.223313 0.100000
|
||||
0 1
|
||||
0 0.675000 0.557377 0.420000 0.295508 0.630402 0.122545 0.050000
|
||||
1 0
|
||||
0.058823 0.355000 0.393443 0.180000 0.089834 0.304024 0.104611 0.016667
|
||||
0 1
|
||||
0.411765 0.800000 0.442623 0.320000 0.206856 0.454545 0.217763 0.300000
|
||||
1 0
|
||||
0 0.335000 0.622951 0 0 0.675112 0.049530 0.416667
|
||||
0 1
|
||||
0.529412 0.610000 0.459016 0 0 0.496274 0.442357 0.200000
|
||||
1 0
|
||||
0.588235 0.695000 0.655738 0 0 0.403875 0.581981 0.600000
|
||||
0 1
|
||||
0.235294 0.455000 0.573770 0.320000 0.104019 0.493294 0.157131 0.016667
|
||||
0 1
|
||||
0.352941 0.460000 0.754098 0 0 0.296572 0.046968 0.116667
|
||||
0 1
|
||||
0.352941 0.510000 0.672131 0 0 0.459016 0.043552 0.250000
|
||||
1 0
|
||||
0.588235 0.665000 0.557377 0 0 0.402385 0.071307 0.250000
|
||||
0 1
|
||||
0.176471 0.910000 0.606557 0 0 0.454545 0.114005 0.133333
|
||||
1 0
|
||||
0.352941 0.400000 0.540984 0.300000 0 0.390462 0.100342 0.333333
|
||||
0 1
|
||||
0.058823 0.640000 0.672131 0.170000 0.216312 0.409836 0.015798 0.016667
|
||||
0 1
|
||||
0.058823 0.900000 0 0 0 0.645306 0.087105 0.333333
|
||||
1 0
|
||||
0.411765 0.750000 0.540984 0.420000 0.404255 0.517139 0.273271 0.350000
|
||||
0 1
|
||||
0 0.455000 0.557377 0.320000 0.248227 0.594635 0.129377 0.066667
|
||||
0 1
|
||||
0.176471 0.880000 0.704918 0.270000 0.184397 0.496274 0.459436 0.516667
|
||||
1 0
|
||||
0.117647 0.435000 0.475410 0.160000 0.061466 0.487332 0.037575 0.066667
|
||||
0 1
|
||||
0.294118 0.935000 0.622951 0.270000 0.244681 0.649776 0.408198 0.533333
|
||||
1 0
|
||||
0.352941 0.615000 0.590164 0.450000 0.271868 0.500745 0.279675 0.216667
|
||||
0 1
|
||||
0.294118 0.615000 0.606557 0.400000 0.091017 0.508197 0.081554 0.116667
|
||||
0 1
|
||||
0.352941 0.770000 0.639344 0.410000 0.165485 0.687034 0.210504 0.100000
|
||||
0 1
|
||||
0.117647 0.615000 0.393443 0.320000 0.195035 0.627422 0.188728 0.083333
|
||||
0 1
|
||||
0.235294 0.485000 0.491803 0.230000 0 0.420268 0.155850 0.016667
|
||||
0 1
|
||||
0.823529 0.500000 0.639344 0.250000 0.217494 0.545455 0.142613 0.416667
|
||||
1 0
|
||||
0.176471 0.535000 0.508197 0.130000 0.056738 0.341282 0.256191 0.033333
|
||||
1 0
|
||||
0.411765 0.710000 0.737705 0.240000 0.567376 0.453055 0.021349 0.366667
|
||||
1 0
|
||||
0.411765 0.570000 0.622951 0.170000 0.130024 0.354694 0.165670 0.166667
|
||||
0 1
|
||||
0.352941 0.735000 0.655738 0 0 0.439642 0.042698 0.483333
|
||||
1 0
|
||||
0.058823 0.560000 0.590164 0.300000 0.208038 0.512668 0.192143 0.066667
|
||||
0 1
|
||||
0.352941 0.435000 0.655738 0 0 0.345753 0.002562 0.183333
|
||||
0 1
|
||||
0.647059 0.690000 0.606557 0.260000 0.170213 0.538003 0.204526 0.483333
|
||||
1 0
|
||||
0 0.945000 0.852459 0.250000 0 0.511177 0.152434 0.333333
|
||||
1 0
|
||||
0.176471 0.640000 0.590164 0.250000 0.224586 0.482861 0.201110 0.100000
|
||||
1 0
|
||||
0.058823 0.715000 0.688525 0.230000 0.366430 0.631893 0.426132 0.016667
|
||||
0 1
|
||||
0 0.535000 0.622951 0 0 0.675112 0.259607 0.050000
|
||||
0 1
|
||||
0.705882 0.755000 0.573770 0.400000 0.320331 0.622951 0.283518 0.283333
|
||||
1 0
|
||||
0.058823 0.500000 0.606557 0.120000 0.054373 0.290611 0.030316 0.116667
|
||||
0 1
|
||||
0.411765 0.895000 0.778689 0.310000 0 0.509687 0.036721 0.650000
|
||||
0 1
|
||||
0.058823 0.545000 0.311475 0.180000 0.141844 0.344262 0.140478 0.083333
|
||||
0 1
|
||||
0.176471 0.390000 0.409836 0.320000 0.104019 0.461997 0.072587 0.083333
|
||||
1 0
|
||||
0.235294 0.770000 0.508197 0.310000 0.335697 0.488823 0.067891 0.033333
|
||||
0 1
|
||||
0.588235 0.625000 0.573770 0.260000 0.135934 0.463487 0.054227 0.333333
|
||||
1 0
|
||||
0.705882 0.420000 0.590164 0.310000 0 0.442623 0.093510 0.416667
|
||||
1 0
|
||||
0.176471 0.405000 0.704918 0.160000 0.078014 0.409836 0.097353 0.016667
|
||||
0 1
|
||||
0.176471 0.610000 0.639344 0 0 0.342772 0.075149 0.316667
|
||||
0 1
|
||||
0.235294 0.460000 0.655738 0 0 0.628912 0.067891 0.133333
|
||||
0 1
|
||||
0.117647 0.450000 0.655738 0.140000 0.065012 0.363636 0.073014 0.050000
|
||||
0 1
|
||||
0.470588 0.475000 0.590164 0 0 0.548435 0.173783 0.600000
|
||||
0 1
|
||||
0 0.600000 0.606557 0.180000 0.074468 0.454545 0.088386 0.083333
|
||||
0 1
|
||||
0.294118 0.810000 0.852459 0 0 0.561848 0.031170 0.516667
|
||||
1 0
|
||||
0.294118 0.515000 0.885246 0.370000 0 0.584203 0.096926 0.733333
|
||||
0 1
|
||||
0.470588 0.620000 0.622951 0.240000 0.709220 0.427720 0.260034 0.516667
|
||||
1 0
|
||||
0.117647 0.870000 0.721311 0.370000 0.141844 0.663189 0.242528 0.050000
|
||||
1 0
|
||||
0.058823 0.720000 0.672131 0.460000 0.212766 0.687034 0.109735 0.416667
|
||||
1 0
|
||||
0.294118 0.945000 0.524590 0.330000 0.384161 0.464978 0.215628 0.133333
|
||||
1 0
|
||||
0.352941 0.480000 0 0 0 0.353204 0.047822 0.116667
|
||||
0 1
|
||||
0.588235 0.505000 0.622951 0.480000 0.212766 0.490313 0.039710 0.700000
|
||||
0 1
|
||||
0.117647 0.535000 0.606557 0.300000 0.118203 0.500745 0.139197 0.033333
|
||||
0 1
|
||||
0.058823 0.980000 0.622951 0.360000 0.294326 0.543964 0.340307 0.133333
|
||||
1 0
|
||||
0.117647 0.460000 0.622951 0.200000 0 0.360656 0.691716 0.116667
|
||||
0 1
|
||||
0.235294 0.550000 0.622951 0.200000 0.118203 0.423249 0.017079 0.100000
|
||||
0 1
|
||||
0.411765 0.840000 0.721311 0.420000 0.379433 0.569300 0.302733 0.316667
|
||||
1 0
|
||||
0.117647 0.415000 0.532787 0.280000 0.078014 0.548435 0.235269 0.050000
|
||||
0 1
|
||||
0.176471 0.370000 0.557377 0.280000 0.053192 0.442623 0.091802 0.033333
|
||||
0 1
|
||||
0.294118 0.610000 0.704918 0 0 0.517139 0.090521 0.200000
|
||||
0 1
|
||||
0.058823 0.500000 0.540984 0.290000 0.231678 0.476900 0.156277 0.350000
|
||||
0 1
|
||||
0.058823 0.385000 0.459016 0.300000 0.066194 0.496274 0.500854 0.050000
|
||||
0 1
|
||||
0.058823 0.455000 0.442623 0.250000 0.118203 0.375559 0.066610 0.033333
|
||||
0 1
|
||||
0 0.605000 0.540984 0.300000 0.195035 0.511177 0.053373 0.200000
|
||||
1 0
|
||||
0.352941 0.620000 0.590164 0 0 0.411326 0.123826 0.133333
|
||||
1 0
|
||||
0.235294 0.570000 0.524590 0 0 0.430700 0.020495 0.050000
|
||||
0 1
|
||||
0 0.810000 0.622951 0.560000 0.118203 0.792846 0.290777 0.066667
|
||||
1 0
|
||||
0.058823 0.545000 0.475410 0.180000 0.137116 0.424739 0.060205 0.016667
|
||||
0 1
|
||||
0.058823 0.835000 0.606557 0.170000 0.170213 0.348733 0.157558 0.200000
|
||||
1 0
|
||||
0.117647 0.605000 0.573770 0.320000 0.112293 0.582712 0.345004 0.033333
|
||||
0 1
|
||||
0.529412 0.825000 0.721311 0 0 0.453055 0.095645 0.466667
|
||||
1 0
|
||||
0.294118 0.790000 0.573770 0 0 0.444113 0.055081 0.700000
|
||||
0 1
|
||||
0.058823 0.865000 0.606557 0 0 0.548435 0.004270 0.283333
|
||||
1 0
|
||||
0.470588 0.880000 0.737705 0.340000 0.354610 0.502235 0.166097 0.616667
|
||||
1 0
|
||||
0.176471 0.645000 0.754098 0.490000 0.183215 0.542474 0.380017 0.183333
|
||||
1 0
|
||||
0.117647 0.705000 0.475410 0.340000 0.151300 0.378539 0.265158 0.050000
|
||||
0 1
|
||||
0 0.465000 0.491803 0.250000 0.108747 0.427720 0.193851 0.016667
|
||||
0 1
|
||||
0.058823 0.535000 0.409836 0.190000 0 0.421759 0.043979 0.133333
|
||||
0 1
|
||||
0.294118 0.830000 0.622951 0 0 0.681073 0.111870 0.100000
|
||||
1 0
|
||||
0.058823 0.505000 0.409836 0.150000 0.042553 0.360656 0.191289 0.083333
|
||||
0 1
|
||||
0.647059 0.515000 0.557377 0.400000 0 0.688525 0.020495 0.350000
|
||||
0 1
|
||||
0.352941 0.535000 0.721311 0 0 0.548435 0.277114 0.166667
|
||||
0 1
|
||||
0.294118 0.575000 0.803279 0 0 0.788376 0.055935 0.116667
|
||||
1 0
|
||||
0.294118 0.540000 0.590164 0.430000 0.088652 0.538003 0.078992 0.200000
|
||||
0 1
|
||||
0 0.635000 0.655738 0.370000 0.248227 0.540984 0.309991 0.033333
|
||||
0 1
|
||||
0.470588 0.540000 0.573770 0 0 0.454545 0.374466 0.200000
|
||||
1 0
|
||||
0.176471 0.750000 0.622951 0 0 0.312966 0.055081 0.266667
|
||||
0 1
|
||||
0.235294 0.770000 0.590164 0.290000 0.148936 0.466468 0.111016 0.266667
|
||||
0 1
|
||||
0 0.900000 0.540984 0.390000 0 0.625931 0.774979 0.066667
|
||||
1 0
|
||||
0.058823 0.565000 0.524590 0.350000 0 0.500745 0.198548 0
|
||||
1 0
|
||||
0.117647 0.590000 0.655738 0 0 0.639344 0.262596 0
|
||||
1 0
|
||||
0.529412 0.615000 0.573770 0.440000 0.111111 0.493294 0.126388 0.316667
|
||||
0 1
|
||||
0.235294 0.660000 0 0 0 0.490313 0.095645 0.033333
|
||||
1 0
|
||||
0.176471 0.440000 0.475410 0.110000 0.063830 0.369598 0.080700 0.016667
|
||||
0 1
|
||||
0.235294 0.855000 0.590164 0 0 0.649776 0.171221 0.083333
|
||||
1 0
|
||||
0.352941 0.830000 0.606557 0 0 0.396423 0.096499 0.750000
|
||||
0 1
|
||||
0 0.520000 0.622951 0 0 0.274218 0.215201 0.100000
|
||||
0 1
|
||||
0.117647 0.500000 0.557377 0.250000 0.083924 0.573770 0.105038 0.083333
|
||||
0 1
|
||||
0.294118 0.790000 0.688525 0.410000 0.248227 0.587183 0.135354 0.133333
|
||||
1 0
|
||||
0.058823 0.545000 0.491803 0.080000 0.215130 0.378539 0.371050 0
|
||||
0 1
|
||||
0.058823 0.475000 0.606557 0.210000 0.086288 0.385991 0.254056 0.250000
|
||||
0 1
|
||||
0.470588 0.835000 0.868852 0.460000 0.273050 0.560358 0.037148 0.366667
|
||||
1 0
|
||||
0.117647 0.540000 0.524590 0 0 0.459016 0.034159 0
|
||||
0 1
|
||||
0.352941 0.685000 0.500000 0 0 0.360656 0.031170 0.566667
|
||||
0 1
|
||||
0.294118 0.575000 0.622951 0 0 0.464978 0.113151 0.383333
|
||||
1 0
|
||||
0.352941 0.515000 0.590164 0.320000 0.224586 0.561848 0.105038 0.566667
|
||||
0 1
|
||||
0 0.285000 0.491803 0 0 0.323398 0.280529 0.766667
|
||||
0 1
|
||||
0.294118 0.585000 0.754098 0 0 0.508197 0.110589 0.283333
|
||||
0 1
|
||||
0 0.645000 0.901639 0.460000 0.153664 1 0.102904 0.083333
|
||||
1 0
|
||||
0 0.730000 0.672131 0 0 0.603577 0.727156 0.383333
|
||||
0 1
|
||||
0.058823 0.620000 0.606557 0.360000 0 0.414307 0.009394 0.150000
|
||||
0 1
|
||||
0.058823 0.485000 0.557377 0.210000 0 0.405365 0.434244 0.016667
|
||||
0 1
|
||||
0.235294 0.730000 0.754098 0 0 0.464978 0.196840 0.666667
|
||||
1 0
|
||||
0.470588 0.590000 0.590164 0.190000 0 0.344262 0.596926 0.416667
|
||||
0 1
|
||||
0.176471 0.480000 0.639344 0.390000 0 0.555887 0.068318 0.316667
|
||||
0 1
|
||||
0.176471 0.640000 0.639344 0 0 0.314456 0.081127 0.566667
|
||||
0 1
|
||||
0.764706 0.760000 0.737705 0.330000 0.034279 0.399404 0.278822 0.366667
|
||||
1 0
|
||||
0.352941 0.915000 0.770492 0 0 0.608048 0.590521 0.400000
|
||||
0 1
|
||||
0.176471 0.790000 0.524590 0.130000 0.457447 0.464978 0.092656 0.050000
|
||||
0 1
|
||||
0.058823 0.445000 0.540984 0.230000 0.111111 0.418778 0.038002 0
|
||||
0 1
|
||||
0.235294 0.560000 0.639344 0.400000 0 0.587183 0.067464 0.283333
|
||||
0 1
|
||||
0.411765 0.645000 0.557377 0.490000 0.147754 0.573770 0.154142 0.366667
|
||||
1 0
|
||||
0.176471 0.530000 0.590164 0 0 0.384501 0.055081 0.100000
|
||||
0 1
|
||||
0.529412 0.670000 0.606557 0.330000 0.070922 0.385991 0.163108 1
|
||||
0 1
|
||||
0.294118 0.480000 0.606557 0.180000 0.079196 0.500745 0.392400 0.366667
|
||||
0 1
|
||||
0.235294 0.415000 0.704918 0.190000 0 0.436662 0.102050 0.216667
|
||||
0 1
|
||||
0.235294 0.755000 0.737705 0.380000 0 0.442623 0.092229 0.250000
|
||||
0 1
|
||||
0.411765 0.905000 0.688525 0.210000 0.226950 0.535022 0.216909 0.500000
|
||||
1 0
|
||||
0.176471 0.580000 0 0 0 0.350224 0.046541 0.033333
|
||||
0 1
|
||||
0.117647 0.405000 0.590164 0.150000 0.089834 0.448584 0.200256 0.066667
|
||||
0 1
|
||||
0.117647 0.560000 0.639344 0.500000 0.165485 0.587183 0.041418 0.050000
|
||||
0 1
|
3175
lib/ann/fann/datasets/gene.test
Normal file
3177
lib/ann/fann/datasets/gene.train
Normal file
4097
lib/ann/fann/datasets/kin32fm.test
Normal file
4097
lib/ann/fann/datasets/kin32fm.train
Normal file
8125
lib/ann/fann/datasets/mushroom.test
Normal file
8125
lib/ann/fann/datasets/mushroom.train
Normal file
16385
lib/ann/fann/datasets/parity13.test
Normal file
16385
lib/ann/fann/datasets/parity13.train
Normal file
513
lib/ann/fann/datasets/parity8.test
Normal file
@ -0,0 +1,513 @@
|
||||
256 8 1
|
||||
0 0 0 0 0 0 0 0
|
||||
0
|
||||
1 0 0 0 0 0 0 0
|
||||
1
|
||||
0 1 0 0 0 0 0 0
|
||||
1
|
||||
1 1 0 0 0 0 0 0
|
||||
0
|
||||
0 0 1 0 0 0 0 0
|
||||
1
|
||||
1 0 1 0 0 0 0 0
|
||||
0
|
||||
0 1 1 0 0 0 0 0
|
||||
0
|
||||
1 1 1 0 0 0 0 0
|
||||
1
|
||||
0 0 0 1 0 0 0 0
|
||||
1
|
||||
1 0 0 1 0 0 0 0
|
||||
0
|
||||
0 1 0 1 0 0 0 0
|
||||
0
|
||||
1 1 0 1 0 0 0 0
|
||||
1
|
||||
0 0 1 1 0 0 0 0
|
||||
0
|
||||
1 0 1 1 0 0 0 0
|
||||
1
|
||||
0 1 1 1 0 0 0 0
|
||||
1
|
||||
1 1 1 1 0 0 0 0
|
||||
0
|
||||
0 0 0 0 1 0 0 0
|
||||
1
|
||||
1 0 0 0 1 0 0 0
|
||||
0
|
||||
0 1 0 0 1 0 0 0
|
||||
0
|
||||
1 1 0 0 1 0 0 0
|
||||
1
|
||||
0 0 1 0 1 0 0 0
|
||||
0
|
||||
1 0 1 0 1 0 0 0
|
||||
1
|
||||
0 1 1 0 1 0 0 0
|
||||
1
|
||||
1 1 1 0 1 0 0 0
|
||||
0
|
||||
0 0 0 1 1 0 0 0
|
||||
0
|
||||
1 0 0 1 1 0 0 0
|
||||
1
|
||||
0 1 0 1 1 0 0 0
|
||||
1
|
||||
1 1 0 1 1 0 0 0
|
||||
0
|
||||
0 0 1 1 1 0 0 0
|
||||
1
|
||||
1 0 1 1 1 0 0 0
|
||||
0
|
||||
0 1 1 1 1 0 0 0
|
||||
0
|
||||
1 1 1 1 1 0 0 0
|
||||
1
|
||||
0 0 0 0 0 1 0 0
|
||||
1
|
||||
1 0 0 0 0 1 0 0
|
||||
0
|
||||
0 1 0 0 0 1 0 0
|
||||
0
|
||||
1 1 0 0 0 1 0 0
|
||||
1
|
||||
0 0 1 0 0 1 0 0
|
||||
0
|
||||
1 0 1 0 0 1 0 0
|
||||
1
|
||||
0 1 1 0 0 1 0 0
|
||||
1
|
||||
1 1 1 0 0 1 0 0
|
||||
0
|
||||
0 0 0 1 0 1 0 0
|
||||
0
|
||||
1 0 0 1 0 1 0 0
|
||||
1
|
||||
0 1 0 1 0 1 0 0
|
||||
1
|
||||
1 1 0 1 0 1 0 0
|
||||
0
|
||||
0 0 1 1 0 1 0 0
|
||||
1
|
||||
1 0 1 1 0 1 0 0
|
||||
0
|
||||
0 1 1 1 0 1 0 0
|
||||
0
|
||||
1 1 1 1 0 1 0 0
|
||||
1
|
||||
0 0 0 0 1 1 0 0
|
||||
0
|
||||
1 0 0 0 1 1 0 0
|
||||
1
|
||||
0 1 0 0 1 1 0 0
|
||||
1
|
||||
1 1 0 0 1 1 0 0
|
||||
0
|
||||
0 0 1 0 1 1 0 0
|
||||
1
|
||||
1 0 1 0 1 1 0 0
|
||||
0
|
||||
0 1 1 0 1 1 0 0
|
||||
0
|
||||
1 1 1 0 1 1 0 0
|
||||
1
|
||||
0 0 0 1 1 1 0 0
|
||||
1
|
||||
1 0 0 1 1 1 0 0
|
||||
0
|
||||
0 1 0 1 1 1 0 0
|
||||
0
|
||||
1 1 0 1 1 1 0 0
|
||||
1
|
||||
0 0 1 1 1 1 0 0
|
||||
0
|
||||
1 0 1 1 1 1 0 0
|
||||
1
|
||||
0 1 1 1 1 1 0 0
|
||||
1
|
||||
1 1 1 1 1 1 0 0
|
||||
0
|
||||
0 0 0 0 0 0 1 0
|
||||
1
|
||||
1 0 0 0 0 0 1 0
|
||||
0
|
||||
0 1 0 0 0 0 1 0
|
||||
0
|
||||
1 1 0 0 0 0 1 0
|
||||
1
|
||||
0 0 1 0 0 0 1 0
|
||||
0
|
||||
1 0 1 0 0 0 1 0
|
||||
1
|
||||
0 1 1 0 0 0 1 0
|
||||
1
|
||||
1 1 1 0 0 0 1 0
|
||||
0
|
||||
0 0 0 1 0 0 1 0
|
||||
0
|
||||
1 0 0 1 0 0 1 0
|
||||
1
|
||||
0 1 0 1 0 0 1 0
|
||||
1
|
||||
1 1 0 1 0 0 1 0
|
||||
0
|
||||
0 0 1 1 0 0 1 0
|
||||
1
|
||||
1 0 1 1 0 0 1 0
|
||||
0
|
||||
0 1 1 1 0 0 1 0
|
||||
0
|
||||
1 1 1 1 0 0 1 0
|
||||
1
|
||||
0 0 0 0 1 0 1 0
|
||||
0
|
||||
1 0 0 0 1 0 1 0
|
||||
1
|
||||
0 1 0 0 1 0 1 0
|
||||
1
|
||||
1 1 0 0 1 0 1 0
|
||||
0
|
||||
0 0 1 0 1 0 1 0
|
||||
1
|
||||
1 0 1 0 1 0 1 0
|
||||
0
|
||||
0 1 1 0 1 0 1 0
|
||||
0
|
||||
1 1 1 0 1 0 1 0
|
||||
1
|
||||
0 0 0 1 1 0 1 0
|
||||
1
|
||||
1 0 0 1 1 0 1 0
|
||||
0
|
||||
0 1 0 1 1 0 1 0
|
||||
0
|
||||
1 1 0 1 1 0 1 0
|
||||
1
|
||||
0 0 1 1 1 0 1 0
|
||||
0
|
||||
1 0 1 1 1 0 1 0
|
||||
1
|
||||
0 1 1 1 1 0 1 0
|
||||
1
|
||||
1 1 1 1 1 0 1 0
|
||||
0
|
||||
0 0 0 0 0 1 1 0
|
||||
0
|
||||
1 0 0 0 0 1 1 0
|
||||
1
|
||||
0 1 0 0 0 1 1 0
|
||||
1
|
||||
1 1 0 0 0 1 1 0
|
||||
0
|
||||
0 0 1 0 0 1 1 0
|
||||
1
|
||||
1 0 1 0 0 1 1 0
|
||||
0
|
||||
0 1 1 0 0 1 1 0
|
||||
0
|
||||
1 1 1 0 0 1 1 0
|
||||
1
|
||||
0 0 0 1 0 1 1 0
|
||||
1
|
||||
1 0 0 1 0 1 1 0
|
||||
0
|
||||
0 1 0 1 0 1 1 0
|
||||
0
|
||||
1 1 0 1 0 1 1 0
|
||||
1
|
||||
0 0 1 1 0 1 1 0
|
||||
0
|
||||
1 0 1 1 0 1 1 0
|
||||
1
|
||||
0 1 1 1 0 1 1 0
|
||||
1
|
||||
1 1 1 1 0 1 1 0
|
||||
0
|
||||
0 0 0 0 1 1 1 0
|
||||
1
|
||||
1 0 0 0 1 1 1 0
|
||||
0
|
||||
0 1 0 0 1 1 1 0
|
||||
0
|
||||
1 1 0 0 1 1 1 0
|
||||
1
|
||||
0 0 1 0 1 1 1 0
|
||||
0
|
||||
1 0 1 0 1 1 1 0
|
||||
1
|
||||
0 1 1 0 1 1 1 0
|
||||
1
|
||||
1 1 1 0 1 1 1 0
|
||||
0
|
||||
0 0 0 1 1 1 1 0
|
||||
0
|
||||
1 0 0 1 1 1 1 0
|
||||
1
|
||||
0 1 0 1 1 1 1 0
|
||||
1
|
||||
1 1 0 1 1 1 1 0
|
||||
0
|
||||
0 0 1 1 1 1 1 0
|
||||
1
|
||||
1 0 1 1 1 1 1 0
|
||||
0
|
||||
0 1 1 1 1 1 1 0
|
||||
0
|
||||
1 1 1 1 1 1 1 0
|
||||
1
|
||||
0 0 0 0 0 0 0 1
|
||||
1
|
||||
1 0 0 0 0 0 0 1
|
||||
0
|
||||
0 1 0 0 0 0 0 1
|
||||
0
|
||||
1 1 0 0 0 0 0 1
|
||||
1
|
||||
0 0 1 0 0 0 0 1
|
||||
0
|
||||
1 0 1 0 0 0 0 1
|
||||
1
|
||||
0 1 1 0 0 0 0 1
|
||||
1
|
||||
1 1 1 0 0 0 0 1
|
||||
0
|
||||
0 0 0 1 0 0 0 1
|
||||
0
|
||||
1 0 0 1 0 0 0 1
|
||||
1
|
||||
0 1 0 1 0 0 0 1
|
||||
1
|
||||
1 1 0 1 0 0 0 1
|
||||
0
|
||||
0 0 1 1 0 0 0 1
|
||||
1
|
||||
1 0 1 1 0 0 0 1
|
||||
0
|
||||
0 1 1 1 0 0 0 1
|
||||
0
|
||||
1 1 1 1 0 0 0 1
|
||||
1
|
||||
0 0 0 0 1 0 0 1
|
||||
0
|
||||
1 0 0 0 1 0 0 1
|
||||
1
|
||||
0 1 0 0 1 0 0 1
|
||||
1
|
||||
1 1 0 0 1 0 0 1
|
||||
0
|
||||
0 0 1 0 1 0 0 1
|
||||
1
|
||||
1 0 1 0 1 0 0 1
|
||||
0
|
||||
0 1 1 0 1 0 0 1
|
||||
0
|
||||
1 1 1 0 1 0 0 1
|
||||
1
|
||||
0 0 0 1 1 0 0 1
|
||||
1
|
||||
1 0 0 1 1 0 0 1
|
||||
0
|
||||
0 1 0 1 1 0 0 1
|
||||
0
|
||||
1 1 0 1 1 0 0 1
|
||||
1
|
||||
0 0 1 1 1 0 0 1
|
||||
0
|
||||
1 0 1 1 1 0 0 1
|
||||
1
|
||||
0 1 1 1 1 0 0 1
|
||||
1
|
||||
1 1 1 1 1 0 0 1
|
||||
0
|
||||
0 0 0 0 0 1 0 1
|
||||
0
|
||||
1 0 0 0 0 1 0 1
|
||||
1
|
||||
0 1 0 0 0 1 0 1
|
||||
1
|
||||
1 1 0 0 0 1 0 1
|
||||
0
|
||||
0 0 1 0 0 1 0 1
|
||||
1
|
||||
1 0 1 0 0 1 0 1
|
||||
0
|
||||
0 1 1 0 0 1 0 1
|
||||
0
|
||||
1 1 1 0 0 1 0 1
|
||||
1
|
||||
0 0 0 1 0 1 0 1
|
||||
1
|
||||
1 0 0 1 0 1 0 1
|
||||
0
|
||||
0 1 0 1 0 1 0 1
|
||||
0
|
||||
1 1 0 1 0 1 0 1
|
||||
1
|
||||
0 0 1 1 0 1 0 1
|
||||
0
|
||||
1 0 1 1 0 1 0 1
|
||||
1
|
||||
0 1 1 1 0 1 0 1
|
||||
1
|
||||
1 1 1 1 0 1 0 1
|
||||
0
|
||||
0 0 0 0 1 1 0 1
|
||||
1
|
||||
1 0 0 0 1 1 0 1
|
||||
0
|
||||
0 1 0 0 1 1 0 1
|
||||
0
|
||||
1 1 0 0 1 1 0 1
|
||||
1
|
||||
0 0 1 0 1 1 0 1
|
||||
0
|
||||
1 0 1 0 1 1 0 1
|
||||
1
|
||||
0 1 1 0 1 1 0 1
|
||||
1
|
||||
1 1 1 0 1 1 0 1
|
||||
0
|
||||
0 0 0 1 1 1 0 1
|
||||
0
|
||||
1 0 0 1 1 1 0 1
|
||||
1
|
||||
0 1 0 1 1 1 0 1
|
||||
1
|
||||
1 1 0 1 1 1 0 1
|
||||
0
|
||||
0 0 1 1 1 1 0 1
|
||||
1
|
||||
1 0 1 1 1 1 0 1
|
||||
0
|
||||
0 1 1 1 1 1 0 1
|
||||
0
|
||||
1 1 1 1 1 1 0 1
|
||||
1
|
||||
0 0 0 0 0 0 1 1
|
||||
0
|
||||
1 0 0 0 0 0 1 1
|
||||
1
|
||||
0 1 0 0 0 0 1 1
|
||||
1
|
||||
1 1 0 0 0 0 1 1
|
||||
0
|
||||
0 0 1 0 0 0 1 1
|
||||
1
|
||||
1 0 1 0 0 0 1 1
|
||||
0
|
||||
0 1 1 0 0 0 1 1
|
||||
0
|
||||
1 1 1 0 0 0 1 1
|
||||
1
|
||||
0 0 0 1 0 0 1 1
|
||||
1
|
||||
1 0 0 1 0 0 1 1
|
||||
0
|
||||
0 1 0 1 0 0 1 1
|
||||
0
|
||||
1 1 0 1 0 0 1 1
|
||||
1
|
||||
0 0 1 1 0 0 1 1
|
||||
0
|
||||
1 0 1 1 0 0 1 1
|
||||
1
|
||||
0 1 1 1 0 0 1 1
|
||||
1
|
||||
1 1 1 1 0 0 1 1
|
||||
0
|
||||
0 0 0 0 1 0 1 1
|
||||
1
|
||||
1 0 0 0 1 0 1 1
|
||||
0
|
||||
0 1 0 0 1 0 1 1
|
||||
0
|
||||
1 1 0 0 1 0 1 1
|
||||
1
|
||||
0 0 1 0 1 0 1 1
|
||||
0
|
||||
1 0 1 0 1 0 1 1
|
||||
1
|
||||
0 1 1 0 1 0 1 1
|
||||
1
|
||||
1 1 1 0 1 0 1 1
|
||||
0
|
||||
0 0 0 1 1 0 1 1
|
||||
0
|
||||
1 0 0 1 1 0 1 1
|
||||
1
|
||||
0 1 0 1 1 0 1 1
|
||||
1
|
||||
1 1 0 1 1 0 1 1
|
||||
0
|
||||
0 0 1 1 1 0 1 1
|
||||
1
|
||||
1 0 1 1 1 0 1 1
|
||||
0
|
||||
0 1 1 1 1 0 1 1
|
||||
0
|
||||
1 1 1 1 1 0 1 1
|
||||
1
|
||||
0 0 0 0 0 1 1 1
|
||||
1
|
||||
1 0 0 0 0 1 1 1
|
||||
0
|
||||
0 1 0 0 0 1 1 1
|
||||
0
|
||||
1 1 0 0 0 1 1 1
|
||||
1
|
||||
0 0 1 0 0 1 1 1
|
||||
0
|
||||
1 0 1 0 0 1 1 1
|
||||
1
|
||||
0 1 1 0 0 1 1 1
|
||||
1
|
||||
1 1 1 0 0 1 1 1
|
||||
0
|
||||
0 0 0 1 0 1 1 1
|
||||
0
|
||||
1 0 0 1 0 1 1 1
|
||||
1
|
||||
0 1 0 1 0 1 1 1
|
||||
1
|
||||
1 1 0 1 0 1 1 1
|
||||
0
|
||||
0 0 1 1 0 1 1 1
|
||||
1
|
||||
1 0 1 1 0 1 1 1
|
||||
0
|
||||
0 1 1 1 0 1 1 1
|
||||
0
|
||||
1 1 1 1 0 1 1 1
|
||||
1
|
||||
0 0 0 0 1 1 1 1
|
||||
0
|
||||
1 0 0 0 1 1 1 1
|
||||
1
|
||||
0 1 0 0 1 1 1 1
|
||||
1
|
||||
1 1 0 0 1 1 1 1
|
||||
0
|
||||
0 0 1 0 1 1 1 1
|
||||
1
|
||||
1 0 1 0 1 1 1 1
|
||||
0
|
||||
0 1 1 0 1 1 1 1
|
||||
0
|
||||
1 1 1 0 1 1 1 1
|
||||
1
|
||||
0 0 0 1 1 1 1 1
|
||||
1
|
||||
1 0 0 1 1 1 1 1
|
||||
0
|
||||
0 1 0 1 1 1 1 1
|
||||
0
|
||||
1 1 0 1 1 1 1 1
|
||||
1
|
||||
0 0 1 1 1 1 1 1
|
||||
0
|
||||
1 0 1 1 1 1 1 1
|
||||
1
|
||||
0 1 1 1 1 1 1 1
|
||||
1
|
||||
1 1 1 1 1 1 1 1
|
||||
0
|
513
lib/ann/fann/datasets/parity8.train
Normal file
@ -0,0 +1,513 @@
|
||||
256 8 1
|
||||
1 1 0 0 0 0 0 1
|
||||
1
|
||||
1 0 0 1 0 0 1 0
|
||||
1
|
||||
0 0 0 0 0 1 1 0
|
||||
0
|
||||
1 1 0 0 1 1 1 0
|
||||
1
|
||||
1 0 1 1 0 1 1 1
|
||||
0
|
||||
1 1 1 1 1 0 1 1
|
||||
1
|
||||
0 1 0 1 0 0 1 0
|
||||
1
|
||||
0 0 1 1 0 1 1 1
|
||||
1
|
||||
1 0 0 1 0 1 0 0
|
||||
1
|
||||
0 1 1 0 0 1 0 1
|
||||
0
|
||||
0 1 0 1 1 1 0 1
|
||||
1
|
||||
0 0 0 0 0 0 1 1
|
||||
0
|
||||
0 1 0 0 1 1 1 1
|
||||
1
|
||||
0 1 0 0 0 1 0 0
|
||||
0
|
||||
0 0 0 1 1 1 0 0
|
||||
1
|
||||
0 1 0 1 1 1 1 0
|
||||
1
|
||||
1 0 1 1 0 1 0 1
|
||||
1
|
||||
0 0 1 0 0 1 0 1
|
||||
1
|
||||
0 0 1 0 1 0 1 0
|
||||
1
|
||||
0 1 0 1 0 0 0 1
|
||||
1
|
||||
0 0 0 1 1 0 0 1
|
||||
1
|
||||
1 1 1 0 0 1 0 1
|
||||
1
|
||||
1 1 1 0 0 1 1 1
|
||||
0
|
||||
1 1 0 1 0 1 0 0
|
||||
0
|
||||
0 0 0 1 0 0 0 0
|
||||
1
|
||||
0 0 0 1 1 1 0 1
|
||||
0
|
||||
1 1 1 1 1 1 0 0
|
||||
0
|
||||
0 0 0 1 0 0 0 1
|
||||
0
|
||||
1 1 0 0 0 0 1 1
|
||||
0
|
||||
1 1 1 1 1 0 0 1
|
||||
0
|
||||
0 1 0 0 1 0 0 1
|
||||
1
|
||||
0 0 0 0 1 0 0 1
|
||||
0
|
||||
0 1 1 0 0 1 1 0
|
||||
0
|
||||
0 1 0 0 0 1 1 1
|
||||
0
|
||||
0 1 0 1 0 0 0 0
|
||||
0
|
||||
0 0 1 0 1 1 0 0
|
||||
1
|
||||
0 1 1 0 0 1 0 0
|
||||
1
|
||||
0 0 0 1 0 1 0 0
|
||||
0
|
||||
1 1 0 0 0 1 0 1
|
||||
0
|
||||
1 0 0 1 1 0 0 0
|
||||
1
|
||||
0 0 0 1 1 0 1 0
|
||||
1
|
||||
1 1 1 0 0 0 1 1
|
||||
1
|
||||
1 1 0 0 1 0 1 0
|
||||
0
|
||||
0 0 1 0 0 1 0 0
|
||||
0
|
||||
1 0 1 0 0 1 0 0
|
||||
1
|
||||
1 0 0 1 0 1 1 1
|
||||
1
|
||||
0 1 1 1 1 0 1 0
|
||||
1
|
||||
0 0 1 0 1 0 1 1
|
||||
0
|
||||
1 1 0 1 0 0 0 0
|
||||
1
|
||||
0 1 0 0 1 1 0 1
|
||||
0
|
||||
0 0 0 0 0 0 1 0
|
||||
1
|
||||
1 0 1 0 1 0 1 0
|
||||
0
|
||||
1 1 1 0 1 0 1 1
|
||||
0
|
||||
0 0 1 0 1 1 0 1
|
||||
0
|
||||
0 0 0 0 1 1 1 1
|
||||
0
|
||||
0 1 0 0 0 0 1 1
|
||||
1
|
||||
0 1 0 0 1 0 1 1
|
||||
0
|
||||
0 1 0 0 0 0 0 1
|
||||
0
|
||||
0 1 1 0 0 0 0 1
|
||||
1
|
||||
0 1 0 0 1 0 1 0
|
||||
1
|
||||
1 0 1 1 0 1 1 0
|
||||
1
|
||||
0 1 1 0 1 0 1 1
|
||||
1
|
||||
0 0 0 1 0 0 1 0
|
||||
0
|
||||
1 1 1 0 0 0 0 1
|
||||
0
|
||||
0 0 0 0 1 1 1 0
|
||||
1
|
||||
0 0 1 0 0 0 1 0
|
||||
0
|
||||
0 0 1 1 1 0 1 1
|
||||
1
|
||||
0 0 1 0 1 0 0 0
|
||||
0
|
||||
1 0 1 1 0 1 0 0
|
||||
0
|
||||
1 0 0 0 0 1 1 1
|
||||
0
|
||||
0 0 1 1 1 1 1 1
|
||||
0
|
||||
1 0 1 0 1 1 0 1
|
||||
1
|
||||
1 0 1 0 1 1 0 0
|
||||
0
|
||||
0 0 0 1 0 1 1 0
|
||||
1
|
||||
0 1 1 1 1 1 1 0
|
||||
0
|
||||
1 0 1 1 1 0 0 1
|
||||
1
|
||||
0 1 0 1 0 1 1 1
|
||||
1
|
||||
1 0 1 0 1 0 1 1
|
||||
1
|
||||
0 1 0 0 0 1 1 0
|
||||
1
|
||||
0 0 0 1 0 0 1 1
|
||||
1
|
||||
1 1 1 1 1 1 1 0
|
||||
1
|
||||
1 1 0 0 0 1 1 1
|
||||
1
|
||||
0 0 1 1 1 0 1 0
|
||||
0
|
||||
1 1 1 1 1 1 1 1
|
||||
0
|
||||
1 1 0 1 1 0 1 0
|
||||
1
|
||||
0 1 1 1 0 0 1 0
|
||||
0
|
||||
1 0 0 0 0 0 1 0
|
||||
0
|
||||
1 0 1 1 0 0 0 0
|
||||
1
|
||||
1 0 0 1 0 0 0 0
|
||||
0
|
||||
1 1 1 1 0 1 0 1
|
||||
0
|
||||
1 1 1 1 1 0 0 0
|
||||
1
|
||||
1 1 1 0 0 0 0 0
|
||||
1
|
||||
0 1 1 1 0 1 1 1
|
||||
0
|
||||
0 1 1 0 1 1 1 0
|
||||
1
|
||||
0 0 1 1 1 0 0 1
|
||||
0
|
||||
1 0 0 1 1 0 1 1
|
||||
1
|
||||
1 0 0 1 0 1 1 0
|
||||
0
|
||||
1 1 0 0 0 0 0 0
|
||||
0
|
||||
0 1 1 1 1 1 1 1
|
||||
1
|
||||
1 0 1 1 1 0 0 0
|
||||
0
|
||||
0 1 0 0 0 1 0 1
|
||||
1
|
||||
0 1 0 1 1 1 1 1
|
||||
0
|
||||
0 1 0 1 0 1 0 1
|
||||
0
|
||||
0 0 1 0 1 1 1 0
|
||||
0
|
||||
0 0 1 0 0 1 1 0
|
||||
1
|
||||
1 0 1 1 1 0 1 0
|
||||
1
|
||||
1 0 0 0 1 0 1 1
|
||||
0
|
||||
0 1 1 0 0 1 1 1
|
||||
1
|
||||
0 1 1 1 1 0 1 1
|
||||
0
|
||||
1 1 1 0 0 1 0 0
|
||||
0
|
||||
0 0 0 0 1 0 0 0
|
||||
1
|
||||
1 0 0 1 1 1 0 1
|
||||
1
|
||||
0 0 1 0 0 0 0 1
|
||||
0
|
||||
0 0 0 1 1 0 1 1
|
||||
0
|
||||
0 1 1 1 1 1 0 1
|
||||
0
|
||||
1 0 1 1 1 1 1 0
|
||||
0
|
||||
1 0 0 1 0 0 0 1
|
||||
1
|
||||
1 0 0 1 1 1 1 1
|
||||
0
|
||||
1 1 1 1 1 0 1 0
|
||||
0
|
||||
0 1 0 1 1 0 0 0
|
||||
1
|
||||
0 0 0 1 0 1 0 1
|
||||
1
|
||||
1 0 0 1 0 1 0 1
|
||||
0
|
||||
0 1 1 0 0 0 1 0
|
||||
1
|
||||
1 1 0 1 1 1 1 0
|
||||
0
|
||||
1 0 0 0 1 1 0 1
|
||||
0
|
||||
0 1 0 0 1 1 1 0
|
||||
0
|
||||
1 0 0 0 1 1 1 1
|
||||
1
|
||||
0 0 1 0 0 0 1 1
|
||||
1
|
||||
0 0 1 1 0 1 1 0
|
||||
0
|
||||
1 1 1 1 0 1 1 1
|
||||
1
|
||||
1 1 1 1 0 0 0 0
|
||||
0
|
||||
1 1 1 0 0 1 1 0
|
||||
1
|
||||
1 1 0 1 1 1 0 0
|
||||
1
|
||||
1 1 0 0 0 0 1 0
|
||||
1
|
||||
1 0 0 0 0 0 1 1
|
||||
1
|
||||
1 0 1 0 0 1 1 1
|
||||
1
|
||||
0 1 0 1 0 0 1 1
|
||||
0
|
||||
1 1 0 1 0 1 0 1
|
||||
1
|
||||
1 1 0 1 0 0 1 1
|
||||
1
|
||||
0 0 0 0 1 0 1 1
|
||||
1
|
||||
0 1 0 0 0 0 1 0
|
||||
0
|
||||
0 0 0 0 0 0 0 0
|
||||
0
|
||||
1 1 1 0 1 0 1 0
|
||||
1
|
||||
1 0 1 1 1 1 0 1
|
||||
0
|
||||
0 1 0 1 1 0 0 1
|
||||
0
|
||||
1 1 1 0 1 1 0 1
|
||||
0
|
||||
1 0 0 1 0 0 1 1
|
||||
0
|
||||
0 0 0 1 1 1 1 0
|
||||
0
|
||||
0 1 1 0 0 0 0 0
|
||||
0
|
||||
1 0 1 0 1 0 0 1
|
||||
0
|
||||
0 1 1 1 0 0 0 1
|
||||
0
|
||||
1 0 1 0 0 0 1 1
|
||||
0
|
||||
1 1 0 1 0 0 0 1
|
||||
0
|
||||
0 1 1 1 0 1 0 0
|
||||
0
|
||||
0 1 0 0 1 1 0 0
|
||||
1
|
||||
0 0 0 0 1 0 1 0
|
||||
0
|
||||
1 1 0 1 1 0 1 1
|
||||
0
|
||||
1 1 1 0 1 0 0 1
|
||||
1
|
||||
1 0 0 1 1 1 0 0
|
||||
0
|
||||
1 0 0 0 0 1 0 1
|
||||
1
|
||||
0 1 1 0 1 0 1 0
|
||||
0
|
||||
1 0 1 0 1 1 1 0
|
||||
1
|
||||
0 1 1 0 1 0 0 0
|
||||
1
|
||||
1 0 0 0 1 1 0 0
|
||||
1
|
||||
0 1 1 1 1 0 0 0
|
||||
0
|
||||
1 0 0 1 1 0 0 1
|
||||
0
|
||||
1 0 1 1 0 0 1 1
|
||||
1
|
||||
1 0 1 1 0 0 1 0
|
||||
0
|
||||
0 0 0 0 0 1 0 0
|
||||
1
|
||||
1 0 1 0 0 0 0 0
|
||||
0
|
||||
0 0 1 0 0 1 1 1
|
||||
0
|
||||
0 0 1 1 0 0 0 0
|
||||
0
|
||||
1 1 0 0 1 0 1 1
|
||||
1
|
||||
0 0 1 1 1 1 1 0
|
||||
1
|
||||
1 0 0 1 1 0 1 0
|
||||
0
|
||||
1 1 0 0 1 1 1 1
|
||||
0
|
||||
1 0 0 0 0 0 0 0
|
||||
1
|
||||
1 0 0 0 0 1 0 0
|
||||
0
|
||||
0 1 1 1 0 0 0 0
|
||||
1
|
||||
0 0 0 0 1 1 0 0
|
||||
0
|
||||
0 0 1 1 0 0 0 1
|
||||
1
|
||||
0 0 1 1 0 0 1 0
|
||||
1
|
||||
0 0 0 1 0 1 1 1
|
||||
0
|
||||
0 0 0 1 1 0 0 0
|
||||
0
|
||||
1 1 1 0 1 1 1 0
|
||||
0
|
||||
0 0 1 0 1 0 0 1
|
||||
1
|
||||
0 0 1 1 1 1 0 1
|
||||
1
|
||||
0 1 0 1 1 0 1 0
|
||||
0
|
||||
1 0 0 0 1 1 1 0
|
||||
0
|
||||
1 1 0 1 0 0 1 0
|
||||
0
|
||||
1 1 1 1 0 0 1 1
|
||||
0
|
||||
1 0 1 0 1 1 1 1
|
||||
0
|
||||
0 1 0 1 1 1 0 0
|
||||
0
|
||||
1 0 1 0 0 0 1 0
|
||||
1
|
||||
1 0 0 0 0 1 1 0
|
||||
1
|
||||
1 1 1 1 0 1 1 0
|
||||
0
|
||||
1 1 0 0 1 1 0 1
|
||||
1
|
||||
1 0 0 0 1 0 0 1
|
||||
1
|
||||
1 1 0 0 1 0 0 0
|
||||
1
|
||||
0 1 0 0 0 0 0 0
|
||||
1
|
||||
0 0 1 1 1 0 0 0
|
||||
1
|
||||
1 1 1 0 1 1 0 0
|
||||
1
|
||||
0 1 1 1 0 1 1 0
|
||||
1
|
||||
1 0 1 1 1 0 1 1
|
||||
0
|
||||
1 1 1 0 1 0 0 0
|
||||
0
|
||||
1 1 0 0 1 0 0 1
|
||||
0
|
||||
1 1 0 1 0 1 1 0
|
||||
1
|
||||
1 0 1 0 1 0 0 0
|
||||
1
|
||||
1 1 0 1 1 0 0 0
|
||||
0
|
||||
0 0 1 1 0 1 0 0
|
||||
1
|
||||
0 0 1 0 0 0 0 0
|
||||
1
|
||||
1 0 0 0 0 0 0 1
|
||||
0
|
||||
0 1 1 1 1 0 0 1
|
||||
1
|
||||
0 1 1 1 1 1 0 0
|
||||
1
|
||||
1 0 1 1 1 1 0 0
|
||||
1
|
||||
1 1 0 1 1 0 0 1
|
||||
1
|
||||
1 1 0 1 1 1 1 1
|
||||
1
|
||||
0 1 1 0 1 1 0 0
|
||||
0
|
||||
0 1 1 1 0 0 1 1
|
||||
1
|
||||
1 1 0 1 1 1 0 1
|
||||
0
|
||||
1 0 1 0 0 1 1 0
|
||||
0
|
||||
0 0 0 1 1 1 1 1
|
||||
1
|
||||
0 1 0 1 0 1 0 0
|
||||
1
|
||||
0 0 0 0 0 0 0 1
|
||||
1
|
||||
1 1 0 0 0 1 1 0
|
||||
0
|
||||
1 1 1 0 0 0 1 0
|
||||
0
|
||||
0 0 1 0 1 1 1 1
|
||||
1
|
||||
1 0 1 1 0 0 0 1
|
||||
0
|
||||
0 1 1 0 1 1 1 1
|
||||
0
|
||||
1 0 0 0 1 0 0 0
|
||||
0
|
||||
0 0 0 0 1 1 0 1
|
||||
1
|
||||
1 1 1 1 0 0 1 0
|
||||
1
|
||||
1 1 0 1 0 1 1 1
|
||||
0
|
||||
1 0 1 0 0 0 0 1
|
||||
1
|
||||
0 0 1 1 0 0 1 1
|
||||
0
|
||||
1 0 0 1 1 1 1 0
|
||||
1
|
||||
0 1 1 1 0 1 0 1
|
||||
1
|
||||
1 0 0 0 1 0 1 0
|
||||
1
|
||||
1 1 0 0 0 1 0 0
|
||||
1
|
||||
0 0 0 0 0 1 1 1
|
||||
1
|
||||
1 1 1 1 1 1 0 1
|
||||
1
|
||||
1 1 0 0 1 1 0 0
|
||||
0
|
||||
1 1 1 1 0 0 0 1
|
||||
1
|
||||
0 0 0 0 0 1 0 1
|
||||
0
|
||||
0 0 1 1 1 1 0 0
|
||||
0
|
||||
0 1 0 0 1 0 0 0
|
||||
0
|
||||
0 0 1 1 0 1 0 1
|
||||
0
|
||||
1 0 1 0 0 1 0 1
|
||||
0
|
||||
0 1 1 0 1 0 0 1
|
||||
0
|
||||
0 1 0 1 0 1 1 0
|
||||
0
|
||||
0 1 1 0 1 1 0 1
|
||||
1
|
||||
0 1 1 0 0 0 1 1
|
||||
0
|
||||
1 0 1 1 1 1 1 1
|
||||
1
|
||||
1 1 1 0 1 1 1 1
|
||||
1
|
||||
0 1 0 1 1 0 1 1
|
||||
1
|
||||
1 1 1 1 0 1 0 0
|
||||
1
|
1025
lib/ann/fann/datasets/pumadyn-32fm.test
Normal file
1025
lib/ann/fann/datasets/pumadyn-32fm.train
Normal file
1189
lib/ann/fann/datasets/robot.test
Normal file
749
lib/ann/fann/datasets/robot.train
Normal file
@ -0,0 +1,749 @@
|
||||
374 48 3
|
||||
0 0 0 0.400000 0 0 0 0.640000 0 0 0 0.440000 0 0 0.260000 0.550000 0 0 0 0.360000 0 0 0.860000 0 0 0 0 0 0 0.460000 0.500000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0.440000 0.470000 0 0
|
||||
0 0.506250 0.678125
|
||||
0.630000 0 0 0 0 0 0 0 0 0.840000 0.390000 0 0 0 0 0 0 0 0.420000 0.890000 0 0 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0 0.780000 0
|
||||
0 0.662500 0.296875
|
||||
0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.700000 0
|
||||
0 0.612500 0.606250
|
||||
0 0 0 0 0.390000 0 0 0 0 0 0 0 0.560000 0 0 0 0 0 0 0.430000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.500000 0 0 0 0
|
||||
0 0.490625 0.512500
|
||||
0 0 0 0 0.820000 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.450000 0.515625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.300000 0.650000 0 0 0 0 0 0 0 0.730000
|
||||
0 0.687500 0.484375
|
||||
0 0 0.400000 0 0.570000 0 0.280000 0.330000 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0.270000 0 0.760000 0.280000 0.350000 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.920000 0 0 0
|
||||
0 0.496875 0.534375
|
||||
0 0 0 0 0.750000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0.310000 0.500000 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.710000 0 0 0 0
|
||||
0 0.481250 0.525000
|
||||
0 0 0 0 0 0 0 0 0.360000 0 0 0.270000 0 0 0 0 0.730000 0 0 0.570000 0 0 0 0 0.660000 0 0 0.780000 0 0 0 0 0.740000 0 0 0.690000 0 0 0 0 0 0.820000 0 0.770000 0 0 0 0
|
||||
0 0.493750 0.468750
|
||||
0 0 0 0.300000 0 0 0 0 0 0 0 0.380000 0 0 0 0.540000 0 0 0 0.270000 0 0 0.530000 0.640000 0 0 0 0 0 0.530000 0.600000 0 0 0 0 0 0.570000 0.520000 0 0 0 0 0 0.760000 0.570000 0 0 0
|
||||
0 0.431250 0.756250
|
||||
0.390000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0
|
||||
0 0.400000 0.362500
|
||||
0 0 0.280000 0 0.500000 0 0.330000 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.660000 0.260000 0.330000 0 0 0 0 0 0.680000 0 0 0 0 0 0 0.280000 0.630000 0 0 0
|
||||
0 0.490625 0.537500
|
||||
0 0 0 0 0 0.250000 0 0 0 0 0 0 0.510000 0 0 0 0 0 0.300000 0.960000 0 0 0 0 0 0.420000 0.830000 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0.260000 0 0 0 0 0 0 0
|
||||
0 0.281250 0.615625
|
||||
0 0 0 0 0 0.980000 0 0 0 0 0 0 0.410000 0.490000 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.970000 0 0 0 0
|
||||
0 0.443750 0.587500
|
||||
0 0 0 0.750000 0 0 0 0 0 0 0 0.330000 0.570000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0 0.930000 0 0
|
||||
0 0.559375 0.475000
|
||||
0 0 0 0 0.430000 0 0 0 0 0 0.250000 0.690000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.496875 0.509375
|
||||
0 0 0 0 0 0 0 0.530000 0 0 0 0 0 0 0.880000 0.450000 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0 0.381250 0.709375
|
||||
0 0 0 0.830000 0 0 0 0.250000 0 0 0.820000 0 0 0 0 0 0 0.500000 0.510000 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0
|
||||
0 0.296875 0.518750
|
||||
0 0 0.420000 0 0 0 0 0 0 0.460000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 0.250000 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.343750 0.440625
|
||||
0 0 0 0.570000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.481250 0.484375
|
||||
0 0 0.710000 0.850000 0 0 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0 0.670000 0.570000 0 0 0 0 0 0 0 0.510000 0.840000 0 0 0 0 0 0 0 0.300000 0 0 0 0 0 0 0 0
|
||||
0 0.787500 0.375000
|
||||
0 0.680000 0 0 0 0 0.270000 0 0 0.560000 0 0 0 0 0 0 0.880000 0 0 0.390000 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0
|
||||
0 0.337500 0.428125
|
||||
0 0 0 0 0 0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0
|
||||
0 0.471875 0.421875
|
||||
0.390000 0 0 0 0.350000 0 0 0 0 0 0 0 0.310000 0.640000 0.520000 0.610000 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.670000 0 0
|
||||
0 0.556250 0.534375
|
||||
0 0 0 0.370000 0.660000 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.480000 0 0 0 0 0 0 0
|
||||
0 0.281250 0.546875
|
||||
0 0 0 0 0 0 0.250000 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 1 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0.390000 0.590000 0 0 0 0 0 0 0.970000 0 0 0 0 0
|
||||
0 0.381250 0.631250
|
||||
0 0 0 0 0 0 0 0 0 0 0 0.280000 0 0 0 0 0 0 0 0.270000 0 0 0 0 0.520000 0 0 0.310000 0 0 0 0 0 0 0.260000 0.320000 0 0.340000 0.570000 0.680000 0 0 0.390000 0.250000 0 0 0 0
|
||||
0 0.453125 0.478125
|
||||
0 0 0 0 0 0 0 0.530000 0 0 0 0 0 0 0.880000 0.450000 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0 0.381250 0.709375
|
||||
0.280000 0 0 0 0 0 0 0 0.580000 0 0 0.290000 0 0 0 0 0.810000 0 0 0.590000 0 0 0 0 0.600000 0 0 0.640000 0 0 0 0 0.800000 0 0 0.600000 0 0 0 0 0.830000 0 0 0.770000 0 0 0 0
|
||||
0 0.493750 0.481250
|
||||
0 0.680000 0 0 0 0 0 0.440000 0 0 1 0 0 0 0 0.440000 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.290000 0.790000 0
|
||||
0 0.646875 0.353125
|
||||
0 0 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0 0.860000 0.260000 0 0 0 0 0 0 0 0.810000 0.880000 0 0 0 0 0 0 0 0 0.840000 0.490000 0 0 0 0 0 0 0 0.300000 0.590000
|
||||
0 0.709375 0.259375
|
||||
0 0 0 0.840000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.590000 0 0 0 0
|
||||
0 0.456250 0.478125
|
||||
0 0.600000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.600000 0 0 0 0 0 0
|
||||
0 0.418750 0.390625
|
||||
0 0 0.490000 0.860000 0.250000 0 0 0 0 0 0 0 0.740000 0.550000 0 0 0 0 0 0 0 0.380000 0.920000 0 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0 0 0 0.250000 0 0 0 0 0
|
||||
0 0.787500 0.393750
|
||||
0 0 0 0 0 0 0 0.380000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0.280000 0.250000 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0.340000 0.330000 0
|
||||
0 0.559375 0.662500
|
||||
0 0 0 0 0.490000 0.440000 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.390000 0.550000 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.580000 0.380000 0 0 0 0
|
||||
0 0.428125 0.559375
|
||||
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.590000
|
||||
1 0.506250 0.503125
|
||||
0 0 0 0 0 0.260000 0.720000 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.820000 0 0 0 0
|
||||
0 0.434375 0.621875
|
||||
0 0 0 0.270000 0 0 0 0 0 0 0 0.310000 0 0 0 0.340000 0 0 0 0 0 0 0.750000 0.520000 0 0 0 0 0 0.880000 0 0 0 0 0 0.660000 0.730000 0 0 0 0 0.250000 0.970000 0.250000 0 0 0 0
|
||||
0 0.340625 0.778125
|
||||
0 0 0.530000 0 0 0.460000 0 0 0 0 0.600000 0 0 0.520000 0 0 0 0 0.670000 0 0 0.610000 0 0 0 0 0 0.560000 0.460000 0 0 0 0 0 0 0.600000 0.710000 0 0 0 0 0 0 0.310000 0.410000 0 0 0
|
||||
0 0.509375 0.578125
|
||||
0 0 0 0 0.940000 0 0 0 0 0 0 1 0 0 0 0 0 0 0.290000 0.810000 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0.450000 0.430000 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0 0.359375 0.550000
|
||||
0 0 0.260000 0.470000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.600000 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.462500 0.462500
|
||||
0 0 0 0 0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0 0.830000 0.670000 0 0 0 0 0 0 0 0.380000 1 0.390000 0 0 0 0 0 0 0 0.680000 0.970000 0 0 0 0 0 0 0 0 0.450000
|
||||
0 0.728125 0.256250
|
||||
0 0 0 0 0 0 1 0.270000 0 0 0 0 0 0.840000 0.320000 0 0 0 0 0 0.480000 0.500000 0 0 0 0 0.930000 0.750000 0.700000 0 0 0 0.960000 0.980000 0 0 0.990000 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.490625 0.653125
|
||||
0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0.250000 0.520000 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.500000 0 0
|
||||
0 0.578125 0.615625
|
||||
0 0 0 0 0 0.330000 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.880000 0 0 0
|
||||
0 0.531250 0.540625
|
||||
0 0 0.470000 0.320000 0 0 0 0 0 0 0 0.940000 0 0 0 0.990000 0 0 0 0.860000 0 0 0.570000 0 0 0 0 0.710000 0 0 1 0 0 0 0 0.950000 0 0.470000 0.410000 0 0 0 0 0.670000 0 0.920000 0 0
|
||||
0 0.531250 0.690625
|
||||
0 0 0 0 0.410000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0
|
||||
0 0.731250 0.446875
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.250000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0.500000 0.540000 0.260000 0.480000 0 0 0 0 0 0 0 0.560000 0 0.360000 0.290000 0.300000
|
||||
0 0.475000 0.503125
|
||||
0 0 0 0.680000 0 0 0 0.400000 0 0 0 0 0.960000 0 0 0.440000 0 0 0 0 0.530000 0.440000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.900000 0
|
||||
0 0.650000 0.453125
|
||||
0 0 0 0 0 0 0.830000 0.280000 0 0 0 0 0 0.990000 0 0.420000 0 0 0 0 0 0.790000 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0.800000 0 0 0 0
|
||||
0 0.446875 0.621875
|
||||
0.550000 0.250000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.510000 0.480000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.640000 0 0 0 0
|
||||
0 0.515625 0.343750
|
||||
0 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0.270000 0 0 0 0 0 0 0 0.760000 0 0 0
|
||||
0 0.587500 0.265625
|
||||
0 0 0 0 0 0 0 0 0.280000 0 0 0.330000 0 0 0 0 0 0.680000 0 0.600000 0 0 0 0 0 0.730000 0 0.720000 0 0 0 0 0 0.890000 0 0.760000 0 0 0 0 0 0.850000 0 0.830000 0 0 0 0
|
||||
0 0.500000 0.453125
|
||||
0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.940000 0 0
|
||||
0 0.559375 0.537500
|
||||
0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.950000 0 0 0 0 0 0 0.370000 0.660000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
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
|
||||
1 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.650000 0 0
|
||||
0 0.609375 0.459375
|
||||
0 0 0 0 0 0.630000 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.870000 0 0 0
|
||||
0 0.490625 0.550000
|
||||
0 0 0.710000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0 0.870000 0 0 0 0
|
||||
0 0.487500 0.418750
|
||||
0 0 0 0 0.670000 0 0 0.410000 0 0 0 0 0.700000 0 0 0.500000 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.700000 0 0
|
||||
0 0.568750 0.493750
|
||||
0 0 0 0 0.520000 0 0 0 0 0 0 0 0.560000 0 0.280000 0 0 0.740000 0.440000 0.260000 0.600000 0.340000 0.470000 0.670000 0 0 0 0 0.560000 0 0.260000 0.250000 0 0 0 0 0.790000 0 0.470000 0.500000 0 0 0 0 0 0 0 0
|
||||
0 0.509375 0.509375
|
||||
0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.330000 0.570000 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.790000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0.500000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.840000 0 0
|
||||
0 0.550000 0.521875
|
||||
0 0 0 0 0.640000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.543750 0.506250
|
||||
0 0.490000 0.370000 0 0 0 0 0.430000 0 0 0.770000 0 0 0 0 0.350000 0 0 0 1 0 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.280000 0.840000 0 0 0 0 0 0 0 0.600000 0.530000 0
|
||||
0 0.631250 0.365625
|
||||
0 0 0 0 0.520000 0 0 0 0 0 0 0 0.750000 0.320000 0.720000 0.700000 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.496875 0.509375
|
||||
0 0 0 0.610000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.410000 0 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.503125 0.490625
|
||||
0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.700000 0
|
||||
0 0.612500 0.606250
|
||||
0 0 0 0 0.660000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.810000 0 0 0 0
|
||||
0 0.475000 0.515625
|
||||
0.780000 0 0 0 0 0.790000 0 0 0 0.860000 0 0 0 0.740000 0 0 0 0 0.770000 0 0 0.800000 0 0 0 0 0.800000 0 0 0.920000 0 0 0 0 0 0.980000 0.640000 0 0 0 0 0 0 0 0.450000 0 0 0
|
||||
0 0.509375 0.584375
|
||||
0 0.720000 0 0 0 0 0 0.250000 0 0.820000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0 0.970000 0 0 0 0 0
|
||||
0 0.437500 0.365625
|
||||
0 0 0.340000 0 0 0 0 0 0 0 0.430000 0 0 0 0 0 0 0 0.560000 0 0 0 0 0 0 0.430000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.375000 0.465625
|
||||
0 0 0.560000 0 0.470000 0 0 0 0 0 0.490000 0.370000 0 0 0 0 0 0 0.270000 0.310000 0 0 0 0 0 0 0.350000 0 0 0 0.250000 0 0 0 0.390000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0
|
||||
0 0.446875 0.528125
|
||||
0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.940000 0 0
|
||||
0 0.559375 0.537500
|
||||
0 0 0.510000 0 0.490000 0 0 0 0 0 0.400000 0.250000 0 0 0 0 0 0 0 0.260000 0 0 0 0 0 0 0 0.420000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.860000 0 0 0 0 0
|
||||
0 0.437500 0.518750
|
||||
0 0 0.760000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.250000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.456250 0.453125
|
||||
0 0 0 0.590000 0 0 0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.770000 0 0 0 0
|
||||
0 0.456250 0.478125
|
||||
0 0 0 0 1 0 0 0 0 0 0 0.400000 0.430000 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0.310000 0.400000 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.890000 0 0 0 0 0
|
||||
0 0.400000 0.540625
|
||||
0 0 0.810000 0 0.430000 0.250000 0.300000 0 0 0 0.430000 0.490000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.630000 0 0 0
|
||||
0 0.571875 0.409375
|
||||
0 0 0 0.620000 0 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.920000 0 0
|
||||
0 0.596875 0.465625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.300000 0.650000 0 0 0 0 0 0 0 0.730000
|
||||
0 0.687500 0.484375
|
||||
0 0 0 0 0.560000 0 0 0.340000 0 0 0 0 0.790000 0 0 0.400000 0 0 0 0 0.280000 0.360000 0 0.300000 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.630000 0 0
|
||||
0 0.559375 0.521875
|
||||
0 0 0 0 0.820000 0 0 0 0 0 0 0.390000 0.470000 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.610000 0 0 0 0
|
||||
0 0.450000 0.528125
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.250000 0.270000 0 0.300000 0 0 0 0.430000 0 0 0 0.600000 0 0 0 0 0 0 0 0.530000 0 0 0 0 0 0 0 0.610000 0 0 0 0
|
||||
0 0.471875 0.496875
|
||||
0.500000 0.560000 0.560000 0 0 0 0 0 0 0 0 0.740000 0.250000 0.280000 0.380000 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.340000 0.370000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.780000 0 0
|
||||
0 0.600000 0.415625
|
||||
0 0 0 0.490000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.670000 0 0 0 0
|
||||
0 0.465625 0.484375
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0.280000 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0.390000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0
|
||||
0 0.443750 0.534375
|
||||
0 0 0 0.330000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.500000 0.471875
|
||||
0 0 0 0.940000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.950000 0 0 0 0 0
|
||||
0 0.418750 0.503125
|
||||
0 0 0 0.860000 0 0 0 0.450000 0 0 0 0.260000 0.640000 0 0 0.400000 0 0 0 0 0.870000 0 0 0.270000 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0 0.760000 0
|
||||
0 0.618750 0.450000
|
||||
0.650000 0 0 0 0 0 0 0 0.310000 0.580000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.550000 0.250000 0 0 0 0
|
||||
0 0.481250 0.306250
|
||||
0 0.550000 0.400000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.340000 0.570000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.810000 0 0 0 0
|
||||
0 0.506250 0.384375
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.880000 0 0 0
|
||||
0 0.493750 0.609375
|
||||
0 0 0 0 0.470000 0 0 0 0 0 0 0 0.690000 0.320000 0.620000 0.660000 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0.970000 0 0 0
|
||||
0 0.496875 0.512500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0.530000 0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.720000 0 0 0
|
||||
0 0.503125 0.625000
|
||||
0 0 0 0 0 0.440000 0.420000 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0.800000 0 0 0 0
|
||||
0 0.437500 0.609375
|
||||
0 0 0 0 0.730000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.509375 0.531250
|
||||
0 0 0 0 0.730000 0 0.270000 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.620000 0 0 0
|
||||
0 0.534375 0.528125
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.330000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0.350000 0.480000 0 0 0 0 0 0 0.880000 0 0 0
|
||||
0 0.478125 0.675000
|
||||
0 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.460000 0.550000 0 0 0 0 0 0 0 0.720000 0.380000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.537500 0.253125
|
||||
0 0 0 0.340000 0.320000 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0.740000 0 0 0 0 0
|
||||
0 0.440625 0.512500
|
||||
0 0 0 0.810000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0.290000 0.490000 0 0 0 0 0 0 0.920000 0 0 0 0 0
|
||||
0 0.450000 0.475000
|
||||
0 0 0 0.560000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.484375 0.487500
|
||||
0 0.660000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.320000 0.390000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.450000 0 0 0 0 0
|
||||
0 0.425000 0.406250
|
||||
0 0 0 0 0 0 0 0 0.850000 0 0 0.250000 0 0 0 0 0.840000 0 0.290000 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.890000 0 0 0.290000 0 0 0 0 0 0.640000 0 0 0 0 0 0
|
||||
0 0.396875 0.334375
|
||||
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.340000 0 0 0 0 0 0 0 0.390000 0 0 0 0
|
||||
0 0.512500 0.368750
|
||||
0 0 0 0.490000 0.490000 0 0 0.270000 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.360000 0.540000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.690000 0 0
|
||||
0 0.575000 0.484375
|
||||
0 0 0 0 0 0 0 0 0 0 0.310000 0 0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.460000 0 0 0 0 0
|
||||
0 0.437500 0.415625
|
||||
0 0 0 0 0.550000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.600000 0 0 0
|
||||
0 0.521875 0.518750
|
||||
0 0 0 0.700000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.690000 0 0 0 0
|
||||
0 0.453125 0.468750
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0.530000 0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.720000 0 0 0
|
||||
0 0.503125 0.625000
|
||||
0 0 0 0.730000 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.880000 0 0 0 0
|
||||
0 0.481250 0.462500
|
||||
0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.950000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0.740000 0 0 0 0
|
||||
0 0.475000 0.568750
|
||||
0 0 0 0 0.440000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.740000 0 0.290000 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.770000 0 0 0
|
||||
0 0.525000 0.518750
|
||||
0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 1 0 0
|
||||
0 0.550000 0.540625
|
||||
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
|
||||
1 0.493750 0.493750
|
||||
0 0 0 0 0.850000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.990000 0 0 0
|
||||
0 0.503125 0.534375
|
||||
0 0 0 0 0.830000 0.500000 0 0 0 0 0 0 0 0.250000 0.890000 0 0 0 0 0 0 0 0 0.910000 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.831250 0.453125
|
||||
0 0 0 0 0.730000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.790000 0 0 0 0
|
||||
0 0.478125 0.512500
|
||||
0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0.290000 0.540000 0
|
||||
0 0.553125 0.665625
|
||||
0 0 0 0 0.790000 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.950000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0.870000 0 0 0 0 0
|
||||
0 0.434375 0.518750
|
||||
0 0 0 0 0.400000 0 0 0 0.560000 0 0 0 0.530000 0 0 0 0.890000 0 0 0 0.630000 0 0 0 0.720000 0 0 0.620000 0 0 0 0 1 0 0 0.800000 0 0 0 0 0.480000 0.370000 0 0.700000 0 0 0 0
|
||||
0 0.475000 0.540625
|
||||
0 0.800000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.840000 0 0 0 0 0
|
||||
0 0.453125 0.368750
|
||||
0 0 0.250000 0 0.740000 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.740000 0 0 0 0
|
||||
0 0.462500 0.512500
|
||||
0 0 0 0.520000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0.600000 0.270000 0 0 0 0 0 0 0.770000 0 0 0 0 0
|
||||
0 0.434375 0.503125
|
||||
0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0.720000 0
|
||||
0 0.615625 0.631250
|
||||
0 0 0.310000 0.510000 0 0 0.310000 0 0 0 0 0.990000 0 0 0.430000 0 0 0 0 0.260000 0.610000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0 0.690000 0 0
|
||||
0 0.568750 0.437500
|
||||
0 0 0.860000 0 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.390000 0.620000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.810000 0 0 0
|
||||
0 0.550000 0.425000
|
||||
0.820000 0 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0.560000 0.610000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0 0.790000 0 0 0 0
|
||||
0 0.487500 0.321875
|
||||
0 0.680000 0 0 0 0 0.270000 0 0 0.560000 0 0 0 0 0 0 0.880000 0 0 0.390000 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0
|
||||
0 0.337500 0.428125
|
||||
0 0 0 0.720000 0 0 0.750000 0 0 0 0 0.570000 0 0 0.810000 0 0 0 0 0 0.810000 0.500000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.543750 0.637500
|
||||
0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.390000 0.490000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.890000 0 0
|
||||
0 0.537500 0.559375
|
||||
0 0 0 0 0.540000 0.290000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.960000 0 0 0 0
|
||||
0 0.487500 0.556250
|
||||
0 0 0.510000 0 0.490000 0 0 0 0 0 0.400000 0.250000 0 0 0 0 0 0 0 0.260000 0 0 0 0 0 0 0 0.420000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.860000 0 0 0 0 0
|
||||
0 0.443750 0.525000
|
||||
0 0 0 0.510000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.630000 0 0 0
|
||||
0 0.515625 0.481250
|
||||
0 0 0.720000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0
|
||||
0 0.403125 0.434375
|
||||
0 0 0 0 0.620000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.380000 0 0 0
|
||||
0 0.506250 0.512500
|
||||
0 0.570000 0.410000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0.270000 0 0 0 1 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.820000 0 0 0
|
||||
0 0.546875 0.387500
|
||||
0 0 0 0.720000 0 0 0 0 0 0 0.250000 0.700000 0 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.800000 0 0 0 0
|
||||
0 0.487500 0.484375
|
||||
0 0 0.860000 0 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.390000 0.620000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.810000 0 0 0
|
||||
0 0.550000 0.425000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0.330000 0.290000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.750000 0 0
|
||||
0 0.562500 0.593750
|
||||
0 0.290000 0 0 0 0 0 0 0 0.330000 0 0 0 0 0 0 0 0 0.270000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0 0.390000 0 0 0 0
|
||||
0 0.484375 0.368750
|
||||
0 0 0 0.260000 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0.310000 0 0 0 0 0.260000 0.380000 0 0.370000 0 0 0.270000 0.390000 0 0 0 0.590000 0 0 0 0 0 0 0 0.600000 0 0 0 0
|
||||
0 0.468750 0.500000
|
||||
0 0 0 0 0.570000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.820000 0 0 0
|
||||
0 0.509375 0.518750
|
||||
0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.510000 0.270000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.370000 0 0 0 0 0 0 0 0
|
||||
0 0.765625 0.543750
|
||||
0 0 0.250000 0 0 0 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.730000 0 0
|
||||
0 0.546875 0.587500
|
||||
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
|
||||
1 0.493750 0.493750
|
||||
0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.630000 0.390000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0.440000 0.310000 0 0 0 0 0 0 0.960000 0 0 0
|
||||
0 0.515625 0.656250
|
||||
0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.900000 0
|
||||
0 0.603125 0.634375
|
||||
0 0 0 0 0.540000 0.290000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.960000 0 0 0 0
|
||||
0 0.487500 0.556250
|
||||
0 0 0 0.840000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.630000 0 0 0
|
||||
0 0.540625 0.450000
|
||||
0 0 0.760000 0 0 0 0 0.520000 0 0.810000 0 0 0 0 0 0.470000 0.430000 0.300000 0 0 0 0 0 0 0.740000 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.221875 0.481250
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.330000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0.350000 0.480000 0 0 0 0 0 0 0.880000 0 0 0
|
||||
0 0.478125 0.675000
|
||||
0.550000 0.250000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.510000 0.480000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.640000 0 0 0 0
|
||||
0 0.515625 0.343750
|
||||
0 0 0 0 0 0 0.950000 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.440000 0.700000 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.870000 0 0 0
|
||||
0 0.481250 0.618750
|
||||
0 0.840000 0 0 0 0 0.690000 0.510000 0 0.770000 0 0 0 0 0.950000 0 0 0.720000 0 0 0 1 0 0 0 0 0.820000 0 0 0.970000 0 0 0 0 0.870000 0 0.410000 0.520000 0 0 0 0 0.790000 0 0.870000 0 0 0
|
||||
0 0.512500 0.653125
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.560000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.790000 0 0 0
|
||||
0 0.493750 0.581250
|
||||
0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.860000 0 0
|
||||
0 0.550000 0.562500
|
||||
0 0 0 0.720000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.580000 0 0 0 0
|
||||
0 0.484375 0.462500
|
||||
0 0 0 0.370000 0.550000 0 0 0 0 0 0 0 0.430000 0.640000 0 0 0 0 0 0 0 0.650000 0.340000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0
|
||||
0 0.746875 0.440625
|
||||
0 0 0 0 0.480000 0 0 0 0 0.320000 0 0 0.620000 0 0 0 0 0 0 0 0.610000 0 0.510000 0.920000 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.509375 0.534375
|
||||
0 0 0 1 0 0 0 0.320000 0 0 0 0.260000 0.830000 0 0 0.480000 0 0 0 0 0.440000 0.500000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.330000 0.660000
|
||||
0 0.671875 0.434375
|
||||
0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.820000 0 0 0 0.260000 0 0 0 0.520000 0 0 0 0.270000 0 0 0 0.720000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.750000
|
||||
0 0.621875 0.621875
|
||||
0 0 0.510000 0 0.550000 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.540000 0 0.260000 0 0 0 0 0 0.610000 0 0.280000 0 0 0 0 0 0.540000 0 0 0 0 0 0 0.360000 0.430000 0 0 0 0
|
||||
0 0.440625 0.534375
|
||||
0 0 0 0 0 0 0.700000 0.460000 0 0 0 0 0 0.390000 0.840000 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.690000 0 0
|
||||
0 0.531250 0.640625
|
||||
0 0 0 0.750000 0 0 0 0 0 0 0 0.330000 0.570000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0 0.930000 0 0
|
||||
0 0.559375 0.475000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.480000 0 0 0 0 0 0 0 0.500000 0 0 0
|
||||
0 0.521875 0.459375
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.860000 0 0 0 0
|
||||
0 0.443750 0.596875
|
||||
0 0 0 0 0.450000 0 0 0 0 0 0 0 0.390000 0 0 0 0 0 0 0.530000 0 0 0 0 0 0 0 0.590000 0 0 0.250000 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.840000 0 0 0 0
|
||||
0 0.484375 0.506250
|
||||
0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.950000 0 0
|
||||
0 0.534375 0.571875
|
||||
0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.460000 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.531250 0.556250
|
||||
0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.320000 0 0 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0
|
||||
1 0.503125 0.503125
|
||||
0 0.670000 0.370000 0 0 0 0 0.570000 0 0 0.920000 0 0 0 0 0.350000 0 0 0 1 0 0 0 0 0 0 0 0.250000 0.730000 0 0 0 0 0 0 0 0.500000 0.770000 0 0 0 0 0 0 0 0.580000 0.560000 0
|
||||
0 0.637500 0.356250
|
||||
0 0 0.720000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0
|
||||
0 0.403125 0.434375
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0.310000 0.540000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.820000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0.260000 0.750000 0 0 0 0 0 0 0 0.770000
|
||||
0 0.653125 0.553125
|
||||
0 0 0 0 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.950000 0 0 0 0 0
|
||||
0 0.446875 0.471875
|
||||
0 0 0 0 0.550000 0 0 0 0 0 0 0 0.600000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0.360000 0.350000 0.670000 0.360000 0.580000 0.590000 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.350000 0 0 0.610000
|
||||
0 0.506250 0.518750
|
||||
0 0 0 0.620000 0 0 0 0 0 0 0 0.400000 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0 0.456250 0.459375
|
||||
0 0 0.280000 0 0 0 0.710000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.760000 0 0
|
||||
0 0.543750 0.600000
|
||||
0 0 0 0 0 0.750000 0 0 0.840000 0 0 0 0 0.770000 0 0 0.350000 0.600000 0 0 0 0.840000 0 0 0 0.850000 0 0 0 0.770000 0 0 0 0 0.870000 0 0.610000 0 0 0 0 0 0.570000 0 0.770000 0 0 0
|
||||
0 0.525000 0.600000
|
||||
0 0 0 0 0 0 0 0.380000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0.280000 0.250000 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0.340000 0.330000 0
|
||||
0 0.559375 0.662500
|
||||
0 0 0 0.270000 0 0 0 0 0 0 0 0.310000 0 0 0 0.340000 0 0 0 0 0 0 0.750000 0.520000 0 0 0 0 0 0.880000 0 0 0 0 0 0.660000 0.730000 0 0 0 0 0.250000 0.970000 0.250000 0 0 0 0
|
||||
0 0.340625 0.778125
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.420000 0.500000 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.850000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
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.320000 0 0 0 0 0 0 0 0.390000 0 0 0 0 0 0 0 0 0.310000 0 0 0 0
|
||||
0 0.487500 0.340625
|
||||
0 0 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0 0.860000 0.260000 0 0 0 0 0 0 0 0.810000 0.880000 0 0 0 0 0 0 0 0 0.840000 0.490000 0 0 0 0 0 0 0 0.300000 0.590000
|
||||
0 0.709375 0.259375
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0.480000 0.440000 0
|
||||
0 0.556250 0.690625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0.380000 0 0 0 0 0 0 0 0.850000 0
|
||||
0 0.612500 0.659375
|
||||
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
|
||||
1 0.496875 0.496875
|
||||
0 0 0 0 0 0.740000 0 0.530000 0 0 0 0 0 0.650000 0 0.420000 0 0 0 0 0 0.350000 0.490000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0 0.600000
|
||||
0 0.653125 0.521875
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.250000 0.560000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0 0.660000 0 0 0 0 0
|
||||
0 0.440625 0.309375
|
||||
0 0 0 0 0.620000 0 0 0.600000 0 0 0 0.290000 0.460000 0 0 0.480000 0 0 0 0.670000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.720000 0 0 0 0
|
||||
0 0.450000 0.521875
|
||||
0 0 0.370000 0.510000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.250000 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.493750 0.434375
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.280000 0 0 0 0 0 0 0 0.330000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.690000 0 0 0
|
||||
0 0.537500 0.525000
|
||||
0 0 0 0 0 0 0 0 0.360000 0 0 0.270000 0 0 0 0 0.730000 0 0 0.570000 0 0 0 0 0.660000 0 0 0.780000 0 0 0 0 0.740000 0 0 0.690000 0 0 0 0 0 0.820000 0 0.770000 0 0 0 0
|
||||
0 0.493750 0.465625
|
||||
0 0.510000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.371875 0.403125
|
||||
0 0.670000 0.370000 0 0 0 0 0.570000 0 0 0.920000 0 0 0 0 0.350000 0 0 0 1 0 0 0 0 0 0 0 0.250000 0.730000 0 0 0 0 0 0 0 0.500000 0.770000 0 0 0 0 0 0 0 0.580000 0.560000 0
|
||||
0 0.637500 0.356250
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0.460000 0.760000 0.770000 0 0 0 0.570000 1 0.440000 0 0.940000 0 0 0 0.280000 0 0 0 0.820000 0 0 0 0 0 0 0 0.650000 0 0 0
|
||||
0 0.484375 0.640625
|
||||
0 0 0.370000 0.510000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.250000 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.493750 0.434375
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0.480000 0.440000 0
|
||||
0 0.556250 0.690625
|
||||
0 0 0 0 0 0 0 0.470000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0.360000 0.450000 0 0 0 0 0 0.500000 0.370000 0.620000 0 0 0 0 0.370000 0.710000 0 0.770000 0 0 0 0 0.880000 0 0 1
|
||||
0 0.656250 0.615625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0.540000 0 0
|
||||
0 0.559375 0.637500
|
||||
0 0 0.510000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0 0.410000 0 0 0 0.400000 0 0 0 0.970000 0 0 0 0.780000 0 0 0 0.600000 0 0 0 0.810000
|
||||
0 0.612500 0.743750
|
||||
0 0 0 0.510000 0.840000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.780000 0 0 0 0
|
||||
0 0.493750 0.562500
|
||||
0 0 0.420000 0 0 0.620000 0 0 0 0 0 0 0.290000 0.490000 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.531250 0.546875
|
||||
0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0.690000 0 0
|
||||
0 0.584375 0.575000
|
||||
0 0 0 0 0 0 0 0.460000 0 0 0 0 0 0 0 0.410000 0 0 0 0 0 0 0 0.270000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0.500000
|
||||
0 0.340000 0 0 0.500000 0 0 0 0 0 0.750000 0 0.710000 0 0 0 0 0 0.710000 0 0.530000 0 0 0 0 0 0.440000 0.470000 0 0 0 0 0 0 0 0.400000 0 0 0 0 0 0 0 0.400000 0 0 0 0
|
||||
0 0.481250 0.540625
|
||||
0 0.660000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.320000 0.390000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.450000 0 0 0 0 0
|
||||
0 0.425000 0.406250
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0.330000 0.290000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.750000 0 0
|
||||
0 0.565625 0.587500
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.534375 0.462500
|
||||
0 0 0 0 0.520000 0 0 0 0 0 0 0 0.560000 0 0.280000 0 0 0.740000 0.440000 0.260000 0.600000 0.340000 0.470000 0.670000 0 0 0 0 0.560000 0 0.260000 0.250000 0 0 0 0 0.790000 0 0.470000 0.500000 0 0 0 0 0 0 0 0
|
||||
0 0.509375 0.509375
|
||||
0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0.360000 0.530000 0 0 0 0 0 0 0.800000 0 0 0 0 0.400000 0 0 0.830000 0 0 0 0 0.510000 0.320000 0.980000 0 0 0
|
||||
0 0.481250 0.618750
|
||||
0 0 1 0 0 0 0 0 0 0 0 0.780000 0 0.330000 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.350000 0.460000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.880000 0 0 0
|
||||
0 0.506250 0.409375
|
||||
0 0 0 0.730000 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.880000 0 0 0 0
|
||||
0 0.481250 0.462500
|
||||
0 0 0 0.480000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.280000 0 0 0 0 0
|
||||
0 0.431250 0.487500
|
||||
0 0.520000 0.840000 0.800000 0 0 0 0 0 0 0 0 0.620000 0.790000 0 0 0 0 0 0 0 0 0.830000 0.660000 0 0 0 0.420000 0 0 0 0 0 0 0 0.250000 0.330000 0 0 0 0 0 0 0 0.600000 0 0 0
|
||||
0 0.831250 0.350000
|
||||
0 0 0 0.760000 0 0 0.590000 0 0 0 0 0 0.580000 0.710000 0 0 0 0 0 0 0.520000 0.660000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.500000 0 0
|
||||
0 0.543750 0.612500
|
||||
0 0 0 0.690000 0.510000 0.690000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0.580000 0.330000 0 0 0 0 0 0 0.590000 0 0 0 0
|
||||
0 0.493750 0.571875
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.370000 0 0 0 0 0 0 0.360000 0 0 0 0 0 0 0 0.350000 0 0 0 0 0 0 0.590000 0 0 0
|
||||
0 0.493750 0.684375
|
||||
0 0 0 0.610000 0.470000 0 0 0.470000 0 0 0.840000 0.330000 0 0 0 0.450000 0 1 0 0 0 0 0 0.280000 0.810000 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.218750 0.559375
|
||||
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
|
||||
1 0.512500 0.512500
|
||||
0 0 0 0 0.620000 0 0 0 0 0 0 0 0.790000 0.290000 0.530000 0.610000 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.980000 0 0 0
|
||||
0 0.496875 0.509375
|
||||
0 0 0.280000 0 0.510000 0 0 0 0.390000 0 0 0 0.450000 0 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0.630000 0.310000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.481250 0.525000
|
||||
0 0 0 0.960000 0 0 0 0.450000 0 0 0 0.280000 0.760000 0 0 0.450000 0 0 0 0 0.600000 0.410000 0 0.280000 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0 0 0.770000
|
||||
0 0.681250 0.428125
|
||||
0 0 0 0.890000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.930000 0 0 0 0
|
||||
0 0.475000 0.471875
|
||||
0 0 0 0 0.500000 0.620000 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0.310000 0.500000 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0.470000 0.380000 0 0 0 0
|
||||
0 0.434375 0.565625
|
||||
0.390000 0 0 0 0.350000 0 0 0 0 0 0 0 0.310000 0.640000 0.520000 0.610000 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.670000 0 0
|
||||
0 0.556250 0.534375
|
||||
0 0.680000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0
|
||||
0 0.425000 0.390625
|
||||
0 0.400000 0 0.320000 0 0 0 0 0.630000 0 0 0.360000 0 0 0 0 0 0.350000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.760000 0 0.340000 0 0 0 0 0 0.900000 0 0.330000 0 0 0 0
|
||||
0 0.400000 0.378125
|
||||
0 0 0 0.830000 0 0 0 0.250000 0 0 0.820000 0 0 0 0 0 0 0.500000 0.510000 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0
|
||||
0 0.296875 0.518750
|
||||
0 0 0 0 0 0 0 0 0 0 0.310000 0 0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.460000 0 0 0 0 0
|
||||
0 0.437500 0.415625
|
||||
0 0.940000 0 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.960000 0 0 0 0 0
|
||||
0 0.440625 0.393750
|
||||
0 0 0 0 0.770000 0 0 0.390000 0 0 0 0 0.580000 0.560000 0 0.340000 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.580000 0.440000 0 0 0 0 0 0 0 1
|
||||
0 0.687500 0.471875
|
||||
0 0 0 0.510000 0.690000 0 0 0 0 0 0 1 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0.710000 0.360000 0 0 0 0 0 0
|
||||
0 0.331250 0.537500
|
||||
0 0 0 0 0.540000 0 0 0 0 0 0 0 0.710000 0.330000 0.610000 0.650000 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.920000 0 0 0
|
||||
0 0.500000 0.509375
|
||||
0 0 0.650000 0 0 0 0 0 0 0 0.450000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0.300000 0.380000 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.384375 0.462500
|
||||
0 0 0.530000 0 0.570000 0 0 0 0 0 0.540000 0 0.420000 0 0 0 0 0 0.530000 0 0.350000 0 0 0 0 0 0 0.460000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.530000 0 0 0 0
|
||||
0 0.481250 0.537500
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.650000 0 0
|
||||
0 0.609375 0.459375
|
||||
0 0 0 0 0 0 0 0 0 0 0 0.320000 0 0 0 0 0 0 0.350000 0.270000 0 0 0 0 0 0 0.560000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0
|
||||
0 0.400000 0.525000
|
||||
0 0 0 0 0.410000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0
|
||||
0 0.731250 0.446875
|
||||
0 0 0 0 0.460000 0.570000 0.800000 0.570000 0 0 0 0 0.350000 0 0 0 0 0 0 0 0.390000 0 0 0 0 0 0 0 0.480000 0 0 0 0 0 0 0 0.520000 0 0 0 0 0 0 0 0.560000 0 0 0
|
||||
0 0.521875 0.509375
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0.430000 0.610000 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.950000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0 0.760000 0 0.500000 0 0 0 0 0 0.620000 0 0.470000 0 0 0 0 0.420000 0.260000 0 0.270000 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.670000 0 0 0
|
||||
0 0.518750 0.553125
|
||||
0 0.720000 0 0 0 0 0 0.400000 0 0.770000 0 0 0 0 0 0.560000 0 0.710000 0 0 0 0 0 0.350000 0 0.510000 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0
|
||||
0 0.350000 0.415625
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.450000 0.640000 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.860000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.370000 0.600000 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.920000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0 0.300000 0 0 0 0 0 0 0 0.370000 0 0 0 0 0 0 0.360000 0 0 0 0 0 0
|
||||
0 0.418750 0.387500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.950000 0 0 0 0 0 0 0 0.940000
|
||||
0 0.628125 0.653125
|
||||
0 0 0 0.650000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0 0.720000 0 0 0
|
||||
0 0.515625 0.484375
|
||||
0 0 0 0 0.430000 0 0 0 0 0 0.250000 0.690000 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.496875 0.509375
|
||||
0 0 0 0.550000 0.290000 0 0 0.320000 0 0 0 0 1 0 0 0.560000 0 0 0 0 0 0.810000 0 0.270000 0 0 0 0 0 0.460000 0.540000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0 0.750000
|
||||
0 0.678125 0.456250
|
||||
0.950000 0 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0
|
||||
0 0.490625 0.334375
|
||||
0 0 0 0.850000 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0.390000 0.490000 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0
|
||||
0 0.434375 0.515625
|
||||
0 0 0 0.320000 0.550000 0 0 0.360000 0 0 0 0 0.850000 0 0 0.480000 0 0 0 0 0.480000 0.340000 0 0.330000 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0 0.850000 0
|
||||
0 0.621875 0.471875
|
||||
0 0 0 0 0.710000 0 1 0 0 0 0 0 0.780000 0 0 0.790000 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.730000 0 0 0
|
||||
0 0.540625 0.487500
|
||||
0 0 0 0 0.780000 0 0 0 0 0 0 0.320000 0.490000 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.500000 0.280000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.512500 0.506250
|
||||
0 0 0 0.920000 0 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.890000 0 0
|
||||
0 0.571875 0.443750
|
||||
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.770000 0 0 0 0 0 0 0.600000 0
|
||||
1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.310000 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.440000 0 0 0 0
|
||||
0 0.521875 0.356250
|
||||
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.770000 0.260000 0 0 0 0 0 0
|
||||
1 0.487500 0.487500
|
||||
0 0 0 0.400000 0 0 0 0.640000 0 0 0 0.440000 0 0 0.260000 0.550000 0 0 0 0.360000 0 0 0.860000 0 0 0 0 0 0 0.460000 0.500000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0.440000 0.470000 0 0
|
||||
0 0.506250 0.678125
|
||||
0 0 0 0.480000 0.280000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.430000 0 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.720000 0 0 0
|
||||
0 0.500000 0.537500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.420000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0 0.870000 0 0 0
|
||||
0 0.525000 0.428125
|
||||
0 0 0 0 0.370000 0 0 0 0 0 0 0 0.350000 0 0 0 0 0 0 0.290000 0.330000 0 0 0 0 0 0 0.260000 0.460000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.503125 0.506250
|
||||
0 0 0.930000 0 0 0 0 0.310000 0 0 0 0.680000 0 0 0 0.420000 0 0 0 0.620000 0.290000 0 0 0.270000 0 0 0 0 0.990000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.960000 0
|
||||
0 0.637500 0.387500
|
||||
0 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0.270000 0 0 0 0 0 0 0 0.760000 0 0 0
|
||||
0 0.587500 0.265625
|
||||
0 0 0 0.680000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.481250 0.487500
|
||||
0 0 0.360000 0.500000 0 0 0 0.250000 0 0 0.890000 0 0 0 0 0 0 1 0 0 0.330000 0 0 0 0 0.630000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0
|
||||
0 0.287500 0.493750
|
||||
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.330000 0 0 0 0 0 0
|
||||
1 0.506250 0.506250
|
||||
0.290000 0 0 0 0 0 0 0 0.440000 0 0 0.330000 0 0 0 0 0.460000 0 0 0.570000 0 0 0 0 0.490000 0 0 0.660000 0 0 0 0 0.850000 0 0 0.560000 0 0 0 0 0.750000 0 0 0.880000 0 0 0 0
|
||||
0 0.493750 0.490625
|
||||
0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.380000 0.540000 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.760000 0 0 0
|
||||
0 0.481250 0.612500
|
||||
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.890000 0 0 0 0 0 0 0.610000 0.290000
|
||||
1 0.496875 0.496875
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0.380000 0.560000 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.870000 0 0 0
|
||||
0 0.484375 0.612500
|
||||
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.360000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.470000 0 0 0 0 0 0
|
||||
0 0.415625 0.306250
|
||||
0 0.640000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.690000 0 0 0 0 0 0
|
||||
0 0.415625 0.403125
|
||||
0 0 0 0.440000 0 0 0 0 0.780000 0.350000 0 0.290000 0 0 0 0 0 0.590000 0.960000 0.760000 0 0 0 0 0 0 0 0 0.960000 0.970000 0.350000 0 0 0 0 0 0 0 0.700000 0.920000 0 0 0 0 0 0 0 0
|
||||
0 0.768750 0.228125
|
||||
0 0.280000 0.300000 0.410000 0 0 0 0 0 0 0 0 0.370000 0.430000 0.410000 0.410000 0 0 0 0 0 0 0 0 0 0.260000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.487500 0.493750
|
||||
0 0 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0.430000 0 0.770000 0 0 0 0 0 0 0.760000 0 0.580000 0 0 0 0 0 0 0.620000 0.460000 0 0 0 0 0 0 0 0 0.320000 0 0 0
|
||||
0 0.565625 0.337500
|
||||
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.960000 0 0 0 0 0
|
||||
1 0.509375 0.509375
|
||||
0 0 0 0 0 0.960000 0 0 0 0 0 0 0.390000 0.570000 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0.430000 0.390000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.437500 0.593750
|
||||
0 0 0 0 0.920000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 1 0 0 0
|
||||
0 0.506250 0.509375
|
||||
0 0 0.820000 0.300000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.550000 0.320000 0 0 0 0 0 0 0 0.790000 0 0
|
||||
0 0.568750 0.387500
|
||||
0 0 0 0 0.540000 0 0 0.470000 0 0 0 0 0.760000 0 0 0.390000 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.530000 0.390000 0 0 0 0 0 0 0.360000 0.450000 0 0 0 0 0 0 0 0.730000 0 0
|
||||
0 0.543750 0.531250
|
||||
0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0.290000 0.490000 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.750000 0 0
|
||||
0 0.531250 0.653125
|
||||
0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0.290000 0.610000 0 0 0 0 0 0 0.820000 0 0 0
|
||||
0 0.509375 0.606250
|
||||
0 0.330000 0 0 0 0 0 0 0 0 0.730000 0 0 0 0.520000 0 0 0 0.740000 0 0 0 0.610000 0 0 0 0.660000 0 0 0.350000 0.370000 0 0 0 0.800000 0 0 0.750000 0 0 0 0 1 0 0 0.710000 0 0
|
||||
0 0.531250 0.653125
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0.300000 0.750000 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.880000 0 0 0
|
||||
0 0.509375 0.637500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.710000 0
|
||||
0 0.568750 0.684375
|
||||
0 0 0 0 0 0 0 0.360000 0.290000 0 0 0 0 0 0 0.320000 0 0.930000 0 0 0 0 0 0 0 0 1 0.420000 0 0 0 0 0 0 0 0.550000 0.770000 0 0 0 0 0 0 0 0 0.990000 0.560000 0
|
||||
0 0.662500 0.228125
|
||||
0 0 0 0 0.780000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.780000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0 0 0.790000 0 0 0
|
||||
0 0.496875 0.534375
|
||||
0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0.440000 0.670000 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.890000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0.770000 0 0 0.390000 0 0 0 0 0.580000 0.560000 0 0.340000 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.580000 0.440000 0 0 0 0 0 0 0 1
|
||||
0 0.687500 0.471875
|
||||
0 0 0 1 0 0 0 0.320000 0 0 0 0.260000 0.830000 0 0 0.480000 0 0 0 0 0.440000 0.500000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.330000 0.660000
|
||||
0 0.671875 0.434375
|
||||
0.700000 0.820000 0.570000 0.550000 0 0 0 0 0 0 0 0 0.700000 0.800000 0 0 0 0 0 0 0 0 0.750000 0.990000 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.850000 0.284375
|
||||
0 0.380000 0.510000 0.260000 0.590000 0.290000 0.350000 0 0 0 0 0 0.610000 0 0 0.340000 0 0 0 0 0.650000 0.280000 0.720000 0.590000 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.820000 0 0 0
|
||||
0 0.503125 0.515625
|
||||
0 0.760000 0 0 0 0 0.290000 0 0 0.850000 0 0 0 0 0 0 0 0.450000 0.490000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0
|
||||
0 0.462500 0.359375
|
||||
0 0.430000 0.530000 0 0.270000 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0 0.680000 0 0 0
|
||||
0 0.531250 0.396875
|
||||
0 0 0 0.470000 0.270000 0 0 0.450000 0 0 0 0 0.840000 0 0 0.420000 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.800000 0 0
|
||||
0 0.584375 0.475000
|
||||
0 0 0 0.480000 0.280000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.430000 0 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.650000 0 0 0 0 0 0 0 0.720000 0 0 0
|
||||
0 0.500000 0.543750
|
||||
0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.950000 0 0
|
||||
0 0.562500 0.543750
|
||||
0 0 1 0 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0 0.493750 0.418750
|
||||
0 0 0 0 0 0.340000 0.670000 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0.500000 0.390000 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.940000 0 0 0
|
||||
0 0.478125 0.606250
|
||||
0 0 0 0 0 0 0 0 0 0 0 0.280000 0 0 0 0 0 0 0 0.270000 0 0 0 0 0.520000 0 0 0.310000 0 0 0 0 0 0 0.260000 0.320000 0 0.340000 0.570000 0.680000 0 0 0.390000 0.250000 0 0 0 0
|
||||
0 0.453125 0.478125
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0.250000 0.450000 0 0 0 0 0 0 0.690000 0
|
||||
0 0.612500 0.640625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.470000 0 0 0 0 0 0 0 1 0.390000 0 0 0 0 0 0 0 0.730000 0.510000 0 0 0 0 0 0 0 0.940000 0.270000 0 0 0 0
|
||||
0 0.506250 0.196875
|
||||
0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0.610000 0.260000 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0.650000 0 0 0
|
||||
0 0.509375 0.668750
|
||||
0 0 0 0 0 0 0.280000 0 0 0 0 0 0 0.350000 0.260000 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.810000 0 0
|
||||
0 0.546875 0.587500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.310000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0
|
||||
0 0.406250 0.353125
|
||||
0 0 0 0 0.660000 0 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.810000 0 0 0
|
||||
0 0.518750 0.521875
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.620000 0
|
||||
0 0.556250 0.728125
|
||||
0 0 0 0.840000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.930000 0 0 0 0 0 0 0 0 0.640000 0 0 0 0 0 0 0 0.730000 0 0 0 0 0 0 0 0.630000 0 0 0
|
||||
0 0.540625 0.450000
|
||||
0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0.380000 0.530000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.970000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
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.440000 0 0 0 0 0 0 0 0.490000 0 0 0 0 0 0 0 0.570000 0 0 0 0
|
||||
0 0.465625 0.418750
|
||||
0.380000 0.330000 0 0 0 0 0 0 0 0.890000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.490000 0.440000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0
|
||||
0 0.437500 0.368750
|
||||
0 0 0.290000 0.620000 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.850000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0.260000 0.580000 0 0 0 0 0 0 0.680000 0 0 0 0 0 0
|
||||
0 0.384375 0.490625
|
||||
0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.610000 0.360000 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.810000 0 0 0
|
||||
0 0.481250 0.609375
|
||||
0 0 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0.430000 0 0.770000 0 0 0 0 0 0 0.760000 0 0.580000 0 0 0 0 0 0 0.620000 0.460000 0 0 0 0 0 0 0 0 0.320000 0 0 0
|
||||
0 0.565625 0.337500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.470000 0 0 0 0 0 0 0 1 0.390000 0 0 0 0 0 0 0 0.730000 0.510000 0 0 0 0 0 0 0 0.940000 0.270000 0 0 0 0
|
||||
0 0.506250 0.196875
|
||||
0 0 0.530000 0 0.570000 0 0 0 0 0 0.540000 0 0.420000 0 0 0 0 0 0.530000 0 0.350000 0 0 0 0 0 0 0.460000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.530000 0 0 0 0
|
||||
0 0.475000 0.534375
|
||||
0 0 0 0 0.510000 0 0 0 0 0 0 0 0.680000 0.250000 0.650000 0.560000 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.910000 0 0 0
|
||||
0 0.500000 0.509375
|
||||
0 0 0 0 0.770000 0 0 0 0 0 0 0 0.310000 0.440000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.710000 0 0
|
||||
0 0.581250 0.521875
|
||||
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.950000 0.440000 0 0 0 0 0 0 0 0.740000 0.330000 0 0 0 0 0 0 0 0.680000 0.480000 0 0 0 0
|
||||
0 0.518750 0.190625
|
||||
0 0 0 0 0.730000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.450000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0.509375 0.525000
|
||||
0 0 0 0 0 0 0.290000 0.710000 0 0 0 0.300000 0 0.250000 0.800000 0.260000 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0.710000 0.300000 0 0 0 0 0 0.570000 0.580000 0 0 0 0
|
||||
0 0.409375 0.668750
|
||||
0.450000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.960000 0 0 0 0 0 0 0 0.520000 0.540000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.540000 0.340000 0 0 0
|
||||
0 0.531250 0.321875
|
||||
0 0 0.560000 0 0.470000 0 0 0 0 0 0.490000 0.370000 0 0 0 0 0 0 0.270000 0.310000 0 0 0 0 0 0 0.350000 0 0 0 0.250000 0 0 0 0.390000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0
|
||||
0 0.446875 0.528125
|
||||
0 0 0.630000 0 0 0 0 0.540000 0 0.520000 0 0 0 0 0 0.400000 0 0.800000 0 0 0 0 0 0.280000 0 0.860000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0
|
||||
0 0.393750 0.428125
|
||||
0 0 0 0.550000 0.290000 0 0 0.320000 0 0 0 0 1 0 0 0.560000 0 0 0 0 0 0.810000 0 0.270000 0 0 0 0 0 0.460000 0.540000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0 0.750000
|
||||
0 0.678125 0.456250
|
||||
0 0 0 0 0.370000 0 0 0 0 0 0 0 0.380000 0 0 0 0 0 0 0 0.470000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0 0 0.870000 0 0 0 0 0 0 0 0.560000 0 0 0
|
||||
0 0.506250 0.500000
|
||||
0 0 0.280000 0 0 0 0.710000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.760000 0 0
|
||||
0 0.543750 0.600000
|
||||
0 0 0 0 0.730000 0 0 0 0 0 0 0 0.860000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.570000 0 0 0
|
||||
0 0.534375 0.537500
|
||||
0 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.420000 0.480000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0
|
||||
0 0.428125 0.325000
|
||||
0 0 0 0 0.670000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.770000 0 0.310000 0 0 0 0.330000 0 0.730000 0.290000 0.320000 0.550000 0 0 0 0 0.600000 0 0.260000 0.460000 0 0 0 0 0 0 0 0
|
||||
0 0.506250 0.512500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.500000 0 0 0 0 0 0 0.720000 0 0 0 0 0 0 0 0.620000 0
|
||||
0 0.556250 0.728125
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0 0 0.300000 0 0 0 0 0 0 0 0.370000 0 0 0 0 0 0 0.360000 0 0 0 0 0 0
|
||||
0 0.421875 0.403125
|
||||
0 0.660000 0.760000 0.280000 0.660000 0.350000 0.330000 0 0 0 0 0 0.550000 0 0 0 0 0 0.350000 0 0.680000 0.270000 0.600000 0.610000 0 0 0 0 0.690000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.600000 0 0 0
|
||||
0 0.503125 0.515625
|
||||
0 0 0 0 0 0 0.990000 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0 0.330000 0.470000 0 0 0 0 0 0 0.950000 0 0 0 0 0 0 0 0.920000 0 0 0
|
||||
0 0.481250 0.615625
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0.250000 0.450000 0 0 0 0 0 0 0.690000 0
|
||||
0 0.612500 0.640625
|
||||
0 0 0 0 0.610000 0 0 0.270000 0 0 0 0.810000 0 0 0 0 0 0 1 0 0 0 0 0 0 0.620000 0.490000 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0.690000 0.290000 0 0 0 0 0 0
|
||||
0 0.325000 0.543750
|
||||
0 0 0 0 0 0.950000 0 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0.590000 0.400000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0.880000 0 0 0 0
|
||||
0 0.471875 0.590625
|
||||
0 0.720000 0 0 0 0 0 0.250000 0 0.820000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0 0.970000 0 0 0 0 0
|
||||
0 0.437500 0.365625
|
||||
0 0 0 0.600000 0 0 0 0 0 0 0 0.550000 0 0 0 0 0 0 0.560000 0 0 0 0 0 0 0 0.840000 0 0 0 0 0 0 0 0.410000 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0 0.453125 0.475000
|
||||
0 0 0.250000 0 0 0 0 0 0 0 0 0 0 0.620000 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.770000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.730000 0 0
|
||||
0 0.546875 0.587500
|
||||
0 0 0 0 0.560000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0.290000 0 0.740000 0.440000 0.710000 0.670000 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.570000 0 0.350000 0.590000 0 0 0 0 0.850000 0 0 0
|
||||
0 0.506250 0.512500
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0 0.430000 0.530000 0 0 0 0 0 0 0 0.600000 0.410000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0
|
||||
0 0.496875 0.221875
|
||||
0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.660000 0 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.970000 0 0 0 0 0 0 0.720000 0
|
||||
0 0.615625 0.628125
|
||||
0.780000 0 0 0 0 0.790000 0 0 0 0.860000 0 0 0 0.740000 0 0 0 0 0.770000 0 0 0.800000 0 0 0 0 0.800000 0 0 0.920000 0 0 0 0 0 0.980000 0.640000 0 0 0 0 0 0 0 0.450000 0 0 0
|
||||
0 0.512500 0.593750
|
||||
0 0 0 0 0.560000 0 0 0 0 0 0 0 0.670000 0 0 0 0 0 0.290000 0 0.740000 0.440000 0.710000 0.670000 0 0 0 0 0.810000 0 0 0 0 0 0 0 0.570000 0 0.350000 0.590000 0 0 0 0 0.850000 0 0 0
|
||||
0 0.506250 0.512500
|
||||
0 0 0 0 0.720000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.680000 0 0 0 0 0 0 0 0.980000 0 0 0 0 0 0 0 0.750000 0 0 0 0 0 0 0 0.950000 0 0 0
|
||||
0 0.534375 0.518750
|
||||
0 0 0 0 0.840000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0.360000 0.600000 0 0 0 0 0 0 1 0 0 0 0 0 0 0.900000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0
|
||||
0 0.343750 0.550000
|
||||
0.550000 0 0 0 0 0 0 0 0.310000 0.860000 0.920000 0 0 0 0 0 0 0 0 0.950000 0.820000 0 0 0 0 0 0 0 0.280000 0.990000 0 0 0 0 0 0 0 0 0.710000 0.650000 0 0 0 0 0 0 0 0.490000
|
||||
0 0.740625 0.268750
|
||||
0 0.720000 0 0 0 0 0 0.400000 0 0.770000 0 0 0 0 0 0.560000 0 0.710000 0 0 0 0 0 0.350000 0 0.510000 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.710000 0 0 0 0 0 0 0
|
||||
0 0.350000 0.415625
|
||||
0 0 0 0 0 0 0.790000 0 0 0 0 0 0 0.580000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0.390000 0.490000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.780000 0 0 0
|
||||
0 0.478125 0.618750
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.740000 0 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.600000 0 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0
|
||||
0 0.418750 0.262500
|
||||
0.370000 0.540000 0 0 0 0 0 0 0.910000 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
|
||||
1 0.490625 0.496875
|
||||
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
|
||||
1 0.496875 0.496875
|
||||
0.780000 0 0 0 0 0.790000 0 0 0 0.860000 0 0 0 0.740000 0 0 0 0 0.770000 0 0 0.800000 0 0 0 0 0.800000 0 0 0.920000 0 0 0 0 0 0.980000 0.640000 0 0 0 0 0 0 0 0.450000 0 0 0
|
||||
0 0.512500 0.593750
|
||||
0 0 0.500000 0 0.330000 0 0 0 0 0 0.590000 0 0.550000 0 0 0 0 0 0.670000 0 0.500000 0 0 0 0 0 0.480000 0.450000 0 0.260000 0 0 0 0 0.310000 0 0 0 0 0 0 0 0.290000 0 0 0 0 0
|
||||
0 0.450000 0.562500
|
||||
0.300000 0 0 0 0 0 0 0 0.710000 0.360000 0.800000 0.610000 0 0 0 0 0.510000 0.450000 0 0.270000 1 0.980000 0.750000 0 0 0.900000 0 0 0 0 0.340000 1 0 0.950000 0 0 0 0 0 0 0 0.910000 0 0 0 0 0 0
|
||||
0 0.425000 0.331250
|
||||
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
|
||||
1 0.506250 0.506250
|
||||
0 0 0.530000 0 0.570000 0 0 0 0 0 0.540000 0 0.420000 0 0 0 0 0 0.530000 0 0.350000 0 0 0 0 0 0 0.460000 0 0 0 0 0 0 0 0.440000 0 0 0 0 0 0 0 0.530000 0 0 0 0
|
||||
0 0.481250 0.537500
|
||||
0 0 0 0 0.260000 0.760000 0 0 0 0 0 0 0.820000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0 0.880000 0 0 0 0 0 0 0.560000 0.460000 0 0 0 0 0 0 0.710000 0 0 0 0
|
||||
0 0.484375 0.568750
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0.290000 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0 0.510000 0 0 0 0 0 0 0.280000 0.440000 0 0 0 0 0 0 0.820000 0 0 0 0 0
|
||||
0 0.428125 0.562500
|
||||
0 0.810000 0 0 0 0 1 0 0 0 0.800000 0 0 0.900000 0 0 0 0 0.940000 0 0 0.620000 0 0 0 0 0.730000 0 0.830000 0 0 0 0 0 0.880000 0 0.890000 0 0 0 0 0 0 0.590000 0 0 0 0
|
||||
0 0.465625 0.618750
|
||||
0 0 0 0 0.430000 0 0 0 0 0 0 0 0.630000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0.570000 0 0 0
|
||||
0 0.490625 0.521875
|
||||
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.490000 0 0 0 0 0 0 0 0.610000 0 0 0 0 0 0 0 0.710000 0 0
|
||||
0 0.537500 0.546875
|
||||
0 0 0 0.700000 0 0 0 0 0 0 0 0.570000 0 0 0 0 0 0 0.590000 0 0 0 0 0 0 0 0.540000 0 0 0 0 0 0 0 0 0.760000 0 0 0 0 0 0 0 0.690000 0 0 0 0
|
||||
0 0.453125 0.468750
|
||||
0 0 0.840000 0 0 0 0 0 0 0 0 0.700000 0 0 0 0 0 0 0 0.900000 0 0.250000 0 0 0 0 0 0.350000 0.390000 0 0 0 0 0 0 0 0.800000 0 0 0 0 0 0 0 0.820000 0 0 0
|
||||
0 0.509375 0.412500
|
||||
0 0 0.710000 0 0 0 0 0 0 0 0.800000 0 0 0.330000 0 0 0 0.730000 0 0 0 0 0 0 0 0.920000 0 0 0 0 0 0 0 0.830000 0 0 0 0 0 0 0 0.940000 0 0 0 0 0 0
|
||||
0 0.368750 0.446875
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.310000 0 0 0 0 0 0 0.340000 0 0 0 0 0 0 0 0.600000 0 0 0 0 0 0 0 0.580000 0 0 0
|
||||
0 0.500000 0.659375
|
||||
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.280000 0 0 0 0 0 0 0 0.390000 0 0 0 0
|
||||
0 0.481250 0.506250
|
2001
lib/ann/fann/datasets/scaling.data
Normal file
683
lib/ann/fann/datasets/soybean.test
Normal file
@ -0,0 +1,683 @@
|
||||
341 82 19
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 1 1 0.500000 1 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 1 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.500000 1 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 1 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 0.500000 1 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 1 0.500000 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 1 1 0.500000 1 1 1 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 1 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 1 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.666667 0.500000 1 1 0.500000 1 1 1 0.500000 1 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 0 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 1 1 0.500000 1 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 1 1 0.500000 1 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 1 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.583333 1 0.500000 1 0.500000 0.500000 0.500000 1 0.666667 0.500000 1 1 0.500000 1 1 1 0.500000 1 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 0 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 1 1 0.500000 1 1 1 0.750000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 0.500000 1 0.500000 0.500000 0.500000 1 0.666667 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 1 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 1 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 1 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 0.500000 1 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.500000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
1 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 1 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 1 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 1 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.916667 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 1 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 0 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
685
lib/ann/fann/datasets/soybean.train
Normal file
@ -0,0 +1,685 @@
|
||||
342 82 19
|
||||
0.833333 1 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 1 1 1 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 1 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 1 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 1 1 0.500000 1 1 1 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 0 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 0 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.500000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.583333 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
1 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 1 1 0.500000 1 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 1 0.500000 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.750000 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.583333 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 1 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 0 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 1 0.500000 0.500000 0.500000 1 0.666667 0.500000 1 1 0.500000 1 1 1 0.500000 1 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 1 0 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 1 1 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 1 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.833333 1 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 1 0.500000 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 0.500000 1 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 1 0.500000 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 1 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 1 1 1 0.750000 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.583333 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 0 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 1 1 1 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 1 1 1 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 1 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 1 0.500000 0.500000 1 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.833333 1 1 0.500000 1 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
0.666667 0.500000 0.500000 1 0.500000 1 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000
|
||||
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 1 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.750000 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.666667 1 1 0.500000 0.500000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 0.500000 0 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
|
||||
1 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.666667 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.666667 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
1 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 1 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 1 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
0.833333 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.666667 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 1 0 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.583333 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.500000 1 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.916667 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 1 1 1 0.500000 1 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.583333 1 1 0.500000 1 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.750000 1 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.833333 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.916667 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.750000 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 1 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 1 1 0.500000 1 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.750000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000
|
||||
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.833333 0.500000 0.500000 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 1 0 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.916667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
0.916667 0.500000 1 0.500000 1 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
0.666667 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.833333 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.916667 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 1 0 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 0.666667 0.500000 0.500000 0.500000 0 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
0.666667 1 1 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 1 0.500000 1 1 1 0.500000 1 1 1 1 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000 1 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 1 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
|
||||
0.833333 0.500000 1 0.500000 0.750000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.750000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
1 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.750000 0.500000 1 1 0.500000 0.500000 0.750000 0.500000 0.750000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
0.583333 1 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 1 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
0.750000 0.500000 1 0.500000 0.750000 0.500000 1 0.500000 1 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 1 1 0.500000 0.500000 0.500000 1 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 1 0.500000 0.500000 0.500000
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
7201
lib/ann/fann/datasets/thyroid.test
Normal file
7201
lib/ann/fann/datasets/thyroid.train
Normal file
387
lib/ann/fann/datasets/two-spiral.test
Normal file
@ -0,0 +1,387 @@
|
||||
193 2 1
|
||||
0.485007 0.652173
|
||||
1
|
||||
0.544131 0.486615
|
||||
1
|
||||
0.637044 0.333021
|
||||
1
|
||||
0.603195 0.415316
|
||||
0
|
||||
0.396805 0.584684
|
||||
1
|
||||
0.158572 0.603566
|
||||
0
|
||||
0.023860 0.355564
|
||||
0
|
||||
0.618358 0.488347
|
||||
0
|
||||
0.395483 0.468291
|
||||
1
|
||||
0.434470 0.716004
|
||||
0
|
||||
0.613526 0.511186
|
||||
0
|
||||
0.292136 0.246708
|
||||
0
|
||||
0.843348 0.218225
|
||||
0
|
||||
0.077295 0.458364
|
||||
1
|
||||
0.768115 0.526413
|
||||
0
|
||||
0.614840 0.878591
|
||||
0
|
||||
0.818945 0.329526
|
||||
1
|
||||
0.318050 0.597247
|
||||
0
|
||||
0.569746 0.729943
|
||||
0
|
||||
0.690821 0.518800
|
||||
1
|
||||
0.915753 0.373886
|
||||
0
|
||||
0.492152 0.420289
|
||||
1
|
||||
0.181055 0.670474
|
||||
0
|
||||
0.887441 0.292911
|
||||
0
|
||||
0.386474 0.488814
|
||||
1
|
||||
0.458937 0.504043
|
||||
0
|
||||
0.507848 0.579711
|
||||
0
|
||||
0.850242 0.465510
|
||||
1
|
||||
0.455048 0.524025
|
||||
0
|
||||
0.274604 0.078310
|
||||
0
|
||||
0.270964 0.377571
|
||||
1
|
||||
0.507378 0.425121
|
||||
1
|
||||
0.565530 0.283996
|
||||
1
|
||||
0.592042 0.549202
|
||||
0
|
||||
0.547201 0.655618
|
||||
1
|
||||
0.610620 0.135348
|
||||
1
|
||||
0.523071 0.734300
|
||||
0
|
||||
0.663234 0.366045
|
||||
1
|
||||
0.613451 0.439364
|
||||
0
|
||||
0.469781 0.806763
|
||||
1
|
||||
0.452799 0.344382
|
||||
0
|
||||
0.381642 0.511653
|
||||
1
|
||||
1 0.549246
|
||||
1
|
||||
0.707864 0.753292
|
||||
1
|
||||
0.545441 0.038647
|
||||
0
|
||||
0.678841 0.554257
|
||||
1
|
||||
0.901815 0.621892
|
||||
0
|
||||
0.454559 0.961353
|
||||
1
|
||||
0.877118 0.809493
|
||||
1
|
||||
0.544952 0.475975
|
||||
1
|
||||
0.578942 0.647701
|
||||
1
|
||||
0.246834 0.423197
|
||||
1
|
||||
0.389380 0.864652
|
||||
0
|
||||
0 0.450754
|
||||
0
|
||||
0.522607 0.270532
|
||||
1
|
||||
0.149758 0.534490
|
||||
0
|
||||
0.122882 0.190507
|
||||
0
|
||||
0.576922 0.563133
|
||||
0
|
||||
0.542330 0.579202
|
||||
0
|
||||
0.637388 0.952914
|
||||
1
|
||||
0.695653 0.480736
|
||||
1
|
||||
0.530219 0.193237
|
||||
0
|
||||
0.231885 0.473587
|
||||
1
|
||||
0.688781 0.853193
|
||||
0
|
||||
0.592292 0.804267
|
||||
1
|
||||
0.750447 0.366140
|
||||
0
|
||||
0.407958 0.450798
|
||||
1
|
||||
0.633165 0.061023
|
||||
0
|
||||
0.202466 0.340959
|
||||
0
|
||||
0.524657 0.581293
|
||||
0
|
||||
0.215142 0.847098
|
||||
1
|
||||
0.725396 0.921690
|
||||
1
|
||||
0.477393 0.729468
|
||||
0
|
||||
0.395877 0.694788
|
||||
0
|
||||
0.412230 0.606941
|
||||
1
|
||||
0.313684 0.727018
|
||||
1
|
||||
0.530684 0.811595
|
||||
1
|
||||
0.797534 0.659041
|
||||
1
|
||||
0.362612 0.047086
|
||||
0
|
||||
0.767105 0.418981
|
||||
0
|
||||
0.587770 0.393059
|
||||
0
|
||||
0.385160 0.121409
|
||||
1
|
||||
0.172510 0.400652
|
||||
0
|
||||
0.216689 0.732501
|
||||
0
|
||||
0.133967 0.304347
|
||||
1
|
||||
0.520435 0.432644
|
||||
1
|
||||
0.658591 0.693254
|
||||
0
|
||||
0.264412 0.787057
|
||||
0
|
||||
0.154589 0.465975
|
||||
0
|
||||
0.514993 0.347827
|
||||
0
|
||||
0.309179 0.481200
|
||||
0
|
||||
0.618456 0.464071
|
||||
0
|
||||
0.475343 0.418707
|
||||
1
|
||||
0.411924 0.790328
|
||||
1
|
||||
0.479565 0.567356
|
||||
0
|
||||
0.457017 0.641679
|
||||
1
|
||||
0.242962 0.289048
|
||||
0
|
||||
0.469316 0.188405
|
||||
0
|
||||
0.430254 0.270057
|
||||
1
|
||||
0.321159 0.445743
|
||||
0
|
||||
0.311219 0.146807
|
||||
1
|
||||
0.242862 0.186670
|
||||
1
|
||||
0.098185 0.378108
|
||||
1
|
||||
0.652167 0.784696
|
||||
1
|
||||
0.072463 0.542106
|
||||
1
|
||||
0.384446 0.283801
|
||||
1
|
||||
0.469106 0.557793
|
||||
0
|
||||
0.307219 0.558473
|
||||
0
|
||||
0.423078 0.436867
|
||||
1
|
||||
0.542983 0.358321
|
||||
0
|
||||
0.934532 0.732263
|
||||
1
|
||||
0.538496 0.453097
|
||||
1
|
||||
0.484542 0.342994
|
||||
0
|
||||
0.753166 0.576803
|
||||
0
|
||||
0.735588 0.212943
|
||||
1
|
||||
0.359264 0.763285
|
||||
1
|
||||
0.545914 0.966184
|
||||
1
|
||||
0.421058 0.352299
|
||||
0
|
||||
0.454086 0.033816
|
||||
0
|
||||
0.249553 0.633860
|
||||
1
|
||||
0.783311 0.267499
|
||||
1
|
||||
0.609319 0.633214
|
||||
1
|
||||
0.347833 0.215304
|
||||
0
|
||||
0.729036 0.622429
|
||||
0
|
||||
0.567509 0.373710
|
||||
0
|
||||
0.604517 0.531709
|
||||
0
|
||||
0.363040 0.387593
|
||||
0
|
||||
0.515458 0.657006
|
||||
1
|
||||
0.193588 0.126633
|
||||
0
|
||||
0.455869 0.513385
|
||||
0
|
||||
0.866033 0.695653
|
||||
0
|
||||
0.677347 0.168216
|
||||
1
|
||||
0.492622 0.574879
|
||||
0
|
||||
0.538298 0.888889
|
||||
0
|
||||
0.922705 0.541636
|
||||
0
|
||||
0.457670 0.420798
|
||||
1
|
||||
0.817077 0.760224
|
||||
0
|
||||
0.636960 0.612407
|
||||
1
|
||||
0.432491 0.626290
|
||||
1
|
||||
0.386549 0.560636
|
||||
1
|
||||
0.232895 0.581019
|
||||
1
|
||||
0.112559 0.707089
|
||||
1
|
||||
0.696998 0.661680
|
||||
0
|
||||
0.827490 0.599348
|
||||
1
|
||||
0.845411 0.534025
|
||||
1
|
||||
0.461166 0.499998
|
||||
0
|
||||
0.362956 0.666979
|
||||
0
|
||||
0.604123 0.305212
|
||||
1
|
||||
0.456846 0.535413
|
||||
0
|
||||
0.339461 0.414184
|
||||
0
|
||||
0.713958 0.099718
|
||||
0
|
||||
0.681950 0.402753
|
||||
1
|
||||
0.065469 0.267737
|
||||
0
|
||||
0.462169 0.884058
|
||||
0
|
||||
0.541063 0.495957
|
||||
1
|
||||
0.543154 0.464587
|
||||
1
|
||||
0.841428 0.396434
|
||||
1
|
||||
0.757138 0.813330
|
||||
0
|
||||
0.692781 0.441527
|
||||
1
|
||||
0.227053 0.526877
|
||||
1
|
||||
0.461504 0.546903
|
||||
0
|
||||
0.407708 0.195733
|
||||
0
|
||||
0.560048 0.573175
|
||||
0
|
||||
0.660539 0.585816
|
||||
1
|
||||
0.381544 0.535929
|
||||
1
|
||||
0.303002 0.338320
|
||||
1
|
||||
0.439952 0.426825
|
||||
1
|
||||
0.461702 0.111111
|
||||
1
|
||||
0.276727 0.683227
|
||||
1
|
||||
0.530894 0.442207
|
||||
1
|
||||
0.784858 0.152902
|
||||
0
|
||||
0.757038 0.710952
|
||||
1
|
||||
0.927537 0.457894
|
||||
0
|
||||
0.286042 0.900282
|
||||
1
|
||||
0.976140 0.644436
|
||||
1
|
||||
0.322653 0.831784
|
||||
0
|
||||
0.537831 0.115942
|
||||
1
|
||||
0.390681 0.366786
|
||||
0
|
||||
0.588076 0.209672
|
||||
0
|
||||
0.366835 0.938977
|
||||
1
|
||||
0.156652 0.781775
|
||||
1
|
||||
0.772947 0.473123
|
||||
0
|
||||
0.640736 0.236715
|
||||
0
|
||||
0.336766 0.633955
|
||||
0
|
||||
0.182923 0.239776
|
||||
1
|
||||
0.476929 0.265700
|
||||
1
|
||||
0.304347 0.519264
|
||||
0
|
||||
0.341409 0.306746
|
||||
1
|
||||
0.806412 0.873367
|
||||
1
|
||||
0.615554 0.716199
|
||||
0
|
||||
0.723273 0.316773
|
||||
0
|
||||
0.686316 0.272982
|
||||
0
|
||||
0.084247 0.626114
|
||||
1
|
387
lib/ann/fann/datasets/two-spiral.train
Normal file
@ -0,0 +1,387 @@
|
||||
193 2 1
|
||||
0.499995 0.653846
|
||||
1
|
||||
0.544418 0.481604
|
||||
1
|
||||
0.620200 0.320118
|
||||
1
|
||||
0.595191 0.404816
|
||||
0
|
||||
0.404809 0.595184
|
||||
1
|
||||
0.171310 0.636142
|
||||
0
|
||||
0.014323 0.403392
|
||||
0
|
||||
0.617884 0.476556
|
||||
0
|
||||
0.391548 0.478424
|
||||
1
|
||||
0.455912 0.721618
|
||||
0
|
||||
0.615385 0.500005
|
||||
0
|
||||
0.268835 0.268827
|
||||
0
|
||||
0.812761 0.187243
|
||||
0
|
||||
0.076923 0.499997
|
||||
1
|
||||
0.769231 0.500006
|
||||
0
|
||||
0.650862 0.864223
|
||||
0
|
||||
0.799812 0.299678
|
||||
1
|
||||
0.328106 0.614848
|
||||
0
|
||||
0.591985 0.722088
|
||||
0
|
||||
0.692308 0.500005
|
||||
1
|
||||
0.899757 0.334418
|
||||
0
|
||||
0.484058 0.419839
|
||||
1
|
||||
0.200188 0.700322
|
||||
0
|
||||
0.863769 0.256940
|
||||
0
|
||||
0.384615 0.499995
|
||||
1
|
||||
0.457562 0.508439
|
||||
0
|
||||
0.515942 0.580161
|
||||
0
|
||||
0.844219 0.431535
|
||||
1
|
||||
0.456027 0.529379
|
||||
0
|
||||
0.235571 0.104252
|
||||
0
|
||||
0.260149 0.400644
|
||||
1
|
||||
0.500003 0.423077
|
||||
1
|
||||
0.544088 0.278382
|
||||
1
|
||||
0.597716 0.540480
|
||||
0
|
||||
0.562549 0.651021
|
||||
1
|
||||
0.574101 0.127491
|
||||
1
|
||||
0.545953 0.731052
|
||||
0
|
||||
0.649585 0.350424
|
||||
1
|
||||
0.607934 0.427886
|
||||
0
|
||||
0.499995 0.807692
|
||||
1
|
||||
0.437451 0.348979
|
||||
0
|
||||
0.382116 0.523444
|
||||
1
|
||||
1 0.500000
|
||||
1
|
||||
0.731165 0.731173
|
||||
1
|
||||
0.500002 0.038462
|
||||
0
|
||||
0.683896 0.536585
|
||||
1
|
||||
0.910232 0.581604
|
||||
0
|
||||
0.499998 0.961538
|
||||
1
|
||||
0.903742 0.769772
|
||||
1
|
||||
0.543973 0.470621
|
||||
1
|
||||
0.593481 0.639914
|
||||
1
|
||||
0.240659 0.448408
|
||||
1
|
||||
0.425899 0.872509
|
||||
0
|
||||
0 0.500000
|
||||
0
|
||||
0.500006 0.269231
|
||||
1
|
||||
0.155781 0.568465
|
||||
0
|
||||
0.096258 0.230228
|
||||
0
|
||||
0.583945 0.556095
|
||||
0
|
||||
0.550746 0.575954
|
||||
0
|
||||
0.680302 0.935290
|
||||
1
|
||||
0.693329 0.461550
|
||||
1
|
||||
0.500005 0.192308
|
||||
0
|
||||
0.230769 0.499994
|
||||
1
|
||||
0.721691 0.831791
|
||||
0
|
||||
0.621423 0.793156
|
||||
1
|
||||
0.735853 0.342415
|
||||
0
|
||||
0.402284 0.459520
|
||||
1
|
||||
0.589105 0.052045
|
||||
0
|
||||
0.189081 0.371208
|
||||
0
|
||||
0.533114 0.579952
|
||||
0
|
||||
0.251594 0.871762
|
||||
1
|
||||
0.764429 0.895748
|
||||
1
|
||||
0.499994 0.730769
|
||||
0
|
||||
0.415362 0.704317
|
||||
0
|
||||
0.422537 0.615923
|
||||
1
|
||||
0.337064 0.743842
|
||||
1
|
||||
0.560960 0.806496
|
||||
1
|
||||
0.810919 0.628792
|
||||
1
|
||||
0.319698 0.064710
|
||||
0
|
||||
0.757622 0.393295
|
||||
0
|
||||
0.577463 0.384077
|
||||
0
|
||||
0.349138 0.135777
|
||||
1
|
||||
0.165214 0.433402
|
||||
0
|
||||
0.241631 0.758362
|
||||
0
|
||||
0.118012 0.341772
|
||||
1
|
||||
0.514072 0.429271
|
||||
1
|
||||
0.676772 0.676781
|
||||
0
|
||||
0.294328 0.807801
|
||||
0
|
||||
0.153846 0.499995
|
||||
0
|
||||
0.500005 0.346154
|
||||
0
|
||||
0.307692 0.499995
|
||||
0
|
||||
0.615487 0.452168
|
||||
0
|
||||
0.466886 0.420048
|
||||
1
|
||||
0.440905 0.797064
|
||||
1
|
||||
0.485928 0.570729
|
||||
0
|
||||
0.470919 0.646174
|
||||
1
|
||||
0.224179 0.315696
|
||||
0
|
||||
0.439040 0.193504
|
||||
0
|
||||
0.408015 0.277912
|
||||
1
|
||||
0.316104 0.463415
|
||||
0
|
||||
0.278309 0.168209
|
||||
1
|
||||
0.214440 0.214435
|
||||
1
|
||||
0.089768 0.418396
|
||||
1
|
||||
0.678953 0.767832
|
||||
1
|
||||
0.080336 0.583473
|
||||
1
|
||||
0.363783 0.296127
|
||||
1
|
||||
0.474240 0.562183
|
||||
0
|
||||
0.313445 0.577267
|
||||
0
|
||||
0.416055 0.443905
|
||||
1
|
||||
0.529081 0.353826
|
||||
0
|
||||
0.953056 0.687662
|
||||
1
|
||||
0.534725 0.448035
|
||||
1
|
||||
0.469053 0.344394
|
||||
0
|
||||
0.759341 0.551592
|
||||
0
|
||||
0.705672 0.192199
|
||||
1
|
||||
0.385925 0.775385
|
||||
1
|
||||
0.590978 0.957385
|
||||
1
|
||||
0.406519 0.360086
|
||||
0
|
||||
0.409022 0.042615
|
||||
0
|
||||
0.264147 0.657585
|
||||
1
|
||||
0.758369 0.241638
|
||||
1
|
||||
0.622380 0.622388
|
||||
1
|
||||
0.321047 0.232168
|
||||
0
|
||||
0.739851 0.599356
|
||||
0
|
||||
0.555199 0.366750
|
||||
0
|
||||
0.608452 0.521576
|
||||
0
|
||||
0.352098 0.401168
|
||||
0
|
||||
0.530947 0.655606
|
||||
1
|
||||
0.160045 0.160044
|
||||
0
|
||||
0.455582 0.518396
|
||||
0
|
||||
0.881988 0.658228
|
||||
0
|
||||
0.643511 0.153547
|
||||
1
|
||||
0.499997 0.576923
|
||||
0
|
||||
0.575968 0.881942
|
||||
0
|
||||
0.923077 0.500003
|
||||
0
|
||||
0.449254 0.424046
|
||||
1
|
||||
0.839782 0.727039
|
||||
0
|
||||
0.647902 0.598832
|
||||
1
|
||||
0.444801 0.633250
|
||||
1
|
||||
0.392066 0.572114
|
||||
1
|
||||
0.242378 0.606705
|
||||
1
|
||||
0.136231 0.743060
|
||||
1
|
||||
0.711862 0.641568
|
||||
0
|
||||
0.834786 0.566598
|
||||
1
|
||||
0.846154 0.500005
|
||||
1
|
||||
0.538462 0.500002
|
||||
1
|
||||
0.379800 0.679882
|
||||
0
|
||||
0.584638 0.295683
|
||||
1
|
||||
0.459204 0.540793
|
||||
0
|
||||
0.331216 0.430082
|
||||
0
|
||||
0.672945 0.082478
|
||||
0
|
||||
0.671894 0.385152
|
||||
1
|
||||
0.046944 0.312338
|
||||
0
|
||||
0.499995 0.884615
|
||||
0
|
||||
0.542438 0.491561
|
||||
1
|
||||
0.540796 0.459207
|
||||
1
|
||||
0.828690 0.363858
|
||||
1
|
||||
0.785560 0.785565
|
||||
0
|
||||
0.686555 0.422733
|
||||
1
|
||||
0.231226 0.553456
|
||||
1
|
||||
0.465275 0.551965
|
||||
0
|
||||
0.378577 0.206844
|
||||
0
|
||||
0.567988 0.567994
|
||||
0
|
||||
0.668784 0.569918
|
||||
1
|
||||
0.384513 0.547832
|
||||
1
|
||||
0.288138 0.358432
|
||||
1
|
||||
0.432012 0.432006
|
||||
1
|
||||
0.424032 0.118058
|
||||
1
|
||||
0.296023 0.703969
|
||||
1
|
||||
0.525760 0.437817
|
||||
1
|
||||
0.748406 0.128238
|
||||
0
|
||||
0.775821 0.684304
|
||||
1
|
||||
0.919664 0.416527
|
||||
0
|
||||
0.327055 0.917522
|
||||
1
|
||||
0.985677 0.596608
|
||||
1
|
||||
0.356489 0.846453
|
||||
0
|
||||
0.500005 0.115385
|
||||
1
|
||||
0.377620 0.377612
|
||||
0
|
||||
0.559095 0.202936
|
||||
0
|
||||
0.410895 0.947955
|
||||
1
|
||||
0.187239 0.812757
|
||||
1
|
||||
0.768774 0.446544
|
||||
0
|
||||
0.614075 0.224615
|
||||
0
|
||||
0.350415 0.649576
|
||||
0
|
||||
0.160218 0.272961
|
||||
1
|
||||
0.454047 0.268948
|
||||
1
|
||||
0.306671 0.538450
|
||||
0
|
||||
0.323228 0.323219
|
||||
1
|
||||
0.839955 0.839956
|
||||
1
|
||||
0.636217 0.703873
|
||||
0
|
||||
0.703977 0.296031
|
||||
0
|
||||
0.662936 0.256158
|
||||
0
|
||||
0.100243 0.665582
|
||||
1
|
286
lib/ann/fann/docs/NaturalDocs-1.52/Config/Languages.txt
Executable file
@ -0,0 +1,286 @@
|
||||
Format: 1.52
|
||||
|
||||
# This is the main Natural Docs languages file. If you change anything here,
|
||||
# it will apply to EVERY PROJECT you use Natural Docs on. If you'd like to
|
||||
# change something for just one project, edit the Languages.txt in its project
|
||||
# directory instead.
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# SYNTAX:
|
||||
#
|
||||
# Unlike other Natural Docs configuration files, in this file all comments
|
||||
# MUST be alone on a line. Some languages deal with the # character, so you
|
||||
# cannot put comments on the same line as content.
|
||||
#
|
||||
# Also, all lists are separated with spaces, not commas, again because some
|
||||
# languages may need to use them.
|
||||
#
|
||||
# Language: [name]
|
||||
# Defines a new language. Its name can use any characters.
|
||||
#
|
||||
# The language Shebang Script is special. It's entry is only used for
|
||||
# extensions, and files with those extensions have their shebang (#!) lines
|
||||
# read to determine the real language of the file. Extensionless files are
|
||||
# always treated this way.
|
||||
#
|
||||
# The language Text File is also special. It's treated as one big comment
|
||||
# so you can put Natural Docs content in them without special symbols. Also,
|
||||
# if you don't specify a package separator, ignored prefixes, or enum value
|
||||
# behavior, it will copy those settings from the language that is used most
|
||||
# in the source tree.
|
||||
#
|
||||
# Extensions: [extension] [extension] ...
|
||||
# Defines the file extensions of the language's source files. You can use *
|
||||
# to mean any undefined extension.
|
||||
#
|
||||
# Shebang Strings: [string] [string] ...
|
||||
# Defines a list of strings that can appear in the shebang (#!) line to
|
||||
# designate that it's part of the language.
|
||||
#
|
||||
# Ignore Prefixes in Index: [prefix] [prefix] ...
|
||||
# Ignore [Topic Type] Prefixes in Index: [prefix] [prefix] ...
|
||||
# Specifies prefixes that should be ignored when sorting symbols in an
|
||||
# index. Can be specified in general or for a specific topic type.
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
# For basic language support only:
|
||||
#
|
||||
# Line Comments: [symbol] [symbol] ...
|
||||
# Defines a space-separated list of symbols that are used for line comments,
|
||||
# if any.
|
||||
#
|
||||
# Block Comments: [opening sym] [closing sym] [opening sym] [closing sym] ...
|
||||
# Defines a space-separated list of symbol pairs that are used for block
|
||||
# comments, if any.
|
||||
#
|
||||
# Package Separator: [symbol]
|
||||
# Defines the default package separator symbol. The default is a dot.
|
||||
#
|
||||
# [Topic Type] Prototype Enders: [symbol] [symbol] ...
|
||||
# When defined, Natural Docs will attempt to get a prototype from the code
|
||||
# immediately following the topic type. It stops when it reaches one of
|
||||
# these symbols. Use \n for line breaks.
|
||||
#
|
||||
# Line Extender: [symbol]
|
||||
# Defines the symbol that allows a prototype to span multiple lines if
|
||||
# normally a line break would end it.
|
||||
#
|
||||
# Enum Values: [global|under type|under parent]
|
||||
# Defines how enum values are referenced. The default is global.
|
||||
# global - Values are always global, referenced as 'value'.
|
||||
# under type - Values are under the enum type, referenced as
|
||||
# 'package.enum.value'.
|
||||
# under parent - Values are under the enum's parent, referenced as
|
||||
# 'package.value'.
|
||||
#
|
||||
# Perl Package: [perl package]
|
||||
# Specifies the Perl package used to fine-tune the language behavior in ways
|
||||
# too complex to do in this file.
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
# For full language support only:
|
||||
#
|
||||
# Full Language Support: [perl package]
|
||||
# Specifies the Perl package that has the parsing routines necessary for full
|
||||
# language support.
|
||||
#
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
# The following languages MUST be defined in this file:
|
||||
#
|
||||
# Text File, Shebang Script
|
||||
|
||||
# If you add a language that you think would be useful to other developers
|
||||
# and should be included in Natural Docs by default, please e-mail it to
|
||||
# languages [at] naturaldocs [dot] org.
|
||||
|
||||
|
||||
Language: Text File
|
||||
|
||||
Extension: txt
|
||||
|
||||
|
||||
Language: Shebang Script
|
||||
|
||||
Extension: cgi
|
||||
|
||||
|
||||
Language: C/C++
|
||||
|
||||
Extensions: c cpp h hpp cxx hxx
|
||||
Ignore Function Prefix in Index: ~
|
||||
Line Comment: //
|
||||
Block Comment: /* */
|
||||
Package Separator: ::
|
||||
Enum Values: Under parent
|
||||
Class Prototype Enders: ; {
|
||||
Function Prototype Enders: ; {
|
||||
Variable Prototype Enders: ; =
|
||||
|
||||
|
||||
Language: C#
|
||||
|
||||
Extension: cs
|
||||
Ignore Prefix in Index: @
|
||||
Full Language Support: NaturalDocs::Languages::CSharp
|
||||
|
||||
|
||||
Language: Java
|
||||
|
||||
Extension: java
|
||||
Line Comment: //
|
||||
Block Comment: /* */
|
||||
Enum Values: Under type
|
||||
Function Prototype Ender: {
|
||||
Variable Prototype Enders: ; =
|
||||
|
||||
|
||||
Language: JavaScript
|
||||
|
||||
Extension: js
|
||||
Line Comment: //
|
||||
Block Comment: /* */
|
||||
Enum Values: Under type
|
||||
Function Prototype Ender: {
|
||||
Variable Prototype Enders: ; = , }
|
||||
|
||||
|
||||
Language: Perl
|
||||
|
||||
Extensions: pl pm
|
||||
Shebang String: perl
|
||||
Ignore Variable Prefixes in Index: $ @ % *
|
||||
Full Language Support: NaturalDocs::Languages::Perl
|
||||
|
||||
|
||||
Language: Python
|
||||
|
||||
Extension: py
|
||||
Shebang String: python
|
||||
Line Comment: #
|
||||
Function Prototype Ender: :
|
||||
Variable Prototype Ender: =
|
||||
Line Extender: \
|
||||
|
||||
|
||||
Language: PHP
|
||||
|
||||
Extensions: inc php php3 php4 phtml
|
||||
Shebang String: php
|
||||
Ignore Variable Prefix in Index: $
|
||||
Line Comments: // #
|
||||
Block Comment: /* */
|
||||
Function Prototype Enders: ; {
|
||||
Variable Prototype Enders: ; =
|
||||
|
||||
|
||||
Language: SQL
|
||||
|
||||
Extension: sql
|
||||
Line Comment: --
|
||||
Block Comment: /* */
|
||||
Enum Values: Global
|
||||
Function Prototype Enders: , ; ) as As AS is Is IS
|
||||
Variable Prototype Enders: , ; ) := default Default DEFAULT
|
||||
Database Trigger Prototype Enders: begin Begin BEGIN as As AS
|
||||
Database Index Prototype Enders: , ; )
|
||||
Perl Package: NaturalDocs::Languages::PLSQL
|
||||
|
||||
|
||||
Language: Visual Basic
|
||||
|
||||
Extensions: vb vbs bas cls frm
|
||||
Line Comment: '
|
||||
Enum Values: Under type
|
||||
Function Prototype Ender: \n
|
||||
Variable Prototype Enders: \n =
|
||||
Line Extender: _
|
||||
|
||||
|
||||
Language: Pascal
|
||||
|
||||
Extension: pas
|
||||
Line Comment: //
|
||||
Block Comments: { } (* *)
|
||||
Function Prototype Ender: ;
|
||||
Variable Prototype Enders: ; =
|
||||
Perl Package: NaturalDocs::Languages::Pascal
|
||||
|
||||
|
||||
Language: Assembly
|
||||
|
||||
Extension: asm
|
||||
Line Comment: ;
|
||||
Variable Prototype Ender: \n
|
||||
Line Extender: \
|
||||
|
||||
|
||||
Language: Ada
|
||||
|
||||
Extensions: ada ads adb
|
||||
Line Comment: --
|
||||
Function Prototype Enders: ; is Is IS
|
||||
Variable Prototype Enders: ; :=
|
||||
Perl Package: NaturalDocs::Languages::Ada
|
||||
|
||||
|
||||
Language: Tcl
|
||||
|
||||
Extensions: tcl exp
|
||||
Shebang Strings: tclsh wish expect
|
||||
Line Comment: #
|
||||
Package Separator: ::
|
||||
Function Prototype Enders: ; {
|
||||
Variable Prototype Enders: ; \n
|
||||
Line Extender: \
|
||||
Perl Package: NaturalDocs::Languages::Tcl
|
||||
|
||||
|
||||
Language: Ruby
|
||||
|
||||
Extension: rb
|
||||
Shebang String: ruby
|
||||
Ignore Variable Prefixes in Index: $ @ @@
|
||||
Line Comment: #
|
||||
Enum Values: Under parent
|
||||
Function Prototype Enders: ; \n
|
||||
Variable Prototype Enders: ; \n =
|
||||
Line Extender: \
|
||||
|
||||
|
||||
Language: Makefile
|
||||
|
||||
Extensions: mk mak make
|
||||
Line Comment: #
|
||||
|
||||
|
||||
Language: ActionScript
|
||||
|
||||
Extensions: as mxml
|
||||
Full Language Support: NaturalDocs::Languages::ActionScript
|
||||
|
||||
|
||||
Language: ColdFusion
|
||||
|
||||
Extensions: cfm cfml cfc
|
||||
Line Comment: //
|
||||
Block Comments: <!--- ---> /* */
|
||||
Function Prototype Enders: { <
|
||||
|
||||
|
||||
Language: R
|
||||
|
||||
Extension: r
|
||||
Line Comment: #
|
||||
Function Prototype Enders: { ;
|
||||
Variable Prototype Enders: <- = ; \n
|
||||
|
||||
|
||||
Language: Fortran
|
||||
|
||||
Extensions: f90 f95 f03
|
||||
Line Comment: !
|
||||
Function Prototype Ender: \n
|
||||
Variable Prototype Enders: \n = =>
|
||||
Line Extender: &
|
382
lib/ann/fann/docs/NaturalDocs-1.52/Config/Topics.txt
Executable file
@ -0,0 +1,382 @@
|
||||
Format: 1.52
|
||||
|
||||
# This is the main Natural Docs topics file. If you change anything here, it
|
||||
# will apply to EVERY PROJECT you use Natural Docs on. If you'd like to
|
||||
# change something for just one project, edit the Topics.txt in its project
|
||||
# directory instead.
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# SYNTAX:
|
||||
#
|
||||
# Topic Type: [name]
|
||||
# Creates a new topic type. Each type gets its own index and behavior
|
||||
# settings. Its name can have letters, numbers, spaces, and these
|
||||
# charaters: - / . '
|
||||
#
|
||||
# The Enumeration type is special. It's indexed with Types but its members
|
||||
# are indexed with Constants according to the rules in Languages.txt.
|
||||
#
|
||||
# Plural: [name]
|
||||
# Sets the plural name of the topic type, if different.
|
||||
#
|
||||
# Keywords:
|
||||
# [keyword]
|
||||
# [keyword], [plural keyword]
|
||||
# ...
|
||||
# Defines a list of keywords for the topic type. They may only contain
|
||||
# letters, numbers, and spaces and are not case sensitive. Plural keywords
|
||||
# are used for list topics.
|
||||
#
|
||||
# Index: [yes|no]
|
||||
# Whether the topics get their own index. Defaults to yes. Everything is
|
||||
# included in the general index regardless of this setting.
|
||||
#
|
||||
# Scope: [normal|start|end|always global]
|
||||
# How the topics affects scope. Defaults to normal.
|
||||
# normal - Topics stay within the current scope.
|
||||
# start - Topics start a new scope for all the topics beneath it,
|
||||
# like class topics.
|
||||
# end - Topics reset the scope back to global for all the topics
|
||||
# beneath it.
|
||||
# always global - Topics are defined as global, but do not change the scope
|
||||
# for any other topics.
|
||||
#
|
||||
# Class Hierarchy: [yes|no]
|
||||
# Whether the topics are part of the class hierarchy. Defaults to no.
|
||||
#
|
||||
# Page Title If First: [yes|no]
|
||||
# Whether the topic's title becomes the page title if it's the first one in
|
||||
# a file. Defaults to no.
|
||||
#
|
||||
# Break Lists: [yes|no]
|
||||
# Whether list topics should be broken into individual topics in the output.
|
||||
# Defaults to no.
|
||||
#
|
||||
# Can Group With: [type], [type], ...
|
||||
# Defines a list of topic types that this one can possibly be grouped with.
|
||||
# Defaults to none.
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
# The following topics MUST be defined in this file:
|
||||
#
|
||||
# Generic, Class, Interface, Section, File, Group, Function, Variable,
|
||||
# Property, Type, Constant, Enumeration, Event, Delegate
|
||||
|
||||
# If you add something that you think would be useful to other developers
|
||||
# and should be included in Natural Docs by default, please e-mail it to
|
||||
# topics [at] naturaldocs [dot] org.
|
||||
|
||||
|
||||
Topic Type: Generic
|
||||
|
||||
Index: No
|
||||
Keywords:
|
||||
topic, topics
|
||||
about, list
|
||||
|
||||
|
||||
Topic Type: Class
|
||||
|
||||
Plural: Classes
|
||||
Scope: Start
|
||||
Class Hierarchy: Yes
|
||||
Page Title If First: Yes
|
||||
Can Group With: Interfaces
|
||||
|
||||
Keywords:
|
||||
class, classes
|
||||
structure, structures
|
||||
struct, structs
|
||||
package, packages
|
||||
namespace, namespaces
|
||||
|
||||
|
||||
Topic Type: Interface
|
||||
|
||||
Plural: Interfaces
|
||||
Scope: Start
|
||||
Class Hierarchy: Yes
|
||||
Page Title If First: Yes
|
||||
Can Group With: Classes
|
||||
|
||||
Keywords:
|
||||
interface, interfaces
|
||||
|
||||
|
||||
Topic Type: Section
|
||||
|
||||
Plural: Sections
|
||||
Index: No
|
||||
Scope: End
|
||||
Page Title If First: Yes
|
||||
|
||||
Keywords:
|
||||
section
|
||||
title
|
||||
|
||||
|
||||
Topic Type: File
|
||||
|
||||
Plural: Files
|
||||
Scope: Always global
|
||||
Page Title If First: Yes
|
||||
|
||||
Keywords:
|
||||
file, files
|
||||
program, programs
|
||||
script, scripts
|
||||
document, documents
|
||||
doc, docs
|
||||
header, headers
|
||||
|
||||
|
||||
Topic Type: Group
|
||||
|
||||
Plural: Groups
|
||||
Index: No
|
||||
|
||||
Keywords:
|
||||
group
|
||||
|
||||
|
||||
Topic Type: Function
|
||||
|
||||
Plural: Functions
|
||||
Break Lists: Yes
|
||||
Can Group With: Properties
|
||||
|
||||
Keywords:
|
||||
function, functions
|
||||
func, funcs
|
||||
procedure, procedures
|
||||
proc, procs
|
||||
routine, routines
|
||||
subroutine, subroutines
|
||||
sub, subs
|
||||
method, methods
|
||||
callback, callbacks
|
||||
constructor, constructors
|
||||
destructor, destructors
|
||||
operator, operators
|
||||
|
||||
|
||||
Topic Type: Variable
|
||||
|
||||
Plural: Variables
|
||||
Can Group With: Types, Constants, Macros, Enumerations
|
||||
|
||||
Keywords:
|
||||
variable, variables
|
||||
var, vars
|
||||
integer, integers
|
||||
int, ints
|
||||
uint, uints
|
||||
long, longs
|
||||
ulong, ulongs
|
||||
short, shorts
|
||||
ushort, ushorts
|
||||
byte, bytes
|
||||
ubyte, ubytes
|
||||
sbyte, sbytes
|
||||
float, floats
|
||||
double, doubles
|
||||
real, reals
|
||||
decimal, decimals
|
||||
scalar, scalars
|
||||
array, arrays
|
||||
arrayref, arrayrefs
|
||||
hash, hashes
|
||||
hashref, hashrefs
|
||||
bool, bools
|
||||
boolean, booleans
|
||||
flag, flags
|
||||
bit, bits
|
||||
bitfield, bitfields
|
||||
field, fields
|
||||
pointer, pointers
|
||||
ptr, ptrs
|
||||
reference, references
|
||||
ref, refs
|
||||
object, objects
|
||||
obj, objs
|
||||
character, characters
|
||||
wcharacter, wcharacters
|
||||
char, chars
|
||||
wchar, wchars
|
||||
string, strings
|
||||
wstring, wstrings
|
||||
str, strs
|
||||
wstr, wstrs
|
||||
handle, handles
|
||||
|
||||
|
||||
Topic Type: Property
|
||||
|
||||
Plural: Properties
|
||||
Can Group With: Functions
|
||||
|
||||
Keywords:
|
||||
property, properties
|
||||
prop, props
|
||||
|
||||
|
||||
Topic Type: Type
|
||||
|
||||
Plural: Types
|
||||
Can Group With: Variables, Constants, Macros, Enumerations
|
||||
|
||||
Keywords:
|
||||
type, types
|
||||
typedef, typedefs
|
||||
|
||||
|
||||
Topic Type: Constant
|
||||
|
||||
Plural: Constants
|
||||
Can Group With: Variables, Types, Macros, Enumerations
|
||||
|
||||
Keywords:
|
||||
constant, constants
|
||||
const, consts
|
||||
|
||||
|
||||
Topic Type: Enumeration
|
||||
|
||||
Plural: Enumerations
|
||||
Index: No
|
||||
Can Group With: Variables, Types, Macros, Constants
|
||||
|
||||
Keywords:
|
||||
enum, enums
|
||||
enumeration, enumerations
|
||||
|
||||
|
||||
Topic Type: Event
|
||||
|
||||
Plural: Events
|
||||
Keywords:
|
||||
event, events
|
||||
|
||||
|
||||
Topic Type: Delegate
|
||||
|
||||
Plural: Delegates
|
||||
Keywords:
|
||||
delegate, delegates
|
||||
|
||||
|
||||
Topic Type: Macro
|
||||
|
||||
Plural: Macros
|
||||
Can Group With: Variables, Types, Constants
|
||||
|
||||
Keywords:
|
||||
define, defines
|
||||
def, defs
|
||||
macro, macros
|
||||
|
||||
|
||||
Topic Type: Database
|
||||
|
||||
Plural: Databases
|
||||
Page Title If First: Yes
|
||||
|
||||
Keywords:
|
||||
database, databases
|
||||
db, dbs
|
||||
|
||||
|
||||
Topic Type: Database Table
|
||||
|
||||
Plural: Database Tables
|
||||
Scope: Start
|
||||
Page Title If First: Yes
|
||||
|
||||
Keywords:
|
||||
table, tables
|
||||
database table, database tables
|
||||
databasetable, databasetables
|
||||
db table, db tables
|
||||
dbtable, dbtables
|
||||
|
||||
|
||||
Topic Type: Database View
|
||||
|
||||
Plural: Database Views
|
||||
Scope: Start
|
||||
Page Title If First: Yes
|
||||
|
||||
Keywords:
|
||||
view, views
|
||||
database view, database views
|
||||
databaseview, databaseviews
|
||||
db view, db views
|
||||
dbview, dbviews
|
||||
|
||||
|
||||
Topic Type: Database Index
|
||||
|
||||
Plural: Database Indexes
|
||||
Keywords:
|
||||
index, indexes
|
||||
index, indices
|
||||
database index, database indexes
|
||||
database index, database indices
|
||||
databaseindex, databaseindexes
|
||||
databaseindex, databaseindices
|
||||
db index, db indexes
|
||||
db index, db indices
|
||||
dbindex, dbindexes
|
||||
dbindex, dbindices
|
||||
key, keys
|
||||
database key, database keys
|
||||
databasekey, databasekeys
|
||||
db key, db keys
|
||||
dbkey, dbkeys
|
||||
primary key, primary keys
|
||||
primarykey, primarykeys
|
||||
database primary key, database primary keys
|
||||
databaseprimarykey, databaseprimarykeys
|
||||
db primary key, db primary keys
|
||||
dbprimarykey, dbprimarykeys
|
||||
|
||||
|
||||
Topic Type: Database Cursor
|
||||
|
||||
Plural: Database Cursors
|
||||
Keywords:
|
||||
cursor, cursors
|
||||
database cursor, database cursors
|
||||
databasecursor, databasecursors
|
||||
db cursor, db cursors
|
||||
dbcursor, dbcursors
|
||||
|
||||
|
||||
Topic Type: Database Trigger
|
||||
|
||||
Plural: Database Triggers
|
||||
Keywords:
|
||||
trigger, triggers
|
||||
database trigger, database triggers
|
||||
databasetrigger, databasetriggers
|
||||
db trigger, db triggers
|
||||
dbtrigger, dbtriggers
|
||||
|
||||
|
||||
Topic Type: Cookie
|
||||
|
||||
Plural: Cookies
|
||||
Scope: Always global
|
||||
|
||||
Keywords:
|
||||
cookie, cookies
|
||||
|
||||
|
||||
Topic Type: Build Target
|
||||
|
||||
Plural: Build Targets
|
||||
Keywords:
|
||||
target, targets
|
||||
build target, build targets
|
||||
buildtarget, buildtargets
|
52
lib/ann/fann/docs/NaturalDocs-1.52/Help/customizinglanguages.html
Executable file
@ -0,0 +1,52 @@
|
||||
|
||||
|
||||
<html><head><title>Customizing Natural Docs Languages</title><link rel=stylesheet type="text/css" href="styles.css"><link rel=stylesheet type="text/css" href="examples.css"><style type="text/css"><!--
|
||||
|
||||
|
||||
.InMainFile {
|
||||
padding: 1ex 2ex;
|
||||
margin: 1em 0;
|
||||
font: italic 9pt Verdana, sans-serif;
|
||||
line-height: 150%;
|
||||
background-color: #F8F8F8;
|
||||
}
|
||||
.InMainFile code {
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
.EnumTable {
|
||||
margin: .5em 5ex;
|
||||
}
|
||||
.EnumOption {
|
||||
font-weight: bold;
|
||||
padding-right: 2ex;
|
||||
}
|
||||
|
||||
|
||||
--></style><script language=JavaScript src="javascript/PNGHandling.js"></script><script language=JavaScript src="javascript/BrowserStyles.js"></script></head><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><script language=JavaScript><!--
|
||||
OpeningBrowserTags();// --></script>
|
||||
|
||||
<!-- saved from url=(0026)http://www.naturaldocs.org -->
|
||||
|
||||
<table width=100% border=0 cellspacing=0 cellpadding=0 class=PageTable float=center><tr><td colspan=3 class=Header><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><img src="images/header/leftside.png" width=30 height=75><a href="index.html"><img src="images/header/logo.png" width=524 height=75 alt="Natural Docs"></a></td><td align=right><img src="images/header/rightside.png" width=30 height=75></td></tr></table></td></tr><tr><td><img src="images/header/overleftmargin.png" width=10 height=6></td><td class=SideMenuTop><img src="images/header/overmenu.png" width=14 height=6></td><td class=BodyTop><img src="images/header/overbody.png" width=24 height=6></td></tr><tr><td></td><td class=SideMenu nowrap><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/about.png" width=52 height=13 alt="About"></div><div class=SideMenuBody><a href="languages.html" class=SideMenuEntry>Language Support</a><a href="output.html" class=SideMenuEntry>Output Formats</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/using.png" width=45 height=13 alt="Using"></div><div class=SideMenuBody><a href="documenting.html" class=SideMenuEntry>Documenting<br>Your Code</a><a href="keywords.html" class=SideMenuEntry>Keywords</a><a href="running.html" class=SideMenuEntry>Running</a><a href="troubleshooting.html" class=SideMenuEntry>Troubleshooting</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/customizing.png" width=96 height=13 alt="Customizing"></div><div class=SideMenuBody><a href="menu.html" class=SideMenuEntry>Organizing the Menu</a><a href="styles.html" class=SideMenuEntry>CSS Styles</a><a href="customizingtopics.html" class=SideMenuEntry>Topics and Keywords</a><span class=SideMenuEntry id=SelectedSideMenuEntry>Languages, Indexes,<br>and Prototypes</span></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/community.png" width=86 height=13 alt="Community"></div><div class=SideMenuBody><a href="http://www.naturaldocs.org/" class=SideMenuEntry>Web Site</a><a href="http://www.naturaldocs.org/mailinglist.html" class=SideMenuEntry>Mailing Lists</a><a href="http://www.naturaldocs.org/messageboards.html" class=SideMenuEntry>Message Boards</a><a href="http://www.naturaldocs.org/bugs.html" class=SideMenuEntry>Bugs and<br>Feature Requests</a></div></div></td><td class=Body width=100%><div class=PageTitle>Customizing Languages</div><div class=TOC><a href="#LanguagesTxt">Languages.txt</a> · <a href="#FileExtensions">File Extensions</a> · <a href="#AddingLanguages">Adding Languages</a> · <a href="#Prototypes">Prototypes</a><br><a href="#IndexPrefixes">Index Prefixes</a> · <a href="#SpecialLanguages">Special Languages</a> · <a href="#SyntaxReference">Syntax Reference</a></div><div class=Topic><a name="LanguagesTxt"></a><div class=TopicTitle>Languages.txt</div><p>Natural Docs has two files called <code>Languages.txt</code>: one in its Config directory, and one in <a href="running.html#CommandLine">your project directory.</a> These control the language, index prefix, and prototype features of Natural Docs.</p><p>You should edit the one in your project directory whenever possible. It keeps your changes separate and easier to manage, plus you don’t have to reapply them whenever you upgrade. Editing the one in Natural Docs’ Config directory would be better only if you’re using Natural Docs with a lot of projects and would like the changes to apply everywhere.</p><p>Note that unlike other Natural Docs configuration files, comments can only appear on their own lines. They cannot appear after something else on a line because settings may need to use the <code>#</code> symbol. Also, all lists are space-separated instead of comma-separated, again because some settings may need to use the comma symbol.</p></div><div class=Topic><a name=FileExtensions></a><div class=TopicTitle>File Extensions</div><p>If Natural Docs doesn’t recognize a file extension you use for your code, it’s not a problem. You can alter the language definition from your project file to add them.</p><pre class=Example>Alter Language: <i>[your language]</i>
|
||||
Add Extensions: cxx hxx</pre><p>On the other hand, if it’s scanning some files you don’t want it to scan, you can exclude extensions as well. Just add this to the top of your file:</p><pre class=Example>Ignore Extensions: c cpp</pre><p>In this example, Natural Docs will ignore C++ source files, thus only scanning the headers.</p></div><div class=Topic><a name=AddingLanguages></a><div class=TopicTitle>Adding Languages</div><p>You can add <a href="languages.html">basic language support</a> for any programming language just by editing these configuration files. Here are the most important settings:</p><pre class=Example>Language: Fictional
|
||||
|
||||
Extensions: fsrc fhdr
|
||||
Shebang Strings: fictional
|
||||
Line Comment: //
|
||||
Block Comment: /* */
|
||||
Package Separator: ::</pre><p>This tells Natural Docs that any files with the .fsrc or .fhdr extensions are part of our fictional programming language. Also, any .cgi or extensionless files that have “fictional” in the shebang (<code>#!</code>) line are part of it as well. Line comments start with <code>//</code> and block comments appear between <code>/*</code> and <code>*/</code>. The default package separator is <code>::</code>. Not too hard, huh?</p><p>You can also add settings to <a href="#IndexPrefixes">ignore prefixes in the index</a> and <a href="#Prototypes">detect prototypes</a>, but those are dealt with in their own sections on this page.</p></div><div class=Topic><a name=Prototypes></a><div class=TopicTitle>Prototypes</div><p>So you’ve <a href="#AddingLanguages">added a new language</a> and want to detect prototypes. Or perhaps you <a href="customizingtopics.html#AddingTopicTypes">added a custom topic type</a> and want to detect prototypes for that as well. Here’s an example of the properties you need:</p><pre class=Example>Function Prototype Enders: ; {
|
||||
Variable Prototype Enders: ; =</pre><p>The algorithm for finding prototypes is very simple, yet it works really well in practice. All the code following the comment is grabbed until it reaches an ender symbol or another comment. Ender symbols appearing inside parenthesis, brackets, braces, or angle brackets don’t count. If it reaches an ender symbol and somewhere in that code is the topic title, the code is accepted as the prototype.</p><p>So in the example above, variables end at semicolons (the end of the declaration) or equal signs (the default value expression, which we don’t want to include.) Since the Natural Docs comment for the variable should have appeared right before the definition, that leaves us with the name and type. Functions are handled similarly: they end at a semicolon (the end of a predeclaration) or an opening brace (the beginning of the body) leaving us with the name, parameters, and return type.</p><p>You can do this with any topic type, including custom ones. Any prototypes that look like they have parameters will be formatted as such automatically.</p><div class=SubTopic>Line Breaks</div><p>For some languages, line breaks are significant. To have them end a prototype, use <code>\n</code>. If it has an extender symbol that allows the code to continue on the next line, you can specify that as well.</p><pre class=Example>Function Prototype Ender: \n
|
||||
Variable Prototype Ender: \n =
|
||||
Line Extender: _</pre><div class=SubTopic>Colors</div><p>If you’re collecting prototypes for a custom topic type, they will not automatically get their own background color like the other types have. <a href="styles.html#CommonCustomizations">You have to define it via CSS.</a></p></div><div class=Topic><a name=IndexPrefixes></a><div class=TopicTitle>Index Prefixes</div><p>Natural Docs has the ability to ignore prefixes in the indexes. This is necessary because in certain languages, variables are prefixed with <code>$</code> or other symbols and we don’t want them to get all grouped together under the symbols heading. Instead, they appear in the sidebar and are sorted as if they’re not there.</p><div class=NDIndex><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading>A</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><span class=ISymbol>AddProperty</span>, <span class=IParent>SomeClass</span></td></tr><tr><td class=ISymbolPrefix>$</td><td class=IEntry><span class=ISymbol>amount</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><span class=ISymbol>Average</span></td></tr></table></div><p>However, we can take advantage of this simply to get around coding conventions. Suppose you prefix all your class names with C. They’d all form one gigantic group under C in the index. If you want, you can have it ignored so CCat, CDog, and CMouse get filed under C, D, and M instead. Just add this to your languages file:</p><pre class=Example>Alter Language: <i>[your language]</i>
|
||||
Add Ignored Class Prefix in Index: C</pre><p>Now C is ignored in your indexes:</p><div class=NDIndex><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading>A</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>C</td><td class=IEntry><span class=ISymbol>Account</span></td></tr><tr><td class=ISymbolPrefix>C</td><td class=IEntry><span class=ISymbol>AccountHolder</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>AddProperty</span>, <span class=IParent>SomeClass</span></td></tr><tr><td class=ISymbolPrefix>$</td><td class=IEntry><span class=ISymbol>amount</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><span class=ISymbol>Average</span></td></tr></table></div><p>You can include any number of prefixes and can do this for any topic type. So if you have a bunch of functions that start with <code>COM_</code> and <code>DB_</code>, you can ignore them too:</p><pre class=Example>Alter Language: <i>[your language]</i>
|
||||
Add Ignored Class Prefix in Index: C
|
||||
Add Ignored Function Prefixes in Index: COM_ DB_</pre></div><div class=Topic><a name=SpecialLanguages></a><div class=TopicTitle>Special Languages</div><p>There are two languages with special properties: Shebang Script and Text File.</p><p>Shebang Script allows you to define the file extensions where the language is really determined by the shebang (<code>#!</code>) line within it. For example, .cgi files. If Natural Docs finds a .cgi file, it sees that it’s a Shebang Script so it opens it up to parse it’s shebang line. It then searches it for substrings defined by other languages’ <code>Shebang String</code> settings to find out what language it really is. Files with no extension are always treated this way.</p><p>With Text File, the entire file is treated like a comment. There are no comment symbols required, you can just put Natural Docs content there in plain text. The most important setting is <code>Extensions</code>.</p><p>However, since it is possible to document classes, functions, etc. in text files, they also have their own <code>Package Separator</code> and <code>Ignored <i>[type]</i> Prefixes in Index</code> settings. To make things easier on you, by default it copies these settings from whichever language has the most source files in your project. You can override this by manually setting them, but you shouldn’t need to.</p></div><div class=Topic><a name=SyntaxReference></a><div class=TopicTitle>Syntax Reference</div><p>Unlike other Natural Docs configuration files, comments can only appear on their own lines. They cannot appear after something else on a line because settings may need to use the <code>#</code> symbol. Likewise, lists are separated with spaces instead of commas because commas themselves may need to appear on the list.</p><p>Singular and plural forms are generally both supported, so you can write <code>Extension</code> or <code>Extensions</code>. It doesn’t matter if they match how many items are set. Also, you can use either <code>Ignore</code> or <code>Ignored</code>.</p><pre class=Example>Ignore Extensions: <i>[extension] [extension]</i> ...</pre><p>Causes the listed file extensions to be ignored, even if they were previously defined to be part of a language. The list is space-separated. ex. “<code>Ignore Extensions: cvs txt</code>”</p><pre class=Example>Language: <i>[name]</i>
|
||||
Alter Language: <i>[name]</i></pre><p>Creates a new language or alters an existing one. Names can use any characters. Note the <a href="#SpecialLanguages">special behavior for languages named Shebang Script and Text File</a>.</p><p>If you’re altering an existing language and a property has an <code>[Add/Replace]</code> form, you have to specify whether you’re adding to or replacing the list if that property has already been defined.</p><div class=SubTopic>General Language Properties</div><pre class=Example>Extensions: <i>[extension] [extension]</i> ...
|
||||
<i>[Add/Replace]</i> Extensions: <i>[extension] [extension]</i> ...</pre><p>Defines file extensions for the language’s source files. The list is space-separated. ex. “<code>Extensions: c cpp</code>”. You can use extensions that were previously used by another language to redefine them. You can use <code>*</code> to specify all undefined extensions.</p><pre class=Example>Shebang Strings: <i>[string] [string]</i> ...
|
||||
<i>[Add/Replace]</i> Shebang Strings: <i>[string] [string]</i> ...</pre><p>Defines a list of strings that can appear in the shebang (<code>#!</code>) line to designate that it’s part of this language. They can appear anywhere in the line, so <code>php</code> will work for “<code>#!/user/bin/php4</code>”. You can use strings that were previously used by another language to redefine them.</p><pre class=Example>Ignore Prefixes in Index: <i>[prefix] [prefix]</i> ...
|
||||
Ignore <i>[type]</i> Prefixes in Index: <i>[prefix] [prefix]</i> ...
|
||||
|
||||
<i>[Add/Replace]</i> Ignored Prefixes in Index: <i>[prefix] [prefix]</i> ...
|
||||
<i>[Add/Replace]</i> Ignored <i>[type]</i> Prefixes in Index: <i>[prefix] [prefix]</i> ...</pre><p>Specifies prefixes that should be ignored when sorting symbols for an index. Can be specified in general or for a specific topic type. The prefixes will still appear, the symbols will just be sorted as if they’re not there. For example, specifying <code>ADO_</code> for functions will mean that <code>ADO_DoSomething</code> will appear under D instead of A.</p><div class=SubTopic>Basic Language Support Properties</div><p>These attributes are only available for languages with basic language support.</p><pre class=Example>Line Comments: <i>[symbol] [symbol]</i> ...</pre><p>Defines a space-separated list of symbols that are used for line comments, if any. ex. “<code>Line Comment: //</code>”.</p><pre class=Example>Block Comments: <i>[opening symbol] [closing symbol] [o.s.] [c.s.]</i> ...</pre><p>Defines a space-separated list of symbol pairs that are used for block comments, if any. ex. “<code>Block Comment: /* */</code>”.</p><pre class=Example>Enum Values: <i>[global|under type|under parent]</i></pre><p>Defines the behavior of enum values. The default is global.</p><table border=0 cellspacing=0 cellpadding=0 class=EnumTable><tr><td class=EnumOption>Global</td><td>Enum values are always global and will be referenced as “Value”.</td></tr><tr><td class=EnumOption>Under Type</td><td>Enum values appear under the type and will be referenced as “Package.Enum.Value”.</td></tr><tr><td class=EnumOption>Under Parent</td><td>Enum values appear under the parent and will be referenced as “Package.Value”</td></tr></table><pre class=Example><i>[type]</i> Prototype Enders: <i>[symbol] [symbol]</i> ...</pre><p>When defined, Natural Docs will attempt to collect prototypes from the code following the specified topic type. It grabs code until the first ender symbol or the next Natural Docs comment, and if it contains the topic name, it serves as its prototype. Use <code>\n</code> to specify a line break. ex. “<code>Function Prototype Enders: { ;</code>”, “<code>Variable Prototype Enders: = ;</code>”. </p><pre class=Example>Line Extender: <i>[symbol]</i></pre><p>Defines the symbol that allows a prototype to span multiple lines if normally a line break would end it.</p><pre class=Example>Perl Package: <i>[perl package]</i></pre><p>Specifies the Perl package used to fine-tune the language behavior in ways too complex to do in this file.</p><div class=SubTopic>Full Language Support Properties</div><p>These attributes are only available for languages with full language support.</p><pre class=Example>Full Language Support: <i>[perl package]</i></pre><p>Specifies the Perl package that has the parsing routines necessary for full language support.</p></div></td></tr><tr><td></td><td class=SideMenuBottom><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td class=SideMenuBottomLeft><img src="images/menu/bottomleft.png" width=18 height=19></td><td class=SideMenuBottomRight><img src="images/menu/bottomright.png" width=18 height=19></td></tr></table></td><td class=BodyBottom>Copyright © 2003-2010 Greg Valure</td></tr></table><script language=JavaScript><!--
|
||||
ClosingBrowserTags();// --></script></body></html>
|
74
lib/ann/fann/docs/NaturalDocs-1.52/Help/customizingtopics.html
Executable file
58
lib/ann/fann/docs/NaturalDocs-1.52/Help/documenting.html
Executable file
@ -0,0 +1,58 @@
|
||||
|
||||
|
||||
<html><head><title>Documenting Your Code - Natural Docs</title><link rel=stylesheet type="text/css" href="styles.css"><link rel=stylesheet type="text/css" href="examples.css"><style type="text/css"><!--
|
||||
|
||||
|
||||
#ReferenceTable {
|
||||
width: 100%;
|
||||
}
|
||||
#ReferenceTable #LeftSide {
|
||||
padding-right: 4ex;
|
||||
width: 40%;
|
||||
}
|
||||
#ReferenceTable #RightSide {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
#LeftSide a:link,
|
||||
#LeftSide a:hover,
|
||||
#LeftSide a:visited {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#LeftSide .TopicTitle a:hover,
|
||||
#LeftSide .TopicTitle a:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#RightSide .Example {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
--></style><script language=JavaScript src="javascript/PNGHandling.js"></script><script language=JavaScript src="javascript/BrowserStyles.js"></script></head><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><script language=JavaScript><!--
|
||||
OpeningBrowserTags();// --></script>
|
||||
|
||||
<!-- saved from url=(0026)http://www.naturaldocs.org -->
|
||||
|
||||
<table width=100% border=0 cellspacing=0 cellpadding=0 class=PageTable float=center><tr><td colspan=3 class=Header><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><img src="images/header/leftside.png" width=30 height=75><a href="index.html"><img src="images/header/logo.png" width=524 height=75 alt="Natural Docs"></a></td><td align=right><img src="images/header/rightside.png" width=30 height=75></td></tr></table></td></tr><tr><td><img src="images/header/overleftmargin.png" width=10 height=6></td><td class=SideMenuTop><img src="images/header/overmenu.png" width=14 height=6></td><td class=BodyTop><img src="images/header/overbody.png" width=24 height=6></td></tr><tr><td></td><td class=SideMenu nowrap><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/about.png" width=52 height=13 alt="About"></div><div class=SideMenuBody><a href="languages.html" class=SideMenuEntry>Language Support</a><a href="output.html" class=SideMenuEntry>Output Formats</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/using.png" width=45 height=13 alt="Using"></div><div class=SideMenuBody><span class=SideMenuEntry id=SelectedSideMenuEntry>Documenting<br>Your Code</span><a href="keywords.html" class=SideMenuEntry>Keywords</a><a href="running.html" class=SideMenuEntry>Running</a><a href="troubleshooting.html" class=SideMenuEntry>Troubleshooting</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/customizing.png" width=96 height=13 alt="Customizing"></div><div class=SideMenuBody><a href="menu.html" class=SideMenuEntry>Organizing the Menu</a><a href="styles.html" class=SideMenuEntry>CSS Styles</a><a href="customizingtopics.html" class=SideMenuEntry>Topics and Keywords</a><a href="customizinglanguages.html" class=SideMenuEntry>Languages, Indexes,<br>and Prototypes</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/community.png" width=86 height=13 alt="Community"></div><div class=SideMenuBody><a href="http://www.naturaldocs.org/" class=SideMenuEntry>Web Site</a><a href="http://www.naturaldocs.org/mailinglist.html" class=SideMenuEntry>Mailing Lists</a><a href="http://www.naturaldocs.org/messageboards.html" class=SideMenuEntry>Message Boards</a><a href="http://www.naturaldocs.org/bugs.html" class=SideMenuEntry>Bugs and<br>Feature Requests</a></div></div></td><td class=Body width=100%><div class=PageTitle>Documenting Your Code</div><div class=Topic><table id=ReferenceTable border=0 cellspacing=0 cellpadding=0><tr><td id=LeftSide><div class=Topic><div class=TopicTitle><a href="documenting/walkthrough.html">Walkthrough</a></div><ul><li><a href="documenting/walkthrough.html#OurFirstFunction">Our First Function</a></i><li><a href="documenting/walkthrough.html#ClassesAndScope">Classes and Scope</a></i><li><a href="documenting/walkthrough.html#MoreFormatting">More Formatting</a></i><li><a href="documenting/walkthrough.html#MoreOnLinking">More on Linking</a></i><li><a href="documenting/walkthrough.html#ExtraDocumentation">Extra Documentation</a></i><li><a href="documenting/walkthrough.html#AbbreviatedSyntax">Abbreviated Syntax</a></i></ul></div><div class=Topic><div class=TopicTitle><a href="documenting/reference.html">Reference</a></div><ul><li><a href="documenting/reference.html#Comments">Comments</a></i><li><a href="documenting/reference.html#TextFiles">Text Files</a></i><li><a href="documenting/reference.html#KeywordsTopicsAndScope">Keywords, Topics, and Scope</a></i><li><a href="documenting/reference.html#Linking">Linking</a></i><li><a href="documenting/reference.html#FormattingAndLayout">Formatting and Layout</a></i><li><a href="documenting/reference.html#PageTitles">Page Titles</a></i><li><a href="documenting/reference.html#Summaries">Summaries</a></i><li><a href="documenting/reference.html#JavadocCompatibility">Javadoc Compatibility</a></i></ul></div></td><td id=RightSide><p>Here’s a quick example of how to document your code for Natural Docs. If you’re a new user, we have <a href="documenting/walkthrough.html">a walkthrough</a> to get you started. Otherwise, visit <a href="documenting/reference.html">the reference</a> for the full details.</p><pre class=Example>/*
|
||||
Function: Multiply
|
||||
|
||||
Multiplies two integers.
|
||||
|
||||
Parameters:
|
||||
|
||||
x - The first integer.
|
||||
y - The second integer.
|
||||
|
||||
Returns:
|
||||
|
||||
The two integers multiplied together.
|
||||
|
||||
See Also:
|
||||
|
||||
<Divide>
|
||||
*/
|
||||
int Multiply (int x, int y)
|
||||
{ return x * y; };</pre></td></tr></table></div></td></tr><tr><td></td><td class=SideMenuBottom><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td class=SideMenuBottomLeft><img src="images/menu/bottomleft.png" width=18 height=19></td><td class=SideMenuBottomRight><img src="images/menu/bottomright.png" width=18 height=19></td></tr></table></td><td class=BodyBottom>Copyright © 2003-2010 Greg Valure</td></tr></table><script language=JavaScript><!--
|
||||
ClosingBrowserTags();// --></script></body></html>
|
147
lib/ann/fann/docs/NaturalDocs-1.52/Help/documenting/reference.html
Executable file
181
lib/ann/fann/docs/NaturalDocs-1.52/Help/documenting/walkthrough.html
Executable file
@ -0,0 +1,181 @@
|
||||
|
||||
|
||||
<html><head><title>Documenting Your Code - Walkthrough - Natural Docs</title><link rel=stylesheet type="text/css" href="../styles.css"><link rel=stylesheet type="text/css" href="../examples.css"><script language=JavaScript src="../javascript/PNGHandling.js"></script><script language=JavaScript src="../javascript/BrowserStyles.js"></script><script language=JavaScript src="../example/NaturalDocs.js"></script></head><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><script language=JavaScript><!--
|
||||
OpeningBrowserTags();// --></script>
|
||||
|
||||
<!-- saved from url=(0026)http://www.naturaldocs.org -->
|
||||
|
||||
<table width=100% border=0 cellspacing=0 cellpadding=0 class=PageTable float=center><tr><td colspan=3 class=Header><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><img src="../images/header/leftside.png" width=30 height=75><a href="../index.html"><img src="../images/header/logo.png" width=524 height=75 alt="Natural Docs"></a></td><td align=right><img src="../images/header/rightside.png" width=30 height=75></td></tr></table></td></tr><tr><td><img src="../images/header/overleftmargin.png" width=10 height=6></td><td class=SideMenuTop><img src="../images/header/overmenu.png" width=14 height=6></td><td class=BodyTop><img src="../images/header/overbody.png" width=24 height=6></td></tr><tr><td></td><td class=SideMenu nowrap><div class=SideMenuSection><div class=SideMenuTitle><img src="../images/menu/about.png" width=52 height=13 alt="About"></div><div class=SideMenuBody><a href="../languages.html" class=SideMenuEntry>Language Support</a><a href="../output.html" class=SideMenuEntry>Output Formats</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="../images/menu/using.png" width=45 height=13 alt="Using"></div><div class=SideMenuBody><a href="../documenting.html" class=SideMenuEntry id=SelectedSideMenuEntry>Documenting<br>Your Code</a><a href="../keywords.html" class=SideMenuEntry>Keywords</a><a href="../running.html" class=SideMenuEntry>Running</a><a href="../troubleshooting.html" class=SideMenuEntry>Troubleshooting</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="../images/menu/customizing.png" width=96 height=13 alt="Customizing"></div><div class=SideMenuBody><a href="../menu.html" class=SideMenuEntry>Organizing the Menu</a><a href="../styles.html" class=SideMenuEntry>CSS Styles</a><a href="../customizingtopics.html" class=SideMenuEntry>Topics and Keywords</a><a href="../customizinglanguages.html" class=SideMenuEntry>Languages, Indexes,<br>and Prototypes</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="../images/menu/community.png" width=86 height=13 alt="Community"></div><div class=SideMenuBody><a href="http://www.naturaldocs.org/" class=SideMenuEntry>Web Site</a><a href="http://www.naturaldocs.org/mailinglist.html" class=SideMenuEntry>Mailing Lists</a><a href="http://www.naturaldocs.org/messageboards.html" class=SideMenuEntry>Message Boards</a><a href="http://www.naturaldocs.org/bugs.html" class=SideMenuEntry>Bugs and<br>Feature Requests</a></div></div></td><td class=Body width=100%><div class=PageTitle>Documenting Your Code</div><div class=TOC><a href="#OurFirstFunction">Our First Function</a> · <a href="#ClassesAndScope">Classes and Scope</a> · <a href="#MoreFormatting">More Formatting</a><br><a href="#MoreOnLinking">More on Linking</a> · <a href="#ExtraDocumentation">Extra Documentation</a> · <a href="#AbbreviatedSyntax">Abbreviated Syntax</a></div><div class=Topic><a name="OurFirstFunction"></a><div class=TopicTitle>Our First Function</div><p>So you downloaded Natural Docs, you <a href="../running.html">figured out the command line</a>, and now it’s time to start documenting your code. Natural Docs tries to make this very straightforward and painless, so let’s just dive right in:</p><pre class=Example>/*
|
||||
Function: Multiply
|
||||
Multiplies two integers and returns the result.
|
||||
*/
|
||||
int Multiply (int x, int y)
|
||||
{ return x * y; };
|
||||
</pre><p>That’s all you need. Run Natural Docs and here’s what appears in your output:</p><div class=NDContent><div class=CFunction><div class=CTopic><h3 class=CTitle><a name="Multiply"></a>Multiply</h3><div class=CBody><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>int Multiply (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table><p class=CParagraph>Multiplies two integers and returns the result.</p></div></div></div></div><p>Okay, so that’s all you need, but probably not all you want. After all, you’ve got some real functions to document, not little one-liners. Here’s something more elaborate:</p><pre class=Example>/*
|
||||
Function: Multiply
|
||||
|
||||
Multiplies two integers.
|
||||
|
||||
Parameters:
|
||||
|
||||
x - The first integer.
|
||||
y - The second integer.
|
||||
|
||||
Returns:
|
||||
|
||||
The two integers multiplied together.
|
||||
|
||||
See Also:
|
||||
|
||||
<Divide>
|
||||
*/
|
||||
int Multiply (int x, int y)
|
||||
{ return x * y; };
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><h3 class=CTitle><a name="Example_Class.Multiply"></a>Multiply</h3><div class=CBody><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>int Multiply (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table><p class=CParagraph>Multiplies two integers.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>x</td><td class=CDLDescription>The first integer.</td></tr><tr><td class=CDLEntry>y</td><td class=CDLDescription>The second integer.</td></tr></table><h4 class=CHeading>Returns</h4><p class=CParagraph>The two integers multiplied together.</p><h4 class=CHeading>See Also</h4><p class=CParagraph><a href="#Example_Class.Divide" class=LFunction id=link116 onMouseOver="ShowTip(event, 'ttDivide', 'link116')" onMouseOut="HideTip('ttDivide')">Divide</a></p></div></div></div></div><div class=CToolTip id="ttAdd"><div class=CFunction><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>int Add (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table>Adds two integers.</div></div><div class=CToolTip id="ttSubtract"><div class=CFunction><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>int Subtract (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table>Subtracts two integers.</div></div><div class=CToolTip id="ttMultiply"><div class=CFunction><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>int Multiply (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table>Multiplies two integers.</div></div><div class=CToolTip id="ttDivide"><div class=CFunction><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>int Divide (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table>Divides two integers.</div></div><div class=CToolTip id="ttIsEqual"><div class=CFunction><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters>bool IsEqual (</td><td class=PType>int </td><td class=PParameter>x,</td><td></td></tr><tr><td></td><td class=PType>int </td><td class=PParameter>y</td><td class=PAfterParameters>)</td></tr></table></td></tr></table>Returns whether two integers are equal.</div></div><p>Still not too scary, huh? Notice the comments are just as readable as the output. No tags littered about, and the structure is very natural. You probably get it just by looking at it, but let’s go through the details anyway.</p><pre class=Example>Function: Multiply
|
||||
</pre><p>Every one of these comments you write (called <i>topics</i>) are going to start with a <i>topic line</i> in the format <code>“keyword: title”</code>. There are <a href="../keywords.html">a lot of keywords</a>, but they’re exactly what you’d expect: Function, Class, Variable, etc. There are also a lot of synonyms so instead of Function you could use Func, Procedure, Proc, Method, Constructor, etc. It’s designed so you can just use whatever it is you’re describing without memorizing anything. You can glance over <a href="../keywords.html">the keyword list</a> but you shouldn’t have to consult it very often.</p></p><p>The other part of the topic line is the title. It should match whatever it is you’re documenting, in this case the function name Multiply. Natural Docs is case sensitive even if your programming language isn’t, so make sure you match it closely or you might not get the prototype in your output, which is the little gray box. You don’t need to include the parameters in the title. In fact, it’s better if you don’t.</p></p><pre class=Example>Parameters:
|
||||
|
||||
Returns:
|
||||
|
||||
See Also:
|
||||
</pre><p>You can also define <a href="reference.html#Headings">headings</a> by skipping a line and ending the text with a colon. If you’re used to other documentation systems you may think there’s only a handful of headings to choose from, but any text formatted this way will become one. If you want a heading called Dependencies you can go right ahead and add it.</p><pre class=Example>x - The first integer.
|
||||
y - The second integer.
|
||||
</pre><p>This is what’s called a <a href="reference.html#DefinitionLists">definition list.</a> You can use more than one line to finish the definition, as it won’t stop until you skip a line.</p><pre class=Example>x - The first integer.
|
||||
y - The second integer with a long description.
|
||||
This is still part of the description.
|
||||
|
||||
This is a new paragraph because we skipped a line.
|
||||
</pre><p>Indentation doesn’t matter either, so even if the second description line wasn’t indented to match the first, it would still be considered part of it.</p><pre class=Example><Divide>
|
||||
</pre><p>This is how we link in Natural Docs, with angle brackets. There will be a lot more to say about this later, but for now I’ll just show you something cool. Hover over it in the output below:</p><div class=NDContent><div class=CTopic><div class=CBody><p class=CParagraph><a href="#Example_Class.Divide" class=LFunction id=link116 onMouseOver="ShowTip(event, 'ttDivide', 'link216')" onMouseOut="HideTip('ttDivide')">Divide</a></p></div></div></div><p>You get that <i>everywhere</i> in your generated documentation.</p></div><div class=Topic><a name="ClassesAndScope"></a><div class=TopicTitle>Classes and Scope</div><p>So that’s good for our one function of questionable usefulness, but what if we have a whole class of questionable usefulness? We can document the class and it’s members the same way we documented the individual function, with a Natural Docs comment right above each element. We’ll go back to short descriptions to keep the example manageable.</p><pre class=Example>/*
|
||||
Class: Counter
|
||||
A class that manages an incrementing counter.
|
||||
*/
|
||||
class Counter
|
||||
{
|
||||
public:
|
||||
|
||||
/*
|
||||
Constructor: Counter
|
||||
Initializes the object.
|
||||
*/
|
||||
Counter()
|
||||
{ value = 0; };
|
||||
|
||||
/*
|
||||
Function: Value
|
||||
Returns the value of the counter.
|
||||
*/
|
||||
int Value()
|
||||
{ return value; };
|
||||
|
||||
/*
|
||||
Function: Increment
|
||||
Adds one to the counter.
|
||||
*/
|
||||
void Increment()
|
||||
{ value++; };
|
||||
|
||||
protected:
|
||||
|
||||
/*
|
||||
Variable: value
|
||||
The counter's value.
|
||||
*/
|
||||
int value;
|
||||
};
|
||||
</pre><p>Everything’s the same, we just substituted Class and Variable for the Function keyword when it was appropriate. We also used Constructor, but we could have just as easily used Function there too. They’re both keywords for the same thing so it doesn’t matter.</p><a name="Scope"></a><div class="SubTopic">Scope</div><p>Like the source code itself, Natural Docs topics have <a href="reference.html#Scope">scope.</a> Value and Increment are seen as part of class Counter, just like they are in the code. Why is this important? Linking. Linking from one topic to another has similar rules to how one function can call another. Since Value is in the same class as Increment, it’s topic can link to it with just <code><Increment></code>. However, linking to Increment from a different class would require <code><Counter.Increment></code> instead. You can actually use any of the three most common class/member notations: <code><Counter.Increment></code>, <code><Counter::Increment></code>, and <code><Counter->Increment></code>.</p><p>If your programming language has <a href="../languages.html">full language support</a>, the scope is determined by the code and applied automatically. However, if you only have <a href="../languages.html">basic language support</a> it follows these rules:</p><ul><li>Any topic that appears under a Class topic (or anything that says <a href="../keywords.html">Starts Scope</a>) is part of that class.</li><li>Any topic that appears under a Section topic (or anything that says <a href="../keywords.html">Ends Scope</a>) is global again.</li><li>Any File topic (or anything that says <a href="../keywords.html">Always Global</a>) is global no matter what and doesn’t affect any other topics.</li><p></ul></p><p>Chances are you would have written the same thing even if you didn’t know this and it would have just worked. You usually won’t need to think about them at all. However, it’s still good to be aware of them in case something doesn’t behave the way you expected it to.</p><p>You actually know enough to go start documenting now. I know Mr. ScrollBar says there’s more on this page you can learn, but if you want to skip out early, you can. Really. I don’t mind.</p></div><div class=Topic><a name="MoreFormatting"></a><div class=TopicTitle>More Formatting</div><p>Okay then. On we go.</p><a name="ParagraphsBoldAndUnderline"></a><div class="SubTopic">Paragraphs, Bold, and Underline</div><p>The syntax for these three is exactly what you would expect it to be.</p><pre class=Example>*Bold text*
|
||||
|
||||
_Underlined text_
|
||||
|
||||
Paragraphs are broken by skipping lines. So the two
|
||||
lines above each have their own paragraph, but these
|
||||
three lines are all part of the same one.
|
||||
</pre><div class=NDContent><div class=CBody><div class=CFunction><div class=CTopic><p><b>Bold text</b></p><p><u>Underlined text</u></p><p>Paragraphs are broken by skipping lines. So the two lines above each have their own paragraph, but these three lines are all part of the same one.</p></div></div></div></div><p>When underlining multiple words, you can use an underscore for each space or only put them at the edges like we did above. Both ways will work.</p><a name="BulletLists"></a><div class="SubTopic">Bullet Lists</div><p>You can add <a href="reference.html#BulletLists">bullet lists</a> by starting a line with a dash, an asterisk, an o, or a plus. Like definition lists, bullets can span multiple lines and indentation doesn’t matter. To end a bullet you have to skip a line before doing something else.</p><pre class=Example>- Bullet one.
|
||||
- Bullet two.
|
||||
Bullet two continued.
|
||||
- Bullet three.
|
||||
|
||||
Some text after the bullet list.
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><div class=CBody><ul class=CBulletList><li>Bullet one.</li><li>Bullet two. Bullet two continued.</li><li>Bullet three.</li></ul><p class=CParagraph>Some text after the bullet list.</p></div></div></div></div><a name="CodeAndTextDiagrams"></a><div class="SubTopic">Code and Text Diagrams</div><p>You can add <a href="reference.html#CodeAndTextDiagrams">example code or text diagrams</a> by starting each line with <code>></code>, <code>|</code>, or <code>:</code>.</p><pre class=Example>> a = b + c;
|
||||
> b++;
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><div class=CBody><pre class=CCode>a = b + c;<br>b++;</pre></div></div></div></div><p>If you have a long stretch, you can use <code>(start code)</code> and <code>(end)</code> instead.</p><pre class=Example>(start code)
|
||||
|
||||
if (x == 0) {
|
||||
DoSomething();
|
||||
}
|
||||
|
||||
return x;
|
||||
|
||||
(end)
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><div class=CBody><pre class=CCode>if (x == 0) {<br> DoSomething();<br>}<br><br>return x;</pre></div></div></div></div><p>You can also use <code>example</code>, <code>diagram</code>, or <code>table</code> instead of <code>code</code>. Just use whatever’s appropriate.</p><p>As I mentioned before, we don’t want you to worry about memorizing minor details, so in that spirit it will also accept <code>begin</code> for <code>start</code> and <code>finish</code> or <code>done</code> for <code>end</code>. You can also write <code>(end code)</code> instead of just <code>(end)</code>.</p><p>Syntax highlighting will be applied to <code>(start code)</code> sections by default. If you’d like to also apply it to <code>></code>, <code>:</code>, and <code>|</code> lines or turn it off completely, use the <a href="../running.html"><code>-hl</code> command line option</a>.</p><a name="Images"></a><div class="SubTopic">Images</div><p>You can include images in your documentation by writing “<code>(see filename)</code>”. If you put it alone on a line it will be embedded in place, or if you put it in a paragraph it will appear after it using the file name as a caption.</p><pre class=Example>This is the first paragraph.
|
||||
|
||||
(see logo.gif)
|
||||
|
||||
This is the second paragraph (see logo.gif) This
|
||||
is more of the second paragraph.
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><div class=CBody><p class=CParagraph>This is the first paragraph.</p><img src="../images/logo.gif" width="268" height="61"><p class=CParagraph>This is the second paragraph <a href="#Image1" class=CImageLink>(see logo)</a> This is more of the second paragraph.</p><div class=CImage><a name="Image1"></a><div class=CImageCaption>logo</div><img src="../images/logo.gif" width="268" height="61"></div></div></div></div></div><p>The image file names are relative to the source file the comment appears in, so if your file is C:\Project\SourceFile.cpp and your image is C:\Project\Images\Logo.gif, you would write <code>(see Images/Logo.gif)</code>. However, you can also specify image directories in <a href="../running.html#CommandLine">the command line with <code>-img</code></a>, so if all your source files are in C:\Project\Source and all your images are in C:\Project\Images, you can put “<code>-img C:\Project\Images</code>” on the command line and just use <code>(see logo.gif)</code> again.</p></div><div class=Topic><a name="MoreOnLinking"></a><div class=TopicTitle>More on Linking</div><p>Yes, there’s still more to linking. You can link to URLs and e-mail addresses, but in this case the angle brackets are optional.</p><pre class=Example>Visit <http://www.website.com> or send messages to
|
||||
email@address.com.
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><div class=CBody><p class=CParagraph>Visit <a href="#" onClick="return false;" class=LURL>http://www.website.com</a> or send messages to <a href="#" onclick="location.href='mai' + 'lto:' + 'em' + 'ail' + '@' + 'addre' + 'ss.com'; return false;" class="LEMail">em<span style="display: none;">.nosp@m.</span>ail<span>@</span>addre<span style="display: none;">.nosp@m.</span>ss.com</a>.</p></div></div></div></div><p>You can create named links by putting the text, “at”, and then the address in the angle brackets. This format lets it read naturally in a sentence.</p><pre class=Example>Visit <the website at http://www.website.com> or <e-mail me at email@address.com>.
|
||||
</pre><div class=NDContent><div class=CFunction><div class=CTopic><div class=CBody><p class=CParagraph>Visit <a href="#" onClick="return false;" class=LURL>the website</a> or <a href="#" onclick="location.href='mai' + 'lto:' + 'em' + 'ail' + '@' + 'addre' + 'ss.com'; return false;" class="LEMail">e-mail me</a>.</p></div></div></div></div><p>E-mail addresses are protected from spam crawlers. They look and act like regular links (try it above) but you can see the actual HTML that’s generated for them <a href="reference.html#URLsAndEMail">here</a>.</p><p>As for regular links, to help them fit into sentences easily you can actually include plurals and possessives inside the angle brackets. In other words, you don’t have to use awkward syntax like <code><Object>s</code>, although that’s supported as well. You can simply write <code><Objects></code> and it will link to the symbol <code>Object</code> just fine. It can handle any plural and/or possessive form you can throw at it. I’m not kidding: <code>Foxes</code>, <code>Fox’s</code>, <code>Foxes’</code>, <code>Children</code>, <code>Mice</code>, <code>Alumni</code>, <code>Indices</code>, <code>Amoebae</code>, <code>Teeth</code>, just try to trip it up.</p></div><div class=Topic><a name="ExtraDocumentation"></a><div class=TopicTitle>Extra Documentation</div><p>Sometimes you want to include documentation that doesn’t correspond directly to a code element. Maybe you want to include license information or architecture notes. There are two ways to do this.</p><a name="FreestandingTopics"></a><div class="SubTopic">Freestanding Topics</div><p>Just because most of the things you write will directly correspond to an element of your source code doesn’t mean they have to. You can pick any of <a href="../keywords.html">the available keywords</a> and create a freestanding comment with it. For example:</p><pre class=Example>/*
|
||||
Class: Counter
|
||||
A class that manages an incrementing counter.
|
||||
*/
|
||||
class Counter
|
||||
{
|
||||
public:
|
||||
|
||||
/*
|
||||
About: License
|
||||
This file is licensed under the GPL.
|
||||
*/
|
||||
|
||||
/*
|
||||
Constructor: Counter
|
||||
Initializes the object.
|
||||
*/
|
||||
Counter()
|
||||
{ value = 0; };
|
||||
...
|
||||
</pre><p>The extra license topic will be added to the output just like the functions.</p><div class=NDContent><div class=CFunction><div class=CTopic><h3 class=CTitle>License</h3><div class=CBody><p class=CParagraph>This file is licensed under the GPL.</p></div></div></div></div><p>Remember that because of <a href="#Scope">scope</a>, the License topic will actually be considered part of Counter the way it’s listed above. You’d link to it from outside Counter with <code><Counter.License></code>. That idea may take some getting used to, but if an extra topic only applies to one class that’s actually the most appropriate way to do it. In this case it’s a license, so if it applies to the entire project instead you could put the comment above the class to make it global, just like moving a function there would.</p><a name="TextFiles"></a><div class="SubTopic">Text Files</div><p>You can also add additional documentation with text files. If you put a file with a .txt extension in your source tree and start it with a topic line, it’s contents will be treated the same as if it were in a comment in your source code. That means you can define multiple topics within it, you can link between them and topics in your source code, and you can use all available formatting options.</p><pre class=Example>Title: License
|
||||
|
||||
This file is licensed under the GPL.
|
||||
|
||||
I can link to <Counter> and <Counter.Increment>, and
|
||||
the documentation in that class can even link back
|
||||
with <License>.
|
||||
|
||||
|
||||
About: Second Topic
|
||||
|
||||
I can create a *second* topic in here too, complete
|
||||
with formatting.
|
||||
</pre><p>The thing some people forget though is that you <b>must</b> start it with a topic line, like “<code>Title: License</code>” above. This is how Natural Docs tells it apart from regular text files.</p></div><div class=Topic><a name="AbbreviatedSyntax"></a><div class=TopicTitle>Abbreviated Syntax</div><p>Here’s another useful thing you may want to know about. Suppose you have a lot of little things to document, like constants. Writing a separate topic for each one can be very tedious, no matter how much you compress it:</p><pre class=Example>// Constant: COUNTER_NORMAL
|
||||
// Causes the counter to increment normally.
|
||||
#define COUNTER_NORMAL 0
|
||||
|
||||
// Constant: COUNTER_ODD
|
||||
// Causes the counter to only increment in odd numbers.
|
||||
#define COUNTER_ODD 1
|
||||
|
||||
// Constant: COUNTER_EVEN
|
||||
// Causes the counter to only increment in even numbers.
|
||||
#define COUNTER_EVEN 2
|
||||
</pre><p>One thing you may have noticed in the <a href="../keywords.html">keyword list</a> is that they almost all have plural forms. These are used to create what are called <a href="reference.html#ListTopics">list topics.</a> You define a topic using a plural keyword, and then anything appearing in a <a href="reference.html#DefinitionLists">definition list</a> within it creates a linkable symbol as if they each had their own topic. For example:</p><pre class=Example>/*
|
||||
Constants: Counter Modes
|
||||
|
||||
COUNTER_NORMAL - Causes the counter to increment normally.
|
||||
COUNTER_ODD - Causes the counter to only increment in odd numbers.
|
||||
COUNTER_EVEN - Causes the counter to only increment in even numbers.
|
||||
*/
|
||||
#define COUNTER_NORMAL 0
|
||||
#define COUNTER_ODD 1
|
||||
#define COUNTER_EVEN 2
|
||||
</pre><p>I would now be able to write <code><COUNTER_ODD></code> and have it work the same as it would with the first example.</p><p>Using the enum or enumeration keyword is special because it automatically behaves in a similar manner. This allows both the enum and its values to be documented in the same place.</p><pre class=Example>/*
|
||||
Enum: CounterMode
|
||||
|
||||
NORMAL - Causes the counter to increment normally.
|
||||
ODD - Causes the counter to only increment in odd numbers.
|
||||
EVEN - Causes the counter to only increment in even numbers.
|
||||
*/
|
||||
enum CounterMode { NORMAL, ODD, EVEN };
|
||||
</pre><p>That’s it, you’re done with this walkthrough. You should know enough now to make very good use of Natural Docs. If you still want to know more, you can look in <a href="reference.html">the reference</a> for some of the smaller details we may have skipped over. Also, look at the Customizing pages on this web site for even more you can do.</p></div></td></tr><tr><td></td><td class=SideMenuBottom><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td class=SideMenuBottomLeft><img src="../images/menu/bottomleft.png" width=18 height=19></td><td class=SideMenuBottomRight><img src="../images/menu/bottomright.png" width=18 height=19></td></tr></table></td><td class=BodyBottom>Copyright © 2003-2010 Greg Valure</td></tr></table><script language=JavaScript><!--
|
||||
ClosingBrowserTags();// --></script></body></html>
|
528
lib/ann/fann/docs/NaturalDocs-1.52/Help/example/Default.css
Executable file
@ -0,0 +1,528 @@
|
||||
/*
|
||||
IMPORTANT: If you're editing this file in the output directory of one of
|
||||
your projects, your changes will be overwritten the next time you run
|
||||
Natural Docs. Instead, copy this file to your project directory, make your
|
||||
changes, and you can use it with -s. Even better would be to make a CSS
|
||||
file in your project directory with only your changes, which you can then
|
||||
use with -s [original style] [your changes].
|
||||
|
||||
On the other hand, if you're editing this file in the Natural Docs styles
|
||||
directory, the changes will automatically be applied to all your projects
|
||||
that use this style the next time Natural Docs is run on them.
|
||||
|
||||
This file is part of Natural Docs, which is Copyright <20> 2003-2004 Greg Valure
|
||||
Natural Docs is licensed under the GPL
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: Verdana, Arial, sans-serif;
|
||||
color: #000000;
|
||||
margin: 0px; padding: 0px }
|
||||
|
||||
body.UnframedPage {
|
||||
background-color: #E8E8E8 }
|
||||
|
||||
|
||||
a:link,
|
||||
a:visited { color: #900000; text-decoration: none }
|
||||
a:hover { color: #900000; text-decoration: underline }
|
||||
a:active { color: #FF0000; text-decoration: underline }
|
||||
|
||||
td {
|
||||
vertical-align: top }
|
||||
|
||||
/*
|
||||
Comment out this line to use web-style paragraphs (blank line between
|
||||
paragraphs, no indent) instead of print-style paragraphs (no blank line,
|
||||
indented.)
|
||||
*/
|
||||
p {
|
||||
text-indent: 5ex; margin: 0 }
|
||||
|
||||
|
||||
/* Can't use something like display: none or it won't break. */
|
||||
.HB {
|
||||
font-size: 1px }
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedMenuPage,
|
||||
.MenuSection {
|
||||
font-size: 9pt;
|
||||
background-color: #E8E8E8;
|
||||
padding: 10px 0 0 0 }
|
||||
|
||||
.MenuSection {
|
||||
width: 27ex }
|
||||
|
||||
|
||||
.MTitle {
|
||||
font-size: 16pt; font-weight: bold; font-variant: small-caps;
|
||||
text-align: center;
|
||||
padding: 5px 10px 15px 10px;
|
||||
border-bottom: 1px dotted #000000;
|
||||
margin-bottom: 15px }
|
||||
|
||||
.MSubTitle {
|
||||
font-size: 9pt; font-weight: normal; font-variant: normal;
|
||||
margin-top: 1ex; margin-bottom: 5px }
|
||||
|
||||
|
||||
.MEntry a:link,
|
||||
.MEntry a:hover,
|
||||
.MEntry a:visited { color: #606060; margin-right: 0 }
|
||||
.MEntry a:active { color: #A00000; margin-right: 0 }
|
||||
|
||||
|
||||
.MGroup {
|
||||
font-variant: small-caps; font-weight: bold;
|
||||
margin: 1em 0 1em 10px }
|
||||
|
||||
/* Konqueror just can't do margins. */
|
||||
.KHTML .MGroup {
|
||||
margin-bottom: 0; padding-bottom: 1em }
|
||||
|
||||
.MGroupContent {
|
||||
font-variant: normal; font-weight: normal }
|
||||
|
||||
.MGroup a:link,
|
||||
.MGroup a:hover,
|
||||
.MGroup a:visited { color: #545454; margin-right: 10px }
|
||||
.MGroup a:active { color: #A00000; margin-right: 10px }
|
||||
|
||||
|
||||
.MFile,
|
||||
.MText,
|
||||
.MLink,
|
||||
.MIndex {
|
||||
padding: 1px 17px 2px 10px;
|
||||
margin: .25em 0 .25em 0 }
|
||||
|
||||
.MText {
|
||||
font-size: 8pt; font-style: italic }
|
||||
|
||||
.MLink {
|
||||
font-style: italic }
|
||||
|
||||
#MSelected {
|
||||
color: #000000; background-color: #FFFFFF;
|
||||
/* Replace padding with border. */
|
||||
padding: 0 10px 0 10px;
|
||||
border-width: 1px 2px 2px 0; border-style: solid; border-color: #000000;
|
||||
margin-right: 5px }
|
||||
|
||||
/* Close off the left side when its in a group. */
|
||||
.MGroup #MSelected {
|
||||
padding-left: 9px; border-left-width: 1px }
|
||||
|
||||
/* A treat for Mozilla users. Blatantly non-standard. Will be replaced with CSS 3 attributes when finalized/supported. */
|
||||
.Gecko #MSelected {
|
||||
-moz-border-radius-topright: 10px;
|
||||
-moz-border-radius-bottomright: 10px }
|
||||
.Gecko .MGroup #MSelected {
|
||||
-moz-border-radius-topleft: 10px;
|
||||
-moz-border-radius-bottomleft: 10px }
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedContentPage,
|
||||
.ContentSection {
|
||||
background-color: #FFFFFF;
|
||||
padding-bottom: 15px }
|
||||
|
||||
.ContentSection {
|
||||
border-width: 0 0 1px 1px; border-style: solid; border-color: #000000 }
|
||||
|
||||
|
||||
.CTopic {
|
||||
font-size: 10pt;
|
||||
/* This should be a margin but Konq 3.1.1 sucks. */
|
||||
padding-bottom: 3em }
|
||||
|
||||
|
||||
.CTitle {
|
||||
font-size: 12pt; font-weight: bold;
|
||||
border-width: 0 0 1px 0; border-style: solid; border-color: #A0A0A0;
|
||||
margin: 0 15px .5em 15px }
|
||||
|
||||
.CGroup .CTitle {
|
||||
font-size: 16pt; font-variant: small-caps;
|
||||
padding-left: 15px; padding-right: 15px;
|
||||
border-width: 0 0 2px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
.CClass .CTitle,
|
||||
.CInterface .CTitle,
|
||||
.CDatabase .CTitle,
|
||||
.CDatabaseTable .CTitle,
|
||||
.CSection .CTitle {
|
||||
font-size: 18pt;
|
||||
color: #FFFFFF; background-color: #A0A0A0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 2px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
#MainTopic .CTitle {
|
||||
font-size: 20pt;
|
||||
color: #FFFFFF; background-color: #7070C0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 0 0 3px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
.CBody {
|
||||
margin-left: 15px; margin-right: 15px }
|
||||
|
||||
|
||||
.CToolTip {
|
||||
position: absolute; visibility: hidden;
|
||||
left: 0; top: 0; max-width: 50%;
|
||||
background-color: #FFFFE0;
|
||||
padding: 5px;
|
||||
border-width: 1px 2px 2px 1px; border-style: solid; border-color: #000000;
|
||||
font-size: 8pt }
|
||||
|
||||
/* Opera 6 gives it a huge height otherwise. */
|
||||
.Opera6 .CTooltip, .Opera5 .CTooltip {
|
||||
max-width: 100% }
|
||||
|
||||
.CHeading {
|
||||
font-weight: bold; font-size: 10pt;
|
||||
margin-top: 1.5em; margin-bottom: .5em }
|
||||
|
||||
.CCode {
|
||||
font: 10pt "Courier New", Courier, monospace;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.CBulletList {
|
||||
/* I don't know why CBody's margin doesn't apply, but it's consistent across browsers so whatever.
|
||||
Reapply it here as padding. */
|
||||
padding-left: 15px; padding-right: 15px;
|
||||
margin: .5em 5ex .5em 5ex;
|
||||
}
|
||||
|
||||
.CDescriptionList {
|
||||
margin: .5em 5ex 0 5ex }
|
||||
|
||||
/* IE 4 and Konqueror always makes it too long. */
|
||||
.IE4 .CDescriptionList,
|
||||
.KHTML .CDescriptionList {
|
||||
width: 85% }
|
||||
|
||||
.CDLEntry {
|
||||
font: 10pt "Courier New", Courier, monospace; color: #808080;
|
||||
padding-bottom: .25em;
|
||||
white-space: nowrap }
|
||||
|
||||
.CDLDescription {
|
||||
font-size: 10pt; /* For browsers that don't inherit correctly, like Opera 5. */
|
||||
padding-bottom: .5em; padding-left: 5ex }
|
||||
|
||||
.CTopic img {
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin: 1em auto;
|
||||
}
|
||||
.CImageCaption {
|
||||
font-variant: small-caps;
|
||||
font-size: 8pt;
|
||||
color: #808080;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
top: 1em;
|
||||
}
|
||||
|
||||
.CImageLink {
|
||||
color: #808080;
|
||||
font-style: italic;
|
||||
}
|
||||
a.CImageLink:link,
|
||||
a.CImageLink:visited,
|
||||
a.CImageLink:hover { color: #808080 }
|
||||
|
||||
|
||||
|
||||
.Prototype {
|
||||
font: 10pt "Courier New", Courier, monospace;
|
||||
padding: 5px 3ex;
|
||||
border-width: 1px; border-style: solid;
|
||||
margin: 0 5ex 1.5em 5ex;
|
||||
}
|
||||
|
||||
.Prototype td {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.PDefaultValue,
|
||||
.PTypePrefix {
|
||||
color: #8F8F8F;
|
||||
}
|
||||
.PTypePrefix {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.IE .Prototype table {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.CFunction .Prototype {
|
||||
background-color: #F4F4F4; border-color: #D0D0D0 }
|
||||
.CProperty .Prototype {
|
||||
background-color: #F4F4FF; border-color: #C0C0E8 }
|
||||
.CVariable .Prototype {
|
||||
background-color: #FFFFF0; border-color: #E0E0A0 }
|
||||
|
||||
.CDatabaseIndex .Prototype,
|
||||
.CConstant .Prototype {
|
||||
background-color: #D0D0D0; border-color: #000000 }
|
||||
.CType .Prototype {
|
||||
background-color: #FFF8F8; border-color: #E8C8C8 }
|
||||
.CDatabaseTrigger .Prototype,
|
||||
.CEvent .Prototype,
|
||||
.CDelegate .Prototype {
|
||||
background-color: #F0FCF0; border-color: #B8E4B8 }
|
||||
|
||||
.CToolTip .Prototype {
|
||||
margin: 0 0 .5em 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.Summary {
|
||||
margin: 1.5em 5ex 0 5ex }
|
||||
|
||||
.STitle {
|
||||
font-size: 12pt; font-weight: bold;
|
||||
margin-bottom: .5em }
|
||||
|
||||
|
||||
.SBorder {
|
||||
background-color: #FFFFF0;
|
||||
padding: 15px;
|
||||
border: 1px solid #C0C060 }
|
||||
|
||||
/* Let's observe the evolution of IE's brokeness, shall we?
|
||||
IE 4 always makes them too long, there's no way around it. */
|
||||
.IE4 .SBorder {
|
||||
width: 85% }
|
||||
/* IE 5 will make them too long unless you set the width to 100%. Isn't this implied for a div? */
|
||||
.IE5 .SBorder {
|
||||
width: 100% }
|
||||
/* IE 6 behaves like 5 when it's in a frame, but without frames it will be correct without a width or slightly too long
|
||||
(but not enough to scroll) with a width. This arbitrary weirdness simply astounds me. */
|
||||
body.FramedContentPage .IE6 .SBorder {
|
||||
width: 100% }
|
||||
|
||||
/* A treat for Mozilla users. Blatantly non-standard. Will be replaced with CSS 3 attributes when finalized/supported. */
|
||||
.Gecko .SBorder {
|
||||
-moz-border-radius: 20px }
|
||||
|
||||
|
||||
.STable {
|
||||
font-size: 9pt; width: 100% }
|
||||
|
||||
.SEntrySize {
|
||||
width: 30% }
|
||||
.SDescriptionSize {
|
||||
width: 70% }
|
||||
|
||||
|
||||
.SMarked {
|
||||
background-color: #F8F8D8 }
|
||||
|
||||
|
||||
.SEntry .SIndent1 {
|
||||
margin-left: 1.5ex }
|
||||
.SEntry .SIndent2 {
|
||||
margin-left: 3ex }
|
||||
.SEntry .SIndent3 {
|
||||
margin-left: 4.5ex }
|
||||
.SEntry .SIndent4 {
|
||||
margin-left: 6ex }
|
||||
.SEntry .SIndent5 {
|
||||
margin-left: 7.5ex }
|
||||
|
||||
.SDescription {
|
||||
padding-left: 3ex }
|
||||
|
||||
.SDescription a { color: #800000}
|
||||
.SDescription a:active { color: #A00000 }
|
||||
|
||||
|
||||
.SGroup {
|
||||
margin-top: .5em; margin-bottom: .25em }
|
||||
|
||||
.SGroup .SEntry {
|
||||
font-weight: bold; font-variant: small-caps }
|
||||
|
||||
.SGroup .SEntry a { color: #800000 }
|
||||
.SGroup .SEntry a:active { color: #F00000 }
|
||||
|
||||
|
||||
.SMain .SEntry,
|
||||
.SClass .SEntry,
|
||||
.SDatabase .SEntry,
|
||||
.SDatabaseTable .SEntry,
|
||||
.SSection .SEntry {
|
||||
font-weight: bold; font-size: 10pt;
|
||||
margin-bottom: .25em }
|
||||
|
||||
.SClass,
|
||||
.SDatabase,
|
||||
.SDatabaseTable,
|
||||
.SSection {
|
||||
margin-top: 1em }
|
||||
|
||||
.SMain .SEntry a,
|
||||
.SClass .SEntry a,
|
||||
.SDatabase .SEntry a,
|
||||
.SDatabaseTable .SEntry a,
|
||||
.SSection .SEntry a { color: #000000 }
|
||||
|
||||
.SMain .SEntry a:active,
|
||||
.SClass .SEntry a:active,
|
||||
.SDatabase .SEntry a:active,
|
||||
.SDatabaseTable .SEntry a:active,
|
||||
.SSection .SEntry a:active { color: #A00000 }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.ClassHierarchy {
|
||||
margin: 0 15px 1em 15px }
|
||||
|
||||
.CHEntry {
|
||||
border-width: 1px 2px 2px 1px; border-style: solid; border-color: #A0A0A0;
|
||||
margin-bottom: 3px;
|
||||
padding: 2px 2ex;
|
||||
font-size: 10pt;
|
||||
background-color: #F4F4F4; color: #606060;
|
||||
}
|
||||
|
||||
.Gecko .CHEntry {
|
||||
-moz-border-radius: 4px;
|
||||
}
|
||||
|
||||
.CHCurrent .CHEntry {
|
||||
font-weight: bold;
|
||||
border-color: #000000;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.CHChildNote .CHEntry {
|
||||
font-style: italic;
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.CHIndent {
|
||||
margin-left: 3ex;
|
||||
}
|
||||
|
||||
.CHEntry a:link,
|
||||
.CHEntry a:visited,
|
||||
.CHEntry a:hover {
|
||||
color: #606060;
|
||||
}
|
||||
.CHEntry a:active {
|
||||
color: #800000;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedIndexPage,
|
||||
.IndexSection {
|
||||
background-color: #FFFFFF;
|
||||
font-size: 10pt;
|
||||
padding: 15px }
|
||||
|
||||
.IndexSection {
|
||||
border-width: 0 0 1px 1px; border-style: solid; border-color: #000000 }
|
||||
|
||||
.IPageTitle {
|
||||
font-size: 20pt; font-weight: bold;
|
||||
color: #FFFFFF; background-color: #7070C0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 0 0 3px 0; border-color: #000000; border-style: solid;
|
||||
margin: -15px -15px 0 -15px }
|
||||
|
||||
.INavigationBar {
|
||||
text-align: center;
|
||||
background-color: #FFFFF0;
|
||||
padding: 5px;
|
||||
border-bottom: solid 1px black;
|
||||
margin: 0 -15px 15px -15px }
|
||||
|
||||
.INavigationBar a {
|
||||
font-weight: bold }
|
||||
|
||||
.IHeading {
|
||||
font-size: 16pt; font-weight: bold;
|
||||
padding: 2.5em 0 .5em 0;
|
||||
text-align: center;
|
||||
width: 3.5ex;
|
||||
}
|
||||
#IFirstHeading {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.IEntry {
|
||||
padding-left: 1ex; }
|
||||
|
||||
.ISubIndex {
|
||||
padding-left: 3ex; padding-bottom: .5em }
|
||||
|
||||
/* While it may cause some entries to look like links when they aren't, I found it's much easier to read the
|
||||
index if everything's the same color. */
|
||||
.ISymbol {
|
||||
font-weight: bold; color: #900000 }
|
||||
|
||||
.ISymbolPrefix {
|
||||
text-align: right;
|
||||
color: #C47C7C;
|
||||
background-color: #F8F8F8;
|
||||
border-right: 3px solid #E0E0E0;
|
||||
border-left: 1px solid #E0E0E0;
|
||||
padding: 0 1px 0 2px;
|
||||
}
|
||||
#IFirstSymbolPrefix {
|
||||
border-top: 1px solid #E0E0E0;
|
||||
}
|
||||
#ILastSymbolPrefix {
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
}
|
||||
#IOnlySymbolPrefix {
|
||||
border-top: 1px solid #E0E0E0;
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
}
|
||||
|
||||
a.IParent,
|
||||
a.IFile {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.Footer {
|
||||
font-size: 8pt; color: #909090 }
|
||||
|
||||
body.UnframedPage .Footer {
|
||||
text-align: right;
|
||||
margin: 2px }
|
||||
|
||||
body.FramedMenuPage .Footer {
|
||||
text-align: center;
|
||||
margin: 5em 10px 0 10px}
|
||||
|
||||
.Footer a:link,
|
||||
.Footer a:hover,
|
||||
.Footer a:visited { color: #909090 }
|
||||
.Footer a:active { color: #A00000 }
|
204
lib/ann/fann/docs/NaturalDocs-1.52/Help/example/NaturalDocs.js
Executable file
@ -0,0 +1,204 @@
|
||||
|
||||
//
|
||||
// Browser Styles
|
||||
// ____________________________________________________________________________
|
||||
|
||||
var agt=navigator.userAgent.toLowerCase();
|
||||
var browserType;
|
||||
var browserVer;
|
||||
|
||||
if (agt.indexOf("opera") != -1)
|
||||
{
|
||||
browserType = "Opera";
|
||||
|
||||
if (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1)
|
||||
{ browserVer = "Opera5"; }
|
||||
else if (agt.indexOf("opera 6") != -1 || agt.indexOf("opera/6") != -1)
|
||||
{ browserVer = "Opera6"; }
|
||||
else if (agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1)
|
||||
{ browserVer = "Opera7"; }
|
||||
}
|
||||
|
||||
else if (agt.indexOf("khtml") != -1 || agt.indexOf("konq") != -1 || agt.indexOf("safari") != -1)
|
||||
{
|
||||
browserType = "KHTML";
|
||||
}
|
||||
|
||||
else if (agt.indexOf("msie") != -1)
|
||||
{
|
||||
browserType = "IE";
|
||||
|
||||
if (agt.indexOf("msie 4") != -1)
|
||||
{ browserVer = "IE4"; }
|
||||
else if (agt.indexOf("msie 5") != -1)
|
||||
{ browserVer = "IE5"; }
|
||||
else if (agt.indexOf("msie 6") != -1)
|
||||
{ browserVer = "IE6"; }
|
||||
}
|
||||
|
||||
else if (agt.indexOf("gecko") != -1)
|
||||
{
|
||||
browserType = "Gecko";
|
||||
}
|
||||
|
||||
// Opera already taken care of.
|
||||
else if (agt.indexOf("mozilla") != -1 && agt.indexOf("compatible") == -1 && agt.indexOf("spoofer") == -1 &&
|
||||
agt.indexOf("webtv") == -1 && agt.indexOf("hotjava") == -1)
|
||||
{
|
||||
browserType = "Netscape";
|
||||
|
||||
if (agt.indexOf("mozilla/4") != -1)
|
||||
{ browserVer = "Netscape4"; }
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Menu
|
||||
// ____________________________________________________________________________
|
||||
|
||||
|
||||
function ToggleMenu(id)
|
||||
{
|
||||
if (!window.document.getElementById)
|
||||
{ return; };
|
||||
|
||||
var display = window.document.getElementById(id).style.display;
|
||||
|
||||
if (display == "none")
|
||||
{ display = "block"; }
|
||||
else
|
||||
{ display = "none"; }
|
||||
|
||||
window.document.getElementById(id).style.display = display;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Tooltips
|
||||
// ____________________________________________________________________________
|
||||
|
||||
|
||||
var tooltipTimer = 0;
|
||||
|
||||
function ShowTip(event, tooltipID, linkID)
|
||||
{
|
||||
if (tooltipTimer)
|
||||
{ clearTimeout(tooltipTimer); };
|
||||
|
||||
var docX = event.clientX + window.pageXOffset;
|
||||
var docY = event.clientY + window.pageYOffset;
|
||||
|
||||
var showCommand = "ReallyShowTip('" + tooltipID + "', '" + linkID + "', " + docX + ", " + docY + ")";
|
||||
|
||||
// KHTML cant handle showing on a timer right now.
|
||||
|
||||
if (browserType != "KHTML")
|
||||
{ tooltipTimer = setTimeout(showCommand, 1000); }
|
||||
else
|
||||
{ eval(showCommand); };
|
||||
}
|
||||
|
||||
function ReallyShowTip(tooltipID, linkID, docX, docY)
|
||||
{
|
||||
tooltipTimer = 0;
|
||||
|
||||
var tooltip;
|
||||
var link;
|
||||
|
||||
if (document.getElementById)
|
||||
{
|
||||
tooltip = document.getElementById(tooltipID);
|
||||
link = document.getElementById(linkID);
|
||||
}
|
||||
else if (document.all)
|
||||
{
|
||||
tooltip = eval("document.all['" + tooltipID + "']");
|
||||
link = eval("document.all['" + linkID + "']");
|
||||
}
|
||||
|
||||
if (tooltip)
|
||||
{
|
||||
var left = 0;
|
||||
var top = 0;
|
||||
|
||||
// Not everything supports offsetTop/Left/Width, and some, like Konqueror and Opera 5, think they do but do it badly.
|
||||
|
||||
if (link && link.offsetWidth != null && browserType != "KHTML" && browserVer != "Opera5")
|
||||
{
|
||||
var item = link;
|
||||
while (item != document.body)
|
||||
{
|
||||
left += item.offsetLeft;
|
||||
item = item.offsetParent;
|
||||
}
|
||||
|
||||
item = link;
|
||||
while (item != document.body)
|
||||
{
|
||||
top += item.offsetTop;
|
||||
item = item.offsetParent;
|
||||
}
|
||||
top += link.offsetHeight;
|
||||
}
|
||||
|
||||
// The fallback method is to use the mouse X and Y relative to the document. We use a separate if and test if its a number
|
||||
// in case some browser snuck through the above if statement but didn't support everything.
|
||||
|
||||
if (!isFinite(top) || top == 0)
|
||||
{
|
||||
left = docX;
|
||||
top = docY;
|
||||
}
|
||||
|
||||
// Some spacing to get it out from under the cursor.
|
||||
|
||||
top += 10;
|
||||
|
||||
// Make sure the tooltip doesnt get smushed by being too close to the edge, or in some browsers, go off the edge of the
|
||||
// page. We do it here because Konqueror does get offsetWidth right even if it doesnt get the positioning right.
|
||||
|
||||
if (tooltip.offsetWidth != null)
|
||||
{
|
||||
var width = tooltip.offsetWidth;
|
||||
var docWidth = document.body.clientWidth;
|
||||
|
||||
if (left + width > docWidth)
|
||||
{ left = docWidth - width - 1; }
|
||||
}
|
||||
|
||||
// Opera 5 chokes on the px extension, so it can use the Microsoft one instead.
|
||||
|
||||
if (tooltip.style.left != null && browserVer != "Opera5")
|
||||
{
|
||||
tooltip.style.left = left + "px";
|
||||
tooltip.style.top = top + "px";
|
||||
}
|
||||
else if (tooltip.style.pixelLeft != null)
|
||||
{
|
||||
tooltip.style.pixelLeft = left;
|
||||
tooltip.style.pixelTop = top;
|
||||
}
|
||||
|
||||
tooltip.style.visibility = "visible";
|
||||
}
|
||||
}
|
||||
|
||||
function HideTip(tooltipID)
|
||||
{
|
||||
if (tooltipTimer)
|
||||
{
|
||||
clearTimeout(tooltipTimer);
|
||||
tooltipTimer = 0;
|
||||
}
|
||||
|
||||
var tooltip;
|
||||
|
||||
if (document.getElementById)
|
||||
{ tooltip = document.getElementById(tooltipID); }
|
||||
else if (document.all)
|
||||
{ tooltip = eval("document.all['" + tooltipID + "']"); }
|
||||
|
||||
if (tooltip)
|
||||
{ tooltip.style.visibility = "hidden"; }
|
||||
}
|
||||
|
507
lib/ann/fann/docs/NaturalDocs-1.52/Help/example/Roman.css
Executable file
@ -0,0 +1,507 @@
|
||||
/*
|
||||
IMPORTANT: If you're editing this file in the output directory of one of
|
||||
your projects, your changes will be overwritten the next time you run
|
||||
Natural Docs. Instead, copy this file to your project directory, make your
|
||||
changes, and you can use it with -s. Even better would be to make a CSS
|
||||
file in your project directory with only your changes, which you can then
|
||||
use with -s [original style] [your changes].
|
||||
|
||||
On the other hand, if you're editing this file in the Natural Docs styles
|
||||
directory, the changes will automatically be applied to all your projects
|
||||
that use this style the next time Natural Docs is run on them.
|
||||
|
||||
This file is part of Natural Docs, which is Copyright <20> 2003-2004 Greg Valure
|
||||
Natural Docs is licensed under the GPL
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: "Times New Roman", Roman, serif;
|
||||
color: #000000;
|
||||
margin: 0px; padding: 0px }
|
||||
|
||||
body.UnframedPage {
|
||||
background-color: #E8E8E8 }
|
||||
|
||||
|
||||
a:link,
|
||||
a:visited { color: #900000; text-decoration: none }
|
||||
a:hover { color: #900000; text-decoration: underline }
|
||||
a:active { color: #FF0000; text-decoration: underline }
|
||||
|
||||
td {
|
||||
vertical-align: top }
|
||||
|
||||
/*
|
||||
Comment out this line to use web-style paragraphs (blank line between
|
||||
paragraphs, no indent) instead of print-style paragraphs (no blank line,
|
||||
indented.)
|
||||
*/
|
||||
p {
|
||||
text-indent: 5ex; margin: 0 }
|
||||
|
||||
|
||||
/* Can't use something like display: none or it won't break. */
|
||||
.HB {
|
||||
font-size: 1px }
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedMenuPage,
|
||||
.MenuSection {
|
||||
font-size: 10pt;
|
||||
background-color: #E8E8E8;
|
||||
padding: 10px 0 0 0 }
|
||||
|
||||
.MenuSection {
|
||||
width: 27ex }
|
||||
|
||||
|
||||
.MTitle {
|
||||
font-size: 18pt; font-weight: bold; font-variant: small-caps;
|
||||
text-align: center;
|
||||
padding: 5px 10px 15px 10px;
|
||||
border-bottom: 1px dotted #000000;
|
||||
margin-bottom: 15px }
|
||||
|
||||
.MSubTitle {
|
||||
font-size: 10pt; font-weight: normal; font-variant: normal;
|
||||
margin-top: 1ex; margin-bottom: 5px }
|
||||
|
||||
|
||||
.MEntry a:link,
|
||||
.MEntry a:hover,
|
||||
.MEntry a:visited { color: #606060; margin-right: 0 }
|
||||
.MEntry a:active { color: #A00000; margin-right: 0 }
|
||||
|
||||
|
||||
.MGroup {
|
||||
font-variant: small-caps; font-weight: bold;
|
||||
margin: 1em 0 1em 10px }
|
||||
|
||||
/* Konqueror just can't do margins. */
|
||||
.KHTML .MGroup {
|
||||
margin-bottom: 0; padding-bottom: 1em }
|
||||
|
||||
.MGroupContent {
|
||||
font-variant: normal; font-weight: normal }
|
||||
|
||||
.MGroup a:link,
|
||||
.MGroup a:hover,
|
||||
.MGroup a:visited { color: #545454; margin-right: 10px }
|
||||
.MGroup a:active { color: #A00000; margin-right: 10px }
|
||||
|
||||
|
||||
.MFile,
|
||||
.MText,
|
||||
.MLink,
|
||||
.MIndex {
|
||||
padding: 1px 17px 2px 10px;
|
||||
margin: .25em 0 .25em 0 }
|
||||
|
||||
.MText {
|
||||
font-size: 8pt; font-style: italic }
|
||||
|
||||
.MLink {
|
||||
font-style: italic }
|
||||
|
||||
#MSelected {
|
||||
color: #000000; background-color: #FFFFFF;
|
||||
/* Replace padding with border. */
|
||||
padding: 0 10px 0 10px;
|
||||
border-width: 1px 2px 2px 0; border-style: solid; border-color: #000000;
|
||||
margin-right: 5px }
|
||||
|
||||
/* Close off the left side when its in a group. */
|
||||
.MGroup #MSelected {
|
||||
padding-left: 9px; border-left-width: 1px }
|
||||
|
||||
/* A treat for Mozilla users. Blatantly non-standard. Will be replaced with CSS 3 attributes when finalized/supported. */
|
||||
.Gecko #MSelected {
|
||||
-moz-border-radius-topright: 10px;
|
||||
-moz-border-radius-bottomright: 10px }
|
||||
.Gecko .MGroup #MSelected {
|
||||
-moz-border-radius-topleft: 10px;
|
||||
-moz-border-radius-bottomleft: 10px }
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedContentPage,
|
||||
.ContentSection {
|
||||
background-color: #FFFFFF;
|
||||
padding-bottom: 15px }
|
||||
|
||||
.ContentSection {
|
||||
border-width: 0 0 1px 1px; border-style: solid; border-color: #000000 }
|
||||
|
||||
|
||||
.CTopic {
|
||||
font-size: 12pt;
|
||||
/* This should be a margin but Konq 3.1.1 sucks. */
|
||||
padding-bottom: 3em }
|
||||
|
||||
|
||||
.CTitle {
|
||||
font-size: 16pt; font-weight: bold;
|
||||
border-width: 0 0 1px 0; border-style: solid; border-color: #A0A0A0;
|
||||
margin: 0 15px .5em 15px }
|
||||
|
||||
.CGroup .CTitle {
|
||||
font-size: 18pt; font-variant: small-caps;
|
||||
padding-left: 15px; padding-right: 15px;
|
||||
border-width: 0 0 2px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
.CClass .CTitle,
|
||||
.CInterface .CTitle,
|
||||
.CDatabase .CTitle,
|
||||
.CDatabaseTable .CTitle,
|
||||
.CSection .CTitle {
|
||||
font-size: 20pt;
|
||||
color: #FFFFFF; background-color: #A0A0A0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 2px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
#MainTopic .CTitle {
|
||||
font-size: 24pt;
|
||||
color: #FFFFFF; background-color: #7070C0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 0 0 3px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
.CBody {
|
||||
margin-left: 15px; margin-right: 15px }
|
||||
|
||||
|
||||
.CToolTip {
|
||||
position: absolute; visibility: hidden;
|
||||
left: 0; top: 0; max-width: 50%;
|
||||
background-color: #FFFFE0;
|
||||
padding: 5px;
|
||||
border-width: 1px 2px 2px 1px; border-style: solid; border-color: #000000;
|
||||
font-size: 10pt }
|
||||
|
||||
/* Opera 6 gives it a huge height otherwise. */
|
||||
.Opera6 .CTooltip, .Opera5 .CTooltip {
|
||||
max-width: 100% }
|
||||
|
||||
.CHeading {
|
||||
font-weight: bold;
|
||||
margin-top: 1.5em; margin-bottom: .5em }
|
||||
|
||||
.CCode {
|
||||
font: 10pt "Courier New", Courier, monospace;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.CBulletList {
|
||||
/* I don't know why CBody's margin doesn't apply, but it's consistent across browsers so whatever.
|
||||
Reapply it here as padding. */
|
||||
padding-left: 15px; padding-right: 15px;
|
||||
margin: .5em 5ex .5em 5ex;
|
||||
}
|
||||
|
||||
.CDescriptionList {
|
||||
margin: .5em 5ex 0 5ex }
|
||||
|
||||
/* IE 4 and Konqueror always makes it too long. */
|
||||
.IE4 .CDescriptionList,
|
||||
.KHTML .CDescriptionList {
|
||||
width: 85% }
|
||||
|
||||
.CDLEntry {
|
||||
font: 10pt "Courier New", Courier, monospace; color: #808080;
|
||||
padding-bottom: .25em;
|
||||
white-space: nowrap }
|
||||
|
||||
.CDLDescription {
|
||||
font-size: 12pt; /* For browsers that don't inherit correctly, like Opera 5. */
|
||||
padding-bottom: .5em; padding-left: 5ex }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.Prototype {
|
||||
font: 10pt "Courier New", Courier, monospace;
|
||||
padding: 5px 3ex;
|
||||
border-width: 1px; border-style: solid;
|
||||
margin: 0 5ex 1.5em 5ex;
|
||||
}
|
||||
|
||||
.Prototype td {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.PDefaultValue,
|
||||
.PTypePrefix {
|
||||
color: #8F8F8F;
|
||||
}
|
||||
.PTypePrefix {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.IE .Prototype table {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.CFunction .Prototype {
|
||||
background-color: #F4F4F4; border-color: #D0D0D0 }
|
||||
.CProperty .Prototype {
|
||||
background-color: #F4F4FF; border-color: #C0C0E8 }
|
||||
.CVariable .Prototype {
|
||||
background-color: #FFFFF0; border-color: #E0E0A0 }
|
||||
|
||||
.CDatabaseIndex .Prototype,
|
||||
.CConstant .Prototype {
|
||||
background-color: #D0D0D0; border-color: #000000 }
|
||||
.CType .Prototype {
|
||||
background-color: #FFF8F8; border-color: #E8C8C8 }
|
||||
.CDatabaseTrigger .Prototype,
|
||||
.CEvent .Prototype,
|
||||
.CDelegate .Prototype {
|
||||
background-color: #F0FCF0; border-color: #B8E4B8 }
|
||||
|
||||
.CToolTip .Prototype {
|
||||
margin: 0 0 .5em 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.Summary {
|
||||
margin: 1.5em 5ex 0 5ex }
|
||||
|
||||
.STitle {
|
||||
font-size: 14pt; font-weight: bold;
|
||||
margin-bottom: .5em }
|
||||
|
||||
|
||||
.SBorder {
|
||||
background-color: #FFFFF0;
|
||||
padding: 15px;
|
||||
border: 1px solid #C0C060 }
|
||||
|
||||
/* Let's observe the evolution of IE's brokeness, shall we?
|
||||
IE 4 always makes them too long, there's no way around it. */
|
||||
.IE4 .SBorder {
|
||||
width: 85% }
|
||||
/* IE 5 will make them too long unless you set the width to 100%. Isn't this implied for a div? */
|
||||
.IE5 .SBorder {
|
||||
width: 100% }
|
||||
/* IE 6 behaves like 5 when it's in a frame, but without frames it will be correct without a width or slightly too long
|
||||
(but not enough to scroll) with a width. This arbitrary weirdness simply astounds me. */
|
||||
body.FramedContentPage .IE6 .SBorder {
|
||||
width: 100% }
|
||||
|
||||
/* A treat for Mozilla users. Blatantly non-standard. Will be replaced with CSS 3 attributes when finalized/supported. */
|
||||
.Gecko .SBorder {
|
||||
-moz-border-radius: 20px }
|
||||
|
||||
|
||||
.STable {
|
||||
font-size: 10pt; width: 100% }
|
||||
|
||||
.SEntrySize {
|
||||
width: 30% }
|
||||
.SDescriptionSize {
|
||||
width: 70% }
|
||||
|
||||
|
||||
.SMarked {
|
||||
background-color: #F8F8D8 }
|
||||
|
||||
|
||||
.SEntry .SIndent1 {
|
||||
margin-left: 1.5ex }
|
||||
.SEntry .SIndent2 {
|
||||
margin-left: 3ex }
|
||||
.SEntry .SIndent3 {
|
||||
margin-left: 4.5ex }
|
||||
.SEntry .SIndent4 {
|
||||
margin-left: 6ex }
|
||||
.SEntry .SIndent5 {
|
||||
margin-left: 7.5ex }
|
||||
|
||||
.SDescription {
|
||||
padding-left: 3ex }
|
||||
|
||||
.SDescription a { color: #800000}
|
||||
.SDescription a:active { color: #A00000 }
|
||||
|
||||
|
||||
.SGroup {
|
||||
margin-top: .5em; margin-bottom: .25em }
|
||||
|
||||
.SGroup .SEntry {
|
||||
font-weight: bold; font-variant: small-caps }
|
||||
|
||||
.SGroup .SEntry a { color: #800000 }
|
||||
.SGroup .SEntry a:active { color: #F00000 }
|
||||
|
||||
|
||||
.SMain .SEntry,
|
||||
.SClass .SEntry,
|
||||
.SDatabase .SEntry,
|
||||
.SDatabaseTable .SEntry,
|
||||
.SSection .SEntry {
|
||||
font-weight: bold; font-size: 12pt;
|
||||
margin-bottom: .25em }
|
||||
|
||||
.SClass,
|
||||
.SDatabase,
|
||||
.SDatabaseTable,
|
||||
.SSection {
|
||||
margin-top: 1em }
|
||||
|
||||
.SMain .SEntry a,
|
||||
.SClass .SEntry a,
|
||||
.SDatabase .SEntry a,
|
||||
.SDatabaseTable .SEntry a,
|
||||
.SSection .SEntry a { color: #000000 }
|
||||
|
||||
.SMain .SEntry a:active,
|
||||
.SClass .SEntry a:active,
|
||||
.SDatabase .SEntry a:active,
|
||||
.SDatabaseTable .SEntry a:active,
|
||||
.SSection .SEntry a:active { color: #A00000 }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.ClassHierarchy {
|
||||
margin: 0 15px 1em 15px }
|
||||
|
||||
.CHEntry {
|
||||
border-width: 1px 2px 2px 1px; border-style: solid; border-color: #A0A0A0;
|
||||
margin-bottom: 3px;
|
||||
padding: 2px 2ex;
|
||||
font-size: 12pt;
|
||||
background-color: #F4F4F4; color: #606060;
|
||||
}
|
||||
|
||||
.Gecko .CHEntry {
|
||||
-moz-border-radius: 4px;
|
||||
}
|
||||
|
||||
.CHCurrent .CHEntry {
|
||||
font-weight: bold;
|
||||
border-color: #000000;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.CHChildNote .CHEntry {
|
||||
font-style: italic;
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.CHIndent {
|
||||
margin-left: 3ex;
|
||||
}
|
||||
|
||||
.CHEntry a:link,
|
||||
.CHEntry a:visited,
|
||||
.CHEntry a:hover {
|
||||
color: #606060;
|
||||
}
|
||||
.CHEntry a:active {
|
||||
color: #800000;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedIndexPage,
|
||||
.IndexSection {
|
||||
background-color: #FFFFFF;
|
||||
font: 12pt "Times New Roman", serif;
|
||||
padding: 15px }
|
||||
|
||||
.IndexSection {
|
||||
border-width: 0 0 1px 1px; border-style: solid; border-color: #000000 }
|
||||
|
||||
.IPageTitle {
|
||||
font-size: 24pt; font-weight: bold;
|
||||
color: #FFFFFF; background-color: #7070C0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 0 0 3px 0; border-color: #000000; border-style: solid;
|
||||
margin: -15px -15px 0 -15px }
|
||||
|
||||
.INavigationBar {
|
||||
text-align: center;
|
||||
background-color: #FFFFF0;
|
||||
padding: 5px;
|
||||
border-bottom: solid 1px black;
|
||||
margin: 0 -15px 15px -15px }
|
||||
|
||||
.INavigationBar a {
|
||||
font-weight: bold }
|
||||
|
||||
.IHeading {
|
||||
font-size: 20pt; font-weight: bold;
|
||||
padding: 2.5em 0 .5em 0;
|
||||
text-align: center;
|
||||
width: 3.5ex;
|
||||
}
|
||||
#IFirstHeading {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.IEntry {
|
||||
padding-left: 1ex; }
|
||||
|
||||
.ISubIndex {
|
||||
padding-left: 3ex; padding-bottom: .5em }
|
||||
|
||||
/* While it may cause some entries to look like links when they aren't, I found it's much easier to read the
|
||||
index if everything's the same color. */
|
||||
.ISymbol {
|
||||
font-weight: bold; color: #900000 }
|
||||
|
||||
.ISymbolPrefix {
|
||||
text-align: right;
|
||||
color: #C47C7C;
|
||||
background-color: #F8F8F8;
|
||||
border-right: 3px solid #E0E0E0;
|
||||
border-left: 1px solid #E0E0E0;
|
||||
padding: 0 1px 0 2px;
|
||||
}
|
||||
#IFirstSymbolPrefix {
|
||||
border-top: 1px solid #E0E0E0;
|
||||
}
|
||||
#ILastSymbolPrefix {
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
}
|
||||
#IOnlySymbolPrefix {
|
||||
border-top: 1px solid #E0E0E0;
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
}
|
||||
|
||||
a.IParent,
|
||||
a.IFile {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.Footer {
|
||||
font-size: 8pt; color: #909090 }
|
||||
|
||||
body.UnframedPage .Footer {
|
||||
text-align: right;
|
||||
margin: 2px }
|
||||
|
||||
body.FramedMenuPage .Footer {
|
||||
text-align: center;
|
||||
margin: 5em 10px 0 10px}
|
||||
|
||||
.Footer a:link,
|
||||
.Footer a:hover,
|
||||
.Footer a:visited { color: #909090 }
|
||||
.Footer a:active { color: #A00000 }
|
507
lib/ann/fann/docs/NaturalDocs-1.52/Help/example/Small.css
Executable file
@ -0,0 +1,507 @@
|
||||
/*
|
||||
IMPORTANT: If you're editing this file in the output directory of one of
|
||||
your projects, your changes will be overwritten the next time you run
|
||||
Natural Docs. Instead, copy this file to your project directory, make your
|
||||
changes, and you can use it with -s. Even better would be to make a CSS
|
||||
file in your project directory with only your changes, which you can then
|
||||
use with -s [original style] [your changes].
|
||||
|
||||
On the other hand, if you're editing this file in the Natural Docs styles
|
||||
directory, the changes will automatically be applied to all your projects
|
||||
that use this style the next time Natural Docs is run on them.
|
||||
|
||||
This file is part of Natural Docs, which is Copyright <20> 2003-2004 Greg Valure
|
||||
Natural Docs is licensed under the GPL
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: Verdana, Arial, sans-serif;
|
||||
color: #000000;
|
||||
margin: 0px; padding: 0px }
|
||||
|
||||
body.UnframedPage {
|
||||
background-color: #E8E8E8 }
|
||||
|
||||
|
||||
a:link,
|
||||
a:visited { color: #900000; text-decoration: none }
|
||||
a:hover { color: #900000; text-decoration: underline }
|
||||
a:active { color: #FF0000; text-decoration: underline }
|
||||
|
||||
td {
|
||||
vertical-align: top }
|
||||
|
||||
/*
|
||||
Comment out this line to use web-style paragraphs (blank line between
|
||||
paragraphs, no indent) instead of print-style paragraphs (no blank line,
|
||||
indented.)
|
||||
*/
|
||||
p {
|
||||
text-indent: 5ex; margin: 0 }
|
||||
|
||||
|
||||
/* Can't use something like display: none or it won't break. */
|
||||
.HB {
|
||||
font-size: 1px }
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedMenuPage,
|
||||
.MenuSection {
|
||||
font-size: 8pt;
|
||||
background-color: #E8E8E8;
|
||||
padding: 10px 0 0 0 }
|
||||
|
||||
.MenuSection {
|
||||
width: 27ex }
|
||||
|
||||
|
||||
.MTitle {
|
||||
font-size: 16pt; font-weight: bold; font-variant: small-caps;
|
||||
text-align: center;
|
||||
padding: 5px 10px 15px 10px;
|
||||
border-bottom: 1px dotted #000000;
|
||||
margin-bottom: 15px }
|
||||
|
||||
.MSubTitle {
|
||||
font-size: 9pt; font-weight: normal; font-variant: normal;
|
||||
margin-top: 1ex; margin-bottom: 5px }
|
||||
|
||||
|
||||
.MEntry a:link,
|
||||
.MEntry a:hover,
|
||||
.MEntry a:visited { color: #606060; margin-right: 0 }
|
||||
.MEntry a:active { color: #A00000; margin-right: 0 }
|
||||
|
||||
|
||||
.MGroup {
|
||||
font-variant: small-caps; font-weight: bold;
|
||||
margin: 1em 0 1em 10px }
|
||||
|
||||
/* Konqueror just can't do margins. */
|
||||
.KHTML .MGroup {
|
||||
margin-bottom: 0; padding-bottom: 1em }
|
||||
|
||||
.MGroupContent {
|
||||
font-variant: normal; font-weight: normal }
|
||||
|
||||
.MGroup a:link,
|
||||
.MGroup a:hover,
|
||||
.MGroup a:visited { color: #545454; margin-right: 10px }
|
||||
.MGroup a:active { color: #A00000; margin-right: 10px }
|
||||
|
||||
|
||||
.MFile,
|
||||
.MText,
|
||||
.MLink,
|
||||
.MIndex {
|
||||
padding: 1px 17px 2px 10px;
|
||||
margin: .25em 0 .25em 0 }
|
||||
|
||||
.MText {
|
||||
font-size: 8pt; font-style: italic }
|
||||
|
||||
.MLink {
|
||||
font-style: italic }
|
||||
|
||||
#MSelected {
|
||||
color: #000000; background-color: #FFFFFF;
|
||||
/* Replace padding with border. */
|
||||
padding: 0 10px 0 10px;
|
||||
border-width: 1px 2px 2px 0; border-style: solid; border-color: #000000;
|
||||
margin-right: 5px }
|
||||
|
||||
/* Close off the left side when its in a group. */
|
||||
.MGroup #MSelected {
|
||||
padding-left: 9px; border-left-width: 1px }
|
||||
|
||||
/* A treat for Mozilla users. Blatantly non-standard. Will be replaced with CSS 3 attributes when finalized/supported. */
|
||||
.Gecko #MSelected {
|
||||
-moz-border-radius-topright: 10px;
|
||||
-moz-border-radius-bottomright: 10px }
|
||||
.Gecko .MGroup #MSelected {
|
||||
-moz-border-radius-topleft: 10px;
|
||||
-moz-border-radius-bottomleft: 10px }
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedContentPage,
|
||||
.ContentSection {
|
||||
background-color: #FFFFFF;
|
||||
padding-bottom: 15px }
|
||||
|
||||
.ContentSection {
|
||||
border-width: 0 0 1px 1px; border-style: solid; border-color: #000000 }
|
||||
|
||||
|
||||
.CTopic {
|
||||
font-size: 8pt;
|
||||
/* This should be a margin but Konq 3.1.1 sucks. */
|
||||
padding-bottom: 3em }
|
||||
|
||||
|
||||
.CTitle {
|
||||
font-size: 11pt; font-weight: bold;
|
||||
border-width: 0 0 1px 0; border-style: solid; border-color: #A0A0A0;
|
||||
margin: 0 15px .5em 15px }
|
||||
|
||||
.CGroup .CTitle {
|
||||
font-size: 16pt; font-variant: small-caps;
|
||||
padding-left: 15px; padding-right: 15px;
|
||||
border-width: 0 0 2px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
.CClass .CTitle,
|
||||
.CInterface .CTitle,
|
||||
.CDatabase .CTitle,
|
||||
.CDatabaseTable .CTitle,
|
||||
.CSection .CTitle {
|
||||
font-size: 18pt;
|
||||
color: #FFFFFF; background-color: #A0A0A0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 2px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
#MainTopic .CTitle {
|
||||
font-size: 20pt;
|
||||
color: #FFFFFF; background-color: #7070C0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 0 0 3px 0; border-color: #000000;
|
||||
margin-left: 0; margin-right: 0 }
|
||||
|
||||
.CBody {
|
||||
margin-left: 15px; margin-right: 15px }
|
||||
|
||||
|
||||
.CToolTip {
|
||||
position: absolute; visibility: hidden;
|
||||
left: 0; top: 0; max-width: 50%;
|
||||
background-color: #FFFFE0;
|
||||
padding: 5px;
|
||||
border-width: 1px 2px 2px 1px; border-style: solid; border-color: #000000;
|
||||
font-size: 8pt }
|
||||
|
||||
/* Opera 6 gives it a huge height otherwise. */
|
||||
.Opera6 .CTooltip, .Opera5 .CTooltip {
|
||||
max-width: 100% }
|
||||
|
||||
.CHeading {
|
||||
font-weight: bold; font-size: 9pt;
|
||||
margin-top: 1.5em; margin-bottom: .5em }
|
||||
|
||||
.CCode {
|
||||
font: 8pt "Courier New", Courier, monospace;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.CBulletList {
|
||||
/* I don't know why CBody's margin doesn't apply, but it's consistent across browsers so whatever.
|
||||
Reapply it here as padding. */
|
||||
padding-left: 15px; padding-right: 15px;
|
||||
margin: .5em 5ex .5em 5ex;
|
||||
}
|
||||
|
||||
.CDescriptionList {
|
||||
margin: .5em 5ex 0 5ex }
|
||||
|
||||
/* IE 4 and Konqueror always makes it too long. */
|
||||
.IE4 .CDescriptionList,
|
||||
.KHTML .CDescriptionList {
|
||||
width: 85% }
|
||||
|
||||
.CDLEntry {
|
||||
font: 8pt "Courier New", Courier, monospace; color: #808080;
|
||||
padding-bottom: .25em;
|
||||
white-space: nowrap }
|
||||
|
||||
.CDLDescription {
|
||||
font-size: 8pt; /* For browsers that don't inherit correctly, like Opera 5. */
|
||||
padding-bottom: .5em; padding-left: 5ex }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.Prototype {
|
||||
font: 8pt "Courier New", Courier, monospace;
|
||||
padding: 5px 3ex;
|
||||
border-width: 1px; border-style: solid;
|
||||
margin: 0 5ex 1.5em 5ex;
|
||||
}
|
||||
|
||||
.Prototype td {
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.PDefaultValue,
|
||||
.PTypePrefix {
|
||||
color: #8F8F8F;
|
||||
}
|
||||
.PTypePrefix {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.IE .Prototype table {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.CFunction .Prototype {
|
||||
background-color: #F4F4F4; border-color: #D0D0D0 }
|
||||
.CProperty .Prototype {
|
||||
background-color: #F4F4FF; border-color: #C0C0E8 }
|
||||
.CVariable .Prototype {
|
||||
background-color: #FFFFF0; border-color: #E0E0A0 }
|
||||
|
||||
.CDatabaseIndex .Prototype,
|
||||
.CConstant .Prototype {
|
||||
background-color: #D0D0D0; border-color: #000000 }
|
||||
.CType .Prototype {
|
||||
background-color: #FFF8F8; border-color: #E8C8C8 }
|
||||
.CDatabaseTrigger .Prototype,
|
||||
.CEvent .Prototype,
|
||||
.CDelegate .Prototype {
|
||||
background-color: #F0FCF0; border-color: #B8E4B8 }
|
||||
|
||||
.CToolTip .Prototype {
|
||||
margin: 0 0 .5em 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.Summary {
|
||||
margin: 1.5em 5ex 0 5ex }
|
||||
|
||||
.STitle {
|
||||
font-size: 11pt; font-weight: bold;
|
||||
margin-bottom: .5em }
|
||||
|
||||
|
||||
.SBorder {
|
||||
background-color: #FFFFF0;
|
||||
padding: 15px;
|
||||
border: 1px solid #C0C060 }
|
||||
|
||||
/* Let's observe the evolution of IE's brokeness, shall we?
|
||||
IE 4 always makes them too long, there's no way around it. */
|
||||
.IE4 .SBorder {
|
||||
width: 85% }
|
||||
/* IE 5 will make them too long unless you set the width to 100%. Isn't this implied for a div? */
|
||||
.IE5 .SBorder {
|
||||
width: 100% }
|
||||
/* IE 6 behaves like 5 when it's in a frame, but without frames it will be correct without a width or slightly too long
|
||||
(but not enough to scroll) with a width. This arbitrary weirdness simply astounds me. */
|
||||
body.FramedContentPage .IE6 .SBorder {
|
||||
width: 100% }
|
||||
|
||||
/* A treat for Mozilla users. Blatantly non-standard. Will be replaced with CSS 3 attributes when finalized/supported. */
|
||||
.Gecko .SBorder {
|
||||
-moz-border-radius: 20px }
|
||||
|
||||
|
||||
.STable {
|
||||
font-size: 8pt; width: 100% }
|
||||
|
||||
.SEntrySize {
|
||||
width: 30% }
|
||||
.SDescriptionSize {
|
||||
width: 70% }
|
||||
|
||||
|
||||
.SMarked {
|
||||
background-color: #F8F8D8 }
|
||||
|
||||
|
||||
.SEntry .SIndent1 {
|
||||
margin-left: 1.5ex }
|
||||
.SEntry .SIndent2 {
|
||||
margin-left: 3ex }
|
||||
.SEntry .SIndent3 {
|
||||
margin-left: 4.5ex }
|
||||
.SEntry .SIndent4 {
|
||||
margin-left: 6ex }
|
||||
.SEntry .SIndent5 {
|
||||
margin-left: 7.5ex }
|
||||
|
||||
.SDescription {
|
||||
padding-left: 3ex }
|
||||
|
||||
.SDescription a { color: #800000}
|
||||
.SDescription a:active { color: #A00000 }
|
||||
|
||||
|
||||
.SGroup {
|
||||
margin-top: .5em; margin-bottom: .25em }
|
||||
|
||||
.SGroup .SEntry {
|
||||
font-weight: bold; font-variant: small-caps }
|
||||
|
||||
.SGroup .SEntry a { color: #800000 }
|
||||
.SGroup .SEntry a:active { color: #F00000 }
|
||||
|
||||
|
||||
.SMain .SEntry,
|
||||
.SClass .SEntry,
|
||||
.SDatabase .SEntry,
|
||||
.SDatabaseTable .SEntry,
|
||||
.SSection .SEntry {
|
||||
font-weight: bold; font-size: 9pt;
|
||||
margin-bottom: .25em }
|
||||
|
||||
.SClass,
|
||||
.SDatabase,
|
||||
.SDatabaseTable,
|
||||
.SSection {
|
||||
margin-top: 1em }
|
||||
|
||||
.SMain .SEntry a,
|
||||
.SClass .SEntry a,
|
||||
.SDatabase .SEntry a,
|
||||
.SDatabaseTable .SEntry a,
|
||||
.SSection .SEntry a { color: #000000 }
|
||||
|
||||
.SMain .SEntry a:active,
|
||||
.SClass .SEntry a:active,
|
||||
.SDatabase .SEntry a:active,
|
||||
.SDatabaseTable .SEntry a:active,
|
||||
.SSection .SEntry a:active { color: #A00000 }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.ClassHierarchy {
|
||||
margin: 0 15px 1em 15px }
|
||||
|
||||
.CHEntry {
|
||||
border-width: 1px 2px 2px 1px; border-style: solid; border-color: #A0A0A0;
|
||||
margin-bottom: 3px;
|
||||
padding: 2px 2ex;
|
||||
font-size: 8pt;
|
||||
background-color: #F4F4F4; color: #606060;
|
||||
}
|
||||
|
||||
.Gecko .CHEntry {
|
||||
-moz-border-radius: 4px;
|
||||
}
|
||||
|
||||
.CHCurrent .CHEntry {
|
||||
font-weight: bold;
|
||||
border-color: #000000;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.CHChildNote .CHEntry {
|
||||
font-style: italic;
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.CHIndent {
|
||||
margin-left: 3ex;
|
||||
}
|
||||
|
||||
.CHEntry a:link,
|
||||
.CHEntry a:visited,
|
||||
.CHEntry a:hover {
|
||||
color: #606060;
|
||||
}
|
||||
.CHEntry a:active {
|
||||
color: #800000;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
body.FramedIndexPage,
|
||||
.IndexSection {
|
||||
background-color: #FFFFFF;
|
||||
font-size: 8pt;
|
||||
padding: 15px }
|
||||
|
||||
.IndexSection {
|
||||
border-width: 0 0 1px 1px; border-style: solid; border-color: #000000 }
|
||||
|
||||
.IPageTitle {
|
||||
font-size: 20pt; font-weight: bold;
|
||||
color: #FFFFFF; background-color: #7070C0;
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-width: 0 0 3px 0; border-color: #000000; border-style: solid;
|
||||
margin: -15px -15px 0 -15px }
|
||||
|
||||
.INavigationBar {
|
||||
text-align: center;
|
||||
background-color: #FFFFF0;
|
||||
padding: 5px;
|
||||
border-bottom: solid 1px black;
|
||||
margin: 0 -15px 15px -15px }
|
||||
|
||||
.INavigationBar a {
|
||||
font-weight: bold }
|
||||
|
||||
.IHeading {
|
||||
font-size: 14pt; font-weight: bold;
|
||||
padding: 2.5em 0 .5em 0;
|
||||
text-align: center;
|
||||
width: 3.5ex;
|
||||
}
|
||||
#IFirstHeading {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.IEntry {
|
||||
padding-left: 1ex; }
|
||||
|
||||
.ISubIndex {
|
||||
padding-left: 3ex; padding-bottom: .5em }
|
||||
|
||||
/* While it may cause some entries to look like links when they aren't, I found it's much easier to read the
|
||||
index if everything's the same color. */
|
||||
.ISymbol {
|
||||
font-weight: bold; color: #900000 }
|
||||
|
||||
.ISymbolPrefix {
|
||||
text-align: right;
|
||||
color: #C47C7C;
|
||||
background-color: #F8F8F8;
|
||||
border-right: 3px solid #E0E0E0;
|
||||
border-left: 1px solid #E0E0E0;
|
||||
padding: 0 1px 0 2px;
|
||||
}
|
||||
#IFirstSymbolPrefix {
|
||||
border-top: 1px solid #E0E0E0;
|
||||
}
|
||||
#ILastSymbolPrefix {
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
}
|
||||
#IOnlySymbolPrefix {
|
||||
border-top: 1px solid #E0E0E0;
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
}
|
||||
|
||||
a.IParent,
|
||||
a.IFile {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.Footer {
|
||||
font-size: 8pt; color: #909090 }
|
||||
|
||||
body.UnframedPage .Footer {
|
||||
text-align: right;
|
||||
margin: 2px }
|
||||
|
||||
body.FramedMenuPage .Footer {
|
||||
text-align: center;
|
||||
margin: 5em 10px 0 10px}
|
||||
|
||||
.Footer a:link,
|
||||
.Footer a:hover,
|
||||
.Footer a:visited { color: #909090 }
|
||||
.Footer a:active { color: #A00000 }
|
43
lib/ann/fann/docs/NaturalDocs-1.52/Help/example/showstyle.html
Executable file
90
lib/ann/fann/docs/NaturalDocs-1.52/Help/examples.css
Executable file
@ -0,0 +1,90 @@
|
||||
@import URL(example/Default.css);
|
||||
|
||||
|
||||
.NDContent {
|
||||
color: #000000; background-color: #FFFFFF;
|
||||
padding: 15px 0;
|
||||
border-style: solid;
|
||||
border-width: 1px 3px 3px 1px;
|
||||
border-color: #c0c0c0 #808080 #808080 #c0c0c0;
|
||||
margin: 1em 5ex;
|
||||
-moz-border-radius: 12px;
|
||||
}
|
||||
|
||||
.NDContent p,
|
||||
.NDContent li,
|
||||
.NDContent td,
|
||||
.NDMenu td,
|
||||
.NDSummary td,
|
||||
.NDIndex td {
|
||||
font-size: 10pt;
|
||||
line-height: normal;
|
||||
}
|
||||
.NDContent .CTopic {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.Prototype td {
|
||||
font: 10pt Courier New, monospace;
|
||||
}
|
||||
.NDIndex .IHeading {
|
||||
font-size: 16pt;
|
||||
}
|
||||
|
||||
|
||||
.NDMenu {
|
||||
font: 9pt Verdana, Arial, sans-serif;
|
||||
color: #000000; background-color: #E8E8E8;
|
||||
width: 27ex;
|
||||
padding: 10px 0;
|
||||
border-style: solid;
|
||||
border-width: 1px 3px 3px 1px;
|
||||
border-color: #808080 #606060 #606060 #808080;
|
||||
margin: 1em 0 1em 5ex;
|
||||
-moz-border-radius: 12px;
|
||||
}
|
||||
|
||||
|
||||
.NDFooter {
|
||||
font: 8pt Verdana, Arial, sans-serif;
|
||||
color: #909090; background-color: #E8E8E8;
|
||||
border-style: solid;
|
||||
border-width: 1px 3px 3px 1px;
|
||||
border-color: #808080 #606060 #606060 #808080;
|
||||
margin: 1em 0 1em 5ex;
|
||||
-moz-border-radius: 12px;
|
||||
}
|
||||
.NDFooter td {
|
||||
font-size: 8pt;
|
||||
padding: 0 2ex;
|
||||
}
|
||||
|
||||
.NDFooter a:link,
|
||||
.NDFooter a:hover,
|
||||
.NDFooter a:visited { color: #909090 }
|
||||
.NDFooter a:active { color: #A00000 }
|
||||
|
||||
|
||||
.NDSummary {
|
||||
padding: 15px;
|
||||
border-style: solid;
|
||||
border-width: 1px 3px 3px 1px;
|
||||
border-color: #c0c0c0 #808080 #808080 #c0c0c0;
|
||||
margin: 1em 5ex;
|
||||
-moz-border-radius: 12px;
|
||||
}
|
||||
|
||||
.NDSummary .Summary {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
|
||||
.NDIndex {
|
||||
color: #000000; background-color: #FFFFFF;
|
||||
padding: 15px;
|
||||
border-style: solid;
|
||||
border-width: 1px 3px 3px 1px;
|
||||
border-color: #c0c0c0 #808080 #808080 #c0c0c0;
|
||||
margin: 1em 5ex;
|
||||
-moz-border-radius: 12px;
|
||||
}
|
||||
|
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/background.png
Executable file
After Width: | Height: | Size: 229 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/leftside.png
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/logo.png
Executable file
After Width: | Height: | Size: 12 KiB |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/overbody.png
Executable file
After Width: | Height: | Size: 283 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/overbodybg.png
Executable file
After Width: | Height: | Size: 141 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/overleftmargin.png
Executable file
After Width: | Height: | Size: 188 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/overmenu.png
Executable file
After Width: | Height: | Size: 244 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/overmenubg.png
Executable file
After Width: | Height: | Size: 141 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/header/rightside.png
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/about.png
Executable file
After Width: | Height: | Size: 397 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/background.png
Executable file
After Width: | Height: | Size: 187 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/bottomleft.png
Executable file
After Width: | Height: | Size: 235 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/bottomright.png
Executable file
After Width: | Height: | Size: 234 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/community.png
Executable file
After Width: | Height: | Size: 507 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/customizing.png
Executable file
After Width: | Height: | Size: 575 B |
BIN
lib/ann/fann/docs/NaturalDocs-1.52/Help/images/menu/using.png
Executable file
After Width: | Height: | Size: 390 B |
9
lib/ann/fann/docs/NaturalDocs-1.52/Help/index.html
Executable file
@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
<html><head><title>Natural Docs</title><link rel=stylesheet type="text/css" href="styles.css"><script language=JavaScript src="javascript/PNGHandling.js"></script><script language=JavaScript src="javascript/BrowserStyles.js"></script></head><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0><script language=JavaScript><!--
|
||||
OpeningBrowserTags();// --></script>
|
||||
|
||||
<!-- saved from url=(0026)http://www.naturaldocs.org -->
|
||||
|
||||
<table width=100% border=0 cellspacing=0 cellpadding=0 class=PageTable float=center><tr><td colspan=3 class=Header><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><img src="images/header/leftside.png" width=30 height=75><a href="."><img src="images/header/logo.png" width=524 height=75 alt="Natural Docs"></a></td><td align=right><img src="images/header/rightside.png" width=30 height=75></td></tr></table></td></tr><tr><td><img src="images/header/overleftmargin.png" width=10 height=6></td><td class=SideMenuTop><img src="images/header/overmenu.png" width=14 height=6></td><td class=BodyTop><img src="images/header/overbody.png" width=24 height=6></td></tr><tr><td></td><td class=SideMenu nowrap><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/about.png" width=52 height=13 alt="About"></div><div class=SideMenuBody><a href="languages.html" class=SideMenuEntry>Language Support</a><a href="output.html" class=SideMenuEntry>Output Formats</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/using.png" width=45 height=13 alt="Using"></div><div class=SideMenuBody><a href="documenting.html" class=SideMenuEntry>Documenting<br>Your Code</a><a href="keywords.html" class=SideMenuEntry>Keywords</a><a href="running.html" class=SideMenuEntry>Running</a><a href="troubleshooting.html" class=SideMenuEntry>Troubleshooting</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/customizing.png" width=96 height=13 alt="Customizing"></div><div class=SideMenuBody><a href="menu.html" class=SideMenuEntry>Organizing the Menu</a><a href="styles.html" class=SideMenuEntry>CSS Styles</a><a href="customizingtopics.html" class=SideMenuEntry>Topics and Keywords</a><a href="customizinglanguages.html" class=SideMenuEntry>Languages, Indexes,<br>and Prototypes</a></div></div><div class=SideMenuSection><div class=SideMenuTitle><img src="images/menu/community.png" width=86 height=13 alt="Community"></div><div class=SideMenuBody><a href="http://www.naturaldocs.org/" class=SideMenuEntry>Web Site</a><a href="http://www.naturaldocs.org/mailinglist.html" class=SideMenuEntry>Mailing Lists</a><a href="http://www.naturaldocs.org/messageboards.html" class=SideMenuEntry>Message Boards</a><a href="http://www.naturaldocs.org/bugs.html" class=SideMenuEntry>Bugs and<br>Feature Requests</a></div></div></td><td class=Body width=100%><div class=PageTitle>Version 1.52</div><div class=Topic><p>This is the Natural Docs help file, a subset of the documentation available at <a href="http://www.naturaldocs.org">the web site</a>. Everything you need is on the menu to the left.</p></div></td></tr><tr><td></td><td class=SideMenuBottom><table width=100% border=0 cellspacing=0 cellpadding=0><tr><td class=SideMenuBottomLeft><img src="images/menu/bottomleft.png" width=18 height=19></td><td class=SideMenuBottomRight><img src="images/menu/bottomright.png" width=18 height=19></td></tr></table></td><td class=BodyBottom>Copyright © 2003-2010 Greg Valure</td></tr></table><script language=JavaScript><!--
|
||||
ClosingBrowserTags();// --></script></body></html>
|
77
lib/ann/fann/docs/NaturalDocs-1.52/Help/javascript/BrowserStyles.js
Executable file
@ -0,0 +1,77 @@
|
||||
|
||||
//
|
||||
// Browser Styles
|
||||
// ____________________________________________________________________________
|
||||
|
||||
var agt=navigator.userAgent.toLowerCase();
|
||||
var browserType;
|
||||
var browserVer;
|
||||
|
||||
if (agt.indexOf("opera") != -1)
|
||||
{
|
||||
browserType = "Opera";
|
||||
|
||||
if (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1)
|
||||
{ browserVer = "Opera5"; }
|
||||
else if (agt.indexOf("opera 6") != -1 || agt.indexOf("opera/6") != -1)
|
||||
{ browserVer = "Opera6"; }
|
||||
else if (agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1)
|
||||
{ browserVer = "Opera7"; }
|
||||
}
|
||||
|
||||
else if (agt.indexOf("khtml") != -1 || agt.indexOf("konq") != -1 || agt.indexOf("safari") != -1)
|
||||
{
|
||||
browserType = "KHTML";
|
||||
}
|
||||
|
||||
else if (agt.indexOf("msie") != -1)
|
||||
{
|
||||
browserType = "IE";
|
||||
|
||||
if (agt.indexOf("msie 4") != -1)
|
||||
{ browserVer = "IE4"; }
|
||||
else if (agt.indexOf("msie 5") != -1)
|
||||
{ browserVer = "IE5"; }
|
||||
else if (agt.indexOf("msie 6") != -1)
|
||||
{ browserVer = "IE6"; }
|
||||
else if (agt.indexOf("msie 7") != -1)
|
||||
{ browserVer = "IE7"; }
|
||||
}
|
||||
|
||||
else if (agt.indexOf("gecko") != -1)
|
||||
{
|
||||
browserType = "Gecko";
|
||||
}
|
||||
|
||||
// Opera already taken care of.
|
||||
else if (agt.indexOf("mozilla") != -1 && agt.indexOf("compatible") == -1 && agt.indexOf("spoofer") == -1 &&
|
||||
agt.indexOf("webtv") == -1 && agt.indexOf("hotjava") == -1)
|
||||
{
|
||||
browserType = "Netscape";
|
||||
|
||||
if (agt.indexOf("mozilla/4") != -1)
|
||||
{ browserVer = "Netscape4"; }
|
||||
}
|
||||
|
||||
|
||||
function OpeningBrowserTags()
|
||||
{
|
||||
if (browserType)
|
||||
{
|
||||
document.write('<div class='+browserType+'>');
|
||||
|
||||
if (browserVer)
|
||||
{ document.write('<div class='+browserVer+'>'); }
|
||||
}
|
||||
};
|
||||
|
||||
function ClosingBrowserTags()
|
||||
{
|
||||
if (browserType)
|
||||
{
|
||||
document.write('</div>');
|
||||
|
||||
if (browserVer)
|
||||
{ document.write('</div>'); }
|
||||
}
|
||||
};
|
72
lib/ann/fann/docs/NaturalDocs-1.52/Help/javascript/PNGHandling.js
Executable file
@ -0,0 +1,72 @@
|
||||
// Parts derived from:
|
||||
// Opacity Displayer, Version 1.0
|
||||
// Copyright Michael Lovitt, 6/2002.
|
||||
// Distribute freely, but please leave this notice intact.
|
||||
// http://www.alistapart.com/articles/pngopacity/
|
||||
|
||||
// Parts derived from:
|
||||
// Natural Docs
|
||||
// Copyright (C) 2003-2004 Greg Valure
|
||||
// http://www.naturaldocs.org/
|
||||
|
||||
|
||||
var pngTransform;
|
||||
var pngNormal;
|
||||
|
||||
var agt=navigator.userAgent.toLowerCase();
|
||||
|
||||
if (agt.indexOf("opera") != -1)
|
||||
{
|
||||
if ( (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1) &&
|
||||
agt.indexOf("mac") != -1)
|
||||
{
|
||||
pngNormal = 1;
|
||||
}
|
||||
else if (agt.indexOf("opera 6") != -1 || agt.indexOf("opera/6") != -1 ||
|
||||
agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1)
|
||||
{
|
||||
pngNormal = 1;
|
||||
}
|
||||
}
|
||||
|
||||
else if (agt.indexOf("msie") != -1)
|
||||
{
|
||||
if (agt.indexOf("msie 5.5") != -1 || agt.indexOf("msie 6") != -1)
|
||||
{
|
||||
if (agt.indexOf("mac") != -1)
|
||||
{ pngNormal = 1; }
|
||||
else if (agt.indexOf("win") != -1)
|
||||
{ pngTransform = 1; };
|
||||
}
|
||||
|
||||
else if (agt.indexOf("msie 5") != -1)
|
||||
{
|
||||
if (agt.indexOf("mac") != -1)
|
||||
{ pngNormal = 1; };
|
||||
}
|
||||
|
||||
else if (agt.indexOf("msie 7") != -1)
|
||||
{ pngNormal = 1; }
|
||||
}
|
||||
|
||||
else if (agt.indexOf("gecko") != -1)
|
||||
{
|
||||
pngNormal = 1;
|
||||
}
|
||||
|
||||
|
||||
function PNGGIF(strPath, intWidth, intHeight, strAlt, strID)
|
||||
{
|
||||
if (pngTransform)
|
||||
{
|
||||
document.write('<div style="height:'+intHeight+'px;width:'+intWidth+'px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+strPath+'.png\', sizingMethod=\'scale\')" id="'+strID+'"></div>');
|
||||
}
|
||||
else if (pngNormal)
|
||||
{
|
||||
document.write('<img src="'+strPath+'.png" width="'+intWidth+'" height="'+intHeight+'" alt="'+strAlt+'" id="'+strID+'"/>');
|
||||
}
|
||||
else
|
||||
{
|
||||
document.write('<img src="'+strPath+'.gif" width="'+intWidth+'" height="'+intHeight+'" alt="'+strAlt+'" id="'+strID+'" />');
|
||||
}
|
||||
};
|