diff
stringlengths
41
2.03M
msg
stringlengths
1
1.5k
repo
stringlengths
5
40
sha
stringlengths
40
40
time
stringlengths
20
20
mmm a / drivers / gles2 / rasterizer_gles2 . cpp <nl> ppp b / drivers / gles2 / rasterizer_gles2 . cpp <nl> AABB RasterizerGLES2 : : mesh_get_aabb ( RID p_mesh , RID p_skeleton ) const { <nl> sk = skeleton_owner . get ( p_skeleton ) ; <nl> <nl> AABB aabb ; <nl> - if ( sk ) { <nl> + if ( sk & & sk - > bones . size ( ) ! = 0 ) { <nl> <nl> <nl> for ( int i = 0 ; i < mesh - > surfaces . size ( ) ; i + + ) { <nl> void RasterizerGLES2 : : _add_geometry ( const Geometry * p_geometry , const InstanceD <nl> oe - > additive_ptr = & oe - > additive ; <nl> } <nl> <nl> - if ( shadow | | m - > flags [ VS : : MATERIAL_FLAG_UNSHADED ] ) { <nl> + if ( shadow | | m - > flags [ VS : : MATERIAL_FLAG_UNSHADED ] | | current_debug = = VS : : SCENARIO_DEBUG_SHADELESS ) { <nl> <nl> e - > light_type = 0x7F ; / / unshaded is zero <nl> } else { <nl> void RasterizerGLES2 : : _render_list_forward ( RenderList * p_render_list , const Trans <nl> <nl> if ( light_type ! = prev_light_type ) { <nl> <nl> - if ( material - > flags [ VS : : MATERIAL_FLAG_UNSHADED ] ) { <nl> + if ( material - > flags [ VS : : MATERIAL_FLAG_UNSHADED ] | | current_debug = = VS : : SCENARIO_DEBUG_SHADELESS ) { <nl> material_shader . set_conditional ( MaterialShaderGLES2 : : LIGHT_TYPE_DIRECTIONAL , false ) ; <nl> material_shader . set_conditional ( MaterialShaderGLES2 : : LIGHT_TYPE_OMNI , false ) ; <nl> material_shader . set_conditional ( MaterialShaderGLES2 : : LIGHT_TYPE_SPOT , false ) ; <nl> mmm a / servers / visual_server . h <nl> ppp b / servers / visual_server . h <nl> class VisualServer : public Object { <nl> SCENARIO_DEBUG_DISABLED , <nl> SCENARIO_DEBUG_WIREFRAME , <nl> SCENARIO_DEBUG_OVERDRAW , <nl> + SCENARIO_DEBUG_SHADELESS , <nl> <nl> } ; <nl> <nl> mmm a / tools / editor / plugins / spatial_editor_plugin . cpp <nl> ppp b / tools / editor / plugins / spatial_editor_plugin . cpp <nl> void SpatialEditor : : _menu_item_pressed ( int p_option ) { <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_NORMAL ) , true ) ; <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_WIREFRAME ) , false ) ; <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_OVERDRAW ) , false ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_SHADELESS ) , false ) ; <nl> <nl> } break ; <nl> case MENU_VIEW_DISPLAY_WIREFRAME : { <nl> void SpatialEditor : : _menu_item_pressed ( int p_option ) { <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_NORMAL ) , false ) ; <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_WIREFRAME ) , true ) ; <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_OVERDRAW ) , false ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_SHADELESS ) , false ) ; <nl> <nl> } break ; <nl> case MENU_VIEW_DISPLAY_OVERDRAW : { <nl> void SpatialEditor : : _menu_item_pressed ( int p_option ) { <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_NORMAL ) , false ) ; <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_WIREFRAME ) , false ) ; <nl> view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_OVERDRAW ) , true ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_SHADELESS ) , false ) ; <nl> + <nl> + } break ; <nl> + case MENU_VIEW_DISPLAY_SHADELESS : { <nl> + <nl> + VisualServer : : get_singleton ( ) - > scenario_set_debug ( get_scene ( ) - > get_root ( ) - > get_world ( ) - > get_scenario ( ) , VisualServer : : SCENARIO_DEBUG_SHADELESS ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_NORMAL ) , false ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_WIREFRAME ) , false ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_OVERDRAW ) , false ) ; <nl> + view_menu - > get_popup ( ) - > set_item_checked ( view_menu - > get_popup ( ) - > get_item_index ( MENU_VIEW_DISPLAY_SHADELESS ) , true ) ; <nl> <nl> } break ; <nl> case MENU_VIEW_ORIGIN : { <nl> SpatialEditor : : SpatialEditor ( EditorNode * p_editor ) { <nl> p - > add_check_item ( " Display Normal " , MENU_VIEW_DISPLAY_NORMAL ) ; <nl> p - > add_check_item ( " Display Wireframe " , MENU_VIEW_DISPLAY_WIREFRAME ) ; <nl> p - > add_check_item ( " Display Overdraw " , MENU_VIEW_DISPLAY_OVERDRAW ) ; <nl> + p - > add_check_item ( " Display Shadeless " , MENU_VIEW_DISPLAY_SHADELESS ) ; <nl> p - > add_separator ( ) ; <nl> p - > add_check_item ( " View Origin " , MENU_VIEW_ORIGIN ) ; <nl> p - > add_check_item ( " View Grid " , MENU_VIEW_GRID ) ; <nl> mmm a / tools / editor / plugins / spatial_editor_plugin . h <nl> ppp b / tools / editor / plugins / spatial_editor_plugin . h <nl> class SpatialEditor : public VBoxContainer { <nl> MENU_VIEW_DISPLAY_NORMAL , <nl> MENU_VIEW_DISPLAY_WIREFRAME , <nl> MENU_VIEW_DISPLAY_OVERDRAW , <nl> + MENU_VIEW_DISPLAY_SHADELESS , <nl> MENU_VIEW_ORIGIN , <nl> MENU_VIEW_GRID , <nl> MENU_VIEW_CAMERA_SETTINGS , <nl>
fix skeleton AABB computation , addeded shadeless view mode
godotengine/godot
7d6b160a444079fd6856b648ed077bf698b3b70c
2014-09-18T03:18:57Z
mmm a / js / apps / system / _admin / aardvark / APP / frontend / js / views / nodesView . js <nl> ppp b / js / apps / system / _admin / aardvark / APP / frontend / js / views / nodesView . js <nl> <nl> knownServers : [ ] , <nl> <nl> events : { <nl> - " click . pure - table - body . pure - table - row " : " navigateToNode " <nl> + " click # nodesContent . pure - table - body . pure - table - row " : " navigateToNode " <nl> } , <nl> <nl> initialize : function ( options ) { <nl>
nodes view bugfix
arangodb/arangodb
40674c3e461aa616889351009dedbceb78e9f7d8
2016-05-24T11:04:51Z
mmm a / PowerEditor / src / Notepad_plus . cpp <nl> ppp b / PowerEditor / src / Notepad_plus . cpp <nl> void Notepad_plus : : notifyBufferChanged ( Buffer * buffer , int mask ) <nl> if ( doReloadOrNot ( buffer - > getFullPathName ( ) , buffer - > isDirty ( ) ) ! = IDYES ) <nl> break ; / / abort <nl> } <nl> - <nl> + / / Set _isLoadedDirty false so when the document clean state is reached the icon will be set to blue <nl> + buffer - > setLoadedDirty ( false ) ; <nl> doReload ( buffer - > getID ( ) , false ) ; <nl> if ( mainActive | | subActive ) <nl> { <nl>
[ BUG_FIXED ] Fix reloaded file on dirty status issue .
notepad-plus-plus/notepad-plus-plus
1ebef477cc8f5f66357cb427419958efa0e8ffb8
2014-12-15T23:13:01Z
mmm a / db / db_test . cc <nl> ppp b / db / db_test . cc <nl> TEST ( DBTest , ThreadStatusMultipleCompaction ) { <nl> ThreadStatus : : OP_COMPACTION , 0 ) ; <nl> } <nl> <nl> - <nl> - <nl> # endif / / ROCKSDB_USING_THREAD_STATUS <nl> <nl> TEST ( DBTest , DynamicCompactionOptions ) { <nl>
Remove two unnecessary blank lines in db / db_test . cc
facebook/rocksdb
2159484dd6a3af5de3fa05e358aacc4f8f378e6a
2015-01-13T09:40:11Z
mmm a / tensorflow / contrib / tensorrt / kernels / trt_engine_op . cc <nl> ppp b / tensorflow / contrib / tensorrt / kernels / trt_engine_op . cc <nl> void TRTEngineOp : : ComputeAsync ( OpKernelContext * ctx , <nl> const bool retry = ExecuteTrtEngine ( ctx , num_batch , trt_engine_ptr . get ( ) , <nl> engine_ctx_pair . second . get ( ) ) ; <nl> if ( retry ) { <nl> + LOG ( WARNING ) < < " Failed to execute engine , retrying with native segment " ; <nl> ExecuteNativeSegment ( ctx , helper ) ; <nl> return ; <nl> } <nl> bool TRTEngineOp : : ExecuteTrtEngine ( <nl> const size_t binding_index = <nl> trt_engine_ptr - > getBindingIndex ( input_name . c_str ( ) ) ; <nl> if ( binding_index = = - 1 ) { <nl> - LOG ( WARNING ) < < " Iutput node not found , at " < < input_name ; <nl> + LOG ( ERROR ) < < " Input node not found , at " < < input_name ; <nl> return kRetry ; <nl> } <nl> <nl> const Tensor & input_tensor = ctx - > input ( i ) ; <nl> const TensorShape & input_shape = input_tensor . shape ( ) ; <nl> if ( num_batch ! = input_shape . dim_size ( 0 ) ) { <nl> - LOG ( WARNING ) < < " Input data has inconsistent batch size : " < < num_batch <nl> - < < " vs " < < input_shape . dim_size ( 0 ) ; <nl> + LOG ( ERROR ) < < " Input data has inconsistent batch size : " < < num_batch <nl> + < < " vs " < < input_shape . dim_size ( 0 ) ; <nl> return kRetry ; <nl> } <nl> auto dtype = trt_engine_ptr - > getBindingDataType ( binding_index ) ; <nl> bool TRTEngineOp : : ExecuteTrtEngine ( <nl> buffers [ binding_index ] = ( void * ) ( input_tensor . flat < float > ( ) . data ( ) ) ; <nl> break ; <nl> case nvinfer1 : : DataType : : kHALF : <nl> - LOG ( WARNING ) < < " FP16 inputs are not supported yet ! " ; <nl> + LOG ( ERROR ) < < " FP16 inputs are not supported yet ! " ; <nl> return kRetry ; <nl> case nvinfer1 : : DataType : : kINT8 : <nl> - LOG ( WARNING ) < < " INT8 inputs are not supported yet ! " ; <nl> + LOG ( ERROR ) < < " INT8 inputs are not supported yet ! " ; <nl> return kRetry ; <nl> # if NV_TENSORRT_MAJOR > 3 <nl> case nvinfer1 : : DataType : : kINT32 : <nl> bool TRTEngineOp : : ExecuteTrtEngine ( <nl> break ; <nl> # endif <nl> default : <nl> - LOG ( WARNING ) < < " Unknown TRT data type : " < < int ( dtype ) ; <nl> + LOG ( ERROR ) < < " Unknown TRT data type : " < < int ( dtype ) ; <nl> return kRetry ; <nl> } <nl> } <nl> bool TRTEngineOp : : ExecuteTrtEngine ( <nl> auto status = TensorShapeUtils : : MakeShape ( <nl> trt_shape . data ( ) , trt_shape . size ( ) , & output_shape ) ; <nl> if ( ! status . ok ( ) ) { <nl> - LOG ( WARNING ) < < " Failed to get output shape : " < < status ; <nl> + LOG ( ERROR ) < < " Failed to get output shape : " < < status ; <nl> return kRetry ; <nl> } <nl> } else { <nl> - LOG ( WARNING ) < < " Output node not found , at " < < output_name ; <nl> + LOG ( ERROR ) < < " Output node not found , at " < < output_name ; <nl> return kRetry ; <nl> } <nl> auto status = ctx - > allocate_output ( i , output_shape , & output_tensor ) ; <nl> if ( ! status . ok ( ) ) { <nl> - LOG ( WARNING ) < < " Allocating output failed with " < < status ; <nl> + LOG ( ERROR ) < < " Allocating output failed with " < < status ; <nl> ctx - > SetStatus ( status ) ; <nl> / / Do not retry since we cannot allocate the same output twice . <nl> / / TODO ( aaroey ) : ideally we should retry , fix this . <nl> TRTEngineOp : : EngineCtxPair & TRTEngineOp : : GetEngine ( int batch_size , <nl> TrtUniquePtrType < IRuntime > infer ( nvinfer1 : : createInferRuntime ( logger ) ) ; <nl> # if NV_TENSORRT_MAJOR > 3 <nl> auto allocator = GetAllocator ( ctx ) ; <nl> - if ( allocator = = nullptr ) return null_pair ; <nl> + if ( allocator = = nullptr ) { <nl> + return null_pair ; <nl> + } <nl> infer - > setGpuAllocator ( allocator ) ; <nl> # endif <nl> TrtUniquePtrType < nvinfer1 : : ICudaEngine > static_engine ( <nl> TRTEngineOp : : EngineCtxPair & TRTEngineOp : : GetEngine ( int batch_size , <nl> raw_static_engine - > createExecutionContext ( ) ) } ; <nl> / / Runtime is safe to delete after engine creation <nl> serialized_segment_ . clear ( ) ; <nl> - if ( max_batch_size < batch_size ) return null_pair ; <nl> + if ( max_batch_size < batch_size ) { <nl> + return null_pair ; <nl> + } <nl> return engine_map_ . at ( max_batch_size ) ; <nl> } / / static_engine_ <nl> <nl> TRTEngineOp : : EngineCtxPair & TRTEngineOp : : GetEngine ( int batch_size , <nl> nvinfer1 : : IGpuAllocator * allocator = nullptr ; <nl> # if NV_TENSORRT_MAJOR > 3 <nl> allocator = GetAllocator ( ctx ) ; <nl> - if ( allocator = = nullptr ) return null_pair ; <nl> + if ( allocator = = nullptr ) { <nl> + return null_pair ; <nl> + } <nl> # endif <nl> std : : vector < tensorflow : : PartialTensorShape > shapes ; <nl> for ( int i = 0 ; i < ctx - > num_inputs ( ) ; + + i ) { <nl>
Fix review comments
tensorflow/tensorflow
6de72a32056c68da3736e232ff3ba3fec390d81b
2018-07-24T22:22:50Z
mmm a / hphp / hack / src / server / identifySymbolService . ml <nl> ppp b / hphp / hack / src / server / identifySymbolService . ml <nl> let visitor = object ( self ) <nl> let ognfa = self # on_og_null_flavor env ognf in <nl> self # plus obja ognfa <nl> | _ - > super # on_Obj_get env obj member ognf <nl> + <nl> + method ! on_SFclass_const env cid mid = <nl> + let ( + ) = Result_set . union in <nl> + process_class_id cid + <nl> + process_member ( snd cid ) mid ~ is_method : false ~ is_const : true + <nl> + super # on_SFclass_const env cid mid <nl> end <nl> <nl> let all_symbols tast = <nl> new file mode 100644 <nl> index 00000000000 . . 677154a8cd4 <nl> mmm / dev / null <nl> ppp b / hphp / hack / test / find_refs / shape_key . flags <nl> @ @ - 0 , 0 + 1 @ @ <nl> + 3 6 <nl> new file mode 100644 <nl> index 00000000000 . . 1d8b3439ff9 <nl> mmm / dev / null <nl> ppp b / hphp / hack / test / find_refs / shape_key . php <nl> <nl> + < ? hh <nl> + <nl> + enum ShapeKey : string as string { <nl> + A = ' a ' ; <nl> + } <nl> + <nl> + type Foo = shape ( <nl> + ShapeKey : : A = > string , / / Find ref <nl> + ) ; <nl> + <nl> + function test_shape_key ( ) : void { <nl> + shape ( ShapeKey : : A = > ' 123 ' ) ; / / Find ref <nl> + } <nl> new file mode 100644 <nl> index 00000000000 . . 100a1a8f930 <nl> mmm / dev / null <nl> ppp b / hphp / hack / test / find_refs / shape_key . php . exp <nl> <nl> + ShapeKey <nl> + File " shape_key . php " , line 8 , characters 3 - 10 : <nl> + File " shape_key . php " , line 12 , characters 9 - 16 : <nl> + File " shape_key . php " , line 3 , characters 6 - 13 : <nl> + 3 total results <nl> mmm a / hphp / hack / test / integration / data / lsp_exchanges / references . expected <nl> ppp b / hphp / hack / test / integration / data / lsp_exchanges / references . expected <nl> <nl> } <nl> } <nl> } , <nl> + { <nl> + " uri " : " file : / / $ { root_path } $ { path_sep } references . php " , <nl> + " range " : { <nl> + " start " : { <nl> + " line " : 46 , <nl> + " character " : 17 <nl> + } , <nl> + " end " : { <nl> + " line " : 46 , <nl> + " character " : 28 <nl> + } <nl> + } <nl> + } , <nl> { <nl> " uri " : " file : / / $ { root_path } $ { path_sep } references . php " , <nl> " range " : { <nl> mmm a / hphp / hack / test / integration / data / lsp_exchanges / references . php <nl> ppp b / hphp / hack / test / integration / data / lsp_exchanges / references . php <nl> function ref_test_2 ( int $ x ) : void { / / Should match <nl> $ lambda4 = function ( $ b ) use ( $ x ) { / / Should match <nl> return $ x + $ b ; } ; / / Should match <nl> $ size = RefTestEnum : : SMALL ; <nl> + $ shape = shape ( RefTestEnum : : SMALL = > 123 ) ; <nl> } <nl> mmm a / hphp / hack / test / integration / data / lsp_exchanges / rename . expected <nl> ppp b / hphp / hack / test / integration / data / lsp_exchanges / rename . expected <nl> <nl> " end " : { <nl> " line " : 2 , <nl> " character " : 15 <nl> + } <nl> + } , <nl> + " newText " : " HistoryClass " <nl> + } , <nl> + { <nl> + " range " : { <nl> + " start " : { <nl> + " line " : 88 , <nl> + " character " : 8 <nl> + } , <nl> + " end " : { <nl> + " line " : 88 , <nl> + " character " : 17 <nl> + } <nl> + } , <nl> + " newText " : " HistoryClass " <nl> + } , <nl> + { <nl> + " range " : { <nl> + " start " : { <nl> + " line " : 84 , <nl> + " character " : 8 <nl> + } , <nl> + " end " : { <nl> + " line " : 84 , <nl> + " character " : 17 <nl> } <nl> } , <nl> " newText " : " HistoryClass " <nl> <nl> { <nl> " range " : { <nl> " start " : { <nl> + " line " : 88 , <nl> + " character " : 19 <nl> + } , <nl> + " end " : { <nl> + " line " : 88 , <nl> + " character " : 31 <nl> + } <nl> + } , <nl> + " newText " : " ANOTHER_STR_CONSTANT " <nl> + } , <nl> + { <nl> + " range " : { <nl> + " start " : { <nl> + " line " : 84 , <nl> + " character " : 19 <nl> + } , <nl> + " end " : { <nl> + " line " : 84 , <nl> + " character " : 31 <nl> + } <nl> + } , <nl> + " newText " : " ANOTHER_STR_CONSTANT " <nl> + } , <nl> + { <nl> + " range " : { <nl> + " start " : { <nl> " line " : 53 , <nl> " character " : 26 <nl> } , <nl> <nl> { <nl> " range " : { <nl> " start " : { <nl> + " line " : 87 , <nl> + " character " : 8 <nl> + } , <nl> + " end " : { <nl> + " line " : 87 , <nl> + " character " : 22 <nl> + } <nl> + } , <nl> + " newText " : " TSHIRT_SIZES " <nl> + } , <nl> + { <nl> + " range " : { <nl> + " start " : { <nl> + " line " : 81 , <nl> + " character " : 8 <nl> + } , <nl> + " end " : { <nl> + " line " : 81 , <nl> + " character " : 22 <nl> + } <nl> + } , <nl> + " newText " : " TSHIRT_SIZES " <nl> + } , <nl> + { <nl> + " range " : { <nl> + " start " : { <nl> " line " : 57 , <nl> " character " : 10 <nl> } , <nl> mmm a / hphp / hack / test / integration / data / lsp_exchanges / rename . php <nl> ppp b / hphp / hack / test / integration / data / lsp_exchanges / rename . php <nl> function test_rename_localvar ( int $ local ) : void { / / Should match <nl> $ lambda4 = function ( $ b ) use ( $ local ) { / / Should match <nl> return $ local + $ b ; } ; / / Should match <nl> } <nl> + <nl> + type RenameShapeKeyEnum = <nl> + shape ( RenameTestEnum : : SMALL = > int ) ; / / 4 . Rename STR_CONSTANT <nl> + <nl> + type RenameShapeKeyConstant = <nl> + shape ( TestClass : : STR_CONSTANT = > int ) ; / / 4 . Rename STR_CONSTANT <nl> + <nl> + function test_rename_shape_keys ( ) : void { <nl> + shape ( RenameTestEnum : : SMALL = > 123 ) ; / / 4 . Rename STR_CONSTANT <nl> + shape ( TestClass : : STR_CONSTANT = > 123 ) ; / / 13 . Rename TestEnum <nl> + } <nl>
find class references in shape keys
facebook/hhvm
df20ecdff834743b118cb95fe1f7e309871a587f
2018-10-20T08:26:49Z
mmm a / protoc - artifacts / Dockerfile <nl> ppp b / protoc - artifacts / Dockerfile <nl> <nl> - FROM centos : 6 . 6 <nl> + FROM centos : 6 . 9 <nl> <nl> RUN yum install - y git \ <nl> tar \ <nl>
protoc - artifacts : Update centos base from 6 . 6 to 6 . 9
protocolbuffers/protobuf
11e2eca43e020c18ec4e168f8287d916056bd571
2018-07-17T23:52:49Z
mmm a / hphp / runtime / vm / jit / abi - x64 . h <nl> ppp b / hphp / runtime / vm / jit / abi - x64 . h <nl> constexpr PhysReg kSvcReqArgRegs [ ] = { <nl> # define GENDATAOFF ( nm ) int ( offsetof ( Generator , nm ) ) <nl> <nl> UNUSED const Abi abi { <nl> - . gpUnreserved = kGPUnreserved , <nl> - . gpReserved = kGPReserved , <nl> - . simdUnreserved = kXMMUnreserved , <nl> - . simdReserved = kXMMReserved , <nl> - . calleeSaved = kCalleeSaved , <nl> - . sf = kSF , <nl> - . canSpill = true , <nl> + kGPUnreserved , <nl> + kGPReserved , <nl> + kXMMUnreserved , <nl> + kXMMReserved , <nl> + kCalleeSaved , <nl> + kSF , <nl> + true , <nl> } ; <nl> <nl> UNUSED const Abi cross_trace_abi { <nl> - . gpUnreserved = abi . gp ( ) & kScratchCrossTraceRegs , <nl> - . gpReserved = abi . gp ( ) - kScratchCrossTraceRegs , <nl> - . simdUnreserved = abi . simd ( ) & kScratchCrossTraceRegs , <nl> - . simdReserved = abi . simd ( ) - kScratchCrossTraceRegs , <nl> - . calleeSaved = abi . calleeSaved & kScratchCrossTraceRegs , <nl> - . sf = abi . sf , <nl> - . canSpill = false <nl> + abi . gp ( ) & kScratchCrossTraceRegs , <nl> + abi . gp ( ) - kScratchCrossTraceRegs , <nl> + abi . simd ( ) & kScratchCrossTraceRegs , <nl> + abi . simd ( ) - kScratchCrossTraceRegs , <nl> + abi . calleeSaved & kScratchCrossTraceRegs , <nl> + abi . sf , <nl> + false <nl> } ; <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / hphp / runtime / vm / jit / vasm - gen . cpp <nl> ppp b / hphp / runtime / vm / jit / vasm - gen . cpp <nl> auto const vauto_gp = x64 : : rAsm | reg : : r11 ; <nl> auto const vauto_simd = reg : : xmm5 | reg : : xmm6 | reg : : xmm7 ; <nl> <nl> const Abi vauto_abi { <nl> - . gpUnreserved = vauto_gp , <nl> - . gpReserved = x64 : : abi . gp ( ) - vauto_gp , <nl> - . simdUnreserved = vauto_simd , <nl> - . simdReserved = x64 : : abi . simd ( ) - vauto_simd , <nl> - . calleeSaved = x64 : : abi . calleeSaved , <nl> - . sf = x64 : : abi . sf <nl> + vauto_gp , <nl> + x64 : : abi . gp ( ) - vauto_gp , <nl> + vauto_simd , <nl> + x64 : : abi . simd ( ) - vauto_simd , <nl> + x64 : : abi . calleeSaved , <nl> + x64 : : abi . sf <nl> } ; <nl> <nl> Vauto : : ~ Vauto ( ) { <nl>
Don ' t use C99 named struct initializers to initialize the ABIs
facebook/hhvm
a84eda43a3cd7f28ff5dce26f13b316e6d9c4e7b
2015-08-03T21:02:51Z
mmm a / src / mongo / client / async_client . cpp <nl> ppp b / src / mongo / client / async_client . cpp <nl> <nl> <nl> namespace mongo { <nl> <nl> - Future < AsyncDBClient : : Handle > AsyncDBClient : : connect ( const HostAndPort & peer , <nl> - transport : : ConnectSSLMode sslMode , <nl> - ServiceContext * const context , <nl> - transport : : ReactorHandle reactor , <nl> - Milliseconds timeout ) { <nl> + Future < AsyncDBClient : : Handle > AsyncDBClient : : connect ( <nl> + const HostAndPort & peer , <nl> + transport : : ConnectSSLMode sslMode , <nl> + ServiceContext * const context , <nl> + transport : : ReactorHandle reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < transport : : SSLConnectionContext > sslContextOverride ) { <nl> auto tl = context - > getTransportLayer ( ) ; <nl> - return tl - > asyncConnect ( peer , sslMode , std : : move ( reactor ) , timeout ) <nl> + return tl - > asyncConnect ( peer , sslMode , std : : move ( reactor ) , timeout , sslContextOverride ) <nl> . then ( [ peer , context ] ( transport : : SessionHandle session ) { <nl> return std : : make_shared < AsyncDBClient > ( peer , std : : move ( session ) , context ) ; <nl> } ) ; <nl> mmm a / src / mongo / client / async_client . h <nl> ppp b / src / mongo / client / async_client . h <nl> <nl> # include " mongo / rpc / unique_message . h " <nl> # include " mongo / transport / baton . h " <nl> # include " mongo / transport / message_compressor_manager . h " <nl> + # include " mongo / transport / ssl_connection_context . h " <nl> # include " mongo / transport / transport_layer . h " <nl> # include " mongo / util / future . h " <nl> <nl> class AsyncDBClient : public std : : enable_shared_from_this < AsyncDBClient > { <nl> <nl> using Handle = std : : shared_ptr < AsyncDBClient > ; <nl> <nl> - static Future < Handle > connect ( const HostAndPort & peer , <nl> - transport : : ConnectSSLMode sslMode , <nl> - ServiceContext * const context , <nl> - transport : : ReactorHandle reactor , <nl> - Milliseconds timeout ) ; <nl> + static Future < Handle > connect ( <nl> + const HostAndPort & peer , <nl> + transport : : ConnectSSLMode sslMode , <nl> + ServiceContext * const context , <nl> + transport : : ReactorHandle reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < transport : : SSLConnectionContext > sslContextOverride = nullptr ) ; <nl> <nl> Future < executor : : RemoteCommandResponse > runCommandRequest ( <nl> executor : : RemoteCommandRequest request , const BatonHandle & baton = nullptr ) ; <nl> mmm a / src / mongo / executor / connection_pool_tl . cpp <nl> ppp b / src / mongo / executor / connection_pool_tl . cpp <nl> void TLConnection : : setup ( Milliseconds timeout , SetupCallback cb ) { <nl> <nl> auto isMasterHook = std : : make_shared < TLConnectionSetupHook > ( _onConnectHook ) ; <nl> <nl> - AsyncDBClient : : connect ( _peer , _sslMode , _serviceContext , _reactor , timeout ) <nl> + AsyncDBClient : : connect ( _peer , _sslMode , _serviceContext , _reactor , timeout , _sslContextOverride ) <nl> . thenRunOn ( _reactor ) <nl> . onError ( [ ] ( StatusWith < AsyncDBClient : : Handle > swc ) - > StatusWith < AsyncDBClient : : Handle > { <nl> return Status ( ErrorCodes : : HostUnreachable , swc . getStatus ( ) . reason ( ) ) ; <nl> mmm a / src / mongo / executor / connection_pool_tl . h <nl> ppp b / src / mongo / executor / connection_pool_tl . h <nl> <nl> # include " mongo / executor / connection_pool . h " <nl> # include " mongo / executor / network_connection_hook . h " <nl> # include " mongo / executor / network_interface . h " <nl> + # include " mongo / transport / ssl_connection_context . h " <nl> # include " mongo / util / future . h " <nl> # include " mongo / util / hierarchical_acquisition . h " <nl> <nl> class TLConnection final : public ConnectionPool : : ConnectionInterface , public TL <nl> transport : : ConnectSSLMode sslMode , <nl> size_t generation , <nl> NetworkConnectionHook * onConnectHook , <nl> - bool skipAuth ) <nl> + bool skipAuth , <nl> + std : : shared_ptr < transport : : SSLConnectionContext > sslContextOverride = nullptr ) <nl> : ConnectionInterface ( generation ) , <nl> TLTypeFactory : : Type ( factory ) , <nl> _reactor ( reactor ) , <nl> class TLConnection final : public ConnectionPool : : ConnectionInterface , public TL <nl> _skipAuth ( skipAuth ) , <nl> _peer ( std : : move ( peer ) ) , <nl> _sslMode ( sslMode ) , <nl> - _onConnectHook ( onConnectHook ) { } <nl> + _onConnectHook ( onConnectHook ) , <nl> + _sslContextOverride ( sslContextOverride ) { } <nl> ~ TLConnection ( ) { <nl> / / Release must be the first expression of this dtor <nl> release ( ) ; <nl> class TLConnection final : public ConnectionPool : : ConnectionInterface , public TL <nl> HostAndPort _peer ; <nl> transport : : ConnectSSLMode _sslMode ; <nl> NetworkConnectionHook * const _onConnectHook ; <nl> + std : : shared_ptr < transport : : SSLConnectionContext > _sslContextOverride ; <nl> AsyncDBClient : : Handle _client ; <nl> } ; <nl> <nl> mmm a / src / mongo / transport / session_asio . h <nl> ppp b / src / mongo / transport / session_asio . h <nl> <nl> # include " mongo / db / stats / counters . h " <nl> # include " mongo / transport / asio_utils . h " <nl> # include " mongo / transport / baton . h " <nl> + # include " mongo / transport / ssl_connection_context . h " <nl> # include " mongo / transport / transport_layer_asio . h " <nl> # include " mongo / util / fail_point . h " <nl> # include " mongo / util / net / socket_utils . h " <nl> class TransportLayerASIO : : ASIOSession final : public Session { <nl> ASIOSession ( TransportLayerASIO * tl , <nl> GenericSocket socket , <nl> bool isIngressSession , <nl> - Endpoint endpoint = Endpoint ( ) ) try : _socket ( std : : move ( socket ) ) , <nl> - _tl ( tl ) , <nl> - _isIngressSession ( isIngressSession ) { <nl> + Endpoint endpoint = Endpoint ( ) , <nl> + std : : shared_ptr < SSLConnectionContext > overrideSSLContext = nullptr ) try <nl> + : _socket ( std : : move ( socket ) ) , <nl> + _tl ( tl ) , <nl> + _isIngressSession ( isIngressSession ) { <nl> auto family = endpointToSockAddr ( _socket . local_endpoint ( ) ) . getType ( ) ; <nl> if ( family = = AF_INET | | family = = AF_INET6 ) { <nl> _socket . set_option ( asio : : ip : : tcp : : no_delay ( true ) ) ; <nl> class TransportLayerASIO : : ASIOSession final : public Session { <nl> _local = HostAndPort ( _localAddr . toString ( true ) ) ; <nl> _remote = HostAndPort ( _remoteAddr . toString ( true ) ) ; <nl> # ifdef MONGO_CONFIG_SSL <nl> - _sslContext = * tl - > _sslContext ; <nl> + _sslContext = overrideSSLContext ? overrideSSLContext : * tl - > _sslContext ; <nl> # endif <nl> } catch ( const DBException & ) { <nl> throw ; <nl> class TransportLayerASIO : : ASIOSession final : public Session { <nl> # ifdef MONGO_CONFIG_SSL <nl> boost : : optional < asio : : ssl : : stream < decltype ( _socket ) > > _sslSocket ; <nl> bool _ranHandshake = false ; <nl> - std : : shared_ptr < TransportLayerASIO : : SSLConnectionContext > _sslContext ; <nl> + std : : shared_ptr < SSLConnectionContext > _sslContext ; <nl> # endif <nl> <nl> TransportLayerASIO * const _tl ; <nl> new file mode 100644 <nl> index 000000000000 . . 2de1f98c6479 <nl> mmm / dev / null <nl> ppp b / src / mongo / transport / ssl_connection_context . h <nl> <nl> + / * * <nl> + * Copyright ( C ) 2020 - present MongoDB , Inc . <nl> + * <nl> + * This program is free software : you can redistribute it and / or modify <nl> + * it under the terms of the Server Side Public License , version 1 , <nl> + * as published by MongoDB , Inc . <nl> + * <nl> + * This program is distributed in the hope that it will be useful , <nl> + * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> + * Server Side Public License for more details . <nl> + * <nl> + * You should have received a copy of the Server Side Public License <nl> + * along with this program . If not , see <nl> + * < http : / / www . mongodb . com / licensing / server - side - public - license > . <nl> + * <nl> + * As a special exception , the copyright holders give permission to link the <nl> + * code of portions of this program with the OpenSSL library under certain <nl> + * conditions as described in each individual source file and distribute <nl> + * linked combinations including the program with the OpenSSL library . You <nl> + * must comply with the Server Side Public License in all respects for <nl> + * all of the code used other than as permitted herein . If you modify file ( s ) <nl> + * with this exception , you may extend this exception to your version of the <nl> + * file ( s ) , but you are not obligated to do so . If you do not wish to do so , <nl> + * delete this exception statement from your version . If you delete this <nl> + * exception statement from all source files in the program , then also delete <nl> + * it in the license file . <nl> + * / <nl> + <nl> + # pragma once <nl> + <nl> + # include < memory > <nl> + <nl> + # include " mongo / config . h " <nl> + # include " mongo / util / net / ssl_options . h " <nl> + # include " mongo / util / net / ssl_types . h " <nl> + <nl> + namespace asio { <nl> + <nl> + namespace ssl { <nl> + class context ; <nl> + } / / namespace ssl <nl> + } / / namespace asio <nl> + <nl> + namespace mongo { <nl> + <nl> + class SSLManagerInterface ; <nl> + <nl> + namespace transport { <nl> + <nl> + # ifdef MONGO_CONFIG_SSL <nl> + struct SSLConnectionContext { <nl> + std : : unique_ptr < asio : : ssl : : context > ingress ; <nl> + std : : unique_ptr < asio : : ssl : : context > egress ; <nl> + std : : shared_ptr < SSLManagerInterface > manager ; <nl> + } ; <nl> + # endif <nl> + <nl> + # ifndef MONGO_CONFIG_SSL <nl> + struct SSLConnectionContext { } ; <nl> + # endif <nl> + <nl> + } / / namespace transport <nl> + } / / namespace mongo <nl> mmm a / src / mongo / transport / transport_layer . h <nl> ppp b / src / mongo / transport / transport_layer . h <nl> <nl> # include " mongo / db / operation_context . h " <nl> # include " mongo / db / wire_version . h " <nl> # include " mongo / transport / session . h " <nl> + # include " mongo / transport / ssl_connection_context . h " <nl> # include " mongo / util / functional . h " <nl> # include " mongo / util / future . h " <nl> # include " mongo / util / out_of_line_executor . h " <nl> class TransportLayer { <nl> ConnectSSLMode sslMode , <nl> Milliseconds timeout ) = 0 ; <nl> <nl> - virtual Future < SessionHandle > asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) = 0 ; <nl> + virtual Future < SessionHandle > asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride ) = 0 ; <nl> <nl> / * * <nl> * Start the TransportLayer . After this point , the TransportLayer will begin accepting active <nl> mmm a / src / mongo / transport / transport_layer_asio . cpp <nl> ppp b / src / mongo / transport / transport_layer_asio . cpp <nl> StatusWith < TransportLayerASIO : : ASIOSessionHandle > TransportLayerASIO : : _doSyncCon <nl> } <nl> } <nl> <nl> - Future < SessionHandle > TransportLayerASIO : : asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) { <nl> + Future < SessionHandle > TransportLayerASIO : : asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride ) { <nl> <nl> struct AsyncConnectState { <nl> AsyncConnectState ( HostAndPort peer , <nl> Future < SessionHandle > TransportLayerASIO : : asyncConnect ( HostAndPort peer , <nl> # endif <nl> return connector - > socket . async_connect ( * connector - > resolvedEndpoint , UseFuture { } ) ; <nl> } ) <nl> - . then ( [ this , connector , sslMode ] ( ) - > Future < void > { <nl> + . then ( [ this , connector , sslMode , sslContextOverride ] ( ) - > Future < void > { <nl> stdx : : unique_lock < Latch > lk ( connector - > mutex ) ; <nl> - connector - > session = std : : make_shared < ASIOSession > ( <nl> - this , std : : move ( connector - > socket ) , false , * connector - > resolvedEndpoint ) ; <nl> + connector - > session = std : : make_shared < ASIOSession > ( this , <nl> + std : : move ( connector - > socket ) , <nl> + false , <nl> + * connector - > resolvedEndpoint , <nl> + sslContextOverride ) ; <nl> connector - > session - > ensureAsync ( ) ; <nl> <nl> # ifndef MONGO_CONFIG_SSL <nl> mmm a / src / mongo / transport / transport_layer_asio . h <nl> ppp b / src / mongo / transport / transport_layer_asio . h <nl> class TransportLayerASIO final : public TransportLayer { <nl> ConnectSSLMode sslMode , <nl> Milliseconds timeout ) final ; <nl> <nl> - Future < SessionHandle > asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) final ; <nl> + Future < SessionHandle > asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride = nullptr ) final ; <nl> <nl> Status setup ( ) final ; <nl> <nl> class TransportLayerASIO final : public TransportLayer { <nl> std : : shared_ptr < ASIOReactor > _acceptorReactor ; <nl> <nl> # ifdef MONGO_CONFIG_SSL <nl> - struct SSLConnectionContext { <nl> - std : : unique_ptr < asio : : ssl : : context > ingress ; <nl> - std : : unique_ptr < asio : : ssl : : context > egress ; <nl> - std : : shared_ptr < SSLManagerInterface > manager ; <nl> - } ; <nl> synchronized_value < std : : shared_ptr < SSLConnectionContext > > _sslContext ; <nl> # endif <nl> <nl> mmm a / src / mongo / transport / transport_layer_manager . cpp <nl> ppp b / src / mongo / transport / transport_layer_manager . cpp <nl> StatusWith < SessionHandle > TransportLayerManager : : connect ( HostAndPort peer , <nl> return _tls . front ( ) - > connect ( peer , sslMode , timeout ) ; <nl> } <nl> <nl> - Future < SessionHandle > TransportLayerManager : : asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) { <nl> - return _tls . front ( ) - > asyncConnect ( peer , sslMode , reactor , timeout ) ; <nl> + Future < SessionHandle > TransportLayerManager : : asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride ) { <nl> + return _tls . front ( ) - > asyncConnect ( peer , sslMode , reactor , timeout , sslContextOverride ) ; <nl> } <nl> <nl> ReactorHandle TransportLayerManager : : getReactor ( WhichReactor which ) { <nl> mmm a / src / mongo / transport / transport_layer_manager . h <nl> ppp b / src / mongo / transport / transport_layer_manager . h <nl> class TransportLayerManager final : public TransportLayer { <nl> StatusWith < SessionHandle > connect ( HostAndPort peer , <nl> ConnectSSLMode sslMode , <nl> Milliseconds timeout ) override ; <nl> - Future < SessionHandle > asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) override ; <nl> + Future < SessionHandle > asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride = nullptr ) override ; <nl> <nl> Status start ( ) override ; <nl> void shutdown ( ) override ; <nl> mmm a / src / mongo / transport / transport_layer_mock . cpp <nl> ppp b / src / mongo / transport / transport_layer_mock . cpp <nl> StatusWith < SessionHandle > TransportLayerMock : : connect ( HostAndPort peer , <nl> MONGO_UNREACHABLE ; <nl> } <nl> <nl> - Future < SessionHandle > TransportLayerMock : : asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) { <nl> + Future < SessionHandle > TransportLayerMock : : asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride ) { <nl> MONGO_UNREACHABLE ; <nl> } <nl> <nl> mmm a / src / mongo / transport / transport_layer_mock . h <nl> ppp b / src / mongo / transport / transport_layer_mock . h <nl> class TransportLayerMock : public TransportLayer { <nl> StatusWith < SessionHandle > connect ( HostAndPort peer , <nl> ConnectSSLMode sslMode , <nl> Milliseconds timeout ) override ; <nl> - Future < SessionHandle > asyncConnect ( HostAndPort peer , <nl> - ConnectSSLMode sslMode , <nl> - const ReactorHandle & reactor , <nl> - Milliseconds timeout ) override ; <nl> + Future < SessionHandle > asyncConnect ( <nl> + HostAndPort peer , <nl> + ConnectSSLMode sslMode , <nl> + const ReactorHandle & reactor , <nl> + Milliseconds timeout , <nl> + std : : shared_ptr < SSLConnectionContext > sslContextOverride = nullptr ) override ; <nl> <nl> Status setup ( ) override ; <nl> Status start ( ) override ; <nl>
SERVER - 51831 Thread SSLConnectionContext from TLConnection ' s constructor down to ASIOSession
mongodb/mongo
d86911e39b4c89a12777b3238fc3c455d6f5ed9f
2020-10-26T03:04:03Z
mmm a / cmake / OpenCVPackaging . cmake <nl> ppp b / cmake / OpenCVPackaging . cmake <nl> set ( CPACK_DEBIAN_PACKAGE_PRIORITY " optional " ) <nl> set ( CPACK_DEBIAN_PACKAGE_SECTION " libs " ) <nl> set ( CPACK_DEBIAN_PACKAGE_HOMEPAGE " http : / / opencv . org " ) <nl> <nl> + # display names <nl> + set ( CPACK_COMPONENT_DEV_DISPLAY_NAME " Development files " ) <nl> + set ( CPACK_COMPONENT_DOCS_DISPLAY_NAME " Documentation " ) <nl> + set ( CPACK_COMPONENT_JAVA_DISPLAY_NAME " Java bindings " ) <nl> + set ( CPACK_COMPONENT_LIBS_DISPLAY_NAME " Libraries and data " ) <nl> + set ( CPACK_COMPONENT_PYTHON_DISPLAY_NAME " Python bindings " ) <nl> + set ( CPACK_COMPONENT_SAMPLES_DISPLAY_NAME " Samples " ) <nl> + set ( CPACK_COMPONENT_TESTS_DISPLAY_NAME " Tests " ) <nl> + <nl> # depencencies <nl> set ( CPACK_DEBIAN_PACKAGE_SHLIBDEPS TRUE ) <nl> - set ( CPACK_COMPONENT_samples_DEPENDS libs dev ) <nl> - set ( CPACK_COMPONENT_dev_DEPENDS libs ) <nl> - set ( CPACK_COMPONENT_docs_DEPENDS libs ) <nl> - set ( CPACK_COMPONENT_java_DEPENDS libs ) <nl> - set ( CPACK_COMPONENT_python_DEPENDS libs ) <nl> - set ( CPACK_DEB_python_PACKAGE_DEPENDS " python - numpy ( > = $ { PYTHON_NUMPY_VERSION } ) , python $ { PYTHON_VERSION_MAJOR_MINOR } " ) <nl> - set ( CPACK_COMPONENT_tests_DEPENDS libs ) <nl> + set ( CPACK_COMPONENT_LIBS_REQUIRED TRUE ) <nl> + set ( CPACK_COMPONENT_SAMPLES_DEPENDS libs dev ) <nl> + set ( CPACK_COMPONENT_DEV_DEPENDS libs ) <nl> + set ( CPACK_COMPONENT_DOCS_DEPENDS libs ) <nl> + set ( CPACK_COMPONENT_JAVA_DEPENDS libs ) <nl> + set ( CPACK_COMPONENT_PYTHON_DEPENDS libs ) <nl> + set ( CPACK_DEB_PYTHON_PACKAGE_DEPENDS " python - numpy ( > = $ { PYTHON_NUMPY_VERSION } ) , python $ { PYTHON_VERSION_MAJOR_MINOR } " ) <nl> + set ( CPACK_COMPONENT_TESTS_DEPENDS libs ) <nl> if ( HAVE_opencv_python ) <nl> - set ( CPACK_DEB_tests_PACKAGE_DEPENDS " python - numpy ( > = $ { PYTHON_NUMPY_VERSION } ) , python $ { PYTHON_VERSION_MAJOR_MINOR } , python - py | python - pytest " ) <nl> + set ( CPACK_DEB_TESTS_PACKAGE_DEPENDS " python - numpy ( > = $ { PYTHON_NUMPY_VERSION } ) , python $ { PYTHON_VERSION_MAJOR_MINOR } , python - py | python - pytest " ) <nl> endif ( ) <nl> <nl> if ( HAVE_CUDA ) <nl> string ( REPLACE " . " " - " cuda_version_suffix $ { CUDA_VERSION } ) <nl> if ( CUDA_VERSION VERSION_LESS " 6 . 5 " ) <nl> - set ( CPACK_DEB_libs_PACKAGE_DEPENDS " cuda - core - libs - $ { cuda_version_suffix } , cuda - extra - libs - $ { cuda_version_suffix } " ) <nl> - set ( CPACK_DEB_dev_PACKAGE_DEPENDS " cuda - headers - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_LIBS_PACKAGE_DEPENDS " cuda - core - libs - $ { cuda_version_suffix } , cuda - extra - libs - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_DEV_PACKAGE_DEPENDS " cuda - headers - $ { cuda_version_suffix } " ) <nl> else ( ) <nl> - set ( CPACK_DEB_libs_PACKAGE_DEPENDS " cuda - cudart - $ { cuda_version_suffix } , cuda - npp - $ { cuda_version_suffix } " ) <nl> - set ( CPACK_DEB_dev_PACKAGE_DEPENDS " cuda - cudart - dev - $ { cuda_version_suffix } , cuda - npp - dev - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_LIBS_PACKAGE_DEPENDS " cuda - cudart - $ { cuda_version_suffix } , cuda - npp - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_DEV_PACKAGE_DEPENDS " cuda - cudart - dev - $ { cuda_version_suffix } , cuda - npp - dev - $ { cuda_version_suffix } " ) <nl> if ( HAVE_CUFFT ) <nl> - set ( CPACK_DEB_libs_PACKAGE_DEPENDS " $ { CPACK_DEB_libs_PACKAGE_DEPENDS } , cuda - cufft - $ { cuda_version_suffix } " ) <nl> - set ( CPACK_DEB_dev_PACKAGE_DEPENDS " $ { CPACK_DEB_dev_PACKAGE_DEPENDS } , cuda - cufft - dev - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_LIBS_PACKAGE_DEPENDS " $ { CPACK_DEB_LIBS_PACKAGE_DEPENDS } , cuda - cufft - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_DEV_PACKAGE_DEPENDS " $ { CPACK_DEB_DEV_PACKAGE_DEPENDS } , cuda - cufft - dev - $ { cuda_version_suffix } " ) <nl> endif ( ) <nl> if ( HAVE_HAVE_CUBLAS ) <nl> - set ( CPACK_DEB_libs_PACKAGE_DEPENDS " $ { CPACK_DEB_libs_PACKAGE_DEPENDS } , cuda - cublas - $ { cuda_version_suffix } " ) <nl> - set ( CPACK_DEB_dev_PACKAGE_DEPENDS " $ { CPACK_DEB_dev_PACKAGE_DEPENDS } , cuda - cublas - dev - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_LIBS_PACKAGE_DEPENDS " $ { CPACK_DEB_LIBS_PACKAGE_DEPENDS } , cuda - cublas - $ { cuda_version_suffix } " ) <nl> + set ( CPACK_DEB_DEV_PACKAGE_DEPENDS " $ { CPACK_DEB_DEV_PACKAGE_DEPENDS } , cuda - cublas - dev - $ { cuda_version_suffix } " ) <nl> endif ( ) <nl> endif ( ) <nl> - <nl> - set ( CPACK_COMPONENT_dev_DEPENDS libs ) <nl> endif ( ) <nl> <nl> if ( NOT OPENCV_CUSTOM_PACKAGE_INFO ) <nl> - set ( CPACK_COMPONENT_libs_DISPLAY_NAME " libopencv " ) <nl> - set ( CPACK_COMPONENT_libs_DESCRIPTION " Open Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_libs_SECTION " libs " ) <nl> + set ( CPACK_COMPONENT_LIBS_DESCRIPTION " Open Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_LIBS_NAME " libopencv " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_LIBS_SECTION " libs " ) <nl> <nl> - set ( CPACK_COMPONENT_python_DISPLAY_NAME " libopencv - python " ) <nl> - set ( CPACK_COMPONENT_python_DESCRIPTION " Python bindings for Open Source Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_python_SECTION " python " ) <nl> + set ( CPACK_COMPONENT_PYTHON_DESCRIPTION " Python bindings for Open Source Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_PYTHON_NAME " libopencv - python " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_PYTHON_SECTION " python " ) <nl> <nl> - set ( CPACK_COMPONENT_java_DISPLAY_NAME " libopencv - java " ) <nl> - set ( CPACK_COMPONENT_java_DESCRIPTION " Java bindings for Open Source Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_java_SECTION " java " ) <nl> + set ( CPACK_COMPONENT_JAVA_DESCRIPTION " Java bindings for Open Source Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_JAVA_NAME " libopencv - java " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_JAVA_SECTION " java " ) <nl> <nl> - set ( CPACK_COMPONENT_dev_DISPLAY_NAME " libopencv - dev " ) <nl> - set ( CPACK_COMPONENT_dev_DESCRIPTION " Development files for Open Source Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_dev_SECTION " libdevel " ) <nl> + set ( CPACK_COMPONENT_DEV_DESCRIPTION " Development files for Open Source Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_DEV_NAME " libopencv - dev " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_DEV_SECTION " libdevel " ) <nl> <nl> - set ( CPACK_COMPONENT_docs_DISPLAY_NAME " libopencv - docs " ) <nl> - set ( CPACK_COMPONENT_docs_DESCRIPTION " Documentation for Open Source Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_docs_SECTION " doc " ) <nl> + set ( CPACK_COMPONENT_DOCS_DESCRIPTION " Documentation for Open Source Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_DOCS_NAME " libopencv - docs " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_DOCS_SECTION " doc " ) <nl> <nl> - set ( CPACK_COMPONENT_samples_DISPLAY_NAME " libopencv - samples " ) <nl> - set ( CPACK_COMPONENT_samples_DESCRIPTION " Samples for Open Source Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_samples_SECTION " devel " ) <nl> + set ( CPACK_COMPONENT_SAMPLES_DESCRIPTION " Samples for Open Source Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_SAMPLES_NAME " libopencv - samples " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_SAMPLES_SECTION " devel " ) <nl> <nl> - set ( CPACK_COMPONENT_tests_DISPLAY_NAME " libopencv - tests " ) <nl> - set ( CPACK_COMPONENT_tests_DESCRIPTION " Accuracy and performance tests for Open Source Computer Vision Library " ) <nl> - set ( CPACK_COMPONENT_tests_SECTION " misc " ) <nl> + set ( CPACK_COMPONENT_TESTS_DESCRIPTION " Accuracy and performance tests for Open Source Computer Vision Library " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_TESTS_NAME " libopencv - tests " ) <nl> + set ( CPACK_DEBIAN_COMPONENT_TESTS_SECTION " misc " ) <nl> endif ( NOT OPENCV_CUSTOM_PACKAGE_INFO ) <nl> <nl> if ( CPACK_GENERATOR STREQUAL " DEB " ) <nl> if ( CPACK_GENERATOR STREQUAL " DEB " ) <nl> set ( CHANGELOG_PACKAGE_VERSION " $ { CPACK_PACKAGE_VERSION } " ) <nl> set ( ALL_COMPONENTS " libs " " dev " " docs " " python " " java " " samples " " tests " ) <nl> foreach ( comp $ { ALL_COMPONENTS } ) <nl> + string ( TOUPPER " $ { comp } " comp_upcase ) <nl> set ( DEBIAN_CHANGELOG_OUT_FILE " $ { CMAKE_BINARY_DIR } / deb - packages - gen / $ { comp } / changelog . Debian " ) <nl> set ( DEBIAN_CHANGELOG_OUT_FILE_GZ " $ { CMAKE_BINARY_DIR } / deb - packages - gen / $ { comp } / changelog . Debian . gz " ) <nl> - set ( CHANGELOG_PACKAGE_NAME " $ { CPACK_COMPONENT_ $ { comp } _DISPLAY_NAME } " ) <nl> + set ( CHANGELOG_PACKAGE_NAME " $ { CPACK_DEBIAN_COMPONENT_ $ { comp_upcase } _NAME } " ) <nl> configure_file ( " $ { CMAKE_CURRENT_SOURCE_DIR } / cmake / templates / changelog . Debian . in " " $ { DEBIAN_CHANGELOG_OUT_FILE } " @ ONLY ) <nl> <nl> execute_process ( COMMAND " $ { GZIP_TOOL } " " - cf9 " " $ { DEBIAN_CHANGELOG_OUT_FILE } " <nl> if ( CPACK_GENERATOR STREQUAL " DEB " ) <nl> WORKING_DIRECTORY " $ { CMAKE_BINARY_DIR } " ) <nl> <nl> install ( FILES " $ { DEBIAN_CHANGELOG_OUT_FILE_GZ } " <nl> - DESTINATION " share / doc / $ { CPACK_COMPONENT_ $ { comp } _DISPLAY_NAME } " <nl> + DESTINATION " share / doc / $ { CPACK_DEBIAN_COMPONENT_ $ { comp_upcase } _NAME } " <nl> COMPONENT " $ { comp } " ) <nl> endforeach ( ) <nl> endif ( ) <nl>
Merge pull request from SpecLad : align - cpack - variables
opencv/opencv
1c6e9fdfae83a57f11a85fcf0e4374b9d3fdfafc
2015-02-24T11:42:40Z
mmm a / src / core / hle / service / am / am . cpp <nl> ppp b / src / core / hle / service / am / am . cpp <nl> <nl> / / Licensed under GPLv2 or any later version <nl> / / Refer to the license . txt file included . <nl> <nl> + # include < array > <nl> # include < cinttypes > <nl> # include < stack > <nl> # include " core / core . h " <nl> IApplicationFunctions : : IApplicationFunctions ( ) : ServiceFramework ( " IApplicationF <nl> } <nl> <nl> void IApplicationFunctions : : PopLaunchParameter ( Kernel : : HLERequestContext & ctx ) { <nl> - constexpr u8 data [ 0x88 ] = { <nl> + constexpr std : : array < u8 , 0x88 > data { { <nl> 0xca , 0x97 , 0x94 , 0xc7 , / / Magic <nl> 1 , 0 , 0 , 0 , / / IsAccountSelected ( bool ) <nl> 1 , 0 , 0 , 0 , / / User Id ( word 0 ) <nl> 0 , 0 , 0 , 0 , / / User Id ( word 1 ) <nl> 0 , 0 , 0 , 0 , / / User Id ( word 2 ) <nl> 0 , 0 , 0 , 0 / / User Id ( word 3 ) <nl> - } ; <nl> + } } ; <nl> <nl> - std : : vector < u8 > buffer ( data , data + sizeof ( data ) ) ; <nl> + std : : vector < u8 > buffer ( data . begin ( ) , data . end ( ) ) ; <nl> <nl> IPC : : ResponseBuilder rb { ctx , 2 , 0 , 1 } ; <nl> <nl>
am : Utilize std : : array within PopLaunchParameter ( )
yuzu-emu/yuzu
8dd9cb98ce03bb1fb934fc6fa668e92826449901
2018-08-21T15:03:14Z
mmm a / emscripten . py <nl> ppp b / emscripten . py <nl> def make_emulated_param ( i ) : <nl> asm_setup + = ' \ nvar debug_table_ ' + sig + ' = ' + json . dumps ( debug_tables [ sig ] ) + ' ; ' <nl> <nl> maths = [ ' Math . ' + func for func in [ ' floor ' , ' abs ' , ' sqrt ' , ' pow ' , ' cos ' , ' sin ' , ' tan ' , ' acos ' , ' asin ' , ' atan ' , ' atan2 ' , ' exp ' , ' log ' , ' ceil ' , ' imul ' , ' min ' , ' clz32 ' ] ] <nl> - simdfloattypes = [ ' float32x4 ' ] <nl> - simdinttypes = [ ' int32x4 ' ] <nl> + simdfloattypes = [ ' Float32x4 ' ] <nl> + simdinttypes = [ ' Int32x4 ' ] <nl> simdtypes = simdfloattypes + simdinttypes <nl> simdfuncs = [ ' check ' , ' add ' , ' sub ' , ' neg ' , ' mul ' , <nl> ' equal ' , ' lessThan ' , ' greaterThan ' , <nl> mmm a / tests / optimizer / simd - output . js <nl> ppp b / tests / optimizer / simd - output . js <nl> <nl> function a ( x , y ) { <nl> - x = SIMD_int32x4_check ( x ) ; <nl> - y = SIMD_float32x4_check ( y ) ; <nl> - var z = SIMD_float32x4 ( 0 , 0 , 0 , 0 ) ; <nl> + x = SIMD_Int32x4_check ( x ) ; <nl> + y = SIMD_Float32x4_check ( y ) ; <nl> + var z = SIMD_Float32x4 ( 0 , 0 , 0 , 0 ) ; <nl> work ( z ) ; <nl> } <nl> <nl> mmm a / tests / optimizer / simd . js <nl> ppp b / tests / optimizer / simd . js <nl> <nl> function a ( x , y ) { <nl> - x = SIMD_int32x4_check ( x ) ; <nl> - y = SIMD_float32x4_check ( y ) ; <nl> - var z = SIMD_float32x4 ( 0 , 0 , 0 , 0 ) ; <nl> + x = SIMD_Int32x4_check ( x ) ; <nl> + y = SIMD_Float32x4_check ( y ) ; <nl> + var z = SIMD_Float32x4 ( 0 , 0 , 0 , 0 ) ; <nl> work ( z ) ; <nl> } <nl> / / EMSCRIPTEN_GENERATED_FUNCTIONS : [ " a " ] <nl> mmm a / tools / js - optimizer . js <nl> ppp b / tools / js - optimizer . js <nl> function detectType ( node , asmInfo , inVarDef ) { <nl> if ( node [ 1 ] [ 0 ] = = = ' name ' ) { <nl> switch ( node [ 1 ] [ 1 ] ) { <nl> case ' Math_fround ' : return ASM_FLOAT ; <nl> - case ' SIMD_float32x4 ' : <nl> - case ' SIMD_float32x4_check ' : return ASM_FLOAT32X4 ; <nl> - case ' SIMD_int32x4 ' : <nl> - case ' SIMD_int32x4_check ' : return ASM_INT32X4 ; <nl> + case ' SIMD_Float32x4 ' : <nl> + case ' SIMD_Float32x4_check ' : return ASM_FLOAT32X4 ; <nl> + case ' SIMD_Int32x4 ' : <nl> + case ' SIMD_Int32x4_check ' : return ASM_INT32X4 ; <nl> default : break ; <nl> } <nl> } <nl> function makeAsmCoercion ( node , type ) { <nl> case ASM_INT : return [ ' binary ' , ' | ' , node , [ ' num ' , 0 ] ] ; <nl> case ASM_DOUBLE : return [ ' unary - prefix ' , ' + ' , node ] ; <nl> case ASM_FLOAT : return [ ' call ' , [ ' name ' , ' Math_fround ' ] , [ node ] ] ; <nl> - case ASM_FLOAT32X4 : return [ ' call ' , [ ' name ' , ' SIMD_float32x4_check ' ] , [ node ] ] ; <nl> - case ASM_INT32X4 : return [ ' call ' , [ ' name ' , ' SIMD_int32x4_check ' ] , [ node ] ] ; <nl> + case ASM_FLOAT32X4 : return [ ' call ' , [ ' name ' , ' SIMD_Float32x4_check ' ] , [ node ] ] ; <nl> + case ASM_INT32X4 : return [ ' call ' , [ ' name ' , ' SIMD_Int32x4_check ' ] , [ node ] ] ; <nl> case ASM_NONE : <nl> default : return node ; / / non - validating code , emit nothing XXX this is dangerous , we should only allow this when we know we are not validating <nl> } <nl> function makeAsmVarDef ( v , type ) { <nl> } <nl> } <nl> case ASM_FLOAT32X4 : { <nl> - return [ v , [ ' call ' , [ ' name ' , ' SIMD_float32x4 ' ] , [ [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] ] ] ] ; <nl> + return [ v , [ ' call ' , [ ' name ' , ' SIMD_Float32x4 ' ] , [ [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] ] ] ] ; <nl> } <nl> case ASM_INT32X4 : { <nl> - return [ v , [ ' call ' , [ ' name ' , ' SIMD_int32x4 ' ] , [ [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] ] ] ] ; <nl> + return [ v , [ ' call ' , [ ' name ' , ' SIMD_Int32x4 ' ] , [ [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] , [ ' num ' , 0 ] ] ] ] ; <nl> } <nl> default : throw ' wha ? ' + JSON . stringify ( [ v , type ] ) + new Error ( ) . stack ; <nl> } <nl> mmm a / tools / optimizer / optimizer . cpp <nl> ppp b / tools / optimizer / optimizer . cpp <nl> typedef std : : vector < IString > StringVec ; <nl> <nl> Ref doc , extraInfo ; <nl> <nl> - IString SIMD_INT32X4_CHECK ( " SIMD_int32x4_check " ) , <nl> - SIMD_FLOAT32X4_CHECK ( " SIMD_float32x4_check " ) ; <nl> + IString SIMD_INT32X4_CHECK ( " SIMD_Int32x4_check " ) , <nl> + SIMD_FLOAT32X4_CHECK ( " SIMD_Float32x4_check " ) ; <nl> <nl> / / = = = = = = = = = = = = = = = = = = <nl> / / Infrastructure <nl> mmm a / tools / optimizer / parser . cpp <nl> ppp b / tools / optimizer / parser . cpp <nl> IString TOPLEVEL ( " toplevel " ) , <nl> UNARY_PREFIX ( " unary - prefix " ) , <nl> UNARY_POSTFIX ( " unary - postfix " ) , <nl> MATH_FROUND ( " Math_fround " ) , <nl> - SIMD_FLOAT32X4 ( " SIMD_float32x4 " ) , <nl> - SIMD_INT32X4 ( " SIMD_int32x4 " ) , <nl> + SIMD_FLOAT32X4 ( " SIMD_Float32x4 " ) , <nl> + SIMD_INT32X4 ( " SIMD_Int32x4 " ) , <nl> PLUS ( " + " ) , <nl> MINUS ( " - " ) , <nl> OR ( " | " ) , <nl>
SIMD type capitalization .
emscripten-core/emscripten
c8d97f931be79a83e0e43cc06f4963b82aeb6d22
2015-07-13T19:17:51Z
mmm a / tensorflow / core / ops / compat / ops_history . v0 . pbtxt <nl> ppp b / tensorflow / core / ops / compat / ops_history . v0 . pbtxt <nl> op { <nl> } <nl> } <nl> } <nl> + op { <nl> + name : " Acos " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " Add " <nl> input_arg { <nl> op { <nl> } <nl> } <nl> } <nl> + op { <nl> + name : " Asin " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " Assert " <nl> input_arg { <nl> op { <nl> } <nl> } <nl> } <nl> + op { <nl> + name : " Atan " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " AudioSummary " <nl> input_arg { <nl> op { <nl> type : DT_STRING <nl> } <nl> } <nl> + op { <nl> + name : " ReaderReadUpTo " <nl> + input_arg { <nl> + name : " reader_handle " <nl> + type : DT_STRING <nl> + is_ref : true <nl> + } <nl> + input_arg { <nl> + name : " queue_handle " <nl> + type : DT_STRING <nl> + is_ref : true <nl> + } <nl> + input_arg { <nl> + name : " num_records " <nl> + type : DT_INT64 <nl> + } <nl> + output_arg { <nl> + name : " keys " <nl> + type : DT_STRING <nl> + } <nl> + output_arg { <nl> + name : " values " <nl> + type : DT_STRING <nl> + } <nl> + } <nl> op { <nl> name : " ReaderReset " <nl> input_arg { <nl> op { <nl> } <nl> } <nl> } <nl> + op { <nl> + name : " SegmentProd " <nl> + input_arg { <nl> + name : " data " <nl> + type_attr : " T " <nl> + } <nl> + input_arg { <nl> + name : " segment_ids " <nl> + type_attr : " Tindices " <nl> + } <nl> + output_arg { <nl> + name : " output " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT64 <nl> + type : DT_INT32 <nl> + type : DT_UINT8 <nl> + type : DT_UINT16 <nl> + type : DT_INT16 <nl> + type : DT_INT8 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + type : DT_QINT8 <nl> + type : DT_QUINT8 <nl> + type : DT_QINT32 <nl> + type : DT_HALF <nl> + } <nl> + } <nl> + } <nl> + attr { <nl> + name : " Tindices " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " SegmentSum " <nl> input_arg { <nl> op { <nl> } <nl> } <nl> } <nl> + op { <nl> + name : " SegmentSum " <nl> + input_arg { <nl> + name : " data " <nl> + type_attr : " T " <nl> + } <nl> + input_arg { <nl> + name : " segment_ids " <nl> + type_attr : " Tindices " <nl> + } <nl> + output_arg { <nl> + name : " output " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT64 <nl> + type : DT_INT32 <nl> + type : DT_UINT8 <nl> + type : DT_UINT16 <nl> + type : DT_INT16 <nl> + type : DT_INT8 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + type : DT_QINT8 <nl> + type : DT_QUINT8 <nl> + type : DT_QINT32 <nl> + type : DT_HALF <nl> + } <nl> + } <nl> + } <nl> + attr { <nl> + name : " Tindices " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " Select " <nl> input_arg { <nl> op { <nl> } <nl> is_stateful : true <nl> } <nl> + op { <nl> + name : " Tan " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " Tanh " <nl> input_arg { <nl> op { <nl> } <nl> } <nl> } <nl> + op { <nl> + name : " UnsortedSegmentSum " <nl> + input_arg { <nl> + name : " data " <nl> + type_attr : " T " <nl> + } <nl> + input_arg { <nl> + name : " segment_ids " <nl> + type_attr : " Tindices " <nl> + } <nl> + input_arg { <nl> + name : " num_segments " <nl> + type : DT_INT32 <nl> + } <nl> + output_arg { <nl> + name : " output " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT64 <nl> + type : DT_INT32 <nl> + type : DT_UINT8 <nl> + type : DT_UINT16 <nl> + type : DT_INT16 <nl> + type : DT_INT8 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + type : DT_QINT8 <nl> + type : DT_QUINT8 <nl> + type : DT_QINT32 <nl> + type : DT_HALF <nl> + } <nl> + } <nl> + } <nl> + attr { <nl> + name : " Tindices " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + } <nl> + } <nl> + } <nl> + } <nl> op { <nl> name : " Variable " <nl> output_arg { <nl> mmm a / tensorflow / core / ops / ops . pbtxt <nl> ppp b / tensorflow / core / ops / ops . pbtxt <nl> op { <nl> summary : " Computes the absolute value of a tensor . " <nl> description : " Given a tensor ` x ` , this operation returns a tensor containing the absolute \ nvalue of each element in ` x ` . For example , if x is an input element and y is \ nan output element , this operation computes \ \ \ \ ( y = | x | \ \ \ \ ) . " <nl> } <nl> + op { <nl> + name : " Acos " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + summary : " Computes acos of x element - wise . " <nl> + } <nl> op { <nl> name : " Add " <nl> input_arg { <nl> op { <nl> } <nl> summary : " Returns the index with the smallest value across dimensions of a tensor . " <nl> } <nl> + op { <nl> + name : " Asin " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + summary : " Computes asin of x element - wise . " <nl> + } <nl> op { <nl> name : " Assert " <nl> input_arg { <nl> op { <nl> summary : " Update \ ' ref \ ' by subtracting \ ' value \ ' from it . " <nl> description : " This operation outputs \ " ref \ " after the update is done . \ nThis makes it easier to chain operations that need to use the reset value . " <nl> } <nl> + op { <nl> + name : " Atan " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + summary : " Computes atan of x element - wise . " <nl> + } <nl> op { <nl> name : " AudioSummary " <nl> input_arg { <nl> op { <nl> summary : " Returns the next record ( key , value pair ) produced by a Reader . " <nl> description : " Will dequeue from the input queue if necessary ( e . g . when the \ nReader needs to start reading from a new file since it has finished \ nwith the previous file ) . " <nl> } <nl> + op { <nl> + name : " ReaderReadUpTo " <nl> + input_arg { <nl> + name : " reader_handle " <nl> + description : " Handle to a ` Reader ` . " <nl> + type : DT_STRING <nl> + is_ref : true <nl> + } <nl> + input_arg { <nl> + name : " queue_handle " <nl> + description : " Handle to a ` Queue ` , with string work items . " <nl> + type : DT_STRING <nl> + is_ref : true <nl> + } <nl> + input_arg { <nl> + name : " num_records " <nl> + description : " number of records to read from ` Reader ` . " <nl> + type : DT_INT64 <nl> + } <nl> + output_arg { <nl> + name : " keys " <nl> + description : " A 1 - D tensor . " <nl> + type : DT_STRING <nl> + } <nl> + output_arg { <nl> + name : " values " <nl> + description : " A 1 - D tensor . " <nl> + type : DT_STRING <nl> + } <nl> + summary : " Returns up to ` num_records ` ( key , value ) pairs produced by a Reader . " <nl> + description : " Will dequeue from the input queue if necessary ( e . g . when the \ nReader needs to start reading from a new file since it has finished \ nwith the previous file ) . " <nl> + } <nl> op { <nl> name : " ReaderReset " <nl> input_arg { <nl> op { <nl> list { <nl> type : DT_FLOAT <nl> type : DT_DOUBLE <nl> - type : DT_INT32 <nl> type : DT_INT64 <nl> + type : DT_INT32 <nl> type : DT_UINT8 <nl> + type : DT_UINT16 <nl> type : DT_INT16 <nl> type : DT_INT8 <nl> - type : DT_UINT16 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + type : DT_QINT8 <nl> + type : DT_QUINT8 <nl> + type : DT_QINT32 <nl> type : DT_HALF <nl> } <nl> } <nl> op { <nl> list { <nl> type : DT_FLOAT <nl> type : DT_DOUBLE <nl> - type : DT_INT32 <nl> type : DT_INT64 <nl> + type : DT_INT32 <nl> type : DT_UINT8 <nl> + type : DT_UINT16 <nl> type : DT_INT16 <nl> type : DT_INT8 <nl> - type : DT_UINT16 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + type : DT_QINT8 <nl> + type : DT_QUINT8 <nl> + type : DT_QINT32 <nl> type : DT_HALF <nl> } <nl> } <nl> op { <nl> summary : " A Reader that outputs the records from a TensorFlow Records file . " <nl> is_stateful : true <nl> } <nl> + op { <nl> + name : " Tan " <nl> + input_arg { <nl> + name : " x " <nl> + type_attr : " T " <nl> + } <nl> + output_arg { <nl> + name : " y " <nl> + type_attr : " T " <nl> + } <nl> + attr { <nl> + name : " T " <nl> + type : " type " <nl> + allowed_values { <nl> + list { <nl> + type : DT_HALF <nl> + type : DT_FLOAT <nl> + type : DT_DOUBLE <nl> + type : DT_INT32 <nl> + type : DT_INT64 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + } <nl> + } <nl> + } <nl> + summary : " Computes tan of x element - wise . " <nl> + } <nl> op { <nl> name : " Tanh " <nl> input_arg { <nl> op { <nl> list { <nl> type : DT_FLOAT <nl> type : DT_DOUBLE <nl> - type : DT_INT32 <nl> type : DT_INT64 <nl> + type : DT_INT32 <nl> type : DT_UINT8 <nl> + type : DT_UINT16 <nl> type : DT_INT16 <nl> type : DT_INT8 <nl> - type : DT_UINT16 <nl> + type : DT_COMPLEX64 <nl> + type : DT_COMPLEX128 <nl> + type : DT_QINT8 <nl> + type : DT_QUINT8 <nl> + type : DT_QINT32 <nl> type : DT_HALF <nl> } <nl> } <nl>
Update ops - related pbtxt files .
tensorflow/tensorflow
8031e2823cdbedad42dc6ce9f4f7042f7e1c604e
2016-06-03T23:17:12Z
mmm a / src / mongo / SConscript <nl> ppp b / src / mongo / SConscript <nl> test = testEnv . Install ( <nl> if len ( testEnv . subst ( ' $ PROGSUFFIX ' ) ) : <nl> testEnv . Alias ( " test " , " # / $ { PROGPREFIX } test $ { PROGSUFFIX } " ) <nl> <nl> - env . Install ( ' # / ' , testEnv . Program ( " perftest " , [ " dbtests / perf / perftest . cpp " ] , LIBDEPS = [ " serveronly " , " coreserver " , " coredb " , " testframework " ] ) ) <nl> + env . Install ( ' # / ' , testEnv . Program ( " perftest " , [ " dbtests / perf / perftest . cpp " ] , LIBDEPS = [ " serveronly " , " coreserver " , " coredb " , " testframework " , " notmongodormongos " ] ) ) <nl> <nl> # mmm sniffer mmm <nl> mongosniff_built = False <nl> if darwin or env [ " _HAVEPCAP " ] : <nl> sniffEnv . Append ( LIBS = [ " wpcap " ] ) <nl> <nl> sniffEnv . Install ( ' # / ' , sniffEnv . Program ( " mongosniff " , " tools / sniffer . cpp " , <nl> - LIBDEPS = [ " gridfs " , " serveronly " , " coreserver " , " coredb " ] ) ) <nl> + LIBDEPS = [ " gridfs " , " serveronly " , " coreserver " , " coredb " , " notmongodormongos " ] ) ) <nl> <nl> # mmm shell mmm <nl> <nl>
buildbot fix compile
mongodb/mongo
26411490539e1c3a6a3cac9bec8a7ef5a164ff95
2012-06-12T19:24:32Z
deleted file mode 100644 <nl> index c334c6a67fba . . 000000000000 <nl> mmm a / cocos2dx / platform / third_party / marmalade / libjpeg . mkf <nl> ppp / dev / null <nl> <nl> - includepath <nl> - { <nl> - . <nl> - " jpeg - 6b " <nl> - } <nl> - <nl> - files <nl> - { <nl> - [ libjpeg ] <nl> - ( " jpeg - 6b " ) <nl> - jconfig . h <nl> - cderror . h <nl> - cdjpeg . c <nl> - cdjpeg . h <nl> - jcapimin . c <nl> - jccoefct . c <nl> - jccolor . c <nl> - jcdctmgr . c <nl> - jchuff . c <nl> - jchuff . h <nl> - jcmarker . c <nl> - jcomapi . c <nl> - jcparam . c <nl> - jcphuff . c <nl> - jcprepct . c <nl> - jcsample . c <nl> - jdapimin . c <nl> - jdapistd . c <nl> - jdatadst . c <nl> - jdatasrc . c <nl> - jdcoefct . c <nl> - jdcolor . c <nl> - jdct . h <nl> - jddctmgr . c <nl> - jdhuff . c <nl> - jdhuff . h <nl> - jdinput . c <nl> - jdmarker . c <nl> - jdmaster . c <nl> - < gccnowarn > <nl> - jdmainct . c <nl> - < / gccnowarn > <nl> - jdmerge . c <nl> - jdphuff . c <nl> - jdpostct . c <nl> - jdsample . c <nl> - jdtrans . c <nl> - jerror . c <nl> - jerror . h <nl> - jfdctflt . c <nl> - jfdctfst . c <nl> - jfdctint . c <nl> - jidctflt . c <nl> - jidctfst . c <nl> - jidctint . c <nl> - jidctred . c <nl> - jinclude . h <nl> - # jmemansi . c <nl> - jmemmgr . c <nl> - # jmemname . c <nl> - jmemnobs . c <nl> - jmemsys . h <nl> - jmorecfg . h <nl> - jpegint . h <nl> - jpeglib . h <nl> - jquant1 . c <nl> - jquant2 . c <nl> - jutils . c <nl> - jversion . h <nl> - rdbmp . c <nl> - rdcolmap . c <nl> - rdgif . c <nl> - rdppm . c <nl> - rdrle . c <nl> - rdswitch . c <nl> - rdtarga . c <nl> - transupp . c <nl> - transupp . h <nl> - } <nl> \ No newline at end of file <nl> deleted file mode 100644 <nl> index 475391d21a57 . . 000000000000 <nl> mmm a / cocos2dx / platform / third_party / marmalade / libpng . mkf <nl> ppp / dev / null <nl> <nl> - <nl> - includepath <nl> - { <nl> - . <nl> - " libpng " <nl> - } <nl> - <nl> - subproject zlib <nl> - <nl> - files <nl> - { <nl> - [ libpng ] <nl> - ( " libpng " ) <nl> - png . h <nl> - pngconf . h <nl> - png . c <nl> - pngerror . c <nl> - pnggccrd . c <nl> - pngget . c <nl> - pngmem . c <nl> - pngpread . c <nl> - pngread . c <nl> - pngrio . c <nl> - pngrtran . c <nl> - pngrutil . c <nl> - pngset . c <nl> - pngtrans . c <nl> - pngvcrd . c <nl> - pngwio . c <nl> - pngwrite . c <nl> - pngwtran . c <nl> - pngwutil . c <nl> - } <nl> deleted file mode 100644 <nl> index 742f2be62615 . . 000000000000 <nl> mmm a / cocos2dx / platform / third_party / marmalade / zlib . mkf <nl> ppp / dev / null <nl> <nl> - includepath <nl> - { <nl> - . <nl> - " zlib " <nl> - } <nl> - <nl> - files <nl> - { <nl> - [ zlib ] <nl> - ( " zlib " ) <nl> - adler32 . c <nl> - compress . c <nl> - crc32 . c <nl> - crc32 . h <nl> - deflate . c <nl> - deflate . h <nl> - gzio . c <nl> - infback . c <nl> - inffast . c <nl> - inffast . h <nl> - inffixed . h <nl> - inflate . c <nl> - inflate . h <nl> - inftrees . c <nl> - inftrees . h <nl> - trees . c <nl> - trees . h <nl> - uncompr . c <nl> - zconf . h <nl> - zconf . in . h <nl> - zlib . h <nl> - zutil . c <nl> - zutil . h <nl> - <nl> - } <nl> \ No newline at end of file <nl>
remove unused libs
cocos2d/cocos2d-x
4421b6bf7a9bc972446700fc94178efe256356f7
2012-12-29T22:53:39Z
mmm a / tools / jenkins / run_full_performance . sh <nl> ppp b / tools / jenkins / run_full_performance . sh <nl> tools / run_tests / run_performance_tests . py \ <nl> - - netperf \ <nl> - - category scalable \ <nl> - - bq_result_table performance_test . performance_experiment_32core \ <nl> - - - remote_worker_host grpc - performance - server - 32core grpc - performance - client - 32core \ <nl> + - - remote_worker_host grpc - performance - server - 32core grpc - performance - client - 32core grpc - performance - client2 - 32core \ <nl> | | EXIT_CODE = 1 <nl> <nl> exit $ EXIT_CODE <nl>
Merge pull request from jtattermusch / enable_multiclient
grpc/grpc
22ca12b83fe63b49c787f2a56999a782d39177e2
2016-05-25T19:39:27Z
mmm a / test / quantization / test_quantize_fx . py <nl> ppp b / test / quantization / test_quantize_fx . py <nl> <nl> from torch . fx import symbolic_trace <nl> <nl> # graph mode quantization based on fx <nl> - from torch . quantization . _quantize_fx import ( <nl> - Quantizer , <nl> - fuse , <nl> + from torch . quantization import ( <nl> QuantType , <nl> + fuse_fx , <nl> + prepare_fx , <nl> + convert_fx , <nl> ) <nl> <nl> from torch . quantization import ( <nl> def forward ( self , x ) : <nl> m = M ( ) <nl> original = symbolic_trace ( m ) <nl> # nothing to fuse so skipping the fuse step <nl> - quantizer = Quantizer ( ) <nl> qconfig_dict = { ' ' : default_qconfig } <nl> - prepared = quantizer . prepare ( original , qconfig_dict ) <nl> + prepared = prepare_fx ( original , qconfig_dict ) <nl> # not runnable <nl> - quantized = quantizer . convert ( prepared ) <nl> + quantized = convert_fx ( prepared ) <nl> <nl> # This checks that the dequantize from the output of first conv <nl> # is being propagated to the end , so that we don ' t insert extra <nl> def forward ( self , x ) : <nl> m = M ( ) <nl> original = symbolic_trace ( m ) <nl> # nothing to fuse so skipping the fuse step <nl> - quantizer = Quantizer ( ) <nl> qconfig_dict = { ' ' : default_qconfig } <nl> - prepared = quantizer . prepare ( original , qconfig_dict ) <nl> + prepared = prepare_fx ( original , qconfig_dict ) <nl> # not runnable <nl> - quantized = quantizer . convert ( prepared ) <nl> + quantized = convert_fx ( prepared ) <nl> <nl> # This checks that the dequantize from the output of first conv <nl> # is being propagated to the end , so that we don ' t insert extra <nl> def _test_model_impl ( <nl> if mode ! = ' static ' : <nl> model . train ( ) <nl> <nl> - graph_module = fuse ( graph_module ) <nl> - quantizer = Quantizer ( ) <nl> - prepared = quantizer . prepare ( graph_module , qconfig_dict ) <nl> + graph_module = fuse_fx ( graph_module ) <nl> + prepared = prepare_fx ( graph_module , qconfig_dict ) <nl> <nl> if mode = = ' ddp ' : <nl> mp . spawn ( run_ddp , <nl> def _test_model_impl ( <nl> <nl> # print ( ' after observation root : ' , prepared . root ) <nl> <nl> - qgraph = quantizer . convert ( prepared ) <nl> + qgraph = convert_fx ( prepared ) <nl> # print ( ' after quantization root : ' , qgraph . root ) <nl> # print ( ' after quantization code : ' , qgraph . src ) <nl> qgraph . eval ( ) <nl> mmm a / torch / quantization / __init__ . py <nl> ppp b / torch / quantization / __init__ . py <nl> <nl> from . fake_quantize import * <nl> from . fuse_modules import fuse_modules <nl> from . stubs import * <nl> + from . quant_type import * <nl> from . quantize_jit import * <nl> + from . quantize_fx import * <nl> <nl> def default_eval_fn ( model , calib_data ) : <nl> r " " " <nl> def default_eval_fn ( model , calib_data ) : <nl> # Top level API for eager mode quantization <nl> ' quantize ' , ' quantize_dynamic ' , ' quantize_qat ' , <nl> ' prepare ' , ' convert ' , ' prepare_qat ' , <nl> - # Top level API for graph mode quantization <nl> + # Top level API for graph mode quantization on TorchScript <nl> ' quantize_jit ' , ' quantize_dynamic_jit ' , <nl> + # Top level API for graph mode quantization on GraphModule ( torch . fx ) <nl> + ' fuse_fx ' , ' quantize_fx ' , # TODO : add quantize_dynamic_fx <nl> + ' prepare_fx ' , ' prepare_dynamic_fx ' , ' convert_fx ' , <nl> + ' QuantType ' , # quantization type <nl> # Sub functions for ` prepare ` and ` swap_module ` <nl> ' propagate_qconfig_ ' , ' add_quant_dequant ' , ' add_observer_ ' , ' swap_module ' , <nl> ' default_eval_fn ' , ' get_observer_dict ' , <nl> deleted file mode 100644 <nl> index 8e45995968de . . 000000000000 <nl> mmm a / torch / quantization / _quantize_fx . py <nl> ppp / dev / null <nl> <nl> - from . fx import Quantizer # noqa : F401 <nl> - from . fx import QuantType # noqa : F401 <nl> - from . fx import fuse # noqa : F401 <nl> mmm a / torch / quantization / fx / __init__ . py <nl> ppp b / torch / quantization / fx / __init__ . py <nl> <nl> from __future__ import absolute_import , division , print_function , unicode_literals <nl> - from . quantize import Quantizer , QuantType <nl> - from . fuse import fuse <nl> + from . quantize import Quantizer <nl> + from . fuse import Fuser <nl> mmm a / torch / quantization / fx / fuse . py <nl> ppp b / torch / quantization / fx / fuse . py <nl> def fuse ( self , quantizer , load_arg ) : <nl> return quantizer . fused_graph . node_copy ( self . module_node , load_arg ) <nl> <nl> class Fuser : <nl> - def fuse_conv_bn ( self , model , inplace = False ) : <nl> + def fuse ( self , model , inplace = False ) : <nl> input_root = model . root <nl> if not inplace : <nl> input_root = copy . deepcopy ( input_root ) <nl> def apply_match ( pattern , node , match ) : <nl> apply_match ( pattern , node , ( node , value ( self , node ) ) ) <nl> <nl> return match_map <nl> - <nl> - def fuse ( graph_module , inplace = False ) : <nl> - fuser = Fuser ( ) <nl> - return fuser . fuse_conv_bn ( graph_module , inplace ) <nl> mmm a / torch / quantization / fx / quantize . py <nl> ppp b / torch / quantization / fx / quantize . py <nl> <nl> <nl> from abc import ABC , abstractmethod <nl> import copy <nl> - import enum <nl> import operator <nl> <nl> - # Quantization type ( dynamic quantization , static quantization ) . <nl> - # Should match the c + + enum in quantization_type . h <nl> - class QuantType ( enum . IntEnum ) : <nl> - DYNAMIC = 0 <nl> - STATIC = 1 <nl> - QAT = 2 <nl> - <nl> # mmmmmmmmmmmmmmmmmmmmmmmm <nl> # Helper Functions <nl> # mmmmmmmmmmmmmmmmmmmmmmmm <nl> def convert ( self , quantizer , node , load_arg , debug = False ) : <nl> load_arg ( quantized = False ) ( self . bn_node . kwargs ) ) <nl> <nl> ARGS_TO_SKIP = { <nl> - torch . ops . quantized . hardswish : [ ' inplace ' ] , <nl> - torch . ops . quantized . instance_norm : <nl> + torch . _ops . ops . quantized . hardswish : [ ' inplace ' ] , <nl> + torch . _ops . ops . quantized . instance_norm : <nl> [ ' running_mean ' , ' running_var ' , ' use_input_stats ' , ' momentum ' ] , <nl> } <nl> @ register_quant_pattern ( torch . nn . ELU ) <nl> def get_qconfig ( module ) : <nl> elif node . op = = ' call_module ' : <nl> self . qconfig_map [ node . name ] = get_qconfig ( self . modules [ node . target ] ) <nl> <nl> - def _prepare ( self , model , qconfig_dict , inplace , quant_type ) : <nl> + def _prepare ( self , model , qconfig_dict , inplace , is_dynamic_quant ) : <nl> + assert not inplace , ' inplace prepare is not supported yet ' <nl> input_root = model . root <nl> if not inplace : <nl> input_root = copy . deepcopy ( input_root ) <nl> <nl> input_graph = model . graph <nl> - self . quant_type = quant_type <nl> + self . is_dynamic_quant = is_dynamic_quant <nl> # TODO : allow user specified patterns <nl> - if self . quant_type = = QuantType . DYNAMIC : <nl> + if self . is_dynamic_quant : <nl> self . patterns = get_dynamic_quant_patterns ( ) <nl> else : <nl> self . patterns = get_quant_patterns ( ) <nl> def insert_observer ( node , observer ) : <nl> observed . add ( node . name ) <nl> <nl> # don ' t need to insert observer for output in dynamic quantization <nl> - if self . quant_type = = QuantType . DYNAMIC : <nl> + if self . is_dynamic_quant : <nl> continue <nl> <nl> if isinstance ( obj , CopyNode ) : <nl> def is_observed ( input_arg ) : <nl> observed . add ( node . name ) <nl> observed_graph . output ( load_arg ( input_graph . result ) ) <nl> <nl> - return GraphModule ( input_root , observed_graph ) <nl> + observed = GraphModule ( input_root , observed_graph ) <nl> + self . save_state ( observed ) <nl> + return observed <nl> + <nl> + def save_state ( self , observed ) : <nl> + observed . _activation_post_process_map = self . activation_post_process_map <nl> + observed . _patterns = self . patterns <nl> + observed . _qconfig_map = self . qconfig_map <nl> + <nl> + def restore_state ( self , observed ) : <nl> + err_msg = ' please make sure the model is produced by prepare ' <nl> + assert hasattr ( observed , ' _activation_post_process_map ' ) , ' did not found ' + \ <nl> + ' _activation_post_process attribute ' + err_msg <nl> + assert hasattr ( observed , ' _patterns ' ) , ' did not found ' + \ <nl> + ' _patterns attribute ' + err_msg <nl> + assert hasattr ( observed , ' _qconfig_map ' ) , ' did not found ' + \ <nl> + ' _qconfig_map attribute ' + err_msg <nl> + self . activation_post_process_map = observed . _activation_post_process_map <nl> + self . patterns = observed . _patterns <nl> + self . qconfig_map = observed . _qconfig_map <nl> <nl> def prepare ( self , model , qconfig_dict , inplace = False ) : <nl> - return self . _prepare ( model , qconfig_dict , inplace , quant_type = QuantType . STATIC ) <nl> + return self . _prepare ( model , qconfig_dict , inplace , is_dynamic_quant = False ) <nl> <nl> def prepare_dynamic ( self , model , qconfig_dict , inplace = False ) : <nl> - return self . _prepare ( model , qconfig_dict , inplace , quant_type = QuantType . DYNAMIC ) <nl> + return self . _prepare ( model , qconfig_dict , inplace , is_dynamic_quant = True ) <nl> <nl> - def convert ( self , observed , inplace = False , debug = False ) : <nl> - assert self . activation_post_process_map is not None <nl> + def convert ( self , observed , inplace = False , debug = False , is_dynamic_quant = False ) : <nl> + assert not inplace , ' inplace convert is not supported yet ' <nl> + self . restore_state ( observed ) <nl> + self . is_dynamic_quant = is_dynamic_quant <nl> # move to cpu since we only have quantized cpu kernels <nl> observed . eval ( ) . cpu ( ) <nl> observed_root = observed . root <nl> observed_graph = observed . graph <nl> if not inplace : <nl> observed_root = copy . deepcopy ( observed_root ) <nl> + <nl> self . modules = dict ( observed_root . named_modules ( ) ) <nl> <nl> matches = self . _find_matches ( observed . graph , self . modules , self . patterns ) <nl> def is_quantized ( node ) : <nl> ' CopyNode of type ' + node . op + ' is not handled ' <nl> quantized = is_quantized ( node . args [ 0 ] ) <nl> <nl> - if self . quant_type = = QuantType . DYNAMIC : <nl> + # output of dynamic quantization is not quantized <nl> + if self . is_dynamic_quant : <nl> quantized = False <nl> <nl> if quantized : <nl> def visit_arg ( arg ) : <nl> for i , node_arg in enumerate ( node . args ) : <nl> if arg is node_arg and i in WEIGHT_INDEX_DICT [ node . target ] : <nl> is_weight = True <nl> - if self . quant_type ! = QuantType . DYNAMIC or is_weight : <nl> + if ( not self . is_dynamic_quant ) or is_weight : <nl> # overwrite previous quant config <nl> quants [ arg . name ] = ( DefaultQuant ( self , arg ) , qconfig , is_weight ) <nl> return visit_arg <nl> new file mode 100644 <nl> index 000000000000 . . 74d1dd403bda <nl> mmm / dev / null <nl> ppp b / torch / quantization / quant_type . py <nl> <nl> + from __future__ import absolute_import , division , print_function , unicode_literals <nl> + <nl> + import enum <nl> + <nl> + # Quantization type ( dynamic quantization , static quantization ) . <nl> + # Should match the c + + enum in quantization_type . h <nl> + class QuantType ( enum . IntEnum ) : <nl> + DYNAMIC = 0 <nl> + STATIC = 1 <nl> + QAT = 2 <nl> new file mode 100644 <nl> index 000000000000 . . e048f1cd0595 <nl> mmm / dev / null <nl> ppp b / torch / quantization / quantize_fx . py <nl> <nl> + from . fx import Fuser # noqa : F401 <nl> + from . fx import Quantizer # noqa : F401 <nl> + from torch . fx import GraphModule <nl> + <nl> + def _check_is_graph_module ( model ) : <nl> + if not isinstance ( model , GraphModule ) : <nl> + raise ValueError ( <nl> + ' input model must be a GraphModule , ' + <nl> + ' please run torch . fx . symbolic_trace on your model before using ' + <nl> + ' quantize_fx . Got type : ' + str ( type ( model ) ) ) <nl> + <nl> + def fuse_fx ( graph_module , inplace = False ) : <nl> + r " " " Fuse modules in preparation for quantization <nl> + <nl> + Args : <nl> + graph_module : GraphModule object from symbolic tracing ( torch . fx . symbolic_trace ) <nl> + " " " <nl> + _check_is_graph_module ( graph_module ) <nl> + fuser = Fuser ( ) <nl> + return fuser . fuse ( graph_module , inplace ) <nl> + <nl> + def _prepare_fx ( graph_module , qconfig_dict , inplace , is_dynamic_quant ) : <nl> + _check_is_graph_module ( graph_module ) <nl> + <nl> + quantizer = Quantizer ( ) <nl> + prepare = quantizer . prepare_dynamic if is_dynamic_quant else quantizer . prepare <nl> + prepared = prepare ( graph_module , qconfig_dict , inplace ) <nl> + return prepared <nl> + <nl> + def prepare_fx ( graph_module , qconfig_dict , inplace = False ) : <nl> + r " " " Prepare a model for post training static quantization or <nl> + qantization aware training , not for public use . <nl> + <nl> + Args : <nl> + graph_module : model from symbolic_tracing ( torch . fx . symbolic_trace ) , must be <nl> + an eval model <nl> + qconfig_dict : see : func : ` ~ torch . quantization . quantize_fx ` <nl> + <nl> + Return : <nl> + A GraphModule with observer or fake quant modules , ready for <nl> + calibration or quantization aware training <nl> + " " " <nl> + return _prepare_fx ( graph_module , qconfig_dict , inplace , is_dynamic_quant = False ) <nl> + <nl> + def prepare_static_fx ( graph_module , qconfig_dict , inplace = False ) : <nl> + assert not graph_module . training , ' prepare_static_fx only works for models in ' + \ <nl> + ' eval mode ' <nl> + return prepare_fx ( graph_moduel , qconfig_dict , inplace ) <nl> + <nl> + def prepare_qat_fx ( graph_module , qconfig_dict , inplace = False ) : <nl> + r " " " Prepare a model for quantization aware training <nl> + Args : <nl> + graph_module : model from symbolic_tracing ( torch . fx . symbolic_trace ) , must be <nl> + a train model <nl> + qconfig_dict : see : func : ` ~ torch . quantization . quantize_fx ` <nl> + <nl> + Return : <nl> + A GraphModule with observer or fake quant modules , ready for <nl> + calibration or quantization aware training <nl> + " " " <nl> + assert graph_module . training , ' prepare_qat_fx only works for models in ' + \ <nl> + ' train mode ' <nl> + return prepare_fx ( graph_moduel , qconfig_dict , inplace ) <nl> + <nl> + def prepare_dynamic_fx ( graph_module , qconfig_dict , inplace = False ) : <nl> + r " " " Prepare a model for post training dynamic quantization <nl> + " " " <nl> + return _prepare_fx ( graph_module , qconfig_dict , inplace , True ) <nl> + <nl> + def _convert_fx ( graph_module , inplace = False , debug = False , is_dynamic_quant = False ) : <nl> + _check_is_graph_module ( graph_module ) <nl> + quantizer = Quantizer ( ) <nl> + return quantizer . convert ( graph_module , inplace , debug , is_dynamic_quant ) <nl> + <nl> + def convert_fx ( graph_module , inplace = False , debug = False ) : <nl> + r " " " Convert a calibrated or trained model to a quantized model <nl> + " " " <nl> + return _convert_fx ( graph_module , inplace , debug , is_dynamic_quant = False ) <nl> + <nl> + convert_static_fx = convert_fx <nl> + convert_qat_fx = convert_fx <nl> + <nl> + def convert_dynamic_fx ( graph_module , inplace = False , debug = False ) : <nl> + return _convert_fx ( graph_module , inplace , debug , is_dynamic_quant = True ) <nl> + <nl> + def _quantize_fx ( model , qconfig_dict , run_fn = None , run_args = None , inplace = False , <nl> + debug = False , is_dynamic_quant = False ) : <nl> + assert not model . training , ' quantize_fx is only used for post training ' + \ <nl> + ' quantization ( eval mode ) , for quantization aware training please use ' + \ <nl> + ' prepare_qat_fx and convert_qat_fx . ' <nl> + <nl> + if is_dynamic_quant : <nl> + model = prepare_dynamic_fx ( model , qconfig_dict , inplace ) <nl> + # TODO : change inplace to True since the model is already copied in <nl> + # prepare <nl> + model = convert_dynamic_fx ( model , False , debug ) <nl> + else : <nl> + assert run_fn , " Must provide calibration function for post training static quantization " <nl> + assert run_args , " Must provide calibration dataset for post training static quantization " <nl> + model = prepare_fx ( model , qconfig_dict , inplace ) <nl> + run_fn ( model , * run_args ) <nl> + # TODO : change inplace to True since the model is already copied in <nl> + # prepare <nl> + model = convert_fx ( model , False , debug ) <nl> + <nl> + return model <nl> + <nl> + <nl> + def quantize_fx ( model , qconfig_dict , run_fn , run_args , inplace = False , debug = False ) : <nl> + r " " " Quantize the input float symbolically traced GraphModule model with <nl> + post training static quantization <nl> + <nl> + First it will prepare the model for calibration , then it calls <nl> + ` run_fn ` which will run the calibration step , after that we will <nl> + convert the model to a quantized model . <nl> + <nl> + Args : <nl> + ` model ` : input float TorchScript model <nl> + ` qconfig_dict ` : qconfig_dict is a dictionary with names of sub modules as key and <nl> + qconfig for that module as value , empty key means the qconfig will be applied <nl> + to whole model unless it ’ s overwritten by more specific configurations , the <nl> + qconfig for each module is either found in the dictionary or fallback to <nl> + the qconfig of parent module . <nl> + <nl> + Right now qconfig_dict is the only way to configure how the model is quantized , <nl> + and it is done in the granularity of module , that is , we only support one type <nl> + of qconfig for each torch . nn . Module , and the qconfig for sub module will <nl> + override the qconfig for parent module , empty string means global configuration . <nl> + ` run_fn ` : a calibration function for calibrating the prepared model <nl> + ` run_args ` : positional arguments for ` run_fn ` <nl> + ` inplace ` : carry out model transformations in - place , the original module is <nl> + mutated <nl> + ` debug ` : flag for producing a debug friendly model ( preserve weight attribute ) <nl> + <nl> + Return : <nl> + Quantized TorchSciprt model . <nl> + <nl> + Example : <nl> + ` ` ` python <nl> + import torch <nl> + from torch . quantization import get_default_qconfig <nl> + from torch . quantization import quantize_fx <nl> + <nl> + graph_module = torch . fx . symbolic_trace ( float_model . eval ( ) ) <nl> + qconfig = get_default_qconfig ( ' fbgemm ' ) <nl> + def calibrate ( model , data_loader ) : <nl> + model . eval ( ) <nl> + with torch . no_grad ( ) : <nl> + for image , target in data_loader : <nl> + model ( image ) <nl> + <nl> + quantized_model = quantize_fx ( <nl> + graph_module , <nl> + { ' ' : qconfig } , <nl> + calibrate , <nl> + [ data_loader_test ] ) <nl> + ` ` ` <nl> + " " " <nl> + return _quantize_fx ( <nl> + model , qconfig_dict , run_fn , run_args , inplace , debug , is_dynamic_quant = False ) <nl> + <nl> + def quantize_dynamic_fx ( model , qconfig_dict , inplace = False , debug = False ) : <nl> + r " " " Quantize the input float symbolically traced GraphModule model with <nl> + post training dynamic quantization . <nl> + Currently only qint8 quantization of torch . nn . Linear is supported . <nl> + <nl> + Args : <nl> + ` model ` : input float TorchScript model <nl> + ` qconfig_dict ` : qconfig_dict is a dictionary with names of sub modules as key and <nl> + qconfig for that module as value , please see detailed <nl> + descriptions in : func : ` ~ torch . quantization . quantize_fx ` <nl> + ` inplace ` : carry out model transformations in - place , the original module is <nl> + mutated <nl> + ` debug ` : flag for producing a debug friendly model ( preserve weight attribute ) <nl> + <nl> + Return : <nl> + Quantized TorchSciprt model . <nl> + <nl> + Example : <nl> + ` ` ` python <nl> + import torch <nl> + from torch . quantization import per_channel_dynamic_qconfig <nl> + from torch . quantization import quantize_dynmiac_fx <nl> + <nl> + graph_module = torch . fx . symbolic_trace ( float_model . eval ( ) ) <nl> + qconfig = get_default_qconfig ( ' fbgemm ' ) <nl> + def calibrate ( model , data_loader ) : <nl> + model . eval ( ) <nl> + with torch . no_grad ( ) : <nl> + for image , target in data_loader : <nl> + model ( image ) <nl> + <nl> + quantized_model = quantize_dynamic_fx ( <nl> + graph_module , <nl> + { ' ' : qconfig } , <nl> + calibrate , <nl> + [ data_loader_test ] ) <nl> + ` ` ` <nl> + " " " <nl> + return _quantize_fx ( <nl> + model , qconfig_dict , inplace = inplace , debug = debug , is_dynamic_quant = True ) <nl> mmm a / torch / quantization / quantize_jit . py <nl> ppp b / torch / quantization / quantize_jit . py <nl> <nl> from __future__ import absolute_import , division , print_function , unicode_literals <nl> <nl> - import enum <nl> import torch <nl> from . qconfig import QConfig <nl> + from . quant_type import QuantType <nl> from torch . jit . _recursive import wrap_cpp_module <nl> <nl> - # Quantization type ( dynamic quantization , static quantization ) . <nl> - # Should match the c + + enum in quantization_type . h <nl> - class QuantType ( enum . IntEnum ) : <nl> - DYNAMIC = 0 <nl> - STATIC = 1 <nl> - <nl> def _check_is_script_module ( model ) : <nl> if not isinstance ( model , torch . jit . ScriptModule ) : <nl> raise ValueError ( ' input must be a script module , got : ' + str ( type ( model ) ) ) <nl> mmm a / torch / testing / _internal / common_quantization . py <nl> ppp b / torch / testing / _internal / common_quantization . py <nl> <nl> from torch . fx import symbolic_trace <nl> <nl> # graph mode quantization based on fx <nl> - from torch . quantization . _quantize_fx import ( <nl> - Quantizer , <nl> + from torch . quantization import ( <nl> QuantType , <nl> - fuse , <nl> + fuse_fx , <nl> + prepare_fx , <nl> + prepare_dynamic_fx , <nl> + convert_fx , <nl> + convert_dynamic_fx , <nl> ) <nl> <nl> import copy <nl> def checkGraphModeFxOp ( self , model , inputs , quant_type , <nl> else : <nl> model . eval ( ) <nl> original = symbolic_trace ( model ) <nl> - fused = fuse ( original ) <nl> + fused = fuse_fx ( original ) <nl> <nl> - quantizer = Quantizer ( ) <nl> qconfig_dict = { ' ' : get_default_qconfig ( torch . backends . quantized . engine ) } <nl> if quant_type = = QuantType . DYNAMIC : <nl> - prepared = quantizer . prepare_dynamic ( fused , qconfig_dict ) <nl> + prepare = prepare_dynamic_fx <nl> + convert = convert_dynamic_fx <nl> else : <nl> - prepared = quantizer . prepare ( fused , qconfig_dict ) <nl> + prepare = prepare_fx <nl> + convert = convert_fx <nl> <nl> + prepared = prepare ( fused , qconfig_dict ) <nl> prepared ( * inputs ) <nl> - qgraph = quantizer . convert ( prepared ) <nl> - qgraph_debug = quantizer . convert ( prepared , debug = True ) <nl> + qgraph = convert ( prepared ) <nl> + qgraph_debug = convert ( prepared , debug = True ) <nl> <nl> result = qgraph ( * inputs ) <nl> result_debug = qgraph_debug ( * inputs ) <nl>
[ quant ] [ graphmode ] [ fx ] Add top level APIs ( )
pytorch/pytorch
eb4199b0a72bd390780fef5291f72cf213646ff9
2020-08-31T17:12:55Z
mmm a / tensorflow / lite / delegates / gpu / cl / kernels / BUILD <nl> ppp b / tensorflow / lite / delegates / gpu / cl / kernels / BUILD <nl> cc_library ( <nl> srcs = [ " util . cc " ] , <nl> hdrs = [ " util . h " ] , <nl> deps = [ <nl> - " / / tensorflow / lite / delegates / gpu / cl : cl_device " , <nl> + " / / tensorflow / lite / delegates / gpu / cl : device_info " , <nl> " / / tensorflow / lite / delegates / gpu / cl : precision " , <nl> " / / tensorflow / lite / delegates / gpu / cl : tensor_type " , <nl> " / / tensorflow / lite / delegates / gpu / common : access_type " , <nl> mmm a / tensorflow / lite / delegates / gpu / cl / kernels / conv_buffer_1x1 . cc <nl> ppp b / tensorflow / lite / delegates / gpu / cl / kernels / conv_buffer_1x1 . cc <nl> ConvBuffer1x1 : : ConvParams GetBestParams ( const CLDevice & device , <nl> } <nl> <nl> int task_size = shape . w * shape . b * shape . h * dst_depth ; <nl> - int block_size = <nl> - GetRecommendedBlockSizeForConv ( device , definition . precision , task_size ) ; <nl> + int block_size = GetRecommendedBlockSizeForConv ( <nl> + device . info_ , definition . precision , task_size ) ; <nl> <nl> if ( ! can_use_flt8 & & block_size > 4 ) { <nl> block_size = 4 ; <nl> mmm a / tensorflow / lite / delegates / gpu / cl / kernels / conv_powervr . cc <nl> ppp b / tensorflow / lite / delegates / gpu / cl / kernels / conv_powervr . cc <nl> ConvPowerVR : : ConvParams ConvPowerVR : : GuessBestParams ( <nl> int block_size = 2 ; <nl> if ( dst_shape ) { <nl> int task_size = dst_shape - > w * dst_shape - > b * dst_shape - > h * dst_depth ; <nl> - block_size = GetRecommendedBlockSizeForConv ( device , definition . precision , <nl> - task_size ) ; <nl> + block_size = GetRecommendedBlockSizeForConv ( <nl> + device . info_ , definition . precision , task_size ) ; <nl> } <nl> if ( ! x_kernel_is_1 | | ! y_kernel_is_1 ) { <nl> block_size = std : : min ( block_size , 4 ) ; <nl> mmm a / tensorflow / lite / delegates / gpu / cl / kernels / util . cc <nl> ppp b / tensorflow / lite / delegates / gpu / cl / kernels / util . cc <nl> std : : string GetXStrideCorrected ( const std : : string & src_x , <nl> batch_size , stride_x , padding_x ) ; <nl> } <nl> <nl> - TextureAddressMode GetFastestZeroMode ( const CLDevice & device ) { <nl> - return device . IsAdreno3xx ( ) ? TextureAddressMode : : DONT_CARE <nl> - : TextureAddressMode : : ZERO ; <nl> - } <nl> - <nl> - TextureAddressMode GetFastestZeroMode ( const DeviceInfo & device_info ) { <nl> - return device_info . IsAdreno3xx ( ) ? TextureAddressMode : : DONT_CARE <nl> - : TextureAddressMode : : ZERO ; <nl> - } <nl> - <nl> float4 GetMaskForLastPlane ( int channels ) { <nl> float4 mask = float4 ( 0 . 0f ) ; <nl> const int reminder = channels % 4 = = 0 ? 4 : channels % 4 ; <nl> int3 GetFirstSuitableWorkGroup ( const std : : vector < int3 > & wgs , int max_wg_size ) { <nl> return { 1 , 1 , 1 } ; <nl> } <nl> <nl> - int GetRecommendedBlockSizeForConv ( const CLDevice & device , <nl> + int GetRecommendedBlockSizeForConv ( const DeviceInfo & device_info , <nl> CalculationsPrecision precision , <nl> int task_size ) { <nl> const float task_size_per_cu = <nl> - task_size / static_cast < float > ( device . info_ . compute_units_count ) ; <nl> + task_size / static_cast < float > ( device_info . compute_units_count ) ; <nl> int block_size = 1 ; <nl> float threshold_1 = FLT_MAX ; <nl> float threshold_2 = FLT_MAX ; <nl> float threshold_4 = FLT_MAX ; <nl> - if ( ! device . IsMali ( ) ) { <nl> + if ( ! device_info . IsMali ( ) ) { <nl> return 1 ; <nl> } <nl> - MaliInfo mali_info = device . info_ . mali_info ; <nl> + MaliInfo mali_info = device_info . mali_info ; <nl> switch ( precision ) { <nl> case CalculationsPrecision : : F16 : <nl> if ( mali_info . IsBifrostGen1 ( ) ) { <nl> mmm a / tensorflow / lite / delegates / gpu / cl / kernels / util . h <nl> ppp b / tensorflow / lite / delegates / gpu / cl / kernels / util . h <nl> limitations under the License . <nl> # include < string > <nl> <nl> # include " absl / types / span . h " <nl> - # include " tensorflow / lite / delegates / gpu / cl / cl_device . h " <nl> + # include " tensorflow / lite / delegates / gpu / cl / device_info . h " <nl> # include " tensorflow / lite / delegates / gpu / cl / precision . h " <nl> # include " tensorflow / lite / delegates / gpu / cl / tensor_type . h " <nl> # include " tensorflow / lite / delegates / gpu / common / access_type . h " <nl> float4 GetMaskForLastPlane ( int channels ) ; <nl> int3 GetFirstSuitableWorkGroup ( const std : : vector < int3 > & wgs , int max_wg_size ) ; <nl> <nl> / / task_size as amount of FLT4 processed elements . <nl> - int GetRecommendedBlockSizeForConv ( const CLDevice & device , <nl> + int GetRecommendedBlockSizeForConv ( const DeviceInfo & device , <nl> CalculationsPrecision precision , <nl> int task_size ) ; <nl> } / / namespace cl <nl>
Replace CLDevice with DeviceInfo in util . h .
tensorflow/tensorflow
c69cd441212e35a3157d067b263314bcb9b34c0e
2020-08-10T21:38:18Z
mmm a / dbms / include / DB / Interpreters / ExpressionAnalyzer . h <nl> ppp b / dbms / include / DB / Interpreters / ExpressionAnalyzer . h <nl> class ExpressionAnalyzer : private boost : : noncopyable <nl> / / / После агрегации : <nl> bool appendHaving ( ExpressionActionsChain & chain ) ; <nl> void appendSelect ( ExpressionActionsChain & chain ) ; <nl> - bool appendArrayJoin ( ExpressionActionsChain & chain ) ; <nl> bool appendOrderBy ( ExpressionActionsChain & chain ) ; <nl> / / / Удаляет все столбцы кроме выбираемых SELECT , упорядочивает оставшиеся столбцы и переименовывает их в алиасы . <nl> void appendProjectResult ( ExpressionActionsChain & chain ) ; <nl> mmm a / dbms / include / DB / Parsers / ASTIdentifier . h <nl> ppp b / dbms / include / DB / Parsers / ASTIdentifier . h <nl> class ASTIdentifier : public IAST <nl> Database , <nl> Table , <nl> Format , <nl> + ArrayJoin , <nl> } ; <nl> <nl> / / / имя <nl> mmm a / dbms / src / Interpreters / ExpressionAnalyzer . cpp <nl> ppp b / dbms / src / Interpreters / ExpressionAnalyzer . cpp <nl> void ExpressionAnalyzer : : normalizeTreeImpl ( ASTPtr & ast , MapOfASTs & finished_as <nl> } <nl> else if ( ASTIdentifier * node = dynamic_cast < ASTIdentifier * > ( & * ast ) ) <nl> { <nl> - if ( node - > kind = = ASTIdentifier : : Column ) <nl> + if ( node - > kind = = ASTIdentifier : : Column | | node - > kind = = ASTIdentifier : : ArrayJoin ) <nl> { <nl> / / / Если это алиас , но не родительский алиас ( чтобы работали конструкции вроде " SELECT column + 1 AS column " ) . <nl> Aliases : : const_iterator jt = aliases . find ( node - > name ) ; <nl> void ExpressionAnalyzer : : getActionsImpl ( ASTPtr ast , bool no_subqueries , bool onl <nl> additional_requirements ) ; <nl> } <nl> } <nl> + else if ( ASTIdentifier * node = dynamic_cast < ASTIdentifier * > ( & * ast ) ) <nl> + { <nl> + if ( node - > kind = = ASTIdentifier : : ArrayJoin & & ! only_consts ) <nl> + actions_stack . addAction ( ExpressionActions : : Action : : arrayJoin ( node - > name , " " ) ) ; <nl> + } <nl> else if ( ASTLiteral * node = dynamic_cast < ASTLiteral * > ( & * ast ) ) <nl> { <nl> DataTypePtr type = apply_visitor ( FieldToDataType ( ) , node - > value ) ; <nl> void ExpressionAnalyzer : : appendSelect ( ExpressionActionsChain & chain ) <nl> <nl> getRootActionsImpl ( select_query - > select_expression_list , false , false , * step . actions ) ; <nl> <nl> - appendArrayJoin ( chain ) ; <nl> - <nl> ASTs asts = select_query - > select_expression_list - > children ; <nl> for ( size_t i = 0 ; i < asts . size ( ) ; + + i ) <nl> { <nl> void ExpressionAnalyzer : : appendSelect ( ExpressionActionsChain & chain ) <nl> } <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendArrayJoin ( ExpressionActionsChain & chain ) <nl> - { <nl> - assertSelect ( ) ; <nl> - <nl> - if ( ! select_query - > array_join_identifier ) <nl> - return false ; <nl> - <nl> - initChain ( chain , aggregated_columns ) ; <nl> - ExpressionActionsChain : : Step & step = chain . steps . back ( ) ; <nl> - <nl> - step . actions - > add ( ExpressionActions : : Action : : arrayJoin ( select_query - > array_join_identifier - > getColumnName ( ) , " " ) ) ; <nl> - <nl> - return true ; <nl> - } <nl> - <nl> bool ExpressionAnalyzer : : appendOrderBy ( ExpressionActionsChain & chain ) <nl> { <nl> assertSelect ( ) ; <nl> mmm a / dbms / src / Parsers / ParserSelectQuery . cpp <nl> ppp b / dbms / src / Parsers / ParserSelectQuery . cpp <nl> bool ParserSelectQuery : : parseImpl ( Pos & pos , Pos end , ASTPtr & node , String & ex <nl> if ( ! ident . parse ( pos , end , select_query - > array_join_identifier , expected ) ) <nl> return false ; <nl> <nl> + dynamic_cast < ASTIdentifier & > ( * select_query - > array_join_identifier ) . kind = ASTIdentifier : : ArrayJoin ; <nl> + <nl> ws . ignore ( pos , end ) ; <nl> } <nl> <nl>
fixed ' unknown column ' issue with ARRAY JOIN section [ # CONV - 7967 ]
ClickHouse/ClickHouse
3ab02bffef27448d0d675c4c7599d1212cc3e9a8
2013-07-23T16:15:40Z
mmm a / src / ndarray . jl <nl> ppp b / src / ndarray . jl <nl> end <nl> <nl> Base . first ( x : : NDArray ) = _first ( x ) <nl> <nl> + Base . endof ( x : : NDArray ) = length ( x ) <nl> + <nl> " " " <nl> slice ( arr : : NDArray , start : stop ) <nl> <nl> mmm a / test / unittest / ndarray . jl <nl> ppp b / test / unittest / ndarray . jl <nl> function test_first ( ) <nl> end <nl> end # function test_first <nl> <nl> + function test_endof ( ) <nl> + info ( " NDArray : : endof " ) <nl> + let A = [ 1 2 ; 3 4 ; 5 6 ] , x = mx . NDArray ( A ) <nl> + @ test endof ( A ) = = endof ( x ) <nl> + end <nl> + end # function test_endof <nl> + <nl> function test_plus ( ) <nl> dims = rand_dims ( ) <nl> t1 , a1 = rand_tensors ( dims ) <nl> end # function test_size ( ) <nl> test_slice ( ) <nl> test_linear_idx ( ) <nl> test_first ( ) <nl> + test_endof ( ) <nl> test_plus ( ) <nl> test_minus ( ) <nl> test_mul ( ) <nl>
ndarray : implement endof ( )
apache/incubator-mxnet
8a19651a680b671137d26f4b148c02efcf52c55c
2017-12-02T16:59:57Z
mmm a / site / source / docs / api_reference / emscripten . h . rst <nl> ppp b / site / source / docs / api_reference / emscripten . h . rst <nl> Functions <nl> : rtype : double <nl> : return : The pixel ratio or 1 . 0 if not supported . <nl> <nl> + . . c : function : : char * emscripten_get_window_title ( ) <nl> + <nl> + Returns the window title . <nl> + <nl> + The returned string will be valid until the next call of the function <nl> + <nl> + . . c : function : : void emscripten_set_window_title ( char * title ) <nl> + <nl> + Sets the window title . <nl> + <nl> + . . c : function : : void emscripten_get_screen_size ( int * width , int * height ) <nl> + <nl> + Returns the width and height of the screen . <nl> + <nl> . . c : function : : void emscripten_hide_mouse ( void ) <nl> <nl> Hide the OS mouse cursor over the canvas . <nl> mmm a / src / library_browser . js <nl> ppp b / src / library_browser . js <nl> var LibraryBrowser = { <nl> exit ( status ) ; <nl> } , <nl> <nl> + emscripten_get_window_title__proxy : ' sync ' , <nl> + emscripten_get_window_title__sig : ' iv ' , <nl> + emscripten_get_window_title : function ( ) { <nl> + var buflen = 256 ; <nl> + <nl> + if ( ! _emscripten_get_window_title . buffer ) { <nl> + _emscripten_get_window_title . buffer = _malloc ( buflen ) ; <nl> + } <nl> + <nl> + writeAsciiToMemory ( <nl> + document . title . slice ( 0 , buflen - 1 ) , <nl> + _emscripten_get_window_title . buffer <nl> + ) ; <nl> + <nl> + return _emscripten_get_window_title . buffer ; <nl> + } , <nl> + <nl> + emscripten_set_window_title__proxy : ' sync ' , <nl> + emscripten_set_window_title__sig : ' vi ' , <nl> + emscripten_set_window_title : function ( title ) { <nl> + setWindowTitle ( AsciiToString ( title ) ) ; <nl> + } , <nl> + <nl> + emscripten_get_screen_size__proxy : ' sync ' , <nl> + emscripten_get_screen_size__sig : ' vii ' , <nl> + emscripten_get_screen_size : function ( width , height ) { <nl> + { { { makeSetValue ( ' width ' , ' 0 ' , ' screen . width ' , ' i32 ' ) } } } ; <nl> + { { { makeSetValue ( ' height ' , ' 0 ' , ' screen . height ' , ' i32 ' ) } } } ; <nl> + } , <nl> + <nl> emscripten_hide_mouse__proxy : ' sync ' , <nl> emscripten_hide_mouse__sig : ' v ' , <nl> emscripten_hide_mouse : function ( ) { <nl> mmm a / system / include / emscripten / emscripten . h <nl> ppp b / system / include / emscripten / emscripten . h <nl> extern void emscripten_force_exit ( int status ) ; <nl> <nl> double emscripten_get_device_pixel_ratio ( void ) ; <nl> <nl> + char * emscripten_get_window_title ( ) ; <nl> + void emscripten_set_window_title ( const char * ) ; <nl> + void emscripten_get_screen_size ( int * width , int * height ) ; <nl> void emscripten_hide_mouse ( void ) ; <nl> void emscripten_set_canvas_size ( int width , int height ) __attribute__ ( ( deprecated ( " This variant does not allow specifying the target canvas " , " Use emscripten_set_canvas_element_size ( ) instead " ) ) ) ; <nl> void emscripten_get_canvas_size ( int * width , int * height , int * isFullscreen ) __attribute__ ( ( deprecated ( " This variant does not allow specifying the target canvas " , " Use emscripten_get_canvas_element_size ( ) and emscripten_get_fullscreen_status ( ) instead " ) ) ) ; <nl> mmm a / tests / test_html5 . c <nl> ppp b / tests / test_html5 . c <nl> int main ( ) <nl> ret = emscripten_set_webglcontextrestored_callback ( " # canvas " , 0 , 1 , webglcontext_callback ) ; <nl> TEST_RESULT ( emscripten_set_webglcontextrestored_callback ) ; <nl> <nl> - / * For the events to function , one must either call emscripten_set_main_loop or enable Module . noExitRuntime by some other means . <nl> + char * source_window_title = " test window title " ; <nl> + emscripten_set_window_title ( source_window_title ) ; <nl> + char * current_window_title = emscripten_get_window_title ( ) ; <nl> + ret = ( strcmp ( source_window_title , current_window_title ) = = 0 \ <nl> + ? EMSCRIPTEN_RESULT_SUCCESS : EMSCRIPTEN_RESULT_FAILED ) ; <nl> + TEST_RESULT ( emscripten_get_window_title ) ; <nl> + <nl> + int width , height ; <nl> + emscripten_get_screen_size ( & width , & height ) ; <nl> + ret = ( width & & height ) ? EMSCRIPTEN_RESULT_SUCCESS : EMSCRIPTEN_RESULT_FAILED ; <nl> + TEST_RESULT ( emscripten_get_screen_size ) ; <nl> + <nl> + / * For the events to function , one must either call emscripten_set_main_loop or enable Module . noExitRuntime by some other means . <nl> Otherwise the application will exit after leaving main ( ) , and the atexit handlers will clean up all event hooks ( by design ) . * / <nl> EM_ASM ( noExitRuntime = true ) ; <nl> <nl>
SDL2 Pthread Proxy APIs ( )
emscripten-core/emscripten
8b7f8349b1553669880e58485f198cc48faf6466
2020-08-03T18:48:19Z
mmm a / xbmc / Application . cpp <nl> ppp b / xbmc / Application . cpp <nl> bool CApplication : : Initialize ( ) <nl> StartPVRManager ( false ) ; <nl> g_windowManager . ActivateWindow ( g_SkinInfo - > GetFirstWindow ( ) ) ; <nl> } <nl> + <nl> + CStereoscopicsManager : : Get ( ) . Initialize ( ) ; <nl> } <nl> <nl> } <nl> mmm a / xbmc / guilib / StereoscopicsManager . cpp <nl> ppp b / xbmc / guilib / StereoscopicsManager . cpp <nl> CStereoscopicsManager & CStereoscopicsManager : : Get ( void ) <nl> return sStereoscopicsManager ; <nl> } <nl> <nl> + void CStereoscopicsManager : : Initialize ( void ) <nl> + { <nl> + m_lastStereoMode = GetStereoMode ( ) ; <nl> + / / turn off stereo mode on XBMC startup <nl> + SetStereoMode ( RENDER_STEREO_MODE_OFF ) ; <nl> + } <nl> + <nl> bool CStereoscopicsManager : : HasStereoscopicSupport ( void ) <nl> { <nl> return ( bool ) CSettings : : Get ( ) . GetBool ( " videoscreen . hasstereoscopicsupport " ) ; <nl> mmm a / xbmc / guilib / StereoscopicsManager . h <nl> ppp b / xbmc / guilib / StereoscopicsManager . h <nl> class CStereoscopicsManager : public ISettingCallback , <nl> * / <nl> static CStereoscopicsManager & Get ( void ) ; <nl> <nl> + void Initialize ( void ) ; <nl> bool HasStereoscopicSupport ( void ) ; <nl> void SetStereoMode ( const RENDER_STEREO_MODE & mode ) ; <nl> RENDER_STEREO_MODE GetStereoMode ( void ) ; <nl> mmm a / xbmc / windows / GUIWindowLoginScreen . cpp <nl> ppp b / xbmc / windows / GUIWindowLoginScreen . cpp <nl> <nl> # include " guilib / GUIMessage . h " <nl> # include " GUIUserMessages . h " <nl> # include " guilib / GUIWindowManager . h " <nl> + # include " guilib / StereoscopicsManager . h " <nl> # include " dialogs / GUIDialogOK . h " <nl> # include " settings / Settings . h " <nl> # include " FileItem . h " <nl> void CGUIWindowLoginScreen : : LoadProfile ( unsigned int profile ) <nl> g_windowManager . ChangeActiveWindow ( g_SkinInfo - > GetFirstWindow ( ) ) ; <nl> <nl> g_application . UpdateLibraries ( ) ; <nl> + CStereoscopicsManager : : Get ( ) . Initialize ( ) ; <nl> } <nl>
[ 3D ] turn off stereoscopic mode on startup
xbmc/xbmc
99fd57990f87b751dc5ea8d4ae77c5f50340682d
2013-08-01T14:59:02Z
mmm a / tensorflow / compiler / mlir / lite / BUILD <nl> ppp b / tensorflow / compiler / mlir / lite / BUILD <nl> genrule ( <nl> ] , <nl> cmd = ( " $ ( location / / tensorflow / compiler / mlir / lite / quantization : op_quant_spec_getters_gen ) " + <nl> " - I external / local_config_mlir / include " + <nl> + " - I external / org_tensorflow " + <nl> " $ ( location / / tensorflow / compiler / mlir / lite : ir / tfl_ops . td ) " + " - o $ @ " ) , <nl> tools = [ " / / tensorflow / compiler / mlir / lite / quantization : op_quant_spec_getters_gen " ] , <nl> ) <nl> genrule ( <nl> ] , <nl> cmd = ( " $ ( location : operator - converter - gen ) " + <nl> " - I external / local_config_mlir / include " + <nl> + " - I external / org_tensorflow " + <nl> " $ ( location / / tensorflow / compiler / mlir / lite : ir / tfl_ops . td ) " + " - o $ @ " ) , <nl> tools = [ " : operator - converter - gen " ] , <nl> ) <nl> mmm a / tensorflow / compiler / mlir / tensorflow / BUILD <nl> ppp b / tensorflow / compiler / mlir / tensorflow / BUILD <nl> genrule ( <nl> ] , <nl> cmd = ( " $ ( location : derived_attr_populator_gen ) " + <nl> " - I external / local_config_mlir / include " + <nl> + " - I external / org_tensorflow " + <nl> " $ ( location / / tensorflow / compiler / mlir / tensorflow : ir / tf_ops . td ) " + " - o $ @ " ) , <nl> tools = [ " : derived_attr_populator_gen " ] , <nl> ) <nl>
Internal build change
tensorflow/tensorflow
4737a77c4f2356ca795e926bfcaa8483ece839d8
2019-10-02T14:37:39Z
mmm a / cocos2dx / particle_nodes / CCParticleSystem . cpp <nl> ppp b / cocos2dx / particle_nodes / CCParticleSystem . cpp <nl> bool CCParticleSystem : : initWithDictionary ( CCDictionary * dictionary ) <nl> CCAssert ( deflated ! = NULL , " CCParticleSystem : error ungzipping textureImageData " ) ; <nl> CC_BREAK_IF ( ! deflated ) ; <nl> <nl> - / / don ' t delete image , VolatileTexture use it in CCTextureCache : : sharedTextureCache ( ) - > addUIImage ( ) <nl> + / / For android , we should retain it in VolatileTexture : : addCCImage which invoked in CCTextureCache : : sharedTextureCache ( ) - > addUIImage ( ) <nl> image = new CCImage ( ) ; <nl> bool isOK = image - > initWithImageData ( deflated , deflatedLen ) ; <nl> CCAssert ( isOK , " CCParticleSystem : error init image with Data " ) ; <nl> CC_BREAK_IF ( ! isOK ) ; <nl> <nl> setTexture ( CCTextureCache : : sharedTextureCache ( ) - > addUIImage ( image , fullpath . c_str ( ) ) ) ; <nl> + <nl> + image - > release ( ) ; <nl> } <nl> } <nl> CCAssert ( this - > m_pTexture ! = NULL , " CCParticleSystem : error loading the texture " ) ; <nl> mmm a / cocos2dx / platform / CCImage . h <nl> ppp b / cocos2dx / platform / CCImage . h <nl> THE SOFTWARE . <nl> # ifndef __CC_IMAGE_H__ <nl> # define __CC_IMAGE_H__ <nl> <nl> - # include " CCCommon . h " <nl> + # include " CCObject . h " <nl> <nl> NS_CC_BEGIN <nl> <nl> - class CC_DLL CCImage <nl> + class CC_DLL CCImage : public CCObject <nl> { <nl> public : <nl> CCImage ( ) ; <nl> class CC_DLL CCImage <nl> bool hasAlpha ( ) { return m_bHasAlpha ; } <nl> bool isPremultipliedAlpha ( ) { return m_bPreMulti ; } <nl> <nl> - void release ( ) ; <nl> - <nl> / * * <nl> @ brief Save the CCImage data to specified file with specified format . <nl> @ param pszFilePath the file ' s absolute path , including file subfix <nl> mmm a / cocos2dx / textures / CCTextureCache . cpp <nl> ppp b / cocos2dx / textures / CCTextureCache . cpp <nl> VolatileTexture : : VolatileTexture ( CCTexture2D * t ) <nl> VolatileTexture : : ~ VolatileTexture ( ) <nl> { <nl> textures . remove ( this ) ; <nl> - CC_SAFE_FREE ( uiImage ) ; <nl> + CC_SAFE_RELEASE ( uiImage ) ; <nl> } <nl> <nl> void VolatileTexture : : addImageTexture ( CCTexture2D * tt , const char * imageFileName , CCImage : : EImageFormat format ) <nl> void VolatileTexture : : addImageTexture ( CCTexture2D * tt , const char * imageFileName <nl> void VolatileTexture : : addCCImage ( CCTexture2D * tt , CCImage * image ) <nl> { <nl> VolatileTexture * vt = findVolotileTexture ( tt ) ; <nl> - <nl> + image - > retain ( ) ; <nl> vt - > uiImage = image ; <nl> vt - > m_eCashedImageType = kImage ; <nl> } <nl>
Merge pull request from dumganhar / iss1244_particle_leak
cocos2d/cocos2d-x
8c3094200b57e015e42aacaee08b3639996ebf59
2012-05-23T03:31:11Z
mmm a / tensorflow / core / framework / kernel_def_builder . h <nl> ppp b / tensorflow / core / framework / kernel_def_builder . h <nl> class KernelDefBuilder { <nl> / / Required : specify the type of device this kernel supports . <nl> / / Returns * this . <nl> KernelDefBuilder & Device ( const char * device_type ) ; <nl> - / / KernelDefBuilder & Device ( DeviceType device_type ) ; <nl> <nl> / / Specify that this kernel supports a limited set of values for a <nl> / / particular type or list ( type ) attr ( a further restriction than <nl>
Delete stray commented line
tensorflow/tensorflow
335255c6b370ab258eab4e8c32a61ed70510bcc4
2020-11-03T21:39:20Z
mmm a / src / core / surface / completion_queue . c <nl> ppp b / src / core / surface / completion_queue . c <nl> grpc_completion_queue * grpc_completion_queue_create ( void ) { <nl> } <nl> <nl> # ifdef GRPC_CQ_REF_COUNT_DEBUG <nl> - void grpc_cq_internal_ref ( grpc_completion_queue * cc , const char * reason ) { <nl> - gpr_log ( GPR_DEBUG , " CQ : % p ref % d - > % d % s " , cc , ( int ) cc - > owning_refs . count , <nl> - ( int ) cc - > owning_refs . count + 1 , reason ) ; <nl> + void grpc_cq_internal_ref ( grpc_completion_queue * cc , const char * reason , <nl> + const char * file , int line ) { <nl> + gpr_log ( file , line , GPR_LOG_SEVERITY_DEBUG , " CQ : % p ref % d - > % d % s " , <nl> + cc , ( int ) cc - > owning_refs . count , ( int ) cc - > owning_refs . count + 1 , <nl> + reason ) ; <nl> # else <nl> void grpc_cq_internal_ref ( grpc_completion_queue * cc ) { <nl> # endif <nl> static void on_pollset_destroy_done ( void * arg ) { <nl> } <nl> <nl> # ifdef GRPC_CQ_REF_COUNT_DEBUG <nl> - void grpc_cq_internal_unref ( grpc_completion_queue * cc , const char * reason ) { <nl> - gpr_log ( GPR_DEBUG , " CQ : % p unref % d - > % d % s " , cc , ( int ) cc - > owning_refs . count , <nl> - ( int ) cc - > owning_refs . count - 1 , reason ) ; <nl> + void grpc_cq_internal_unref ( grpc_completion_queue * cc , const char * reason , <nl> + const char * file , int line ) { <nl> + gpr_log ( file , line , GPR_LOG_SEVERITY_DEBUG , " CQ : % p unref % d - > % d % s " , <nl> + cc , ( int ) cc - > owning_refs . count , ( int ) cc - > owning_refs . count - 1 , <nl> + reason ) ; <nl> # else <nl> void grpc_cq_internal_unref ( grpc_completion_queue * cc ) { <nl> # endif <nl> mmm a / src / core / surface / completion_queue . h <nl> ppp b / src / core / surface / completion_queue . h <nl> <nl> # include < grpc / grpc . h > <nl> <nl> # ifdef GRPC_CQ_REF_COUNT_DEBUG <nl> - void grpc_cq_internal_ref ( grpc_completion_queue * cc , const char * reason ) ; <nl> - void grpc_cq_internal_unref ( grpc_completion_queue * cc , const char * reason ) ; <nl> - # define GRPC_CQ_INTERNAL_REF ( cc , reason ) grpc_cq_internal_ref ( cc , reason ) <nl> - # define GRPC_CQ_INTERNAL_UNREF ( cc , reason ) grpc_cq_internal_unref ( cc , reason ) <nl> + void grpc_cq_internal_ref ( grpc_completion_queue * cc , const char * reason , <nl> + const char * file , int line ) ; <nl> + void grpc_cq_internal_unref ( grpc_completion_queue * cc , const char * reason , <nl> + const char * file , int line ) ; <nl> + # define GRPC_CQ_INTERNAL_REF ( cc , reason ) \ <nl> + grpc_cq_internal_ref ( cc , reason , __FILE__ , __LINE__ ) <nl> + # define GRPC_CQ_INTERNAL_UNREF ( cc , reason ) \ <nl> + grpc_cq_internal_unref ( cc , reason , __FILE__ , __LINE__ ) <nl> # else <nl> void grpc_cq_internal_ref ( grpc_completion_queue * cc ) ; <nl> void grpc_cq_internal_unref ( grpc_completion_queue * cc ) ; <nl>
Merge pull request from nicolasnoble / completion - queue - refcount - debugging
grpc/grpc
213ac59069b84025c801a6d61aa681dbc80379dc
2015-06-26T17:51:13Z
mmm a / . travis . yml <nl> ppp b / . travis . yml <nl> script : <nl> - mkdir build & & cd build <nl> - $ { CMAKE_DIR } cmake - G Ninja - DWASM_LLVM_CONFIG = $ TRAVIS_BUILD_DIR / ext / wasm - compiler / bin / llvm - config - DSecp256k1_ROOT_DIR = $ TRAVIS_BUILD_DIR / ext - DBINARYEN_ROOT = $ TRAVIS_BUILD_DIR / ext / wasm - compiler - DCMAKE_PREFIX_PATH = $ TRAVIS_BUILD_DIR / ext - DCMAKE_BUILD_TYPE = Release $ EOS_CMAKE_OPTIONS . . <nl> - ninja - j4 <nl> - - ' [ " $ TRAVIS_OS_NAME " = = " osx " ] | | tests / eosd_run_test . sh - - host = localhost - - port = 8888 ' <nl> - - ' [ " $ TRAVIS_OS_NAME " = = " osx " ] | | EOSLIB = . . / contracts tests / chain_test ' <nl> - - ' [ " $ TRAVIS_OS_NAME " = = " osx " ] | | tests / slow_test ' <nl> + - tests / eosd_run_test . sh - - host = localhost - - port = 8888 <nl> + - EOSLIB = . . / contracts tests / chain_test <nl> + - tests / slow_test <nl> - tests / api_test <nl> - - ' [ " $ TRAVIS_OS_NAME " = = " osx " ] | | tests / p2p_tests / sync / test . sh ' <nl> + - tests / p2p_tests / sync / test . sh <nl> - tests / p2p_tests / sync / test . sh - p 2 - d 10 <nl> - - ' [ " $ TRAVIS_OS_NAME " = = " osx " ] | | tests / run_tests . sh ' <nl> - - ' [ " $ TRAVIS_OS_NAME " = = " osx " ] | | tests / eosd_run_mongodb_test . sh ' <nl> + - tests / run_tests . sh <nl> + - tests / eosd_run_mongodb_test . sh <nl>
Travis now has 90 mintues for mac build , adding all tests .
EOSIO/eos
fec5ef75925dab0f20934102954d2946cc2fb3d7
2017-11-20T20:12:38Z
mmm a / js / apps / system / _admin / aardvark / APP / frontend / js / modules / common / org / arangodb / aql / explainer . js <nl> ppp b / js / apps / system / _admin / aardvark / APP / frontend / js / modules / common / org / arangodb / aql / explainer . js <nl> function processQuery ( query , explain ) { <nl> if ( [ " EnumerateCollectionNode " , <nl> " EnumerateListNode " , <nl> " IndexRangeNode " , <nl> + " IndexNode " , <nl> " SubqueryNode " ] . indexOf ( node . type ) ! = = - 1 ) { <nl> level + + ; <nl> } <nl> mmm a / js / common / modules / org / arangodb / aql / explainer . js <nl> ppp b / js / common / modules / org / arangodb / aql / explainer . js <nl> function processQuery ( query , explain ) { <nl> if ( [ " EnumerateCollectionNode " , <nl> " EnumerateListNode " , <nl> " IndexRangeNode " , <nl> + " IndexNode " , <nl> " SubqueryNode " ] . indexOf ( node . type ) ! = = - 1 ) { <nl> level + + ; <nl> } <nl>
fixed explainer indentation
arangodb/arangodb
f9ba16f8d4d59425862744483560c0750e6bb7b7
2015-11-17T10:31:06Z
mmm a / android / build . gradle <nl> ppp b / android / build . gradle <nl> allprojects { <nl> } <nl> } <nl> <nl> - ext . isPublishing = { [ ' uploadArchives ' , ' bintrayUpload ' ] . any { gradle . startParameter . taskNames . contains ( it ) } } <nl> - <nl> ext . deps = [ <nl> jsr305 : ' com . google . code . findbugs : jsr305 : 3 . 0 . 1 ' , <nl> ] <nl> mmm a / android / pytorch_android / build . gradle <nl> ppp b / android / pytorch_android / build . gradle <nl> android { <nl> } <nl> <nl> packagingOptions { <nl> - if ( rootProject . isPublishing ( ) ) { <nl> - exclude ' * * / libfbjni . so ' <nl> - } else { <nl> - pickFirst ' * * / libfbjni . so ' <nl> - } <nl> if ( nativeLibsDoNotStrip . toBoolean ( ) ) { <nl> doNotStrip " * * / * . so " <nl> logger . warn ( ' WARNING : nativeLibsDoNotStrip = = true ; debug symbols included ' ) <nl> android { <nl> } <nl> <nl> dependencies { <nl> - api project ( ' : fbjni ' ) <nl> - <nl> + implementation ' com . facebook . fbjni : fbjni - java - only : 0 . 0 . 3 ' <nl> implementation ' com . android . support : appcompat - v7 : 28 . 0 . 0 ' <nl> implementation ' com . facebook . soloader : nativeloader : 0 . 8 . 0 ' <nl> <nl> mmm a / android / test_app / app / build . gradle <nl> ppp b / android / test_app / app / build . gradle <nl> android { <nl> } <nl> } <nl> packagingOptions { <nl> - pickFirst ' * * / libfbjni . so ' <nl> doNotStrip ' * * . so ' <nl> } <nl> } <nl>
Switch to open sourced fbjni ( )
pytorch/pytorch
db90a5b992e4afcd9a7c66f24ba26f890059b191
2019-12-13T04:05:22Z
mmm a / . travis . yml <nl> ppp b / . travis . yml <nl> matrix : <nl> - tools <nl> - build - tools - 23 . 0 . 2 <nl> - android - 23 <nl> - - android - 19 <nl> + - android - 22 <nl> - extra - google - m2repository <nl> - extra - android - m2repository <nl> - sys - img - armeabi - v7a - android - 21 <nl> mmm a / test / ci - funcs . sh <nl> ppp b / test / ci - funcs . sh <nl> function installAndroidSDK { <nl> } <nl> <nl> function createAVD { <nl> - echo no | android create avd - - force - n weexavd - t android - 19 - - abi default / armeabi - v7a <nl> + echo no | android create avd - - force - n weexavd - t android - 22 - - abi default / armeabi - v7a <nl> } <nl> <nl> function startAVD { <nl> mmm a / test / scripts / components / recycler . test . js <nl> ppp b / test / scripts / components / recycler . test . js <nl> const isApproximate = ( x , y ) = > { <nl> return Math . abs ( x - y ) < = ( isAndroid ? 2 : 1 . 5 ) <nl> } <nl> <nl> - describe ( ' recycler @ ignore_android ' , function ( ) { <nl> + describe ( ' recycler ' , function ( ) { <nl> this . timeout ( util . getTimeoutMills ( ) ) <nl> const driver = util . createDriver ( wd ) <nl> <nl>
* [ test ] change CI emulator sdk version
apache/incubator-weex
2c4d66954957aa56560d495f2ae48af847b850ab
2017-04-12T08:42:13Z
new file mode 100644 <nl> index 00000000000 . . 8a1bdd95632 <nl> mmm / dev / null <nl> ppp b / demos / election / CO - EST2011 - Alldata . csv <nl> <nl> + SUMLEV , REGION , DIVISION , state , county , Stname , ctyname , CENSUS2010POP , ESTIMATESBASE2010 , POPESTIMATE2010 , POPESTIMATE2011 , NPOPCHG_2010 , NPOPCHG_2011 , Births2010 , Births2011 , Deaths2010 , Deaths2011 , NATURALINC2010 , NATURALINC2011 , INTERNATIONALMIG2010 , INTERNATIONALMIG2011 , DOMESTICMIG2010 , DOMESTICMIG2011 , NETMIG2010 , NETMIG2011 , RESIDUAL2010 , RESIDUAL2011 , GQESTIMATESBASE2010 , GQESTIMATES2010 , GQESTIMATES2011 , Rbirth2011 , Rdeath2011 , RNATURALINC2011 , RINTERNATIONALMIG2011 , RDOMESTICMIG2011 , RNETMIG2011 <nl> + 040 , 3 , 6 , 01 , 000 , Alabama , Alabama , 4779736 , 4779735 , 4785401 , 4802740 , 5666 , 17339 , 14482 , 59866 , 11562 , 47768 , 2920 , 12098 , 1487 , 4461 , 1278 , 696 , 2765 , 5157 , - 19 , 84 , 115816 , 115825 , 115834 , 12 . 48750931 , 9 . 9639752899 , 2 . 5235340198 , 0 . 9305244885 , 0 . 1451793419 , 1 . 0757038304 <nl> + 050 , 3 , 6 , 01 , 001 , Alabama , Autauga County , 54571 , 54571 , 54637 , 55267 , 66 , 630 , 154 , 660 , 92 , 423 , 62 , 237 , 18 , 46 , - 13 , 344 , 5 , 390 , - 1 , 3 , 455 , 455 , 455 , 12 . 010481875 , 7 . 6976270199 , 4 . 3128548551 , 0 . 8370941913 , 6 . 2600087349 , 7 . 0971029262 <nl> + 050 , 3 , 6 , 01 , 003 , Alabama , Baldwin County , 182265 , 182265 , 183259 , 186717 , 994 , 3458 , 520 , 2109 , 411 , 1723 , 109 , 386 , 61 , 176 , 812 , 2870 , 873 , 3046 , 12 , 26 , 2307 , 2307 , 2307 , 11 . 400739507 , 9 . 3141176725 , 2 . 0866218349 , 0 . 9514130646 , 15 . 514519861 , 16 . 465932925 <nl> + 050 , 3 , 6 , 01 , 005 , Alabama , Barbour County , 27457 , 27457 , 27390 , 27119 , - 67 , - 271 , 76 , 292 , 69 , 316 , 7 , - 24 , 13 , 55 , - 86 , - 303 , - 73 , - 248 , - 1 , 1 , 3193 , 3193 , 3193 , 10 . 713827074 , 11 . 594415601 , - 0 . 880588527 , 2 . 0180153736 , - 11 . 11743015 , - 9 . 099414776 <nl> + 050 , 3 , 6 , 01 , 007 , Alabama , Bibb County , 22915 , 22919 , 22880 , 22766 , - 39 , - 114 , 56 , 225 , 52 , 215 , 4 , 10 , 2 , 10 , - 46 , - 135 , - 44 , - 125 , 1 , 1 , 2224 , 2224 , 2224 , 9 . 8584760987 , 9 . 4203216054 , 0 . 4381544933 , 0 . 4381544933 , - 5 . 915085659 , - 5 . 476931166 <nl> + 050 , 3 , 6 , 01 , 009 , Alabama , Blount County , 57322 , 57322 , 57387 , 57677 , 65 , 290 , 170 , 690 , 138 , 556 , 32 , 134 , 27 , 110 , 9 , 50 , 36 , 160 , - 3 , - 4 , 489 , 489 , 489 , 11 . 993325454 , 9 . 6641868873 , 2 . 3291385664 , 1 . 9119794201 , 0 . 8690815546 , 2 . 7810609748 <nl> + 050 , 3 , 6 , 01 , 011 , Alabama , Bullock County , 10914 , 10915 , 10893 , 10542 , - 22 , - 351 , 41 , 165 , 12 , 112 , 29 , 53 , 0 , - 1 , - 51 , - 407 , - 51 , - 408 , 0 , 4 , 1690 , 1690 , 1690 , 15 . 395381386 , 10 . 450198274 , 4 . 9451831117 , - 0 . 093305342 , - 37 . 97527408 , - 38 . 06857943 <nl> + 050 , 3 , 6 , 01 , 013 , Alabama , Butler County , 20947 , 20947 , 20941 , 20650 , - 6 , - 291 , 60 , 258 , 46 , 248 , 14 , 10 , 1 , 1 , - 19 , - 305 , - 18 , - 304 , - 2 , 3 , 333 , 333 , 333 , 12 . 406530259 , 11 . 925656993 , 0 . 4808732659 , 0 . 0480873266 , - 14 . 66663461 , - 14 . 61854728 <nl> + 050 , 3 , 6 , 01 , 015 , Alabama , Calhoun County , 118572 , 118572 , 118426 , 117797 , - 146 , - 629 , 324 , 1385 , 341 , 1344 , - 17 , 41 , 15 , 57 , - 142 , - 727 , - 127 , - 670 , - 2 , 0 , 2919 , 2919 , 2919 , 11 . 726207863 , 11 . 379078244 , 0 . 347129619 , 0 . 4825948362 , - 6 . 155200806 , - 5 . 67260597 <nl> + 050 , 3 , 6 , 01 , 017 , Alabama , Chambers County , 34215 , 34215 , 34143 , 33939 , - 72 , - 204 , 94 , 373 , 110 , 461 , - 16 , - 88 , 4 , 20 , - 59 , - 136 , - 55 , - 116 , - 1 , 0 , 458 , 458 , 458 , 10 . 95737493 , 13 . 542492876 , - 2 . 585117946 , 0 . 5875268059 , - 3 . 99518228 , - 3 . 407655474 <nl> + 050 , 3 , 6 , 01 , 019 , Alabama , Cherokee County , 25989 , 25989 , 25997 , 26057 , 8 , 60 , 48 , 202 , 81 , 295 , - 33 , - 93 , 2 , 6 , 40 , 147 , 42 , 153 , - 1 , 0 , 290 , 290 , 290 , 7 . 7611710916 , 11 . 334383525 , - 3 . 573212433 , 0 . 2305298344 , 5 . 6479809429 , 5 . 8785107773 <nl> + 050 , 3 , 6 , 01 , 021 , Alabama , Chilton County , 43643 , 43642 , 43722 , 43895 , 80 , 173 , 135 , 569 , 108 , 437 , 27 , 132 , 10 , 52 , 44 , - 9 , 54 , 43 , - 1 , - 2 , 393 , 393 , 393 , 12 . 98834701 , 9 . 9752331169 , 3 . 0131138934 , 1 . 186984261 , - 0 . 205439584 , 0 . 9815446774 <nl> + 050 , 3 , 6 , 01 , 023 , Alabama , Choctaw County , 13859 , 13858 , 13851 , 13609 , - 7 , - 242 , 33 , 132 , 21 , 170 , 12 , - 38 , 1 , 3 , - 19 , - 210 , - 18 , - 207 , - 1 , 3 , 129 , 129 , 129 , 9 . 6139839767 , 12 . 381646031 , - 2 . 767662054 , 0 . 2184996358 , - 15 . 29497451 , - 15 . 07647487 <nl> + 050 , 3 , 6 , 01 , 025 , Alabama , Clarke County , 25833 , 25840 , 25776 , 25695 , - 64 , - 81 , 58 , 264 , 66 , 309 , - 8 , - 45 , 1 , 4 , - 57 , - 39 , - 56 , - 35 , 0 , - 1 , 280 , 280 , 280 , 10 . 258203649 , 12 . 006761089 , - 1 . 74855744 , 0 . 155427328 , - 1 . 515416448 , - 1 . 35998912 <nl> + 050 , 3 , 6 , 01 , 027 , Alabama , Clay County , 13932 , 13932 , 13935 , 13862 , 3 , - 73 , 32 , 137 , 46 , 196 , - 14 , - 59 , 2 , 5 , 17 , - 17 , 19 , - 12 , - 2 , - 2 , 255 , 255 , 255 , 9 . 8571788322 , 14 . 102241249 , - 4 . 245062417 , 0 . 3597510523 , - 1 . 223153578 , - 0 . 863402525 <nl> + 050 , 3 , 6 , 01 , 029 , Alabama , Cleburne County , 14972 , 14972 , 14978 , 14835 , 6 , - 143 , 45 , 162 , 58 , 198 , - 13 , - 36 , 0 , - 1 , 20 , - 107 , 20 , - 108 , - 1 , 1 , 178 , 178 , 178 , 10 . 86774226 , 13 . 282796096 , - 2 . 415053836 , - 0 . 067084829 , - 7 . 178076678 , - 7 . 245161507 <nl> + 050 , 3 , 6 , 01 , 031 , Alabama , Coffee County , 49948 , 49948 , 50167 , 50526 , 219 , 359 , 170 , 702 , 122 , 499 , 48 , 203 , 40 , 88 , 129 , 72 , 169 , 160 , 2 , - 4 , 600 , 600 , 600 , 13 . 943372429 , 9 . 9113145899 , 4 . 0320578392 , 1 . 7478871421 , 1 . 4300894799 , 3 . 177976622 <nl> + 050 , 3 , 6 , 01 , 033 , Alabama , Colbert County , 54428 , 54428 , 54491 , 54512 , 63 , 21 , 147 , 611 , 145 , 647 , 2 , - 36 , 7 , 24 , 56 , 36 , 63 , 60 , - 2 , - 3 , 474 , 474 , 474 , 11 . 210700623 , 11 . 871232902 , - 0 . 660532279 , 0 . 4403548526 , 0 . 6605322789 , 1 . 1008871315 <nl> + 050 , 3 , 6 , 01 , 035 , Alabama , Conecuh County , 13228 , 13228 , 13222 , 13105 , - 6 , - 117 , 44 , 151 , 28 , 187 , 16 , - 36 , 0 , 0 , - 22 , - 81 , - 22 , - 81 , 0 , 0 , 45 , 45 , 45 , 11 . 471113306 , 14 . 205948266 , - 2 . 73483496 , 0 , - 6 . 153378661 , - 6 . 153378661 <nl> + 050 , 3 , 6 , 01 , 037 , Alabama , Coosa County , 11539 , 11537 , 11458 , 10713 , - 79 , - 745 , 19 , 85 , 22 , 124 , - 3 , - 39 , 1 , 3 , - 71 , - 703 , - 70 , - 700 , - 6 , - 6 , 124 , 124 , 124 , 7 . 6676739885 , 11 . 18578323 , - 3 . 518109242 , 0 . 2706237878 , - 63 . 41617428 , - 63 . 14555049 <nl> + 050 , 3 , 6 , 01 , 039 , Alabama , Covington County , 37765 , 37765 , 37800 , 38058 , 35 , 258 , 100 , 446 , 120 , 491 , - 20 , - 45 , 7 , 24 , 51 , 280 , 58 , 304 , - 3 , - 1 , 575 , 575 , 575 , 11 . 758812518 , 12 . 94523979 , - 1 . 186427272 , 0 . 6327612117 , 7 . 3822141369 , 8 . 0149753487 <nl> + 050 , 3 , 6 , 01 , 041 , Alabama , Crenshaw County , 13906 , 13906 , 13878 , 13911 , - 28 , 33 , 46 , 173 , 34 , 168 , 12 , 5 , 14 , 48 , - 54 , - 18 , - 40 , 30 , 0 , - 2 , 132 , 132 , 132 , 12 . 450969808 , 12 . 091115189 , 0 . 3598546187 , 3 . 4546043398 , - 1 . 295476627 , 2 . 1591277124 <nl> + 050 , 3 , 6 , 01 , 043 , Alabama , Cullman County , 80406 , 80406 , 80496 , 80536 , 90 , 40 , 238 , 961 , 225 , 937 , 13 , 24 , 33 , 112 , 48 , - 92 , 81 , 20 , - 4 , - 4 , 1056 , 1056 , 1056 , 11 . 935515922 , 11 . 637438522 , 0 . 2980774008 , 1 . 3910278702 , - 1 . 142630036 , 0 . 248397834 <nl> + 050 , 3 , 6 , 01 , 045 , Alabama , Dale County , 50251 , 50251 , 50343 , 50044 , 92 , - 299 , 166 , 723 , 111 , 504 , 55 , 219 , 47 , 60 , - 7 , - 585 , 40 , - 525 , - 3 , 7 , 917 , 917 , 917 , 14 . 404255531 , 10 . 041140785 , 4 . 3631147459 , 1 . 195373903 , - 11 . 65489555 , - 10 . 45952165 <nl> + 050 , 3 , 6 , 01 , 047 , Alabama , Dallas County , 43820 , 43820 , 43792 , 43332 , - 28 , - 460 , 147 , 644 , 161 , 535 , - 14 , 109 , 3 , 10 , - 16 , - 586 , - 13 , - 576 , - 1 , 7 , 786 , 786 , 786 , 14 . 783526927 , 12 . 281346127 , 2 . 5021807998 , 0 . 2295578715 , - 13 . 45209127 , - 13 . 2225334 <nl> + 050 , 3 , 6 , 01 , 049 , Alabama , DeKalb County , 71109 , 71109 , 71122 , 71375 , 13 , 253 , 236 , 926 , 195 , 728 , 41 , 198 , 32 , 108 , - 58 , - 49 , - 26 , 59 , - 2 , - 4 , 782 , 782 , 782 , 12 . 996764844 , 10 . 21775897 , 2 . 7790058738 , 1 . 5158213857 , - 0 . 687733777 , 0 . 8280876089 <nl> + 050 , 3 , 6 , 01 , 051 , Alabama , Elmore County , 79303 , 79303 , 79590 , 80162 , 287 , 572 , 235 , 996 , 152 , 687 , 83 , 309 , 15 , 32 , 185 , 232 , 200 , 264 , 4 , - 1 , 5483 , 5485 , 5495 , 12 . 469327458 , 8 . 6008312885 , 3 . 8684961691 , 0 . 4006209625 , 2 . 9045019781 , 3 . 3051229406 <nl> + 050 , 3 , 6 , 01 , 053 , Alabama , Escambia County , 38319 , 38319 , 38295 , 38095 , - 24 , - 200 , 120 , 479 , 92 , 443 , 28 , 36 , 5 , 24 , - 54 , - 259 , - 49 , - 235 , - 3 , - 1 , 3199 , 3199 , 3199 , 12 . 540908496 , 11 . 598376751 , 0 . 942531745 , 0 . 6283544967 , - 6 . 780992276 , - 6 . 15263778 <nl> + 050 , 3 , 6 , 01 , 055 , Alabama , Etowah County , 104430 , 104430 , 104440 , 104303 , 10 , - 137 , 298 , 1232 , 367 , 1443 , - 69 , - 211 , 22 , 74 , 60 , 7 , 82 , 81 , - 3 , - 7 , 2085 , 2085 , 2085 , 11 . 803988637 , 13 . 825613314 , - 2 . 021624677 , 0 . 709005811 , 0 . 0670681173 , 0 . 7760739282 <nl> + 050 , 3 , 6 , 01 , 057 , Alabama , Fayette County , 17241 , 17241 , 17250 , 17182 , 9 , - 68 , 45 , 186 , 58 , 234 , - 13 , - 48 , 1 , 5 , 23 , - 24 , 24 , - 19 , - 2 , - 1 , 291 , 291 , 291 , 10 . 803903346 , 13 . 592007435 , - 2 . 788104089 , 0 . 2904275093 , - 1 . 394052045 , - 1 . 103624535 <nl> + 050 , 3 , 6 , 01 , 059 , Alabama , Franklin County , 31704 , 31704 , 31723 , 31884 , 19 , 161 , 119 , 470 , 104 , 365 , 15 , 105 , 20 , 71 , - 14 , - 14 , 6 , 57 , - 2 , - 1 , 272 , 272 , 272 , 14 . 778247677 , 11 . 47672426 , 3 . 3015234172 , 2 . 2324586917 , - 0 . 440203122 , 1 . 7922555694 <nl> + 050 , 3 , 6 , 01 , 061 , Alabama , Geneva County , 26790 , 26790 , 26828 , 26781 , 38 , - 47 , 76 , 281 , 85 , 331 , - 9 , - 50 , 2 , 8 , 45 , - 3 , 47 , 5 , 0 , - 2 , 229 , 229 , 229 , 10 . 483314369 , 12 . 348672797 , - 1 . 865358429 , 0 . 2984573486 , - 0 . 111921506 , 0 . 1865358429 <nl> + 050 , 3 , 6 , 01 , 063 , Alabama , Greene County , 9045 , 9045 , 9005 , 8921 , - 40 , - 84 , 29 , 121 , 7 , 85 , 22 , 36 , 0 , 0 , - 62 , - 121 , - 62 , - 121 , 0 , 1 , 45 , 45 , 45 , 13 . 499944215 , 9 . 4834318866 , 4 . 0165123285 , 0 , - 13 . 49994422 , - 13 . 49994422 <nl> + 050 , 3 , 6 , 01 , 065 , Alabama , Hale County , 15760 , 15760 , 15736 , 15421 , - 24 , - 315 , 45 , 189 , 17 , 183 , 28 , 6 , 4 , 22 , - 56 , - 347 , - 52 , - 325 , 0 , 4 , 334 , 334 , 334 , 12 . 132105145 , 11 . 74695895 , 0 . 3851461951 , 1 . 4122027153 , - 22 . 27428828 , - 20 . 86208557 <nl> + 050 , 3 , 6 , 01 , 067 , Alabama , Henry County , 17302 , 17302 , 17308 , 17412 , 6 , 104 , 37 , 173 , 45 , 203 , - 8 , - 30 , 8 , 29 , 7 , 105 , 15 , 134 , - 1 , 0 , 199 , 199 , 199 , 9 . 965437788 , 11 . 693548387 , - 1 . 728110599 , 1 . 6705069124 , 6 . 0483870968 , 7 . 7188940092 <nl> + 050 , 3 , 6 , 01 , 069 , Alabama , Houston County , 101547 , 101547 , 101769 , 102369 , 222 , 600 , 328 , 1361 , 260 , 995 , 68 , 366 , 7 , 49 , 148 , 190 , 155 , 239 , - 1 , - 5 , 1416 , 1416 , 1416 , 13 . 334117117 , 9 . 7483075175 , 3 . 5858095994 , 0 . 4800674054 , 1 . 8614858576 , 2 . 341553263 <nl> + 050 , 3 , 6 , 01 , 071 , Alabama , Jackson County , 53227 , 53226 , 53175 , 53291 , - 51 , 116 , 133 , 564 , 155 , 610 , - 22 , - 46 , 4 , 23 , - 31 , 143 , - 27 , 166 , - 2 , - 4 , 597 , 597 , 597 , 10 . 594931715 , 11 . 459057352 , - 0 . 864125636 , 0 . 4320628182 , 2 . 6863036087 , 3 . 1183664268 <nl> + 050 , 3 , 6 , 01 , 073 , Alabama , Jefferson County , 658466 , 658466 , 658386 , 658931 , - 80 , 545 , 2160 , 9452 , 1649 , 6799 , 511 , 2653 , 256 , 690 , - 852 , - 2805 , - 596 , - 2115 , 5 , 7 , 15774 , 15774 , 15774 , 14 . 350380356 , 10 . 322496407 , 4 . 027883949 , 1 . 047583839 , - 4 . 258656041 , - 3 . 211072202 <nl> + 050 , 3 , 6 , 01 , 075 , Alabama , Lamar County , 14564 , 14564 , 14520 , 14311 , - 44 , - 209 , 33 , 137 , 48 , 195 , - 15 , - 58 , 0 , 0 , - 30 , - 150 , - 30 , - 150 , 1 , - 1 , 217 , 217 , 217 , 9 . 5036592557 , 13 . 52710624 , - 4 . 023446984 , 0 , - 10 . 40546634 , - 10 . 40546634 <nl> + 050 , 3 , 6 , 01 , 077 , Alabama , Lauderdale County , 92709 , 92709 , 92727 , 92781 , 18 , 54 , 235 , 937 , 256 , 1058 , - 21 , - 121 , 11 , 43 , 34 , 141 , 45 , 184 , - 6 , - 9 , 1891 , 1891 , 1891 , 10 . 101990211 , 11 . 406516161 , - 1 . 30452595 , 0 . 4635918667 , 1 . 5201500744 , 1 . 983741941 <nl> + 050 , 3 , 6 , 01 , 079 , Alabama , Lawrence County , 34339 , 34339 , 34328 , 34117 , - 11 , - 211 , 80 , 359 , 85 , 376 , - 5 , - 17 , 3 , 14 , - 9 , - 209 , - 6 , - 195 , 0 , 1 , 229 , 229 , 229 , 10 . 490174593 , 10 . 986923807 , - 0 . 496749215 , 0 . 4090875886 , - 6 . 107093287 , - 5 . 698005698 <nl> + 050 , 3 , 6 , 01 , 081 , Alabama , Lee County , 140247 , 140247 , 140784 , 143468 , 537 , 2684 , 418 , 1536 , 213 , 840 , 205 , 696 , 73 , 269 , 252 , 1697 , 325 , 1966 , 7 , 22 , 4410 , 4410 , 4410 , 10 . 807311822 , 5 . 9102486526 , 4 . 8970631693 , 1 . 8926867709 , 11 . 94010948 , 13 . 832796251 <nl> + 050 , 3 , 6 , 01 , 083 , Alabama , Limestone County , 82782 , 82782 , 83239 , 85369 , 457 , 2130 , 242 , 1000 , 154 , 659 , 88 , 341 , 18 , 67 , 343 , 1696 , 361 , 1763 , 8 , 26 , 2907 , 2907 , 2907 , 11 . 861833365 , 7 . 8169481875 , 4 . 0448851775 , 0 . 7947428355 , 20 . 117669387 , 20 . 912412222 <nl> + 050 , 3 , 6 , 01 , 085 , Alabama , Lowndes County , 11299 , 11299 , 11270 , 11147 , - 29 , - 123 , 41 , 165 , 13 , 154 , 28 , 11 , 0 , 3 , - 57 , - 139 , - 57 , - 136 , 0 , 2 , 96 , 96 , 96 , 14 . 720970692 , 13 . 739572646 , 0 . 9813980461 , 0 . 2676540126 , - 12 . 40130258 , - 12 . 13364857 <nl> + 050 , 3 , 6 , 01 , 087 , Alabama , Macon County , 21452 , 21452 , 21535 , 21182 , 83 , - 353 , 56 , 235 , 66 , 283 , - 10 , - 48 , 1 , 6 , 90 , - 314 , 91 , - 308 , 2 , 3 , 1772 , 1772 , 1772 , 11 . 002645317 , 13 . 249994148 , - 2 . 247348831 , 0 . 2809186038 , - 14 . 70140693 , - 14 . 42048833 <nl> + 050 , 3 , 6 , 01 , 089 , Alabama , Madison County , 334811 , 334811 , 336141 , 340111 , 1330 , 3970 , 1020 , 4152 , 624 , 2542 , 396 , 1610 , 117 , 280 , 803 , 2071 , 920 , 2351 , 14 , 9 , 8042 , 8042 , 8041 , 12 . 279446124 , 7 . 5179075256 , 4 . 761538598 , 0 . 8280936692 , 6 . 1249356749 , 6 . 9530293441 <nl> + 050 , 3 , 6 , 01 , 091 , Alabama , Marengo County , 21027 , 21029 , 20980 , 20692 , - 49 , - 288 , 50 , 235 , 44 , 243 , 6 , - 8 , 2 , 2 , - 57 , - 286 , - 55 , - 284 , 0 , 4 , 254 , 254 , 254 , 11 . 278556345 , 11 . 662507199 , - 0 . 383950854 , 0 . 0959877136 , - 13 . 72624304 , - 13 . 63025533 <nl> + 050 , 3 , 6 , 01 , 093 , Alabama , Marion County , 30776 , 30776 , 30781 , 30663 , 5 , - 118 , 68 , 299 , 112 , 390 , - 44 , - 91 , 2 , 4 , 47 , - 29 , 49 , - 25 , 0 , - 2 , 868 , 868 , 868 , 9 . 7324392943 , 12 . 694486036 , - 2 . 962046742 , 0 . 1301998568 , - 0 . 943948962 , - 0 . 813749105 <nl> + 050 , 3 , 6 , 01 , 095 , Alabama , Marshall County , 93019 , 93019 , 93203 , 94166 , 184 , 963 , 323 , 1395 , 265 , 1045 , 58 , 350 , 56 , 192 , 74 , 424 , 130 , 616 , - 4 , - 3 , 1047 , 1047 , 1047 , 14 . 890403429 , 11 . 154459916 , 3 . 7359435125 , 2 . 0494318697 , 4 . 5258287123 , 6 . 5752605821 <nl> + 050 , 3 , 6 , 01 , 097 , Alabama , Mobile County , 412992 , 412990 , 413116 , 412577 , 126 , - 539 , 1365 , 5734 , 1007 , 4069 , 358 , 1665 , 124 , 259 , - 352 , - 2476 , - 228 , - 2217 , - 4 , 13 , 6808 , 6808 , 6808 , 13 . 888939352 , 9 . 855963415 , 4 . 0329759366 , 0 . 6273518124 , - 5 . 997386438 , - 5 . 370034625 <nl> + 050 , 3 , 6 , 01 , 099 , Alabama , Monroe County , 23068 , 23070 , 22987 , 22760 , - 83 , - 227 , 63 , 258 , 53 , 254 , 10 , 4 , 1 , 5 , - 94 , - 237 , - 93 , - 232 , 0 , 1 , 230 , 230 , 230 , 11 . 279428159 , 11 . 104553304 , 0 . 1748748552 , 0 . 218593569 , - 10 . 36133517 , - 10 . 1427416 <nl> + 050 , 3 , 6 , 01 , 101 , Alabama , Montgomery County , 229363 , 229363 , 229706 , 232032 , 343 , 2326 , 744 , 3161 , 526 , 2012 , 218 , 1149 , 110 , 306 , 19 , 869 , 129 , 1175 , - 4 , 2 , 9082 , 9089 , 9089 , 13 . 691747268 , 8 . 7148989254 , 4 . 9768483426 , 1 . 3254269737 , 3 . 764039347 , 5 . 0894663207 <nl> + 050 , 3 , 6 , 01 , 103 , Alabama , Morgan County , 119490 , 119490 , 119606 , 119953 , 116 , 347 , 363 , 1472 , 262 , 1136 , 101 , 336 , 42 , 161 , - 21 , - 141 , 21 , 20 , - 6 , - 9 , 2133 , 2133 , 2133 , 12 . 28924816 , 9 . 4840936888 , 2 . 8051544713 , 1 . 3441365175 , - 1 . 177163037 , 0 . 1669734804 <nl> + 050 , 3 , 6 , 01 , 105 , Alabama , Perry County , 10591 , 10586 , 10542 , 10373 , - 44 , - 169 , 30 , 136 , 16 , 142 , 14 , - 6 , 0 , 0 , - 56 , - 163 , - 56 , - 163 , - 2 , 0 , 721 , 721 , 721 , 13 . 00502032 , 13 . 578771217 , - 0 . 573750896 , 0 , - 15 . 58689935 , - 15 . 58689935 <nl> + 050 , 3 , 6 , 01 , 107 , Alabama , Pickens County , 19746 , 19746 , 19723 , 19349 , - 23 , - 374 , 52 , 239 , 53 , 253 , - 1 , - 14 , 0 , 0 , - 21 , - 366 , - 21 , - 366 , - 1 , 6 , 334 , 334 , 334 , 12 . 233824734 , 12 . 95045045 , - 0 . 716625717 , 0 , - 18 . 73464373 , - 18 . 73464373 <nl> + 050 , 3 , 6 , 01 , 109 , Alabama , Pike County , 32899 , 32899 , 32970 , 32915 , 71 , - 55 , 96 , 405 , 75 , 336 , 21 , 69 , 12 , 56 , 37 , - 180 , 49 , - 124 , 1 , 0 , 1963 , 1963 , 1963 , 12 . 294148896 , 10 . 199590195 , 2 . 0945587008 , 1 . 6999316992 , - 5 . 464066176 , - 3 . 764134477 <nl> + 050 , 3 , 6 , 01 , 111 , Alabama , Randolph County , 22913 , 22913 , 22929 , 22787 , 16 , - 142 , 56 , 225 , 66 , 261 , - 10 , - 36 , 3 , 14 , 24 , - 120 , 27 , - 106 , - 1 , 0 , 407 , 407 , 407 , 9 . 8433808732 , 11 . 418321813 , - 1 . 57494094 , 0 . 6124770321 , - 5 . 249803132 , - 4 . 6373261 <nl> + 050 , 3 , 6 , 01 , 113 , Alabama , Russell County , 52947 , 52947 , 53207 , 54572 , 260 , 1365 , 192 , 411 , 146 , 575 , 46 , - 164 , 8 , 14 , 201 , 1492 , 209 , 1506 , 5 , 23 , 574 , 574 , 574 , 7 . 6267176352 , 10 . 669982093 , - 3 . 043264458 , 0 . 2597908684 , 27 . 68628397 , 27 . 946074838 <nl> + 050 , 3 , 6 , 01 , 115 , Alabama , St . Clair County , 83593 , 83598 , 83835 , 84398 , 237 , 563 , 271 , 1096 , 188 , 766 , 83 , 330 , 15 , 58 , 139 , 184 , 154 , 242 , 0 , - 9 , 1967 , 1967 , 1967 , 13 . 029548305 , 9 . 1064178847 , 3 . 9231304203 , 0 . 6895198921 , 2 . 1874424162 , 2 . 8769623082 <nl> + 050 , 3 , 6 , 01 , 117 , Alabama , Shelby County , 195085 , 195080 , 195858 , 197936 , 778 , 2078 , 622 , 2441 , 295 , 1183 , 327 , 1258 , 97 , 311 , 349 , 520 , 446 , 831 , 5 , - 11 , 2574 , 2574 , 2574 , 12 . 397344805 , 6 . 0082174944 , 6 . 3891273102 , 1 . 5795060362 , 2 . 6409747228 , 4 . 220480759 <nl> + 050 , 3 , 6 , 01 , 119 , Alabama , Sumter County , 13763 , 13763 , 13758 , 13478 , - 5 , - 280 , 29 , 142 , 18 , 152 , 11 , - 10 , 0 , - 1 , - 15 , - 274 , - 15 , - 275 , - 1 , 5 , 718 , 718 , 718 , 10 . 427375532 , 11 . 161697753 , - 0 . 734322221 , - 0 . 073432222 , - 20 . 12042884 , - 20 . 19386107 <nl> + 050 , 3 , 6 , 01 , 121 , Alabama , Talladega County , 82291 , 82291 , 82027 , 81664 , - 264 , - 363 , 199 , 892 , 256 , 967 , - 57 , - 75 , 4 , 22 , - 214 , - 306 , - 210 , - 284 , 3 , - 4 , 3143 , 3143 , 3143 , 10 . 898583306 , 11 . 81494401 , - 0 . 916360704 , 0 . 2687991398 , - 3 . 738751672 , - 3 . 469952533 <nl> + 050 , 3 , 6 , 01 , 123 , Alabama , Tallapoosa County , 41616 , 41618 , 41534 , 41623 , - 84 , 89 , 114 , 471 , 121 , 533 , - 7 , - 62 , 3 , 13 , - 79 , 143 , - 76 , 156 , - 1 , - 5 , 576 , 576 , 576 , 11 . 327969984 , 12 . 819125269 , - 1 . 491155285 , 0 . 3126615919 , 3 . 4392775112 , 3 . 7519391031 <nl> + 050 , 3 , 6 , 01 , 125 , Alabama , Tuscaloosa County , 194656 , 194653 , 194998 , 197211 , 345 , 2213 , 607 , 2434 , 422 , 1626 , 185 , 808 , 96 , 305 , 68 , 1096 , 164 , 1401 , - 4 , 4 , 10423 , 10423 , 10423 , 12 . 411749858 , 8 . 2914976454 , 4 . 1202522125 , 1 . 5552932238 , 5 . 5888569615 , 7 . 1441501852 <nl> + 050 , 3 , 6 , 01 , 127 , Alabama , Walker County , 67023 , 67023 , 67000 , 66661 , - 23 , - 339 , 196 , 810 , 239 , 906 , - 43 , - 96 , 4 , 14 , 20 , - 257 , 24 , - 243 , - 4 , 0 , 866 , 866 , 866 , 12 . 120214573 , 13 . 556684448 , - 1 . 436469875 , 0 . 2094851901 , - 3 . 845549562 , - 3 . 636064372 <nl> + 050 , 3 , 6 , 01 , 129 , Alabama , Washington County , 17581 , 17583 , 17610 , 17344 , 27 , - 266 , 40 , 168 , 40 , 193 , 0 , - 25 , 0 , 0 , 26 , - 244 , 26 , - 244 , 1 , 3 , 147 , 147 , 147 , 9 . 6126337472 , 11 . 043085198 , - 1 . 43045145 , 0 , - 13 . 96120616 , - 13 . 96120616 <nl> + 050 , 3 , 6 , 01 , 131 , Alabama , Wilcox County , 11670 , 11664 , 11603 , 11482 , - 61 , - 121 , 30 , 137 , 9 , 118 , 21 , 19 , 0 , 0 , - 81 , - 142 , - 81 , - 142 , - 1 , 2 , 108 , 108 , 108 , 11 . 869179121 , 10 . 223088586 , 1 . 646090535 , 0 , - 12 . 30236084 , - 12 . 30236084 <nl> + 050 , 3 , 6 , 01 , 133 , Alabama , Winston County , 24484 , 24484 , 24395 , 24327 , - 89 , - 68 , 63 , 235 , 85 , 300 , - 22 , - 65 , 0 , - 3 , - 67 , 2 , - 67 , - 1 , 0 , - 2 , 301 , 301 , 301 , 9 . 6465662329 , 12 . 314765404 , - 2 . 668199171 , - 0 . 123147654 , 0 . 082098436 , - 0 . 041049218 <nl> + 040 , 4 , 9 , 02 , 000 , Alaska , Alaska , 710231 , 710231 , 714146 , 722718 , 3915 , 8572 , 2834 , 11193 , 647 , 3338 , 2187 , 7855 , 542 , 1101 , 1139 , - 399 , 1681 , 702 , 47 , 15 , 26352 , 26353 , 26353 , 15 . 579762594 , 4 . 6462295666 , 10 . 933533027 , 1 . 5325041201 , - 0 . 555376153 , 0 . 9771279676 <nl> + 050 , 4 , 9 , 02 , 013 , Alaska , Aleutians East Borough , 3141 , 3141 , 3155 , 3172 , 14 , 17 , 6 , 20 , 0 , 0 , 6 , 20 , 0 , 0 , 8 , - 3 , 8 , - 3 , 0 , 0 , 1726 , 1726 , 1726 , 6 . 3221115853 , 0 , 6 . 3221115853 , 0 , - 0 . 948316738 , - 0 . 948316738 <nl> + 050 , 4 , 9 , 02 , 016 , Alaska , Aleutians West Census Area , 5561 , 5561 , 5545 , 5504 , - 16 , - 41 , 7 , 28 , 0 , 2 , 7 , 26 , 1 , 4 , - 25 , - 72 , - 24 , - 68 , 1 , 1 , 2543 , 2543 , 2543 , 5 . 0683319757 , 0 . 3620237126 , 4 . 7063082632 , 0 . 7240474251 , - 13 . 03285365 , - 12 . 30880623 <nl> + 050 , 4 , 9 , 02 , 020 , Alaska , Anchorage Municipality , 291826 , 291826 , 293356 , 295570 , 1530 , 2214 , 1128 , 4574 , 284 , 1355 , 844 , 3219 , 314 , 576 , 360 , - 1579 , 674 , - 1003 , 12 , - 2 , 8450 , 8452 , 8451 , 15 . 533360728 , 4 . 601596805 , 10 . 931763923 , 1 . 9561031437 , - 5 . 362303583 , - 3 . 406200439 <nl> + 050 , 4 , 9 , 02 , 050 , Alaska , Bethel Census Area , 17013 , 17013 , 17105 , 17416 , 92 , 311 , 116 , 441 , 7 , 79 , 109 , 362 , 1 , 1 , - 18 , - 51 , - 17 , - 50 , 0 , - 1 , 338 , 338 , 338 , 25 . 549665421 , 4 . 5769241911 , 20 . 97274123 , 0 . 0579357493 , - 2 . 954723212 , - 2 . 896787463 <nl> + 050 , 4 , 9 , 02 , 060 , Alaska , Bristol Bay Borough , 997 , 997 , 1003 , 1030 , 6 , 27 , 2 , 11 , 0 , 5 , 2 , 6 , 0 , 0 , 4 , 21 , 4 , 21 , 0 , 0 , 16 , 16 , 16 , 10 . 821446139 , 4 . 918839154 , 5 . 9026069848 , 0 , 20 . 659124447 , 20 . 659124447 <nl> + 050 , 4 , 9 , 02 , 068 , Alaska , Denali Borough , 1826 , 1826 , 1835 , 1855 , 9 , 20 , 6 , 22 , 0 , 0 , 6 , 22 , 2 , 0 , 1 , - 1 , 3 , - 1 , 0 , - 1 , 36 , 36 , 36 , 11 . 924119241 , 0 , 11 . 924119241 , 0 , - 0 . 54200542 , - 0 . 54200542 <nl> + 050 , 4 , 9 , 02 , 070 , Alaska , Dillingham Census Area , 4847 , 4847 , 4874 , 4975 , 27 , 101 , 28 , 113 , 1 , 16 , 27 , 97 , 0 , 1 , - 1 , 4 , - 1 , 5 , 1 , - 1 , 52 , 52 , 52 , 22 . 94649203 , 3 . 2490608184 , 19 . 697431211 , 0 . 2030663011 , 0 . 8122652046 , 1 . 0153315057 <nl> + 050 , 4 , 9 , 02 , 090 , Alaska , Fairbanks North Star Borough , 97581 , 97581 , 98279 , 99192 , 698 , 913 , 443 , 1639 , 95 , 383 , 348 , 1256 , 124 , 193 , 219 , - 533 , 343 , - 340 , 7 , - 3 , 4313 , 4313 , 4313 , 16 . 599905809 , 3 . 8790505948 , 12 . 720855214 , 1 . 9547174015 , - 5 . 39826101 , - 3 . 443543609 <nl> + 050 , 4 , 9 , 02 , 100 , Alaska , Haines Borough , 2508 , 2508 , 2508 , 2554 , 0 , 46 , 4 , 24 , 1 , 10 , 3 , 14 , 0 , 0 , - 2 , 31 , - 2 , 31 , - 1 , 1 , 0 , 0 , 0 , 9 . 4824180166 , 3 . 9510075069 , 5 . 5314105097 , 0 , 12 . 248123271 , 12 . 248123271 <nl> + 050 , 4 , 9 , 02 , 105 , Alaska , Hoonah - Angoon Census Area , 2150 , 2150 , 2153 , 2112 , 3 , - 41 , 6 , 22 , 0 , 12 , 6 , 10 , 0 , 1 , - 4 , - 51 , - 4 , - 50 , 1 , - 1 , 0 , 0 , 0 , 10 . 316529894 , 5 . 6271981243 , 4 . 6893317702 , 0 . 468933177 , - 23 . 91559203 , - 23 . 44665885 <nl> + 050 , 4 , 9 , 02 , 110 , Alaska , Juneau City and Borough , 31275 , 31275 , 31409 , 32164 , 134 , 755 , 95 , 391 , 24 , 121 , 71 , 270 , 13 , 45 , 49 , 434 , 62 , 479 , 1 , 6 , 887 , 887 , 887 , 12 . 30081953 , 3 . 8066474761 , 8 . 4941720542 , 1 . 4156953424 , 13 . 65359508 , 15 . 069290422 <nl> + 050 , 4 , 9 , 02 , 122 , Alaska , Kenai Peninsula Borough , 55400 , 55400 , 55575 , 56293 , 175 , 718 , 177 , 686 , 92 , 392 , 85 , 294 , 10 , 31 , 78 , 389 , 88 , 420 , 2 , 4 , 1722 , 1721 , 1722 , 12 . 264454536 , 7 . 0082597347 , 5 . 256194801 , 0 . 5542246219 , 6 . 9546250939 , 7 . 5088497157 <nl> + 050 , 4 , 9 , 02 , 130 , Alaska , Ketchikan Gateway Borough , 13477 , 13477 , 13531 , 13593 , 54 , 62 , 44 , 185 , 8 , 75 , 36 , 110 , 4 , 6 , 13 , - 54 , 17 , - 48 , 1 , 0 , 246 , 246 , 246 , 13 . 641055891 , 5 . 5301577938 , 8 . 1108980976 , 0 . 4424126235 , - 3 . 981713612 , - 3 . 539300988 <nl> + 050 , 4 , 9 , 02 , 150 , Alaska , Kodiak Island Borough , 13592 , 13592 , 13640 , 13872 , 48 , 232 , 58 , 227 , 3 , 43 , 55 , 184 , 35 , 105 , - 42 , - 57 , - 7 , 48 , 0 , 0 , 336 , 336 , 336 , 16 . 501890084 , 3 . 1259086944 , 13 . 37598139 , 7 . 6330328584 , - 4 . 143646409 , 3 . 4893864495 <nl> + 050 , 4 , 9 , 02 , 164 , Alaska , Lake and Peninsula Borough , 1631 , 1631 , 1634 , 1668 , 3 , 34 , 9 , 33 , 0 , 9 , 9 , 24 , 0 , 1 , - 6 , 10 , - 6 , 11 , 0 , - 1 , 37 , 37 , 37 , 19 . 98788613 , 5 . 4512416717 , 14 . 536644458 , 0 . 6056935191 , 6 . 0569351908 , 6 . 6626287099 <nl> + 050 , 4 , 9 , 02 , 170 , Alaska , Matanuska - Susitna Borough , 88995 , 88995 , 89772 , 91946 , 777 , 2174 , 333 , 1301 , 99 , 397 , 234 , 904 , 17 , 76 , 510 , 1179 , 527 , 1255 , 16 , 15 , 1370 , 1370 , 1370 , 14 . 318889708 , 4 . 3694075436 , 9 . 9494821647 , 0 . 83646089 , 12 . 976149859 , 13 . 812610749 <nl> + 050 , 4 , 9 , 02 , 180 , Alaska , Nome Census Area , 9492 , 9492 , 9571 , 9856 , 79 , 285 , 63 , 248 , 5 , 56 , 58 , 192 , 1 , 1 , 19 , 91 , 20 , 92 , 1 , 1 , 219 , 219 , 219 , 25 . 531476811 , 5 . 765172183 , 19 . 766304628 , 0 . 1029495033 , 9 . 3684047974 , 9 . 4713543007 <nl> + 050 , 4 , 9 , 02 , 185 , Alaska , North Slope Borough , 9430 , 9430 , 9472 , 9503 , 42 , 31 , 49 , 177 , 3 , 29 , 46 , 148 , 1 , 3 , - 5 , - 120 , - 4 , - 117 , 0 , 0 , 2652 , 2652 , 2652 , 18 . 656126482 , 3 . 0566534914 , 15 . 599472991 , 0 . 3162055336 , - 12 . 64822134 , - 12 . 33201581 <nl> + 050 , 4 , 9 , 02 , 188 , Alaska , Northwest Arctic Borough , 7523 , 7523 , 7553 , 7733 , 30 , 180 , 53 , 222 , 3 , 31 , 50 , 191 , 0 , 4 , - 20 , - 15 , - 20 , - 11 , 0 , 0 , 382 , 382 , 382 , 29 . 046186053 , 4 . 0559989533 , 24 . 990187099 , 0 . 5233547037 , - 1 . 962580139 , - 1 . 439225435 <nl> + 050 , 4 , 9 , 02 , 195 , Alaska , Petersburg Census Area , 3815 , 3815 , 3826 , 3838 , 11 , 12 , 13 , 48 , 3 , 34 , 10 , 14 , 1 , 4 , 0 , - 6 , 1 , - 2 , 0 , 0 , 43 , 43 , 43 , 12 . 526096033 , 8 . 872651357 , 3 . 6534446764 , 1 . 0438413361 , - 1 . 565762004 , - 0 . 521920668 <nl> + 050 , 4 , 9 , 02 , 198 , Alaska , Prince of Wales - Hyder Census Area , 5559 , 5559 , 5597 , 5737 , 38 , 140 , 18 , 72 , 0 , 23 , 18 , 49 , 1 , 3 , 18 , 88 , 19 , 91 , 1 , 0 , 50 , 50 , 50 , 12 . 705134992 , 4 . 0585847891 , 8 . 6465502029 , 0 . 5293806247 , 15 . 528498324 , 16 . 057878948 <nl> + 050 , 4 , 9 , 02 , 220 , Alaska , Sitka City and Borough , 8881 , 8881 , 8912 , 8952 , 31 , 40 , 29 , 109 , 3 , 38 , 26 , 71 , 6 , 17 , - 1 , - 48 , 5 , - 31 , 0 , 0 , 255 , 255 , 255 , 12 . 203313927 , 4 . 2543663233 , 7 . 9489476041 , 1 . 9032691446 , - 5 . 373936408 , - 3 . 470667264 <nl> + 050 , 4 , 9 , 02 , 230 , Alaska , Skagway Municipality , 968 , 968 , 965 , 935 , - 3 , - 30 , 4 , 11 , 2 , 25 , 2 , - 14 , 0 , 1 , - 6 , - 17 , - 6 , - 16 , 1 , 0 , 32 , 32 , 32 , 11 . 578947368 , 26 . 315789474 , - 14 . 73684211 , 1 . 0526315789 , - 17 . 89473684 , - 16 . 84210526 <nl> + 050 , 4 , 9 , 02 , 240 , Alaska , Southeast Fairbanks Census Area , 7029 , 7029 , 7065 , 7132 , 36 , 67 , 29 , 114 , 4 , 34 , 25 , 80 , 4 , 3 , 7 , - 16 , 11 , - 13 , 0 , 0 , 369 , 369 , 369 , 16 . 059730929 , 4 . 7897443122 , 11 . 269986617 , 0 . 4226244981 , - 2 . 253997323 , - 1 . 831372825 <nl> + 050 , 4 , 9 , 02 , 261 , Alaska , Valdez - Cordova Census Area , 9636 , 9636 , 9689 , 9770 , 53 , 81 , 32 , 119 , 2 , 45 , 30 , 74 , 7 , 22 , 15 , - 14 , 22 , 8 , 1 , - 1 , 201 , 201 , 201 , 12 . 230844339 , 4 . 625109204 , 7 . 6057351354 , 2 . 2611644997 , - 1 . 438922863 , 0 . 8222416363 <nl> + 050 , 4 , 9 , 02 , 270 , Alaska , Wade Hampton Census Area , 7459 , 7459 , 7469 , 7662 , 10 , 193 , 55 , 234 , 4 , 52 , 51 , 182 , 0 , 2 , - 42 , 9 , - 42 , 11 , 1 , 0 , 9 , 9 , 9 , 30 . 929879056 , 6 . 8733064569 , 24 . 056572599 , 0 . 2643579407 , 1 . 1896107329 , 1 . 4539686736 <nl> + 050 , 4 , 9 , 02 , 275 , Alaska , Wrangell City and Borough , 2369 , 2369 , 2377 , 2382 , 8 , 5 , 8 , 24 , 3 , 44 , 5 , - 20 , 0 , 0 , 3 , 26 , 3 , 26 , 0 , - 1 , 19 , 19 , 19 , 10 . 086152553 , 18 . 491279681 , - 8 . 405127128 , 0 , 10 . 926665266 , 10 . 926665266 <nl> + 050 , 4 , 9 , 02 , 282 , Alaska , Yakutat City and Borough , 662 , 662 , 659 , 646 , - 3 , - 13 , 0 , 8 , 0 , 0 , 0 , 8 , 0 , 1 , - 3 , - 22 , - 3 , - 21 , 0 , 0 , 18 , 18 , 18 , 12 . 260536398 , 0 , 12 . 260536398 , 1 . 5325670498 , - 33 . 7164751 , - 32 . 18390805 <nl> + 050 , 4 , 9 , 02 , 290 , Alaska , Yukon - Koyukuk Census Area , 5588 , 5588 , 5617 , 5656 , 29 , 39 , 19 , 90 , 1 , 28 , 18 , 62 , 0 , 0 , 10 , - 22 , 10 , - 22 , 1 , - 1 , 31 , 31 , 31 , 15 . 967355628 , 4 . 9676217511 , 10 . 999733877 , 0 , - 3 . 903131376 , - 3 . 903131376 <nl> + 040 , 4 , 8 , 04 , 000 , Arizona , Arizona , 6392017 , 6392013 , 6413158 , 6482505 , 21145 , 69347 , 20900 , 87887 , 11164 , 45899 , 9736 , 41988 , 5199 , 20542 , 6090 , 7060 , 11289 , 27602 , 120 , - 243 , 139384 , 140912 , 143926 , 13 . 630474059 , 7 . 1185172876 , 6 . 5119567718 , 3 . 1858772984 , 1 . 0949417645 , 4 . 280819063 <nl> + 050 , 4 , 8 , 04 , 001 , Arizona , Apache County , 71518 , 71518 , 71634 , 72401 , 116 , 767 , 265 , 1158 , 153 , 551 , 112 , 607 , 2 , 17 , 4 , 146 , 6 , 163 , - 2 , - 3 , 941 , 941 , 941 , 16 . 07942514 , 7 . 6509181796 , 8 . 4285069601 , 0 . 2360537369 , 2 . 0272850349 , 2 . 2633387718 <nl> + 050 , 4 , 8 , 04 , 003 , Arizona , Cochise County , 131346 , 131346 , 131723 , 133289 , 377 , 1566 , 429 , 1783 , 281 , 1108 , 148 , 675 , 128 , 231 , 105 , 657 , 233 , 888 , - 4 , 3 , 6271 , 6135 , 6763 , 13 . 455994446 , 8 . 3618854995 , 5 . 094108946 , 1 . 7433172837 , 4 . 9582660408 , 6 . 7015833245 <nl> + 050 , 4 , 8 , 04 , 005 , Arizona , Coconino County , 134421 , 134418 , 134606 , 134511 , 188 , - 95 , 436 , 1802 , 170 , 703 , 266 , 1099 , 43 , 150 , - 123 , - 1356 , - 80 , - 1206 , 2 , 12 , 8834 , 8834 , 8834 , 13 . 391944768 , 5 . 2244934359 , 8 . 1674513316 , 1 . 1147567787 , - 10 . 07740128 , - 8 . 9626445 <nl> + 050 , 4 , 8 , 04 , 007 , Arizona , Gila County , 53597 , 53597 , 53505 , 53144 , - 92 , - 361 , 161 , 670 , 136 , 659 , 25 , 11 , 11 , 50 , - 118 , - 411 , - 107 , - 361 , - 10 , - 11 , 917 , 917 , 917 , 12 . 564581009 , 12 . 358296843 , 0 . 2062841658 , 0 . 9376552992 , - 7 . 707526559 , - 6 . 76987126 <nl> + 050 , 4 , 8 , 04 , 009 , Arizona , Graham County , 37220 , 37220 , 37116 , 37147 , - 104 , 31 , 129 , 568 , 47 , 247 , 82 , 321 , 2 , 9 , - 191 , - 299 , - 189 , - 290 , 3 , 0 , 3751 , 3751 , 3751 , 15 . 29698504 , 6 . 6520339873 , 8 . 6449510523 , 0 . 2423818052 , - 8 . 052462195 , - 7 . 81008039 <nl> + 050 , 4 , 8 , 04 , 011 , Arizona , Greenlee County , 8437 , 8437 , 8351 , 8606 , - 86 , 255 , 23 , 116 , 3 , 36 , 20 , 80 , 2 , 7 , - 111 , 166 , - 109 , 173 , 3 , 2 , 35 , 35 , 35 , 13 . 681665389 , 4 . 2460340862 , 9 . 4356313027 , 0 . 825617739 , 19 . 578934953 , 20 . 404552692 <nl> + 050 , 4 , 8 , 04 , 012 , Arizona , La Paz County , 20489 , 20489 , 20471 , 20419 , - 18 , - 52 , 49 , 181 , 54 , 217 , - 5 , - 36 , 4 , 28 , - 13 , - 41 , - 9 , - 13 , - 4 , - 3 , 388 , 388 , 388 , 8 . 8530202984 , 10 . 613842015 , - 1 . 760821717 , 1 . 369528002 , - 2 . 005380289 , - 0 . 635852287 <nl> + 050 , 4 , 8 , 04 , 013 , Arizona , Maricopa County , 3817117 , 3817117 , 3824834 , 3880244 , 7717 , 55410 , 13019 , 54493 , 6039 , 24817 , 6980 , 29676 , 3718 , 15478 , - 2963 , 10442 , 755 , 25920 , - 18 , - 186 , 53177 , 53233 , 53022 , 14 . 144697821 , 6 . 4417258333 , 7 . 7029719881 , 4 . 0176102046 , 2 . 7104203228 , 6 . 7280305274 <nl> + 050 , 4 , 8 , 04 , 015 , Arizona , Mohave County , 200186 , 200186 , 201567 , 202351 , 1381 , 784 , 489 , 2099 , 609 , 2485 , - 120 , - 386 , 66 , 217 , 1419 , 971 , 1485 , 1188 , 16 , - 18 , 2629 , 3852 , 3273 , 10 . 39319862 , 12 . 304477642 , - 1 . 911279022 , 1 . 0744755124 , 4 . 8079065553 , 5 . 8823820676 <nl> + 050 , 4 , 8 , 04 , 017 , Arizona , Navajo County , 107449 , 107449 , 107568 , 107398 , 119 , - 170 , 417 , 1772 , 229 , 812 , 188 , 960 , 36 , 128 , - 105 , - 1271 , - 69 , - 1143 , 0 , 13 , 2227 , 2227 , 2227 , 16 . 48632807 , 7 . 5546830662 , 8 . 9316450043 , 1 . 1908860006 , - 11 . 82512583 , - 10 . 63423983 <nl> + 050 , 4 , 8 , 04 , 019 , Arizona , Pima County , 980263 , 980263 , 982108 , 989569 , 1845 , 7461 , 2946 , 12223 , 1970 , 8255 , 976 , 3968 , 727 , 2717 , 194 , 858 , 921 , 3575 , - 52 , - 82 , 24139 , 24390 , 25892 , 12 . 398582526 , 8 . 3735824884 , 4 . 025000038 , 2 . 7560295119 , 0 . 870325109 , 3 . 626354621 <nl> + 050 , 4 , 8 , 04 , 021 , Arizona , Pinal County , 375770 , 375770 , 384236 , 382992 , 8466 , - 1244 , 1183 , 5245 , 497 , 2074 , 686 , 3171 , 117 , 388 , 7455 , - 4857 , 7572 , - 4469 , 208 , 54 , 26245 , 26097 , 26115 , 13 . 672597976 , 5 . 4064763017 , 8 . 2661216744 , 1 . 0114333679 , - 12 . 66116461 , - 11 . 64973124 <nl> + 050 , 4 , 8 , 04 , 023 , Arizona , Santa Cruz County , 47420 , 47420 , 47465 , 47676 , 45 , 211 , 166 , 713 , 71 , 309 , 95 , 404 , 58 , 140 , - 111 , - 334 , - 53 , - 194 , 3 , 1 , 384 , 384 , 384 , 14 . 988280552 , 6 . 4956222869 , 8 . 4926582651 , 2 . 9430003889 , - 7 . 021158071 , - 4 . 078157682 <nl> + 050 , 4 , 8 , 04 , 025 , Arizona , Yavapai County , 211033 , 211033 , 211144 , 211888 , 111 , 744 , 437 , 1885 , 558 , 2309 , - 121 , - 424 , 105 , 322 , 156 , 877 , 261 , 1199 , - 29 , - 31 , 3525 , 3525 , 3525 , 8 . 9118553679 , 10 . 916431854 , - 2 . 004576486 , 1 . 5223434634 , 4 . 1462584391 , 5 . 6686019025 <nl> + 050 , 4 , 8 , 04 , 027 , Arizona , Yuma County , 195751 , 195750 , 196830 , 200870 , 1080 , 4040 , 751 , 3179 , 347 , 1317 , 404 , 1862 , 180 , 660 , 492 , 1512 , 672 , 2172 , 4 , 6 , 5921 , 6203 , 7859 , 15 . 986924818 , 6 . 6230827257 , 9 . 363842092 , 3 . 3190847372 , 7 . 603721398 , 10 . 922806135 <nl> + 040 , 3 , 7 , 05 , 000 , Arkansas , Arkansas , 2915918 , 2915921 , 2921588 , 2937979 , 5667 , 16391 , 9218 , 38156 , 6759 , 28478 , 2459 , 9678 , 951 , 3178 , 2244 , 3480 , 3195 , 6658 , 13 , 55 , 78931 , 78933 , 78933 , 13 . 023487913 , 9 . 7201721561 , 3 . 3033157569 , 1 . 0847217892 , 1 . 1878010781 , 2 . 2725228673 <nl> + 050 , 3 , 7 , 05 , 001 , Arkansas , Arkansas County , 19019 , 19019 , 18994 , 18892 , - 25 , - 102 , 59 , 250 , 54 , 222 , 5 , 28 , 5 , 20 , - 35 , - 151 , - 30 , - 131 , 0 , 1 , 247 , 247 , 247 , 13 . 197487198 , 11 . 719368632 , 1 . 4781185662 , 1 . 0557989759 , - 7 . 971282268 , - 6 . 915483292 <nl> + 050 , 3 , 7 , 05 , 003 , Arkansas , Ashley County , 21853 , 21853 , 21840 , 21692 , - 13 , - 148 , 63 , 284 , 53 , 245 , 10 , 39 , 2 , 4 , - 24 , - 193 , - 22 , - 189 , - 1 , 2 , 191 , 191 , 191 , 13 . 047872829 , 11 . 256087476 , 1 . 7917853533 , 0 . 1837728567 , - 8 . 867040338 , - 8 . 683267481 <nl> + 050 , 3 , 7 , 05 , 005 , Arkansas , Baxter County , 41513 , 41513 , 41527 , 41536 , 14 , 9 , 83 , 356 , 164 , 660 , - 81 , - 304 , 4 , 11 , 95 , 305 , 99 , 316 , - 4 , - 3 , 595 , 595 , 595 , 8 . 5718069417 , 15 . 891552195 , - 7 . 319745254 , 0 . 2648592033 , 7 . 343823363 , 7 . 6086825662 <nl> + 050 , 3 , 7 , 05 , 007 , Arkansas , Benton County , 221339 , 221339 , 222924 , 227556 , 1585 , 4632 , 784 , 3192 , 366 , 1457 , 418 , 1735 , 129 , 380 , 1013 , 2493 , 1142 , 2873 , 25 , 24 , 2061 , 2061 , 2061 , 14 . 171550346 , 6 . 4686556562 , 7 . 7028946901 , 1 . 6870893269 , 11 . 068193926 , 12 . 755283253 <nl> + 050 , 3 , 7 , 05 , 009 , Arkansas , Boone County , 36903 , 36903 , 36914 , 37051 , 11 , 137 , 90 , 388 , 109 , 431 , - 19 , - 43 , 3 , 18 , 28 , 161 , 31 , 179 , - 1 , 1 , 465 , 465 , 465 , 10 . 491448658 , 11 . 654160752 , - 1 . 162712094 , 0 . 4867166903 , 4 . 3534103968 , 4 . 8401270871 <nl> + 050 , 3 , 7 , 05 , 011 , Arkansas , Bradley County , 11508 , 11508 , 11501 , 11482 , - 7 , - 19 , 33 , 154 , 27 , 150 , 6 , 4 , 3 , 17 , - 16 , - 39 , - 13 , - 22 , 0 , - 1 , 220 , 220 , 220 , 13 . 40120959 , 13 . 053126224 , 0 . 348083366 , 1 . 4793543054 , - 3 . 393812818 , - 1 . 914458513 <nl> + 050 , 3 , 7 , 05 , 013 , Arkansas , Calhoun County , 5368 , 5368 , 5331 , 5144 , - 37 , - 187 , 8 , 41 , 6 , 48 , 2 , - 7 , 1 , 4 , - 38 , - 184 , - 37 , - 180 , - 2 , 0 , 175 , 175 , 175 , 7 . 8281622912 , 9 . 1646778043 , - 1 . 336515513 , 0 . 7637231504 , - 35 . 13126492 , - 34 . 36754177 <nl> + 050 , 3 , 7 , 05 , 015 , Arkansas , Carroll County , 27446 , 27446 , 27533 , 27512 , 87 , - 21 , 77 , 316 , 78 , 277 , - 1 , 39 , 8 , 34 , 80 , - 93 , 88 , - 59 , 0 , - 1 , 230 , 230 , 230 , 11 . 481515124 , 10 . 064492688 , 1 . 4170224362 , 1 . 2353528931 , - 3 . 379053502 , - 2 . 143700609 <nl> + 050 , 3 , 7 , 05 , 017 , Arkansas , Chicot County , 11800 , 11800 , 11799 , 11721 , - 1 , - 78 , 35 , 163 , 18 , 174 , 17 , - 11 , 0 , 0 , - 18 , - 66 , - 18 , - 66 , 0 , - 1 , 722 , 722 , 722 , 13 . 860544218 , 14 . 795918367 , - 0 . 93537415 , 0 , - 5 . 612244898 , - 5 . 612244898 <nl> + 050 , 3 , 7 , 05 , 019 , Arkansas , Clark County , 22995 , 22995 , 22959 , 22858 , - 36 , - 101 , 61 , 240 , 64 , 254 , - 3 , - 14 , 1 , 9 , - 34 , - 96 , - 33 , - 87 , 0 , 0 , 2612 , 2612 , 2612 , 10 . 476460702 , 11 . 087587577 , - 0 . 611126874 , 0 . 3928672763 , - 4 . 190584281 , - 3 . 797717005 <nl> + 050 , 3 , 7 , 05 , 021 , Arkansas , Clay County , 16083 , 16083 , 16070 , 15880 , - 13 , - 190 , 24 , 135 , 63 , 223 , - 39 , - 88 , 0 , 3 , 27 , - 105 , 27 , - 102 , - 1 , 0 , 125 , 125 , 125 , 8 . 4507042254 , 13 . 959311424 , - 5 . 508607199 , 0 . 1877934272 , - 6 . 572769953 , - 6 . 384976526 <nl> + 050 , 3 , 7 , 05 , 023 , Arkansas , Cleburne County , 25970 , 25970 , 26000 , 25901 , 30 , - 99 , 66 , 258 , 92 , 355 , - 26 , - 97 , 0 , 0 , 56 , 2 , 56 , 2 , 0 , - 4 , 339 , 339 , 339 , 9 . 942004971 , 13 . 679890561 , - 3 . 73788559 , 0 , 0 . 077069806 , 0 . 077069806 <nl> + 050 , 3 , 7 , 05 , 025 , Arkansas , Cleveland County , 8689 , 8689 , 8697 , 8672 , 8 , - 25 , 20 , 87 , 12 , 85 , 8 , 2 , 0 , 1 , 1 , - 27 , 1 , - 26 , - 1 , - 1 , 52 , 52 , 52 , 10 . 01784789 , 9 . 7875525361 , 0 . 2302953538 , 0 . 1151476769 , - 3 . 108987276 , - 2 . 993839599 <nl> + 050 , 3 , 7 , 05 , 027 , Arkansas , Columbia County , 24552 , 24552 , 24498 , 24401 , - 54 , - 97 , 62 , 304 , 67 , 312 , - 5 , - 8 , 1 , 1 , - 49 , - 90 , - 48 , - 89 , - 1 , 0 , 1315 , 1315 , 1315 , 12 . 433792102 , 12 . 760997157 , - 0 . 327205055 , 0 . 0409006319 , - 3 . 681056872 , - 3 . 64015624 <nl> + 050 , 3 , 7 , 05 , 029 , Arkansas , Conway County , 21273 , 21273 , 21275 , 21270 , 2 , - 5 , 65 , 274 , 51 , 192 , 14 , 82 , 3 , 18 , - 15 , - 104 , - 12 , - 86 , 0 , - 1 , 286 , 286 , 286 , 12 . 880479492 , 9 . 0257374545 , 3 . 8547420378 , 0 . 8461628864 , - 4 . 888941121 , - 4 . 042778235 <nl> + 050 , 3 , 7 , 05 , 031 , Arkansas , Craighead County , 96443 , 96443 , 96705 , 98315 , 262 , 1610 , 325 , 1380 , 204 , 826 , 121 , 554 , 24 , 67 , 116 , 979 , 140 , 1046 , 1 , 10 , 3579 , 3579 , 3579 , 14 . 152394626 , 8 . 4709260589 , 5 . 6814685673 , 0 . 6871090145 , 10 . 039995898 , 10 . 727104912 <nl> + 050 , 3 , 7 , 05 , 033 , Arkansas , Crawford County , 61948 , 61948 , 61997 , 61944 , 49 , - 53 , 175 , 744 , 136 , 548 , 39 , 196 , 7 , 22 , 4 , - 272 , 11 , - 250 , - 1 , 1 , 540 , 540 , 540 , 12 . 005712395 , 8 . 8429171945 , 3 . 1627952009 , 0 . 3550076246 , - 4 . 389185177 , - 4 . 034177552 <nl> + 050 , 3 , 7 , 05 , 035 , Arkansas , Crittenden County , 50902 , 50902 , 50913 , 50525 , 11 , - 388 , 196 , 826 , 129 , 495 , 67 , 331 , 6 , 28 , - 63 , - 756 , - 57 , - 728 , 1 , 9 , 701 , 701 , 701 , 16 . 285810051 , 9 . 7596561446 , 6 . 5261539068 , 0 . 5520613577 , - 14 . 90565666 , - 14 . 3535953 <nl> + 050 , 3 , 7 , 05 , 037 , Arkansas , Cross County , 17870 , 17866 , 17834 , 17781 , - 32 , - 53 , 53 , 224 , 49 , 208 , 4 , 16 , 0 , 0 , - 37 , - 69 , - 37 , - 69 , 1 , 0 , 225 , 225 , 225 , 12 . 578969535 , 11 . 680471711 , 0 . 898497824 , 0 , - 3 . 874771866 , - 3 . 874771866 <nl> + 050 , 3 , 7 , 05 , 039 , Arkansas , Dallas County , 8116 , 8116 , 8092 , 8072 , - 24 , - 20 , 19 , 88 , 8 , 82 , 11 , 6 , 0 , 0 , - 35 , - 25 , - 35 , - 25 , 0 , - 1 , 405 , 405 , 405 , 10 . 888393962 , 10 . 146003464 , 0 . 7423904974 , 0 , - 3 . 093293739 , - 3 . 093293739 <nl> + 050 , 3 , 7 , 05 , 041 , Arkansas , Desha County , 13008 , 13008 , 12986 , 12763 , - 22 , - 223 , 42 , 187 , 22 , 186 , 20 , 1 , 0 , 1 , - 43 , - 227 , - 43 , - 226 , 1 , 2 , 56 , 56 , 56 , 14 . 524835916 , 14 . 447162997 , 0 . 0776729193 , 0 . 0776729193 , - 17 . 63175269 , - 17 . 55407977 <nl> + 050 , 3 , 7 , 05 , 043 , Arkansas , Drew County , 18509 , 18509 , 18517 , 18467 , 8 , - 50 , 53 , 215 , 32 , 168 , 21 , 47 , 3 , 15 , - 14 , - 110 , - 11 , - 95 , - 2 , - 2 , 785 , 785 , 785 , 11 . 626649362 , 9 . 0850097339 , 2 . 5416396279 , 0 . 8111615834 , - 5 . 948518278 , - 5 . 137356695 <nl> + 050 , 3 , 7 , 05 , 045 , Arkansas , Faulkner County , 113237 , 113237 , 114021 , 116342 , 784 , 2321 , 389 , 1545 , 182 , 732 , 207 , 813 , 43 , 156 , 520 , 1339 , 563 , 1495 , 14 , 13 , 4055 , 4057 , 4057 , 13 . 413612429 , 6 . 355187248 , 7 . 0584251811 , 1 . 3543841676 , 11 . 625130772 , 12 . 979514939 <nl> + 050 , 3 , 7 , 05 , 047 , Arkansas , Franklin County , 18125 , 18125 , 18128 , 18047 , 3 , - 81 , 44 , 211 , 49 , 186 , - 5 , 25 , 0 , - 1 , 9 , - 105 , 9 , - 106 , - 1 , 0 , 447 , 447 , 447 , 11 . 665514858 , 10 . 283344851 , 1 . 3821700069 , - 0 . 0552868 , - 5 . 805114029 , - 5 . 860400829 <nl> + 050 , 3 , 7 , 05 , 049 , Arkansas , Fulton County , 12245 , 12245 , 12242 , 12296 , - 3 , 54 , 22 , 115 , 52 , 192 , - 30 , - 77 , 1 , 4 , 27 , 126 , 28 , 130 , - 1 , 1 , 165 , 165 , 165 , 9 . 3732170511 , 15 . 649197164 , - 6 . 275980112 , 0 . 3260249409 , 10 . 269785639 , 10 . 59581058 <nl> + 050 , 3 , 7 , 05 , 051 , Arkansas , Garland County , 96024 , 96022 , 96218 , 97124 , 196 , 906 , 280 , 1100 , 290 , 1241 , - 10 , - 141 , 28 , 118 , 180 , 920 , 208 , 1038 , - 2 , 9 , 2166 , 2166 , 2166 , 11 . 378800261 , 12 . 837355567 , - 1 . 458555306 , 1 . 2206349371 , 9 . 5168147635 , 10 . 737449701 <nl> + 050 , 3 , 7 , 05 , 053 , Arkansas , Grant County , 17853 , 17853 , 17893 , 17988 , 40 , 95 , 47 , 188 , 39 , 155 , 8 , 33 , 3 , 19 , 29 , 43 , 32 , 62 , 0 , 0 , 143 , 143 , 143 , 10 . 479083638 , 8 . 6396700203 , 1 . 8394136172 , 1 . 0590563251 , 2 . 3968116831 , 3 . 4558680081 <nl> + 050 , 3 , 7 , 05 , 055 , Arkansas , Greene County , 42090 , 42090 , 42171 , 42720 , 81 , 549 , 123 , 535 , 113 , 456 , 10 , 79 , 4 , 16 , 67 , 449 , 71 , 465 , 0 , 5 , 602 , 602 , 602 , 12 . 604398582 , 10 . 743188324 , 1 . 8612102579 , 0 . 3769539763 , 10 . 578270959 , 10 . 955224936 <nl> + 050 , 3 , 7 , 05 , 057 , Arkansas , Hempstead County , 22609 , 22609 , 22590 , 22541 , - 19 , - 49 , 73 , 326 , 54 , 232 , 19 , 94 , 3 , 4 , - 40 , - 147 , - 37 , - 143 , - 1 , 0 , 301 , 301 , 301 , 14 . 446832554 , 10 . 28118145 , 4 . 1656511046 , 0 . 1772617491 , - 6 . 514369281 , - 6 . 337107531 <nl> + 050 , 3 , 7 , 05 , 059 , Arkansas , Hot Spring County , 32923 , 32923 , 32938 , 32881 , 15 , - 57 , 89 , 363 , 89 , 328 , 0 , 35 , 2 , 10 , 13 , - 98 , 15 , - 88 , 0 , - 4 , 1571 , 1571 , 1571 , 11 . 030249624 , 9 . 966726933 , 1 . 063522691 , 0 . 303863626 , - 2 . 977863535 , - 2 . 673999909 <nl> + 050 , 3 , 7 , 05 , 061 , Arkansas , Howard County , 13789 , 13789 , 13817 , 13886 , 28 , 69 , 53 , 209 , 27 , 153 , 26 , 56 , 6 , 28 , - 4 , - 15 , 2 , 13 , 0 , 0 , 181 , 181 , 181 , 15 . 088618561 , 11 . 045735119 , 4 . 0428834422 , 2 . 0214417211 , - 1 . 082915208 , 0 . 9385265134 <nl> + 050 , 3 , 7 , 05 , 063 , Arkansas , Independence County , 36647 , 36647 , 36724 , 36861 , 77 , 137 , 110 , 474 , 102 , 400 , 8 , 74 , 14 , 59 , 55 , 7 , 69 , 66 , 0 , - 3 , 900 , 900 , 900 , 12 . 883060406 , 10 . 871780934 , 2 . 0112794727 , 1 . 6035876877 , 0 . 1902561663 , 1 . 793843854 <nl> + 050 , 3 , 7 , 05 , 065 , Arkansas , Izard County , 13696 , 13696 , 13671 , 13419 , - 25 , - 252 , 33 , 117 , 50 , 191 , - 17 , - 74 , 1 , 4 , - 7 , - 180 , - 6 , - 176 , - 2 , - 2 , 769 , 769 , 769 , 8 . 6378737542 , 14 . 101144334 , - 5 . 46327058 , 0 . 2953119232 , - 13 . 28903654 , - 12 . 99372462 <nl> + 050 , 3 , 7 , 05 , 067 , Arkansas , Jackson County , 17997 , 17997 , 17972 , 17866 , - 25 , - 106 , 44 , 182 , 54 , 215 , - 10 , - 33 , 0 , 2 , - 15 , - 74 , - 15 , - 72 , 0 , - 1 , 2000 , 2000 , 2000 , 10 . 156816787 , 11 . 998437413 , - 1 . 841620626 , 0 . 1116133713 , - 4 . 129694737 , - 4 . 018081366 <nl> + 050 , 3 , 7 , 05 , 069 , Arkansas , Jefferson County , 77435 , 77435 , 77317 , 76246 , - 118 , - 1071 , 238 , 1005 , 221 , 832 , 17 , 173 , 10 , 32 , - 147 , - 1290 , - 137 , - 1258 , 2 , 14 , 5530 , 5530 , 5530 , 13 . 089090471 , 10 . 835943554 , 2 . 2531469169 , 0 . 4167670598 , - 16 . 8009221 , - 16 . 38415504 <nl> + 050 , 3 , 7 , 05 , 071 , Arkansas , Johnson County , 25540 , 25540 , 25578 , 25742 , 38 , 164 , 87 , 342 , 71 , 242 , 16 , 100 , 15 , 61 , 7 , 7 , 22 , 68 , 0 , - 4 , 558 , 558 , 558 , 13 . 328137178 , 9 . 4310210444 , 3 . 8971161341 , 2 . 3772408418 , 0 . 2727981294 , 2 . 6500389712 <nl> + 050 , 3 , 7 , 05 , 073 , Arkansas , Lafayette County , 7645 , 7645 , 7636 , 7516 , - 9 , - 120 , 16 , 80 , 11 , 106 , 5 , - 26 , 0 , 0 , - 12 , - 96 , - 12 , - 96 , - 2 , 2 , 111 , 111 , 111 , 10 . 559662091 , 13 . 99155227 , - 3 . 43189018 , 0 , - 12 . 67159451 , - 12 . 67159451 <nl> + 050 , 3 , 7 , 05 , 075 , Arkansas , Lawrence County , 17415 , 17415 , 17421 , 17178 , 6 , - 243 , 45 , 180 , 73 , 271 , - 28 , - 91 , 0 , 1 , 35 , - 153 , 35 , - 152 , - 1 , 0 , 595 , 595 , 595 , 10 . 404924998 , 15 . 665192636 , - 5 . 260267638 , 0 . 0578051389 , - 8 . 844186248 , - 8 . 786381109 <nl> + 050 , 3 , 7 , 05 , 077 , Arkansas , Lee County , 10424 , 10424 , 10423 , 10326 , - 1 , - 97 , 23 , 95 , 8 , 125 , 15 , - 30 , 2 , 10 , - 17 , - 77 , - 15 , - 67 , - 1 , 0 , 1756 , 1756 , 1756 , 9 . 1570678105 , 12 . 048773435 , - 2 . 891705624 , 0 . 9639018748 , - 7 . 422044436 , - 6 . 458142561 <nl> + 050 , 3 , 7 , 05 , 079 , Arkansas , Lincoln County , 14134 , 14134 , 14100 , 14006 , - 34 , - 94 , 32 , 121 , 23 , 154 , 9 , - 33 , 0 , 1 , - 43 , - 61 , - 43 , - 60 , 0 , - 1 , 3445 , 3445 , 3445 , 8 . 6102611542 , 10 . 958514196 , - 2 . 348253042 , 0 . 0711591831 , - 4 . 340710169 , - 4 . 269550986 <nl> + 050 , 3 , 7 , 05 , 081 , Arkansas , Little River County , 13171 , 13171 , 13137 , 12996 , - 34 , - 141 , 32 , 154 , 41 , 168 , - 9 , - 14 , 0 , 0 , - 25 , - 127 , - 25 , - 127 , 0 , 0 , 123 , 123 , 123 , 11 . 785864616 , 12 . 857306853 , - 1 . 071442238 , 0 , - 9 . 719511728 , - 9 . 719511728 <nl> + 050 , 3 , 7 , 05 , 083 , Arkansas , Logan County , 22353 , 22353 , 22334 , 22290 , - 19 , - 44 , 59 , 260 , 69 , 288 , - 10 , - 28 , 1 , 7 , - 9 , - 22 , - 8 , - 15 , - 1 , - 1 , 580 , 580 , 580 , 11 . 652922194 , 12 . 907852277 , - 1 . 254930082 , 0 . 3137325206 , - 0 . 986016493 , - 0 . 672283973 <nl> + 050 , 3 , 7 , 05 , 085 , Arkansas , Lonoke County , 68356 , 68354 , 68658 , 69341 , 304 , 683 , 228 , 891 , 136 , 577 , 92 , 314 , 14 , 39 , 194 , 331 , 208 , 370 , 4 , - 1 , 572 , 572 , 572 , 12 . 913137052 , 8 . 3623794375 , 4 . 5507576142 , 0 . 5652214871 , 4 . 7971362111 , 5 . 3623576982 <nl> + 050 , 3 , 7 , 05 , 087 , Arkansas , Madison County , 15717 , 15720 , 15707 , 15776 , - 13 , 69 , 41 , 179 , 31 , 133 , 10 , 46 , 4 , 15 , - 27 , 9 , - 23 , 24 , 0 , - 1 , 79 , 79 , 79 , 11 . 371216212 , 8 . 4490042245 , 2 . 9222119874 , 0 . 9528952133 , 0 . 571737128 , 1 . 5246323413 <nl> + 050 , 3 , 7 , 05 , 089 , Arkansas , Marion County , 16653 , 16653 , 16633 , 16573 , - 20 , - 60 , 37 , 141 , 74 , 252 , - 37 , - 111 , 3 , 13 , 16 , 38 , 19 , 51 , - 2 , 0 , 141 , 141 , 141 , 8 . 4924411251 , 15 . 177979883 , - 6 . 685538758 , 0 . 7829910257 , 2 . 2887429983 , 3 . 071734024 <nl> + 050 , 3 , 7 , 05 , 091 , Arkansas , Miller County , 43462 , 43462 , 43530 , 43759 , 68 , 229 , 154 , 625 , 91 , 419 , 63 , 206 , 9 , 25 , - 2 , 1 , 7 , 26 , - 2 , - 3 , 1480 , 1480 , 1480 , 14 . 320246537 , 9 . 6002932786 , 4 . 7199532587 , 0 . 5728098615 , 0 . 0229123945 , 0 . 595722256 <nl> + 050 , 3 , 7 , 05 , 093 , Arkansas , Mississippi County , 46480 , 46480 , 46332 , 45966 , - 148 , - 366 , 153 , 652 , 121 , 511 , 32 , 141 , 15 , 64 , - 197 , - 573 , - 182 , - 509 , 2 , 2 , 767 , 767 , 767 , 14 . 128150122 , 11 . 072829314 , 3 . 0553208087 , 1 . 386812282 , - 12 . 41630371 , - 11 . 02949143 <nl> + 050 , 3 , 7 , 05 , 095 , Arkansas , Monroe County , 8149 , 8149 , 8121 , 8075 , - 28 , - 46 , 27 , 106 , 13 , 126 , 14 , - 20 , 0 , 1 , - 42 , - 27 , - 42 , - 26 , 0 , 0 , 84 , 84 , 84 , 13 . 089651766 , 15 . 559397382 , - 2 . 469745616 , 0 . 1234872808 , - 3 . 334156582 , - 3 . 210669301 <nl> + 050 , 3 , 7 , 05 , 097 , Arkansas , Montgomery County , 9487 , 9487 , 9486 , 9433 , - 1 , - 53 , 21 , 89 , 34 , 138 , - 13 , - 49 , 0 , 3 , 14 , - 6 , 14 , - 3 , - 2 , - 1 , 121 , 121 , 121 , 9 . 4085311063 , 14 . 588508906 , - 5 . 1799778 , 0 . 317141498 , - 0 . 634282996 , - 0 . 317141498 <nl> + 050 , 3 , 7 , 05 , 099 , Arkansas , Nevada County , 8997 , 8997 , 8984 , 9017 , - 13 , 33 , 28 , 111 , 13 , 115 , 15 , - 4 , 0 , 0 , - 28 , 38 , - 28 , 38 , 0 , - 1 , 157 , 157 , 157 , 12 . 332648186 , 12 . 777067941 , - 0 . 444419754 , 0 , 4 . 2219876674 , 4 . 2219876674 <nl> + 050 , 3 , 7 , 05 , 101 , Arkansas , Newton County , 8330 , 8330 , 8339 , 8264 , 9 , - 75 , 18 , 74 , 20 , 116 , - 2 , - 42 , 0 , 0 , 12 , - 33 , 12 , - 33 , - 1 , 0 , 51 , 51 , 51 , 8 . 9140516774 , 13 . 973378305 , - 5 . 059326628 , 0 , - 3 . 975185207 , - 3 . 975185207 <nl> + 050 , 3 , 7 , 05 , 103 , Arkansas , Ouachita County , 26120 , 26120 , 26129 , 25880 , 9 , - 249 , 74 , 325 , 81 , 352 , - 7 , - 27 , 1 , 5 , 16 , - 228 , 17 , - 223 , - 1 , 1 , 352 , 352 , 352 , 12 . 497836913 , 13 . 536118749 , - 1 . 038281836 , 0 . 192274414 , - 8 . 76771328 , - 8 . 575438866 <nl> + 050 , 3 , 7 , 05 , 105 , Arkansas , Perry County , 10445 , 10445 , 10464 , 10405 , 19 , - 59 , 29 , 120 , 32 , 129 , - 3 , - 9 , 0 , 3 , 23 , - 53 , 23 , - 50 , - 1 , 0 , 152 , 152 , 152 , 11 . 500311467 , 12 . 362834827 , - 0 . 86252336 , 0 . 2875077867 , - 5 . 079304231 , - 4 . 791796444 <nl> + 050 , 3 , 7 , 05 , 107 , Arkansas , Phillips County , 21757 , 21757 , 21671 , 21442 , - 86 , - 229 , 74 , 341 , 45 , 289 , 29 , 52 , 1 , 4 , - 118 , - 289 , - 117 , - 285 , 2 , 4 , 246 , 246 , 246 , 15 . 818894533 , 13 . 406629091 , 2 . 412265442 , 0 . 1855588802 , - 13 . 40662909 , - 13 . 22107021 <nl> + 050 , 3 , 7 , 05 , 109 , Arkansas , Pike County , 11291 , 11291 , 11296 , 11259 , 5 , - 37 , 31 , 120 , 22 , 143 , 9 , - 23 , 5 , 20 , - 8 , - 34 , - 3 , - 14 , - 1 , 0 , 196 , 196 , 196 , 10 . 640656174 , 12 . 680115274 , - 2 . 0394591 , 1 . 7734426956 , - 3 . 014852583 , - 1 . 241409887 <nl> + 050 , 3 , 7 , 05 , 111 , Arkansas , Poinsett County , 24583 , 24583 , 24551 , 24514 , - 32 , - 37 , 69 , 310 , 85 , 330 , - 16 , - 20 , 1 , 10 , - 15 , - 26 , - 14 , - 16 , - 2 , - 1 , 341 , 341 , 341 , 12 . 636298787 , 13 . 45154387 , - 0 . 815245083 , 0 . 4076225415 , - 1 . 059818608 , - 0 . 652196066 <nl> + 050 , 3 , 7 , 05 , 113 , Arkansas , Polk County , 20662 , 20662 , 20664 , 20610 , 2 , - 54 , 51 , 240 , 68 , 274 , - 17 , - 34 , 1 , 10 , 20 , - 29 , 21 , - 19 , - 2 , - 1 , 155 , 155 , 155 , 11 . 629597325 , 13 . 277123613 , - 1 . 647526288 , 0 . 4845665552 , - 1 . 40524301 , - 0 . 920676455 <nl> + 050 , 3 , 7 , 05 , 115 , Arkansas , Pope County , 61754 , 61754 , 61875 , 62331 , 121 , 456 , 191 , 787 , 127 , 503 , 64 , 284 , 14 , 43 , 44 , 130 , 58 , 173 , - 1 , - 1 , 3330 , 3330 , 3330 , 12 . 672495693 , 8 . 0994476917 , 4 . 5730480009 , 0 . 6923981128 , 2 . 0932966201 , 2 . 7856947329 <nl> + 050 , 3 , 7 , 05 , 117 , Arkansas , Prairie County , 8715 , 8715 , 8713 , 8618 , - 2 , - 95 , 25 , 88 , 19 , 116 , 6 , - 28 , 0 , 1 , - 7 , - 68 , - 7 , - 67 , - 1 , 0 , 131 , 131 , 131 , 10 . 155213202 , 13 . 386417402 , - 3 . 231204201 , 0 . 11540015 , - 7 . 847210201 , - 7 . 731810051 <nl> + 050 , 3 , 7 , 05 , 119 , Arkansas , Pulaski County , 382748 , 382750 , 383581 , 386299 , 831 , 2718 , 1416 , 5648 , 805 , 3270 , 611 , 2378 , 243 , 641 , - 12 , - 276 , 231 , 365 , - 11 , - 25 , 7938 , 7938 , 7938 , 14 . 67241648 , 8 . 4948303632 , 6 . 1775861173 , 1 . 6651945758 , - 0 . 716994856 , 0 . 9481997194 <nl> + 050 , 3 , 7 , 05 , 121 , Arkansas , Randolph County , 17969 , 17969 , 17970 , 18017 , 1 , 47 , 44 , 205 , 70 , 249 , - 26 , - 44 , 3 , 14 , 25 , 78 , 28 , 92 , - 1 , - 1 , 349 , 349 , 349 , 11 . 393003029 , 13 . 838330508 , - 2 . 445327479 , 0 . 7780587434 , 4 . 3348987134 , 5 . 1129574569 <nl> + 050 , 3 , 7 , 05 , 123 , Arkansas , St . Francis County , 28258 , 28258 , 28165 , 27970 , - 93 , - 195 , 83 , 354 , 53 , 291 , 30 , 63 , 3 , 10 , - 128 , - 270 , - 125 , - 260 , 2 , 2 , 4085 , 4085 , 4085 , 12 . 612452124 , 10 . 367863187 , 2 . 2445889374 , 0 . 3562839583 , - 9 . 619666874 , - 9 . 263382916 <nl> + 050 , 3 , 7 , 05 , 125 , Arkansas , Saline County , 107118 , 107120 , 107636 , 109526 , 516 , 1890 , 300 , 1218 , 223 , 856 , 77 , 362 , 32 , 115 , 399 , 1395 , 431 , 1510 , 8 , 18 , 1425 , 1425 , 1425 , 11 . 217432147 , 7 . 8835155322 , 3 . 3339166152 , 1 . 0591171568 , 12 . 847551597 , 13 . 906668754 <nl> + 050 , 3 , 7 , 05 , 127 , Arkansas , Scott County , 11233 , 11233 , 11279 , 11272 , 46 , - 7 , 33 , 141 , 21 , 117 , 12 , 24 , 3 , 9 , 31 , - 39 , 34 , - 30 , 0 , - 1 , 79 , 79 , 79 , 12 . 504988692 , 10 . 376479979 , 2 . 1285087136 , 0 . 7981907676 , - 3 . 45882666 , - 2 . 660635892 <nl> + 050 , 3 , 7 , 05 , 129 , Arkansas , Searcy County , 8195 , 8195 , 8186 , 8036 , - 9 , - 150 , 15 , 69 , 19 , 107 , - 4 , - 38 , 1 , 3 , - 4 , - 117 , - 3 , - 114 , - 2 , 2 , 71 , 71 , 71 , 8 . 5069658488 , 13 . 191961534 , - 4 . 684995685 , 0 . 3698680804 , - 14 . 42485514 , - 14 . 05498705 <nl> + 050 , 3 , 7 , 05 , 131 , Arkansas , Sebastian County , 125744 , 125744 , 125853 , 127127 , 109 , 1274 , 422 , 1748 , 259 , 1121 , 163 , 627 , 55 , 178 , - 109 , 472 , - 54 , 650 , 0 , - 3 , 2235 , 2235 , 2235 , 13 . 819274251 , 8 . 8623606609 , 4 . 95691359 , 1 . 4072258677 , 3 . 7315202783 , 5 . 1387461459 <nl> + 050 , 3 , 7 , 05 , 133 , Arkansas , Sevier County , 17058 , 17058 , 17147 , 17293 , 89 , 146 , 68 , 282 , 33 , 155 , 35 , 127 , 16 , 49 , 38 , - 29 , 54 , 20 , 0 , - 1 , 173 , 173 , 173 , 16 . 37630662 , 9 . 0011614402 , 7 . 37514518 , 2 . 8455284553 , - 1 . 684088269 , 1 . 1614401858 <nl> + 050 , 3 , 7 , 05 , 135 , Arkansas , Sharp County , 17264 , 17264 , 17255 , 17380 , - 9 , 125 , 39 , 172 , 62 , 227 , - 23 , - 55 , 0 , 1 , 16 , 178 , 16 , 179 , - 2 , 1 , 189 , 189 , 189 , 9 . 9321495597 , 13 . 108127617 , - 3 . 175978057 , 0 . 0577450556 , 10 . 278619893 , 10 . 336364949 <nl> + 050 , 3 , 7 , 05 , 137 , Arkansas , Stone County , 12394 , 12394 , 12431 , 12603 , 37 , 172 , 31 , 120 , 33 , 152 , - 2 , - 32 , 0 , 0 , 39 , 202 , 39 , 202 , 0 , 2 , 151 , 151 , 151 , 9 . 586961732 , 12 . 143484861 , - 2 . 556523129 , 0 , 16 . 138052249 , 16 . 138052249 <nl> + 050 , 3 , 7 , 05 , 139 , Arkansas , Union County , 41639 , 41639 , 41535 , 41427 , - 104 , - 108 , 126 , 536 , 133 , 559 , - 7 , - 23 , 4 , 23 , - 102 , - 105 , - 98 , - 82 , 1 , - 3 , 524 , 524 , 524 , 12 . 921578554 , 13 . 476049276 , - 0 . 554470722 , 0 . 5544707215 , - 2 . 531279381 , - 1 . 976808659 <nl> + 050 , 3 , 7 , 05 , 141 , Arkansas , Van Buren County , 17295 , 17295 , 17300 , 17083 , 5 , - 217 , 39 , 151 , 54 , 241 , - 15 , - 90 , 0 , 1 , 21 , - 128 , 21 , - 127 , - 1 , 0 , 189 , 189 , 189 , 8 . 7834104063 , 14 . 018555682 , - 5 . 235145275 , 0 . 0581682808 , - 7 . 445539947 , - 7 . 387371666 <nl> + 050 , 3 , 7 , 05 , 143 , Arkansas , Washington County , 203065 , 203065 , 204061 , 207521 , 996 , 3460 , 784 , 3205 , 307 , 1260 , 477 , 1945 , 155 , 555 , 357 , 959 , 512 , 1514 , 7 , 1 , 7563 , 7563 , 7563 , 15 . 574053287 , 6 . 1227167369 , 9 . 4513365502 , 2 . 6969109436 , 4 . 6600677386 , 7 . 3569786823 <nl> + 050 , 3 , 7 , 05 , 145 , Arkansas , White County , 77076 , 77076 , 77332 , 78167 , 256 , 835 , 233 , 989 , 186 , 756 , 47 , 233 , 12 , 44 , 196 , 558 , 208 , 602 , 1 , 0 , 3252 , 3252 , 3252 , 12 . 720339038 , 9 . 7235351996 , 2 . 996803838 , 0 . 5659200381 , 7 . 1768950283 , 7 . 7428150663 <nl> + 050 , 3 , 7 , 05 , 147 , Arkansas , Woodruff County , 7260 , 7264 , 7265 , 7229 , 1 , - 36 , 19 , 87 , 11 , 95 , 8 , - 8 , 0 , 0 , - 7 , - 27 , - 7 , - 27 , 0 , - 1 , 106 , 106 , 106 , 12 . 004967573 , 13 . 108872637 , - 1 . 103905064 , 0 , - 3 . 725679592 , - 3 . 725679592 <nl> + 050 , 3 , 7 , 05 , 149 , Arkansas , Yell County , 22185 , 22185 , 22202 , 22060 , 17 , - 142 , 83 , 324 , 56 , 234 , 27 , 90 , 23 , 95 , - 33 , - 331 , - 10 , - 236 , 0 , 4 , 323 , 323 , 323 , 14 . 640097601 , 10 . 573403823 , 4 . 066693778 , 4 . 2926212101 , - 14 . 95639601 , - 10 . 6637748 <nl> + 040 , 4 , 9 , 06 , 000 , California , California , 37253956 , 37253956 , 37338198 , 37691912 , 84242 , 353714 , 123173 , 508069 , 57867 , 234045 , 65306 , 274024 , 33518 , 130927 , - 15021 , - 50684 , 18497 , 80243 , 439 , - 553 , 819816 , 820443 , 820394 , 13 . 543069576 , 6 . 2386953718 , 7 . 3043742039 , 3 . 4899855538 , - 1 . 351030939 , 2 . 1389546144 <nl> + 050 , 4 , 9 , 06 , 001 , California , Alameda County , 1510271 , 1510271 , 1513043 , 1529875 , 2772 , 16832 , 4729 , 19372 , 2263 , 8950 , 2466 , 10422 , 1710 , 7007 , - 1423 , - 523 , 287 , 6484 , 19 , - 74 , 37442 , 37441 , 37442 , 12 . 732515303 , 5 . 8825114578 , 6 . 850003845 , 4 . 6054477971 , - 0 . 343748994 , 4 . 2616988036 <nl> + 050 , 4 , 9 , 06 , 003 , California , Alpine County , 1175 , 1175 , 1162 , 1102 , - 13 , - 60 , 0 , 4 , 0 , 3 , 0 , 1 , 0 , 1 , - 14 , - 63 , - 14 , - 62 , 1 , 1 , 24 , 24 , 24 , 3 . 5335689046 , 2 . 6501766784 , 0 . 8833922261 , 0 . 8833922261 , - 55 . 65371025 , - 54 . 77031802 <nl> + 050 , 4 , 9 , 06 , 005 , California , Amador County , 38091 , 38091 , 38026 , 37953 , - 65 , - 73 , 63 , 277 , 109 , 396 , - 46 , - 119 , 2 , 10 , - 18 , 38 , - 16 , 48 , - 3 , - 2 , 4551 , 4551 , 4551 , 7 . 2914884376 , 10 . 423932929 , - 3 . 132444491 , 0 . 2632306295 , 1 . 0002763922 , 1 . 2635070217 <nl> + 050 , 4 , 9 , 06 , 007 , California , Butte County , 220000 , 220000 , 220000 , 220266 , 0 , 266 , 606 , 2403 , 537 , 2182 , 69 , 221 , 75 , 234 , - 136 , - 176 , - 61 , 58 , - 8 , - 13 , 4942 , 4942 , 4942 , 10 . 916127977 , 9 . 9121894491 , 1 . 0039385281 , 1 . 0629937356 , - 0 . 799516656 , 0 . 2634770798 <nl> + 050 , 4 , 9 , 06 , 009 , California , Calaveras County , 45578 , 45578 , 45485 , 45052 , - 93 , - 433 , 84 , 330 , 116 , 478 , - 32 , - 148 , 2 , 4 , - 57 , - 283 , - 55 , - 279 , - 6 , - 6 , 493 , 493 , 493 , 7 . 2898373041 , 10 . 559218883 , - 3 . 269381579 , 0 . 0883616643 , - 6 . 251587749 , - 6 . 163226084 <nl> + 050 , 4 , 9 , 06 , 011 , California , Colusa County , 21419 , 21419 , 21475 , 21549 , 56 , 74 , 80 , 345 , 14 , 114 , 66 , 231 , 24 , 82 , - 34 , - 242 , - 10 , - 160 , 0 , 3 , 225 , 225 , 225 , 16 . 037560431 , 5 . 2993677947 , 10 . 738192637 , 3 . 8118259576 , - 11 . 24953514 , - 7 . 437709186 <nl> + 050 , 4 , 9 , 06 , 013 , California , Contra Costa County , 1049025 , 1049025 , 1052605 , 1066096 , 3580 , 13491 , 3002 , 12289 , 1752 , 7039 , 1250 , 5250 , 747 , 3313 , 1566 , 4920 , 2313 , 8233 , 17 , 8 , 10314 , 10314 , 10314 , 11 . 600504271 , 6 . 6446374453 , 4 . 9558668259 , 3 . 1273879608 , 4 . 6443551969 , 7 . 7717431577 <nl> + 050 , 4 , 9 , 06 , 015 , California , Del Norte County , 28610 , 28610 , 28634 , 28659 , 24 , 25 , 91 , 347 , 73 , 248 , 18 , 99 , 7 , 24 , 1 , - 96 , 8 , - 72 , - 2 , - 2 , 3818 , 3818 , 3818 , 12 . 113172639 , 8 . 6572530676 , 3 . 4559195713 , 0 . 837798684 , - 3 . 351194736 , - 2 . 513396052 <nl> + 050 , 4 , 9 , 06 , 017 , California , El Dorado County , 181058 , 181058 , 181151 , 180938 , 93 , - 213 , 404 , 1634 , 324 , 1348 , 80 , 286 , 40 , 75 , - 21 , - 570 , 19 , - 495 , - 6 , - 4 , 1643 , 1643 , 1643 , 9 . 0254053561 , 7 . 4456832436 , 1 . 5797221125 , 0 . 4142627917 , - 3 . 148397217 , - 2 . 734134426 <nl> + 050 , 4 , 9 , 06 , 019 , California , Fresno County , 930450 , 930450 , 933168 , 942904 , 2718 , 9736 , 3927 , 15958 , 1528 , 6161 , 2399 , 9797 , 650 , 2584 , - 329 , - 2639 , 321 , - 55 , - 2 , - 6 , 17523 , 17523 , 17523 , 17 . 012140259 , 6 . 5679782013 , 10 . 444162058 , 2 . 7546917176 , - 2 . 813324862 , - 0 . 058633144 <nl> + 050 , 4 , 9 , 06 , 021 , California , Glenn County , 28122 , 28122 , 28112 , 28128 , - 10 , 16 , 104 , 418 , 53 , 211 , 51 , 207 , 8 , 19 , - 70 , - 209 , - 62 , - 190 , 1 , - 1 , 316 , 316 , 316 , 14 . 864864865 , 7 . 5035561878 , 7 . 3613086771 , 0 . 6756756757 , - 7 . 432432432 , - 6 . 756756757 <nl> + 050 , 4 , 9 , 06 , 023 , California , Humboldt County , 134623 , 134623 , 134762 , 134761 , 139 , - 1 , 382 , 1521 , 298 , 1193 , 84 , 328 , 27 , 100 , 31 , - 427 , 58 , - 327 , - 3 , - 2 , 5014 , 5014 , 5014 , 11 . 286606338 , 8 . 852676766 , 2 . 4339295719 , 0 . 7420516987 , - 3 . 168560754 , - 2 . 426509055 <nl> + 050 , 4 , 9 , 06 , 025 , California , Imperial County , 174528 , 174528 , 175136 , 177057 , 608 , 1921 , 709 , 3062 , 224 , 844 , 485 , 2218 , 138 , 619 , - 12 , - 916 , 126 , - 297 , - 3 , 0 , 10684 , 10684 , 10684 , 17 . 388193405 , 4 . 7928266604 , 12 . 595366745 , 3 . 5151181313 , - 5 . 20169339 , - 1 . 686575258 <nl> + 050 , 4 , 9 , 06 , 027 , California , Inyo County , 18546 , 18546 , 18519 , 18478 , - 27 , - 41 , 47 , 215 , 45 , 186 , 2 , 29 , 3 , 12 , - 32 , - 80 , - 29 , - 68 , 0 , - 2 , 433 , 433 , 433 , 11 . 622563992 , 10 . 054869314 , 1 . 5676946779 , 0 . 648701246 , - 4 . 324674974 , - 3 . 675973728 <nl> + 050 , 4 , 9 , 06 , 029 , California , Kern County , 839631 , 839631 , 842813 , 851710 , 3182 , 8897 , 3450 , 14378 , 1321 , 5318 , 2129 , 9060 , 566 , 1965 , 474 , - 2108 , 1040 , - 143 , 13 , - 20 , 36757 , 37424 , 37251 , 16 . 96996736 , 6 . 276692615 , 10 . 693274745 , 2 . 319236741 , - 2 . 488015801 , - 0 . 168779061 <nl> + 050 , 4 , 9 , 06 , 031 , California , Kings County , 152982 , 152982 , 153183 , 153765 , 201 , 582 , 600 , 2528 , 187 , 770 , 413 , 1758 , 165 , 505 , - 387 , - 1699 , - 222 , - 1194 , 10 , 18 , 21580 , 21578 , 21581 , 16 . 471845394 , 5 . 0171364531 , 11 . 454708941 , 3 . 2904596218 , - 11 . 070279 , - 7 . 779819383 <nl> + 050 , 4 , 9 , 06 , 033 , California , Lake County , 64665 , 64665 , 64753 , 64323 , 88 , - 430 , 172 , 707 , 190 , 761 , - 18 , - 54 , 17 , 53 , 90 , - 431 , 107 , - 378 , - 1 , 2 , 1085 , 1085 , 1085 , 10 . 954786327 , 11 . 791502681 , - 0 . 836716353 , 0 . 8212216059 , - 6 . 678236078 , - 5 . 857014472 <nl> + 050 , 4 , 9 , 06 , 035 , California , Lassen County , 34895 , 34895 , 34811 , 34200 , - 84 , - 611 , 83 , 319 , 62 , 223 , 21 , 96 , 2 , 7 , - 109 , - 722 , - 107 , - 715 , 2 , 8 , 9779 , 9779 , 9779 , 9 . 2449029865 , 6 . 4627378244 , 2 . 7821651621 , 0 . 2028662097 , - 20 . 92420049 , - 20 . 72133428 <nl> + 050 , 4 , 9 , 06 , 037 , California , Los Angeles County , 9818605 , 9818605 , 9826773 , 9889056 , 8168 , 62283 , 31907 , 133239 , 14329 , 58426 , 17578 , 74813 , 10568 , 42413 , - 20354 , - 55146 , - 9786 , - 12733 , 376 , 203 , 171681 , 171592 , 171558 , 13 . 515941937 , 5 . 9268113961 , 7 . 5891305407 , 4 . 3024313104 , - 5 . 59408382 , - 1 . 291652509 <nl> + 050 , 4 , 9 , 06 , 039 , California , Madera County , 150865 , 150865 , 151468 , 152925 , 603 , 1457 , 585 , 2376 , 224 , 880 , 361 , 1496 , 136 , 500 , 107 , - 531 , 243 , - 31 , - 1 , - 8 , 8624 , 8678 , 8809 , 15 . 611397108 , 5 . 781998929 , 9 . 8293981793 , 3 . 2852266642 , - 3 . 488910717 , - 0 . 203684053 <nl> + 050 , 4 , 9 , 06 , 041 , California , Marin County , 252409 , 252409 , 252789 , 255031 , 380 , 2242 , 584 , 2374 , 415 , 1692 , 169 , 682 , 201 , 632 , 23 , 930 , 224 , 1562 , - 13 , - 2 , 9044 , 9044 , 9044 , 9 . 3497696034 , 6 . 6637785042 , 2 . 6859910992 , 2 . 4890709306 , 3 . 6627151353 , 6 . 1517860659 <nl> + 050 , 4 , 9 , 06 , 043 , California , Mariposa County , 18251 , 18251 , 18267 , 18191 , 16 , - 76 , 34 , 148 , 40 , 160 , - 6 , - 12 , 1 , 8 , 21 , - 69 , 22 , - 61 , 0 , - 3 , 725 , 725 , 725 , 8 . 1189313731 , 8 . 777223106 , - 0 . 658291733 , 0 . 4388611553 , - 3 . 785177464 , - 3 . 346316309 <nl> + 050 , 4 , 9 , 06 , 045 , California , Mendocino County , 87841 , 87841 , 87812 , 87553 , - 29 , - 259 , 260 , 1057 , 197 , 759 , 63 , 298 , 44 , 155 , - 134 , - 710 , - 90 , - 555 , - 2 , - 2 , 2044 , 2044 , 2044 , 12 . 054857013 , 8 . 656231289 , 3 . 3986257235 , 1 . 7677415676 , - 8 . 097396858 , - 6 . 32965529 <nl> + 050 , 4 , 9 , 06 , 047 , California , Merced County , 255793 , 255793 , 256754 , 259898 , 961 , 3144 , 1023 , 4260 , 361 , 1510 , 662 , 2750 , 233 , 901 , 66 , - 502 , 299 , 399 , 0 , - 5 , 4896 , 4896 , 4896 , 16 . 490790706 , 5 . 8453272222 , 10 . 645463484 , 3 . 4878409452 , - 1 . 943280971 , 1 . 5445599746 <nl> + 050 , 4 , 9 , 06 , 049 , California , Modoc County , 9686 , 9686 , 9695 , 9517 , 9 , - 178 , 28 , 106 , 22 , 121 , 6 , - 15 , 4 , 14 , - 1 , - 179 , 3 , - 165 , 0 , 2 , 357 , 357 , 357 , 11 . 034769935 , 12 . 596293983 , - 1 . 561524047 , 1 . 4574224443 , - 18 . 63418697 , - 17 . 17676452 <nl> + 050 , 4 , 9 , 06 , 051 , California , Mono County , 14202 , 14202 , 14224 , 14309 , 22 , 85 , 35 , 146 , 2 , 49 , 33 , 97 , 14 , 41 , - 24 , - 51 , - 10 , - 10 , - 1 , - 2 , 222 , 222 , 222 , 10 . 233764413 , 3 . 4346195633 , 6 . 7991448498 , 2 . 8738653489 , - 3 . 574808117 , - 0 . 700942768 <nl> + 050 , 4 , 9 , 06 , 053 , California , Monterey County , 415057 , 415057 , 416366 , 421898 , 1309 , 5532 , 1663 , 6808 , 572 , 2259 , 1091 , 4549 , 527 , 1765 , - 304 , - 751 , 223 , 1014 , - 5 , - 31 , 18702 , 18704 , 18703 , 16 . 243092868 , 5 . 3897101629 , 10 . 853382705 , 4 . 211083859 , - 1 . 791798288 , 2 . 4192855711 <nl> + 050 , 4 , 9 , 06 , 055 , California , Napa County , 136484 , 136484 , 136840 , 138088 , 356 , 1248 , 376 , 1565 , 283 , 1209 , 93 , 356 , 151 , 576 , 113 , 321 , 264 , 897 , - 1 , - 5 , 4918 , 4918 , 4918 , 11 . 384798929 , 8 . 7950299715 , 2 . 5897689577 , 4 . 1901879765 , 2 . 3351568411 , 6 . 5253448176 <nl> + 050 , 4 , 9 , 06 , 057 , California , Nevada County , 98764 , 98764 , 98765 , 98612 , 1 , - 153 , 197 , 761 , 208 , 835 , - 11 , - 74 , 15 , 65 , 4 , - 134 , 19 , - 69 , - 7 , - 10 , 1175 , 1175 , 1175 , 7 . 7111314895 , 8 . 4609655634 , - 0 . 749834074 , 0 . 6586380379 , - 1 . 357807647 , - 0 . 699169609 <nl> + 050 , 4 , 9 , 06 , 059 , California , Orange County , 3010232 , 3010232 , 3017598 , 3055745 , 7366 , 38147 , 9271 , 38498 , 4273 , 17161 , 4998 , 21337 , 2904 , 12312 , - 491 , 4597 , 2413 , 16909 , - 45 , - 99 , 39236 , 39236 , 39235 , 12 . 677696616 , 5 . 6512533542 , 7 . 026443262 , 4 . 0544392108 , 1 . 5138285455 , 5 . 5682677563 <nl> + 050 , 4 , 9 , 06 , 061 , California , Placer County , 348432 , 348432 , 350233 , 357138 , 1801 , 6905 , 950 , 3746 , 628 , 2565 , 322 , 1181 , 194 , 501 , 1278 , 5190 , 1472 , 5691 , 7 , 33 , 3807 , 3808 , 3808 , 10 . 591330433 , 7 . 2522057025 , 3 . 3391247309 , 1 . 4165126928 , 14 . 674053644 , 16 . 090566336 <nl> + 050 , 4 , 9 , 06 , 063 , California , Plumas County , 20007 , 20007 , 19949 , 19765 , - 58 , - 184 , 41 , 166 , 62 , 223 , - 21 , - 57 , 8 , 34 , - 44 , - 160 , - 36 , - 126 , - 1 , - 1 , 277 , 277 , 277 , 8 . 3597723725 , 11 . 230296621 , - 2 . 870524248 , 1 . 7122425341 , - 8 . 057611925 , - 6 . 345369391 <nl> + 050 , 4 , 9 , 06 , 065 , California , Riverside County , 2189641 , 2189641 , 2202978 , 2239620 , 13337 , 36642 , 7298 , 30783 , 3429 , 14065 , 3869 , 16718 , 1032 , 4915 , 8246 , 14932 , 9278 , 19847 , 190 , 77 , 35829 , 35843 , 35847 , 13 . 858107351 , 6 . 3318805798 , 7 . 5262267709 , 2 . 2126692534 , 6 . 722192735 , 8 . 9348619884 <nl> + 050 , 4 , 9 , 06 , 067 , California , Sacramento County , 1418788 , 1418788 , 1422094 , 1436105 , 3306 , 14011 , 4885 , 19811 , 2452 , 9898 , 2433 , 9913 , 1116 , 4938 , - 222 , - 770 , 894 , 4168 , - 21 , - 70 , 23787 , 23766 , 23765 , 13 . 862575699 , 6 . 9260397894 , 6 . 9365359095 , 3 . 4553227399 , - 0 . 538800832 , 2 . 9165219077 <nl> + 050 , 4 , 9 , 06 , 069 , California , San Benito County , 55269 , 55269 , 55520 , 56072 , 251 , 552 , 182 , 728 , 56 , 278 , 126 , 450 , 33 , 99 , 90 , 6 , 123 , 105 , 2 , - 3 , 289 , 289 , 289 , 13 . 047530289 , 4 . 9824360169 , 8 . 065094272 , 1 . 7743207398 , 0 . 1075345903 , 1 . 8818553301 <nl> + 050 , 4 , 9 , 06 , 071 , California , San Bernardino County , 2035210 , 2035210 , 2042027 , 2065377 , 6817 , 23350 , 7517 , 31140 , 2963 , 12032 , 4554 , 19108 , 1064 , 4150 , 1170 , 199 , 2234 , 4349 , 29 , - 107 , 40054 , 40058 , 40058 , 15 . 162861993 , 5 . 8586883589 , 9 . 3041736338 , 2 . 0207410812 , 0 . 0968981868 , 2 . 117639268 <nl> + 050 , 4 , 9 , 06 , 073 , California , San Diego County , 3095313 , 3095313 , 3105115 , 3140069 , 9802 , 34954 , 10832 , 44076 , 4745 , 19373 , 6087 , 24703 , 3166 , 9591 , 581 , 816 , 3747 , 10407 , - 32 , - 156 , 101966 , 101956 , 101974 , 14 . 115196606 , 6 . 2041406626 , 7 . 9110559433 , 3 . 0714867648 , 0 . 2613213638 , 3 . 3328081286 <nl> + 050 , 4 , 9 , 06 , 075 , California , San Francisco County , 805235 , 805235 , 805340 , 812826 , 105 , 7486 , 2155 , 8593 , 1402 , 5572 , 753 , 3021 , 957 , 4096 , - 1607 , 416 , - 650 , 4512 , 2 , - 47 , 24264 , 24265 , 24267 , 10 . 620665618 , 6 . 8868088935 , 3 . 7338567242 , 5 . 0625213977 , 0 . 5141623295 , 5 . 5766837271 <nl> + 050 , 4 , 9 , 06 , 077 , California , San Joaquin County , 685306 , 685306 , 687661 , 696214 , 2355 , 8553 , 2574 , 10557 , 1165 , 4525 , 1409 , 6032 , 486 , 1923 , 460 , 635 , 946 , 2558 , 0 , - 37 , 14354 , 14354 , 14354 , 15 . 257158342 , 6 . 5396079848 , 8 . 7175503568 , 2 . 7791527414 , 0 . 9177129437 , 3 . 6968656851 <nl> + 050 , 4 , 9 , 06 , 079 , California , San Luis Obispo County , 269637 , 269637 , 270112 , 271969 , 475 , 1857 , 669 , 2632 , 506 , 2078 , 163 , 554 , 104 , 276 , 215 , 1034 , 319 , 1310 , - 7 , - 7 , 17006 , 17006 , 17007 , 9 . 7107258878 , 7 . 6667509099 , 2 . 0439749779 , 1 . 0182980034 , 3 . 8149280274 , 4 . 8332260308 <nl> + 050 , 4 , 9 , 06 , 081 , California , San Mateo County , 718451 , 718451 , 719604 , 727209 , 1153 , 7605 , 2250 , 9092 , 1153 , 4528 , 1097 , 4564 , 694 , 2948 , - 620 , 137 , 74 , 3085 , - 18 , - 44 , 8853 , 8853 , 8853 , 12 . 568313942 , 6 . 2592746955 , 6 . 309039247 , 4 . 0751638256 , 0 . 1893817653 , 4 . 2645455909 <nl> + 050 , 4 , 9 , 06 , 083 , California , Santa Barbara County , 423895 , 423895 , 424630 , 426878 , 735 , 2248 , 1427 , 5842 , 706 , 2845 , 721 , 2997 , 424 , 1479 , - 406 , - 2233 , 18 , - 754 , - 4 , 5 , 17782 , 17784 , 17784 , 13 . 721538729 , 6 . 6822625272 , 7 . 0392762018 , 3 . 4738370045 , - 5 . 244812732 , - 1 . 770975728 <nl> + 050 , 4 , 9 , 06 , 085 , California , Santa Clara County , 1781642 , 1781642 , 1786267 , 1809378 , 4625 , 23111 , 5854 , 23999 , 2271 , 9073 , 3583 , 14926 , 2606 , 10973 , - 1572 , - 2710 , 1034 , 8263 , 8 , - 78 , 30350 , 30353 , 30354 , 13 . 348926271 , 5 . 046660613 , 8 . 3022656575 , 6 . 1034946442 , - 1 . 507379066 , 4 . 5961155787 <nl> + 050 , 4 , 9 , 06 , 087 , California , Santa Cruz County , 262382 , 262382 , 262880 , 264298 , 498 , 1418 , 793 , 3191 , 441 , 1693 , 352 , 1498 , 180 , 676 , - 30 , - 753 , 150 , - 77 , - 4 , - 3 , 10969 , 10969 , 10969 , 12 . 105968003 , 6 . 4228780412 , 5 . 683089962 , 2 . 5645986745 , - 2 . 856720121 , - 0 . 292121447 <nl> + 050 , 4 , 9 , 06 , 089 , California , Shasta County , 177223 , 177223 , 177308 , 177774 , 85 , 466 , 525 , 2052 , 459 , 1884 , 66 , 168 , 32 , 108 , - 2 , 204 , 30 , 312 , - 11 , - 14 , 2654 , 2654 , 2654 , 11 . 55789367 , 10 . 611633369 , 0 . 9462603004 , 0 . 6083101931 , 1 . 1490303648 , 1 . 757340558 <nl> + 050 , 4 , 9 , 06 , 091 , California , Sierra County , 3240 , 3240 , 3229 , 3113 , - 11 , - 116 , 4 , 22 , 4 , 46 , 0 , - 24 , 0 , 0 , - 10 , - 93 , - 10 , - 93 , - 1 , 1 , 33 , 33 , 33 , 6 . 9378744875 , 14 . 506464838 , - 7 . 56859035 , 0 , - 29 . 32828761 , - 29 . 32828761 <nl> + 050 , 4 , 9 , 06 , 093 , California , Siskiyou County , 44900 , 44900 , 44897 , 44507 , - 3 , - 390 , 104 , 446 , 127 , 537 , - 23 , - 91 , 3 , 28 , 20 , - 326 , 23 , - 298 , - 3 , - 1 , 474 , 474 , 474 , 9 . 977182229 , 12 . 01288533 , - 2 . 035703101 , 0 . 6263701848 , - 7 . 29273858 , - 6 . 666368395 <nl> + 050 , 4 , 9 , 06 , 095 , California , Solano County , 413344 , 413344 , 414125 , 416471 , 781 , 2346 , 1222 , 5121 , 724 , 2852 , 498 , 2269 , 388 , 1157 , - 98 , - 1067 , 290 , 90 , - 7 , - 13 , 12452 , 12454 , 12454 , 12 . 330904555 , 6 . 8673578972 , 5 . 4635466581 , 2 . 7859512928 , - 2 . 569239438 , 0 . 2167118551 <nl> + 050 , 4 , 9 , 06 , 097 , California , Sonoma County , 483878 , 483878 , 484712 , 488116 , 834 , 3404 , 1333 , 5444 , 913 , 3769 , 420 , 1675 , 299 , 967 , 133 , 789 , 432 , 1756 , - 18 , - 27 , 10043 , 10043 , 10043 , 11 . 192112069 , 7 . 7485434219 , 3 . 4435686473 , 1 . 988018437 , 1 . 6220750225 , 3 . 6100934595 <nl> + 050 , 4 , 9 , 06 , 099 , California , Stanislaus County , 514453 , 514453 , 515420 , 518522 , 967 , 3102 , 1875 , 7713 , 852 , 3467 , 1023 , 4246 , 386 , 1357 , - 446 , - 2513 , - 60 , - 1156 , 4 , 12 , 6305 , 6305 , 6305 , 14 . 919598972 , 6 . 706372311 , 8 . 2132266607 , 2 . 6249054589 , - 4 . 861007677 , - 2 . 236102218 <nl> + 050 , 4 , 9 , 06 , 101 , California , Sutter County , 94737 , 94737 , 94859 , 94919 , 122 , 60 , 323 , 1363 , 141 , 693 , 182 , 670 , 144 , 461 , - 206 , - 1085 , - 62 , - 624 , 2 , 14 , 1060 , 1060 , 1060 , 14 . 364151798 , 7 . 3032701367 , 7 . 0608816617 , 4 . 8583081284 , - 11 . 43441284 , - 6 . 576104712 <nl> + 050 , 4 , 9 , 06 , 103 , California , Tehama County , 63463 , 63463 , 63637 , 63601 , 174 , - 36 , 182 , 779 , 134 , 559 , 48 , 220 , 34 , 123 , 92 , - 381 , 126 , - 258 , 0 , 2 , 842 , 842 , 842 , 12 . 244769644 , 8 . 7866832236 , 3 . 4580864207 , 1 . 9333846807 , - 5 . 988776938 , - 4 . 055392257 <nl> + 050 , 4 , 9 , 06 , 105 , California , Trinity County , 13786 , 13786 , 13768 , 13723 , - 18 , - 45 , 26 , 107 , 39 , 158 , - 13 , - 51 , 0 , 1 , - 4 , 6 , - 4 , 7 , - 1 , - 1 , 385 , 385 , 385 , 7 . 7843657924 , 11 . 494670983 , - 3 . 710305191 , 0 . 0727510822 , 0 . 436506493 , 0 . 5092575752 <nl> + 050 , 4 , 9 , 06 , 107 , California , Tulare County , 442179 , 442179 , 443509 , 449253 , 1330 , 5744 , 1938 , 8115 , 661 , 2640 , 1277 , 5475 , 338 , 1336 , - 287 , - 1050 , 51 , 286 , 2 , - 17 , 4772 , 4772 , 4772 , 18 . 179537211 , 5 . 9142302204 , 12 . 265306991 , 2 . 9929589297 , - 2 . 352250656 , 0 . 6407082739 <nl> + 050 , 4 , 9 , 06 , 109 , California , Tuolumne County , 55365 , 55365 , 55221 , 54953 , - 144 , - 268 , 121 , 441 , 134 , 544 , - 13 , - 103 , 7 , 38 , - 134 , - 196 , - 127 , - 158 , - 4 , - 7 , 4482 , 4482 , 4482 , 8 . 0055185434 , 9 . 8752881805 , - 1 . 869769637 , 0 . 6898179244 , - 3 . 558008242 , - 2 . 868190317 <nl> + 050 , 4 , 9 , 06 , 111 , California , Ventura County , 823318 , 823318 , 825445 , 831771 , 2127 , 6326 , 2709 , 11060 , 1292 , 5083 , 1417 , 5977 , 567 , 1961 , 154 , - 1593 , 721 , 368 , - 11 , - 19 , 10600 , 10600 , 10600 , 13 . 347686723 , 6 . 1343844134 , 7 . 2133023094 , 2 . 3666196802 , - 1 . 922501352 , 0 . 4441183286 <nl> + 050 , 4 , 9 , 06 , 113 , California , Yolo County , 200849 , 200849 , 201105 , 202054 , 256 , 949 , 596 , 2402 , 272 , 1123 , 324 , 1279 , 209 , 659 , - 284 , - 994 , - 75 , - 335 , 7 , 5 , 6709 , 6709 , 6709 , 11 . 915894225 , 5 . 5710030038 , 6 . 3448912216 , 3 . 269181638 , - 4 . 931056978 , - 1 . 66187534 <nl> + 050 , 4 , 9 , 06 , 115 , California , Yuba County , 72155 , 72155 , 72364 , 72578 , 209 , 214 , 292 , 1203 , 114 , 456 , 178 , 747 , 66 , 136 , - 34 , - 673 , 32 , - 537 , - 1 , 4 , 1171 , 1171 , 1171 , 16 . 599743346 , 6 . 2921720412 , 10 . 307571304 , 1 . 8766127141 , - 9 . 28647321 , - 7 . 409860496 <nl> + 040 , 4 , 8 , 08 , 000 , Colorado , Colorado , 5029196 , 5029196 , 5047692 , 5116796 , 18496 , 69104 , 16453 , 66213 , 7350 , 31123 , 9103 , 35090 , 2907 , 8797 , 6255 , 24940 , 9162 , 33737 , 231 , 277 , 115878 , 115592 , 115469 , 13 . 028300097 , 6 . 1238696922 , 6 . 9044304052 , 1 . 7309283065 , 4 . 9072811144 , 6 . 6382094209 <nl> + 050 , 4 , 8 , 08 , 001 , Colorado , Adams County , 441603 , 441603 , 443673 , 451443 , 2070 , 7770 , 1764 , 7016 , 582 , 2348 , 1182 , 4668 , 262 , 916 , 605 , 2170 , 867 , 3086 , 21 , 16 , 4027 , 4027 , 4027 , 15 . 676180517 , 5 . 2462474137 , 10 . 429933104 , 2 . 0466621086 , 4 . 8485335979 , 6 . 8951957065 <nl> + 050 , 4 , 8 , 08 , 003 , Colorado , Alamosa County , 15445 , 15445 , 15496 , 15710 , 51 , 214 , 63 , 252 , 10 , 103 , 53 , 149 , 4 , 11 , - 5 , 54 , - 1 , 65 , - 1 , 0 , 740 , 740 , 740 , 16 . 150740242 , 6 . 6012946228 , 9 . 5494456194 , 0 . 7049926296 , 3 . 4608729091 , 4 . 1658655387 <nl> + 050 , 4 , 8 , 08 , 005 , Colorado , Arapahoe County , 572003 , 572153 , 574929 , 584948 , 2776 , 10019 , 1943 , 7681 , 842 , 3313 , 1101 , 4368 , 459 , 1436 , 1186 , 4179 , 1645 , 5615 , 30 , 36 , 4920 , 4920 , 4920 , 13 . 244507823 , 5 . 712674706 , 7 . 5318331168 , 2 . 4761246236 , 7 . 2059364915 , 9 . 6820611151 <nl> + 050 , 4 , 8 , 08 , 007 , Colorado , Archuleta County , 12084 , 12084 , 12068 , 12013 , - 16 , - 55 , 31 , 114 , 12 , 91 , 19 , 23 , 0 , 0 , - 35 , - 77 , - 35 , - 77 , 0 , - 1 , 129 , 129 , 129 , 9 . 468045347 , 7 . 5578256717 , 1 . 9102196753 , 0 , - 6 . 395083261 , - 6 . 395083261 <nl> + 050 , 4 , 8 , 08 , 009 , Colorado , Baca County , 3788 , 3788 , 3802 , 3795 , 14 , - 7 , 10 , 37 , 6 , 66 , 4 , - 29 , 0 , 0 , 10 , 23 , 10 , 23 , 0 , - 1 , 82 , 82 , 82 , 9 . 7406871133 , 17 . 375279716 , - 7 . 634592602 , 0 , 6 . 0550217191 , 6 . 0550217191 <nl> + 050 , 4 , 8 , 08 , 011 , Colorado , Bent County , 6499 , 6499 , 6467 , 6250 , - 32 , - 217 , 10 , 51 , 3 , 51 , 7 , 0 , 1 , 2 , - 40 , - 221 , - 39 , - 219 , 0 , 2 , 2208 , 2162 , 2032 , 8 . 0207596131 , 8 . 0207596131 , 0 , 0 . 3145395927 , - 34 . 75662499 , - 34 . 4420854 <nl> + 050 , 4 , 8 , 08 , 013 , Colorado , Boulder County , 294567 , 294567 , 295169 , 299378 , 602 , 4209 , 762 , 3066 , 371 , 1510 , 391 , 1556 , 214 , 691 , 2 , 1956 , 216 , 2647 , - 5 , 6 , 8949 , 8949 , 8949 , 10 . 313734658 , 5 . 0794974998 , 5 . 2342371587 , 2 . 3244587896 , 6 . 5797994103 , 8 . 9042581999 <nl> + 050 , 4 , 8 , 08 , 014 , Colorado , Broomfield County , 55889 , 55889 , 56113 , 57352 , 224 , 1239 , 179 , 686 , 67 , 268 , 112 , 418 , 16 , 66 , 98 , 753 , 114 , 819 , - 2 , 2 , 282 , 282 , 282 , 12 . 091834486 , 4 . 7239236769 , 7 . 3679108095 , 1 . 1633543383 , 13 . 272815406 , 14 . 436169744 <nl> + 050 , 4 , 8 , 08 , 015 , Colorado , Chaffee County , 17809 , 17809 , 17800 , 17932 , - 9 , 132 , 32 , 144 , 33 , 135 , - 1 , 9 , 2 , 8 , - 9 , 115 , - 7 , 123 , - 1 , 0 , 1436 , 1436 , 1436 , 8 . 0600022389 , 7 . 556252099 , 0 . 5037501399 , 0 . 4477779022 , 6 . 4368073436 , 6 . 8845852457 <nl> + 050 , 4 , 8 , 08 , 017 , Colorado , Cheyenne County , 1836 , 1836 , 1835 , 1876 , - 1 , 41 , 6 , 22 , 4 , 20 , 2 , 2 , 0 , 5 , - 3 , 33 , - 3 , 38 , 0 , 1 , 42 , 42 , 42 , 11 . 856642414 , 10 . 778765831 , 1 . 0778765831 , 2 . 6946914578 , 17 . 784963622 , 20 . 479655079 <nl> + 050 , 4 , 8 , 08 , 019 , Colorado , Clear Creek County , 9088 , 9088 , 9119 , 9012 , 31 , - 107 , 18 , 63 , 3 , 56 , 15 , 7 , 1 , 4 , 15 , - 118 , 16 , - 114 , 0 , 0 , 84 , 84 , 84 , 6 . 9494236391 , 6 . 177265457 , 0 . 7721581821 , 0 . 4412332469 , - 13 . 01638078 , - 12 . 57514754 <nl> + 050 , 4 , 8 , 08 , 021 , Colorado , Conejos County , 8256 , 8256 , 8291 , 8291 , 35 , 0 , 30 , 118 , 5 , 71 , 25 , 47 , 0 , 2 , 10 , - 49 , 10 , - 47 , 0 , 0 , 36 , 36 , 36 , 14 . 232300084 , 8 . 5635025932 , 5 . 6687974913 , 0 . 2412254252 , - 5 . 910022916 , - 5 . 668797491 <nl> + 050 , 4 , 8 , 08 , 023 , Colorado , Costilla County , 3524 , 3524 , 3536 , 3662 , 12 , 126 , 8 , 27 , 3 , 27 , 5 , 0 , 0 , 3 , 8 , 121 , 8 , 124 , - 1 , 2 , 0 , 0 , 0 , 7 . 5020839122 , 7 . 5020839122 , 0 , 0 . 8335648791 , 33 . 620450125 , 34 . 454015004 <nl> + 050 , 4 , 8 , 08 , 025 , Colorado , Crowley County , 5823 , 5823 , 5833 , 5736 , 10 , - 97 , 6 , 35 , 3 , 35 , 3 , 0 , 0 , 2 , 6 , - 99 , 6 , - 97 , 1 , 0 , 2682 , 2674 , 2568 , 6 . 0506526061 , 6 . 0506526061 , 0 , 0 . 3457515775 , - 17 . 11470309 , - 16 . 76895151 <nl> + 050 , 4 , 8 , 08 , 027 , Colorado , Custer County , 4255 , 4255 , 4276 , 4205 , 21 , - 71 , 4 , 21 , 3 , 34 , 1 , - 13 , 0 , 0 , 20 , - 59 , 20 , - 59 , 0 , 1 , 150 , 150 , 150 , 4 . 9522461974 , 8 . 0179224148 , - 3 . 065676217 , 0 , - 13 . 9134536 , - 13 . 9134536 <nl> + 050 , 4 , 8 , 08 , 029 , Colorado , Delta County , 30952 , 30952 , 30889 , 30451 , - 63 , - 438 , 86 , 335 , 85 , 346 , 1 , - 11 , 5 , 17 , - 68 , - 449 , - 63 , - 432 , - 1 , 5 , 713 , 713 , 713 , 10 . 922725791 , 11 . 281382458 , - 0 . 358656668 , 0 . 5542875774 , - 14 . 63971307 , - 14 . 0854255 <nl> + 050 , 4 , 8 , 08 , 031 , Colorado , Denver County , 600158 , 600008 , 603440 , 619968 , 3432 , 16528 , 2396 , 10167 , 1044 , 4271 , 1352 , 5896 , 580 , 2240 , 1461 , 8281 , 2041 , 10521 , 39 , 111 , 15981 , 15981 , 15981 , 16 . 620783909 , 6 . 9821351503 , 9 . 6386487582 , 3 . 6619018349 , 13 . 537593346 , 17 . 199495181 <nl> + 050 , 4 , 8 , 08 , 033 , Colorado , Dolores County , 2064 , 2064 , 2063 , 2056 , - 1 , - 7 , 4 , 20 , 1 , 9 , 3 , 11 , 0 , 0 , - 4 , - 19 , - 4 , - 19 , 0 , 1 , 0 , 0 , 0 , 9 . 711094926 , 4 . 3699927167 , 5 . 3411022093 , 0 , - 9 . 22554018 , - 9 . 22554018 <nl> + 050 , 4 , 8 , 08 , 035 , Colorado , Douglas County , 285465 , 285465 , 286984 , 292167 , 1519 , 5183 , 891 , 3506 , 217 , 864 , 674 , 2642 , 90 , 168 , 739 , 2361 , 829 , 2529 , 16 , 12 , 651 , 651 , 651 , 12 . 107377869 , 2 . 9836778319 , 9 . 1237000368 , 0 . 5801595784 , 8 . 1533140753 , 8 . 7334736537 <nl> + 050 , 4 , 8 , 08 , 037 , Colorado , Eagle County , 52197 , 52197 , 52064 , 51854 , - 133 , - 210 , 182 , 729 , 13 , 86 , 169 , 643 , 49 , 193 , - 359 , - 1056 , - 310 , - 863 , 8 , 10 , 55 , 55 , 55 , 14 . 030293116 , 1 . 6551511769 , 12 . 375141939 , 3 . 714467176 , - 20 . 32371678 , - 16 . 6092496 <nl> + 050 , 4 , 8 , 08 , 039 , Colorado , Elbert County , 23086 , 23086 , 23119 , 23174 , 33 , 55 , 39 , 176 , 12 , 104 , 27 , 72 , 2 , 9 , 5 , - 26 , 7 , - 17 , - 1 , 0 , 73 , 73 , 73 , 7 . 6037413864 , 4 . 4931199101 , 3 . 1106214762 , 0 . 3888276845 , - 1 . 123279978 , - 0 . 734452293 <nl> + 050 , 4 , 8 , 08 , 041 , Colorado , El Paso County , 622263 , 622263 , 627159 , 636963 , 4896 , 9804 , 2258 , 8868 , 884 , 3604 , 1374 , 5264 , 515 , 705 , 2918 , 3805 , 3433 , 4510 , 89 , 30 , 19141 , 19141 , 19146 , 14 . 03029138 , 5 . 7019812961 , 8 . 328310084 , 1 . 115398672 , 6 . 0199885771 , 7 . 135387249 <nl> + 050 , 4 , 8 , 08 , 043 , Colorado , Fremont County , 46824 , 46824 , 46857 , 47347 , 33 , 490 , 92 , 363 , 128 , 500 , - 36 , - 137 , 2 , 4 , 69 , 618 , 71 , 622 , - 2 , 5 , 8704 , 8712 , 9013 , 7 . 7066791219 , 10 . 615260498 , - 2 . 908581377 , 0 . 084922084 , 13 . 120461976 , 13 . 20538406 <nl> + 050 , 4 , 8 , 08 , 045 , Colorado , Garfield County , 56389 , 56389 , 56139 , 56270 , - 250 , 131 , 218 , 892 , 85 , 304 , 133 , 588 , 60 , 208 , - 457 , - 674 , - 397 , - 466 , 14 , 9 , 884 , 884 , 884 , 15 . 870615342 , 5 . 4088195785 , 10 . 461795764 , 3 . 7007712906 , - 11 . 99192235 , - 8 . 291151064 <nl> + 050 , 4 , 8 , 08 , 047 , Colorado , Gilpin County , 5441 , 5441 , 5467 , 5467 , 26 , 0 , 12 , 49 , 1 , 18 , 11 , 31 , 2 , 4 , 14 , - 36 , 16 , - 32 , - 1 , 1 , 49 , 49 , 49 , 8 . 9628681178 , 3 . 2924821657 , 5 . 6703859521 , 0 . 7316627035 , - 6 . 584964331 , - 5 . 853301628 <nl> + 050 , 4 , 8 , 08 , 049 , Colorado , Grand County , 14843 , 14843 , 14791 , 14548 , - 52 , - 243 , 27 , 127 , 3 , 44 , 24 , 83 , 7 , 41 , - 83 , - 371 , - 76 , - 330 , 0 , 4 , 222 , 222 , 222 , 8 . 6574184533 , 2 . 9994205665 , 5 . 6579978868 , 2 . 7949146188 , - 25 . 29056887 , - 22 . 49565425 <nl> + 050 , 4 , 8 , 08 , 051 , Colorado , Gunnison County , 15324 , 15324 , 15314 , 15408 , - 10 , 94 , 38 , 155 , 10 , 58 , 28 , 97 , 14 , 48 , - 52 , - 49 , - 38 , - 1 , 0 , - 2 , 850 , 850 , 850 , 10 . 0904889 , 3 . 7757958466 , 6 . 3146930538 , 3 . 1247965627 , - 3 . 189896491 , - 0 . 065099928 <nl> + 050 , 4 , 8 , 08 , 053 , Colorado , Hinsdale County , 843 , 843 , 842 , 830 , - 1 , - 12 , 0 , 9 , 0 , 0 , 0 , 9 , 0 , 0 , - 1 , - 20 , - 1 , - 20 , 0 , - 1 , 56 , 56 , 56 , 10 . 765550239 , 0 , 10 . 765550239 , 0 , - 23 . 92344498 , - 23 . 92344498 <nl> + 050 , 4 , 8 , 08 , 055 , Colorado , Huerfano County , 6711 , 6711 , 6672 , 6520 , - 39 , - 152 , 14 , 56 , 8 , 88 , 6 , - 32 , 3 , 14 , - 47 , - 136 , - 44 , - 122 , - 1 , 2 , 165 , 165 , 165 , 8 . 4899939357 , 13 . 341419042 , - 4 . 851425106 , 2 . 1224984839 , - 20 . 6185567 , - 18 . 49605822 <nl> + 050 , 4 , 8 , 08 , 057 , Colorado , Jackson County , 1394 , 1394 , 1390 , 1370 , - 4 , - 20 , 2 , 9 , 0 , 6 , 2 , 3 , 0 , 0 , - 7 , - 23 , - 7 , - 23 , 1 , 0 , 2 , 2 , 2 , 6 . 5217391304 , 4 . 347826087 , 2 . 1739130435 , 0 , - 16 . 66666667 , - 16 . 66666667 <nl> + 050 , 4 , 8 , 08 , 059 , Colorado , Jefferson County , 534543 , 534543 , 535455 , 539884 , 912 , 4429 , 1397 , 5564 , 887 , 3705 , 510 , 1859 , 122 , 348 , 293 , 2231 , 415 , 2579 , - 13 , - 9 , 7427 , 7427 , 7427 , 10 . 348364562 , 6 . 8908502342 , 3 . 457514328 , 0 . 6472377548 , 4 . 1493891694 , 4 . 7966269242 <nl> + 050 , 4 , 8 , 08 , 061 , Colorado , Kiowa County , 1398 , 1398 , 1403 , 1433 , 5 , 30 , 2 , 11 , 2 , 17 , 0 , - 6 , 0 , 1 , 4 , 35 , 4 , 36 , 1 , 0 , 14 , 14 , 14 , 7 . 7574047955 , 11 . 988716502 , - 4 . 231311707 , 0 . 7052186178 , 24 . 682651622 , 25 . 38787024 <nl> + 050 , 4 , 8 , 08 , 063 , Colorado , Kit Carson County , 8270 , 8270 , 8247 , 8142 , - 23 , - 105 , 26 , 107 , 10 , 83 , 16 , 24 , 7 , 27 , - 46 , - 157 , - 39 , - 130 , 0 , 1 , 1075 , 1046 , 854 , 13 . 057538593 , 10 . 12874489 , 2 . 9287937031 , 3 . 294892916 , - 19 . 15919214 , - 15 . 86429923 <nl> + 050 , 4 , 8 , 08 , 065 , Colorado , Lake County , 7310 , 7310 , 7290 , 7427 , - 20 , 137 , 26 , 112 , 2 , 26 , 24 , 86 , 11 , 32 , - 56 , 19 , - 45 , 51 , 1 , 0 , 133 , 133 , 133 , 15 . 220493307 , 3 . 5333288034 , 11 . 687164504 , 4 . 3487123734 , 2 . 5820479717 , 6 . 9307603452 <nl> + 050 , 4 , 8 , 08 , 067 , Colorado , La Plata County , 51334 , 51334 , 51442 , 51917 , 108 , 475 , 147 , 573 , 71 , 305 , 76 , 268 , 11 , 45 , 21 , 162 , 32 , 207 , 0 , 0 , 1715 , 1719 , 1718 , 11 . 087568572 , 5 . 9017598854 , 5 . 1858086862 , 0 . 8707514585 , 3 . 1347052506 , 4 . 0054567091 <nl> + 050 , 4 , 8 , 08 , 069 , Colorado , Larimer County , 299630 , 299630 , 300552 , 305525 , 922 , 4973 , 847 , 3380 , 435 , 1739 , 412 , 1641 , 98 , 245 , 414 , 3069 , 512 , 3314 , - 2 , 18 , 8530 , 8530 , 8530 , 11 . 153698292 , 5 . 7385447724 , 5 . 4151535201 , 0 . 8084781307 , 10 . 127426053 , 10 . 935904184 <nl> + 050 , 4 , 8 , 08 , 071 , Colorado , Las Animas County , 15507 , 15507 , 15428 , 15037 , - 79 , - 391 , 38 , 153 , 23 , 175 , 15 , - 22 , 1 , 14 , - 95 , - 386 , - 94 , - 372 , 0 , 3 , 858 , 858 , 858 , 10 . 044313146 , 11 . 488593468 , - 1 . 444280322 , 0 . 9190874774 , - 25 . 34055473 , - 24 . 42146726 <nl> + 050 , 4 , 8 , 08 , 073 , Colorado , Lincoln County , 5467 , 5467 , 5479 , 5454 , 12 , - 25 , 15 , 61 , 8 , 50 , 7 , 11 , 3 , 10 , 2 , - 46 , 5 , - 36 , 0 , 0 , 1030 , 1030 , 1030 , 11 . 158876795 , 9 . 1466203238 , 2 . 0122564712 , 1 . 8293240648 , - 8 . 414890698 , - 6 . 585566633 <nl> + 050 , 4 , 8 , 08 , 075 , Colorado , Logan County , 22709 , 22709 , 22723 , 22619 , 14 , - 104 , 51 , 216 , 48 , 203 , 3 , 13 , 5 , 16 , 7 , - 133 , 12 , - 117 , - 1 , 0 , 3904 , 3904 , 3904 , 9 . 5275903136 , 8 . 9541705262 , 0 . 5734197874 , 0 . 7057474306 , - 5 . 866525517 , - 5 . 160778087 <nl> + 050 , 4 , 8 , 08 , 077 , Colorado , Mesa County , 146723 , 146723 , 146307 , 147083 , - 416 , 776 , 470 , 1943 , 318 , 1280 , 152 , 663 , 38 , 149 , - 620 , - 26 , - 582 , 123 , 14 , - 10 , 3631 , 3631 , 3631 , 13 . 245168547 , 8 . 7255871025 , 4 . 5195814445 , 1 . 0157128736 , - 0 . 177238488 , 0 . 8384743856 <nl> + 050 , 4 , 8 , 08 , 079 , Colorado , Mineral County , 712 , 712 , 706 , 708 , - 6 , 2 , 0 , 4 , 0 , 4 , 0 , 0 , 0 , 1 , - 7 , 1 , - 7 , 2 , 1 , 0 , 0 , 0 , 0 , 5 . 657708628 , 5 . 657708628 , 0 , 1 . 414427157 , 1 . 414427157 , 2 . 828854314 <nl> + 050 , 4 , 8 , 08 , 081 , Colorado , Moffat County , 13795 , 13795 , 13819 , 13451 , 24 , - 368 , 47 , 211 , 6 , 94 , 41 , 117 , 4 , 9 , - 21 , - 501 , - 17 , - 492 , 0 , 7 , 102 , 102 , 102 , 15 . 474880821 , 6 . 8940227356 , 8 . 5808580858 , 0 . 6600660066 , - 36 . 74367437 , - 36 . 08360836 <nl> + 050 , 4 , 8 , 08 , 083 , Colorado , Montezuma County , 25535 , 25535 , 25530 , 25442 , - 5 , - 88 , 82 , 319 , 71 , 267 , 11 , 52 , 2 , 7 , - 16 , - 146 , - 14 , - 139 , - 2 , - 1 , 237 , 237 , 237 , 12 . 516675822 , 10 . 476339951 , 2 . 0403358707 , 0 . 274660598 , - 5 . 728635329 , - 5 . 453974731 <nl> + 050 , 4 , 8 , 08 , 085 , Colorado , Montrose County , 41276 , 41276 , 41184 , 41011 , - 92 , - 173 , 121 , 479 , 101 , 399 , 20 , 80 , 20 , 86 , - 133 , - 342 , - 113 , - 256 , 1 , 3 , 542 , 542 , 542 , 11 . 655210171 , 9 . 7086197457 , 1 . 9465904252 , 2 . 0925847071 , - 8 . 321674068 , - 6 . 229089361 <nl> + 050 , 4 , 8 , 08 , 087 , Colorado , Morgan County , 28159 , 28159 , 27996 , 28175 , - 163 , 179 , 110 , 438 , 51 , 219 , 59 , 219 , 28 , 103 , - 257 , - 144 , - 229 , - 41 , 7 , 1 , 564 , 350 , 350 , 15 . 595235976 , 7 . 7976179879 , 7 . 7976179879 , 3 . 6673728436 , - 5 . 127200869 , - 1 . 459828025 <nl> + 050 , 4 , 8 , 08 , 089 , Colorado , Otero County , 18831 , 18831 , 18858 , 18865 , 27 , 7 , 58 , 222 , 37 , 213 , 21 , 9 , 0 , 14 , 6 , - 15 , 6 , - 1 , 0 , - 1 , 433 , 433 , 433 , 11 . 770007688 , 11 . 292845214 , 0 . 4771624738 , 0 . 7422527371 , - 0 . 79527079 , - 0 . 053018053 <nl> + 050 , 4 , 8 , 08 , 091 , Colorado , Ouray County , 4436 , 4436 , 4451 , 4356 , 15 , - 95 , 10 , 25 , 2 , 18 , 8 , 7 , 0 , 0 , 7 , - 101 , 7 , - 101 , 0 , - 1 , 0 , 0 , 0 , 5 . 677302146 , 4 . 0876575451 , 1 . 5896446009 , 0 , - 22 . 93630067 , - 22 . 93630067 <nl> + 050 , 4 , 8 , 08 , 093 , Colorado , Park County , 16206 , 16206 , 16270 , 16089 , 64 , - 181 , 29 , 120 , 12 , 84 , 17 , 36 , 4 , 13 , 42 , - 230 , 46 , - 217 , 1 , 0 , 92 , 92 , 92 , 7 . 4167928552 , 5 . 1917549986 , 2 . 2250378565 , 0 . 8034858926 , - 14 . 21551964 , - 13 . 41203375 <nl> + 050 , 4 , 8 , 08 , 095 , Colorado , Phillips County , 4442 , 4442 , 4468 , 4399 , 26 , - 69 , 12 , 58 , 8 , 61 , 4 , - 3 , 5 , 18 , 17 , - 86 , 22 , - 68 , 0 , 2 , 60 , 60 , 60 , 13 . 082214954 , 13 . 758881245 , - 0 . 676666291 , 4 . 0599977444 , - 19 . 397767 , - 15 . 33776926 <nl> + 050 , 4 , 8 , 08 , 097 , Colorado , Pitkin County , 17148 , 17148 , 17166 , 17102 , 18 , - 64 , 38 , 151 , 2 , 31 , 36 , 120 , 16 , 55 , - 33 , - 239 , - 17 , - 184 , - 1 , 0 , 72 , 72 , 72 , 8 . 8128866581 , 1 . 8092681219 , 7 . 0036185362 , 3 . 2099918291 , - 13 . 94887358 , - 10 . 73888176 <nl> + 050 , 4 , 8 , 08 , 099 , Colorado , Prowers County , 12551 , 12551 , 12535 , 12549 , - 16 , 14 , 37 , 170 , 18 , 134 , 19 , 36 , 7 , 37 , - 42 , - 58 , - 35 , - 21 , 0 , - 1 , 315 , 315 , 315 , 13 . 554457024 , 10 . 684101419 , 2 . 8703556052 , 2 . 9500877053 , - 4 . 624461808 , - 1 . 674374103 <nl> + 050 , 4 , 8 , 08 , 101 , Colorado , Pueblo County , 159063 , 159063 , 159470 , 160545 , 407 , 1075 , 486 , 1961 , 380 , 1561 , 106 , 400 , 39 , 122 , 262 , 555 , 301 , 677 , 0 , - 2 , 4321 , 4321 , 4321 , 12 . 255675515 , 9 . 7557926972 , 2 . 499882818 , 0 . 7624642595 , 3 . 46858741 , 4 . 2310516695 <nl> + 050 , 4 , 8 , 08 , 103 , Colorado , Rio Blanco County , 6666 , 6666 , 6625 , 6782 , - 41 , 157 , 24 , 99 , 3 , 45 , 21 , 54 , 10 , 29 , - 73 , 73 , - 63 , 102 , 1 , 1 , 235 , 235 , 235 , 14 . 768404565 , 6 . 7129111658 , 8 . 055493399 , 4 . 3260983069 , 10 . 889833669 , 15 . 215931976 <nl> + 050 , 4 , 8 , 08 , 105 , Colorado , Rio Grande County , 11982 , 11982 , 12023 , 11956 , 41 , - 67 , 45 , 163 , 11 , 124 , 34 , 39 , 2 , 4 , 6 , - 111 , 8 , - 107 , - 1 , 1 , 198 , 198 , 198 , 13 . 595229159 , 10 . 342382918 , 3 . 2528462405 , 0 . 3336252554 , - 9 . 258100838 , - 8 . 924475583 <nl> + 050 , 4 , 8 , 08 , 107 , Colorado , Routt County , 23509 , 23509 , 23451 , 23239 , - 58 , - 212 , 53 , 239 , 4 , 92 , 49 , 147 , 12 , 46 , - 122 , - 409 , - 110 , - 363 , 3 , 4 , 335 , 335 , 335 , 10 . 237738274 , 3 . 9408866995 , 6 . 2968515742 , 1 . 9704433498 , - 17 . 51981152 , - 15 . 54936817 <nl> + 050 , 4 , 8 , 08 , 109 , Colorado , Saguache County , 6108 , 6108 , 6138 , 6228 , 30 , 90 , 16 , 66 , 3 , 47 , 13 , 19 , 7 , 28 , 10 , 44 , 17 , 72 , 0 , - 1 , 18 , 18 , 18 , 10 . 674429888 , 7 . 6014879508 , 3 . 0729419376 , 4 . 5285460133 , 7 . 1162865923 , 11 . 644832606 <nl> + 050 , 4 , 8 , 08 , 111 , Colorado , San Juan County , 699 , 699 , 709 , 692 , 10 , - 17 , 0 , 4 , 0 , 2 , 0 , 2 , 0 , 0 , 10 , - 18 , 10 , - 18 , 0 , - 1 , 0 , 0 , 0 , 5 . 710206995 , 2 . 8551034975 , 2 . 8551034975 , 0 , - 25 . 69593148 , - 25 . 69593148 <nl> + 050 , 4 , 8 , 08 , 113 , Colorado , San Miguel County , 7359 , 7359 , 7360 , 7490 , 1 , 130 , 15 , 68 , 1 , 19 , 14 , 49 , 7 , 34 , - 21 , 48 , - 14 , 82 , 1 , - 1 , 9 , 9 , 9 , 9 . 1582491582 , 2 . 5589225589 , 6 . 5993265993 , 4 . 5791245791 , 6 . 4646464646 , 11 . 043771044 <nl> + 050 , 4 , 8 , 08 , 115 , Colorado , Sedgwick County , 2379 , 2379 , 2373 , 2364 , - 6 , - 9 , 5 , 23 , 3 , 35 , 2 , - 12 , 0 , 1 , - 8 , 2 , - 8 , 3 , 0 , 0 , 35 , 35 , 35 , 9 . 7107874182 , 14 . 777285202 , - 5 . 066497783 , 0 . 4222081486 , 0 . 8444162972 , 1 . 2666244459 <nl> + 050 , 4 , 8 , 08 , 117 , Colorado , Summit County , 27994 , 27994 , 28082 , 27972 , 88 , - 110 , 72 , 306 , 3 , 56 , 69 , 250 , 39 , 150 , - 19 , - 513 , 20 , - 363 , - 1 , 3 , 273 , 273 , 273 , 10 . 918043315 , 1 . 9980732865 , 8 . 9199700289 , 5 . 3519820173 , - 18 . 3037785 , - 12 . 95179648 <nl> + 050 , 4 , 8 , 08 , 119 , Colorado , Teller County , 23350 , 23350 , 23450 , 23356 , 100 , - 94 , 55 , 202 , 36 , 145 , 19 , 57 , 1 , 2 , 78 , - 153 , 79 , - 151 , 2 , 0 , 132 , 132 , 132 , 8 . 6313720463 , 6 . 1957868649 , 2 . 4355851814 , 0 . 0854591292 , - 6 . 537623382 , - 6 . 452164252 <nl> + 050 , 4 , 8 , 08 , 121 , Colorado , Washington County , 4814 , 4814 , 4817 , 4770 , 3 , - 47 , 13 , 43 , 6 , 47 , 7 , - 4 , 3 , 14 , - 6 , - 57 , - 3 , - 43 , - 1 , 0 , 184 , 184 , 184 , 8 . 9704808595 , 9 . 8049441953 , - 0 . 834463336 , 2 . 9206216752 , - 11 . 89110253 , - 8 . 970480859 <nl> + 050 , 4 , 8 , 08 , 123 , Colorado , Weld County , 252825 , 252825 , 254241 , 258638 , 1416 , 4397 , 947 , 3788 , 340 , 1326 , 607 , 2462 , 109 , 303 , 683 , 1621 , 792 , 1924 , 17 , 11 , 5895 , 5894 , 5894 , 14 . 771515309 , 5 . 1708102691 , 9 . 6007050396 , 1 . 1815652425 , 6 . 3211790695 , 7 . 502744312 <nl> + 050 , 4 , 8 , 08 , 125 , Colorado , Yuma County , 10043 , 10043 , 10047 , 10100 , 4 , 53 , 34 , 140 , 10 , 87 , 24 , 53 , 8 , 37 , - 28 , - 36 , - 20 , 1 , 0 , - 1 , 196 , 196 , 196 , 13 . 897850797 , 8 . 6365215665 , 5 . 2613292302 , 3 . 6730034248 , - 3 . 573733062 , 0 . 0992703628 <nl> + 040 , 1 , 1 , 09 , 000 , Connecticut , Connecticut , 3574097 , 3574097 , 3575498 , 3580709 , 1401 , 5211 , 9241 , 37319 , 6855 , 28244 , 2386 , 9075 , 2479 , 9735 , - 3355 , - 13493 , - 876 , - 3758 , - 109 , - 106 , 118152 , 118156 , 118156 , 10 . 429826862 , 7 . 893567081 , 2 . 5362597812 , 2 . 720715038 , - 3 . 770992091 , - 1 . 050277053 <nl> + 050 , 1 , 1 , 09 , 001 , Connecticut , Fairfield County , 916829 , 916829 , 918339 , 925899 , 1510 , 7560 , 2527 , 10396 , 1502 , 6191 , 1025 , 4205 , 884 , 3870 , - 360 , - 447 , 524 , 3423 , - 39 , - 68 , 19168 , 19169 , 19169 , 11 . 274032961 , 6 . 7138839998 , 4 . 5601489613 , 4 . 1968552866 , - 0 . 484753052 , 3 . 7121022341 <nl> + 050 , 1 , 1 , 09 , 003 , Connecticut , Hartford County , 894014 , 894014 , 894127 , 894705 , 113 , 578 , 2403 , 9668 , 1866 , 7640 , 537 , 2028 , 660 , 2670 , - 1058 , - 4093 , - 398 , - 1423 , - 26 , - 27 , 28227 , 28229 , 28229 , 10 . 809287848 , 8 . 5418865494 , 2 . 2674012987 , 2 . 9851881004 , - 4 . 576170373 , - 1 . 590982272 <nl> + 050 , 1 , 1 , 09 , 005 , Connecticut , Litchfield County , 189927 , 189927 , 189751 , 188789 , - 176 , - 962 , 392 , 1524 , 415 , 1675 , - 23 , - 151 , 64 , 191 , - 209 , - 998 , - 145 , - 807 , - 8 , - 4 , 2804 , 2804 , 2804 , 8 . 0519892217 , 8 . 8497913034 , - 0 . 797802082 , 1 . 0091403815 , - 5 . 27289058 , - 4 . 263750198 <nl> + 050 , 1 , 1 , 09 , 007 , Connecticut , Middlesex County , 165676 , 165676 , 165630 , 166043 , - 46 , 413 , 372 , 1472 , 324 , 1298 , 48 , 174 , 79 , 253 , - 169 , - 2 , - 90 , 251 , - 4 , - 12 , 5085 , 5085 , 5085 , 8 . 876212414 , 7 . 8269862184 , 1 . 0492261957 , 1 . 5255990087 , - 0 . 012060071 , 1 . 5135389374 <nl> + 050 , 1 , 1 , 09 , 009 , Connecticut , New Haven County , 862477 , 862477 , 862438 , 861113 , - 39 , - 1325 , 2270 , 9190 , 1749 , 7322 , 521 , 1868 , 460 , 1901 , - 996 , - 5093 , - 536 , - 3192 , - 24 , - 1 , 29198 , 29199 , 29199 , 10 . 664030249 , 8 . 4964123487 , 2 . 1676179005 , 2 . 2059109362 , - 5 . 909891845 , - 3 . 703980909 <nl> + 050 , 1 , 1 , 09 , 011 , Connecticut , New London County , 274055 , 274055 , 274018 , 273502 , - 37 , - 516 , 679 , 2735 , 543 , 2286 , 136 , 449 , 235 , 519 , - 409 , - 1493 , - 174 , - 974 , 1 , 9 , 12782 , 12782 , 12782 , 9 . 99050263 , 8 . 3503798948 , 1 . 6401227352 , 1 . 8958211572 , - 5 . 453682057 , - 3 . 5578609 <nl> + 050 , 1 , 1 , 09 , 013 , Connecticut , Tolland County , 152691 , 152691 , 152734 , 152507 , 43 , - 227 , 303 , 1189 , 227 , 898 , 76 , 291 , 45 , 143 , - 72 , - 654 , - 27 , - 511 , - 6 , - 7 , 16117 , 16117 , 16117 , 7 . 7905654876 , 5 . 8838753641 , 1 . 9066901235 , 0 . 9369645624 , - 4 . 285138628 , - 3 . 348174066 <nl> + 050 , 1 , 1 , 09 , 015 , Connecticut , Windham County , 118428 , 118428 , 118461 , 118151 , 33 , - 310 , 295 , 1145 , 229 , 934 , 66 , 211 , 52 , 188 , - 82 , - 713 , - 30 , - 525 , - 3 , 4 , 4771 , 4771 , 4771 , 9 . 6782918871 , 7 . 8947813298 , 1 . 7835105574 , 1 . 589099454 , - 6 . 026744206 , - 4 . 437644752 <nl> + 040 , 3 , 5 , 10 , 000 , Delaware , Delaware , 897934 , 897934 , 899792 , 907135 , 1858 , 7343 , 2774 , 11172 , 1898 , 7633 , 876 , 3539 , 578 , 1877 , 403 , 1944 , 981 , 3821 , 1 , - 17 , 24413 , 24413 , 24413 , 12 . 365745821 , 8 . 4485980895 , 3 . 917147732 , 2 . 0775604106 , 2 . 1517194663 , 4 . 2292798768 <nl> + 050 , 3 , 5 , 10 , 001 , Delaware , Kent County , 162310 , 162310 , 162873 , 164834 , 563 , 1961 , 538 , 2214 , 364 , 1406 , 174 , 808 , 87 , 218 , 302 , 937 , 389 , 1155 , 0 , - 2 , 4322 , 4322 , 4322 , 13 . 512070233 , 8 . 5808359297 , 4 . 9312343038 , 1 . 33045678 , 5 . 7185229489 , 7 . 0489797288 <nl> + 050 , 3 , 5 , 10 , 003 , Delaware , New Castle County , 538479 , 538479 , 539007 , 541971 , 528 , 2964 , 1676 , 6712 , 996 , 4124 , 680 , 2588 , 395 , 1302 , - 546 , - 902 , - 151 , 400 , - 1 , - 24 , 17154 , 17154 , 17154 , 12 . 418384093 , 7 . 6301275327 , 4 . 7882565603 , 2 . 4089296914 , - 1 . 668859126 , 0 . 7400705657 <nl> + 050 , 3 , 5 , 10 , 005 , Delaware , Sussex County , 197145 , 197145 , 197912 , 200330 , 767 , 2418 , 560 , 2246 , 538 , 2103 , 22 , 143 , 96 , 357 , 647 , 1909 , 743 , 2266 , 2 , 9 , 2937 , 2937 , 2937 , 11 . 279573727 , 10 . 56141743 , 0 . 7181562969 , 1 . 7928797063 , 9 . 5871354603 , 11 . 380015167 <nl> + 040 , 3 , 5 , 11 , 000 , District of Columbia , District of Columbia , 601723 , 601723 , 604912 , 617996 , 3189 , 13084 , 2232 , 9003 , 1098 , 4773 , 1134 , 4230 , 598 , 1862 , 1427 , 6907 , 2025 , 8769 , 30 , 85 , 40021 , 40054 , 40056 , 14 . 72392036 , 7 . 8059837698 , 6 . 9179365905 , 3 . 0452004566 , 11 . 296025539 , 14 . 341225996 <nl> + 050 , 3 , 5 , 11 , 001 , District of Columbia , District of Columbia , 601723 , 601723 , 604912 , 617996 , 3189 , 13084 , 2232 , 9003 , 1098 , 4773 , 1134 , 4230 , 598 , 1862 , 1427 , 6907 , 2025 , 8769 , 30 , 85 , 40021 , 40054 , 40056 , 14 . 72392036 , 7 . 8059837698 , 6 . 9179365905 , 3 . 0452004566 , 11 . 296025539 , 14 . 341225996 <nl> + 040 , 3 , 5 , 12 , 000 , Florida , Florida , 18801310 , 18801311 , 18838613 , 19057542 , 37302 , 218929 , 51537 , 213292 , 42097 , 171257 , 9440 , 42035 , 18142 , 68295 , 10417 , 108339 , 28559 , 176634 , - 697 , 260 , 421709 , 421714 , 421706 , 11 . 256656513 , 9 . 0382256458 , 2 . 2184308672 , 3 . 6043234465 , 5 . 7176776905 , 9 . 3220011371 <nl> + 050 , 3 , 5 , 12 , 001 , Florida , Alachua County , 247336 , 247336 , 247418 , 249365 , 82 , 1947 , 693 , 2831 , 427 , 1690 , 266 , 1141 , 220 , 839 , - 412 , - 19 , - 192 , 820 , 8 , - 14 , 13920 , 13920 , 13920 , 11 . 397330424 , 6 . 8037754915 , 4 . 5935549324 , 3 . 3777323298 , - 0 . 07649215 , 3 . 3012401793 <nl> + 050 , 3 , 5 , 12 , 003 , Florida , Baker County , 27115 , 27115 , 27099 , 27154 , - 16 , 55 , 83 , 353 , 56 , 212 , 27 , 141 , 1 , 3 , - 45 , - 89 , - 44 , - 86 , 1 , 0 , 2344 , 2344 , 2344 , 13 . 013105266 , 7 . 8152360238 , 5 . 1978692423 , 0 . 1105929626 , - 3 . 280924557 , - 3 . 170331595 <nl> + 050 , 3 , 5 , 12 , 005 , Florida , Bay County , 168852 , 168852 , 169295 , 169856 , 443 , 561 , 536 , 2209 , 392 , 1610 , 144 , 599 , 115 , 281 , 185 , - 314 , 300 , - 33 , - 1 , - 5 , 3817 , 3819 , 3814 , 13 . 026645948 , 9 . 494296051 , 3 . 5323498972 , 1 . 6570790002 , - 1 . 851682584 , - 0 . 194603584 <nl> + 050 , 3 , 5 , 12 , 007 , Florida , Bradford County , 28520 , 28520 , 28483 , 28255 , - 37 , - 228 , 82 , 324 , 78 , 304 , 4 , 20 , 4 , 13 , - 45 , - 264 , - 41 , - 251 , 0 , 3 , 4492 , 4492 , 4492 , 11 . 420917198 , 10 . 71592231 , 0 . 7049948888 , 0 . 4582466777 , - 9 . 305932532 , - 8 . 847685854 <nl> + 050 , 3 , 5 , 12 , 009 , Florida , Brevard County , 543376 , 543372 , 543828 , 543566 , 456 , - 262 , 1197 , 4943 , 1437 , 5854 , - 240 , - 911 , 231 , 520 , 492 , 172 , 723 , 692 , - 27 , - 43 , 7735 , 7735 , 7735 , 9 . 0914608688 , 10 . 767026487 , - 1 . 675565618 , 0 . 9564150621 , 0 . 3163526744 , 1 . 2727677364 <nl> + 050 , 3 , 5 , 12 , 011 , Florida , Broward County , 1748066 , 1748066 , 1752122 , 1780172 , 4056 , 28050 , 5112 , 20927 , 3533 , 14331 , 1579 , 6596 , 2236 , 9752 , 299 , 11612 , 2535 , 21364 , - 58 , 90 , 16892 , 16892 , 16892 , 11 . 84895708 , 8 . 1142736137 , 3 . 7346834663 , 5 . 521624191 , 6 . 5747641618 , 12 . 096388353 <nl> + 050 , 3 , 5 , 12 , 013 , Florida , Calhoun County , 14625 , 14625 , 14633 , 14750 , 8 , 117 , 34 , 158 , 29 , 140 , 5 , 18 , 3 , 11 , 1 , 91 , 4 , 102 , - 1 , - 3 , 1891 , 1891 , 1891 , 10 . 754517919 , 9 . 5293196746 , 1 . 2251982439 , 0 . 7487322602 , 6 . 1940577885 , 6 . 9427900487 <nl> + 050 , 3 , 5 , 12 , 015 , Florida , Charlotte County , 159978 , 159978 , 160124 , 160511 , 146 , 387 , 243 , 974 , 536 , 2208 , - 293 , - 1234 , 43 , 136 , 418 , 1496 , 461 , 1632 , - 22 , - 11 , 3012 , 3012 , 3012 , 6 . 0754440407 , 13 . 772669858 , - 7 . 697225818 , 0 . 8483166217 , 9 . 3314828387 , 10 . 17979946 <nl> + 050 , 3 , 5 , 12 , 017 , Florida , Citrus County , 141236 , 141234 , 141277 , 140031 , 43 , - 1246 , 246 , 1035 , 569 , 2315 , - 323 , - 1280 , 26 , 87 , 353 , - 39 , 379 , 48 , - 13 , - 14 , 2251 , 2251 , 2251 , 7 . 3584825174 , 16 . 458828046 , - 9 . 100345529 , 0 . 6185391102 , - 0 . 277276153 , 0 . 3412629573 <nl> + 050 , 3 , 5 , 12 , 019 , Florida , Clay County , 190865 , 190865 , 191436 , 192370 , 571 , 934 , 515 , 2127 , 318 , 1365 , 197 , 762 , 101 , 263 , 272 , - 81 , 373 , 182 , 1 , - 10 , 1251 , 1251 , 1251 , 11 . 08372459 , 7 . 112968531 , 3 . 9707560591 , 1 . 3704840466 , - 0 . 422088242 , 0 . 9483958041 <nl> + 050 , 3 , 5 , 12 , 021 , Florida , Collier County , 321520 , 321520 , 322739 , 328134 , 1219 , 5395 , 803 , 3371 , 677 , 2742 , 126 , 629 , 538 , 1965 , 602 , 2836 , 1140 , 4801 , - 47 , - 35 , 4546 , 4546 , 4546 , 10 . 35839557 , 8 . 4256068388 , 1 . 9327887314 , 6 . 0380442882 , 8 . 7144496699 , 14 . 752493958 <nl> + 050 , 3 , 5 , 12 , 023 , Florida , Columbia County , 67531 , 67532 , 67617 , 67485 , 85 , - 132 , 195 , 817 , 160 , 708 , 35 , 109 , 22 , 83 , 30 , - 324 , 52 , - 241 , - 2 , 0 , 4606 , 4606 , 4606 , 12 . 094565587 , 10 . 480969934 , 1 . 6135956537 , 1 . 2287012776 , - 4 . 796376071 , - 3 . 567674794 <nl> + 050 , 3 , 5 , 12 , 027 , Florida , DeSoto County , 34862 , 34862 , 34950 , 34894 , 88 , - 56 , 104 , 436 , 69 , 261 , 35 , 175 , 46 , 195 , 8 , - 428 , 54 , - 233 , - 1 , 2 , 3798 , 3798 , 3798 , 12 . 484966497 , 7 . 4737987515 , 5 . 0111677453 , 5 . 5838726304 , - 12 . 25588454 , - 6 . 672011912 <nl> + 050 , 3 , 5 , 12 , 029 , Florida , Dixie County , 16422 , 16422 , 16401 , 16486 , - 21 , 85 , 37 , 167 , 60 , 194 , - 23 , - 27 , 0 , 0 , 4 , 113 , 4 , 113 , - 2 , - 1 , 1430 , 1430 , 1430 , 10 . 155988689 , 11 . 797974884 , - 1 . 641986195 , 0 , 6 . 8720162982 , 6 . 8720162982 <nl> + 050 , 3 , 5 , 12 , 031 , Florida , Duval County , 864263 , 864263 , 865420 , 870709 , 1157 , 5289 , 3043 , 12585 , 1790 , 7232 , 1253 , 5353 , 599 , 1443 , - 702 , - 1485 , - 103 , - 42 , 7 , - 22 , 19985 , 19985 , 19985 , 14 . 497770615 , 8 . 3311781555 , 6 . 1665924594 , 1 . 6623188715 , - 1 . 710702373 , - 0 . 048383501 <nl> + 050 , 3 , 5 , 12 , 033 , Florida , Escambia County , 297619 , 297619 , 297964 , 299114 , 345 , 1150 , 951 , 3962 , 737 , 3034 , 214 , 928 , 206 , 234 , - 66 , 7 , 140 , 241 , - 9 , - 19 , 17959 , 17959 , 17958 , 13 . 271297887 , 10 . 162826297 , 3 . 10847159 , 0 . 7838171897 , 0 . 0234475228 , 0 . 8072647125 <nl> + 050 , 3 , 5 , 12 , 035 , Florida , Flagler County , 95696 , 95696 , 96019 , 97376 , 323 , 1357 , 203 , 854 , 233 , 953 , - 30 , - 99 , 36 , 117 , 321 , 1333 , 357 , 1450 , - 4 , 6 , 684 , 684 , 684 , 8 . 8316657618 , 9 . 8554771323 , - 1 . 023811371 , 1 . 2099588924 , 13 . 78525815 , 14 . 995217043 <nl> + 050 , 3 , 5 , 12 , 037 , Florida , Franklin County , 11549 , 11549 , 11568 , 11596 , 19 , 28 , 24 , 115 , 11 , 96 , 13 , 19 , 3 , 11 , 4 , - 3 , 7 , 8 , - 1 , 1 , 1828 , 1828 , 1828 , 9 . 9292004835 , 8 . 2887238819 , 1 . 6404766016 , 0 . 9497496115 , - 0 . 259022621 , 0 . 6907269902 <nl> + 050 , 3 , 5 , 12 , 039 , Florida , Gadsden County , 46389 , 46389 , 46422 , 46151 , 33 , - 271 , 160 , 662 , 143 , 448 , 17 , 214 , 28 , 102 , - 10 , - 593 , 18 , - 491 , - 2 , 6 , 2161 , 2161 , 2161 , 14 . 302226351 , 9 . 6788480442 , 4 . 6233783068 , 2 . 2036662958 , - 12 . 81151092 , - 10 . 60784462 <nl> + 050 , 3 , 5 , 12 , 041 , Florida , Gilchrist County , 16939 , 16939 , 16977 , 17004 , 38 , 27 , 45 , 182 , 52 , 174 , - 7 , 8 , 3 , 14 , 44 , 6 , 47 , 20 , - 2 , - 1 , 1128 , 1128 , 1128 , 10 . 711868397 , 10 . 241017039 , 0 . 4708513581 , 0 . 8239898767 , 0 . 3531385186 , 1 . 1771283953 <nl> + 050 , 3 , 5 , 12 , 043 , Florida , Glades County , 12884 , 12884 , 12839 , 12635 , - 45 , - 204 , 20 , 79 , 19 , 105 , 1 , - 26 , 8 , 46 , - 51 , - 222 , - 43 , - 176 , - 3 , - 2 , 1483 , 1483 , 1483 , 6 . 2024024496 , 8 . 2436994583 , - 2 . 041297009 , 3 . 611525477 , - 17 . 429536 , - 13 . 81801052 <nl> + 050 , 3 , 5 , 12 , 045 , Florida , Gulf County , 15863 , 15863 , 15856 , 15844 , - 7 , - 12 , 27 , 119 , 44 , 169 , - 17 , - 50 , 0 , - 1 , 11 , 39 , 11 , 38 , - 1 , 0 , 3450 , 3450 , 3450 , 7 . 5078864353 , 10 . 662460568 , - 3 . 154574132 , - 0 . 063091483 , 2 . 4605678233 , 2 . 3974763407 <nl> + 050 , 3 , 5 , 12 , 047 , Florida , Hamilton County , 14799 , 14799 , 14736 , 14671 , - 63 , - 65 , 41 , 176 , 20 , 106 , 21 , 70 , 1 , 17 , - 85 , - 153 , - 84 , - 136 , 0 , 1 , 3064 , 3064 , 3064 , 11 . 96993913 , 7 . 2091678852 , 4 . 7607712449 , 1 . 1561873023 , - 10 . 40568572 , - 9 . 249498419 <nl> + 050 , 3 , 5 , 12 , 049 , Florida , Hardee County , 27731 , 27731 , 27809 , 27887 , 78 , 78 , 111 , 450 , 36 , 168 , 75 , 282 , 43 , 185 , - 41 , - 394 , 2 , - 209 , 1 , 5 , 1984 , 1984 , 1985 , 16 . 15914967 , 6 . 03274921 , 10 . 12640046 , 6 . 6432059753 , - 14 . 14823327 , - 7 . 505027291 <nl> + 050 , 3 , 5 , 12 , 051 , Florida , Hendry County , 39140 , 39140 , 39139 , 39089 , - 1 , - 50 , 151 , 622 , 70 , 304 , 81 , 318 , 51 , 167 , - 137 , - 542 , - 86 , - 375 , 4 , 7 , 1942 , 1942 , 1942 , 15 . 902234494 , 7 . 7721531932 , 8 . 1300813008 , 4 . 2695709976 , - 13 . 85693102 , - 9 . 587360025 <nl> + 050 , 3 , 5 , 12 , 053 , Florida , Hernando County , 172778 , 172778 , 173022 , 173094 , 244 , 72 , 351 , 1502 , 610 , 2511 , - 259 , - 1009 , 69 , 225 , 443 , 864 , 512 , 1089 , - 9 , - 8 , 1828 , 1828 , 1828 , 8 . 6791711449 , 14 . 509586381 , - 5 . 830415237 , 1 . 3001421489 , 4 . 9925458517 , 6 . 2926880006 <nl> + 050 , 3 , 5 , 12 , 055 , Florida , Highlands County , 98786 , 98786 , 98750 , 98630 , - 36 , - 120 , 223 , 952 , 327 , 1378 , - 104 , - 426 , 70 , 265 , 12 , 50 , 82 , 315 , - 14 , - 9 , 1733 , 1733 , 1733 , 9 . 6463674131 , 13 . 962914176 , - 4 . 316546763 , 2 . 685175803 , 0 . 506636944 , 3 . 191812747 <nl> + 050 , 3 , 5 , 12 , 057 , Florida , Hillsborough County , 1229226 , 1229226 , 1233373 , 1267775 , 4147 , 34402 , 3960 , 16270 , 2361 , 9329 , 1599 , 6941 , 1056 , 4201 , 1487 , 22963 , 2543 , 27164 , 5 , 297 , 22065 , 22065 , 22065 , 13 . 010025796 , 7 . 4597744716 , 5 . 5502513246 , 3 . 359257429 , 18 . 361968184 , 21 . 721225613 <nl> + 050 , 3 , 5 , 12 , 059 , Florida , Holmes County , 19927 , 19927 , 19864 , 19873 , - 63 , 9 , 45 , 209 , 62 , 216 , - 17 , - 7 , 1 , 7 , - 47 , 10 , - 46 , 17 , 0 , - 1 , 1732 , 1732 , 1732 , 10 . 5191635 , 10 . 871479981 , - 0 . 352316481 , 0 . 3523164809 , 0 . 5033092584 , 0 . 8556257392 <nl> + 050 , 3 , 5 , 12 , 061 , Florida , Indian River County , 138028 , 138028 , 138268 , 138894 , 240 , 626 , 312 , 1266 , 412 , 1730 , - 100 , - 464 , 78 , 272 , 275 , 828 , 353 , 1100 , - 13 , - 10 , 1794 , 1794 , 1794 , 9 . 1354514688 , 12 . 483673808 , - 3 . 348222339 , 1 . 9627510265 , 5 . 9748450365 , 7 . 937596063 <nl> + 050 , 3 , 5 , 12 , 063 , Florida , Jackson County , 49746 , 49746 , 49687 , 49292 , - 59 , - 395 , 120 , 511 , 126 , 555 , - 6 , - 44 , 5 , 27 , - 56 , - 379 , - 51 , - 352 , - 2 , 1 , 7994 , 7994 , 7994 , 10 . 325422564 , 11 . 214500045 , - 0 . 889077481 , 0 . 5455702725 , - 7 . 658190121 , - 7 . 112619849 <nl> + 050 , 3 , 5 , 12 , 065 , Florida , Jefferson County , 14761 , 14761 , 14761 , 14658 , 0 , - 103 , 30 , 135 , 19 , 132 , 11 , 3 , 7 , 26 , - 16 , - 133 , - 9 , - 107 , - 2 , 1 , 1339 , 1339 , 1339 , 9 . 1777422754 , 8 . 9737924471 , 0 . 2039498283 , 1 . 767565179 , - 9 . 041775723 , - 7 . 274210544 <nl> + 050 , 3 , 5 , 12 , 067 , Florida , Lafayette County , 8870 , 8870 , 8894 , 8942 , 24 , 48 , 22 , 79 , 4 , 83 , 18 , - 4 , 0 , 3 , 7 , 49 , 7 , 52 , - 1 , 0 , 2094 , 2094 , 2094 , 8 . 8584884503 , 9 . 3070195111 , - 0 . 448531061 , 0 . 3363982956 , 5 . 4945054945 , 5 . 8309037901 <nl> + 050 , 3 , 5 , 12 , 069 , Florida , Lake County , 297052 , 297052 , 297875 , 301019 , 823 , 3144 , 737 , 3053 , 849 , 3420 , - 112 , - 367 , 150 , 434 , 806 , 3082 , 956 , 3516 , - 21 , - 5 , 3987 , 3987 , 3987 , 10 . 195460298 , 11 . 421052807 , - 1 . 225592509 , 1 . 4493382802 , 10 . 292305483 , 11 . 741643763 <nl> + 050 , 3 , 5 , 12 , 071 , Florida , Lee County , 618754 , 618754 , 620450 , 631330 , 1696 , 10880 , 1509 , 6308 , 1454 , 5852 , 55 , 456 , 554 , 2006 , 1154 , 8405 , 1708 , 10411 , - 67 , 13 , 8488 , 8488 , 8488 , 10 . 07844829 , 9 . 3498857627 , 0 . 728562527 , 3 . 2050360287 , 13 . 428877279 , 16 . 633913307 <nl> + 050 , 3 , 5 , 12 , 073 , Florida , Leon County , 275487 , 275487 , 275876 , 277971 , 389 , 2095 , 740 , 3051 , 407 , 1585 , 333 , 1466 , 132 , 453 , - 77 , 190 , 55 , 643 , 1 , - 14 , 14994 , 14994 , 14994 , 11 . 017483168 , 5 . 7236023667 , 5 . 293880801 , 1 . 6358308341 , 0 . 6861100629 , 2 . 321940897 <nl> + 050 , 3 , 5 , 12 , 075 , Florida , Levy County , 40801 , 40801 , 40730 , 40156 , - 71 , - 574 , 99 , 427 , 119 , 473 , - 20 , - 46 , 7 , 31 , - 55 , - 561 , - 48 , - 530 , - 3 , 2 , 635 , 635 , 635 , 10 . 558069382 , 11 . 695472641 , - 1 . 137403259 , 0 . 7665108919 , - 13 . 87137453 , - 13 . 10486364 <nl> + 050 , 3 , 5 , 12 , 077 , Florida , Liberty County , 8365 , 8365 , 8357 , 8314 , - 8 , - 43 , 16 , 78 , 4 , 67 , 12 , 11 , 0 , 0 , - 20 , - 53 , - 20 , - 53 , 0 , - 1 , 1882 , 1882 , 1882 , 9 . 3575670326 , 8 . 0379101434 , 1 . 3196568892 , 0 , - 6 . 35834683 , - 6 . 35834683 <nl> + 050 , 3 , 5 , 12 , 079 , Florida , Madison County , 19224 , 19226 , 19234 , 19115 , 8 , - 119 , 49 , 214 , 26 , 202 , 23 , 12 , 5 , 19 , - 19 , - 151 , - 14 , - 132 , - 1 , 1 , 1933 , 1933 , 1933 , 11 . 16065608 , 10 . 534824898 , 0 . 625831182 , 0 . 9908993716 , - 7 . 875042374 , - 6 . 884143002 <nl> + 050 , 3 , 5 , 12 , 081 , Florida , Manatee County , 322833 , 322833 , 323453 , 327142 , 620 , 3689 , 796 , 3436 , 795 , 3233 , 1 , 203 , 257 , 793 , 383 , 2683 , 640 , 3476 , - 21 , 10 , 4817 , 4817 , 4817 , 10 . 562638815 , 9 . 938594671 , 0 . 6240441442 , 2 . 4377685042 , 8 . 2478346744 , 10 . 685603179 <nl> + 050 , 3 , 5 , 12 , 083 , Florida , Marion County , 331298 , 331298 , 331407 , 332529 , 109 , 1122 , 808 , 3402 , 1028 , 4144 , - 220 , - 742 , 112 , 256 , 251 , 1625 , 363 , 1881 , - 34 , - 17 , 8239 , 8239 , 8239 , 10 . 247975709 , 12 . 483130904 , - 2 . 235155196 , 0 . 7711586659 , 4 . 8950501253 , 5 . 6662087912 <nl> + 050 , 3 , 5 , 12 , 085 , Florida , Martin County , 146318 , 146318 , 146488 , 147495 , 170 , 1007 , 292 , 1173 , 417 , 1706 , - 125 , - 533 , 94 , 360 , 216 , 1182 , 310 , 1542 , - 15 , - 2 , 3933 , 3933 , 3933 , 7 . 9800532684 , 11 . 606113279 , - 3 . 62606001 , 2 . 4491212077 , 8 . 0412812986 , 10 . 490402506 <nl> + 050 , 3 , 5 , 12 , 086 , Florida , Miami - Dade County , 2496435 , 2496435 , 2503034 , 2554766 , 6599 , 51732 , 7503 , 31317 , 4448 , 18117 , 3055 , 13200 , 4923 , 19996 , - 1333 , 18386 , 3590 , 38382 , - 46 , 150 , 40057 , 40057 , 40055 , 12 . 383645063 , 7 . 163984341 , 5 . 2196607221 , 7 . 9069951362 , 7 . 2703546997 , 15 . 177349836 <nl> + 050 , 3 , 5 , 12 , 087 , Florida , Monroe County , 73090 , 73090 , 73204 , 73873 , 114 , 669 , 167 , 694 , 160 , 632 , 7 , 62 , 81 , 244 , 29 , 363 , 110 , 607 , - 3 , 0 , 2020 , 2020 , 2020 , 9 . 4372335579 , 8 . 5941377646 , 0 . 8430957934 , 3 . 3179898964 , 4 . 9361898869 , 8 . 2541797834 <nl> + 050 , 3 , 5 , 12 , 089 , Florida , Nassau County , 73314 , 73314 , 73505 , 74195 , 191 , 690 , 187 , 762 , 173 , 690 , 14 , 72 , 21 , 69 , 158 , 552 , 179 , 621 , - 2 , - 3 , 543 , 543 , 543 , 10 . 318212593 , 9 . 3432633717 , 0 . 9749492214 , 0 . 9343263372 , 7 . 4746106974 , 8 . 4089370345 <nl> + 050 , 3 , 5 , 12 , 091 , Florida , Okaloosa County , 180822 , 180822 , 180801 , 183482 , - 21 , 2681 , 617 , 2521 , 371 , 1529 , 246 , 992 , 227 , 315 , - 503 , 1368 , - 276 , 1683 , 9 , 6 , 4883 , 4883 , 4883 , 13 . 840887442 , 8 . 3945723517 , 5 . 4463150902 , 1 . 7294246506 , 7 . 510644197 , 9 . 2400688476 <nl> + 050 , 3 , 5 , 12 , 093 , Florida , Okeechobee County , 39996 , 39996 , 40043 , 40140 , 47 , 97 , 135 , 540 , 94 , 369 , 41 , 171 , 39 , 165 , - 30 , - 240 , 9 , - 75 , - 3 , 1 , 2503 , 2503 , 2503 , 13 . 46918923 , 9 . 2039459736 , 4 . 2652432561 , 4 . 1155855979 , - 5 . 986306324 , - 1 . 870720726 <nl> + 050 , 3 , 5 , 12 , 095 , Florida , Orange County , 1145956 , 1145956 , 1148787 , 1169107 , 2831 , 20320 , 3663 , 14981 , 1645 , 6584 , 2018 , 8397 , 1567 , 6422 , - 769 , 5471 , 798 , 11893 , 15 , 30 , 33704 , 33704 , 33704 , 12 . 926389214 , 5 . 681019063 , 7 . 2453701507 , 5 . 5412370022 , 4 . 7206645343 , 10 . 261901536 <nl> + 050 , 3 , 5 , 12 , 097 , Florida , Osceola County , 268685 , 268685 , 269742 , 276163 , 1057 , 6421 , 894 , 3706 , 392 , 1591 , 502 , 2115 , 567 , 2049 , - 8 , 2234 , 559 , 4283 , - 4 , 23 , 3262 , 3262 , 3262 , 13 . 577453953 , 5 . 8288530056 , 7 . 7486009471 , 7 . 5068006338 , 8 . 1845742391 , 15 . 691374873 <nl> + 050 , 3 , 5 , 12 , 099 , Florida , Palm Beach County , 1320134 , 1320134 , 1322924 , 1335187 , 2790 , 12263 , 3329 , 13733 , 3183 , 13089 , 146 , 644 , 1164 , 5467 , 1564 , 6193 , 2728 , 11660 , - 84 , - 41 , 19972 , 19972 , 19972 , 10 . 332901824 , 9 . 8483471909 , 0 . 484554633 , 4 . 1134474821 , 4 . 6597000652 , 8 . 7731475473 <nl> + 050 , 3 , 5 , 12 , 101 , Florida , Pasco County , 464697 , 464697 , 465536 , 466457 , 839 , 921 , 1159 , 4748 , 1262 , 5325 , - 103 , - 577 , 257 , 633 , 698 , 885 , 955 , 1518 , - 13 , - 20 , 5674 , 5674 , 5674 , 10 . 188917728 , 11 . 427124453 , - 1 . 238206725 , 1 . 3583793011 , 1 . 8991558949 , 3 . 2575351961 <nl> + 050 , 3 , 5 , 12 , 103 , Florida , Pinellas County , 916542 , 916542 , 916220 , 917398 , - 322 , 1178 , 2055 , 8403 , 2849 , 11440 , - 794 , - 3037 , 403 , 1798 , 137 , 2445 , 540 , 4243 , - 68 , - 28 , 19678 , 19678 , 19678 , 9 . 1654859409 , 12 . 478062497 , - 3 . 312576556 , 1 . 9611500323 , 2 . 6668586369 , 4 . 6280086692 <nl> + 050 , 3 , 5 , 12 , 105 , Florida , Polk County , 602095 , 602095 , 602924 , 609492 , 829 , 6568 , 1784 , 7412 , 1393 , 5683 , 391 , 1729 , 510 , 1719 , - 38 , 3113 , 472 , 4832 , - 34 , 7 , 12261 , 12261 , 12261 , 12 . 226826436 , 9 . 3746700802 , 2 . 8521563556 , 2 . 8356603674 , 5 . 1352011191 , 7 . 9708614865 <nl> + 050 , 3 , 5 , 12 , 107 , Florida , Putnam County , 74364 , 74366 , 74283 , 74041 , - 83 , - 242 , 215 , 906 , 203 , 874 , 12 , 32 , 25 , 78 , - 117 , - 352 , - 92 , - 274 , - 3 , 0 , 1407 , 1407 , 1407 , 12 . 216499016 , 11 . 785011192 , 0 . 431487824 , 1 . 0517515709 , - 4 . 746366063 , - 3 . 694614493 <nl> + 050 , 3 , 5 , 12 , 109 , Florida , St . Johns County , 190039 , 190039 , 191242 , 195823 , 1203 , 4581 , 442 , 1774 , 342 , 1411 , 100 , 363 , 53 , 157 , 1030 , 4014 , 1083 , 4171 , 20 , 47 , 2798 , 2798 , 2798 , 9 . 1664190769 , 7 . 290765117 , 1 . 8756539599 , 0 . 8112332554 , 20 . 740702466 , 21 . 551935721 <nl> + 050 , 3 , 5 , 12 , 111 , Florida , St . Lucie County , 277789 , 277789 , 278732 , 280379 , 943 , 1647 , 728 , 3052 , 680 , 2732 , 48 , 320 , 167 , 548 , 734 , 806 , 901 , 1354 , - 6 , - 27 , 3053 , 3053 , 3053 , 10 . 917331263 , 9 . 7726569501 , 1 . 1446743133 , 1 . 9602547616 , 2 . 8831484267 , 4 . 8434031883 <nl> + 050 , 3 , 5 , 12 , 113 , Florida , Santa Rosa County , 151372 , 151372 , 152020 , 154104 , 648 , 2084 , 414 , 1738 , 282 , 1164 , 132 , 574 , 85 , 189 , 423 , 1313 , 508 , 1502 , 8 , 8 , 4244 , 4244 , 4244 , 11 . 354875802 , 7 . 6047614692 , 3 . 7501143328 , 1 . 2347937437 , 8 . 5782232037 , 9 . 8130169474 <nl> + 050 , 3 , 5 , 12 , 115 , Florida , Sarasota County , 379448 , 379448 , 380043 , 382213 , 595 , 2170 , 677 , 2808 , 1202 , 4971 , - 525 , - 2163 , 274 , 810 , 887 , 3532 , 1161 , 4342 , - 41 , - 9 , 5622 , 5622 , 5622 , 7 . 3676035348 , 13 . 042862241 , - 5 . 675258706 , 2 . 1252702504 , 9 . 267227808 , 11 . 392498058 <nl> + 050 , 3 , 5 , 12 , 117 , Florida , Seminole County , 422718 , 422718 , 423211 , 425071 , 493 , 1860 , 1064 , 4320 , 721 , 2908 , 343 , 1412 , 309 , 862 , - 154 , - 393 , 155 , 469 , - 5 , - 21 , 3515 , 3515 , 3515 , 10 . 185292155 , 6 . 8562105526 , 3 . 3290816026 , 2 . 032343018 , - 0 . 926578661 , 1 . 1057643567 <nl> + 050 , 3 , 5 , 12 , 119 , Florida , Sumter County , 93420 , 93420 , 94320 , 97756 , 900 , 3436 , 108 , 449 , 259 , 1086 , - 151 , - 637 , 31 , 132 , 1044 , 3952 , 1075 , 4084 , - 24 , - 11 , 8952 , 8952 , 8950 , 4 . 6752327204 , 11 . 308023907 , - 6 . 632791187 , 1 . 3744559445 , 41 . 150377975 , 42 . 52483392 <nl> + 050 , 3 , 5 , 12 , 121 , Florida , Suwannee County , 41551 , 41551 , 41536 , 41972 , - 15 , 436 , 116 , 479 , 120 , 479 , - 4 , 0 , 20 , 96 , - 29 , 340 , - 9 , 436 , - 2 , 0 , 1393 , 1393 , 1393 , 11 . 471954783 , 11 . 471954783 , 0 , 2 . 2991809168 , 8 . 1429324137 , 10 . 44211333 <nl> + 050 , 3 , 5 , 12 , 123 , Florida , Taylor County , 22570 , 22568 , 22575 , 22691 , 7 , 116 , 62 , 274 , 54 , 201 , 8 , 73 , 0 , 1 , 0 , 43 , 0 , 44 , - 1 , - 1 , 3254 , 3254 , 3254 , 12 . 106216586 , 8 . 8808377148 , 3 . 2253788716 , 0 . 0441832722 , 1 . 8998807052 , 1 . 9440639774 <nl> + 050 , 3 , 5 , 12 , 125 , Florida , Union County , 15535 , 15535 , 15553 , 15388 , 18 , - 165 , 42 , 159 , 40 , 198 , 2 , - 39 , 15 , 59 , 1 , - 185 , 16 , - 126 , 0 , 0 , 4778 , 4781 , 4781 , 10 . 277625158 , 12 . 798552083 , - 2 . 520926925 , 3 . 8137099641 , - 11 . 95824311 , - 8 . 144533144 <nl> + 050 , 3 , 5 , 12 , 127 , Florida , Volusia County , 494593 , 494597 , 494652 , 494804 , 55 , 152 , 1127 , 4785 , 1457 , 5885 , - 330 , - 1100 , 209 , 503 , 217 , 794 , 426 , 1297 , - 41 , - 45 , 12809 , 12809 , 12809 , 9 . 6719813716 , 11 . 895425365 , - 2 . 223443993 , 1 . 0167202988 , 1 . 6049223007 , 2 . 6216425996 <nl> + 050 , 3 , 5 , 12 , 129 , Florida , Wakulla County , 30776 , 30776 , 30856 , 30978 , 80 , 122 , 78 , 311 , 58 , 206 , 20 , 105 , 3 , 11 , 56 , 8 , 59 , 19 , 1 , - 2 , 3428 , 3428 , 3428 , 10 . 059190736 , 6 . 663000938 , 3 . 3961897985 , 0 . 3557913122 , 0 . 258757318 , 0 . 6145486302 <nl> + 050 , 3 , 5 , 12 , 131 , Florida , Walton County , 55043 , 55043 , 55300 , 55793 , 257 , 493 , 147 , 628 , 119 , 479 , 28 , 149 , 31 , 113 , 196 , 232 , 227 , 345 , 2 , - 1 , 2065 , 2065 , 2065 , 11 . 305842852 , 8 . 6234056151 , 2 . 6824372373 , 2 . 0343315961 , 4 . 176680799 , 6 . 211012395 <nl> + 050 , 3 , 5 , 12 , 133 , Florida , Washington County , 24896 , 24896 , 24910 , 24935 , 14 , 25 , 59 , 248 , 74 , 275 , - 15 , - 27 , 0 , - 2 , 30 , 56 , 30 , 54 , - 1 , - 2 , 2694 , 2694 , 2695 , 9 . 9508476276 , 11 . 034206039 , - 1 . 083358411 , - 0 . 080248771 , 2 . 2469655933 , 2 . 1667168221 <nl> + 040 , 3 , 5 , 13 , 000 , Georgia , Georgia , 9687653 , 9687660 , 9712157 , 9815210 , 24497 , 103053 , 32410 , 134442 , 16640 , 70688 , 15770 , 63754 , 6509 , 22947 , 1877 , 15849 , 8386 , 38796 , 341 , 503 , 253199 , 254491 , 256451 , 13 . 769598328 , 7 . 2398905597 , 6 . 5297077686 , 2 . 3502400503 , 1 . 6232603197 , 3 . 97350037 <nl> + 050 , 3 , 5 , 13 , 001 , Georgia , Appling County , 18236 , 18236 , 18327 , 18420 , 91 , 93 , 63 , 257 , 43 , 166 , 20 , 91 , 0 , - 2 , 70 , 4 , 70 , 2 , 1 , 0 , 426 , 493 , 559 , 13 . 987536398 , 9 . 0347511361 , 4 . 9527852614 , - 0 . 108852423 , 0 . 2177048467 , 0 . 1088524233 <nl> + 050 , 3 , 5 , 13 , 003 , Georgia , Atkinson County , 8375 , 8375 , 8366 , 8413 , - 9 , 47 , 32 , 137 , 2 , 59 , 30 , 78 , 6 , 39 , - 45 , - 71 , - 39 , - 32 , 0 , 1 , 20 , 20 , 20 , 16 . 32993623 , 7 . 0326002742 , 9 . 2973359557 , 4 . 6486679778 , - 8 . 462959652 , - 3 . 814291674 <nl> + 050 , 3 , 5 , 13 , 005 , Georgia , Bacon County , 11096 , 11096 , 11083 , 11203 , - 13 , 120 , 36 , 148 , 14 , 98 , 22 , 50 , 5 , 16 , - 41 , 54 , - 36 , 70 , 1 , 0 , 325 , 325 , 325 , 13 . 281881002 , 8 . 7947590416 , 4 . 48712196 , 1 . 4358790272 , 4 . 8460917168 , 6 . 281970744 <nl> + 050 , 3 , 5 , 13 , 007 , Georgia , Baker County , 3451 , 3451 , 3391 , 3085 , - 60 , - 306 , 6 , 33 , 2 , 33 , 4 , 0 , 0 , 0 , - 61 , - 304 , - 61 , - 304 , - 3 , - 2 , 0 , 0 , 0 , 10 . 19147622 , 10 . 19147622 , 0 , 0 , - 93 . 88511427 , - 93 . 88511427 <nl> + 050 , 3 , 5 , 13 , 009 , Georgia , Baldwin County , 45720 , 45720 , 45030 , 44417 , - 690 , - 613 , 120 , 503 , 100 , 418 , 20 , 85 , 7 , 31 , - 734 , - 738 , - 727 , - 707 , 17 , 9 , 4569 , 3902 , 3902 , 11 . 246883629 , 9 . 3463168133 , 1 . 9005668161 , 0 . 6931478976 , - 16 . 50139189 , - 15 . 80824399 <nl> + 050 , 3 , 5 , 13 , 011 , Georgia , Banks County , 18395 , 18395 , 18407 , 18251 , 12 , - 156 , 37 , 176 , 24 , 117 , 13 , 59 , 2 , 23 , - 2 , - 239 , 0 , - 216 , - 1 , 1 , 0 , 0 , 0 , 9 . 6022696274 , 6 . 3833269682 , 3 . 2189426592 , 1 . 2548420536 , - 13 . 03944569 , - 11 . 78460363 <nl> + 050 , 3 , 5 , 13 , 013 , Georgia , Barrow County , 69367 , 69367 , 69724 , 69912 , 357 , 188 , 254 , 1055 , 116 , 471 , 138 , 584 , 24 , 80 , 191 , - 480 , 215 , - 400 , 4 , 4 , 289 , 289 , 289 , 15 . 110716434 , 6 . 746111318 , 8 . 3646051162 , 1 . 1458363173 , - 6 . 875017904 , - 5 . 729181586 <nl> + 050 , 3 , 5 , 13 , 015 , Georgia , Bartow County , 100157 , 100157 , 100166 , 100421 , 9 , 255 , 327 , 1334 , 189 , 788 , 138 , 546 , 33 , 106 , - 166 , - 397 , - 133 , - 291 , 4 , 0 , 990 , 990 , 990 , 13 . 300961677 , 7 . 8569398814 , 5 . 444021796 , 1 . 0568980044 , - 3 . 958382148 , - 2 . 901484144 <nl> + 050 , 3 , 5 , 13 , 017 , Georgia , Ben Hill County , 17634 , 17634 , 17644 , 17673 , 10 , 29 , 62 , 283 , 43 , 208 , 19 , 75 , 2 , 14 , - 10 , - 59 , - 8 , - 45 , - 1 , - 1 , 308 , 308 , 308 , 16 . 026276298 , 11 . 779029929 , 4 . 2472463686 , 0 . 7928193221 , - 3 . 341167143 , - 2 . 548347821 <nl> + 050 , 3 , 5 , 13 , 019 , Georgia , Berrien County , 19286 , 19286 , 19329 , 19372 , 43 , 43 , 57 , 233 , 51 , 195 , 6 , 38 , 4 , 19 , 34 , - 13 , 38 , 6 , - 1 , - 1 , 176 , 176 , 176 , 12 . 041032531 , 10 . 077258986 , 1 . 9637735459 , 0 . 981886773 , - 0 . 671817266 , 0 . 3100695072 <nl> + 050 , 3 , 5 , 13 , 021 , Georgia , Bibb County , 155547 , 155547 , 155671 , 156433 , 124 , 762 , 572 , 2405 , 407 , 1624 , 165 , 781 , 38 , 138 , - 78 , - 150 , - 40 , - 12 , - 1 , - 7 , 6051 , 6051 , 6051 , 15 . 41152949 , 10 . 406787481 , 5 . 0047420091 , 0 . 8843206111 , - 0 . 961218056 , - 0 . 076897444 <nl> + 050 , 3 , 5 , 13 , 023 , Georgia , Bleckley County , 13063 , 13063 , 13148 , 13290 , 85 , 142 , 30 , 141 , 21 , 123 , 9 , 18 , 0 , 2 , 75 , 120 , 75 , 122 , 1 , 2 , 1439 , 1490 , 1540 , 10 . 666464937 , 9 . 3047885619 , 1 . 3616763749 , 0 . 151297375 , 9 . 0778424994 , 9 . 2291398744 <nl> + 050 , 3 , 5 , 13 , 025 , Georgia , Brantley County , 18411 , 18410 , 18400 , 18367 , - 10 , - 33 , 48 , 226 , 50 , 189 , - 2 , 37 , 2 , 2 , - 8 , - 69 , - 6 , - 67 , - 2 , - 3 , 66 , 66 , 66 , 12 . 293632877 , 10 . 280958468 , 2 . 0126744091 , 0 . 1087932113 , - 3 . 75336579 , - 3 . 644572579 <nl> + 050 , 3 , 5 , 13 , 027 , Georgia , Brooks County , 16243 , 16243 , 16208 , 15889 , - 35 , - 319 , 47 , 191 , 28 , 178 , 19 , 13 , 6 , 14 , - 61 , - 349 , - 55 , - 335 , 1 , 3 , 0 , 0 , 0 , 11 . 901423809 , 11 . 091379257 , 0 . 8100445525 , 0 . 8723556719 , - 21 . 74658068 , - 20 . 87422501 <nl> + 050 , 3 , 5 , 13 , 029 , Georgia , Bryan County , 30233 , 30238 , 30391 , 31377 , 153 , 986 , 106 , 457 , 55 , 190 , 51 , 267 , 11 , 30 , 90 , 680 , 101 , 710 , 1 , 9 , 98 , 98 , 98 , 14 . 797306048 , 6 . 1520528429 , 8 . 6452532055 , 0 . 9713767647 , 22 . 017873332 , 22 . 989250097 <nl> + 050 , 3 , 5 , 13 , 031 , Georgia , Bulloch County , 70217 , 70217 , 70699 , 72881 , 482 , 2182 , 187 , 803 , 102 , 478 , 85 , 325 , 17 , 66 , 369 , 1764 , 386 , 1830 , 11 , 27 , 4818 , 4818 , 4818 , 11 . 185401867 , 6 . 6583089567 , 4 . 5270929099 , 0 . 9193480986 , 24 . 571667363 , 25 . 491015462 <nl> + 050 , 3 , 5 , 13 , 033 , Georgia , Burke County , 23316 , 23316 , 23379 , 23504 , 63 , 125 , 87 , 342 , 23 , 229 , 64 , 113 , 3 , 6 , - 3 , 7 , 0 , 13 , - 1 , - 1 , 283 , 283 , 283 , 14 . 589510057 , 9 . 7689994241 , 4 . 8205106329 , 0 . 2559563168 , 0 . 2986157029 , 0 . 5545720197 <nl> + 050 , 3 , 5 , 13 , 035 , Georgia , Butts County , 23655 , 23655 , 23674 , 23504 , 19 , - 170 , 67 , 296 , 58 , 251 , 9 , 45 , 3 , 11 , 8 , - 228 , 11 , - 217 , - 1 , 2 , 2345 , 2345 , 2345 , 12 . 548221629 , 10 . 6405528 , 1 . 9076688287 , 0 . 466319047 , - 9 . 665522065 , - 9 . 199203018 <nl> + 050 , 3 , 5 , 13 , 037 , Georgia , Calhoun County , 6694 , 6694 , 6706 , 6740 , 12 , 34 , 16 , 74 , 4 , 46 , 12 , 28 , 1 , 5 , - 1 , 2 , 0 , 7 , 0 , - 1 , 1701 , 1701 , 1701 , 11 . 006990927 , 6 . 842183549 , 4 . 1648073777 , 0 . 7437156032 , 0 . 2974862413 , 1 . 0412018444 <nl> + 050 , 3 , 5 , 13 , 039 , Georgia , Camden County , 50513 , 50513 , 50693 , 50410 , 180 , - 283 , 193 , 791 , 59 , 265 , 134 , 526 , 60 , 29 , - 15 , - 849 , 45 , - 820 , 1 , 11 , 1877 , 1877 , 1877 , 15 . 647409078 , 5 . 2421787682 , 10 . 40523031 , 0 . 5736723935 , - 16 . 79475386 , - 16 . 22108147 <nl> + 050 , 3 , 5 , 13 , 043 , Georgia , Candler County , 10998 , 10998 , 11021 , 11276 , 23 , 255 , 32 , 138 , 21 , 128 , 11 , 10 , 2 , 4 , 11 , 237 , 13 , 241 , - 1 , 4 , 287 , 287 , 287 , 12 . 378346863 , 11 . 481365206 , 0 . 8969816567 , 0 . 3587926627 , 21 . 258465264 , 21 . 617257927 <nl> + 050 , 3 , 5 , 13 , 045 , Georgia , Carroll County , 110527 , 110527 , 110681 , 111159 , 154 , 478 , 381 , 1596 , 228 , 909 , 153 , 687 , 57 , 212 , - 56 , - 422 , 1 , - 210 , 0 , 1 , 3583 , 3583 , 3583 , 14 . 388748648 , 8 . 1950955644 , 6 . 1936530833 , 1 . 9112874144 , - 3 . 804543815 , - 1 . 893256401 <nl> + 050 , 3 , 5 , 13 , 047 , Georgia , Catoosa County , 63942 , 63942 , 64000 , 64530 , 58 , 530 , 173 , 739 , 136 , 527 , 37 , 212 , 9 , 28 , 13 , 289 , 22 , 317 , - 1 , 1 , 461 , 461 , 461 , 11 . 499260873 , 8 . 2004201354 , 3 . 2988407376 , 0 . 4356959465 , 4 . 4970045904 , 4 . 9327005368 <nl> + 050 , 3 , 5 , 13 , 049 , Georgia , Charlton County , 12171 , 12171 , 12822 , 13422 , 651 , 600 , 33 , 142 , 6 , 79 , 27 , 63 , 0 , 0 , 605 , 528 , 605 , 528 , 19 , 9 , 1791 , 2458 , 3123 , 10 . 82152111 , 6 . 0204237159 , 4 . 8010973937 , 0 , 40 . 237768633 , 40 . 237768633 <nl> + 050 , 3 , 5 , 13 , 051 , Georgia , Chatham County , 265128 , 265128 , 265695 , 271544 , 567 , 5849 , 907 , 3949 , 563 , 2206 , 344 , 1743 , 152 , 374 , 77 , 3686 , 229 , 4060 , - 6 , 46 , 12891 , 12891 , 12891 , 14 . 701092065 , 8 . 2123598622 , 6 . 488732203 , 1 . 3923039839 , 13 . 722011991 , 15 . 114315975 <nl> + 050 , 3 , 5 , 13 , 053 , Georgia , Chattahoochee County , 11267 , 11267 , 11138 , 11749 , - 129 , 611 , 50 , 148 , 0 , 28 , 50 , 120 , 76 , 28 , - 262 , 457 , - 186 , 485 , 7 , 6 , 3267 , 3267 , 3267 , 12 . 93310613 , 2 . 4468038625 , 10 . 486302268 , 2 . 4468038625 , 39 . 935334469 , 42 . 382138332 <nl> + 050 , 3 , 5 , 13 , 055 , Georgia , Chattooga County , 26015 , 26015 , 25999 , 25736 , - 16 , - 263 , 70 , 303 , 72 , 277 , - 2 , 26 , 5 , 23 , - 18 , - 316 , - 13 , - 293 , - 1 , 4 , 1941 , 1941 , 1941 , 11 . 713540157 , 10 . 708417899 , 1 . 0051222577 , 0 . 8891466125 , - 12 . 21610129 , - 11 . 32695467 <nl> + 050 , 3 , 5 , 13 , 057 , Georgia , Cherokee County , 214346 , 214344 , 215245 , 218286 , 901 , 3041 , 705 , 2911 , 255 , 1028 , 450 , 1883 , 96 , 330 , 352 , 836 , 448 , 1166 , 3 , - 8 , 1406 , 1406 , 1406 , 13 . 429258807 , 4 . 7424520969 , 8 . 6868067105 , 1 . 5223824825 , 3 . 8567022889 , 5 . 3790847713 <nl> + 050 , 3 , 5 , 13 , 059 , Georgia , Clarke County , 116714 , 116707 , 116703 , 117344 , - 4 , 641 , 361 , 1514 , 171 , 680 , 190 , 834 , 120 , 433 , - 323 , - 631 , - 203 , - 198 , 9 , 5 , 9183 , 9274 , 9365 , 12 . 937572368 , 5 . 8107986857 , 7 . 1267736822 , 3 . 7001115161 , - 5 . 392079369 , - 1 . 691967853 <nl> + 050 , 3 , 5 , 13 , 061 , Georgia , Clay County , 3183 , 3183 , 3165 , 3111 , - 18 , - 54 , 8 , 35 , 5 , 42 , 3 , - 7 , 0 , 0 , - 21 , - 46 , - 21 , - 46 , 0 , - 1 , 58 , 58 , 58 , 11 . 15360102 , 13 . 384321224 , - 2 . 230720204 , 0 , - 14 . 65901848 , - 14 . 65901848 <nl> + 050 , 3 , 5 , 13 , 063 , Georgia , Clayton County , 259424 , 259423 , 259641 , 261532 , 218 , 1891 , 1073 , 4196 , 344 , 1380 , 729 , 2816 , 225 , 659 , - 759 , - 1592 , - 534 , - 933 , 23 , 8 , 4037 , 4037 , 4037 , 16 . 102138829 , 5 . 2957463261 , 10 . 806392503 , 2 . 5289107456 , - 6 . 109295762 , - 3 . 580385016 <nl> + 050 , 3 , 5 , 13 , 065 , Georgia , Clinch County , 6798 , 6798 , 6796 , 6777 , - 2 , - 19 , 21 , 103 , 6 , 63 , 15 , 40 , 2 , 5 , - 19 , - 64 , - 17 , - 59 , 0 , 0 , 155 , 155 , 155 , 15 . 17719001 , 9 . 2831356369 , 5 . 8940543727 , 0 . 7367567966 , - 9 . 430486996 , - 8 . 6937302 <nl> + 050 , 3 , 5 , 13 , 067 , Georgia , Cobb County , 688078 , 688078 , 689749 , 697553 , 1671 , 7804 , 2334 , 9507 , 908 , 3632 , 1426 , 5875 , 672 , 2527 , - 439 , - 571 , 233 , 1956 , 12 , - 27 , 9068 , 9068 , 9068 , 13 . 70573963 , 5 . 2360625156 , 8 . 4696771143 , 3 . 6430423945 , - 0 . 823180533 , 2 . 8198618614 <nl> + 050 , 3 , 5 , 13 , 069 , Georgia , Coffee County , 42356 , 42356 , 42650 , 42864 , 294 , 214 , 134 , 594 , 82 , 366 , 52 , 228 , 3 , 16 , 233 , - 28 , 236 , - 12 , 6 , - 2 , 2657 , 2997 , 3336 , 13 . 892462053 , 8 . 560001871 , 5 . 332460182 , 0 . 3742077321 , - 0 . 654863531 , - 0 . 280655799 <nl> + 050 , 3 , 5 , 13 , 071 , Georgia , Colquitt County , 45498 , 45498 , 45518 , 45645 , 20 , 127 , 182 , 768 , 101 , 421 , 81 , 347 , 27 , 82 , - 89 , - 305 , - 62 , - 223 , 1 , 3 , 1005 , 895 , 784 , 16 . 848940908 , 9 . 2362032842 , 7 . 6127376238 , 1 . 7989754615 , - 6 . 691311168 , - 4 . 892335706 <nl> + 050 , 3 , 5 , 13 , 073 , Georgia , Columbia County , 124053 , 124053 , 124934 , 128112 , 881 , 3178 , 406 , 1527 , 160 , 718 , 246 , 809 , 53 , 151 , 566 , 2189 , 619 , 2340 , 16 , 29 , 640 , 640 , 640 , 12 . 06895189 , 5 . 6748575358 , 6 . 3940943544 , 1 . 1934588968 , 17 . 301202153 , 18 . 49466105 <nl> + 050 , 3 , 5 , 13 , 075 , Georgia , Cook County , 17212 , 17212 , 17251 , 17125 , 39 , - 126 , 61 , 252 , 29 , 174 , 32 , 78 , 4 , 25 , 4 , - 232 , 8 , - 207 , - 1 , 3 , 143 , 143 , 143 , 14 . 661391669 , 10 . 123341866 , 4 . 5380498022 , 1 . 4545031417 , - 13 . 49778916 , - 12 . 04328601 <nl> + 050 , 3 , 5 , 13 , 077 , Georgia , Coweta County , 127317 , 127317 , 127906 , 129629 , 589 , 1723 , 406 , 1651 , 186 , 798 , 220 , 853 , 54 , 206 , 307 , 662 , 361 , 868 , 8 , 2 , 588 , 588 , 588 , 12 . 821558235 , 6 . 1972159124 , 6 . 6243423224 , 1 . 5997825538 , 5 . 1410487895 , 6 . 7408313433 <nl> + 050 , 3 , 5 , 13 , 079 , Georgia , Crawford County , 12630 , 12630 , 12613 , 12567 , - 17 , - 46 , 36 , 119 , 14 , 105 , 22 , 14 , 6 , 20 , - 46 , - 78 , - 40 , - 58 , 1 , - 2 , 133 , 133 , 133 , 9 . 4519459889 , 8 . 3399523431 , 1 . 1119936458 , 1 . 5885623511 , - 6 . 195393169 , - 4 . 606830818 <nl> + 050 , 3 , 5 , 13 , 081 , Georgia , Crisp County , 23439 , 23439 , 23417 , 23710 , - 22 , 293 , 76 , 313 , 46 , 264 , 30 , 49 , 1 , 4 , - 52 , 237 , - 51 , 241 , - 1 , 3 , 506 , 506 , 506 , 13 . 283255883 , 11 . 20376854 , 2 . 0794873427 , 0 . 1697540688 , 10 . 057928576 , 10 . 227682645 <nl> + 050 , 3 , 5 , 13 , 083 , Georgia , Dade County , 16633 , 16633 , 16615 , 16570 , - 18 , - 45 , 33 , 152 , 38 , 165 , - 5 , - 13 , 0 , 3 , - 13 , - 34 , - 13 , - 31 , 0 , - 1 , 993 , 993 , 993 , 9 . 1607654061 , 9 . 944251921 , - 0 . 783486515 , 0 . 1808045804 , - 2 . 049118578 , - 1 . 868313997 <nl> + 050 , 3 , 5 , 13 , 085 , Georgia , Dawson County , 22330 , 22339 , 22362 , 22459 , 23 , 97 , 59 , 245 , 30 , 147 , 29 , 98 , 2 , 8 , - 7 , - 7 , - 5 , 1 , - 1 , - 2 , 299 , 299 , 299 , 10 . 932375449 , 6 . 5594252694 , 4 . 3729501796 , 0 . 3569755249 , - 0 . 312353584 , 0 . 0446219406 <nl> + 050 , 3 , 5 , 13 , 087 , Georgia , Decatur County , 27842 , 27842 , 27807 , 27694 , - 35 , - 113 , 97 , 398 , 87 , 324 , 10 , 74 , 1 , 2 , - 47 , - 190 , - 46 , - 188 , 1 , 1 , 1069 , 1069 , 1069 , 14 . 342083926 , 11 . 675465307 , 2 . 6666186195 , 0 . 0720707735 , - 6 . 846723482 , - 6 . 774652709 <nl> + 050 , 3 , 5 , 13 , 089 , Georgia , DeKalb County , 691893 , 691893 , 692858 , 699893 , 965 , 7035 , 2678 , 10977 , 977 , 3966 , 1701 , 7011 , 1025 , 4009 , - 1815 , - 4018 , - 790 , - 9 , 54 , 33 , 13049 , 13049 , 13050 , 15 . 763047379 , 5 . 6952032345 , 10 . 067844144 , 5 . 7569515297 , - 5 . 769875592 , - 0 . 012924062 <nl> + 050 , 3 , 5 , 13 , 091 , Georgia , Dodge County , 21796 , 21797 , 21809 , 21894 , 12 , 85 , 64 , 251 , 44 , 230 , 20 , 21 , 0 , 2 , - 7 , 66 , - 7 , 68 , - 1 , - 4 , 1951 , 1951 , 1951 , 11 . 486625632 , 10 . 525593209 , 0 . 9610324234 , 0 . 0915268975 , 3 . 0203876164 , 3 . 1119145139 <nl> + 050 , 3 , 5 , 13 , 093 , Georgia , Dooly County , 14918 , 14918 , 14858 , 14587 , - 60 , - 271 , 30 , 133 , 13 , 116 , 17 , 17 , 0 , 2 , - 77 , - 292 , - 77 , - 290 , 0 , 2 , 1978 , 1978 , 1978 , 9 . 0337918152 , 7 . 8790966208 , 1 . 1546951944 , 0 . 1358464935 , - 19 . 83358805 , - 19 . 69774155 <nl> + 050 , 3 , 5 , 13 , 095 , Georgia , Dougherty County , 94565 , 94565 , 94721 , 94788 , 156 , 67 , 363 , 1554 , 216 , 881 , 147 , 673 , 32 , 71 , - 21 , - 682 , 11 , - 611 , - 2 , 5 , 4331 , 4508 , 4685 , 16 . 400276504 , 9 . 2977114543 , 7 . 1025650497 , 0 . 7493047824 , - 7 . 197547346 , - 6 . 448242564 <nl> + 050 , 3 , 5 , 13 , 097 , Georgia , Douglas County , 132403 , 132403 , 132650 , 133355 , 247 , 705 , 413 , 1762 , 222 , 837 , 191 , 925 , 49 , 185 , 8 , - 404 , 57 , - 219 , - 1 , - 1 , 1368 , 1368 , 1368 , 13 . 247871281 , 6 . 2931147911 , 6 . 9547564895 , 1 . 3909512979 , - 3 . 037536888 , - 1 . 64658559 <nl> + 050 , 3 , 5 , 13 , 099 , Georgia , Early County , 11008 , 11004 , 10981 , 10778 , - 23 , - 203 , 36 , 155 , 17 , 142 , 19 , 13 , 0 , 0 , - 42 , - 219 , - 42 , - 219 , 0 , 3 , 172 , 172 , 172 , 14 . 246978262 , 13 . 052070408 , 1 . 1949078542 , 0 , - 20 . 12960154 , - 20 . 12960154 <nl> + 050 , 3 , 5 , 13 , 101 , Georgia , Echols County , 4034 , 4034 , 4049 , 4129 , 15 , 80 , 12 , 49 , 1 , 19 , 11 , 30 , 11 , 37 , - 8 , 14 , 3 , 51 , 1 , - 1 , 0 , 0 , 0 , 11 . 983370017 , 4 . 6466128638 , 7 . 3367571533 , 9 . 0486671558 , 3 . 4238200049 , 12 . 472487161 <nl> + 050 , 3 , 5 , 13 , 103 , Georgia , Effingham County , 52250 , 52250 , 52421 , 52655 , 171 , 234 , 145 , 638 , 95 , 319 , 50 , 319 , 8 , 31 , 110 , - 115 , 118 , - 84 , 3 , - 1 , 607 , 607 , 607 , 12 . 143591305 , 6 . 0717956527 , 6 . 0717956527 , 0 . 5900491073 , - 2 . 18889185 , - 1 . 598842742 <nl> + 050 , 3 , 5 , 13 , 105 , Georgia , Elbert County , 20166 , 20166 , 20119 , 19886 , - 47 , - 233 , 61 , 258 , 54 , 257 , 7 , 1 , 8 , 29 , - 63 , - 265 , - 55 , - 236 , 1 , 2 , 220 , 220 , 220 , 12 . 898387702 , 12 . 848393951 , 0 . 0499937508 , 1 . 4498187727 , - 13 . 24834396 , - 11 . 79852518 <nl> + 050 , 3 , 5 , 13 , 107 , Georgia , Emanuel County , 22598 , 22598 , 22641 , 22567 , 43 , - 74 , 78 , 352 , 64 , 272 , 14 , 80 , 21 , 84 , 8 , - 239 , 29 , - 155 , 0 , 1 , 916 , 916 , 916 , 15 . 57246505 , 12 . 033268448 , 3 . 5391966024 , 3 . 7161564325 , - 10 . 57334985 , - 6 . 857193417 <nl> + 050 , 3 , 5 , 13 , 109 , Georgia , Evans County , 11000 , 11001 , 11010 , 11065 , 9 , 55 , 38 , 170 , 19 , 115 , 19 , 55 , 12 , 44 , - 23 , - 45 , - 11 , - 1 , 1 , 1 , 404 , 404 , 404 , 15 . 402038505 , 10 . 419026048 , 4 . 9830124575 , 3 . 986409966 , - 4 . 077010193 , - 0 . 090600227 <nl> + 050 , 3 , 5 , 13 , 111 , Georgia , Fannin County , 23682 , 23682 , 23674 , 23708 , - 8 , 34 , 45 , 199 , 71 , 263 , - 26 , - 64 , 2 , 12 , 20 , 89 , 22 , 101 , - 4 , - 3 , 161 , 161 , 161 , 8 . 3998142755 , 11 . 101262083 , - 2 . 701447807 , 0 . 5065214638 , 3 . 7567008569 , 4 . 2632223207 <nl> + 050 , 3 , 5 , 13 , 113 , Georgia , Fayette County , 106567 , 106567 , 107010 , 107784 , 443 , 774 , 190 , 803 , 160 , 682 , 30 , 121 , 55 , 191 , 360 , 479 , 415 , 670 , - 2 , - 17 , 557 , 557 , 557 , 7 . 4769313854 , 6 . 3502704917 , 1 . 1266608937 , 1 . 7784481876 , 4 . 4600873395 , 6 . 2385355271 <nl> + 050 , 3 , 5 , 13 , 115 , Georgia , Floyd County , 96317 , 96317 , 96287 , 95989 , - 30 , - 298 , 324 , 1280 , 244 , 1008 , 80 , 272 , 48 , 189 , - 159 , - 765 , - 111 , - 576 , 1 , 6 , 3733 , 3733 , 3733 , 13 . 314194179 , 10 . 484927916 , 2 . 8292662631 , 1 . 9659239843 , - 7 . 957311365 , - 5 . 991387381 <nl> + 050 , 3 , 5 , 13 , 117 , Georgia , Forsyth County , 175511 , 175511 , 176775 , 181840 , 1264 , 5065 , 561 , 2237 , 207 , 812 , 354 , 1425 , 89 , 309 , 801 , 3290 , 890 , 3599 , 20 , 41 , 642 , 642 , 642 , 12 . 475774856 , 4 . 5285333854 , 7 . 9472414707 , 1 . 7232965715 , 18 . 348368027 , 20 . 071664599 <nl> + 050 , 3 , 5 , 13 , 119 , Georgia , Franklin County , 22084 , 22084 , 22045 , 21864 , - 39 , - 181 , 66 , 294 , 82 , 264 , - 16 , 30 , 4 , 16 , - 26 , - 228 , - 22 , - 212 , - 1 , 1 , 610 , 610 , 610 , 13 . 391332073 , 12 . 024869617 , 1 . 3664624564 , 0 . 7287799768 , - 10 . 38511467 , - 9 . 656334692 <nl> + 050 , 3 , 5 , 13 , 121 , Georgia , Fulton County , 920581 , 920583 , 925920 , 949599 , 5337 , 23679 , 3161 , 13387 , 1546 , 6201 , 1615 , 7186 , 917 , 3783 , 2726 , 12547 , 3643 , 16330 , 79 , 163 , 31392 , 31680 , 31847 , 14 . 275515204 , 6 . 6125696407 , 7 . 6629455633 , 4 . 0340833657 , 13 . 379763148 , 17 . 413846514 <nl> + 050 , 3 , 5 , 13 , 123 , Georgia , Gilmer County , 28292 , 28292 , 28335 , 28324 , 43 , - 11 , 82 , 330 , 83 , 273 , - 1 , 57 , 21 , 78 , 24 , - 146 , 45 , - 68 , - 1 , 0 , 282 , 282 , 282 , 11 . 648634815 , 9 . 6365978927 , 2 . 0120369226 , 2 . 7533136836 , - 5 . 153638433 , - 2 . 40032475 <nl> + 050 , 3 , 5 , 13 , 125 , Georgia , Glascock County , 3082 , 3082 , 3080 , 3084 , - 2 , 4 , 7 , 30 , 4 , 41 , 3 , - 11 , 0 , 1 , - 5 , 14 , - 5 , 15 , 0 , 0 , 89 , 89 , 89 , 9 . 7339390006 , 13 . 303049968 , - 3 . 569110967 , 0 . 3244646334 , 4 . 542504867 , 4 . 8669695003 <nl> + 050 , 3 , 5 , 13 , 127 , Georgia , Glynn County , 79626 , 79626 , 79821 , 80386 , 195 , 565 , 254 , 1055 , 177 , 742 , 77 , 313 , 47 , 170 , 74 , 88 , 121 , 258 , - 3 , - 6 , 1453 , 1453 , 1453 , 13 . 170460716 , 9 . 2630159731 , 3 . 9074447434 , 2 . 1222543335 , 1 . 0985787138 , 3 . 2208330472 <nl> + 050 , 3 , 5 , 13 , 129 , Georgia , Gordon County , 55186 , 55186 , 55191 , 55621 , 5 , 430 , 180 , 760 , 118 , 470 , 62 , 290 , 25 , 95 , - 82 , 49 , - 57 , 144 , 0 , - 4 , 670 , 670 , 670 , 13 . 716925965 , 8 . 482835794 , 5 . 2340901707 , 1 . 7146157456 , 0 . 884380753 , 2 . 5989964986 <nl> + 050 , 3 , 5 , 13 , 131 , Georgia , Grady County , 25011 , 25012 , 25080 , 25255 , 68 , 175 , 93 , 373 , 41 , 229 , 52 , 144 , 17 , 86 , 0 , - 54 , 17 , 32 , - 1 , - 1 , 200 , 200 , 200 , 14 . 820701301 , 9 . 0990364557 , 5 . 7216648455 , 3 . 4171053939 , - 2 . 145624317 , 1 . 2714810768 <nl> + 050 , 3 , 5 , 13 , 133 , Georgia , Greene County , 15994 , 15994 , 16009 , 16031 , 15 , 22 , 34 , 159 , 35 , 181 , - 1 , - 22 , 6 , 23 , 11 , 24 , 17 , 47 , - 1 , - 3 , 168 , 168 , 168 , 9 . 925093633 , 11 . 298377029 , - 1 . 373283396 , 1 . 4357053683 , 1 . 4981273408 , 2 . 9338327091 <nl> + 050 , 3 , 5 , 13 , 135 , Georgia , Gwinnett County , 805321 , 805321 , 808291 , 824941 , 2970 , 16650 , 2885 , 11828 , 860 , 3302 , 2025 , 8526 , 919 , 3856 , 20 , 4239 , 939 , 8095 , 6 , 29 , 5682 , 5588 , 5494 , 14 . 484163915 , 4 . 0435161692 , 10 . 440647746 , 4 . 7219256052 , 5 . 1909342947 , 9 . 9128598999 <nl> + 050 , 3 , 5 , 13 , 137 , Georgia , Habersham County , 43041 , 43041 , 43079 , 43279 , 38 , 200 , 126 , 543 , 97 , 405 , 29 , 138 , 12 , 53 , 0 , 12 , 12 , 65 , - 3 , - 3 , 2384 , 2384 , 2384 , 12 . 575557563 , 9 . 3795595081 , 3 . 1959980546 , 1 . 2274485282 , 0 . 2779128743 , 1 . 5053614025 <nl> + 050 , 3 , 5 , 13 , 139 , Georgia , Hall County , 179684 , 179684 , 180152 , 183052 , 468 , 2900 , 642 , 2672 , 283 , 1238 , 359 , 1434 , 215 , 859 , - 106 , 610 , 109 , 1469 , 0 , - 3 , 3141 , 3141 , 3141 , 14 . 713494345 , 6 . 8171055385 , 7 . 8963888063 , 4 . 7301241176 , 3 . 3589938437 , 8 . 0891179613 <nl> + 050 , 3 , 5 , 13 , 141 , Georgia , Hancock County , 9429 , 9431 , 9471 , 9400 , 40 , - 71 , 22 , 86 , 6 , 118 , 16 , - 32 , 0 , - 1 , 23 , - 38 , 23 , - 39 , 1 , 0 , 1471 , 1539 , 1607 , 9 . 1145143342 , 12 . 505961528 , - 3 . 391447194 , - 0 . 105982725 , - 4 . 027343543 , - 4 . 133326268 <nl> + 050 , 3 , 5 , 13 , 143 , Georgia , Haralson County , 28780 , 28780 , 28789 , 28638 , 9 , - 151 , 89 , 364 , 89 , 326 , 0 , 38 , 1 , 9 , 10 , - 200 , 11 , - 191 , - 2 , 2 , 354 , 354 , 354 , 12 . 676963798 , 11 . 3535445 , 1 . 3234192975 , 0 . 3134414126 , - 6 . 965364724 , - 6 . 651923311 <nl> + 050 , 3 , 5 , 13 , 145 , Georgia , Harris County , 32024 , 32024 , 32161 , 32265 , 137 , 104 , 75 , 297 , 58 , 268 , 17 , 29 , 5 , 10 , 113 , 65 , 118 , 75 , 2 , 0 , 442 , 442 , 442 , 9 . 2198801726 , 8 . 3196225127 , 0 . 90025766 , 0 . 3104336758 , 2 . 017818893 , 2 . 3282525688 <nl> + 050 , 3 , 5 , 13 , 147 , Georgia , Hart County , 25213 , 25213 , 25204 , 25305 , - 9 , 101 , 68 , 254 , 72 , 276 , - 4 , - 22 , 0 , - 1 , - 4 , 124 , - 4 , 123 , - 1 , 0 , 663 , 663 , 663 , 10 . 057613495 , 10 . 928745372 , - 0 . 871131877 , - 0 . 039596904 , 4 . 9100160367 , 4 . 8704191332 <nl> + 050 , 3 , 5 , 13 , 149 , Georgia , Heard County , 11834 , 11834 , 11856 , 11744 , 22 , - 112 , 27 , 108 , 20 , 111 , 7 , - 3 , 1 , 2 , 14 , - 112 , 15 , - 110 , 0 , 1 , 132 , 132 , 132 , 9 . 1525423729 , 9 . 406779661 , - 0 . 254237288 , 0 . 1694915254 , - 9 . 491525424 , - 9 . 322033898 <nl> + 050 , 3 , 5 , 13 , 151 , Georgia , Henry County , 203922 , 203923 , 205198 , 207360 , 1275 , 2162 , 615 , 2607 , 315 , 1187 , 300 , 1420 , 72 , 258 , 881 , 495 , 953 , 753 , 22 , - 11 , 933 , 933 , 933 , 12 . 638222989 , 5 . 7543424197 , 6 . 8838805695 , 1 . 2507332302 , 2 . 3996625929 , 3 . 6503958231 <nl> + 050 , 3 , 5 , 13 , 153 , Georgia , Houston County , 139900 , 139911 , 140800 , 143925 , 889 , 3125 , 501 , 1992 , 247 , 1012 , 254 , 980 , 95 , 161 , 526 , 1961 , 621 , 2122 , 14 , 23 , 1599 , 1599 , 1599 , 13 . 992448854 , 7 . 1086135745 , 6 . 8838352797 , 1 . 1309157959 , 13 . 774694881 , 14 . 905610677 <nl> + 050 , 3 , 5 , 13 , 155 , Georgia , Irwin County , 9538 , 9538 , 9615 , 9679 , 77 , 64 , 25 , 111 , 11 , 106 , 14 , 5 , 0 , 0 , 61 , 59 , 61 , 59 , 2 , 0 , 663 , 744 , 824 , 11 . 506167721 , 10 . 987871877 , 0 . 5182958433 , 0 , 6 . 1158909506 , 6 . 1158909506 <nl> + 050 , 3 , 5 , 13 , 157 , Georgia , Jackson County , 60485 , 60485 , 60741 , 61257 , 256 , 516 , 205 , 833 , 126 , 474 , 79 , 359 , 22 , 85 , 156 , 77 , 178 , 162 , - 1 , - 5 , 757 , 757 , 757 , 13 . 655961573 , 7 . 7706191905 , 5 . 8853423827 , 1 . 3934654666 , 1 . 2623157757 , 2 . 6557812423 <nl> + 050 , 3 , 5 , 13 , 159 , Georgia , Jasper County , 13900 , 13900 , 13934 , 13885 , 34 , - 49 , 43 , 177 , 21 , 120 , 22 , 57 , 7 , 33 , 6 , - 140 , 13 , - 107 , - 1 , 1 , 94 , 94 , 94 , 12 . 725115928 , 8 . 6271972393 , 4 . 0979186887 , 2 . 3724792408 , - 10 . 06506345 , - 7 . 692584205 <nl> + 050 , 3 , 5 , 13 , 161 , Georgia , Jeff Davis County , 15068 , 15068 , 15079 , 15162 , 11 , 83 , 55 , 232 , 35 , 164 , 20 , 68 , 3 , 24 , - 12 , - 8 , - 9 , 16 , 0 , - 1 , 111 , 111 , 111 , 15 . 343407956 , 10 . 846202176 , 4 . 4972057802 , 1 . 5872490989 , - 0 . 529083033 , 1 . 0581660659 <nl> + 050 , 3 , 5 , 13 , 163 , Georgia , Jefferson County , 16930 , 16930 , 16887 , 16675 , - 43 , - 212 , 51 , 226 , 32 , 238 , 19 , - 12 , 3 , 11 , - 66 , - 213 , - 63 , - 202 , 1 , 2 , 527 , 527 , 527 , 13 . 46761218 , 14 . 182706633 , - 0 . 715094452 , 0 . 6555032477 , - 12 . 69292652 , - 12 . 03742328 <nl> + 050 , 3 , 5 , 13 , 165 , Georgia , Jenkins County , 8340 , 8340 , 8343 , 8148 , 3 , - 195 , 28 , 114 , 11 , 102 , 17 , 12 , 3 , 8 , - 16 , - 217 , - 13 , - 209 , - 1 , 2 , 84 , 84 , 84 , 13 . 825723122 , 12 . 370383846 , 1 . 455339276 , 0 . 970226184 , - 26 . 31738524 , - 25 . 34715906 <nl> + 050 , 3 , 5 , 13 , 167 , Georgia , Johnson County , 9980 , 9980 , 9970 , 9975 , - 10 , 5 , 24 , 104 , 9 , 107 , 15 , - 3 , 0 , 0 , - 25 , 9 , - 25 , 9 , 0 , - 1 , 1737 , 1737 , 1737 , 10 . 428678867 , 10 . 729506142 , - 0 . 300827275 , 0 , 0 . 902481825 , 0 . 902481825 <nl> + 050 , 3 , 5 , 13 , 169 , Georgia , Jones County , 28669 , 28669 , 28660 , 28516 , - 9 , - 144 , 86 , 314 , 48 , 242 , 38 , 72 , 0 , 0 , - 46 , - 218 , - 46 , - 218 , - 1 , 2 , 321 , 321 , 321 , 10 . 983629495 , 8 . 4650902477 , 2 . 5185392472 , 0 , - 7 . 625577165 , - 7 . 625577165 <nl> + 050 , 3 , 5 , 13 , 171 , Georgia , Lamar County , 18317 , 18317 , 18248 , 18194 , - 69 , - 54 , 47 , 213 , 37 , 202 , 10 , 11 , 1 , 6 , - 82 , - 72 , - 81 , - 66 , 2 , 1 , 1455 , 1365 , 1275 , 11 . 689808463 , 11 . 086109434 , 0 . 6036990286 , 0 . 3292903792 , - 3 . 951484551 , - 3 . 622194172 <nl> + 050 , 3 , 5 , 13 , 173 , Georgia , Lanier County , 10078 , 10074 , 10110 , 10404 , 36 , 294 , 30 , 126 , 11 , 92 , 19 , 34 , 2 , 6 , 16 , 250 , 18 , 256 , - 1 , 4 , 260 , 260 , 260 , 12 . 284293653 , 8 . 9694842547 , 3 . 3148093985 , 0 . 5849663644 , 24 . 373598518 , 24 . 958564883 <nl> + 050 , 3 , 5 , 13 , 175 , Georgia , Laurens County , 48434 , 48434 , 48424 , 47949 , - 10 , - 475 , 159 , 663 , 120 , 504 , 39 , 159 , 3 , 12 , - 52 , - 653 , - 49 , - 641 , 0 , 7 , 1058 , 1058 , 1058 , 13 . 759040395 , 10 . 459361024 , 3 . 2996793708 , 0 . 2490324053 , - 13 . 55151339 , - 13 . 30248099 <nl> + 050 , 3 , 5 , 13 , 177 , Georgia , Lee County , 28298 , 28298 , 28449 , 28575 , 151 , 126 , 83 , 353 , 52 , 185 , 31 , 168 , 3 , 6 , 113 , - 46 , 116 , - 40 , 4 , - 2 , 828 , 884 , 939 , 12 . 380751964 , 6 . 4884960718 , 5 . 8922558923 , 0 . 2104377104 , - 1 . 61335578 , - 1 . 40291807 <nl> + 050 , 3 , 5 , 13 , 179 , Georgia , Liberty County , 63453 , 63465 , 62746 , 65451 , - 719 , 2705 , 326 , 1449 , 55 , 307 , 271 , 1142 , 156 , 127 , - 1182 , 1414 , - 1026 , 1541 , 36 , 22 , 2579 , 2579 , 2579 , 22 . 60583321 , 4 . 7895036545 , 17 . 816329555 , 1 . 981325616 , 22 . 059798591 , 24 . 041124207 <nl> + 050 , 3 , 5 , 13 , 181 , Georgia , Lincoln County , 7996 , 7994 , 7972 , 7862 , - 22 , - 110 , 15 , 64 , 10 , 87 , 5 , - 23 , 1 , 0 , - 28 , - 87 , - 27 , - 87 , 0 , 0 , 67 , 67 , 67 , 8 . 0838701528 , 10 . 989010989 , - 2 . 905140836 , 0 , - 10 . 98901099 , - 10 . 98901099 <nl> + 050 , 3 , 5 , 13 , 183 , Georgia , Long County , 14464 , 14452 , 14640 , 15136 , 188 , 496 , 33 , 170 , 6 , 71 , 27 , 99 , 19 , 46 , 138 , 345 , 157 , 391 , 4 , 6 , 328 , 328 , 328 , 11 . 418592155 , 4 . 7689414293 , 6 . 6496507254 , 3 . 0897367007 , 23 . 173025255 , 26 . 262761956 <nl> + 050 , 3 , 5 , 13 , 185 , Georgia , Lowndes County , 109233 , 109233 , 109722 , 111885 , 489 , 2163 , 425 , 1794 , 214 , 843 , 211 , 951 , 51 , 78 , 222 , 1121 , 273 , 1199 , 5 , 13 , 6410 , 6461 , 6512 , 16 . 190824297 , 7 . 6080629222 , 8 . 5827613749 , 0 . 7039488825 , 10 . 117008939 , 10 . 820957822 <nl> + 050 , 3 , 5 , 13 , 187 , Georgia , Lumpkin County , 29966 , 29966 , 29987 , 30031 , 21 , 44 , 73 , 285 , 55 , 223 , 18 , 62 , 12 , 30 , - 9 , - 46 , 3 , - 16 , 0 , - 2 , 1782 , 1782 , 1782 , 9 . 4971508547 , 7 . 4311040021 , 2 . 0660468526 , 0 . 99970009 , - 1 . 532873471 , - 0 . 533173381 <nl> + 050 , 3 , 5 , 13 , 189 , Georgia , McDuffie County , 21875 , 21875 , 21869 , 21673 , - 6 , - 196 , 76 , 320 , 42 , 245 , 34 , 75 , 4 , 14 , - 43 , - 288 , - 39 , - 274 , - 1 , 3 , 318 , 318 , 318 , 14 . 698452069 , 11 . 253502366 , 3 . 4449497037 , 0 . 643057278 , - 13 . 22860686 , - 12 . 58554958 <nl> + 050 , 3 , 5 , 13 , 191 , Georgia , McIntosh County , 14333 , 14332 , 14289 , 14170 , - 43 , - 119 , 32 , 124 , 9 , 98 , 23 , 26 , 0 , 0 , - 66 , - 146 , - 66 , - 146 , 0 , 1 , 71 , 71 , 71 , 8 . 714290734 , 6 . 8871007414 , 1 . 8271899926 , 0 , - 10 . 26037457 , - 10 . 26037457 <nl> + 050 , 3 , 5 , 13 , 193 , Georgia , Macon County , 14740 , 14740 , 14657 , 14405 , - 83 , - 252 , 36 , 145 , 13 , 159 , 23 , - 14 , 1 , 2 , - 109 , - 242 , - 108 , - 240 , 2 , 2 , 1960 , 1960 , 1960 , 9 . 9786662996 , 10 . 942123735 , - 0 . 963457436 , 0 . 1376367765 , - 16 . 65404996 , - 16 . 51641319 <nl> + 050 , 3 , 5 , 13 , 195 , Georgia , Madison County , 28120 , 28120 , 28177 , 27921 , 57 , - 256 , 86 , 336 , 66 , 239 , 20 , 97 , 5 , 24 , 32 , - 380 , 37 , - 356 , 0 , 3 , 204 , 204 , 204 , 11 . 979036686 , 8 . 5208028807 , 3 . 4582338051 , 0 . 8556454776 , - 13 . 54772006 , - 12 . 69207458 <nl> + 050 , 3 , 5 , 13 , 197 , Georgia , Marion County , 8742 , 8742 , 8762 , 8746 , 20 , - 16 , 20 , 109 , 7 , 82 , 13 , 27 , 4 , 17 , 3 , - 61 , 7 , - 44 , 0 , 1 , 79 , 79 , 79 , 12 . 451450765 , 9 . 3671464473 , 3 . 084304318 , 1 . 9419693854 , - 6 . 968243089 , - 5 . 026273703 <nl> + 050 , 3 , 5 , 13 , 199 , Georgia , Meriwether County , 21992 , 21992 , 21863 , 21617 , - 129 , - 246 , 62 , 253 , 39 , 241 , 23 , 12 , 1 , 3 , - 155 , - 264 , - 154 , - 261 , 2 , 3 , 253 , 253 , 253 , 11 . 637534499 , 11 . 085556578 , 0 . 5519779209 , 0 . 1379944802 , - 12 . 14351426 , - 12 . 00551978 <nl> + 050 , 3 , 5 , 13 , 201 , Georgia , Miller County , 6125 , 6129 , 6147 , 6141 , 18 , - 6 , 18 , 82 , 7 , 74 , 11 , 8 , 0 , 0 , 7 , - 14 , 7 , - 14 , 0 , 0 , 168 , 168 , 168 , 13 . 346354167 , 12 . 044270833 , 1 . 3020833333 , 0 , - 2 . 278645833 , - 2 . 278645833 <nl> + 050 , 3 , 5 , 13 , 205 , Georgia , Mitchell County , 23498 , 23498 , 23518 , 23462 , 20 , - 56 , 78 , 310 , 41 , 228 , 37 , 82 , 3 , 7 , - 20 , - 145 , - 17 , - 138 , 0 , 0 , 2135 , 2135 , 2135 , 13 . 197105151 , 9 . 7062579821 , 3 . 490847169 , 0 . 2979991486 , - 6 . 172839506 , - 5 . 874840358 <nl> + 050 , 3 , 5 , 13 , 207 , Georgia , Monroe County , 26424 , 26424 , 26460 , 26625 , 36 , 165 , 70 , 268 , 66 , 269 , 4 , - 1 , 0 , 8 , 33 , 157 , 33 , 165 , - 1 , 1 , 1208 , 1208 , 1208 , 10 . 097014222 , 10 . 134689649 , - 0 . 037675426 , 0 . 3014034096 , 5 . 9150419139 , 6 . 2164453235 <nl> + 050 , 3 , 5 , 13 , 209 , Georgia , Montgomery County , 9123 , 9123 , 9128 , 9065 , 5 , - 63 , 27 , 105 , 7 , 80 , 20 , 25 , 4 , 12 , - 19 , - 101 , - 15 , - 89 , 0 , 1 , 732 , 732 , 732 , 11 . 542901116 , 8 . 7945913263 , 2 . 7483097895 , 1 . 319188699 , - 11 . 10317155 , - 9 . 783982851 <nl> + 050 , 3 , 5 , 13 , 211 , Georgia , Morgan County , 17868 , 17870 , 17892 , 17961 , 22 , 69 , 54 , 202 , 19 , 128 , 35 , 74 , 0 , 1 , - 12 , - 6 , - 12 , - 5 , - 1 , 0 , 154 , 154 , 154 , 11 . 268234178 , 7 . 1402672022 , 4 . 1279669763 , 0 . 0557833375 , - 0 . 334700025 , - 0 . 278916688 <nl> + 050 , 3 , 5 , 13 , 213 , Georgia , Murray County , 39628 , 39628 , 39547 , 39557 , - 81 , 10 , 118 , 508 , 105 , 355 , 13 , 153 , 17 , 71 , - 113 , - 215 , - 96 , - 144 , 2 , 1 , 254 , 254 , 254 , 12 . 843851133 , 8 . 97552589 , 3 . 8683252427 , 1 . 795105178 , - 5 . 435881877 , - 3 . 640776699 <nl> + 050 , 3 , 5 , 13 , 215 , Georgia , Muscogee County , 189885 , 189885 , 190371 , 194107 , 486 , 3736 , 762 , 3320 , 439 , 1745 , 323 , 1575 , 134 , 156 , 32 , 1980 , 166 , 2136 , - 3 , 25 , 7017 , 7098 , 7178 , 17 . 270168904 , 9 . 077242391 , 8 . 1929265134 , 0 . 8114898642 , 10 . 299679045 , 11 . 11116891 <nl> + 050 , 3 , 5 , 13 , 217 , Georgia , Newton County , 99958 , 99958 , 100072 , 100814 , 114 , 742 , 338 , 1364 , 182 , 697 , 156 , 667 , 21 , 91 , - 64 , - 11 , - 43 , 80 , 1 , - 5 , 1792 , 1792 , 1792 , 13 . 579841303 , 6 . 9392590823 , 6 . 6405822208 , 0 . 9059864799 , - 0 . 109514849 , 0 . 7964716307 <nl> + 050 , 3 , 5 , 13 , 219 , Georgia , Oconee County , 32808 , 32815 , 33025 , 33366 , 210 , 341 , 87 , 327 , 44 , 172 , 43 , 155 , 18 , 68 , 148 , 119 , 166 , 187 , 1 , - 1 , 117 , 117 , 117 , 9 . 85073278 , 5 . 1814251932 , 4 . 6693075869 , 2 . 0484704252 , 3 . 5848232441 , 5 . 6332936693 <nl> + 050 , 3 , 5 , 13 , 221 , Georgia , Oglethorpe County , 14899 , 14899 , 14916 , 14686 , 17 , - 230 , 39 , 151 , 18 , 133 , 21 , 18 , 0 , 0 , - 3 , - 249 , - 3 , - 249 , - 1 , 1 , 177 , 177 , 177 , 10 . 202013377 , 8 . 9858793325 , 1 . 216134045 , 0 , - 16 . 82318762 , - 16 . 82318762 <nl> + 050 , 3 , 5 , 13 , 223 , Georgia , Paulding County , 142324 , 142324 , 142796 , 143542 , 472 , 746 , 471 , 1809 , 171 , 740 , 300 , 1069 , 36 , 119 , 133 , - 442 , 169 , - 323 , 3 , 0 , 662 , 662 , 662 , 12 . 635416885 , 5 . 1687166915 , 7 . 4667001935 , 0 . 831185522 , - 3 . 08726051 , - 2 . 256074988 <nl> + 050 , 3 , 5 , 13 , 225 , Georgia , Peach County , 27695 , 27695 , 27760 , 27823 , 65 , 63 , 89 , 402 , 45 , 237 , 44 , 165 , 2 , 3 , 19 , - 104 , 21 , - 101 , 0 , - 1 , 2028 , 2028 , 2028 , 14 . 464854362 , 8 . 5277872731 , 5 . 9370670889 , 0 . 1079466743 , - 3 . 742151377 , - 3 . 634204703 <nl> + 050 , 3 , 5 , 13 , 227 , Georgia , Pickens County , 29431 , 29422 , 29448 , 29415 , 26 , - 33 , 73 , 311 , 77 , 288 , - 4 , 23 , 4 , 14 , 29 , - 69 , 33 , - 55 , - 3 , - 1 , 360 , 360 , 360 , 10 . 566909604 , 9 . 7854339738 , 0 . 7814756299 , 0 . 4756808182 , - 2 . 34442689 , - 1 . 868746071 <nl> + 050 , 3 , 5 , 13 , 229 , Georgia , Pierce County , 18758 , 18758 , 18809 , 18770 , 51 , - 39 , 53 , 233 , 49 , 200 , 4 , 33 , 2 , 9 , 45 , - 81 , 47 , - 72 , 0 , 0 , 142 , 142 , 142 , 12 . 400542856 , 10 . 644242795 , 1 . 7563000612 , 0 . 4789909258 , - 4 . 310918332 , - 3 . 831927406 <nl> + 050 , 3 , 5 , 13 , 231 , Georgia , Pike County , 17869 , 17869 , 17917 , 17751 , 48 , - 166 , 45 , 188 , 32 , 160 , 13 , 28 , 3 , 12 , 31 , - 207 , 34 , - 195 , 1 , 1 , 268 , 268 , 268 , 10 . 541661994 , 8 . 9716272289 , 1 . 5700347651 , 0 . 6728720422 , - 11 . 60704273 , - 10 . 93417069 <nl> + 050 , 3 , 5 , 13 , 233 , Georgia , Polk County , 41475 , 41475 , 41373 , 41211 , - 102 , - 162 , 133 , 610 , 109 , 469 , 24 , 141 , 13 , 56 , - 142 , - 361 , - 129 , - 305 , 3 , 2 , 373 , 246 , 246 , 14 . 772837353 , 11 . 358132326 , 3 . 4147050276 , 1 . 3561949046 , - 8 . 742613581 , - 7 . 386418677 <nl> + 050 , 3 , 5 , 13 , 235 , Georgia , Pulaski County , 12010 , 11999 , 11938 , 11735 , - 61 , - 203 , 25 , 112 , 19 , 116 , 6 , - 4 , 1 , 2 , - 65 , - 198 , - 64 , - 196 , - 3 , - 3 , 1248 , 1248 , 1248 , 9 . 4622565792 , 9 . 8001943142 , - 0 . 337937735 , 0 . 1689688675 , - 16 . 72791788 , - 16 . 55894901 <nl> + 050 , 3 , 5 , 13 , 237 , Georgia , Putnam County , 21218 , 21216 , 21242 , 21345 , 26 , 103 , 60 , 241 , 51 , 235 , 9 , 6 , 13 , 56 , 6 , 43 , 19 , 99 , - 2 , - 2 , 172 , 172 , 172 , 11 . 318007843 , 11 . 036231714 , 0 . 2817761289 , 2 . 6299105361 , 2 . 0193955902 , 4 . 6493061263 <nl> + 050 , 3 , 5 , 13 , 239 , Georgia , Quitman County , 2513 , 2513 , 2519 , 2464 , 6 , - 55 , 6 , 31 , 2 , 21 , 4 , 10 , 0 , 0 , 3 , - 66 , 3 , - 66 , - 1 , 1 , 0 , 0 , 0 , 12 . 442303833 , 8 . 4286574353 , 4 . 0136463978 , 0 , - 26 . 49006623 , - 26 . 49006623 <nl> + 050 , 3 , 5 , 13 , 241 , Georgia , Rabun County , 16276 , 16276 , 16275 , 16274 , - 1 , - 1 , 41 , 168 , 56 , 209 , - 15 , - 41 , 14 , 44 , 2 , - 3 , 16 , 41 , - 2 , - 1 , 390 , 390 , 390 , 10 . 322897785 , 12 . 842176411 , - 2 . 519278626 , 2 . 7036160865 , - 0 . 18433746 , 2 . 5192786261 <nl> + 050 , 3 , 5 , 13 , 243 , Georgia , Randolph County , 7719 , 7719 , 7693 , 7558 , - 26 , - 135 , 22 , 95 , 4 , 62 , 18 , 33 , 0 , 0 , - 43 , - 170 , - 43 , - 170 , - 1 , 2 , 308 , 308 , 308 , 12 . 458199462 , 8 . 1306143859 , 4 . 3275850764 , 0 , - 22 . 29362009 , - 22 . 29362009 <nl> + 050 , 3 , 5 , 13 , 245 , Georgia , Richmond County , 200549 , 200549 , 200889 , 201217 , 340 , 328 , 725 , 3117 , 481 , 1840 , 244 , 1277 , 130 , 207 , - 32 , - 1164 , 98 , - 957 , - 2 , 8 , 10508 , 10508 , 10511 , 15 . 503374732 , 9 . 1518156904 , 6 . 3515590416 , 1 . 0295792652 , - 5 . 789518187 , - 4 . 759938922 <nl> + 050 , 3 , 5 , 13 , 247 , Georgia , Rockdale County , 85215 , 85215 , 85419 , 85765 , 204 , 346 , 261 , 1082 , 139 , 592 , 122 , 490 , 67 , 255 , 16 , - 400 , 83 , - 145 , - 1 , 1 , 864 , 864 , 864 , 12 . 641368352 , 6 . 9165342555 , 5 . 7248340966 , 2 . 9792503972 , - 4 . 673333956 , - 1 . 694083559 <nl> + 050 , 3 , 5 , 13 , 249 , Georgia , Schley County , 5010 , 5010 , 5014 , 5020 , 4 , 6 , 14 , 51 , 3 , 34 , 11 , 17 , 0 , 1 , - 8 , - 11 , - 8 , - 10 , 1 , - 1 , 0 , 0 , 0 , 10 . 165437512 , 6 . 7769583416 , 3 . 3884791708 , 0 . 1993223042 , - 2 . 192545346 , - 1 . 993223042 <nl> + 050 , 3 , 5 , 13 , 251 , Georgia , Screven County , 14593 , 14593 , 14506 , 14367 , - 87 , - 139 , 51 , 206 , 19 , 177 , 32 , 29 , 0 , 0 , - 120 , - 170 , - 120 , - 170 , 1 , 2 , 420 , 420 , 420 , 14 . 269386624 , 12 . 260589478 , 2 . 0087971461 , 0 , - 11 . 77570741 , - 11 . 77570741 <nl> + 050 , 3 , 5 , 13 , 253 , Georgia , Seminole County , 8729 , 8729 , 8741 , 8791 , 12 , 50 , 28 , 102 , 9 , 103 , 19 , - 1 , 5 , 11 , - 11 , 40 , - 6 , 51 , - 1 , 0 , 100 , 100 , 100 , 11 . 635865845 , 11 . 749942961 , - 0 . 114077116 , 1 . 2548482774 , 4 . 5630846452 , 5 . 8179329227 <nl> + 050 , 3 , 5 , 13 , 255 , Georgia , Spalding County , 64073 , 64073 , 64063 , 64033 , - 10 , - 30 , 221 , 890 , 163 , 669 , 58 , 221 , 12 , 43 , - 80 , - 294 , - 68 , - 251 , 0 , 0 , 1226 , 1226 , 1226 , 13 . 895828129 , 10 . 445291032 , 3 . 4505370972 , 0 . 6713714714 , - 4 . 59030727 , - 3 . 918935798 <nl> + 050 , 3 , 5 , 13 , 257 , Georgia , Stephens County , 26175 , 26175 , 26165 , 25960 , - 10 , - 205 , 72 , 312 , 99 , 337 , - 27 , - 25 , 7 , 35 , 12 , - 217 , 19 , - 182 , - 2 , 2 , 548 , 548 , 548 , 11 . 971223022 , 12 . 930455635 , - 0 . 959232614 , 1 . 3429256595 , - 8 . 326139089 , - 6 . 983213429 <nl> + 050 , 3 , 5 , 13 , 259 , Georgia , Stewart County , 6058 , 6058 , 6050 , 5910 , - 8 , - 140 , 12 , 61 , 6 , 69 , 6 , - 8 , 1 , 2 , - 15 , - 136 , - 14 , - 134 , 0 , 2 , 1675 , 1675 , 1675 , 10 . 200668896 , 11 . 538461538 , - 1 . 337792642 , 0 . 3344481605 , - 22 . 74247492 , - 22 . 40802676 <nl> + 050 , 3 , 5 , 13 , 261 , Georgia , Sumter County , 32819 , 32819 , 32891 , 32511 , 72 , - 380 , 114 , 393 , 70 , 318 , 44 , 75 , 8 , 28 , 21 , - 490 , 29 , - 462 , - 1 , 7 , 1907 , 1978 , 2048 , 12 . 017981101 , 9 . 7244732577 , 2 . 2935078438 , 0 . 8562429284 , - 14 . 98425125 , - 14 . 12800832 <nl> + 050 , 3 , 5 , 13 , 263 , Georgia , Talbot County , 6865 , 6865 , 6845 , 6751 , - 20 , - 94 , 15 , 67 , 8 , 77 , 7 , - 10 , 0 , 0 , - 26 , - 85 , - 26 , - 85 , - 1 , 1 , 17 , 17 , 17 , 9 . 8558399529 , 11 . 326860841 , - 1 . 471020888 , 0 , - 12 . 50367755 , - 12 . 50367755 <nl> + 050 , 3 , 5 , 13 , 265 , Georgia , Taliaferro County , 1717 , 1717 , 1699 , 1703 , - 18 , 4 , 2 , 13 , 2 , 20 , 0 , - 7 , 0 , 0 , - 18 , 11 , - 18 , 11 , 0 , 0 , 7 , 7 , 7 , 7 . 6425631981 , 11 . 757789536 , - 4 . 115226337 , 0 , 6 . 4667842446 , 6 . 4667842446 <nl> + 050 , 3 , 5 , 13 , 267 , Georgia , Tattnall County , 25520 , 25519 , 25599 , 25688 , 80 , 89 , 81 , 349 , 50 , 230 , 31 , 119 , 19 , 63 , 30 , - 92 , 49 , - 29 , 0 , - 1 , 4859 , 4859 , 4859 , 13 . 609686665 , 8 . 9691344785 , 4 . 6405521867 , 2 . 4567629224 , - 3 . 587653791 , - 1 . 130890869 <nl> + 050 , 3 , 5 , 13 , 269 , Georgia , Taylor County , 8906 , 8906 , 8805 , 8499 , - 101 , - 306 , 20 , 100 , 7 , 80 , 13 , 20 , 0 , 0 , - 116 , - 331 , - 116 , - 331 , 2 , 5 , 322 , 222 , 122 , 11 . 558021267 , 9 . 2464170134 , 2 . 3116042534 , 0 , - 38 . 25705039 , - 38 . 25705039 <nl> + 050 , 3 , 5 , 13 , 271 , Georgia , Telfair County , 16500 , 16500 , 16466 , 16057 , - 34 , - 409 , 37 , 161 , 16 , 156 , 21 , 5 , 4 , 23 , - 57 , - 438 , - 53 , - 415 , - 2 , 1 , 3127 , 3126 , 3127 , 9 . 9006856686 , 9 . 5932109584 , 0 . 3074747102 , 1 . 4143836669 , - 26 . 93478461 , - 25 . 52040095 <nl> + 050 , 3 , 5 , 13 , 273 , Georgia , Terrell County , 9315 , 9315 , 9384 , 9319 , 69 , - 65 , 34 , 140 , 8 , 96 , 26 , 44 , 1 , 8 , 42 , - 119 , 43 , - 111 , 0 , 2 , 270 , 322 , 374 , 14 . 97086029 , 10 . 26573277 , 4 . 7051275196 , 0 . 8554777308 , - 12 . 72523125 , - 11 . 86975352 <nl> + 050 , 3 , 5 , 13 , 275 , Georgia , Thomas County , 44720 , 44719 , 44759 , 44702 , 40 , - 57 , 144 , 613 , 124 , 479 , 20 , 134 , 10 , 33 , 12 , - 226 , 22 , - 193 , - 2 , 2 , 848 , 848 , 848 , 13 . 704295727 , 10 . 708576922 , 2 . 9957188048 , 0 . 737751646 , - 5 . 052480969 , - 4 . 314729323 <nl> + 050 , 3 , 5 , 13 , 277 , Georgia , Tift County , 40118 , 40122 , 40287 , 41461 , 165 , 1174 , 130 , 600 , 89 , 390 , 41 , 210 , 20 , 75 , 102 , 876 , 122 , 951 , 2 , 13 , 1568 , 1568 , 1568 , 14 . 679258208 , 9 . 5415178353 , 5 . 1377403729 , 1 . 834907276 , 21 . 431716984 , 23 . 26662426 <nl> + 050 , 3 , 5 , 13 , 279 , Georgia , Toombs County , 27223 , 27223 , 27303 , 27434 , 80 , 131 , 101 , 444 , 80 , 305 , 21 , 139 , 23 , 82 , 39 , - 90 , 62 , - 8 , - 3 , 0 , 387 , 387 , 387 , 16 . 223030126 , 11 . 144198623 , 5 . 0788315034 , 2 . 9961452034 , - 3 . 288452053 , - 0 . 292306849 <nl> + 050 , 3 , 5 , 13 , 281 , Georgia , Towns County , 10471 , 10471 , 10517 , 10611 , 46 , 94 , 18 , 82 , 29 , 152 , - 11 , - 70 , 0 , 4 , 58 , 163 , 58 , 167 , - 1 , - 3 , 698 , 698 , 698 , 7 . 7622112836 , 14 . 388489209 , - 6 . 626277925 , 0 . 3786444529 , 15 . 429761454 , 15 . 808405907 <nl> + 050 , 3 , 5 , 13 , 283 , Georgia , Treutlen County , 6885 , 6885 , 6877 , 6825 , - 8 , - 52 , 19 , 84 , 11 , 80 , 8 , 4 , 0 , 0 , - 17 , - 56 , - 17 , - 56 , 1 , 0 , 452 , 452 , 452 , 12 . 260983798 , 11 . 677127427 , 0 . 5838563713 , 0 , - 8 . 173989199 , - 8 . 173989199 <nl> + 050 , 3 , 5 , 13 , 285 , Georgia , Troup County , 67044 , 67044 , 67170 , 67764 , 126 , 594 , 222 , 912 , 164 , 670 , 58 , 242 , 10 , 47 , 58 , 305 , 68 , 352 , 0 , 0 , 2073 , 2073 , 2073 , 13 . 517719774 , 9 . 9307809744 , 3 . 5869387997 , 0 . 6966368743 , 4 . 5207286525 , 5 . 2173655269 <nl> + 050 , 3 , 5 , 13 , 287 , Georgia , Turner County , 8930 , 8930 , 8950 , 8875 , 20 , - 75 , 26 , 121 , 14 , 100 , 12 , 21 , 1 , 5 , 8 , - 102 , 9 , - 97 , - 1 , 1 , 371 , 371 , 371 , 13 . 576437588 , 11 . 220196353 , 2 . 3562412342 , 0 . 5610098177 , - 11 . 44460028 , - 10 . 88359046 <nl> + 050 , 3 , 5 , 13 , 289 , Georgia , Twiggs County , 9023 , 9023 , 8975 , 8779 , - 48 , - 196 , 24 , 86 , 9 , 137 , 15 , - 51 , 1 , 3 , - 65 , - 150 , - 64 , - 147 , 1 , 2 , 89 , 89 , 89 , 9 . 6879576433 , 15 . 433141827 , - 5 . 745184184 , 0 . 3379520108 , - 16 . 89760054 , - 16 . 55964853 <nl> + 050 , 3 , 5 , 13 , 291 , Georgia , Union County , 21356 , 21356 , 21338 , 21134 , - 18 , - 204 , 43 , 171 , 58 , 223 , - 15 , - 52 , 1 , 6 , - 1 , - 152 , 0 , - 146 , - 3 , - 6 , 379 , 379 , 379 , 8 . 0523639103 , 10 . 501035977 , - 2 . 448672066 , 0 . 2825390846 , - 7 . 157656809 , - 6 . 875117725 <nl> + 050 , 3 , 5 , 13 , 293 , Georgia , Upson County , 27153 , 27153 , 27093 , 26977 , - 60 , - 116 , 84 , 341 , 85 , 373 , - 1 , - 32 , 12 , 34 , - 71 , - 118 , - 59 , - 84 , 0 , 0 , 474 , 474 , 474 , 12 . 613279083 , 13 . 796929906 , - 1 . 183650823 , 1 . 2576289994 , - 4 . 36471241 , - 3 . 10708341 <nl> + 050 , 3 , 5 , 13 , 295 , Georgia , Walker County , 68756 , 68756 , 68883 , 68848 , 127 , - 35 , 174 , 712 , 179 , 716 , - 5 , - 4 , 3 , 14 , 130 , - 41 , 133 , - 27 , - 1 , - 4 , 1323 , 1417 , 1510 , 10 . 338994126 , 10 . 397078363 , - 0 . 058084237 , 0 . 2032948283 , - 0 . 595363426 , - 0 . 392068597 <nl> + 050 , 3 , 5 , 13 , 297 , Georgia , Walton County , 83768 , 83768 , 84041 , 84580 , 273 , 539 , 268 , 1023 , 173 , 729 , 95 , 294 , 10 , 53 , 171 , 201 , 181 , 254 , - 3 , - 9 , 682 , 682 , 682 , 12 . 133719999 , 8 . 6466098529 , 3 . 4871101464 , 0 . 6286286999 , 2 . 3840446919 , 3 . 0126733918 <nl> + 050 , 3 , 5 , 13 , 299 , Georgia , Ware County , 36312 , 36313 , 36365 , 36474 , 52 , 109 , 122 , 501 , 106 , 425 , 16 , 76 , 8 , 21 , 32 , 15 , 40 , 36 , - 4 , - 3 , 2409 , 2409 , 2409 , 13 . 756366782 , 11 . 669572619 , 2 . 0867941625 , 0 . 5766141765 , 0 . 4118672689 , 0 . 9884814454 <nl> + 050 , 3 , 5 , 13 , 301 , Georgia , Warren County , 5834 , 5834 , 5806 , 5721 , - 28 , - 85 , 12 , 61 , 9 , 68 , 3 , - 7 , 0 , 0 , - 31 , - 79 , - 31 , - 79 , 0 , 1 , 89 , 89 , 89 , 10 . 583846621 , 11 . 798386397 , - 1 . 214539776 , 0 , - 13 . 7069489 , - 13 . 7069489 <nl> + 050 , 3 , 5 , 13 , 303 , Georgia , Washington County , 21187 , 21187 , 21166 , 21111 , - 21 , - 55 , 55 , 260 , 28 , 228 , 27 , 32 , 0 , - 1 , - 48 , - 87 , - 48 , - 88 , 0 , 1 , 1896 , 1896 , 1896 , 12 . 29983206 , 10 . 786006576 , 1 . 5138254843 , - 0 . 047307046 , - 4 . 115713035 , - 4 . 163020082 <nl> + 050 , 3 , 5 , 13 , 305 , Georgia , Wayne County , 30099 , 30099 , 30132 , 30327 , 33 , 195 , 108 , 419 , 78 , 305 , 30 , 114 , 8 , 27 , - 4 , 55 , 4 , 82 , - 1 , - 1 , 2316 , 2316 , 2316 , 13 . 860632826 , 10 . 089482128 , 3 . 7711506972 , 0 . 8931672704 , 1 . 81941481 , 2 . 7125820804 <nl> + 050 , 3 , 5 , 13 , 307 , Georgia , Webster County , 2799 , 2799 , 2792 , 2791 , - 7 , - 1 , 4 , 15 , 0 , 9 , 4 , 6 , 0 , 0 , - 11 , - 8 , - 11 , - 8 , 0 , 1 , 0 , 0 , 0 , 5 . 3734551316 , 3 . 224073079 , 2 . 1493820527 , 0 , - 2 . 865842737 , - 2 . 865842737 <nl> + 050 , 3 , 5 , 13 , 309 , Georgia , Wheeler County , 7421 , 7421 , 7743 , 7939 , 322 , 196 , 18 , 69 , 6 , 70 , 12 , - 1 , 0 , 0 , 300 , 194 , 300 , 194 , 10 , 3 , 1959 , 2304 , 2649 , 8 . 7998979722 , 8 . 9274327254 , - 0 . 127534753 , 0 , 24 . 741742125 , 24 . 741742125 <nl> + 050 , 3 , 5 , 13 , 311 , Georgia , White County , 27144 , 27144 , 27177 , 27273 , 33 , 96 , 64 , 254 , 71 , 254 , - 7 , 0 , 0 , - 3 , 42 , 102 , 42 , 99 , - 2 , - 3 , 365 , 365 , 365 , 9 . 3296602388 , 9 . 3296602388 , 0 , - 0 . 110192837 , 3 . 7465564738 , 3 . 6363636364 <nl> + 050 , 3 , 5 , 13 , 313 , Georgia , Whitfield County , 102599 , 102599 , 102779 , 103184 , 180 , 405 , 370 , 1542 , 182 , 706 , 188 , 836 , 53 , 180 , - 61 , - 614 , - 8 , - 434 , 0 , 3 , 1002 , 1002 , 1002 , 14 . 973563213 , 6 . 8556002777 , 8 . 1179629351 , 1 . 7478867564 , - 5 . 962235936 , - 4 . 214349179 <nl> + 050 , 3 , 5 , 13 , 315 , Georgia , Wilcox County , 9255 , 9255 , 9291 , 9298 , 36 , 7 , 24 , 101 , 12 , 110 , 12 , - 9 , 0 , 1 , 24 , 16 , 24 , 17 , 0 , - 1 , 2019 , 2019 , 2019 , 10 . 866641562 , 11 . 834956157 , - 0 . 968314595 , 0 . 1075905105 , 1 . 7214481683 , 1 . 8290386788 <nl> + 050 , 3 , 5 , 13 , 317 , Georgia , Wilkes County , 10593 , 10595 , 10490 , 10211 , - 105 , - 279 , 28 , 114 , 16 , 147 , 12 , - 33 , 0 , 0 , - 118 , - 249 , - 118 , - 249 , 1 , 3 , 344 , 245 , 146 , 11 . 013960678 , 14 . 202212454 , - 3 . 188251775 , 0 , - 24 . 05680885 , - 24 . 05680885 <nl> + 050 , 3 , 5 , 13 , 319 , Georgia , Wilkinson County , 9563 , 9563 , 9548 , 9444 , - 15 , - 104 , 30 , 149 , 5 , 121 , 25 , 28 , 1 , 5 , - 41 , - 138 , - 40 , - 133 , 0 , 1 , 110 , 110 , 110 , 15 . 690817186 , 12 . 742207245 , 2 . 948609941 , 0 . 5265374895 , - 14 . 53243471 , - 14 . 00589722 <nl> + 050 , 3 , 5 , 13 , 321 , Georgia , Worth County , 21679 , 21679 , 21640 , 21921 , - 39 , 281 , 56 , 230 , 44 , 194 , 12 , 36 , 0 , 2 , - 52 , 243 , - 52 , 245 , 1 , 0 , 149 , 149 , 149 , 10 . 559904502 , 8 . 9070498841 , 1 . 6528546177 , 0 . 0918252565 , 11 . 156768669 , 11 . 248593926 <nl> + 040 , 4 , 9 , 15 , 000 , Hawaii , Hawaii , 1360301 , 1360301 , 1363359 , 1374810 , 3058 , 11451 , 4600 , 18501 , 2241 , 9730 , 2359 , 8771 , 1602 , 4214 , - 861 , - 1459 , 741 , 2755 , - 42 , - 75 , 42880 , 42897 , 42898 , 13 . 513409874 , 7 . 10693898 , 6 . 4064708935 , 3 . 0779692561 , - 1 . 065675639 , 2 . 0122936166 <nl> + 050 , 4 , 9 , 15 , 001 , Hawaii , Hawaii County , 185079 , 185079 , 185381 , 186738 , 302 , 1357 , 590 , 2376 , 300 , 1397 , 290 , 979 , 164 , 549 , - 147 , - 159 , 17 , 390 , - 5 , - 12 , 3644 , 3644 , 3644 , 12 . 770108487 , 7 . 5083508233 , 5 . 2617576635 , 2 . 9506690064 , - 0 . 854565341 , 2 . 0961036658 <nl> + 050 , 4 , 9 , 15 , 003 , Hawaii , Honolulu County , 953207 , 953207 , 955636 , 963607 , 2429 , 7971 , 3320 , 13246 , 1616 , 6870 , 1704 , 6376 , 1244 , 3035 , - 484 , - 1386 , 760 , 1649 , - 35 , - 54 , 35300 , 35318 , 35319 , 13 . 803358928 , 7 . 1590726135 , 6 . 644286315 , 3 . 1627052958 , - 1 . 444319453 , 1 . 7183858428 <nl> + 050 , 4 , 9 , 15 , 005 , Hawaii , Kalawao County , 90 , 90 , 90 , 90 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 3 , 3 , 3 , 0 , 0 , 0 , 0 , 0 , 0 <nl> + 050 , 4 , 9 , 15 , 007 , Hawaii , Kauai County , 67091 , 67091 , 67217 , 67701 , 126 , 484 , 200 , 842 , 107 , 474 , 93 , 368 , 49 , 197 , - 13 , - 78 , 36 , 119 , - 3 , - 3 , 1161 , 1161 , 1161 , 12 . 481655524 , 7 . 0264901644 , 5 . 4551653597 , 2 . 9202923257 , - 1 . 156257875 , 1 . 7640344506 <nl> + 050 , 4 , 9 , 15 , 009 , Hawaii , Maui County , 154834 , 154834 , 155035 , 156674 , 201 , 1639 , 490 , 2037 , 218 , 989 , 272 , 1048 , 145 , 433 , - 217 , 164 , - 72 , 597 , 1 , - 6 , 2772 , 2771 , 2771 , 13 . 069882487 , 6 . 34566214 , 6 . 7242203465 , 2 . 7782322615 , 1 . 0522634893 , 3 . 8304957508 <nl> + 040 , 4 , 8 , 16 , 000 , Idaho , Idaho , 1567582 , 1567582 , 1571102 , 1584985 , 3520 , 13883 , 5789 , 22954 , 2545 , 11275 , 3244 , 11679 , 611 , 2074 , - 318 , 62 , 293 , 2136 , - 17 , 68 , 28951 , 28951 , 28951 , 14 . 545860111 , 7 . 1449234448 , 7 . 4009366662 , 1 . 3142856962 , 0 . 0392891577 , 1 . 3535748539 <nl> + 050 , 4 , 8 , 16 , 001 , Idaho , Ada County , 392365 , 392365 , 393466 , 400842 , 1101 , 7376 , 1259 , 5024 , 573 , 2303 , 686 , 2721 , 216 , 636 , 211 , 3997 , 427 , 4633 , - 12 , 22 , 9714 , 9714 , 9714 , 12 . 650004784 , 5 . 7987581643 , 6 . 8512466197 , 1 . 6013939177 , 10 . 064106115 , 11 . 665500033 <nl> + 050 , 4 , 8 , 16 , 003 , Idaho , Adams County , 3976 , 3976 , 3954 , 3977 , - 22 , 23 , 6 , 29 , 2 , 25 , 4 , 4 , 0 , 0 , - 26 , 18 , - 26 , 18 , 0 , 1 , 21 , 21 , 21 , 7 . 3130752742 , 6 . 3043752364 , 1 . 0087000378 , 0 , 4 . 5391501702 , 4 . 5391501702 <nl> + 050 , 4 , 8 , 16 , 005 , Idaho , Bannock County , 82839 , 82839 , 83020 , 83691 , 181 , 671 , 371 , 1414 , 170 , 604 , 201 , 810 , 26 , 94 , - 46 , - 232 , - 20 , - 138 , 0 , - 1 , 1792 , 1792 , 1792 , 16 . 963487712 , 7 . 2460725447 , 9 . 7174151676 , 1 . 1277000318 , - 2 . 783259653 , - 1 . 655559621 <nl> + 050 , 4 , 8 , 16 , 007 , Idaho , Bear Lake County , 5986 , 5986 , 5975 , 6001 , - 11 , 26 , 21 , 88 , 8 , 74 , 13 , 14 , 0 , 3 , - 24 , 10 , - 24 , 13 , 0 , - 1 , 31 , 31 , 31 , 14 . 696058784 , 12 . 358049432 , 2 . 338009352 , 0 . 501002004 , 1 . 67000668 , 2 . 171008684 <nl> + 050 , 4 , 8 , 16 , 009 , Idaho , Benewah County , 9285 , 9285 , 9287 , 9209 , 2 , - 78 , 29 , 108 , 10 , 119 , 19 , - 11 , 0 , 0 , - 16 , - 68 , - 16 , - 68 , - 1 , 1 , 70 , 70 , 70 , 11 . 678200692 , 12 . 867647059 , - 1 . 189446367 , 0 , - 7 . 352941176 , - 7 . 352941176 <nl> + 050 , 4 , 8 , 16 , 011 , Idaho , Bingham County , 45607 , 45607 , 45742 , 45952 , 135 , 210 , 199 , 785 , 80 , 315 , 119 , 470 , 8 , 33 , 8 , - 294 , 16 , - 261 , 0 , 1 , 323 , 323 , 323 , 17 . 122167208 , 6 . 8706785613 , 10 . 251488647 , 0 . 7197853731 , - 6 . 412633324 , - 5 . 692847951 <nl> + 050 , 4 , 8 , 16 , 013 , Idaho , Blaine County , 21376 , 21378 , 21334 , 21199 , - 44 , - 135 , 62 , 252 , 6 , 89 , 56 , 163 , 18 , 89 , - 120 , - 393 , - 102 , - 304 , 2 , 6 , 258 , 258 , 258 , 11 . 849622646 , 4 . 1849857758 , 7 . 6646368702 , 4 . 1849857758 , - 18 . 47976865 , - 14 . 29478287 <nl> + 050 , 4 , 8 , 16 , 015 , Idaho , Boise County , 7028 , 7028 , 7017 , 7025 , - 11 , 8 , 8 , 49 , 3 , 53 , 5 , - 4 , 3 , 12 , - 19 , 1 , - 16 , 13 , 0 , - 1 , 34 , 34 , 34 , 6 . 9790628116 , 7 . 5487822248 , - 0 . 569719413 , 1 . 7091582396 , 0 . 1424298533 , 1 . 8515880929 <nl> + 050 , 4 , 8 , 16 , 017 , Idaho , Bonner County , 40877 , 40877 , 40924 , 40808 , 47 , - 116 , 94 , 385 , 98 , 358 , - 4 , 27 , 3 , 16 , 49 , - 158 , 52 , - 142 , - 1 , - 1 , 353 , 353 , 353 , 9 . 4210346009 , 8 . 7603386678 , 0 . 660695933 , 0 . 3915235159 , - 3 . 866294719 , - 3 . 474771203 <nl> + 050 , 4 , 8 , 16 , 019 , Idaho , Bonneville County , 104234 , 104234 , 104622 , 105772 , 388 , 1150 , 505 , 1907 , 170 , 720 , 335 , 1187 , 29 , 100 , 27 , - 135 , 56 , - 35 , - 3 , - 2 , 1172 , 1172 , 1172 , 18 . 127893381 , 6 . 8443016436 , 11 . 283591737 , 0 . 9505974505 , - 1 . 283306558 , - 0 . 332709108 <nl> + 050 , 4 , 8 , 16 , 021 , Idaho , Boundary County , 10972 , 10972 , 11015 , 10804 , 43 , - 211 , 27 , 119 , 29 , 132 , - 2 , - 13 , 0 , 1 , 45 , - 201 , 45 , - 200 , 0 , 2 , 73 , 73 , 73 , 10 . 907924286 , 12 . 099546267 , - 1 . 191621981 , 0 . 0916632293 , - 18 . 42430909 , - 18 . 33264586 <nl> + 050 , 4 , 8 , 16 , 023 , Idaho , Butte County , 2891 , 2891 , 2899 , 2822 , 8 , - 77 , 6 , 32 , 2 , 15 , 4 , 17 , 0 , 0 , 5 , - 94 , 5 , - 94 , - 1 , 0 , 18 , 18 , 18 , 11 . 186855445 , 5 . 2438384898 , 5 . 9430169551 , 0 , - 32 . 86138787 , - 32 . 86138787 <nl> + 050 , 4 , 8 , 16 , 025 , Idaho , Camas County , 1117 , 1117 , 1108 , 1124 , - 9 , 16 , 4 , 15 , 0 , 2 , 4 , 13 , 0 , 1 , - 12 , 1 , - 12 , 2 , - 1 , 1 , 0 , 0 , 0 , 13 . 440860215 , 1 . 7921146953 , 11 . 64874552 , 0 . 8960573477 , 0 . 8960573477 , 1 . 7921146953 <nl> + 050 , 4 , 8 , 16 , 027 , Idaho , Canyon County , 188923 , 188923 , 189410 , 191694 , 487 , 2284 , 786 , 3104 , 283 , 1218 , 503 , 1886 , 90 , 331 , - 104 , 80 , - 14 , 411 , - 2 , - 13 , 3335 , 3335 , 3335 , 16 . 289516772 , 6 . 3919560015 , 9 . 8975607708 , 1 . 7370586507 , 0 . 4198329065 , 2 . 1568915572 <nl> + 050 , 4 , 8 , 16 , 029 , Idaho , Caribou County , 6963 , 6963 , 6982 , 6850 , 19 , - 132 , 29 , 96 , 5 , 73 , 24 , 23 , 3 , 16 , - 7 , - 174 , - 4 , - 158 , - 1 , 3 , 79 , 79 , 79 , 13 . 880855986 , 10 . 555234239 , 3 . 3256217467 , 2 . 3134759977 , - 25 . 15905147 , - 22 . 84557548 <nl> + 050 , 4 , 8 , 16 , 031 , Idaho , Cassia County , 22952 , 22952 , 23091 , 23186 , 139 , 95 , 100 , 416 , 34 , 192 , 66 , 224 , 11 , 30 , 61 , - 161 , 72 , - 131 , 1 , 2 , 286 , 286 , 286 , 17 . 978693519 , 8 . 2978585474 , 9 . 680834972 , 1 . 296540398 , - 6 . 958100136 , - 5 . 661559738 <nl> + 050 , 4 , 8 , 16 , 033 , Idaho , Clark County , 982 , 982 , 980 , 949 , - 2 , - 31 , 2 , 11 , 0 , 1 , 2 , 10 , 0 , 2 , - 4 , - 43 , - 4 , - 41 , 0 , 0 , 2 , 2 , 2 , 11 . 404872991 , 1 . 0368066356 , 10 . 368066356 , 2 . 0736132711 , - 44 . 58268533 , - 42 . 50907206 <nl> + 050 , 4 , 8 , 16 , 035 , Idaho , Clearwater County , 8761 , 8761 , 8748 , 8702 , - 13 , - 46 , 14 , 63 , 16 , 101 , - 2 , - 38 , 1 , 7 , - 11 , - 15 , - 10 , - 8 , - 1 , 0 , 607 , 607 , 607 , 7 . 2206303725 , 11 . 575931232 , - 4 . 35530086 , 0 . 8022922636 , - 1 . 719197708 , - 0 . 916905444 <nl> + 050 , 4 , 8 , 16 , 037 , Idaho , Custer County , 4368 , 4368 , 4370 , 4333 , 2 , - 37 , 7 , 32 , 3 , 32 , 4 , 0 , 0 , 1 , - 2 , - 39 , - 2 , - 38 , 0 , 1 , 21 , 21 , 21 , 7 . 3537860508 , 7 . 3537860508 , 0 , 0 . 2298058141 , - 8 . 962426749 , - 8 . 732620935 <nl> + 050 , 4 , 8 , 16 , 039 , Idaho , Elmore County , 27038 , 27038 , 27080 , 26346 , 42 , - 734 , 120 , 517 , 28 , 176 , 92 , 341 , 35 , 37 , - 87 , - 1131 , - 52 , - 1094 , 2 , 19 , 632 , 632 , 632 , 19 . 353872646 , 6 . 5885523902 , 12 . 765320256 , 1 . 3850934002 , - 42 . 3389361 , - 40 . 9538427 <nl> + 050 , 4 , 8 , 16 , 041 , Idaho , Franklin County , 12786 , 12786 , 12798 , 12850 , 12 , 52 , 55 , 211 , 8 , 89 , 47 , 122 , 3 , 21 , - 38 , - 91 , - 35 , - 70 , 0 , 0 , 102 , 102 , 102 , 16 . 453524641 , 6 . 9401122895 , 9 . 5134123518 , 1 . 6375545852 , - 7 . 096069869 , - 5 . 458515284 <nl> + 050 , 4 , 8 , 16 , 043 , Idaho , Fremont County , 13242 , 13242 , 13248 , 13128 , 6 , - 120 , 54 , 205 , 6 , 97 , 48 , 108 , 2 , 10 , - 43 , - 241 , - 41 , - 231 , - 1 , 3 , 460 , 460 , 460 , 15 . 544434334 , 7 . 3551713679 , 8 . 1892629663 , 0 . 7582650895 , - 18 . 27418866 , - 17 . 51592357 <nl> + 050 , 4 , 8 , 16 , 045 , Idaho , Gem County , 16719 , 16719 , 16669 , 16665 , - 50 , - 4 , 41 , 177 , 52 , 185 , - 11 , - 8 , 3 , 14 , - 42 , - 9 , - 39 , 5 , 0 , - 1 , 151 , 151 , 151 , 10 . 619787604 , 11 . 099778004 , - 0 . 4799904 , 0 . 8399832003 , - 0 . 5399892 , 0 . 2999940001 <nl> + 050 , 4 , 8 , 16 , 047 , Idaho , Gooding County , 15464 , 15464 , 15500 , 15475 , 36 , - 25 , 62 , 252 , 17 , 111 , 45 , 141 , 5 , 17 , - 13 , - 184 , - 8 , - 167 , - 1 , 1 , 52 , 52 , 52 , 16 . 271186441 , 7 . 1670702179 , 9 . 1041162228 , 1 . 0976594027 , - 11 . 88054883 , - 10 . 78288943 <nl> + 050 , 4 , 8 , 16 , 049 , Idaho , Idaho County , 16267 , 16267 , 16291 , 16446 , 24 , 155 , 39 , 163 , 45 , 163 , - 6 , 0 , 0 , 0 , 30 , 154 , 30 , 154 , 0 , 1 , 524 , 524 , 524 , 9 . 9581513272 , 9 . 9581513272 , 0 , 0 , 9 . 4083147509 , 9 . 4083147509 <nl> + 050 , 4 , 8 , 16 , 051 , Idaho , Jefferson County , 26140 , 26140 , 26215 , 26301 , 75 , 86 , 125 , 521 , 23 , 134 , 102 , 387 , 0 , 14 , - 27 , - 317 , - 27 , - 303 , 0 , 2 , 111 , 111 , 111 , 19 . 841572092 , 5 . 1032066418 , 14 . 738365451 , 0 . 5331708432 , - 12 . 07251123 , - 11 . 53934039 <nl> + 050 , 4 , 8 , 16 , 053 , Idaho , Jerome County , 22374 , 22374 , 22461 , 22682 , 87 , 221 , 103 , 430 , 38 , 153 , 65 , 277 , 27 , 96 , - 4 , - 154 , 23 , - 58 , - 1 , 2 , 106 , 106 , 106 , 19 . 050572625 , 6 . 7784595618 , 12 . 272113063 , 4 . 2531510976 , - 6 . 822763219 , - 2 . 569612121 <nl> + 050 , 4 , 8 , 16 , 055 , Idaho , Kootenai County , 138494 , 138494 , 138913 , 141132 , 419 , 2219 , 435 , 1715 , 298 , 1148 , 137 , 567 , 13 , 44 , 269 , 1594 , 282 , 1638 , 0 , 14 , 1488 , 1488 , 1488 , 12 . 248031566 , 8 . 1986823546 , 4 . 0493492117 , 0 . 3142352122 , 11 . 383884733 , 11 . 698119945 <nl> + 050 , 4 , 8 , 16 , 057 , Idaho , Latah County , 37244 , 37244 , 37314 , 37704 , 70 , 390 , 116 , 454 , 48 , 192 , 68 , 262 , 14 , 50 , - 11 , 79 , 3 , 129 , - 1 , - 1 , 3086 , 3086 , 3086 , 12 . 103761764 , 5 . 1187714948 , 6 . 984990269 , 1 . 3330134101 , 2 . 106161188 , 3 . 4391745981 <nl> + 050 , 4 , 8 , 16 , 059 , Idaho , Lemhi County , 7936 , 7936 , 7957 , 7967 , 21 , 10 , 21 , 73 , 11 , 90 , 10 , - 17 , 1 , 2 , 10 , 25 , 11 , 27 , 0 , 0 , 80 , 80 , 80 , 9 . 1685506154 , 11 . 30369254 , - 2 . 135141924 , 0 . 2511931675 , 3 . 1399145943 , 3 . 3911077619 <nl> + 050 , 4 , 8 , 16 , 061 , Idaho , Lewis County , 3821 , 3821 , 3823 , 3822 , 2 , - 1 , 8 , 37 , 3 , 44 , 5 , - 7 , 0 , 2 , - 4 , 5 , - 4 , 7 , 1 , - 1 , 74 , 74 , 74 , 9 . 679529104 , 11 . 510791367 , - 1 . 831262263 , 0 . 5232177894 , 1 . 3080444735 , 1 . 8312622629 <nl> + 050 , 4 , 8 , 16 , 063 , Idaho , Lincoln County , 5208 , 5206 , 5214 , 5186 , 8 , - 28 , 22 , 80 , 4 , 23 , 18 , 57 , 0 , 0 , - 11 , - 85 , - 11 , - 85 , 1 , 0 , 37 , 37 , 37 , 15 . 384615385 , 4 . 4230769231 , 10 . 961538462 , 0 , - 16 . 34615385 , - 16 . 34615385 <nl> + 050 , 4 , 8 , 16 , 065 , Idaho , Madison County , 37536 , 37536 , 37602 , 37864 , 66 , 262 , 262 , 1029 , 18 , 127 , 244 , 902 , 8 , 31 , - 191 , - 682 , - 183 , - 651 , 5 , 11 , 1036 , 1036 , 1036 , 27 . 270558927 , 3 . 3657541144 , 23 . 904804813 , 0 . 8215620279 , - 18 . 07436461 , - 17 . 25280259 <nl> + 050 , 4 , 8 , 16 , 067 , Idaho , Minidoka County , 20069 , 20069 , 20082 , 20155 , 13 , 73 , 80 , 312 , 32 , 179 , 48 , 133 , 1 , 9 , - 35 , - 69 , - 34 , - 60 , - 1 , 0 , 82 , 82 , 82 , 15 . 508114422 , 8 . 8972835947 , 6 . 6108308273 , 0 . 4473494545 , - 3 . 429679151 , - 2 . 982329697 <nl> + 050 , 4 , 8 , 16 , 069 , Idaho , Nez Perce County , 39265 , 39265 , 39316 , 39543 , 51 , 227 , 115 , 445 , 113 , 448 , 2 , - 3 , 6 , 25 , 45 , 206 , 51 , 231 , - 2 , - 1 , 966 , 966 , 966 , 11 . 285966091 , 11 . 362051256 , - 0 . 076085165 , 0 . 6340430388 , 5 . 2245146401 , 5 . 8585576789 <nl> + 050 , 4 , 8 , 16 , 071 , Idaho , Oneida County , 4286 , 4286 , 4294 , 4215 , 8 , - 79 , 15 , 59 , 4 , 38 , 11 , 21 , 0 , 0 , - 2 , - 100 , - 2 , - 100 , - 1 , 0 , 50 , 50 , 50 , 13 . 867669526 , 8 . 931719356 , 4 . 9359501704 , 0 , - 23 . 50452462 , - 23 . 50452462 <nl> + 050 , 4 , 8 , 16 , 073 , Idaho , Owyhee County , 11526 , 11526 , 11491 , 11438 , - 35 , - 53 , 34 , 146 , 12 , 93 , 22 , 53 , 8 , 33 , - 65 , - 141 , - 57 , - 108 , 0 , 2 , 160 , 160 , 160 , 12 . 734964455 , 8 . 1119979066 , 4 . 6229665489 , 2 . 8784508701 , - 12 . 29883554 , - 9 . 420384666 <nl> + 050 , 4 , 8 , 16 , 075 , Idaho , Payette County , 22623 , 22623 , 22635 , 22624 , 12 , - 11 , 79 , 318 , 43 , 195 , 36 , 123 , 14 , 41 , - 38 , - 176 , - 24 , - 135 , 0 , 1 , 94 , 94 , 94 , 14 . 052453656 , 8 . 6170706379 , 5 . 4353830177 , 1 . 8117943392 , - 7 . 777458627 , - 5 . 965664288 <nl> + 050 , 4 , 8 , 16 , 077 , Idaho , Power County , 7817 , 7817 , 7867 , 7766 , 50 , - 101 , 34 , 136 , 8 , 63 , 26 , 73 , 2 , 10 , 20 , - 186 , 22 , - 176 , 2 , 2 , 47 , 47 , 47 , 17 . 399091665 , 8 . 0598733448 , 9 . 3392183202 , 1 . 2793449754 , - 23 . 79581654 , - 22 . 51647157 <nl> + 050 , 4 , 8 , 16 , 079 , Idaho , Shoshone County , 12765 , 12765 , 12732 , 12672 , - 33 , - 60 , 33 , 130 , 39 , 178 , - 6 , - 48 , 1 , 4 , - 27 , - 13 , - 26 , - 9 , - 1 , - 3 , 160 , 160 , 160 , 10 . 234608723 , 14 . 013541175 , - 3 . 778932452 , 0 . 3149110376 , - 1 . 023460872 , - 0 . 708549835 <nl> + 050 , 4 , 8 , 16 , 081 , Idaho , Teton County , 10170 , 10170 , 10165 , 10166 , - 5 , 1 , 40 , 184 , 2 , 35 , 38 , 149 , 2 , 6 , - 46 , - 155 , - 44 , - 149 , 1 , 1 , 7 , 7 , 7 , 18 . 100437755 , 3 . 4430180513 , 14 . 657419704 , 0 . 5902316659 , - 15 . 24765137 , - 14 . 6574197 <nl> + 050 , 4 , 8 , 16 , 083 , Idaho , Twin Falls County , 77230 , 77230 , 77490 , 78005 , 260 , 515 , 318 , 1226 , 183 , 739 , 135 , 487 , 54 , 210 , 71 , - 177 , 125 , 33 , 0 , - 5 , 1072 , 1072 , 1072 , 15 . 768995788 , 9 . 5051287823 , 6 . 2638670054 , 2 . 7010514808 , - 2 . 276600534 , 0 . 424450947 <nl> + 050 , 4 , 8 , 16 , 085 , Idaho , Valley County , 9862 , 9862 , 9784 , 9638 , - 78 , - 146 , 20 , 94 , 7 , 63 , 13 , 31 , 2 , 10 , - 94 , - 188 , - 92 , - 178 , 1 , 1 , 66 , 66 , 66 , 9 . 6797446195 , 6 . 4874884152 , 3 . 1922562043 , 1 . 0297600659 , - 19 . 35948924 , - 18 . 32972917 <nl> + 050 , 4 , 8 , 16 , 087 , Idaho , Washington County , 10198 , 10198 , 10217 , 10255 , 19 , 38 , 29 , 111 , 11 , 86 , 18 , 25 , 2 , 16 , 0 , - 2 , 2 , 14 , - 1 , - 1 , 119 , 119 , 119 , 10 . 844079719 , 8 . 4017194216 , 2 . 442360297 , 1 . 5631105901 , - 0 . 195388824 , 1 . 3677217663 <nl> + 040 , 2 , 3 , 17 , 000 , Illinois , Illinois , 12830632 , 12830632 , 12841980 , 12869257 , 11348 , 27277 , 42060 , 167000 , 24484 , 100651 , 17576 , 66349 , 6822 , 27233 , - 13006 , - 66452 , - 6184 , - 39219 , - 44 , 147 , 301773 , 301673 , 301712 , 12 . 990429049 , 7 . 8293393663 , 5 . 1610896823 , 2 . 1183733789 , - 5 . 169101743 , - 3 . 050728364 <nl> + 050 , 2 , 3 , 17 , 001 , Illinois , Adams County , 67103 , 67103 , 67141 , 67159 , 38 , 18 , 194 , 783 , 187 , 784 , 7 , - 1 , 3 , 24 , 31 , 1 , 34 , 25 , - 3 , - 6 , 2287 , 2287 , 2287 , 11 . 660461653 , 11 . 675353686 , - 0 . 014892033 , 0 . 3574087863 , 0 . 0148920328 , 0 . 3723008191 <nl> + 050 , 2 , 3 , 17 , 003 , Illinois , Alexander County , 8238 , 8238 , 8228 , 8036 , - 10 , - 192 , 26 , 110 , 9 , 108 , 17 , 2 , 1 , 4 , - 28 , - 200 , - 27 , - 196 , 0 , 2 , 543 , 543 , 543 , 13 . 526807673 , 13 . 280865716 , 0 . 2459419577 , 0 . 4918839154 , - 24 . 59419577 , - 24 . 10231185 <nl> + 050 , 2 , 3 , 17 , 005 , Illinois , Bond County , 17768 , 17768 , 17777 , 17727 , 9 , - 50 , 49 , 189 , 42 , 174 , 7 , 15 , 2 , 10 , 1 , - 73 , 3 , - 63 , - 1 , - 2 , 2060 , 2060 , 2060 , 10 . 646687697 , 9 . 8017124831 , 0 . 8449752141 , 0 . 5633168094 , - 4 . 112212708 , - 3 . 548895899 <nl> + 050 , 2 , 3 , 17 , 007 , Illinois , Boone County , 54165 , 54167 , 54176 , 54367 , 9 , 191 , 153 , 599 , 78 , 307 , 75 , 292 , 18 , 70 , - 86 , - 170 , - 68 , - 100 , 2 , - 1 , 310 , 310 , 310 , 11 . 037100504 , 5 . 6567443317 , 5 . 3803561722 , 1 . 2898114111 , - 3 . 132399141 , - 1 . 84258773 <nl> + 050 , 2 , 3 , 17 , 009 , Illinois , Brown County , 6937 , 6937 , 6915 , 6878 , - 22 , - 37 , 13 , 60 , 9 , 66 , 4 , - 6 , 0 , 0 , - 26 , - 30 , - 26 , - 30 , 0 , - 1 , 2110 , 2110 , 2110 , 8 . 7000652505 , 9 . 5700717755 , - 0 . 870006525 , 0 , - 4 . 350032625 , - 4 . 350032625 <nl> + 050 , 2 , 3 , 17 , 011 , Illinois , Bureau County , 34978 , 34978 , 34921 , 34606 , - 57 , - 315 , 92 , 365 , 99 , 380 , - 7 , - 15 , 5 , 19 , - 54 , - 321 , - 49 , - 302 , - 1 , 2 , 456 , 456 , 456 , 10 . 499518173 , 10 . 931005221 , - 0 . 431487048 , 0 . 546550261 , - 9 . 233822831 , - 8 . 68727257 <nl> + 050 , 2 , 3 , 17 , 013 , Illinois , Calhoun County , 5089 , 5089 , 5093 , 5048 , 4 , - 45 , 14 , 54 , 7 , 61 , 7 , - 7 , 0 , 3 , - 2 , - 42 , - 2 , - 39 , - 1 , 1 , 90 , 90 , 90 , 10 . 649837294 , 12 . 030371758 , - 1 . 380534464 , 0 . 5916576275 , - 8 . 283206784 , - 7 . 691549157 <nl> + 050 , 2 , 3 , 17 , 015 , Illinois , Carroll County , 15387 , 15388 , 15358 , 15163 , - 30 , - 195 , 29 , 119 , 58 , 191 , - 29 , - 72 , 0 , 2 , 0 , - 124 , 0 , - 122 , - 1 , - 1 , 223 , 223 , 223 , 7 . 797909636 , 12 . 515972609 , - 4 . 718062973 , 0 . 1310573048 , - 8 . 125552898 , - 7 . 994495593 <nl> + 050 , 2 , 3 , 17 , 017 , Illinois , Cass County , 13642 , 13642 , 13633 , 13579 , - 9 , - 54 , 38 , 160 , 28 , 152 , 10 , 8 , 3 , 10 , - 21 , - 72 , - 18 , - 62 , - 1 , 0 , 184 , 184 , 184 , 11 . 75951786 , 11 . 171541967 , 0 . 587975893 , 0 . 7349698662 , - 5 . 291783037 , - 4 . 556813171 <nl> + 050 , 2 , 3 , 17 , 019 , Illinois , Champaign County , 201081 , 201081 , 201370 , 201685 , 289 , 315 , 617 , 2373 , 270 , 1182 , 347 , 1191 , 207 , 766 , - 266 , - 1654 , - 59 , - 888 , 1 , 12 , 16129 , 16129 , 16129 , 11 . 775067919 , 5 . 8652045006 , 5 . 9098634181 , 3 . 8009700909 , - 8 . 207316619 , - 4 . 406346528 <nl> + 050 , 2 , 3 , 17 , 021 , Illinois , Christian County , 34800 , 34800 , 34804 , 34865 , 4 , 61 , 96 , 395 , 111 , 397 , - 15 , - 2 , 9 , 40 , 13 , 26 , 22 , 66 , - 3 , - 3 , 1610 , 1610 , 1610 , 11 . 339333132 , 11 . 396747477 , - 0 . 057414345 , 1 . 1482868995 , 0 . 7463864847 , 1 . 8946733841 <nl> + 050 , 2 , 3 , 17 , 023 , Illinois , Clark County , 16335 , 16335 , 16300 , 16161 , - 35 , - 139 , 41 , 155 , 52 , 226 , - 11 , - 71 , 1 , 5 , - 25 , - 73 , - 24 , - 68 , 0 , 0 , 221 , 221 , 221 , 9 . 5499214442 , 13 . 92440159 , - 4 . 374480145 , 0 . 3080619821 , - 4 . 497704938 , - 4 . 189642956 <nl> + 050 , 2 , 3 , 17 , 025 , Illinois , Clay County , 13815 , 13815 , 13809 , 13728 , - 6 , - 81 , 41 , 175 , 57 , 205 , - 16 , - 30 , 1 , 5 , 10 , - 55 , 11 , - 50 , - 1 , - 1 , 305 , 305 , 305 , 12 . 710171769 , 14 . 889058358 , - 2 . 178886589 , 0 . 3631477648 , - 3 . 994625413 , - 3 . 631477648 <nl> + 050 , 2 , 3 , 17 , 027 , Illinois , Clinton County , 37762 , 37762 , 37838 , 37956 , 76 , 118 , 99 , 407 , 89 , 348 , 10 , 59 , 4 , 15 , 62 , 45 , 66 , 60 , 0 , - 1 , 2072 , 2072 , 2072 , 10 . 739636383 , 9 . 182784917 , 1 . 5568514658 , 0 . 3958096947 , 1 . 1874290841 , 1 . 5832387788 <nl> + 050 , 2 , 3 , 17 , 029 , Illinois , Coles County , 53873 , 53873 , 53945 , 53916 , 72 , - 29 , 130 , 531 , 108 , 463 , 22 , 68 , 9 , 32 , 43 , - 128 , 52 , - 96 , - 2 , - 1 , 4489 , 4489 , 4489 , 9 . 8460055071 , 8 . 5851234459 , 1 . 2608820612 , 0 . 5933562641 , - 2 . 373425056 , - 1 . 780068792 <nl> + 050 , 2 , 3 , 17 , 031 , Illinois , Cook County , 5194675 , 5194675 , 5199971 , 5217080 , 5296 , 17109 , 18693 , 73996 , 9600 , 39408 , 9093 , 34588 , 4083 , 17208 , - 7914 , - 34793 , - 3831 , - 17585 , 34 , 106 , 90282 , 90179 , 90190 , 14 . 206707829 , 7 . 5660568428 , 6 . 6406509865 , 3 . 3038141025 , - 6 . 680009534 , - 3 . 376195432 <nl> + 050 , 2 , 3 , 17 , 033 , Illinois , Crawford County , 19817 , 19817 , 19832 , 19857 , 15 , 25 , 49 , 198 , 62 , 253 , - 13 , - 55 , 7 , 35 , 23 , 46 , 30 , 81 , - 2 , - 1 , 1495 , 1495 , 1495 , 9 . 9775756507 , 12 . 749124443 , - 2 . 771548792 , 1 . 7637128675 , 2 . 3180226259 , 4 . 0817354935 <nl> + 050 , 2 , 3 , 17 , 035 , Illinois , Cumberland County , 11048 , 11048 , 11046 , 11096 , - 2 , 50 , 31 , 126 , 21 , 109 , 10 , 17 , 0 , 3 , - 12 , 30 , - 12 , 33 , 0 , 0 , 117 , 117 , 117 , 11 . 381085719 , 9 . 8455424081 , 1 . 5355433114 , 0 . 2709782314 , 2 . 7097823142 , 2 . 9807605456 <nl> + 050 , 2 , 3 , 17 , 037 , Illinois , DeKalb County , 105160 , 105160 , 105186 , 104743 , 26 , - 443 , 331 , 1303 , 175 , 670 , 156 , 633 , 63 , 231 , - 199 , - 1323 , - 136 , - 1092 , 6 , 16 , 6673 , 6673 , 6673 , 12 . 413720829 , 6 . 3831104802 , 6 . 0306103492 , 2 . 2007440611 , - 12 . 60426144 , - 10 . 40351738 <nl> + 050 , 2 , 3 , 17 , 039 , Illinois , De Witt County , 16561 , 16561 , 16583 , 16578 , 22 , - 5 , 45 , 182 , 52 , 228 , - 7 , - 46 , 1 , 2 , 30 , 41 , 31 , 43 , - 2 , - 2 , 249 , 249 , 249 , 10 . 976749796 , 13 . 751093152 , - 2 . 774343355 , 0 . 1206236241 , 2 . 4727842948 , 2 . 5934079189 <nl> + 050 , 2 , 3 , 17 , 041 , Illinois , Douglas County , 19980 , 19980 , 19976 , 19836 , - 4 , - 140 , 63 , 264 , 36 , 182 , 27 , 82 , 2 , 10 , - 32 , - 233 , - 30 , - 223 , - 1 , 1 , 168 , 168 , 168 , 13 . 262332965 , 9 . 1429719683 , 4 . 1193609967 , 0 . 5023610972 , - 11 . 70501356 , - 11 . 20265247 <nl> + 050 , 2 , 3 , 17 , 043 , Illinois , DuPage County , 916924 , 916924 , 917942 , 923222 , 1018 , 5280 , 2690 , 10583 , 1381 , 5670 , 1309 , 4913 , 440 , 2425 , - 723 , - 2017 , - 283 , 408 , - 8 , - 41 , 12140 , 12140 , 12140 , 11 . 495988407 , 6 . 1591471482 , 5 . 3368412591 , 2 . 6342031454 , - 2 . 191005255 , 0 . 44319789 <nl> + 050 , 2 , 3 , 17 , 045 , Illinois , Edgar County , 18576 , 18576 , 18533 , 18393 , - 43 , - 140 , 50 , 193 , 57 , 239 , - 7 , - 46 , 1 , 0 , - 36 , - 93 , - 35 , - 93 , - 1 , - 1 , 283 , 283 , 283 , 10 . 453339111 , 12 . 944808536 , - 2 . 491469425 , 0 , - 5 . 037101229 , - 5 . 037101229 <nl> + 050 , 2 , 3 , 17 , 047 , Illinois , Edwards County , 6721 , 6721 , 6732 , 6618 , 11 , - 114 , 16 , 65 , 7 , 76 , 9 , - 11 , 0 , 0 , 2 , - 102 , 2 , - 102 , 0 , - 1 , 52 , 52 , 52 , 9 . 7378277154 , 11 . 38576779 , - 1 . 647940075 , 0 , - 15 . 28089888 , - 15 . 28089888 <nl> + 050 , 2 , 3 , 17 , 049 , Illinois , Effingham County , 34242 , 34242 , 34226 , 34280 , - 16 , 54 , 117 , 464 , 83 , 326 , 34 , 138 , 2 , 12 , - 52 , - 94 , - 50 , - 82 , 0 , - 2 , 440 , 440 , 440 , 13 . 546258722 , 9 . 517414533 , 4 . 0288441888 , 0 . 3503342773 , - 2 . 744285172 , - 2 . 393950895 <nl> + 050 , 2 , 3 , 17 , 051 , Illinois , Fayette County , 22140 , 22140 , 22136 , 22133 , - 4 , - 3 , 54 , 225 , 47 , 212 , 7 , 13 , 1 , 5 , - 10 , - 20 , - 9 , - 15 , - 2 , - 1 , 1784 , 1784 , 1784 , 10 . 165126838 , 9 . 5778083987 , 0 . 5873184395 , 0 . 2258917075 , - 0 . 90356683 , - 0 . 677675123 <nl> + 050 , 2 , 3 , 17 , 053 , Illinois , Ford County , 14081 , 14081 , 14074 , 13976 , - 7 , - 98 , 39 , 149 , 49 , 201 , - 10 , - 52 , 1 , 4 , 3 , - 49 , 4 , - 45 , - 1 , - 1 , 410 , 410 , 410 , 10 . 623885918 , 14 . 331550802 , - 3 . 707664884 , 0 . 2852049911 , - 3 . 493761141 , - 3 . 20855615 <nl> + 050 , 2 , 3 , 17 , 055 , Illinois , Franklin County , 39561 , 39556 , 39570 , 39627 , 14 , 57 , 114 , 462 , 138 , 527 , - 24 , - 65 , 0 , 2 , 39 , 120 , 39 , 122 , - 1 , 0 , 517 , 517 , 517 , 11 . 667108603 , 13 . 308584921 , - 1 . 641476319 , 0 . 0505069636 , 3 . 0304178189 , 3 . 0809247825 <nl> + 050 , 2 , 3 , 17 , 057 , Illinois , Fulton County , 37069 , 37069 , 37061 , 36962 , - 8 , - 99 , 91 , 370 , 115 , 471 , - 24 , - 101 , 1 , 8 , 17 , - 3 , 18 , 5 , - 2 , - 3 , 2683 , 2683 , 2683 , 9 . 9968928576 , 12 . 725774421 , - 2 . 728881564 , 0 . 2161490348 , - 0 . 081055888 , 0 . 1350931467 <nl> + 050 , 2 , 3 , 17 , 059 , Illinois , Gallatin County , 5589 , 5589 , 5588 , 5528 , - 1 , - 60 , 14 , 57 , 5 , 86 , 9 , - 29 , 1 , 3 , - 10 , - 35 , - 9 , - 32 , - 1 , 1 , 25 , 25 , 25 , 10 . 255487585 , 15 . 473191796 , - 5 . 21770421 , 0 . 5397625045 , - 6 . 297229219 , - 5 . 757466715 <nl> + 050 , 2 , 3 , 17 , 061 , Illinois , Greene County , 13886 , 13886 , 13875 , 13798 , - 11 , - 77 , 33 , 138 , 39 , 173 , - 6 , - 35 , 0 , 3 , - 5 , - 45 , - 5 , - 42 , 0 , 0 , 284 , 284 , 284 , 9 . 9736204965 , 12 . 503161927 , - 2 . 52954143 , 0 . 2168178369 , - 3 . 252267553 , - 3 . 035449716 <nl> + 050 , 2 , 3 , 17 , 063 , Illinois , Grundy County , 50063 , 50063 , 50127 , 50130 , 64 , 3 , 172 , 690 , 97 , 375 , 75 , 315 , 10 , 32 , - 21 , - 346 , - 11 , - 314 , 0 , 2 , 254 , 254 , 254 , 13 . 764624914 , 7 . 4807744098 , 6 . 2838505042 , 0 . 6383594163 , - 6 . 902261189 , - 6 . 263901772 <nl> + 050 , 2 , 3 , 17 , 065 , Illinois , Hamilton County , 8457 , 8457 , 8461 , 8425 , 4 , - 36 , 22 , 88 , 22 , 128 , 0 , - 40 , 1 , 2 , 4 , 2 , 5 , 4 , - 1 , 0 , 117 , 117 , 117 , 10 . 422835485 , 15 . 160487978 , - 4 . 737652493 , 0 . 2368826247 , 0 . 2368826247 , 0 . 4737652493 <nl> + 050 , 2 , 3 , 17 , 067 , Illinois , Hancock County , 19104 , 19104 , 19114 , 19031 , 10 , - 83 , 48 , 189 , 51 , 212 , - 3 , - 23 , 0 , 2 , 15 , - 62 , 15 , - 60 , - 2 , 0 , 223 , 223 , 223 , 9 . 9095556429 , 11 . 115480404 , - 1 . 205924761 , 0 . 1048630227 , - 3 . 250753703 , - 3 . 14589068 <nl> + 050 , 2 , 3 , 17 , 069 , Illinois , Hardin County , 4320 , 4320 , 4311 , 4281 , - 9 , - 30 , 8 , 39 , 10 , 68 , - 2 , - 29 , 0 , 0 , - 7 , - 1 , - 7 , - 1 , 0 , 0 , 17 , 17 , 17 , 9 . 0782122905 , 15 . 82867784 , - 6 . 750465549 , 0 , - 0 . 232774674 , - 0 . 232774674 <nl> + 050 , 2 , 3 , 17 , 071 , Illinois , Henderson County , 7331 , 7331 , 7331 , 7196 , 0 , - 135 , 12 , 51 , 14 , 86 , - 2 , - 35 , 0 , 0 , 3 , - 101 , 3 , - 101 , - 1 , 1 , 51 , 51 , 51 , 7 . 0214084119 , 11 . 840022028 , - 4 . 818613616 , 0 , - 13 . 90514215 , - 13 . 90514215 <nl> + 050 , 2 , 3 , 17 , 073 , Illinois , Henry County , 50486 , 50486 , 50443 , 50328 , - 43 , - 115 , 131 , 522 , 130 , 533 , 1 , - 11 , 1 , 12 , - 43 , - 114 , - 42 , - 102 , - 2 , - 2 , 724 , 724 , 724 , 10 . 360123448 , 10 . 578440226 , - 0 . 218316778 , 0 . 2381637574 , - 2 . 262555696 , - 2 . 024391938 <nl> + 050 , 2 , 3 , 17 , 075 , Illinois , Iroquois County , 29718 , 29718 , 29657 , 29475 , - 61 , - 182 , 76 , 301 , 98 , 351 , - 22 , - 50 , 2 , 15 , - 40 , - 146 , - 38 , - 131 , - 1 , - 1 , 468 , 468 , 468 , 10 . 180612866 , 11 . 871744571 , - 1 . 691131705 , 0 . 5073395116 , - 4 . 93810458 , - 4 . 430765068 <nl> + 050 , 2 , 3 , 17 , 077 , Illinois , Jackson County , 60218 , 60218 , 60355 , 60365 , 137 , 10 , 171 , 684 , 102 , 408 , 69 , 276 , 44 , 162 , 24 , - 430 , 68 , - 268 , 0 , 2 , 4087 , 4087 , 4087 , 11 . 332007952 , 6 . 75944334 , 4 . 5725646123 , 2 . 6838966203 , - 7 . 123923128 , - 4 . 440026508 <nl> + 050 , 2 , 3 , 17 , 079 , Illinois , Jasper County , 9698 , 9698 , 9697 , 9717 , - 1 , 20 , 23 , 90 , 14 , 103 , 9 , - 13 , 0 , 2 , - 10 , 31 , - 10 , 33 , 0 , 0 , 54 , 54 , 54 , 9 . 2716596271 , 10 . 610899351 , - 1 . 339239724 , 0 . 2060368806 , 3 . 1935716493 , 3 . 3996085299 <nl> + 050 , 2 , 3 , 17 , 081 , Illinois , Jefferson County , 38827 , 38827 , 38787 , 38713 , - 40 , - 74 , 115 , 476 , 123 , 440 , - 8 , 36 , 4 , 12 , - 35 , - 118 , - 31 , - 106 , - 1 , - 4 , 2203 , 2203 , 2203 , 12 . 283870968 , 11 . 35483871 , 0 . 9290322581 , 0 . 3096774194 , - 3 . 04516129 , - 2 . 735483871 <nl> + 050 , 2 , 3 , 17 , 083 , Illinois , Jersey County , 22985 , 22985 , 22963 , 22916 , - 22 , - 47 , 55 , 217 , 55 , 194 , 0 , 23 , 1 , 10 , - 22 , - 80 , - 21 , - 70 , - 1 , 0 , 848 , 848 , 848 , 9 . 4596656422 , 8 . 45702827 , 1 . 0026373722 , 0 . 4359292923 , - 3 . 487434338 , - 3 . 051505046 <nl> + 050 , 2 , 3 , 17 , 085 , Illinois , Jo Daviess County , 22678 , 22677 , 22677 , 22712 , 0 , 35 , 51 , 200 , 56 , 243 , - 5 , - 43 , 5 , 19 , 1 , 61 , 6 , 80 , - 1 , - 2 , 167 , 167 , 167 , 8 . 8127079248 , 10 . 707440129 , - 1 . 894732204 , 0 . 8372072529 , 2 . 6878759171 , 3 . 5250831699 <nl> + 050 , 2 , 3 , 17 , 087 , Illinois , Johnson County , 12582 , 12582 , 12611 , 12654 , 29 , 43 , 24 , 102 , 20 , 126 , 4 , - 24 , 1 , 4 , 23 , 64 , 24 , 68 , 1 , - 1 , 1553 , 1553 , 1553 , 8 . 0744112408 , 9 . 9742727093 , - 1 . 899861468 , 0 . 3166435781 , 5 . 0662972492 , 5 . 3829408272 <nl> + 050 , 2 , 3 , 17 , 089 , Illinois , Kane County , 515269 , 515269 , 516378 , 520271 , 1109 , 3893 , 1905 , 7556 , 644 , 2838 , 1261 , 4718 , 332 , 1135 , - 494 , - 1968 , - 162 , - 833 , 10 , 8 , 6787 , 6787 , 6787 , 14 . 577740392 , 5 . 4753344671 , 9 . 1024059252 , 2 . 1897479282 , - 3 . 796849271 , - 1 . 607101343 <nl> + 050 , 2 , 3 , 17 , 091 , Illinois , Kankakee County , 113449 , 113449 , 113511 , 113698 , 62 , 187 , 374 , 1493 , 260 , 1088 , 114 , 405 , 22 , 89 , - 72 , - 305 , - 50 , - 216 , - 2 , - 2 , 5107 , 5107 , 5107 , 13 . 142085041 , 9 . 5770854148 , 3 . 5649996259 , 0 . 7834196709 , - 2 . 684752805 , - 1 . 901333134 <nl> + 050 , 2 , 3 , 17 , 093 , Illinois , Kendall County , 114736 , 114736 , 115239 , 116631 , 503 , 1392 , 438 , 1713 , 103 , 439 , 335 , 1274 , 23 , 86 , 140 , 36 , 163 , 122 , 5 , - 4 , 208 , 208 , 208 , 14 . 775520766 , 3 . 7866045629 , 10 . 988916203 , 0 . 7417949713 , 0 . 3105188252 , 1 . 0523137965 <nl> + 050 , 2 , 3 , 17 , 095 , Illinois , Knox County , 52919 , 52919 , 52943 , 52917 , 24 , - 26 , 135 , 533 , 157 , 600 , - 22 , - 67 , 5 , 26 , 44 , 20 , 49 , 46 , - 3 , - 5 , 3955 , 3955 , 3955 , 10 . 069903646 , 11 . 335726431 , - 1 . 265822785 , 0 . 491214812 , 0 . 3778575477 , 0 . 8690723597 <nl> + 050 , 2 , 3 , 17 , 097 , Illinois , Lake County , 703462 , 703462 , 704492 , 706222 , 1030 , 1730 , 2215 , 8782 , 982 , 3991 , 1233 , 4791 , 529 , 1610 , - 747 , - 4713 , - 218 , - 3103 , 15 , 42 , 20709 , 20712 , 20740 , 12 . 450432901 , 5 . 6581277282 , 6 . 7923051731 , 2 . 2825321079 , - 6 . 681722872 , - 4 . 399190764 <nl> + 050 , 2 , 3 , 17 , 099 , Illinois , LaSalle County , 113924 , 113924 , 113843 , 113518 , - 81 , - 325 , 312 , 1251 , 298 , 1208 , 14 , 43 , 22 , 85 , - 114 , - 453 , - 92 , - 368 , - 3 , 0 , 2950 , 2950 , 2950 , 11 . 004525842 , 10 . 626272756 , 0 . 3782530865 , 0 . 7477095896 , - 3 . 984852283 , - 3 . 237142694 <nl> + 050 , 2 , 3 , 17 , 101 , Illinois , Lawrence County , 16833 , 16833 , 16833 , 16745 , 0 , - 88 , 41 , 171 , 65 , 222 , - 24 , - 51 , 0 , 0 , 25 , - 36 , 25 , - 36 , - 1 , - 1 , 2471 , 2471 , 2471 , 10 . 185240336 , 13 . 222943594 , - 3 . 037703258 , 0 , - 2 . 144261123 , - 2 . 144261123 <nl> + 050 , 2 , 3 , 17 , 103 , Illinois , Lee County , 36031 , 36031 , 35943 , 35467 , - 88 , - 476 , 92 , 363 , 96 , 385 , - 4 , - 22 , 0 , 5 , - 82 , - 462 , - 82 , - 457 , - 2 , 3 , 2872 , 2872 , 2872 , 10 . 166643327 , 10 . 782803529 , - 0 . 616160202 , 0 . 1400364095 , - 12 . 93936423 , - 12 . 79932783 <nl> + 050 , 2 , 3 , 17 , 105 , Illinois , Livingston County , 38950 , 38950 , 38882 , 38885 , - 68 , 3 , 117 , 485 , 102 , 361 , 15 , 124 , 0 , 3 , - 84 , - 122 , - 84 , - 119 , 1 , - 2 , 3390 , 3390 , 3390 , 12 . 473156995 , 9 . 2841436599 , 3 . 1890133347 , 0 . 0771535484 , - 3 . 137577636 , - 3 . 060424087 <nl> + 050 , 2 , 3 , 17 , 107 , Illinois , Logan County , 30305 , 30305 , 30272 , 30140 , - 33 , - 132 , 74 , 301 , 81 , 314 , - 7 , - 13 , 1 , 5 , - 27 , - 122 , - 26 , - 117 , 0 , - 2 , 4361 , 4361 , 4361 , 9 . 9649076342 , 10 . 395285705 , - 0 . 430378071 , 0 . 1655300271 , - 4 . 038932662 , - 3 . 873402635 <nl> + 050 , 2 , 3 , 17 , 109 , Illinois , McDonough County , 32612 , 32612 , 32614 , 32582 , 2 , - 32 , 73 , 288 , 77 , 298 , - 4 , - 10 , 11 , 56 , - 3 , - 78 , 8 , - 22 , - 2 , 0 , 4036 , 4036 , 4036 , 8 . 8348978465 , 9 . 1416651328 , - 0 . 306767286 , 1 . 7178968035 , - 2 . 392784833 , - 0 . 67488803 <nl> + 050 , 2 , 3 , 17 , 111 , Illinois , McHenry County , 308760 , 308760 , 309229 , 308944 , 469 , - 285 , 921 , 3607 , 424 , 1722 , 497 , 1885 , 141 , 313 , - 170 , - 2506 , - 29 , - 2193 , 1 , 23 , 1647 , 1647 , 1647 , 11 . 66987235 , 5 . 5712559429 , 6 . 0986164067 , 1 . 0126615041 , - 8 . 107762714 , - 7 . 09510121 <nl> + 050 , 2 , 3 , 17 , 113 , Illinois , McLean County , 169572 , 169572 , 169838 , 170556 , 266 , 718 , 541 , 2097 , 282 , 1058 , 259 , 1039 , 83 , 320 , - 76 , - 641 , 7 , - 321 , 0 , 0 , 10676 , 10676 , 10676 , 12 . 321016234 , 6 . 2163257872 , 6 . 104690447 , 1 . 8801741511 , - 3 . 766223846 , - 1 . 886049695 <nl> + 050 , 2 , 3 , 17 , 115 , Illinois , Macon County , 110768 , 110768 , 110757 , 110730 , - 11 , - 27 , 356 , 1425 , 266 , 1135 , 90 , 290 , 14 , 56 , - 112 , - 371 , - 98 , - 315 , - 3 , - 2 , 4059 , 4059 , 4059 , 12 . 867572363 , 10 . 248908514 , 2 . 6186638493 , 0 . 5056730192 , - 3 . 350083752 , - 2 . 844410733 <nl> + 050 , 2 , 3 , 17 , 117 , Illinois , Macoupin County , 47765 , 47765 , 47791 , 47687 , 26 , - 104 , 119 , 481 , 154 , 583 , - 35 , - 102 , 3 , 14 , 59 , - 13 , 62 , 1 , - 1 , - 3 , 876 , 876 , 876 , 10 . 075619514 , 12 . 212237374 , - 2 . 13661786 , 0 . 2932612748 , - 0 . 272314041 , 0 . 0209472339 <nl> + 050 , 2 , 3 , 17 , 119 , Illinois , Madison County , 269282 , 269282 , 269314 , 268459 , 32 , - 855 , 805 , 3196 , 635 , 2616 , 170 , 580 , 43 , 30 , - 177 , - 1473 , - 134 , - 1443 , - 4 , 8 , 3754 , 3754 , 3754 , 11 . 886056012 , 9 . 7290120553 , 2 . 1570439572 , 0 . 1115712392 , - 5 . 478147843 , - 5 . 366576604 <nl> + 050 , 2 , 3 , 17 , 121 , Illinois , Marion County , 39437 , 39437 , 39439 , 39335 , 2 , - 104 , 125 , 495 , 122 , 426 , 3 , 69 , 1 , 7 , 1 , - 181 , 2 , - 174 , - 3 , 1 , 758 , 758 , 758 , 12 . 567598446 , 10 . 81575139 , 1 . 7518470561 , 0 . 1777236144 , - 4 . 595424886 , - 4 . 417701272 <nl> + 050 , 2 , 3 , 17 , 123 , Illinois , Marshall County , 12640 , 12640 , 12633 , 12533 , - 7 , - 100 , 33 , 135 , 32 , 160 , 1 , - 25 , 2 , 11 , - 9 , - 86 , - 7 , - 75 , - 1 , 0 , 255 , 255 , 255 , 10 . 728761027 , 12 . 715568624 , - 1 . 986807598 , 0 . 8741953429 , - 6 . 834618136 , - 5 . 960422793 <nl> + 050 , 2 , 3 , 17 , 125 , Illinois , Mason County , 14666 , 14666 , 14627 , 14485 , - 39 , - 142 , 31 , 131 , 45 , 190 , - 14 , - 59 , 0 , 5 , - 26 , - 88 , - 26 , - 83 , 1 , 0 , 206 , 206 , 206 , 8 . 9997251992 , 13 . 053036549 , - 4 . 053311349 , 0 . 3435009618 , - 6 . 045616928 , - 5 . 702115966 <nl> + 050 , 2 , 3 , 17 , 127 , Illinois , Massac County , 15429 , 15429 , 15438 , 15442 , 9 , 4 , 51 , 201 , 51 , 181 , 0 , 20 , 1 , 4 , 10 , - 19 , 11 , - 15 , - 2 , - 1 , 292 , 292 , 292 , 13 . 018134715 , 11 . 722797927 , 1 . 2953367876 , 0 . 2590673575 , - 1 . 230569948 , - 0 . 971502591 <nl> + 050 , 2 , 3 , 17 , 129 , Illinois , Menard County , 12705 , 12705 , 12708 , 12703 , 3 , - 5 , 30 , 121 , 30 , 136 , 0 , - 15 , 0 , 1 , 3 , 10 , 3 , 11 , 0 , - 1 , 154 , 154 , 154 , 9 . 523434733 , 10 . 704025816 , - 1 . 180591083 , 0 . 0787060722 , 0 . 7870607217 , 0 . 8657667939 <nl> + 050 , 2 , 3 , 17 , 131 , Illinois , Mercer County , 16434 , 16434 , 16435 , 16363 , 1 , - 72 , 39 , 164 , 42 , 179 , - 3 , - 15 , 1 , 5 , 5 , - 63 , 6 , - 58 , - 2 , 1 , 185 , 185 , 185 , 10 . 000609793 , 10 . 915299713 , - 0 . 91468992 , 0 . 30489664 , - 3 . 841697664 , - 3 . 536801024 <nl> + 050 , 2 , 3 , 17 , 133 , Illinois , Monroe County , 32957 , 32957 , 33009 , 33306 , 52 , 297 , 89 , 348 , 75 , 277 , 14 , 71 , 1 , 4 , 39 , 223 , 40 , 227 , - 2 , - 1 , 343 , 343 , 343 , 10 . 49536304 , 8 . 3540677072 , 2 . 1412953329 , 0 . 1206363568 , 6 . 7254768906 , 6 . 8461132474 <nl> + 050 , 2 , 3 , 17 , 135 , Illinois , Montgomery County , 30104 , 30104 , 30088 , 29848 , - 16 , - 240 , 74 , 298 , 90 , 380 , - 16 , - 82 , 0 , 1 , 2 , - 160 , 2 , - 159 , - 2 , 1 , 2419 , 2419 , 2419 , 9 . 9439402029 , 12 . 680192205 , - 2 . 736252002 , 0 . 0333689269 , - 5 . 339028297 , - 5 . 30565937 <nl> + 050 , 2 , 3 , 17 , 137 , Illinois , Morgan County , 35547 , 35547 , 35524 , 35543 , - 23 , 19 , 87 , 359 , 92 , 356 , - 5 , 3 , 0 , 1 , - 17 , 18 , - 17 , 19 , - 1 , - 3 , 3064 , 3064 , 3064 , 10 . 103142105 , 10 . 018714734 , 0 . 0844273714 , 0 . 0281424571 , 0 . 5065642281 , 0 . 5347066852 <nl> + 050 , 2 , 3 , 17 , 139 , Illinois , Moultrie County , 14846 , 14846 , 14846 , 14824 , 0 , - 22 , 37 , 158 , 38 , 162 , - 1 , - 4 , 0 , 0 , 2 , - 16 , 2 , - 16 , - 1 , - 2 , 395 , 395 , 395 , 10 . 650488709 , 10 . 920121335 , - 0 . 269632626 , 0 , - 1 . 078530502 , - 1 . 078530502 <nl> + 050 , 2 , 3 , 17 , 141 , Illinois , Ogle County , 53497 , 53497 , 53454 , 53115 , - 43 , - 339 , 130 , 546 , 115 , 456 , 15 , 90 , 1 , 6 , - 58 , - 439 , - 57 , - 433 , - 1 , 4 , 525 , 525 , 525 , 10 . 246882302 , 8 . 5578357684 , 1 . 6890465332 , 0 . 1126031022 , - 8 . 238793645 , - 8 . 126190543 <nl> + 050 , 2 , 3 , 17 , 143 , Illinois , Peoria County , 186494 , 186494 , 186284 , 186834 , - 210 , 550 , 685 , 2722 , 417 , 1696 , 268 , 1026 , 63 , 246 , - 547 , - 716 , - 484 , - 470 , 6 , - 6 , 4979 , 4979 , 4979 , 14 . 590558483 , 9 . 0909578203 , 5 . 4996006625 , 1 . 3186177027 , - 3 . 837927948 , - 2 . 519310245 <nl> + 050 , 2 , 3 , 17 , 145 , Illinois , Perry County , 22350 , 22350 , 22348 , 22264 , - 2 , - 84 , 51 , 208 , 60 , 232 , - 9 , - 24 , 1 , 4 , 7 , - 63 , 8 , - 59 , - 1 , - 1 , 2500 , 2500 , 2500 , 9 . 3248453331 , 10 . 400789025 , - 1 . 075943692 , 0 . 1793239487 , - 2 . 824352192 , - 2 . 645028244 <nl> + 050 , 2 , 3 , 17 , 147 , Illinois , Piatt County , 16729 , 16729 , 16722 , 16675 , - 7 , - 47 , 39 , 158 , 39 , 163 , 0 , - 5 , 0 , 5 , - 6 , - 47 , - 6 , - 42 , - 1 , 0 , 72 , 72 , 72 , 9 . 4619277181 , 9 . 7613558104 , - 0 . 299428092 , 0 . 2994280923 , - 2 . 814624068 , - 2 . 515195976 <nl> + 050 , 2 , 3 , 17 , 149 , Illinois , Pike County , 16430 , 16430 , 16421 , 16398 , - 9 , - 23 , 47 , 194 , 42 , 201 , 5 , - 7 , 0 , 0 , - 12 , - 15 , - 12 , - 15 , - 2 , - 1 , 627 , 627 , 627 , 11 . 82241994 , 12 . 249002102 , - 0 . 426582163 , 0 , - 0 . 914104635 , - 0 . 914104635 <nl> + 050 , 2 , 3 , 17 , 151 , Illinois , Pope County , 4470 , 4470 , 4455 , 4370 , - 15 , - 85 , 9 , 31 , 2 , 29 , 7 , 2 , 0 , - 1 , - 19 , - 84 , - 19 , - 85 , - 3 , - 2 , 389 , 389 , 389 , 7 . 0254957507 , 6 . 5722379603 , 0 . 4532577904 , - 0 . 226628895 , - 19 . 0368272 , - 19 . 26345609 <nl> + 050 , 2 , 3 , 17 , 153 , Illinois , Pulaski County , 6161 , 6161 , 6155 , 6046 , - 6 , - 109 , 16 , 60 , 5 , 62 , 11 , - 2 , 3 , 14 , - 19 , - 122 , - 16 , - 108 , - 1 , 1 , 21 , 21 , 21 , 9 . 835259405 , 10 . 163101385 , - 0 . 32784198 , 2 . 2948938612 , - 19 . 99836079 , - 17 . 70346693 <nl> + 050 , 2 , 3 , 17 , 155 , Illinois , Putnam County , 6006 , 6006 , 6005 , 5968 , - 1 , - 37 , 12 , 51 , 5 , 77 , 7 , - 26 , 0 , 0 , - 8 , - 10 , - 8 , - 10 , 0 , - 1 , 2 , 2 , 2 , 8 . 5191681283 , 12 . 862273449 , - 4 . 34310532 , 0 , - 1 . 670425123 , - 1 . 670425123 <nl> + 050 , 2 , 3 , 17 , 157 , Illinois , Randolph County , 33476 , 33476 , 33446 , 33361 , - 30 , - 85 , 88 , 361 , 98 , 388 , - 10 , - 27 , 0 , 0 , - 17 , - 58 , - 17 , - 58 , - 3 , 0 , 4298 , 4298 , 4298 , 10 . 807250737 , 11 . 615549269 , - 0 . 808298532 , 0 , - 1 . 736344994 , - 1 . 736344994 <nl> + 050 , 2 , 3 , 17 , 159 , Illinois , Richland County , 16233 , 16233 , 16228 , 16230 , - 5 , 2 , 45 , 188 , 57 , 189 , - 12 , - 1 , 2 , 9 , 7 , - 5 , 9 , 4 , - 2 , - 1 , 364 , 364 , 364 , 11 . 584201121 , 11 . 645819213 , - 0 . 061618091 , 0 . 5545628196 , - 0 . 308090455 , 0 . 2464723643 <nl> + 050 , 2 , 3 , 17 , 161 , Illinois , Rock Island County , 147546 , 147546 , 147596 , 147556 , 50 , - 40 , 476 , 1931 , 335 , 1408 , 141 , 523 , 61 , 207 , - 149 , - 773 , - 88 , - 566 , - 3 , 3 , 4313 , 4313 , 4313 , 13 . 084783434 , 9 . 5408467501 , 3 . 5439366835 , 1 . 4026671003 , - 5 . 237979075 , - 3 . 835311975 <nl> + 050 , 2 , 3 , 17 , 163 , Illinois , St . Clair County , 270056 , 270056 , 270399 , 270259 , 343 , - 140 , 910 , 3641 , 610 , 2476 , 300 , 1165 , 112 , 157 , - 63 , - 1471 , 49 , - 1314 , - 6 , 9 , 4451 , 4451 , 4451 , 13 . 468773236 , 9 . 1592097037 , 4 . 3095635318 , 0 . 5807737979 , - 5 . 441517558 , - 4 . 86074376 <nl> + 050 , 2 , 3 , 17 , 165 , Illinois , Saline County , 24913 , 24913 , 24935 , 24981 , 22 , 46 , 70 , 303 , 94 , 337 , - 24 , - 34 , 0 , 2 , 47 , 80 , 47 , 82 , - 1 , - 2 , 878 , 878 , 878 , 12 . 140395865 , 13 . 50268451 , - 1 . 362288645 , 0 . 0801346262 , 3 . 2053850469 , 3 . 2855196731 <nl> + 050 , 2 , 3 , 17 , 167 , Illinois , Sangamon County , 197465 , 197465 , 197822 , 198844 , 357 , 1022 , 608 , 2399 , 461 , 1931 , 147 , 468 , 29 , 76 , 183 , 485 , 212 , 561 , - 2 , - 7 , 3966 , 3966 , 3966 , 12 . 095818648 , 9 . 7361508171 , 2 . 3596678314 , 0 . 3831939213 , 2 . 4453822611 , 2 . 8285761825 <nl> + 050 , 2 , 3 , 17 , 169 , Illinois , Schuyler County , 7544 , 7544 , 7540 , 7479 , - 4 , - 61 , 16 , 71 , 10 , 86 , 6 , - 15 , 0 , 4 , - 9 , - 50 , - 9 , - 46 , - 1 , 0 , 463 , 463 , 463 , 9 . 4546907251 , 11 . 452160597 , - 1 . 997469871 , 0 . 5326586324 , - 6 . 658232905 , - 6 . 125574273 <nl> + 050 , 2 , 3 , 17 , 171 , Illinois , Scott County , 5355 , 5355 , 5351 , 5271 , - 4 , - 80 , 16 , 60 , 7 , 60 , 9 , 0 , 0 , 0 , - 12 , - 80 , - 12 , - 80 , - 1 , 0 , 43 , 43 , 43 , 11 . 297307475 , 11 . 297307475 , 0 , 0 , - 15 . 06307663 , - 15 . 06307663 <nl> + 050 , 2 , 3 , 17 , 173 , Illinois , Shelby County , 22363 , 22363 , 22339 , 22212 , - 24 , - 127 , 57 , 231 , 66 , 253 , - 9 , - 22 , 1 , 3 , - 15 , - 107 , - 14 , - 104 , - 1 , - 1 , 205 , 205 , 205 , 10 . 370137595 , 11 . 357769747 , - 0 . 987632152 , 0 . 1346771116 , - 4 . 803483648 , - 4 . 668806536 <nl> + 050 , 2 , 3 , 17 , 175 , Illinois , Stark County , 5994 , 5994 , 5937 , 5667 , - 57 , - 270 , 12 , 49 , 14 , 82 , - 2 , - 33 , 0 , 4 , - 52 , - 241 , - 52 , - 237 , - 3 , 0 , 92 , 92 , 92 , 8 . 4453636677 , 14 . 133057566 , - 5 . 687693899 , 0 . 6894174423 , - 41 . 5374009 , - 40 . 84798345 <nl> + 050 , 2 , 3 , 17 , 177 , Illinois , Stephenson County , 47711 , 47711 , 47697 , 47563 , - 14 , - 134 , 133 , 517 , 136 , 529 , - 3 , - 12 , 7 , 25 , - 14 , - 147 , - 7 , - 122 , - 4 , 0 , 835 , 835 , 835 , 10 . 854503464 , 11 . 106445518 , - 0 . 251942053 , 0 . 5248792778 , - 3 . 086290153 , - 2 . 561410875 <nl> + 050 , 2 , 3 , 17 , 179 , Illinois , Tazewell County , 135394 , 135394 , 135439 , 135661 , 45 , 222 , 384 , 1540 , 329 , 1345 , 55 , 195 , 3 , 23 , - 7 , 13 , - 4 , 36 , - 6 , - 9 , 2843 , 2843 , 2843 , 11 . 361121357 , 9 . 9225378089 , 1 . 4385835485 , 0 . 1696790852 , 0 . 0959055699 , 0 . 2655846551 <nl> + 050 , 2 , 3 , 17 , 181 , Illinois , Union County , 17808 , 17808 , 17768 , 17708 , - 40 , - 60 , 45 , 188 , 54 , 225 , - 9 , - 37 , 2 , 14 , - 33 , - 35 , - 31 , - 21 , 0 , - 2 , 566 , 566 , 566 , 10 . 598714624 , 12 . 684631864 , - 2 . 08591724 , 0 . 7892659826 , - 1 . 973164957 , - 1 . 183898974 <nl> + 050 , 2 , 3 , 17 , 183 , Illinois , Vermilion County , 81625 , 81625 , 81588 , 81509 , - 37 , - 79 , 265 , 1075 , 211 , 929 , 54 , 146 , 14 , 45 , - 102 , - 267 , - 88 , - 222 , - 3 , - 3 , 2903 , 2903 , 2903 , 13 . 182339344 , 11 . 391993722 , 1 . 7903456225 , 0 . 5518188563 , - 3 . 274125214 , - 2 . 722306358 <nl> + 050 , 2 , 3 , 17 , 185 , Illinois , Wabash County , 11947 , 11947 , 11935 , 11834 , - 12 , - 101 , 36 , 147 , 21 , 134 , 15 , 13 , 0 , 0 , - 26 , - 115 , - 26 , - 115 , - 1 , 1 , 88 , 88 , 88 , 12 . 369052127 , 11 . 275190374 , 1 . 0938617527 , 0 , - 9 . 676469351 , - 9 . 676469351 <nl> + 050 , 2 , 3 , 17 , 187 , Illinois , Warren County , 17707 , 17707 , 17699 , 17818 , - 8 , 119 , 47 , 194 , 50 , 190 , - 3 , 4 , 3 , 14 , - 7 , 101 , - 4 , 115 , - 1 , 0 , 1116 , 1116 , 1116 , 10 . 924346088 , 10 . 699101839 , 0 . 2252442492 , 0 . 7883548723 , 5 . 6874172931 , 6 . 4757721654 <nl> + 050 , 2 , 3 , 17 , 189 , Illinois , Washington County , 14716 , 14716 , 14698 , 14533 , - 18 , - 165 , 31 , 127 , 31 , 138 , 0 , - 11 , 0 , 1 , - 17 , - 156 , - 17 , - 155 , - 1 , 1 , 246 , 246 , 246 , 8 . 6894050836 , 9 . 4420307208 , - 0 . 752625637 , 0 . 0684205125 , - 10 . 67359995 , - 10 . 60517943 <nl> + 050 , 2 , 3 , 17 , 191 , Illinois , Wayne County , 16760 , 16760 , 16750 , 16651 , - 10 , - 99 , 46 , 198 , 54 , 214 , - 8 , - 16 , 0 , 0 , - 1 , - 83 , - 1 , - 83 , - 1 , 0 , 76 , 76 , 76 , 11 . 855932457 , 12 . 813987605 , - 0 . 958055148 , 0 , - 4 . 969911081 , - 4 . 969911081 <nl> + 050 , 2 , 3 , 17 , 193 , Illinois , White County , 14665 , 14665 , 14640 , 14663 , - 25 , 23 , 39 , 172 , 59 , 230 , - 20 , - 58 , 0 , 1 , - 3 , 82 , - 3 , 83 , - 2 , - 2 , 391 , 391 , 391 , 11 . 739412347 , 15 . 698051394 , - 3 . 958639047 , 0 . 0682523974 , 5 . 596696584 , 5 . 6649489813 <nl> + 050 , 2 , 3 , 17 , 195 , Illinois , Whiteside County , 58498 , 58498 , 58454 , 58388 , - 44 , - 66 , 164 , 657 , 149 , 617 , 15 , 40 , 2 , 22 , - 59 , - 126 , - 57 , - 104 , - 2 , - 2 , 1012 , 1012 , 1012 , 11 . 245956077 , 10 . 561270776 , 0 . 6846853015 , 0 . 3765769158 , - 2 . 1567587 , - 1 . 780181784 <nl> + 050 , 2 , 3 , 17 , 197 , Illinois , Will County , 677560 , 677560 , 678873 , 681545 , 1313 , 2672 , 2234 , 8859 , 936 , 3799 , 1298 , 5060 , 220 , 910 , - 205 , - 3318 , 15 , - 2408 , 0 , 20 , 8547 , 8547 , 8547 , 13 . 023938231 , 5 . 5850481249 , 7 . 4388901058 , 1 . 3378241099 , - 4 . 877912524 , - 3 . 540088414 <nl> + 050 , 2 , 3 , 17 , 199 , Illinois , Williamson County , 66357 , 66362 , 66397 , 66622 , 35 , 225 , 182 , 735 , 184 , 754 , - 2 , - 19 , 3 , 18 , 36 , 227 , 39 , 245 , - 2 , - 1 , 1870 , 1870 , 1870 , 11 . 051052857 , 11 . 336726332 , - 0 . 285673475 , 0 . 2706380292 , 3 . 4130462565 , 3 . 6836842857 <nl> + 050 , 2 , 3 , 17 , 201 , Illinois , Winnebago County , 295266 , 295264 , 295142 , 293993 , - 122 , - 1149 , 962 , 3842 , 631 , 2587 , 331 , 1255 , 119 , 299 , - 581 , - 2730 , - 462 , - 2431 , 9 , 27 , 4685 , 4685 , 4685 , 13 . 042850959 , 8 . 7823673691 , 4 . 2604835903 , 1 . 0150474849 , - 9 . 267824862 , - 8 . 252777377 <nl> + 050 , 2 , 3 , 17 , 203 , Illinois , Woodford County , 38664 , 38664 , 38664 , 38861 , 0 , 197 , 121 , 494 , 96 , 387 , 25 , 107 , 6 , 25 , - 30 , 67 , - 24 , 92 , - 1 , - 2 , 1021 , 1021 , 1021 , 12 . 74427604 , 9 . 983876169 , 2 . 760399871 , 0 . 6449532409 , 1 . 7284746856 , 2 . 3734279265 <nl> + 040 , 2 , 3 , 18 , 000 , Indiana , Indiana , 6483802 , 6483800 , 6490622 , 6516922 , 6822 , 26300 , 21286 , 84732 , 14122 , 56499 , 7164 , 28233 , 2011 , 7175 , - 2353 , - 9059 , - 342 , - 1884 , 0 , - 49 , 186923 , 186928 , 186927 , 13 . 028131982 , 8 . 6871126479 , 4 . 3410193346 , 1 . 1032059549 , - 1 . 392884006 , - 0 . 289678051 <nl> + 050 , 2 , 3 , 18 , 001 , Indiana , Adams County , 34387 , 34387 , 34419 , 34370 , 32 , - 49 , 161 , 640 , 79 , 271 , 82 , 369 , 0 , 1 , - 50 , - 424 , - 50 , - 423 , 0 , 5 , 421 , 421 , 421 , 18 . 607626219 , 7 . 8791667272 , 10 . 728459492 , 0 . 029074416 , - 12 . 32755237 , - 12 . 29847795 <nl> + 050 , 2 , 3 , 18 , 003 , Indiana , Allen County , 355329 , 355329 , 355786 , 358327 , 457 , 2541 , 1357 , 5354 , 702 , 2777 , 655 , 2577 , 121 , 288 , - 320 , - 306 , - 199 , - 18 , 1 , - 18 , 6107 , 6107 , 6107 , 14 . 994825749 , 7 . 7774805948 , 7 . 2173451541 , 0 . 8065950347 , - 0 . 857007224 , - 0 . 05041219 <nl> + 050 , 2 , 3 , 18 , 005 , Indiana , Bartholomew County , 76794 , 76794 , 76897 , 77870 , 103 , 973 , 252 , 1010 , 162 , 647 , 90 , 363 , 76 , 290 , - 62 , 320 , 14 , 610 , - 1 , 0 , 1147 , 1147 , 1147 , 13 . 051877984 , 8 . 3609555008 , 4 . 6909224835 , 3 . 7475689262 , 4 . 1352484703 , 7 . 8828173965 <nl> + 050 , 2 , 3 , 18 , 007 , Indiana , Benton County , 8854 , 8854 , 8881 , 8853 , 27 , - 28 , 22 , 92 , 12 , 93 , 10 , - 1 , 0 , 0 , 16 , - 26 , 16 , - 26 , 1 , - 1 , 92 , 92 , 92 , 10 . 375549791 , 10 . 488327506 , - 0 . 112777715 , 0 , - 2 . 932220593 , - 2 . 932220593 <nl> + 050 , 2 , 3 , 18 , 009 , Indiana , Blackford County , 12766 , 12766 , 12754 , 12594 , - 12 , - 160 , 35 , 141 , 32 , 177 , 3 , - 36 , 0 , 2 , - 14 , - 126 , - 14 , - 124 , - 1 , 0 , 163 , 163 , 163 , 11 . 125138078 , 13 . 965598864 , - 2 . 840460786 , 0 . 157803377 , - 9 . 941612751 , - 9 . 783809374 <nl> + 050 , 2 , 3 , 18 , 011 , Indiana , Boone County , 56640 , 56640 , 56827 , 57481 , 187 , 654 , 182 , 702 , 113 , 416 , 69 , 286 , 4 , 24 , 113 , 342 , 117 , 366 , 1 , 2 , 574 , 574 , 574 , 12 . 282604892 , 7 . 2785806768 , 5 . 0040242153 , 0 . 419918116 , 5 . 9838331525 , 6 . 4037512685 <nl> + 050 , 2 , 3 , 18 , 013 , Indiana , Brown County , 15242 , 15242 , 15228 , 15099 , - 14 , - 129 , 32 , 131 , 25 , 146 , 7 , - 15 , 0 , 0 , - 18 , - 113 , - 18 , - 113 , - 3 , - 1 , 163 , 163 , 163 , 8 . 6391664194 , 9 . 6283839483 , - 0 . 989217529 , 0 , - 7 . 452105385 , - 7 . 452105385 <nl> + 050 , 2 , 3 , 18 , 015 , Indiana , Carroll County , 20155 , 20155 , 20163 , 20031 , 8 , - 132 , 53 , 211 , 42 , 183 , 11 , 28 , 2 , 11 , - 4 , - 171 , - 2 , - 160 , - 1 , 0 , 106 , 106 , 106 , 10 . 499079465 , 9 . 105836692 , 1 . 3932427726 , 0 . 5473453749 , - 8 . 508732647 , - 7 . 961387272 <nl> + 050 , 2 , 3 , 18 , 017 , Indiana , Cass County , 38966 , 38966 , 38957 , 38828 , - 9 , - 129 , 134 , 511 , 109 , 411 , 25 , 100 , 17 , 65 , - 50 , - 296 , - 33 , - 231 , - 1 , 2 , 1066 , 1066 , 1066 , 13 . 13877997 , 10 . 567590152 , 2 . 5711898181 , 1 . 6712733818 , - 7 . 610721862 , - 5 . 93944848 <nl> + 050 , 2 , 3 , 18 , 019 , Indiana , Clark County , 110232 , 110232 , 110605 , 111570 , 373 , 965 , 376 , 1495 , 246 , 1008 , 130 , 487 , 23 , 90 , 216 , 389 , 239 , 479 , 4 , - 1 , 1515 , 1515 , 1515 , 13 . 457859795 , 9 . 0739282097 , 4 . 3839315855 , 0 . 8101721616 , 3 . 5017441206 , 4 . 3119162822 <nl> + 050 , 2 , 3 , 18 , 021 , Indiana , Clay County , 26890 , 26888 , 26898 , 26894 , 10 , - 4 , 74 , 286 , 59 , 274 , 15 , 12 , 2 , 6 , - 7 , - 20 , - 5 , - 14 , 0 , - 2 , 341 , 341 , 341 , 10 . 633551457 , 10 . 187388459 , 0 . 4461629982 , 0 . 2230814991 , - 0 . 743604997 , - 0 . 520523498 <nl> + 050 , 2 , 3 , 18 , 023 , Indiana , Clinton County , 33224 , 33224 , 33218 , 33104 , - 6 , - 114 , 117 , 475 , 80 , 320 , 37 , 155 , 22 , 88 , - 66 , - 360 , - 44 , - 272 , 1 , 3 , 830 , 830 , 830 , 14 . 324055366 , 9 . 6498899309 , 4 . 6741654353 , 2 . 653719731 , - 10 . 85612617 , - 8 . 202406441 <nl> + 050 , 2 , 3 , 18 , 025 , Indiana , Crawford County , 10713 , 10713 , 10729 , 10658 , 16 , - 71 , 28 , 115 , 23 , 123 , 5 , - 8 , 1 , 2 , 11 , - 64 , 12 , - 62 , - 1 , - 1 , 62 , 62 , 62 , 10 . 754196474 , 11 . 50231449 , - 0 . 748118016 , 0 . 1870295039 , - 5 . 984944125 , - 5 . 797914621 <nl> + 050 , 2 , 3 , 18 , 027 , Indiana , Daviess County , 31648 , 31654 , 31721 , 31978 , 67 , 257 , 123 , 502 , 84 , 327 , 39 , 175 , 8 , 34 , 22 , 50 , 30 , 84 , - 2 , - 2 , 581 , 581 , 581 , 15 . 761628911 , 10 . 267037159 , 5 . 4945917518 , 1 . 0675206832 , 1 . 5698833577 , 2 . 6374040409 <nl> + 050 , 2 , 3 , 18 , 029 , Indiana , Dearborn County , 50047 , 50047 , 50090 , 50113 , 43 , 23 , 138 , 556 , 95 , 390 , 43 , 166 , 5 , 19 , - 3 , - 161 , 2 , - 142 , - 2 , - 1 , 530 , 530 , 530 , 11 . 097472132 , 7 . 7841980779 , 3 . 3132740537 , 0 . 3792301628 , - 3 . 213476642 , - 2 . 83424648 <nl> + 050 , 2 , 3 , 18 , 031 , Indiana , Decatur County , 25740 , 25740 , 25785 , 25944 , 45 , 159 , 78 , 307 , 64 , 257 , 14 , 50 , 9 , 36 , 24 , 75 , 33 , 111 , - 2 , - 2 , 377 , 377 , 377 , 11 . 869550929 , 9 . 9363993118 , 1 . 9331516171 , 1 . 3918691643 , 2 . 8997274256 , 4 . 2915965899 <nl> + 050 , 2 , 3 , 18 , 033 , Indiana , DeKalb County , 42223 , 42223 , 42256 , 42462 , 33 , 206 , 134 , 548 , 96 , 365 , 38 , 183 , 0 , 10 , - 3 , 16 , - 3 , 26 , - 2 , - 3 , 615 , 615 , 615 , 12 . 937038174 , 8 . 6168228712 , 4 . 3202153025 , 0 . 2360773389 , 0 . 3777237423 , 0 . 6138010812 <nl> + 050 , 2 , 3 , 18 , 035 , Indiana , Delaware County , 117671 , 117671 , 117677 , 117660 , 6 , - 17 , 320 , 1277 , 272 , 1126 , 48 , 151 , 27 , 98 , - 66 , - 262 , - 39 , - 164 , - 3 , - 4 , 8830 , 8836 , 8835 , 10 . 852522128 , 9 . 5692560031 , 1 . 2832661247 , 0 . 8328482134 , - 2 . 226594203 , - 1 . 39374599 <nl> + 050 , 2 , 3 , 18 , 037 , Indiana , Dubois County , 41889 , 41889 , 41884 , 42199 , - 5 , 315 , 122 , 512 , 94 , 377 , 28 , 135 , 8 , 35 , - 40 , 148 , - 32 , 183 , - 1 , - 3 , 893 , 893 , 893 , 12 . 178442729 , 8 . 9673299002 , 3 . 211112829 , 0 . 8325107334 , 3 . 5203311014 , 4 . 3528418349 <nl> + 050 , 2 , 3 , 18 , 039 , Indiana , Elkhart County , 197559 , 197561 , 197551 , 198941 , - 10 , 1390 , 770 , 3061 , 361 , 1462 , 409 , 1599 , 97 , 361 , - 528 , - 568 , - 431 , - 207 , 12 , - 2 , 3804 , 3804 , 3804 , 15 . 440412417 , 7 . 3746759077 , 8 . 0657365092 , 1 . 8209699061 , - 2 . 865127165 , - 1 . 044157259 <nl> + 050 , 2 , 3 , 18 , 041 , Indiana , Fayette County , 24277 , 24277 , 24298 , 24285 , 21 , - 13 , 73 , 297 , 87 , 293 , - 14 , 4 , 2 , 14 , 35 , - 30 , 37 , - 16 , - 2 , - 1 , 367 , 367 , 367 , 12 . 226498981 , 12 . 061832328 , 0 . 1646666529 , 0 . 5763332853 , - 1 . 234999897 , - 0 . 658666612 <nl> + 050 , 2 , 3 , 18 , 043 , Indiana , Floyd County , 74578 , 74578 , 74638 , 74989 , 60 , 351 , 212 , 840 , 178 , 680 , 34 , 160 , 10 , 44 , 19 , 150 , 29 , 194 , - 3 , - 3 , 1329 , 1329 , 1329 , 11 . 227920095 , 9 . 089268648 , 2 . 1386514466 , 0 . 5881291478 , 2 . 0049857312 , 2 . 593114879 <nl> + 050 , 2 , 3 , 18 , 045 , Indiana , Fountain County , 17240 , 17240 , 17262 , 17213 , 22 , - 49 , 51 , 205 , 46 , 192 , 5 , 13 , 0 , 7 , 18 , - 70 , 18 , - 63 , - 1 , 1 , 172 , 172 , 172 , 11 . 892675852 , 11 . 138506164 , 0 . 7541696882 , 0 . 4060913706 , - 4 . 060913706 , - 3 . 654822335 <nl> + 050 , 2 , 3 , 18 , 047 , Indiana , Franklin County , 23087 , 23087 , 23074 , 23041 , - 13 , - 33 , 59 , 233 , 48 , 192 , 11 , 41 , 0 , - 2 , - 25 , - 71 , - 25 , - 73 , 1 , - 1 , 187 , 187 , 187 , 10 . 105171853 , 8 . 3270085655 , 1 . 7781632874 , - 0 . 086739673 , - 3 . 079258376 , - 3 . 165998048 <nl> + 050 , 2 , 3 , 18 , 049 , Indiana , Fulton County , 20836 , 20836 , 20839 , 20872 , 3 , 33 , 66 , 266 , 61 , 217 , 5 , 49 , 1 , 11 , - 2 , - 25 , - 1 , - 14 , - 1 , - 2 , 224 , 224 , 224 , 12 . 754429287 , 10 . 404929155 , 2 . 3495001319 , 0 . 5274388051 , - 1 . 198724557 , - 0 . 671285752 <nl> + 050 , 2 , 3 , 18 , 051 , Indiana , Gibson County , 33503 , 33503 , 33552 , 33505 , 49 , - 47 , 98 , 396 , 100 , 378 , - 2 , 18 , 3 , 10 , 49 , - 74 , 52 , - 64 , - 1 , - 1 , 738 , 738 , 738 , 11 . 810847488 , 11 . 273990784 , 0 . 536856704 , 0 . 2982537244 , - 2 . 207077561 , - 1 . 908823836 <nl> + 050 , 2 , 3 , 18 , 053 , Indiana , Grant County , 70061 , 70061 , 70003 , 69793 , - 58 , - 210 , 206 , 820 , 197 , 788 , 9 , 32 , 7 , 21 , - 72 , - 262 , - 65 , - 241 , - 2 , - 1 , 5022 , 5022 , 5022 , 11 . 731380011 , 11 . 273570059 , 0 . 4578099516 , 0 . 3004377808 , - 3 . 748318979 , - 3 . 447881198 <nl> + 050 , 2 , 3 , 18 , 055 , Indiana , Greene County , 33165 , 33165 , 33185 , 32895 , 20 , - 290 , 91 , 374 , 99 , 392 , - 8 , - 18 , 0 , 4 , 30 , - 276 , 30 , - 272 , - 2 , 0 , 281 , 281 , 281 , 11 . 319612591 , 11 . 86440678 , - 0 . 544794189 , 0 . 1210653753 , - 8 . 353510896 , - 8 . 232445521 <nl> + 050 , 2 , 3 , 18 , 057 , Indiana , Hamilton County , 274569 , 274569 , 276452 , 282810 , 1883 , 6358 , 968 , 3797 , 299 , 1245 , 669 , 2552 , 166 , 451 , 1020 , 3321 , 1186 , 3772 , 28 , 34 , 1628 , 1628 , 1628 , 13 . 578608953 , 4 . 4522960616 , 9 . 1263128909 , 1 . 6128397781 , 11 . 876365639 , 13 . 489205417 <nl> + 050 , 2 , 3 , 18 , 059 , Indiana , Hancock County , 70002 , 70002 , 70239 , 70529 , 237 , 290 , 207 , 801 , 132 , 518 , 75 , 283 , 6 , 25 , 153 , - 13 , 159 , 12 , 3 , - 5 , 649 , 649 , 649 , 11 . 38042737 , 7 . 359627188 , 4 . 0208001819 , 0 . 3551943624 , - 0 . 184701068 , 0 . 1704932939 <nl> + 050 , 2 , 3 , 18 , 061 , Indiana , Harrison County , 39364 , 39364 , 39383 , 39336 , 19 , - 47 , 107 , 426 , 90 , 323 , 17 , 103 , 2 , 7 , 1 , - 157 , 3 , - 150 , - 1 , 0 , 461 , 461 , 461 , 10 . 823308223 , 8 . 206405061 , 2 . 6169031619 , 0 . 1778477877 , - 3 . 98887181 , - 3 . 811024022 <nl> + 050 , 2 , 3 , 18 , 063 , Indiana , Hendricks County , 145448 , 145448 , 145866 , 147979 , 418 , 2113 , 433 , 1742 , 214 , 871 , 219 , 871 , 23 , 102 , 174 , 1131 , 197 , 1233 , 2 , 9 , 3360 , 3360 , 3360 , 11 . 85659106 , 5 . 92829553 , 5 . 92829553 , 0 . 6942435638 , 7 . 6979359867 , 8 . 3921795504 <nl> + 050 , 2 , 3 , 18 , 065 , Indiana , Henry County , 49462 , 49462 , 49504 , 49264 , 42 , - 240 , 137 , 530 , 151 , 542 , - 14 , - 12 , 1 , 5 , 57 , - 235 , 58 , - 230 , - 2 , 2 , 3016 , 3016 , 3016 , 10 . 732220962 , 10 . 975214644 , - 0 . 242993682 , 0 . 1012473676 , - 4 . 758626276 , - 4 . 657378908 <nl> + 050 , 2 , 3 , 18 , 067 , Indiana , Howard County , 82752 , 82752 , 82756 , 82800 , 4 , 44 , 241 , 963 , 217 , 866 , 24 , 97 , 12 , 48 , - 28 , - 97 , - 16 , - 49 , - 4 , - 4 , 1282 , 1282 , 1282 , 11 . 633525816 , 10 . 461716881 , 1 . 1718089347 , 0 . 5798642151 , - 1 . 171808935 , - 0 . 59194472 <nl> + 050 , 2 , 3 , 18 , 069 , Indiana , Huntington County , 37124 , 37124 , 37105 , 37211 , - 19 , 106 , 104 , 419 , 108 , 385 , - 4 , 34 , 1 , 7 , - 15 , 68 , - 14 , 75 , - 1 , - 3 , 1330 , 1330 , 1330 , 11 . 276172022 , 10 . 36116045 , 0 . 9150115722 , 0 . 1883847355 , 1 . 8300231444 , 2 . 0184078799 <nl> + 050 , 2 , 3 , 18 , 071 , Indiana , Jackson County , 42376 , 42376 , 42589 , 42966 , 213 , 377 , 134 , 543 , 103 , 409 , 31 , 134 , 25 , 104 , 154 , 140 , 179 , 244 , 3 , - 1 , 595 , 595 , 595 , 12 . 693588919 , 9 . 5611010461 , 3 . 1324878733 , 2 . 4311846181 , 3 . 2727485243 , 5 . 7039331424 <nl> + 050 , 2 , 3 , 18 , 073 , Indiana , Jasper County , 33478 , 33478 , 33528 , 33416 , 50 , - 112 , 98 , 392 , 69 , 311 , 29 , 81 , 4 , 10 , 18 , - 205 , 22 , - 195 , - 1 , 2 , 926 , 926 , 926 , 11 . 711281071 , 9 . 2913479924 , 2 . 4199330784 , 0 . 2987571702 , - 6 . 124521989 , - 5 . 825764818 <nl> + 050 , 2 , 3 , 18 , 075 , Indiana , Jay County , 21253 , 21253 , 21203 , 21310 , - 50 , 107 , 74 , 300 , 59 , 230 , 15 , 70 , 1 , 2 , - 67 , 35 , - 66 , 37 , 1 , 0 , 243 , 243 , 243 , 14 . 11333004 , 10 . 820219698 , 3 . 2931103427 , 0 . 0940888669 , 1 . 6465551714 , 1 . 7406440383 <nl> + 050 , 2 , 3 , 18 , 077 , Indiana , Jefferson County , 32428 , 32428 , 32365 , 32249 , - 63 , - 116 , 97 , 391 , 99 , 339 , - 2 , 52 , 4 , 12 , - 65 , - 177 , - 61 , - 165 , 0 , - 3 , 1905 , 1905 , 1905 , 12 . 102640295 , 10 . 493081995 , 1 . 6095583001 , 0 . 3714365308 , - 5 . 478688829 , - 5 . 107252298 <nl> + 050 , 2 , 3 , 18 , 079 , Indiana , Jennings County , 28525 , 28525 , 28479 , 28196 , - 46 , - 283 , 84 , 352 , 77 , 279 , 7 , 73 , 1 , 7 , - 55 , - 367 , - 54 , - 360 , 1 , 4 , 298 , 298 , 298 , 12 . 421702691 , 9 . 8456109396 , 2 . 5760917512 , 0 . 2470224967 , - 12 . 95103661 , - 12 . 70401412 <nl> + 050 , 2 , 3 , 18 , 081 , Indiana , Johnson County , 139654 , 139654 , 140028 , 141656 , 374 , 1628 , 448 , 1805 , 299 , 1125 , 149 , 680 , 44 , 182 , 183 , 770 , 227 , 952 , - 2 , - 4 , 2332 , 2332 , 2332 , 12 . 815779384 , 7 . 9876741313 , 4 . 8281052527 , 1 . 2922281706 , 5 . 4671191832 , 6 . 7593473538 <nl> + 050 , 2 , 3 , 18 , 083 , Indiana , Knox County , 38440 , 38440 , 38409 , 38500 , - 31 , 91 , 100 , 412 , 104 , 402 , - 4 , 10 , 7 , 28 , - 34 , 55 , - 27 , 83 , 0 , - 2 , 2645 , 2645 , 2645 , 10 . 713960655 , 10 . 453913066 , 0 . 2600475887 , 0 . 7281332484 , 1 . 4302617379 , 2 . 1583949863 <nl> + 050 , 2 , 3 , 18 , 085 , Indiana , Kosciusko County , 77358 , 77356 , 77346 , 77336 , - 10 , - 10 , 246 , 979 , 154 , 633 , 92 , 346 , 19 , 78 , - 121 , - 434 , - 102 , - 356 , 0 , 0 , 1568 , 1568 , 1568 , 12 . 658227848 , 8 . 1845334299 , 4 . 4736944182 , 1 . 008520707 , - 5 . 611512652 , - 4 . 602991945 <nl> + 050 , 2 , 3 , 18 , 087 , Indiana , LaGrange County , 37128 , 37128 , 37145 , 37382 , 17 , 237 , 170 , 685 , 65 , 239 , 105 , 446 , 1 , 11 , - 90 , - 220 , - 89 , - 209 , 1 , 0 , 324 , 324 , 324 , 18 . 382599595 , 6 . 4137829243 , 11 . 96881667 , 0 . 29519503 , - 5 . 9039006 , - 5 . 60870557 <nl> + 050 , 2 , 3 , 18 , 089 , Indiana , Lake County , 496005 , 496005 , 496130 , 495558 , 125 , - 572 , 1667 , 6553 , 1154 , 4619 , 513 , 1934 , 135 , 225 , - 518 , - 2735 , - 383 , - 2510 , - 5 , 4 , 6349 , 6349 , 6349 , 13 . 215850146 , 9 . 3154298529 , 3 . 9004202935 , 0 . 4537717508 , - 5 . 515847726 , - 5 . 062075976 <nl> + 050 , 2 , 3 , 18 , 091 , Indiana , LaPorte County , 111467 , 111467 , 111479 , 111374 , 12 , - 105 , 339 , 1330 , 273 , 1140 , 66 , 190 , 12 , 60 , - 64 , - 355 , - 52 , - 295 , - 2 , 0 , 6623 , 6623 , 6623 , 11 . 936119325 , 10 . 230959422 , 1 . 7051599036 , 0 . 5384715485 , - 3 . 185956662 , - 2 . 647485114 <nl> + 050 , 2 , 3 , 18 , 093 , Indiana , Lawrence County , 46134 , 46134 , 46151 , 46195 , 17 , 44 , 128 , 505 , 129 , 518 , - 1 , - 13 , 0 , 3 , 21 , 58 , 21 , 61 , - 3 , - 4 , 653 , 653 , 653 , 10 . 937127759 , 11 . 218677582 , - 0 . 281549823 , 0 . 0649730362 , 1 . 2561453663 , 1 . 3211184025 <nl> + 050 , 2 , 3 , 18 , 095 , Indiana , Madison County , 131636 , 131636 , 131652 , 131235 , 16 , - 417 , 400 , 1591 , 332 , 1382 , 68 , 209 , 6 , 26 , - 54 , - 655 , - 48 , - 629 , - 4 , 3 , 6277 , 6277 , 6277 , 12 . 104059919 , 10 . 514023135 , 1 . 5900367839 , 0 . 197803619 , - 4 . 983129634 , - 4 . 785326015 <nl> + 050 , 2 , 3 , 18 , 097 , Indiana , Marion County , 903393 , 903393 , 904789 , 911296 , 1396 , 6507 , 3785 , 15097 , 1777 , 7305 , 2008 , 7792 , 517 , 2119 , - 1144 , - 3401 , - 627 , - 1282 , 15 , - 3 , 16675 , 16675 , 16675 , 16 . 625873789 , 8 . 0447776398 , 8 . 5810961491 , 2 . 3335912141 , - 3 . 745419405 , - 1 . 411828191 <nl> + 050 , 2 , 3 , 18 , 099 , Indiana , Marshall County , 47051 , 47051 , 47023 , 47050 , - 28 , 27 , 148 , 596 , 111 , 448 , 37 , 148 , 18 , 68 , - 83 , - 190 , - 65 , - 122 , 0 , 1 , 670 , 670 , 670 , 12 . 671010811 , 9 . 5245181933 , 3 . 1464926174 , 1 . 4456857972 , - 4 . 039416198 , - 2 . 593730401 <nl> + 050 , 2 , 3 , 18 , 101 , Indiana , Martin County , 10334 , 10328 , 10336 , 10332 , 8 , - 4 , 30 , 124 , 19 , 99 , 11 , 25 , 1 , 6 , - 4 , - 35 , - 3 , - 29 , 0 , 0 , 93 , 93 , 93 , 11 . 999225856 , 9 . 580027095 , 2 . 4191987614 , 0 . 5806077027 , - 3 . 386878266 , - 2 . 806270563 <nl> + 050 , 2 , 3 , 18 , 103 , Indiana , Miami County , 36903 , 36903 , 36789 , 36611 , - 114 , - 178 , 98 , 386 , 100 , 348 , - 2 , 38 , 3 , 9 , - 118 , - 224 , - 115 , - 215 , 3 , - 1 , 3416 , 3416 , 3416 , 10 . 517711172 , 9 . 4822888283 , 1 . 0354223433 , 0 . 2452316076 , - 6 . 103542234 , - 5 . 858310627 <nl> + 050 , 2 , 3 , 18 , 105 , Indiana , Monroe County , 137974 , 137974 , 138478 , 139799 , 504 , 1321 , 325 , 1281 , 203 , 793 , 122 , 488 , 133 , 472 , 243 , 362 , 376 , 834 , 6 , - 1 , 14976 , 14976 , 14976 , 9 . 2066538018 , 5 . 6993571154 , 3 . 5072966864 , 3 . 3923033524 , 2 . 6017241813 , 5 . 9940275337 <nl> + 050 , 2 , 3 , 18 , 107 , Indiana , Montgomery County , 38124 , 38124 , 38101 , 38441 , - 23 , 340 , 122 , 497 , 102 , 371 , 20 , 126 , 8 , 46 , - 51 , 168 , - 43 , 214 , 0 , 0 , 1171 , 1171 , 1171 , 12 . 9863343 , 9 . 6940241959 , 3 . 2923101043 , 1 . 2019544825 , 4 . 3897468057 , 5 . 5917012882 <nl> + 050 , 2 , 3 , 18 , 109 , Indiana , Morgan County , 68894 , 68894 , 69103 , 69464 , 209 , 361 , 202 , 796 , 140 , 570 , 62 , 226 , 7 , 31 , 141 , 110 , 148 , 141 , - 1 , - 6 , 592 , 592 , 592 , 11 . 489026969 , 8 . 2270670506 , 3 . 2619599183 , 0 . 4474369799 , 1 . 5876796063 , 2 . 0351165862 <nl> + 050 , 2 , 3 , 18 , 111 , Indiana , Newton County , 14244 , 14244 , 14258 , 14161 , 14 , - 97 , 31 , 133 , 41 , 150 , - 10 , - 17 , 1 , 4 , 24 , - 84 , 25 , - 80 , - 1 , 0 , 170 , 170 , 170 , 9 . 3599352546 , 10 . 556317956 , - 1 . 196382702 , 0 . 2815018122 , - 5 . 911538056 , - 5 . 630036243 <nl> + 050 , 2 , 3 , 18 , 113 , Indiana , Noble County , 47536 , 47536 , 47505 , 47553 , - 31 , 48 , 156 , 629 , 106 , 408 , 50 , 221 , 8 , 29 , - 90 , - 203 , - 82 , - 174 , 1 , 1 , 831 , 831 , 831 , 13 . 234025542 , 8 . 5842327842 , 4 . 6497927581 , 0 . 6101538008 , - 4 . 271076606 , - 3 . 660922805 <nl> + 050 , 2 , 3 , 18 , 115 , Indiana , Ohio County , 6128 , 6128 , 6111 , 6065 , - 17 , - 46 , 14 , 57 , 8 , 74 , 6 , - 17 , 0 , 0 , - 24 , - 29 , - 24 , - 29 , 1 , 0 , 52 , 52 , 52 , 9 . 3626806833 , 12 . 155059133 , - 2 . 792378449 , 0 , - 4 . 76346912 , - 4 . 76346912 <nl> + 050 , 2 , 3 , 18 , 117 , Indiana , Orange County , 19840 , 19840 , 19802 , 19969 , - 38 , 167 , 55 , 230 , 60 , 216 , - 5 , 14 , 1 , 6 , - 34 , 146 , - 33 , 152 , 0 , 1 , 258 , 258 , 258 , 11 . 56621659 , 10 . 862186015 , 0 . 704030575 , 0 . 3017273893 , 7 . 3420331397 , 7 . 643760529 <nl> + 050 , 2 , 3 , 18 , 119 , Indiana , Owen County , 21575 , 21575 , 21583 , 21499 , 8 , - 84 , 56 , 232 , 62 , 232 , - 6 , 0 , 3 , 13 , 12 , - 97 , 15 , - 84 , - 1 , 0 , 197 , 197 , 197 , 10 . 770159231 , 10 . 770159231 , 0 , 0 . 6035003018 , - 4 . 503040713 , - 3 . 899540411 <nl> + 050 , 2 , 3 , 18 , 121 , Indiana , Parke County , 17339 , 17341 , 17338 , 17237 , - 3 , - 101 , 45 , 182 , 41 , 178 , 4 , 4 , 1 , 12 , - 7 , - 117 , - 6 , - 105 , - 1 , 0 , 1741 , 1741 , 1741 , 10 . 527838033 , 10 . 296456978 , 0 . 2313810557 , 0 . 694143167 , - 6 . 767895879 , - 6 . 073752711 <nl> + 050 , 2 , 3 , 18 , 123 , Indiana , Perry County , 19338 , 19338 , 19346 , 19354 , 8 , 8 , 54 , 215 , 42 , 187 , 12 , 28 , 0 , 2 , - 4 , - 21 , - 4 , - 19 , 0 , - 1 , 1532 , 1532 , 1532 , 11 . 111111111 , 9 . 6640826873 , 1 . 4470284238 , 0 . 1033591731 , - 1 . 085271318 , - 0 . 981912145 <nl> + 050 , 2 , 3 , 18 , 125 , Indiana , Pike County , 12845 , 12845 , 12847 , 12728 , 2 , - 119 , 34 , 141 , 39 , 154 , - 5 , - 13 , 0 , 1 , 8 , - 108 , 8 , - 107 , - 1 , 1 , 213 , 213 , 213 , 11 . 026392962 , 12 . 043010753 , - 1 . 016617791 , 0 . 0782013685 , - 8 . 445747801 , - 8 . 367546432 <nl> + 050 , 2 , 3 , 18 , 127 , Indiana , Porter County , 164343 , 164343 , 164548 , 165537 , 205 , 989 , 447 , 1759 , 342 , 1388 , 105 , 371 , 19 , 70 , 83 , 551 , 102 , 621 , - 2 , - 3 , 3405 , 3405 , 3405 , 10 . 657860854 , 8 . 4099550116 , 2 . 2479058424 , 0 . 4241331778 , 3 . 338534014 , 3 . 7626671918 <nl> + 050 , 2 , 3 , 18 , 129 , Indiana , Posey County , 25910 , 25910 , 25896 , 25720 , - 14 , - 176 , 70 , 280 , 69 , 243 , 1 , 37 , 0 , 1 , - 13 , - 215 , - 13 , - 214 , - 2 , 1 , 242 , 242 , 242 , 10 . 849349039 , 9 . 4156850589 , 1 . 4336639802 , 0 . 0387476751 , - 8 . 330750155 , - 8 . 29200248 <nl> + 050 , 2 , 3 , 18 , 131 , Indiana , Pulaski County , 13402 , 13402 , 13366 , 13363 , - 36 , - 3 , 39 , 158 , 34 , 139 , 5 , 19 , 0 , 2 , - 42 , - 23 , - 42 , - 21 , 1 , - 1 , 193 , 193 , 193 , 11 . 822365221 , 10 . 400688391 , 1 . 4216768304 , 0 . 1496501927 , - 1 . 720977216 , - 1 . 571327023 <nl> + 050 , 2 , 3 , 18 , 133 , Indiana , Putnam County , 37963 , 37963 , 37928 , 37917 , - 35 , - 11 , 93 , 371 , 87 , 307 , 6 , 64 , 2 , 5 , - 43 , - 78 , - 41 , - 73 , 0 , - 2 , 5424 , 5424 , 5424 , 9 . 7831102907 , 8 . 0954578417 , 1 . 6876524491 , 0 . 1318478476 , - 2 . 056826422 , - 1 . 924978575 <nl> + 050 , 2 , 3 , 18 , 135 , Indiana , Randolph County , 26171 , 26171 , 26156 , 26105 , - 15 , - 51 , 70 , 293 , 64 , 280 , 6 , 13 , 1 , 3 , - 22 , - 66 , - 21 , - 63 , 0 , - 1 , 329 , 329 , 329 , 11 . 212950384 , 10 . 715447466 , 0 . 497502918 , 0 . 1148083657 , - 2 . 525784045 , - 2 . 41097568 <nl> + 050 , 2 , 3 , 18 , 137 , Indiana , Ripley County , 28818 , 28818 , 28843 , 28759 , 25 , - 84 , 93 , 375 , 70 , 296 , 23 , 79 , 3 , 20 , 0 , - 183 , 3 , - 163 , - 1 , 0 , 449 , 449 , 449 , 13 . 020381237 , 10 . 277420923 , 2 . 7429603139 , 0 . 6944203326 , - 6 . 353946044 , - 5 . 659525711 <nl> + 050 , 2 , 3 , 18 , 139 , Indiana , Rush County , 17392 , 17392 , 17358 , 17287 , - 34 , - 71 , 39 , 170 , 54 , 183 , - 15 , - 13 , 0 , 3 , - 19 , - 60 , - 19 , - 57 , 0 , - 1 , 178 , 178 , 178 , 9 . 8138259489 , 10 . 564294992 , - 0 . 750469043 , 0 . 1731851638 , - 3 . 463703276 , - 3 . 290518112 <nl> + 050 , 2 , 3 , 18 , 141 , Indiana , St . Joseph County , 266931 , 266929 , 266848 , 266700 , - 81 , - 148 , 877 , 3478 , 579 , 2366 , 298 , 1112 , 119 , 334 , - 501 , - 1599 , - 382 , - 1265 , 3 , 5 , 11272 , 11272 , 11272 , 13 . 037252506 , 8 . 8689302556 , 4 . 1683222503 , 1 . 2519960716 , - 5 . 99383748 , - 4 . 741841409 <nl> + 050 , 2 , 3 , 18 , 143 , Indiana , Scott County , 24181 , 24181 , 24183 , 23987 , 2 , - 196 , 70 , 282 , 85 , 300 , - 15 , - 18 , 1 , 4 , 18 , - 183 , 19 , - 179 , - 2 , 1 , 312 , 312 , 312 , 11 . 708532282 , 12 . 455885406 , - 0 . 747353124 , 0 . 1660784721 , - 7 . 598090098 , - 7 . 432011625 <nl> + 050 , 2 , 3 , 18 , 145 , Indiana , Shelby County , 44436 , 44436 , 44366 , 44337 , - 70 , - 29 , 125 , 492 , 110 , 404 , 15 , 88 , 2 , 14 , - 88 , - 129 , - 86 , - 115 , 1 , - 2 , 683 , 683 , 683 , 11 . 093198652 , 9 . 1090492993 , 1 . 9841493523 , 0 . 3156601242 , - 2 . 908582573 , - 2 . 592922449 <nl> + 050 , 2 , 3 , 18 , 147 , Indiana , Spencer County , 20952 , 20952 , 20929 , 20961 , - 23 , 32 , 49 , 206 , 49 , 211 , 0 , - 5 , 1 , 13 , - 23 , 24 , - 22 , 37 , - 1 , 0 , 368 , 368 , 368 , 9 . 8352828837 , 10 . 074003342 , - 0 . 238720458 , 0 . 6206731917 , 1 . 1458582 , 1 . 7665313917 <nl> + 050 , 2 , 3 , 18 , 149 , Indiana , Starke County , 23363 , 23363 , 23376 , 23199 , 13 , - 177 , 66 , 273 , 74 , 277 , - 8 , - 4 , 2 , 9 , 20 , - 184 , 22 , - 175 , - 1 , 2 , 16 , 16 , 16 , 11 . 723027375 , 11 . 894793344 , - 0 . 171765969 , 0 . 38647343 , - 7 . 901234568 , - 7 . 514761138 <nl> + 050 , 2 , 3 , 18 , 151 , Indiana , Steuben County , 34185 , 34185 , 34140 , 34028 , - 45 , - 112 , 86 , 342 , 85 , 301 , 1 , 41 , 0 , 6 , - 46 , - 159 , - 46 , - 153 , 0 , 0 , 1300 , 1300 , 1300 , 10 . 034033564 , 8 . 8311231076 , 1 . 2029104565 , 0 . 1760356766 , - 4 . 664945429 , - 4 . 488909752 <nl> + 050 , 2 , 3 , 18 , 153 , Indiana , Sullivan County , 21475 , 21475 , 21473 , 21356 , - 2 , - 117 , 51 , 203 , 54 , 208 , - 3 , - 5 , 0 , 0 , 3 , - 112 , 3 , - 112 , - 2 , 0 , 2298 , 2298 , 2298 , 9 . 4795582432 , 9 . 7130448995 , - 0 . 233486656 , 0 , - 5 . 2301011 , - 5 . 2301011 <nl> + 050 , 2 , 3 , 18 , 155 , Indiana , Switzerland County , 10613 , 10613 , 10628 , 10569 , 15 , - 59 , 32 , 139 , 13 , 105 , 19 , 34 , 0 , 0 , - 3 , - 93 , - 3 , - 93 , - 1 , 0 , 107 , 107 , 107 , 13 . 115063452 , 9 . 9070623201 , 3 . 2080011322 , 0 , - 8 . 774826626 , - 8 . 774826626 <nl> + 050 , 2 , 3 , 18 , 157 , Indiana , Tippecanoe County , 172780 , 172780 , 172897 , 174724 , 117 , 1827 , 566 , 2200 , 268 , 1019 , 298 , 1181 , 164 , 578 , - 354 , 76 , - 190 , 654 , 9 , - 8 , 14463 , 14463 , 14463 , 12 . 657463157 , 5 . 8627067985 , 6 . 7947563582 , 3 . 3254607748 , 0 . 4372578181 , 3 . 762718593 <nl> + 050 , 2 , 3 , 18 , 159 , Indiana , Tipton County , 15936 , 15936 , 15889 , 15788 , - 47 , - 101 , 30 , 119 , 34 , 163 , - 4 , - 44 , 2 , 5 , - 45 , - 62 , - 43 , - 57 , 0 , 0 , 205 , 205 , 205 , 7 . 5133377529 , 10 . 291378603 , - 2 . 77804085 , 0 . 3156864602 , - 3 . 914512107 , - 3 . 598825646 <nl> + 050 , 2 , 3 , 18 , 161 , Indiana , Union County , 7516 , 7516 , 7530 , 7513 , 14 , - 17 , 24 , 101 , 8 , 66 , 16 , 35 , 0 , 2 , - 1 , - 54 , - 1 , - 52 , - 1 , 0 , 67 , 67 , 67 , 13 . 428172572 , 8 . 7748454431 , 4 . 6533271289 , 0 . 2659044074 , - 7 . 179418999 , - 6 . 913514592 <nl> + 050 , 2 , 3 , 18 , 163 , Indiana , Vanderburgh County , 179703 , 179703 , 179784 , 180305 , 81 , 521 , 574 , 2292 , 436 , 1811 , 138 , 481 , 26 , 99 , - 75 , - 47 , - 49 , 52 , - 8 , - 12 , 7531 , 7531 , 7531 , 12 . 730186148 , 10 . 058624396 , 2 . 6715617528 , 0 . 5498640614 , - 0 . 261046575 , 0 . 2888174868 <nl> + 050 , 2 , 3 , 18 , 165 , Indiana , Vermillion County , 16212 , 16212 , 16170 , 16231 , - 42 , 61 , 47 , 189 , 55 , 204 , - 8 , - 15 , 0 , 0 , - 33 , 78 , - 33 , 78 , - 1 , - 2 , 209 , 209 , 209 , 11 . 666306595 , 12 . 592203944 , - 0 . 925897349 , 0 , 4 . 814666214 , 4 . 814666214 <nl> + 050 , 2 , 3 , 18 , 167 , Indiana , Vigo County , 107848 , 107848 , 107891 , 108182 , 43 , 291 , 311 , 1228 , 265 , 1105 , 46 , 123 , 26 , 101 , - 25 , 73 , 1 , 174 , - 4 , - 6 , 9545 , 9545 , 9545 , 11 . 366528905 , 10 . 228024788 , 1 . 1385041167 , 0 . 934869234 , 0 . 6756975652 , 1 . 6105667992 <nl> + 050 , 2 , 3 , 18 , 169 , Indiana , Wabash County , 32888 , 32888 , 32850 , 32608 , - 38 , - 242 , 85 , 338 , 98 , 404 , - 13 , - 66 , 2 , 7 , - 25 , - 184 , - 23 , - 177 , - 2 , 1 , 1839 , 1839 , 1839 , 10 . 327232729 , 12 . 343792966 , - 2 . 016560237 , 0 . 2138776009 , - 5 . 621925509 , - 5 . 408047909 <nl> + 050 , 2 , 3 , 18 , 171 , Indiana , Warren County , 8508 , 8508 , 8503 , 8431 , - 5 , - 72 , 23 , 87 , 11 , 88 , 12 , - 1 , 0 , 0 , - 17 , - 71 , - 17 , - 71 , 0 , 0 , 84 , 84 , 84 , 10 . 275186016 , 10 . 393291603 , - 0 . 118105586 , 0 , - 8 . 385496634 , - 8 . 385496634 <nl> + 050 , 2 , 3 , 18 , 173 , Indiana , Warrick County , 59689 , 59689 , 59857 , 60275 , 168 , 418 , 166 , 663 , 133 , 513 , 33 , 150 , 12 , 51 , 123 , 222 , 135 , 273 , 0 , - 5 , 726 , 726 , 726 , 11 . 037858356 , 8 . 5406053341 , 2 . 4972530217 , 0 . 8490660274 , 3 . 6959344721 , 4 . 5450004995 <nl> + 050 , 2 , 3 , 18 , 175 , Indiana , Washington County , 28262 , 28262 , 28278 , 28147 , 16 , - 131 , 74 , 311 , 75 , 279 , - 1 , 32 , 2 , 6 , 16 , - 169 , 18 , - 163 , - 1 , 0 , 261 , 261 , 261 , 11 . 023482499 , 9 . 8892334958 , 1 . 1342490031 , 0 . 2126716881 , - 5 . 990252548 , - 5 . 77758086 <nl> + 050 , 2 , 3 , 18 , 177 , Indiana , Wayne County , 68917 , 68917 , 68864 , 68643 , - 53 , - 221 , 215 , 870 , 217 , 846 , - 2 , 24 , 5 , 28 , - 54 , - 273 , - 49 , - 245 , - 2 , 0 , 2614 , 2613 , 2613 , 12 . 653901256 , 12 . 304828118 , 0 . 3490731381 , 0 . 4072519944 , - 3 . 970706946 , - 3 . 563454951 <nl> + 050 , 2 , 3 , 18 , 179 , Indiana , Wells County , 27636 , 27636 , 27659 , 27734 , 23 , 75 , 82 , 321 , 61 , 241 , 21 , 80 , 3 , 13 , 2 , - 17 , 5 , - 4 , - 3 , - 1 , 472 , 472 , 472 , 11 . 589912083 , 8 . 7014604733 , 2 . 8884516094 , 0 . 4693733865 , - 0 . 613795967 , - 0 . 14442258 <nl> + 050 , 2 , 3 , 18 , 181 , Indiana , White County , 24643 , 24643 , 24672 , 24694 , 29 , 22 , 81 , 323 , 79 , 280 , 2 , 43 , 2 , 11 , 28 , - 31 , 30 , - 20 , - 3 , - 1 , 307 , 307 , 307 , 13 . 085929587 , 11 . 34383989 , 1 . 7420896974 , 0 . 4456508528 , - 1 . 255925131 , - 0 . 810274278 <nl> + 050 , 2 , 3 , 18 , 183 , Indiana , Whitley County , 33292 , 33292 , 33345 , 33392 , 53 , 47 , 100 , 400 , 68 , 281 , 32 , 119 , 1 , 10 , 21 , - 81 , 22 , - 71 , - 1 , - 1 , 436 , 436 , 436 , 11 . 987353342 , 8 . 4211157229 , 3 . 5662376193 , 0 . 2996838336 , - 2 . 427439052 , - 2 . 127755218 <nl> + 040 , 2 , 4 , 19 , 000 , Iowa , Iowa , 3046355 , 3046350 , 3050202 , 3062309 , 3852 , 12107 , 9400 , 38324 , 6433 , 27895 , 2967 , 10429 , 849 , 3150 , 95 , - 1456 , 944 , 1694 , - 59 , - 16 , 98112 , 98112 , 98112 , 12 . 539527536 , 9 . 1271819388 , 3 . 4123455974 , 1 . 0306729918 , - 0 . 476399961 , 0 . 5542730312 <nl> + 050 , 2 , 4 , 19 , 001 , Iowa , Adair County , 7682 , 7682 , 7676 , 7527 , - 6 , - 149 , 17 , 73 , 14 , 93 , 3 , - 20 , 0 , 0 , - 7 , - 130 , - 7 , - 130 , - 2 , 1 , 151 , 151 , 151 , 9 . 6033677564 , 12 . 234427416 , - 2 . 631059659 , 0 , - 17 . 10188779 , - 17 . 10188779 <nl> + 050 , 2 , 4 , 19 , 003 , Iowa , Adams County , 4029 , 4029 , 4028 , 4004 , - 1 , - 24 , 10 , 48 , 5 , 52 , 5 , - 4 , 0 , 0 , - 5 , - 20 , - 5 , - 20 , - 1 , 0 , 114 , 114 , 114 , 11 . 952191235 , 12 . 948207171 , - 0 . 996015936 , 0 , - 4 . 980079681 , - 4 . 980079681 <nl> + 050 , 2 , 4 , 19 , 005 , Iowa , Allamakee County , 14330 , 14330 , 14347 , 14274 , 17 , - 73 , 39 , 171 , 47 , 199 , - 8 , - 28 , 16 , 66 , 10 , - 112 , 26 , - 46 , - 1 , 1 , 332 , 332 , 332 , 11 . 94926802 , 13 . 90587331 , - 1 . 95660529 , 4 . 6119981832 , - 7 . 826421159 , - 3 . 214422976 <nl> + 050 , 2 , 4 , 19 , 007 , Iowa , Appanoose County , 12887 , 12887 , 12883 , 12797 , - 4 , - 86 , 35 , 141 , 35 , 194 , 0 , - 53 , 0 , 1 , - 3 , - 32 , - 3 , - 31 , - 1 , - 2 , 126 , 126 , 126 , 10 . 981308411 , 15 . 109034268 , - 4 . 127725857 , 0 . 0778816199 , - 2 . 492211838 , - 2 . 414330218 <nl> + 050 , 2 , 4 , 19 , 009 , Iowa , Audubon County , 6119 , 6119 , 6115 , 6034 , - 4 , - 81 , 12 , 59 , 13 , 80 , - 1 , - 21 , 0 , 0 , - 3 , - 61 , - 3 , - 61 , 0 , 1 , 136 , 136 , 136 , 9 . 7127335583 , 13 . 169808215 , - 3 . 457074656 , 0 , - 10 . 04197876 , - 10 . 04197876 <nl> + 050 , 2 , 4 , 19 , 011 , Iowa , Benton County , 26076 , 26076 , 26073 , 26092 , - 3 , 19 , 72 , 285 , 63 , 241 , 9 , 44 , 0 , 3 , - 12 , - 25 , - 12 , - 22 , 0 , - 3 , 313 , 313 , 313 , 10 . 926866673 , 9 . 2399118183 , 1 . 6869548548 , 0 . 1150196492 , - 0 . 958497077 , - 0 . 843477427 <nl> + 050 , 2 , 4 , 19 , 013 , Iowa , Black Hawk County , 131090 , 131090 , 131196 , 131549 , 106 , 353 , 412 , 1684 , 277 , 1159 , 135 , 525 , 37 , 131 , - 60 , - 296 , - 23 , - 165 , - 6 , - 7 , 5967 , 5967 , 5967 , 12 . 818512246 , 8 . 8222420979 , 3 . 9962701479 , 0 . 9971645512 , - 2 . 253135169 , - 1 . 255970618 <nl> + 050 , 2 , 4 , 19 , 015 , Iowa , Boone County , 26306 , 26306 , 26279 , 26255 , - 27 , - 24 , 69 , 286 , 83 , 301 , - 14 , - 15 , 1 , 1 , - 13 , - 8 , - 12 , - 7 , - 1 , - 2 , 768 , 768 , 768 , 10 . 888186698 , 11 . 459245441 , - 0 . 571058743 , 0 . 0380705829 , - 0 . 304564663 , - 0 . 26649408 <nl> + 050 , 2 , 4 , 19 , 017 , Iowa , Bremer County , 24276 , 24276 , 24290 , 24281 , 14 , - 9 , 51 , 229 , 52 , 234 , - 1 , - 5 , 3 , 11 , 12 , - 12 , 15 , - 1 , 0 , - 3 , 1718 , 1718 , 1718 , 9 . 4294949661 , 9 . 6353791357 , - 0 . 20588417 , 0 . 452945173 , - 0 . 494122007 , - 0 . 041176834 <nl> + 050 , 2 , 4 , 19 , 019 , Iowa , Buchanan County , 20958 , 20958 , 20948 , 20923 , - 10 , - 25 , 70 , 292 , 46 , 185 , 24 , 107 , 0 , 1 , - 33 , - 134 , - 33 , - 133 , - 1 , 1 , 343 , 343 , 343 , 13 . 947600965 , 8 . 8366649949 , 5 . 11093597 , 0 . 0477657567 , - 6 . 400611402 , - 6 . 352845645 <nl> + 050 , 2 , 4 , 19 , 021 , Iowa , Buena Vista County , 20260 , 20260 , 20327 , 20406 , 67 , 79 , 76 , 300 , 32 , 170 , 44 , 130 , 21 , 77 , 4 , - 127 , 25 , - 50 , - 2 , - 1 , 1014 , 1014 , 1014 , 14 . 730071441 , 8 . 3470404831 , 6 . 3830309577 , 3 . 7807183365 , - 6 . 235730243 , - 2 . 455011907 <nl> + 050 , 2 , 4 , 19 , 023 , Iowa , Butler County , 14867 , 14867 , 14908 , 14939 , 41 , 31 , 35 , 156 , 37 , 193 , - 2 , - 37 , 0 , 3 , 43 , 66 , 43 , 69 , 0 , - 1 , 242 , 242 , 242 , 10 . 453311891 , 12 . 932623044 , - 2 . 479311154 , 0 . 2010252287 , 4 . 4225550307 , 4 . 6235802593 <nl> + 050 , 2 , 4 , 19 , 025 , Iowa , Calhoun County , 9670 , 9670 , 9668 , 9626 , - 2 , - 42 , 23 , 114 , 28 , 141 , - 5 , - 27 , 0 , 4 , 3 , - 18 , 3 , - 14 , 0 , - 1 , 238 , 238 , 238 , 11 . 817145226 , 14 . 61594278 , - 2 . 798797554 , 0 . 4146366746 , - 1 . 865865036 , - 1 . 451228361 <nl> + 050 , 2 , 4 , 19 , 027 , Iowa , Carroll County , 20816 , 20816 , 20830 , 20861 , 14 , 31 , 61 , 255 , 64 , 258 , - 3 , - 3 , 0 , 2 , 19 , 36 , 19 , 38 , - 2 , - 4 , 467 , 467 , 467 , 12 . 232856012 , 12 . 376771965 , - 0 . 143915953 , 0 . 0959439687 , 1 . 726991437 , 1 . 8229354057 <nl> + 050 , 2 , 4 , 19 , 029 , Iowa , Cass County , 13956 , 13956 , 13950 , 13817 , - 6 , - 133 , 37 , 159 , 40 , 190 , - 3 , - 31 , 2 , 8 , - 5 , - 110 , - 3 , - 102 , 0 , 0 , 304 , 304 , 304 , 11 . 452443548 , 13 . 6853099 , - 2 . 232866352 , 0 . 5762235747 , - 7 . 923074153 , - 7 . 346850578 <nl> + 050 , 2 , 4 , 19 , 031 , Iowa , Cedar County , 18499 , 18499 , 18494 , 18400 , - 5 , - 94 , 43 , 198 , 43 , 178 , 0 , 20 , 0 , 5 , - 4 , - 118 , - 4 , - 113 , - 1 , - 1 , 324 , 324 , 324 , 10 . 733452594 , 9 . 6492654632 , 1 . 0841871307 , 0 . 2710467827 , - 6 . 396704071 , - 6 . 125657288 <nl> + 050 , 2 , 4 , 19 , 033 , Iowa , Cerro Gordo County , 44151 , 44151 , 44107 , 43938 , - 44 , - 169 , 123 , 465 , 130 , 478 , - 7 , - 13 , 6 , 27 , - 42 , - 183 , - 36 , - 156 , - 1 , 0 , 1158 , 1158 , 1158 , 10 . 562780396 , 10 . 858083934 , - 0 . 295303538 , 0 . 6133227327 , - 4 . 156965188 , - 3 . 543642456 <nl> + 050 , 2 , 4 , 19 , 035 , Iowa , Cherokee County , 12072 , 12072 , 12112 , 12069 , 40 , - 43 , 25 , 114 , 39 , 170 , - 14 , - 56 , 1 , 6 , 53 , 8 , 54 , 14 , 0 , - 1 , 371 , 371 , 371 , 9 . 4288904512 , 14 . 060626111 , - 4 . 63173566 , 0 . 4962573922 , 0 . 6616765229 , 1 . 1579339151 <nl> + 050 , 2 , 4 , 19 , 037 , Iowa , Chickasaw County , 12439 , 12439 , 12424 , 12449 , - 15 , 25 , 35 , 138 , 25 , 119 , 10 , 19 , 0 , - 1 , - 25 , 7 , - 25 , 6 , 0 , 0 , 183 , 183 , 183 , 11 . 096369557 , 9 . 5686085313 , 1 . 527761026 , - 0 . 080408475 , 0 . 5628593254 , 0 . 4824508503 <nl> + 050 , 2 , 4 , 19 , 039 , Iowa , Clarke County , 9286 , 9286 , 9304 , 9356 , 18 , 52 , 26 , 127 , 17 , 98 , 9 , 29 , 3 , 10 , 6 , 12 , 9 , 22 , 0 , 1 , 152 , 152 , 152 , 13 . 612004287 , 10 . 50375134 , 3 . 1082529475 , 1 . 0718113612 , 1 . 2861736334 , 2 . 3579849946 <nl> + 050 , 2 , 4 , 19 , 041 , Iowa , Clay County , 16667 , 16667 , 16648 , 16590 , - 19 , - 58 , 51 , 195 , 37 , 170 , 14 , 25 , 0 , 2 , - 32 , - 83 , - 32 , - 81 , - 1 , - 2 , 234 , 234 , 234 , 11 . 733557976 , 10 . 229255671 , 1 . 5043023046 , 0 . 1203441844 , - 4 . 994283651 , - 4 . 873939467 <nl> + 050 , 2 , 4 , 19 , 043 , Iowa , Clayton County , 18129 , 18129 , 18085 , 18014 , - 44 , - 71 , 41 , 180 , 45 , 190 , - 4 , - 10 , 1 , 6 , - 40 , - 66 , - 39 , - 60 , - 1 , - 1 , 287 , 287 , 287 , 9 . 9725754176 , 10 . 526607385 , - 0 . 554031968 , 0 . 3324191806 , - 3 . 656610986 , - 3 . 324191806 <nl> + 050 , 2 , 4 , 19 , 045 , Iowa , Clinton County , 49116 , 49116 , 49120 , 49015 , 4 , - 105 , 158 , 599 , 118 , 500 , 40 , 99 , 2 , 15 , - 35 , - 217 , - 33 , - 202 , - 3 , - 2 , 852 , 852 , 852 , 12 . 207673103 , 10 . 190044327 , 2 . 0176287767 , 0 . 3057013298 , - 4 . 422479238 , - 4 . 116777908 <nl> + 050 , 2 , 4 , 19 , 047 , Iowa , Crawford County , 17096 , 17096 , 17144 , 17277 , 48 , 133 , 58 , 247 , 31 , 165 , 27 , 82 , 8 , 31 , 13 , 21 , 21 , 52 , 0 , - 1 , 585 , 585 , 585 , 14 . 351703902 , 9 . 5871706226 , 4 . 7645332791 , 1 . 8012259958 , 1 . 220185352 , 3 . 0214113477 <nl> + 050 , 2 , 4 , 19 , 049 , Iowa , Dallas County , 66135 , 66135 , 66673 , 69444 , 538 , 2771 , 256 , 1006 , 85 , 346 , 171 , 660 , 21 , 69 , 337 , 2012 , 358 , 2081 , 9 , 30 , 516 , 516 , 516 , 14 . 781401294 , 5 . 0838616778 , 9 . 6975396167 , 1 . 0138336872 , 29 . 562802589 , 30 . 576636276 <nl> + 050 , 2 , 4 , 19 , 051 , Iowa , Davis County , 8753 , 8753 , 8776 , 8787 , 23 , 11 , 35 , 141 , 10 , 83 , 25 , 58 , 0 , 1 , - 1 , - 47 , - 1 , - 46 , - 1 , - 1 , 124 , 124 , 124 , 16 . 056482378 , 9 . 4516882082 , 6 . 6047941696 , 0 . 1138757615 , - 5 . 352160793 , - 5 . 238285031 <nl> + 050 , 2 , 4 , 19 , 053 , Iowa , Decatur County , 8457 , 8457 , 8437 , 8284 , - 20 , - 153 , 23 , 98 , 16 , 98 , 7 , 0 , 2 , 11 , - 28 , - 167 , - 26 , - 156 , - 1 , 3 , 663 , 663 , 663 , 11 . 721786974 , 11 . 721786974 , 0 , 1 . 3157107828 , - 19 . 97488189 , - 18 . 6591711 <nl> + 050 , 2 , 4 , 19 , 055 , Iowa , Delaware County , 17764 , 17764 , 17785 , 17658 , 21 , - 127 , 47 , 192 , 40 , 185 , 7 , 7 , 0 , 0 , 17 , - 135 , 17 , - 135 , - 3 , 1 , 218 , 218 , 218 , 10 . 834297322 , 10 . 439296899 , 0 . 3950004232 , 0 , - 7 . 617865305 , - 7 . 617865305 <nl> + 050 , 2 , 4 , 19 , 057 , Iowa , Des Moines County , 40325 , 40325 , 40288 , 40169 , - 37 , - 119 , 114 , 475 , 102 , 421 , 12 , 54 , 10 , 33 , - 57 , - 205 , - 47 , - 172 , - 2 , - 1 , 685 , 685 , 685 , 11 . 807549374 , 10 . 465217445 , 1 . 3423319289 , 0 . 8203139565 , - 5 . 09588973 , - 4 . 275575773 <nl> + 050 , 2 , 4 , 19 , 059 , Iowa , Dickinson County , 16667 , 16667 , 16672 , 16899 , 5 , 227 , 35 , 153 , 39 , 179 , - 4 , - 26 , 0 , 0 , 10 , 250 , 10 , 250 , - 1 , 3 , 211 , 211 , 211 , 9 . 1150099789 , 10 . 663965923 , - 1 . 548955944 , 0 , 14 . 893807155 , 14 . 893807155 <nl> + 050 , 2 , 4 , 19 , 061 , Iowa , Dubuque County , 93653 , 93653 , 93888 , 94648 , 235 , 760 , 298 , 1187 , 209 , 842 , 89 , 345 , 10 , 41 , 138 , 376 , 148 , 417 , - 2 , - 2 , 4268 , 4268 , 4268 , 12 . 591759664 , 8 . 9319811601 , 3 . 6597785038 , 0 . 434930199 , 3 . 9886281665 , 4 . 4235583655 <nl> + 050 , 2 , 4 , 19 , 063 , Iowa , Emmet County , 10302 , 10302 , 10284 , 10104 , - 18 , - 180 , 27 , 119 , 18 , 127 , 9 , - 8 , 2 , 12 , - 29 , - 185 , - 27 , - 173 , 0 , 1 , 540 , 540 , 540 , 11 . 673533451 , 12 . 458308809 , - 0 . 784775358 , 1 . 1771630371 , - 18 . 14793015 , - 16 . 97076712 <nl> + 050 , 2 , 4 , 19 , 065 , Iowa , Fayette County , 20880 , 20880 , 20864 , 20973 , - 16 , 109 , 54 , 236 , 55 , 225 , - 1 , 11 , 1 , 4 , - 14 , 94 , - 13 , 98 , - 2 , 0 , 782 , 782 , 782 , 11 . 281879676 , 10 . 756029352 , 0 . 5258503239 , 0 . 1912182996 , 4 . 4936300404 , 4 . 68484834 <nl> + 050 , 2 , 4 , 19 , 067 , Iowa , Floyd County , 16303 , 16303 , 16312 , 16070 , 9 , - 242 , 45 , 173 , 45 , 205 , 0 , - 32 , 1 , 3 , 9 , - 214 , 10 , - 211 , - 1 , 1 , 304 , 304 , 304 , 10 . 684948428 , 12 . 661355074 , - 1 . 976406646 , 0 . 185288123 , - 13 . 21721944 , - 13 . 03193132 <nl> + 050 , 2 , 4 , 19 , 069 , Iowa , Franklin County , 10680 , 10680 , 10691 , 10730 , 11 , 39 , 33 , 134 , 22 , 112 , 11 , 22 , 7 , 32 , - 5 , - 14 , 2 , 18 , - 2 , - 1 , 198 , 198 , 198 , 12 . 511087251 , 10 . 45702815 , 2 . 0540591009 , 2 . 9877223286 , - 1 . 307128519 , 1 . 6805938098 <nl> + 050 , 2 , 4 , 19 , 071 , Iowa , Fremont County , 7441 , 7441 , 7430 , 7367 , - 11 , - 63 , 19 , 87 , 12 , 89 , 7 , - 2 , 0 , 1 , - 18 , - 63 , - 18 , - 62 , 0 , 1 , 135 , 135 , 135 , 11 . 759140366 , 12 . 029465432 , - 0 . 270325066 , 0 . 1351625329 , - 8 . 515239576 , - 8 . 380077043 <nl> + 050 , 2 , 4 , 19 , 073 , Iowa , Greene County , 9336 , 9336 , 9334 , 9285 , - 2 , - 49 , 23 , 98 , 25 , 131 , - 2 , - 33 , 3 , 10 , - 1 , - 26 , 2 , - 16 , - 2 , 0 , 142 , 142 , 142 , 10 . 526881143 , 14 . 071647242 , - 3 . 544766099 , 1 . 0741715452 , - 2 . 792846018 , - 1 . 718674472 <nl> + 050 , 2 , 4 , 19 , 075 , Iowa , Grundy County , 12453 , 12453 , 12454 , 12459 , 1 , 5 , 35 , 148 , 24 , 132 , 11 , 16 , 0 , 1 , - 9 , - 10 , - 9 , - 9 , - 1 , - 2 , 154 , 154 , 154 , 11 . 881347088 , 10 . 596877132 , 1 . 2844699554 , 0 . 0802793722 , - 0 . 802793722 , - 0 . 72251435 <nl> + 050 , 2 , 4 , 19 , 077 , Iowa , Guthrie County , 10954 , 10954 , 10959 , 10901 , 5 , - 58 , 19 , 100 , 20 , 128 , - 1 , - 28 , 3 , 13 , 5 , - 43 , 8 , - 30 , - 2 , 0 , 170 , 170 , 170 , 9 . 1491308326 , 11 . 710887466 , - 2 . 561756633 , 1 . 1893870082 , - 3 . 934126258 , - 2 . 74473925 <nl> + 050 , 2 , 4 , 19 , 079 , Iowa , Hamilton County , 15673 , 15673 , 15650 , 15538 , - 23 , - 112 , 38 , 169 , 46 , 172 , - 8 , - 3 , 3 , 17 , - 18 , - 127 , - 15 , - 110 , 0 , 1 , 198 , 198 , 198 , 10 . 837501603 , 11 . 029883288 , - 0 . 192381685 , 1 . 0901628832 , - 8 . 144158009 , - 7 . 053995126 <nl> + 050 , 2 , 4 , 19 , 081 , Iowa , Hancock County , 11341 , 11341 , 11318 , 11287 , - 23 , - 31 , 26 , 102 , 24 , 139 , 2 , - 37 , 0 , 4 , - 25 , 3 , - 25 , 7 , 0 , - 1 , 185 , 185 , 185 , 9 . 0245520902 , 12 . 298164123 , - 3 . 273612033 , 0 . 3539040035 , 0 . 2654280027 , 0 . 6193320062 <nl> + 050 , 2 , 4 , 19 , 083 , Iowa , Hardin County , 17534 , 17534 , 17536 , 17426 , 2 , - 110 , 50 , 181 , 56 , 234 , - 6 , - 53 , 4 , 20 , 5 , - 77 , 9 , - 57 , - 1 , 0 , 870 , 870 , 870 , 10 . 354098736 , 13 . 385961901 , - 3 . 031863166 , 1 . 1440993078 , - 4 . 404782335 , - 3 . 260683027 <nl> + 050 , 2 , 4 , 19 , 085 , Iowa , Harrison County , 14928 , 14928 , 14922 , 14828 , - 6 , - 94 , 38 , 160 , 36 , 190 , 2 , - 30 , 2 , 9 , - 10 , - 73 , - 8 , - 64 , 0 , 0 , 283 , 283 , 283 , 10 . 756302521 , 12 . 773109244 , - 2 . 016806723 , 0 . 6050420168 , - 4 . 907563025 , - 4 . 302521008 <nl> + 050 , 2 , 4 , 19 , 087 , Iowa , Henry County , 20145 , 20145 , 20131 , 20284 , - 14 , 153 , 59 , 222 , 47 , 192 , 12 , 30 , 6 , 29 , - 32 , 94 , - 26 , 123 , 0 , 0 , 1554 , 1554 , 1554 , 10 . 986020042 , 9 . 5014227391 , 1 . 484597303 , 1 . 4351107262 , 4 . 651738216 , 6 . 0868489422 <nl> + 050 , 2 , 4 , 19 , 089 , Iowa , Howard County , 9566 , 9566 , 9560 , 9565 , - 6 , 5 , 25 , 117 , 24 , 132 , 1 , - 15 , 2 , 9 , - 9 , 12 , - 7 , 21 , 0 , - 1 , 213 , 213 , 213 , 12 . 235294118 , 13 . 803921569 , - 1 . 568627451 , 0 . 9411764706 , 1 . 2549019608 , 2 . 1960784314 <nl> + 050 , 2 , 4 , 19 , 091 , Iowa , Humboldt County , 9815 , 9814 , 9807 , 9802 , - 7 , - 5 , 25 , 106 , 18 , 127 , 7 , - 21 , 1 , 3 , - 15 , 15 , - 14 , 18 , 0 , - 2 , 133 , 133 , 133 , 10 . 81136213 , 12 . 953235759 , - 2 . 141873629 , 0 . 3059819471 , 1 . 5299097353 , 1 . 8358916824 <nl> + 050 , 2 , 4 , 19 , 093 , Iowa , Ida County , 7089 , 7089 , 7077 , 7086 , - 12 , 9 , 18 , 92 , 23 , 117 , - 5 , - 25 , 0 , 1 , - 6 , 32 , - 6 , 33 , - 1 , 1 , 122 , 122 , 122 , 12 . 991597825 , 16 . 521923321 , - 3 . 530325496 , 0 . 1412130198 , 4 . 5188166349 , 4 . 6600296547 <nl> + 050 , 2 , 4 , 19 , 095 , Iowa , Iowa County , 16355 , 16355 , 16338 , 16320 , - 17 , - 18 , 45 , 186 , 40 , 205 , 5 , - 19 , 0 , 3 , - 21 , - 2 , - 21 , 1 , - 1 , 0 , 290 , 290 , 290 , 11 . 390777145 , 12 . 554351154 , - 1 . 163574009 , 0 . 183722212 , - 0 . 122481475 , 0 . 0612407373 <nl> + 050 , 2 , 4 , 19 , 097 , Iowa , Jackson County , 19848 , 19848 , 19848 , 19796 , 0 , - 52 , 43 , 196 , 62 , 227 , - 19 , - 31 , 0 , 3 , 20 , - 23 , 20 , - 20 , - 1 , - 1 , 201 , 201 , 201 , 9 . 8880032287 , 11 . 451922107 , - 1 . 563918878 , 0 . 1513469882 , - 1 . 160326909 , - 1 . 008979921 <nl> + 050 , 2 , 4 , 19 , 099 , Iowa , Jasper County , 36842 , 36842 , 36816 , 36547 , - 26 , - 269 , 101 , 390 , 97 , 362 , 4 , 28 , 3 , 12 , - 30 , - 310 , - 27 , - 298 , - 3 , 1 , 1648 , 1648 , 1648 , 10 . 632062484 , 9 . 8687349209 , 0 . 7633275629 , 0 . 3271403841 , - 8 . 45112659 , - 8 . 123986206 <nl> + 050 , 2 , 4 , 19 , 101 , Iowa , Jefferson County , 16843 , 16843 , 16800 , 16815 , - 43 , 15 , 31 , 136 , 41 , 164 , - 10 , - 28 , 2 , 8 , - 35 , 36 , - 33 , 44 , 0 , - 1 , 1731 , 1731 , 1731 , 8 . 0916257623 , 9 . 7575487134 , - 1 . 665922951 , 0 . 475977986 , 2 . 1419009371 , 2 . 6178789231 <nl> + 050 , 2 , 4 , 19 , 103 , Iowa , Johnson County , 130882 , 130882 , 131238 , 133038 , 356 , 1800 , 445 , 1723 , 153 , 622 , 292 , 1101 , 100 , 369 , - 38 , 331 , 62 , 700 , 2 , - 1 , 7857 , 7857 , 7857 , 13 . 039398205 , 4 . 7072000484 , 8 . 3321981565 , 2 . 792535077 , 2 . 504956939 , 5 . 2974920159 <nl> + 050 , 2 , 4 , 19 , 105 , Iowa , Jones County , 20638 , 20638 , 20673 , 20608 , 35 , - 65 , 55 , 211 , 59 , 217 , - 4 , - 6 , 0 , 1 , 39 , - 59 , 39 , - 58 , 0 , - 1 , 1304 , 1304 , 1304 , 10 . 222620576 , 10 . 513311209 , - 0 . 290690632 , 0 . 0484484387 , - 2 . 858457886 , - 2 . 810009447 <nl> + 050 , 2 , 4 , 19 , 107 , Iowa , Keokuk County , 10511 , 10511 , 10501 , 10378 , - 10 , - 123 , 25 , 110 , 21 , 103 , 4 , 7 , 0 , 0 , - 14 , - 132 , - 14 , - 132 , 0 , 2 , 140 , 140 , 140 , 10 . 536903108 , 9 . 8663729106 , 0 . 6705301978 , 0 , - 12 . 64428373 , - 12 . 64428373 <nl> + 050 , 2 , 4 , 19 , 109 , Iowa , Kossuth County , 15543 , 15543 , 15519 , 15396 , - 24 , - 123 , 45 , 165 , 42 , 156 , 3 , 9 , 0 , 1 , - 26 , - 133 , - 26 , - 132 , - 1 , 0 , 257 , 257 , 257 , 10 . 674429888 , 10 . 092188258 , 0 . 5822416303 , 0 . 0646935145 , - 8 . 604237425 , - 8 . 539543911 <nl> + 050 , 2 , 4 , 19 , 111 , Iowa , Lee County , 35862 , 35862 , 35842 , 35621 , - 20 , - 221 , 94 , 405 , 99 , 409 , - 5 , - 4 , 2 , 8 , - 16 , - 225 , - 14 , - 217 , - 1 , 0 , 1594 , 1594 , 1594 , 11 . 334536753 , 11 . 446482795 , - 0 . 111946042 , 0 . 223892084 , - 6 . 296964863 , - 6 . 073072779 <nl> + 050 , 2 , 4 , 19 , 113 , Iowa , Linn County , 211226 , 211226 , 211564 , 213875 , 338 , 2311 , 678 , 2766 , 385 , 1568 , 293 , 1198 , 58 , 149 , - 7 , 963 , 51 , 1112 , - 6 , 1 , 5166 , 5166 , 5166 , 13 . 003039214 , 7 . 3712095036 , 5 . 63182971 , 0 . 7004529439 , 4 . 5270884898 , 5 . 2275414337 <nl> + 050 , 2 , 4 , 19 , 115 , Iowa , Louisa County , 11387 , 11387 , 11374 , 11369 , - 13 , - 5 , 32 , 119 , 24 , 112 , 8 , 7 , 1 , 28 , - 21 , - 40 , - 20 , - 12 , - 1 , 0 , 116 , 116 , 116 , 10 . 464758387 , 9 . 8491843644 , 0 . 6155740228 , 2 . 4622960911 , - 3 . 517565844 , - 1 . 055269753 <nl> + 050 , 2 , 4 , 19 , 117 , Iowa , Lucas County , 8898 , 8898 , 8895 , 8847 , - 3 , - 48 , 27 , 102 , 17 , 97 , 10 , 5 , 0 , 1 , - 11 , - 54 , - 11 , - 53 , - 2 , 0 , 78 , 78 , 78 , 11 . 498140007 , 10 . 934505693 , 0 . 5636343141 , 0 . 1127268628 , - 6 . 087250592 , - 5 . 974523729 <nl> + 050 , 2 , 4 , 19 , 119 , Iowa , Lyon County , 11581 , 11581 , 11585 , 11670 , 4 , 85 , 39 , 162 , 27 , 129 , 12 , 33 , 0 , 0 , - 8 , 51 , - 8 , 51 , 0 , 1 , 161 , 161 , 161 , 13 . 932487637 , 11 . 094388304 , 2 . 8380993335 , 0 , 4 . 3861535154 , 4 . 3861535154 <nl> + 050 , 2 , 4 , 19 , 121 , Iowa , Madison County , 15679 , 15679 , 15733 , 15779 , 54 , 46 , 49 , 197 , 38 , 163 , 11 , 34 , 0 , 0 , 43 , 14 , 43 , 14 , 0 , - 2 , 192 , 192 , 192 , 12 . 503173394 , 10 . 345265296 , 2 . 1579080985 , 0 , 0 . 8885503935 , 0 . 8885503935 <nl> + 050 , 2 , 4 , 19 , 123 , Iowa , Mahaska County , 22381 , 22381 , 22399 , 22530 , 18 , 131 , 73 , 288 , 55 , 230 , 18 , 58 , 2 , 8 , - 1 , 66 , 1 , 74 , - 1 , - 1 , 659 , 659 , 659 , 12 . 82022747 , 10 . 238376105 , 2 . 5818513655 , 0 . 3561174297 , 2 . 9379687952 , 3 . 2940862249 <nl> + 050 , 2 , 4 , 19 , 125 , Iowa , Marion County , 33309 , 33309 , 33261 , 33335 , - 48 , 74 , 89 , 385 , 85 , 329 , 4 , 56 , 8 , 21 , - 61 , 0 , - 53 , 21 , 1 , - 3 , 1693 , 1693 , 1693 , 11 . 562255991 , 9 . 8804733017 , 1 . 6817826897 , 0 . 6306685086 , 0 , 0 . 6306685086 <nl> + 050 , 2 , 4 , 19 , 127 , Iowa , Marshall County , 40648 , 40648 , 40706 , 40980 , 58 , 274 , 132 , 566 , 108 , 478 , 24 , 88 , 37 , 129 , 0 , 58 , 37 , 187 , - 3 , - 1 , 1375 , 1375 , 1375 , 13 . 857943834 , 11 . 70335186 , 2 . 1545919741 , 3 . 1584359621 , 1 . 420071983 , 4 . 5785079451 <nl> + 050 , 2 , 4 , 19 , 129 , Iowa , Mills County , 15059 , 15059 , 15060 , 14992 , 1 , - 68 , 41 , 157 , 31 , 138 , 10 , 19 , 0 , 4 , - 8 , - 90 , - 8 , - 86 , - 1 , - 1 , 608 , 608 , 608 , 10 . 448555837 , 9 . 1840809264 , 1 . 2644749102 , 0 . 2662052442 , - 5 . 989617995 , - 5 . 723412751 <nl> + 050 , 2 , 4 , 19 , 131 , Iowa , Mitchell County , 10776 , 10772 , 10797 , 10783 , 25 , - 14 , 37 , 127 , 30 , 128 , 7 , - 1 , 1 , 4 , 19 , - 17 , 20 , - 13 , - 2 , 0 , 247 , 247 , 247 , 11 . 770157553 , 11 . 862835959 , - 0 . 092678406 , 0 . 3707136237 , - 1 . 575532901 , - 1 . 204819277 <nl> + 050 , 2 , 4 , 19 , 133 , Iowa , Monona County , 9243 , 9243 , 9238 , 9239 , - 5 , 1 , 22 , 86 , 35 , 168 , - 13 , - 82 , 1 , 7 , 7 , 77 , 8 , 84 , 0 , - 1 , 200 , 200 , 200 , 9 . 3088704876 , 18 . 184770255 , - 8 . 875899767 , 0 . 7576987606 , 8 . 3346863668 , 9 . 0923851275 <nl> + 050 , 2 , 4 , 19 , 135 , Iowa , Monroe County , 7970 , 7970 , 7984 , 8056 , 14 , 72 , 22 , 84 , 15 , 94 , 7 , - 10 , 1 , 3 , 8 , 78 , 9 , 81 , - 2 , 1 , 122 , 122 , 122 , 10 . 473815461 , 11 . 720698254 , - 1 . 246882793 , 0 . 3740648379 , 9 . 7256857855 , 10 . 099750623 <nl> + 050 , 2 , 4 , 19 , 137 , Iowa , Montgomery County , 10740 , 10740 , 10714 , 10640 , - 26 , - 74 , 27 , 109 , 28 , 148 , - 1 , - 39 , 0 , 0 , - 25 , - 34 , - 25 , - 34 , 0 , - 1 , 213 , 213 , 213 , 10 . 208860167 , 13 . 861571603 , - 3 . 652711436 , 0 , - 3 . 184415098 , - 3 . 184415098 <nl> + 050 , 2 , 4 , 19 , 139 , Iowa , Muscatine County , 42745 , 42745 , 42732 , 42815 , - 13 , 83 , 140 , 572 , 78 , 329 , 62 , 243 , 13 , 50 , - 88 , - 209 , - 75 , - 159 , 0 , - 1 , 553 , 553 , 553 , 13 . 372765848 , 7 . 6916782587 , 5 . 6810875893 , 1 . 1689480636 , - 4 . 886202906 , - 3 . 717254842 <nl> + 050 , 2 , 4 , 19 , 141 , Iowa , O ' Brien County , 14398 , 14398 , 14386 , 14210 , - 12 , - 176 , 44 , 172 , 45 , 195 , - 1 , - 23 , 2 , 7 , - 12 , - 163 , - 10 , - 156 , - 1 , 3 , 366 , 366 , 366 , 12 . 029654497 , 13 . 638271087 , - 1 . 60861659 , 0 . 4895789621 , - 11 . 40019583 , - 10 . 91061687 <nl> + 050 , 2 , 4 , 19 , 143 , Iowa , Osceola County , 6462 , 6462 , 6448 , 6357 , - 14 , - 91 , 14 , 61 , 12 , 82 , 2 , - 21 , 0 , 7 , - 16 , - 79 , - 16 , - 72 , 0 , 2 , 112 , 112 , 112 , 9 . 5275283093 , 12 . 807497071 , - 3 . 279968762 , 1 . 0933229207 , - 12 . 33893011 , - 11 . 24560718 <nl> + 050 , 2 , 4 , 19 , 145 , Iowa , Page County , 15932 , 15932 , 15933 , 15987 , 1 , 54 , 37 , 177 , 57 , 217 , - 20 , - 40 , 2 , 12 , 20 , 84 , 22 , 96 , - 1 , - 2 , 1468 , 1468 , 1468 , 11 . 090225564 , 13 . 596491228 , - 2 . 506265664 , 0 . 7518796992 , 5 . 2631578947 , 6 . 015037594 <nl> + 050 , 2 , 4 , 19 , 147 , Iowa , Palo Alto County , 9421 , 9421 , 9397 , 9419 , - 24 , 22 , 23 , 94 , 19 , 116 , 4 , - 22 , 0 , 1 , - 28 , 44 , - 28 , 45 , 0 , - 1 , 344 , 344 , 344 , 9 . 9914965986 , 12 . 329931973 , - 2 . 338435374 , 0 . 106292517 , 4 . 6768707483 , 4 . 7831632653 <nl> + 050 , 2 , 4 , 19 , 149 , Iowa , Plymouth County , 24986 , 24986 , 24993 , 24896 , 7 , - 97 , 66 , 281 , 49 , 226 , 17 , 55 , 1 , 6 , - 11 , - 159 , - 10 , - 153 , 0 , 1 , 349 , 349 , 349 , 11 . 265008318 , 9 . 0601134519 , 2 . 2048948666 , 0 . 2405339854 , - 6 . 374150614 , - 6 . 133616629 <nl> + 050 , 2 , 4 , 19 , 151 , Iowa , Pocahontas County , 7310 , 7310 , 7283 , 7180 , - 27 , - 103 , 17 , 65 , 11 , 90 , 6 , - 25 , 0 , 1 , - 32 , - 78 , - 32 , - 77 , - 1 , - 1 , 141 , 141 , 141 , 8 . 9884532946 , 12 . 445550716 , - 3 . 457097421 , 0 . 1382838968 , - 10 . 78614395 , - 10 . 64786006 <nl> + 050 , 2 , 4 , 19 , 153 , Iowa , Polk County , 430640 , 430640 , 432256 , 437399 , 1616 , 5143 , 1606 , 6482 , 700 , 2998 , 906 , 3484 , 236 , 782 , 465 , 887 , 701 , 1669 , 9 , - 10 , 9356 , 9356 , 9356 , 14 . 907060846 , 6 . 8946881235 , 8 . 0123727225 , 1 . 7984143137 , 2 . 0398893814 , 3 . 8383036951 <nl> + 050 , 2 , 4 , 19 , 155 , Iowa , Pottawattamie County , 93158 , 93158 , 93385 , 93518 , 227 , 133 , 320 , 1299 , 232 , 919 , 88 , 380 , 13 , 56 , 127 , - 302 , 140 , - 246 , - 1 , - 1 , 2076 , 2076 , 2076 , 13 . 900258423 , 9 . 8339780528 , 4 . 06628037 , 0 . 5992413177 , - 3 . 23162282 , - 2 . 632381503 <nl> + 050 , 2 , 4 , 19 , 157 , Iowa , Poweshiek County , 18914 , 18914 , 18899 , 18804 , - 15 , - 95 , 53 , 190 , 46 , 224 , 7 , - 34 , 3 , 12 , - 24 , - 72 , - 21 , - 60 , - 1 , - 1 , 1627 , 1627 , 1627 , 10 . 078773572 , 11 . 88234358 , - 1 . 803570008 , 0 . 6365541204 , - 3 . 819324722 , - 3 . 182770602 <nl> + 050 , 2 , 4 , 19 , 159 , Iowa , Ringgold County , 5131 , 5131 , 5137 , 5119 , 6 , - 18 , 12 , 57 , 7 , 60 , 5 , - 3 , 0 , 2 , 1 , - 17 , 1 , - 15 , 0 , 0 , 179 , 179 , 179 , 11 . 115444618 , 11 . 700468019 , - 0 . 585023401 , 0 . 3900156006 , - 3 . 315132605 , - 2 . 925117005 <nl> + 050 , 2 , 4 , 19 , 161 , Iowa , Sac County , 10350 , 10350 , 10349 , 10241 , - 1 , - 108 , 22 , 101 , 30 , 139 , - 8 , - 38 , 0 , 2 , 8 , - 72 , 8 , - 70 , - 1 , 0 , 223 , 223 , 223 , 9 . 8105876639 , 13 . 501699854 , - 3 . 69111219 , 0 . 1942690627 , - 6 . 993686255 , - 6 . 799417193 <nl> + 050 , 2 , 4 , 19 , 163 , Iowa , Scott County , 165224 , 165224 , 165759 , 167095 , 535 , 1336 , 518 , 2190 , 330 , 1313 , 188 , 877 , 45 , 160 , 297 , 304 , 342 , 464 , 5 , - 5 , 3334 , 3334 , 3334 , 13 . 158922531 , 7 . 8893448779 , 5 . 2695776527 , 0 . 961382468 , 1 . 8266266892 , 2 . 7880091572 <nl> + 050 , 2 , 4 , 19 , 165 , Iowa , Shelby County , 12167 , 12167 , 12173 , 12039 , 6 , - 134 , 28 , 115 , 27 , 129 , 1 , - 14 , 1 , 2 , 5 , - 123 , 6 , - 121 , - 1 , 1 , 220 , 220 , 220 , 9 . 4994217743 , 10 . 655873121 , - 1 . 156451346 , 0 . 1652073352 , - 10 . 16025112 , - 9 . 99504378 <nl> + 050 , 2 , 4 , 19 , 167 , Iowa , Sioux County , 33704 , 33704 , 33726 , 33900 , 22 , 174 , 128 , 517 , 53 , 253 , 75 , 264 , 14 , 64 , - 66 , - 152 , - 52 , - 88 , - 1 , - 2 , 2410 , 2410 , 2410 , 15 . 289977228 , 7 . 4823292816 , 7 . 8076479461 , 1 . 8927631384 , - 4 . 495312454 , - 2 . 602549315 <nl> + 050 , 2 , 4 , 19 , 169 , Iowa , Story County , 89542 , 89542 , 89567 , 89663 , 25 , 96 , 236 , 948 , 121 , 466 , 115 , 482 , 91 , 370 , - 186 , - 764 , - 95 , - 394 , 5 , 8 , 8174 , 8174 , 8174 , 10 . 578586174 , 5 . 2000223177 , 5 . 3785638565 , 4 . 1287730849 , - 8 . 525358478 , - 4 . 396585393 <nl> + 050 , 2 , 4 , 19 , 171 , Iowa , Tama County , 17767 , 17767 , 17743 , 17695 , - 24 , - 48 , 52 , 205 , 43 , 202 , 9 , 3 , 2 , 10 , - 33 , - 61 , - 31 , - 51 , - 2 , 0 , 399 , 399 , 399 , 11 . 569501665 , 11 . 400191884 , 0 . 1693097805 , 0 . 5643659349 , - 3 . 442632203 , - 2 . 878266268 <nl> + 050 , 2 , 4 , 19 , 173 , Iowa , Taylor County , 6317 , 6317 , 6313 , 6305 , - 4 , - 8 , 18 , 61 , 13 , 80 , 5 , - 19 , 0 , 1 , - 8 , 10 , - 8 , 11 , - 1 , 0 , 96 , 96 , 96 , 9 . 6687272151 , 12 . 680297987 , - 3 . 011570772 , 0 . 1585037248 , 1 . 5850372484 , 1 . 7435409732 <nl> + 050 , 2 , 4 , 19 , 175 , Iowa , Union County , 12534 , 12534 , 12517 , 12545 , - 17 , 28 , 33 , 139 , 34 , 138 , - 1 , 1 , 0 , 0 , - 16 , 27 , - 16 , 27 , 0 , 0 , 352 , 352 , 352 , 11 . 092490623 , 11 . 012688532 , 0 . 0798020908 , 0 , 2 . 154656452 , 2 . 154656452 <nl> + 050 , 2 , 4 , 19 , 177 , Iowa , Van Buren County , 7570 , 7570 , 7559 , 7510 , - 11 , - 49 , 24 , 102 , 24 , 110 , 0 , - 8 , 0 , 1 , - 11 , - 42 , - 11 , - 41 , 0 , 0 , 97 , 97 , 97 , 13 . 537726458 , 14 . 599508926 , - 1 . 061782467 , 0 . 1327228084 , - 5 . 574357953 , - 5 . 441635145 <nl> + 050 , 2 , 4 , 19 , 179 , Iowa , Wapello County , 35625 , 35625 , 35625 , 35421 , 0 , - 204 , 115 , 476 , 104 , 391 , 11 , 85 , 6 , 26 , - 15 , - 313 , - 9 , - 287 , - 2 , - 2 , 867 , 867 , 867 , 13 . 399769164 , 11 . 006953242 , 2 . 3928159221 , 0 . 7319201644 , - 8 . 811192748 , - 8 . 079272584 <nl> + 050 , 2 , 4 , 19 , 181 , Iowa , Warren County , 46225 , 46225 , 46317 , 46732 , 92 , 415 , 129 , 519 , 96 , 390 , 33 , 129 , 2 , 5 , 58 , 281 , 60 , 286 , - 1 , 0 , 1742 , 1742 , 1742 , 11 . 15541274 , 8 . 3826800933 , 2 . 7727326462 , 0 . 1074702576 , 6 . 0398284775 , 6 . 1472987351 <nl> + 050 , 2 , 4 , 19 , 183 , Iowa , Washington County , 21704 , 21704 , 21712 , 21855 , 8 , 143 , 68 , 252 , 44 , 229 , 24 , 23 , 0 , 3 , - 16 , 117 , - 16 , 120 , 0 , 0 , 310 , 310 , 310 , 11 . 568388918 , 10 . 512543898 , 1 . 0558450203 , 0 . 1377189157 , 5 . 371037712 , 5 . 5087566277 <nl> + 050 , 2 , 4 , 19 , 185 , Iowa , Wayne County , 6403 , 6403 , 6408 , 6309 , 5 , - 99 , 19 , 80 , 15 , 100 , 4 , - 20 , 0 , 0 , 2 , - 80 , 2 , - 80 , - 1 , 1 , 91 , 91 , 91 , 12 . 581583707 , 15 . 726979634 , - 3 . 145395927 , 0 , - 12 . 58158371 , - 12 . 58158371 <nl> + 050 , 2 , 4 , 19 , 187 , Iowa , Webster County , 38013 , 38013 , 37884 , 37660 , - 129 , - 224 , 108 , 435 , 110 , 451 , - 2 , - 16 , - 2 , 0 , - 126 , - 208 , - 128 , - 208 , 1 , 0 , 2627 , 2627 , 2627 , 11 . 516467224 , 11 . 940061421 , - 0 . 423594197 , 0 , - 5 . 506724558 , - 5 . 506724558 <nl> + 050 , 2 , 4 , 19 , 189 , Iowa , Winnebago County , 10866 , 10866 , 10840 , 10789 , - 26 , - 51 , 27 , 111 , 26 , 129 , 1 , - 18 , 0 , 5 , - 27 , - 38 , - 27 , - 33 , 0 , 0 , 488 , 488 , 488 , 10 . 263997411 , 11 . 928429423 , - 1 . 664432013 , 0 . 4623422257 , - 3 . 513800915 , - 3 . 05145869 <nl> + 050 , 2 , 4 , 19 , 191 , Iowa , Winneshiek County , 21056 , 21056 , 21057 , 21024 , 1 , - 33 , 39 , 178 , 40 , 186 , - 1 , - 8 , 1 , 4 , 2 , - 28 , 3 , - 24 , - 1 , - 1 , 2288 , 2288 , 2288 , 8 . 459875003 , 8 . 8400941042 , - 0 . 380219101 , 0 . 1901095506 , - 1 . 330766854 , - 1 . 140657304 <nl> + 050 , 2 , 4 , 19 , 193 , Iowa , Woodbury County , 102172 , 102172 , 102336 , 102509 , 164 , 173 , 378 , 1543 , 214 , 889 , 164 , 654 , 24 , 67 , - 21 , - 550 , 3 , - 483 , - 3 , 2 , 2636 , 2636 , 2636 , 15 . 065049184 , 8 . 679733457 , 6 . 3853157265 , 0 . 6541531402 , - 5 . 369913837 , - 4 . 715760697 <nl> + 050 , 2 , 4 , 19 , 195 , Iowa , Worth County , 7598 , 7598 , 7585 , 7544 , - 13 , - 41 , 17 , 71 , 9 , 69 , 8 , 2 , 0 , 0 , - 21 , - 40 , - 21 , - 40 , 0 , - 3 , 90 , 90 , 90 , 9 . 385947518 , 9 . 1215546302 , 0 . 2643928878 , 0 , - 5 . 287857757 , - 5 . 287857757 <nl> + 050 , 2 , 4 , 19 , 197 , Iowa , Wright County , 13229 , 13229 , 13194 , 13068 , - 35 , - 126 , 36 , 150 , 35 , 164 , 1 , - 14 , 0 , 3 , - 35 , - 115 , - 35 , - 112 , - 1 , 0 , 198 , 198 , 198 , 11 . 423349326 , 12 . 489528596 , - 1 . 06617927 , 0 . 2284669865 , - 8 . 75790115 , - 8 . 529434163 <nl> + 040 , 2 , 4 , 20 , 000 , Kansas , Kansas , 2853118 , 2853118 , 2859143 , 2871238 , 6025 , 12095 , 9845 , 40132 , 5459 , 24038 , 4386 , 16094 , 1326 , 4237 , 324 , - 8252 , 1650 , - 4015 , - 11 , 16 , 79074 , 79097 , 79095 , 14 . 006747544 , 8 . 389669029 , 5 . 6170785154 , 1 . 478784744 , - 2 . 880087729 , - 1 . 401302985 <nl> + 050 , 2 , 4 , 20 , 001 , Kansas , Allen County , 13371 , 13371 , 13350 , 13331 , - 21 , - 19 , 33 , 147 , 39 , 179 , - 6 , - 32 , 0 , 0 , - 15 , 15 , - 15 , 15 , 0 , - 2 , 382 , 382 , 382 , 11 . 019077246 , 13 . 417787939 , - 2 . 398710693 , 0 , 1 . 1243956373 , 1 . 1243956373 <nl> + 050 , 2 , 4 , 20 , 003 , Kansas , Anderson County , 8102 , 8102 , 8098 , 8070 , - 4 , - 28 , 25 , 102 , 22 , 109 , 3 , - 7 , 0 , 0 , - 6 , - 21 , - 6 , - 21 , - 1 , 0 , 103 , 103 , 103 , 12 . 617516081 , 13 . 483424048 , - 0 . 865907966 , 0 , - 2 . 597723899 , - 2 . 597723899 <nl> + 050 , 2 , 4 , 20 , 005 , Kansas , Atchison County , 16924 , 16924 , 16892 , 16793 , - 32 , - 99 , 56 , 218 , 41 , 185 , 15 , 33 , 1 , 3 , - 48 , - 137 , - 47 , - 134 , 0 , 2 , 1375 , 1375 , 1375 , 12 . 943446638 , 10 . 98411756 , 1 . 9593290782 , 0 . 1781208253 , - 8 . 134184355 , - 7 . 95606353 <nl> + 050 , 2 , 4 , 20 , 007 , Kansas , Barber County , 4861 , 4861 , 4845 , 4888 , - 16 , 43 , 16 , 64 , 5 , 61 , 11 , 3 , 0 , 0 , - 27 , 41 , - 27 , 41 , 0 , - 1 , 40 , 40 , 40 , 13 . 151135313 , 12 . 534675845 , 0 . 6164594678 , 0 , 8 . 4249460598 , 8 . 4249460598 <nl> + 050 , 2 , 4 , 20 , 009 , Kansas , Barton County , 27674 , 27674 , 27689 , 27841 , 15 , 152 , 83 , 356 , 80 , 312 , 3 , 44 , 14 , 50 , - 1 , 61 , 13 , 111 , - 1 , - 3 , 672 , 672 , 672 , 12 . 821898073 , 11 . 237169098 , 1 . 5847289753 , 1 . 8008283811 , 2 . 1970106249 , 3 . 9978390059 <nl> + 050 , 2 , 4 , 20 , 011 , Kansas , Bourbon County , 15173 , 15173 , 15168 , 14985 , - 5 , - 183 , 55 , 212 , 42 , 165 , 13 , 47 , 2 , 5 , - 19 , - 236 , - 17 , - 231 , - 1 , 1 , 409 , 409 , 409 , 14 . 061619076 , 10 . 944184658 , 3 . 1174344178 , 0 . 3316419593 , - 15 . 65350048 , - 15 . 32185852 <nl> + 050 , 2 , 4 , 20 , 013 , Kansas , Brown County , 9984 , 9984 , 9992 , 10010 , 8 , 18 , 31 , 134 , 18 , 131 , 13 , 3 , 0 , 2 , - 4 , 14 , - 4 , 16 , - 1 , - 1 , 116 , 116 , 116 , 13 . 398660134 , 13 . 098690131 , 0 . 299970003 , 0 . 199980002 , 1 . 399860014 , 1 . 599840016 <nl> + 050 , 2 , 4 , 20 , 015 , Kansas , Butler County , 65880 , 65880 , 65948 , 65817 , 68 , - 131 , 200 , 786 , 137 , 579 , 63 , 207 , 5 , 25 , 1 , - 364 , 6 , - 339 , - 1 , 1 , 2309 , 2309 , 2309 , 11 . 930330513 , 8 . 7883732402 , 3 . 1419572724 , 0 . 3794634387 , - 5 . 524987667 , - 5 . 145524229 <nl> + 050 , 2 , 4 , 20 , 017 , Kansas , Chase County , 2790 , 2790 , 2792 , 2817 , 2 , 25 , 4 , 23 , 3 , 17 , 1 , 6 , 1 , 4 , 1 , 14 , 2 , 18 , - 1 , 1 , 145 , 145 , 145 , 8 . 2011053664 , 6 . 0616865751 , 2 . 1394187912 , 1 . 4262791942 , 4 . 9919771795 , 6 . 4182563737 <nl> + 050 , 2 , 4 , 20 , 019 , Kansas , Chautauqua County , 3669 , 3669 , 3657 , 3584 , - 12 , - 73 , 5 , 31 , 8 , 58 , - 3 , - 27 , 0 , 1 , - 9 , - 46 , - 9 , - 45 , 0 , - 1 , 79 , 79 , 79 , 8 . 5623532661 , 16 . 019886756 , - 7 . 45753349 , 0 . 2762049441 , - 12 . 70542743 , - 12 . 42922248 <nl> + 050 , 2 , 4 , 20 , 021 , Kansas , Cherokee County , 21603 , 21603 , 21571 , 21385 , - 32 , - 186 , 58 , 239 , 77 , 264 , - 19 , - 25 , 1 , 4 , - 13 , - 166 , - 12 , - 162 , - 1 , 1 , 202 , 202 , 202 , 11 . 127665518 , 12 . 291647267 , - 1 . 163981749 , 0 . 1862370798 , - 7 . 728838812 , - 7 . 542601732 <nl> + 050 , 2 , 4 , 20 , 023 , Kansas , Cheyenne County , 2726 , 2726 , 2724 , 2718 , - 2 , - 6 , 5 , 29 , 8 , 51 , - 3 , - 22 , 0 , 2 , 1 , 14 , 1 , 16 , 0 , 0 , 49 , 49 , 49 , 10 . 65784638 , 18 . 743109151 , - 8 . 085262771 , 0 . 7350238883 , 5 . 1451672179 , 5 . 8801911062 <nl> + 050 , 2 , 4 , 20 , 025 , Kansas , Clark County , 2215 , 2215 , 2203 , 2143 , - 12 , - 60 , 4 , 27 , 4 , 31 , 0 , - 4 , 0 , 0 , - 13 , - 56 , - 13 , - 56 , 1 , 0 , 57 , 57 , 57 , 12 . 425218592 , 14 . 265991717 , - 1 . 840773125 , 0 , - 25 . 77082375 , - 25 . 77082375 <nl> + 050 , 2 , 4 , 20 , 027 , Kansas , Clay County , 8535 , 8535 , 8557 , 8573 , 22 , 16 , 27 , 104 , 17 , 117 , 10 , - 13 , 2 , 6 , 10 , 24 , 12 , 30 , 0 , - 1 , 140 , 140 , 140 , 12 . 142440163 , 13 . 660245184 , - 1 . 51780502 , 0 . 700525394 , 2 . 8021015762 , 3 . 5026269702 <nl> + 050 , 2 , 4 , 20 , 029 , Kansas , Cloud County , 9533 , 9533 , 9527 , 9365 , - 6 , - 162 , 31 , 128 , 40 , 153 , - 9 , - 25 , 0 , 0 , 4 , - 138 , 4 , - 138 , - 1 , 1 , 498 , 498 , 498 , 13 . 550709295 , 16 . 197332204 , - 2 . 646622909 , 0 , - 14 . 60935846 , - 14 . 60935846 <nl> + 050 , 2 , 4 , 20 , 031 , Kansas , Coffey County , 8601 , 8601 , 8608 , 8533 , 7 , - 75 , 24 , 89 , 15 , 86 , 9 , 3 , 0 , 1 , - 1 , - 78 , - 1 , - 77 , - 1 , - 1 , 130 , 130 , 130 , 10 . 384458316 , 10 . 034420396 , 0 . 3500379208 , 0 . 1166793069 , - 9 . 10098594 , - 8 . 984306633 <nl> + 050 , 2 , 4 , 20 , 033 , Kansas , Comanche County , 1891 , 1891 , 1891 , 1884 , 0 , - 7 , 4 , 24 , 4 , 23 , 0 , 1 , 0 , 0 , - 1 , - 6 , - 1 , - 6 , 1 , - 2 , 65 , 65 , 65 , 12 . 715231788 , 12 . 185430464 , 0 . 5298013245 , 0 , - 3 . 178807947 , - 3 . 178807947 <nl> + 050 , 2 , 4 , 20 , 035 , Kansas , Cowley County , 36311 , 36311 , 36286 , 36272 , - 25 , - 14 , 121 , 474 , 112 , 417 , 9 , 57 , 8 , 26 , - 42 , - 95 , - 34 , - 69 , 0 , - 2 , 2004 , 2004 , 2004 , 13 . 065409741 , 11 . 494252874 , 1 . 5711568676 , 0 . 7166680449 , - 2 . 618594779 , - 1 . 901926734 <nl> + 050 , 2 , 4 , 20 , 037 , Kansas , Crawford County , 39134 , 39134 , 39152 , 39220 , 18 , 68 , 116 , 517 , 97 , 364 , 19 , 153 , 10 , 35 , - 11 , - 119 , - 1 , - 84 , 0 , - 1 , 1773 , 1773 , 1773 , 13 . 19348747 , 9 . 2890317971 , 3 . 9044556729 , 0 . 8931761343 , - 3 . 036798857 , - 2 . 143622722 <nl> + 050 , 2 , 4 , 20 , 039 , Kansas , Decatur County , 2961 , 2961 , 2947 , 2915 , - 14 , - 32 , 6 , 24 , 5 , 47 , 1 , - 23 , 0 , 0 , - 15 , - 8 , - 15 , - 8 , 0 , - 1 , 81 , 81 , 81 , 8 . 1883316274 , 16 . 03548277 , - 7 . 847151143 , 0 , - 2 . 729443876 , - 2 . 729443876 <nl> + 050 , 2 , 4 , 20 , 041 , Kansas , Dickinson County , 19754 , 19754 , 19778 , 19739 , 24 , - 39 , 66 , 260 , 58 , 215 , 8 , 45 , 2 , 5 , 16 , - 90 , 18 , - 85 , - 2 , 1 , 307 , 307 , 307 , 13 . 158893641 , 10 . 881392818 , 2 . 2775008224 , 0 . 2530556469 , - 4 . 555001645 , - 4 . 301945998 <nl> + 050 , 2 , 4 , 20 , 043 , Kansas , Doniphan County , 7945 , 7945 , 7954 , 7945 , 9 , - 9 , 22 , 85 , 14 , 74 , 8 , 11 , 0 , 1 , 2 , - 20 , 2 , - 19 , - 1 , - 1 , 427 , 427 , 427 , 10 . 692496383 , 9 . 3087615573 , 1 . 3837348261 , 0 . 1257940751 , - 2 . 515881502 , - 2 . 390087427 <nl> + 050 , 2 , 4 , 20 , 045 , Kansas , Douglas County , 110826 , 110826 , 111223 , 112211 , 397 , 988 , 312 , 1227 , 138 , 567 , 174 , 660 , 95 , 332 , 125 , 1 , 220 , 333 , 3 , - 5 , 8792 , 8815 , 8813 , 10 . 983109106 , 5 . 0753242568 , 5 . 9077848492 , 2 . 9717948029 , 0 . 0089511892 , 2 . 9807459921 <nl> + 050 , 2 , 4 , 20 , 047 , Kansas , Edwards County , 3037 , 3037 , 3050 , 3020 , 13 , - 30 , 8 , 37 , 5 , 35 , 3 , 2 , 0 , 3 , 10 , - 36 , 10 , - 33 , 0 , 1 , 35 , 35 , 35 , 12 . 191103789 , 11 . 532125206 , 0 . 6589785832 , 0 . 9884678748 , - 11 . 8616145 , - 10 . 87314662 <nl> + 050 , 2 , 4 , 20 , 049 , Kansas , Elk County , 2882 , 2882 , 2878 , 2811 , - 4 , - 67 , 8 , 36 , 4 , 36 , 4 , 0 , 0 , 0 , - 9 , - 68 , - 9 , - 68 , 1 , 1 , 40 , 40 , 40 , 12 . 656002812 , 12 . 656002812 , 0 , 0 , - 23 . 90578309 , - 23 . 90578309 <nl> + 050 , 2 , 4 , 20 , 051 , Kansas , Ellis County , 28452 , 28452 , 28450 , 28742 , - 2 , 292 , 91 , 381 , 58 , 250 , 33 , 131 , 2 , 6 , - 37 , 154 , - 35 , 160 , 0 , 1 , 1033 , 1033 , 1033 , 13 . 323541754 , 8 . 7424814659 , 4 . 5810602882 , 0 . 2098195552 , 5 . 385368583 , 5 . 5951881382 <nl> + 050 , 2 , 4 , 20 , 053 , Kansas , Ellsworth County , 6497 , 6497 , 6515 , 6483 , 18 , - 32 , 13 , 62 , 15 , 83 , - 2 , - 21 , 0 , 2 , 20 , - 13 , 20 , - 11 , 0 , 0 , 983 , 983 , 983 , 9 . 5399292199 , 12 . 771195569 , - 3 . 231266349 , 0 . 3077396523 , - 2 . 00030774 , - 1 . 692568087 <nl> + 050 , 2 , 4 , 20 , 055 , Kansas , Finney County , 36776 , 36776 , 36977 , 37083 , 201 , 106 , 187 , 752 , 33 , 186 , 154 , 566 , 41 , 123 , 7 , - 590 , 48 , - 467 , - 1 , 7 , 548 , 548 , 548 , 20 . 307858493 , 5 . 0229543613 , 15 . 284904132 , 3 . 3216311099 , - 15 . 93302728 , - 12 . 61139617 <nl> + 050 , 2 , 4 , 20 , 057 , Kansas , Ford County , 33848 , 33848 , 34078 , 34568 , 230 , 490 , 164 , 690 , 49 , 226 , 115 , 464 , 42 , 172 , 72 , - 145 , 114 , 27 , 1 , - 1 , 708 , 708 , 708 , 20 . 103137838 , 6 . 5845060164 , 13 . 518631821 , 5 . 0112169682 , - 4 . 224572444 , 0 . 7866445241 <nl> + 050 , 2 , 4 , 20 , 059 , Kansas , Franklin County , 25992 , 25992 , 26024 , 25931 , 32 , - 93 , 81 , 339 , 62 , 248 , 19 , 91 , 1 , 12 , 13 , - 197 , 14 , - 185 , - 1 , 1 , 478 , 478 , 478 , 13 . 049754595 , 9 . 5467231258 , 3 . 5030314695 , 0 . 4619382158 , - 7 . 583485709 , - 7 . 121547493 <nl> + 050 , 2 , 4 , 20 , 061 , Kansas , Geary County , 34362 , 34362 , 35319 , 35323 , 957 , 4 , 252 , 1007 , 42 , 201 , 210 , 806 , 62 , 109 , 663 , - 924 , 725 , - 815 , 22 , 13 , 847 , 847 , 847 , 28 . 509951587 , 5 . 6906656097 , 22 . 819285977 , 3 . 0859828431 , - 26 . 16007474 , - 23 . 0740919 <nl> + 050 , 2 , 4 , 20 , 063 , Kansas , Gove County , 2695 , 2695 , 2688 , 2697 , - 7 , 9 , 8 , 33 , 6 , 57 , 2 , - 24 , 0 , 0 , - 8 , 33 , - 8 , 33 , - 1 , 0 , 56 , 56 , 56 , 12 . 256267409 , 21 . 169916435 , - 8 . 913649025 , 0 , 12 . 256267409 , 12 . 256267409 <nl> + 050 , 2 , 4 , 20 , 065 , Kansas , Graham County , 2597 , 2597 , 2607 , 2641 , 10 , 34 , 6 , 25 , 5 , 34 , 1 , - 9 , 0 , 0 , 9 , 43 , 9 , 43 , 0 , 0 , 40 , 40 , 40 , 9 . 5274390244 , 12 . 957317073 , - 3 . 429878049 , 0 , 16 . 387195122 , 16 . 387195122 <nl> + 050 , 2 , 4 , 20 , 067 , Kansas , Grant County , 7829 , 7829 , 7852 , 7964 , 23 , 112 , 32 , 133 , 2 , 27 , 30 , 106 , 11 , 34 , - 18 , - 26 , - 7 , 8 , 0 , - 2 , 79 , 79 , 79 , 16 . 818411735 , 3 . 4142640364 , 13 . 404147699 , 4 . 2994436014 , - 3 . 287809813 , 1 . 0116337886 <nl> + 050 , 2 , 4 , 20 , 069 , Kansas , Gray County , 6006 , 6006 , 6028 , 6113 , 22 , 85 , 22 , 96 , 5 , 37 , 17 , 59 , 3 , 27 , 2 , - 1 , 5 , 26 , 0 , 0 , 78 , 78 , 78 , 15 . 814183346 , 6 . 0950498312 , 9 . 7191335145 , 4 . 447739066 , - 0 . 164731077 , 4 . 2830079895 <nl> + 050 , 2 , 4 , 20 , 071 , Kansas , Greeley County , 1247 , 1247 , 1257 , 1258 , 10 , 1 , 2 , 18 , 3 , 14 , - 1 , 4 , 0 , 1 , 11 , - 3 , 11 , - 2 , 0 , - 1 , 26 , 26 , 26 , 14 . 314115308 , 11 . 133200795 , 3 . 1809145129 , 0 . 7952286282 , - 2 . 385685885 , - 1 . 590457256 <nl> + 050 , 2 , 4 , 20 , 073 , Kansas , Greenwood County , 6689 , 6689 , 6680 , 6644 , - 9 , - 36 , 14 , 62 , 10 , 85 , 4 , - 23 , 0 , 0 , - 11 , - 13 , - 11 , - 13 , - 2 , 0 , 90 , 90 , 90 , 9 . 3065145602 , 12 . 758931252 , - 3 . 452416692 , 0 , - 1 . 951365956 , - 1 . 951365956 <nl> + 050 , 2 , 4 , 20 , 075 , Kansas , Hamilton County , 2690 , 2690 , 2704 , 2666 , 14 , - 38 , 14 , 57 , 4 , 23 , 10 , 34 , 2 , 9 , 1 , - 82 , 3 , - 73 , 1 , 1 , 0 , 0 , 0 , 21 . 229050279 , 8 . 5661080074 , 12 . 662942272 , 3 . 3519553073 , - 30 . 54003724 , - 27 . 18808194 <nl> + 050 , 2 , 4 , 20 , 077 , Kansas , Harper County , 6034 , 6034 , 6033 , 5993 , - 1 , - 40 , 17 , 76 , 18 , 108 , - 1 , - 32 , 0 , 2 , 1 , - 9 , 1 , - 7 , - 1 , - 1 , 129 , 129 , 129 , 12 . 639281557 , 17 . 961084317 , - 5 . 321802761 , 0 . 3326126725 , - 1 . 496757026 , - 1 . 164144354 <nl> + 050 , 2 , 4 , 20 , 079 , Kansas , Harvey County , 34684 , 34684 , 34751 , 34846 , 67 , 95 , 116 , 452 , 92 , 339 , 24 , 113 , 12 , 49 , 34 , - 66 , 46 , - 17 , - 3 , - 1 , 1311 , 1311 , 1311 , 12 . 989065621 , 9 . 7417992155 , 3 . 2472664052 , 1 . 4081066713 , - 1 . 896633476 , - 0 . 488526804 <nl> + 050 , 2 , 4 , 20 , 081 , Kansas , Haskell County , 4256 , 4256 , 4277 , 4285 , 21 , 8 , 13 , 68 , 3 , 23 , 10 , 45 , 1 , 8 , 9 , - 46 , 10 , - 38 , 1 , 1 , 33 , 33 , 33 , 15 . 88413922 , 5 . 3725765008 , 10 . 511562719 , 1 . 8687222612 , - 10 . 745153 , - 8 . 87643074 <nl> + 050 , 2 , 4 , 20 , 083 , Kansas , Hodgeman County , 1916 , 1916 , 1915 , 1966 , - 1 , 51 , 6 , 20 , 3 , 25 , 3 , - 5 , 0 , 0 , - 5 , 55 , - 5 , 55 , 1 , 1 , 14 , 14 , 14 , 10 . 306622005 , 12 . 883277506 , - 2 . 576655501 , 0 , 28 . 343210513 , 28 . 343210513 <nl> + 050 , 2 , 4 , 20 , 085 , Kansas , Jackson County , 13462 , 13462 , 13485 , 13433 , 23 , - 52 , 39 , 163 , 23 , 132 , 16 , 31 , 0 , 0 , 7 , - 83 , 7 , - 83 , 0 , 0 , 133 , 133 , 133 , 12 . 11085519 , 9 . 807563712 , 2 . 3032914778 , 0 , - 6 . 166877183 , - 6 . 166877183 <nl> + 050 , 2 , 4 , 20 , 087 , Kansas , Jefferson County , 19126 , 19126 , 19130 , 18941 , 4 , - 189 , 43 , 195 , 32 , 143 , 11 , 52 , 0 , 4 , - 5 , - 244 , - 5 , - 240 , - 2 , - 1 , 235 , 235 , 235 , 10 . 244017756 , 7 . 512279688 , 2 . 7317380683 , 0 . 2101336976 , - 12 . 81815555 , - 12 . 60802185 <nl> + 050 , 2 , 4 , 20 , 089 , Kansas , Jewell County , 3077 , 3077 , 3075 , 3096 , - 2 , 21 , 4 , 25 , 4 , 45 , 0 , - 20 , 0 , 0 , - 3 , 42 , - 3 , 42 , 1 , - 1 , 27 , 27 , 27 , 8 . 1024145195 , 14 . 584346135 , - 6 . 481931616 , 0 , 13 . 612056393 , 13 . 612056393 <nl> + 050 , 2 , 4 , 20 , 091 , Kansas , Johnson County , 544179 , 544179 , 545741 , 552991 , 1562 , 7250 , 1837 , 7309 , 793 , 3296 , 1044 , 4013 , 281 , 1082 , 246 , 2164 , 527 , 3246 , - 9 , - 9 , 5166 , 5166 , 5166 , 13 . 304427285 , 5 . 9996432251 , 7 . 3047840602 , 1 . 9695430733 , 3 . 9390861466 , 5 . 9086292199 <nl> + 050 , 2 , 4 , 20 , 093 , Kansas , Kearny County , 3977 , 3977 , 3991 , 3987 , 14 , - 4 , 14 , 60 , 3 , 33 , 11 , 27 , 5 , 21 , - 2 , - 52 , 3 , - 31 , 0 , 0 , 81 , 81 , 81 , 15 . 04136375 , 8 . 2727500627 , 6 . 7686136876 , 5 . 2644773126 , - 13 . 03584858 , - 7 . 771371271 <nl> + 050 , 2 , 4 , 20 , 095 , Kansas , Kingman County , 7858 , 7858 , 7845 , 7853 , - 13 , 8 , 18 , 86 , 14 , 102 , 4 , - 16 , 0 , 0 , - 16 , 23 , - 16 , 23 , - 1 , 1 , 190 , 190 , 190 , 10 . 956809785 , 12 . 995286024 , - 2 . 038476239 , 0 , 2 . 9303095936 , 2 . 9303095936 <nl> + 050 , 2 , 4 , 20 , 097 , Kansas , Kiowa County , 2553 , 2553 , 2565 , 2549 , 12 , - 16 , 6 , 29 , 3 , 28 , 3 , 1 , 0 , 2 , 9 , - 20 , 9 , - 18 , 0 , 1 , 149 , 149 , 149 , 11 . 341415722 , 10 . 950332421 , 0 . 3910833007 , 0 . 7821666015 , - 7 . 821666015 , - 7 . 039499413 <nl> + 050 , 2 , 4 , 20 , 099 , Kansas , Labette County , 21607 , 21607 , 21566 , 21511 , - 41 , - 55 , 67 , 278 , 65 , 249 , 2 , 29 , 1 , 10 , - 45 , - 94 , - 44 , - 84 , 1 , 0 , 480 , 480 , 480 , 12 . 907119809 , 11 . 560693642 , 1 . 3464261671 , 0 . 4642848852 , - 4 . 364277921 , - 3 . 899993036 <nl> + 050 , 2 , 4 , 20 , 101 , Kansas , Lane County , 1750 , 1750 , 1742 , 1749 , - 8 , 7 , 4 , 16 , 2 , 21 , 2 , - 5 , 0 , 0 , - 11 , 12 , - 11 , 12 , 1 , 0 , 3 , 3 , 3 , 9 . 1664279576 , 12 . 030936694 , - 2 . 864508737 , 0 , 6 . 8748209682 , 6 . 8748209682 <nl> + 050 , 2 , 4 , 20 , 103 , Kansas , Leavenworth County , 76227 , 76227 , 76511 , 77176 , 284 , 665 , 230 , 934 , 133 , 519 , 97 , 415 , 47 , 70 , 138 , 182 , 185 , 252 , 2 , - 2 , 6561 , 6561 , 6561 , 12 . 154573907 , 6 . 7539869996 , 5 . 4005869072 , 0 . 9109423699 , 2 . 3684501617 , 3 . 2793925316 <nl> + 050 , 2 , 4 , 20 , 105 , Kansas , Lincoln County , 3241 , 3241 , 3234 , 3215 , - 7 , - 19 , 7 , 35 , 8 , 39 , - 1 , - 4 , 0 , 0 , - 6 , - 14 , - 6 , - 14 , 0 , - 1 , 50 , 50 , 50 , 10 . 85439603 , 12 . 094898434 , - 1 . 240502403 , 0 , - 4 . 341758412 , - 4 . 341758412 <nl> + 050 , 2 , 4 , 20 , 107 , Kansas , Linn County , 9656 , 9656 , 9640 , 9612 , - 16 , - 28 , 21 , 92 , 16 , 118 , 5 , - 26 , 0 , 0 , - 20 , - 1 , - 20 , - 1 , - 1 , - 1 , 63 , 63 , 63 , 9 . 5574485768 , 12 . 258466653 , - 2 . 701018076 , 0 , - 0 . 103885311 , - 0 . 103885311 <nl> + 050 , 2 , 4 , 20 , 109 , Kansas , Logan County , 2756 , 2756 , 2772 , 2783 , 16 , 11 , 8 , 30 , 3 , 23 , 5 , 7 , 0 , 1 , 10 , 3 , 10 , 4 , 1 , 0 , 41 , 41 , 41 , 10 . 801080108 , 8 . 2808280828 , 2 . 5202520252 , 0 . 3600360036 , 1 . 0801080108 , 1 . 4401440144 <nl> + 050 , 2 , 4 , 20 , 111 , Kansas , Lyon County , 33690 , 33690 , 33654 , 33764 , - 36 , 110 , 110 , 442 , 75 , 263 , 35 , 179 , 43 , 156 , - 118 , - 225 , - 75 , - 69 , 4 , 0 , 1444 , 1444 , 1444 , 13 . 112225222 , 7 . 8020706636 , 5 . 3101545581 , 4 . 6278441959 , - 6 . 674775283 , - 2 . 046931087 <nl> + 050 , 2 , 4 , 20 , 113 , Kansas , McPherson County , 29180 , 29180 , 29143 , 29241 , - 37 , 98 , 71 , 324 , 95 , 366 , - 24 , - 42 , 1 , 8 , - 12 , 136 , - 11 , 144 , - 2 , - 4 , 925 , 925 , 925 , 11 . 098931214 , 12 . 537681557 , - 1 . 438750343 , 0 . 2740476843 , 4 . 6588106331 , 4 . 9328583173 <nl> + 050 , 2 , 4 , 20 , 115 , Kansas , Marion County , 12660 , 12660 , 12658 , 12538 , - 2 , - 120 , 30 , 115 , 28 , 156 , 2 , - 41 , 0 , 2 , - 3 , - 81 , - 3 , - 79 , - 1 , 0 , 723 , 723 , 723 , 9 . 1284330846 , 12 . 382917923 , - 3 . 254484839 , 0 . 158755358 , - 6 . 429591999 , - 6 . 270836641 <nl> + 050 , 2 , 4 , 20 , 117 , Kansas , Marshall County , 10117 , 10117 , 10105 , 10005 , - 12 , - 100 , 25 , 108 , 20 , 124 , 5 , - 16 , 0 , 1 , - 16 , - 85 , - 16 , - 84 , - 1 , 0 , 164 , 164 , 164 , 10 . 740924913 , 12 . 332173048 , - 1 . 591248135 , 0 . 0994530085 , - 8 . 453505719 , - 8 . 35405271 <nl> + 050 , 2 , 4 , 20 , 119 , Kansas , Meade County , 4575 , 4575 , 4595 , 4531 , 20 , - 64 , 11 , 50 , 4 , 46 , 7 , 4 , 0 , 5 , 14 , - 73 , 14 , - 68 , - 1 , 0 , 119 , 119 , 119 , 10 . 957703265 , 10 . 081087004 , 0 . 8766162612 , 1 . 0957703265 , - 15 . 99824677 , - 14 . 90247644 <nl> + 050 , 2 , 4 , 20 , 121 , Kansas , Miami County , 32787 , 32787 , 32842 , 32715 , 55 , - 127 , 96 , 389 , 74 , 260 , 22 , 129 , 1 , 11 , 32 , - 269 , 33 , - 258 , 0 , 2 , 645 , 645 , 645 , 11 . 867535122 , 7 . 9320286163 , 3 . 9355065058 , 0 . 3355858261 , - 8 . 206598838 , - 7 . 871013012 <nl> + 050 , 2 , 4 , 20 , 123 , Kansas , Mitchell County , 6373 , 6373 , 6352 , 6295 , - 21 , - 57 , 16 , 74 , 21 , 102 , - 5 , - 28 , 0 , 1 , - 16 , - 30 , - 16 , - 29 , 0 , 0 , 246 , 246 , 246 , 11 . 702380011 , 16 . 130307583 , - 4 . 427927572 , 0 . 1581402704 , - 4 . 744208113 , - 4 . 586067842 <nl> + 050 , 2 , 4 , 20 , 125 , Kansas , Montgomery County , 35471 , 35471 , 35373 , 34911 , - 98 , - 462 , 101 , 444 , 110 , 404 , - 9 , 40 , 8 , 38 , - 99 , - 546 , - 91 , - 508 , 2 , 6 , 1112 , 1112 , 1112 , 12 . 634454499 , 11 . 496215355 , 1 . 138239144 , 1 . 0813271868 , - 15 . 53696432 , - 14 . 45563713 <nl> + 050 , 2 , 4 , 20 , 127 , Kansas , Morris County , 5923 , 5923 , 5911 , 5888 , - 12 , - 23 , 12 , 55 , 12 , 78 , 0 , - 23 , 0 , 2 , - 12 , - 2 , - 12 , 0 , 0 , 0 , 66 , 66 , 66 , 9 . 3228239681 , 13 . 221459446 , - 3 . 898635478 , 0 . 3390117807 , - 0 . 339011781 , 0 <nl> + 050 , 2 , 4 , 20 , 129 , Kansas , Morton County , 3233 , 3233 , 3231 , 3198 , - 2 , - 33 , 9 , 39 , 5 , 34 , 4 , 5 , 1 , 7 , - 7 , - 45 , - 6 , - 38 , 0 , 0 , 83 , 83 , 83 , 12 . 132524498 , 10 . 57707264 , 1 . 5554518588 , 2 . 1776326023 , - 13 . 99906673 , - 11 . 82143413 <nl> + 050 , 2 , 4 , 20 , 131 , Kansas , Nemaha County , 10178 , 10178 , 10170 , 10113 , - 8 , - 57 , 27 , 129 , 21 , 100 , 6 , 29 , 0 , 0 , - 14 , - 86 , - 14 , - 86 , 0 , 0 , 259 , 259 , 259 , 12 . 720011833 , 9 . 8604742888 , 2 . 8595375438 , 0 , - 8 . 480007888 , - 8 . 480007888 <nl> + 050 , 2 , 4 , 20 , 133 , Kansas , Neosho County , 16512 , 16512 , 16497 , 16449 , - 15 , - 48 , 53 , 208 , 37 , 181 , 16 , 27 , 0 , 7 , - 30 , - 82 , - 30 , - 75 , - 1 , 0 , 450 , 450 , 450 , 12 . 626722516 , 10 . 987676804 , 1 . 6390457112 , 0 . 424937777 , - 4 . 97784253 , - 4 . 552904753 <nl> + 050 , 2 , 4 , 20 , 135 , Kansas , Ness County , 3107 , 3107 , 3110 , 3120 , 3 , 10 , 10 , 29 , 5 , 39 , 5 , - 10 , 0 , 1 , - 1 , 19 , - 1 , 20 , - 1 , 0 , 70 , 70 , 70 , 9 . 3097913323 , 12 . 520064205 , - 3 . 210272873 , 0 . 3210272873 , 6 . 0995184591 , 6 . 4205457464 <nl> + 050 , 2 , 4 , 20 , 137 , Kansas , Norton County , 5671 , 5671 , 5665 , 5635 , - 6 , - 30 , 10 , 49 , 7 , 73 , 3 , - 24 , 1 , 4 , - 8 , - 10 , - 7 , - 6 , - 2 , 0 , 822 , 822 , 822 , 8 . 6725663717 , 12 . 920353982 , - 4 . 247787611 , 0 . 7079646018 , - 1 . 769911504 , - 1 . 061946903 <nl> + 050 , 2 , 4 , 20 , 139 , Kansas , Osage County , 16295 , 16295 , 16290 , 16306 , - 5 , 16 , 45 , 174 , 52 , 214 , - 7 , - 40 , 1 , 0 , 2 , 56 , 3 , 56 , - 1 , 0 , 194 , 194 , 194 , 10 . 676156584 , 13 . 130445453 , - 2 . 45428887 , 0 , 3 . 4360044177 , 3 . 4360044177 <nl> + 050 , 2 , 4 , 20 , 141 , Kansas , Osborne County , 3858 , 3858 , 3847 , 3847 , - 11 , 0 , 12 , 37 , 6 , 49 , 6 , - 12 , 0 , 1 , - 17 , 12 , - 17 , 13 , 0 , - 1 , 100 , 100 , 100 , 9 . 6178840655 , 12 . 737197816 , - 3 . 119313751 , 0 . 2599428126 , 3 . 119313751 , 3 . 3792565636 <nl> + 050 , 2 , 4 , 20 , 143 , Kansas , Ottawa County , 6091 , 6091 , 6097 , 6119 , 6 , 22 , 19 , 68 , 10 , 64 , 9 , 4 , 0 , 1 , - 3 , 18 , - 3 , 19 , 0 , - 1 , 98 , 98 , 98 , 11 . 132940406 , 10 . 478061559 , 0 . 6548788474 , 0 . 1637197119 , 2 . 9469548134 , 3 . 1106745252 <nl> + 050 , 2 , 4 , 20 , 145 , Kansas , Pawnee County , 6973 , 6973 , 6983 , 7011 , 10 , 28 , 20 , 77 , 8 , 81 , 12 , - 4 , 1 , 3 , - 2 , 30 , - 1 , 33 , - 1 , - 1 , 1026 , 1026 , 1026 , 11 . 004716307 , 11 . 576389881 , - 0 . 571673574 , 0 . 4287551808 , 4 . 2875518079 , 4 . 7163069887 <nl> + 050 , 2 , 4 , 20 , 147 , Kansas , Phillips County , 5642 , 5642 , 5636 , 5555 , - 6 , - 81 , 13 , 54 , 10 , 76 , 3 , - 22 , 1 , 3 , - 10 , - 61 , - 9 , - 58 , 0 , - 1 , 68 , 68 , 68 , 9 . 650612099 , 13 . 582342954 , - 3 . 931730855 , 0 . 5361451166 , - 10 . 90161737 , - 10 . 36547225 <nl> + 050 , 2 , 4 , 20 , 149 , Kansas , Pottawatomie County , 21604 , 21604 , 21712 , 21920 , 108 , 208 , 93 , 359 , 41 , 175 , 52 , 184 , 6 , 26 , 48 , 1 , 54 , 27 , 2 , - 3 , 299 , 299 , 299 , 16 . 455812248 , 8 . 0216354969 , 8 . 434176751 , 1 . 1917858453 , 0 . 0458379171 , 1 . 2376237624 <nl> + 050 , 2 , 4 , 20 , 151 , Kansas , Pratt County , 9656 , 9656 , 9648 , 9676 , - 8 , 28 , 27 , 115 , 17 , 100 , 10 , 15 , 3 , 11 , - 21 , 3 , - 18 , 14 , 0 , - 1 , 380 , 380 , 380 , 11 . 902297661 , 10 . 349824053 , 1 . 5524736079 , 1 . 1384806458 , 0 . 3104947216 , 1 . 4489753674 <nl> + 050 , 2 , 4 , 20 , 153 , Kansas , Rawlins County , 2519 , 2519 , 2506 , 2512 , - 13 , 6 , 4 , 23 , 3 , 27 , 1 , - 4 , 0 , 0 , - 14 , 10 , - 14 , 10 , 0 , 0 , 40 , 40 , 40 , 9 . 1669988043 , 10 . 761259466 , - 1 . 594260662 , 0 , 3 . 985651654 , 3 . 985651654 <nl> + 050 , 2 , 4 , 20 , 155 , Kansas , Reno County , 64511 , 64511 , 64576 , 64607 , 65 , 31 , 188 , 790 , 179 , 690 , 9 , 100 , 6 , 17 , 53 , - 83 , 59 , - 66 , - 3 , - 3 , 3129 , 3129 , 3129 , 12 . 230711471 , 10 . 682520146 , 1 . 5481913255 , 0 . 2631925253 , - 1 . 2849988 , - 1 . 021806275 <nl> + 050 , 2 , 4 , 20 , 157 , Kansas , Republic County , 4980 , 4980 , 4954 , 4907 , - 26 , - 47 , 8 , 43 , 15 , 80 , - 7 , - 37 , 0 , 0 , - 19 , - 10 , - 19 , - 10 , 0 , 0 , 103 , 103 , 103 , 8 . 7212250279 , 16 . 225534936 , - 7 . 504309908 , 0 , - 2 . 028191867 , - 2 . 028191867 <nl> + 050 , 2 , 4 , 20 , 159 , Kansas , Rice County , 10083 , 10083 , 10107 , 10076 , 24 , - 31 , 31 , 120 , 21 , 115 , 10 , 5 , 0 , 4 , 15 , - 40 , 15 , - 36 , - 1 , 0 , 648 , 648 , 648 , 11 . 891195561 , 11 . 395729079 , 0 . 4954664817 , 0 . 3963731854 , - 3 . 963731854 , - 3 . 567358668 <nl> + 050 , 2 , 4 , 20 , 161 , Kansas , Riley County , 71115 , 71115 , 71482 , 72997 , 367 , 1515 , 275 , 1082 , 72 , 325 , 203 , 757 , 131 , 242 , 32 , 513 , 163 , 755 , 1 , 3 , 9127 , 9127 , 9127 , 14 . 977955274 , 4 . 498923719 , 10 . 479031555 , 3 . 3499678154 , 7 . 1013780549 , 10 . 45134587 <nl> + 050 , 2 , 4 , 20 , 163 , Kansas , Rooks County , 5181 , 5181 , 5176 , 5182 , - 5 , 6 , 13 , 68 , 10 , 77 , 3 , - 9 , 0 , 0 , - 8 , 15 , - 8 , 15 , 0 , 0 , 72 , 72 , 72 , 13 . 129947866 , 14 . 867735084 , - 1 . 737787218 , 0 , 2 . 8963120293 , 2 . 8963120293 <nl> + 050 , 2 , 4 , 20 , 165 , Kansas , Rush County , 3307 , 3307 , 3323 , 3238 , 16 , - 85 , 6 , 27 , 5 , 34 , 1 , - 7 , 0 , 2 , 15 , - 80 , 15 , - 78 , 0 , 0 , 67 , 67 , 67 , 8 . 2304526749 , 10 . 364273739 , - 2 . 133821064 , 0 . 6096631611 , - 24 . 38652644 , - 23 . 77686328 <nl> + 050 , 2 , 4 , 20 , 167 , Kansas , Russell County , 6970 , 6970 , 6983 , 6956 , 13 , - 27 , 23 , 84 , 15 , 94 , 8 , - 10 , 1 , 7 , 5 , - 25 , 6 , - 18 , - 1 , 1 , 89 , 89 , 89 , 12 . 052514528 , 13 . 487337686 , - 1 . 434823158 , 1 . 0043762106 , - 3 . 587057895 , - 2 . 582681684 <nl> + 050 , 2 , 4 , 20 , 169 , Kansas , Saline County , 55606 , 55606 , 55746 , 55844 , 140 , 98 , 196 , 820 , 111 , 459 , 85 , 361 , 16 , 57 , 40 , - 322 , 56 , - 265 , - 1 , 2 , 1465 , 1465 , 1465 , 14 . 696657407 , 8 . 2265435971 , 6 . 4701138095 , 1 . 0215969173 , - 5 . 771126445 , - 4 . 749529528 <nl> + 050 , 2 , 4 , 20 , 171 , Kansas , Scott County , 4936 , 4936 , 4952 , 4910 , 16 , - 42 , 9 , 70 , 9 , 73 , 0 , - 3 , 1 , 4 , 14 , - 42 , 15 , - 38 , 1 , - 1 , 105 , 105 , 105 , 14 . 195903468 , 14 . 804299331 , - 0 . 608395863 , 0 . 8111944839 , - 8 . 517542081 , - 7 . 706347597 <nl> + 050 , 2 , 4 , 20 , 173 , Kansas , Sedgwick County , 498365 , 498365 , 499301 , 501076 , 936 , 1775 , 1967 , 8002 , 960 , 3924 , 1007 , 4078 , 215 , 470 , - 284 , - 2791 , - 69 , - 2321 , - 2 , 18 , 7252 , 7252 , 7252 , 15 . 997968766 , 7 . 845042419 , 8 . 1529263468 , 0 . 9396457536 , - 5 . 579896379 , - 4 . 640250626 <nl> + 050 , 2 , 4 , 20 , 175 , Kansas , Seward County , 22952 , 22952 , 23023 , 23328 , 71 , 305 , 114 , 516 , 15 , 135 , 99 , 381 , 37 , 127 , - 66 , - 204 , - 29 , - 77 , 1 , 1 , 476 , 476 , 476 , 22 . 264891804 , 5 . 8251170417 , 16 . 439774762 , 5 . 4799249207 , - 8 . 802399085 , - 3 . 322474165 <nl> + 050 , 2 , 4 , 20 , 177 , Kansas , Shawnee County , 177934 , 177934 , 178276 , 178941 , 342 , 665 , 613 , 2435 , 390 , 1660 , 223 , 775 , 50 , 157 , 73 , - 261 , 123 , - 104 , - 4 , - 6 , 4397 , 4397 , 4397 , 13 . 633169754 , 9 . 294070551 , 4 . 339099203 , 0 . 879017516 , - 1 . 461296635 , - 0 . 582279119 <nl> + 050 , 2 , 4 , 20 , 179 , Kansas , Sheridan County , 2556 , 2556 , 2551 , 2552 , - 5 , 1 , 4 , 23 , 2 , 29 , 2 , - 6 , 0 , 0 , - 7 , 7 , - 7 , 7 , 0 , 0 , 33 , 33 , 33 , 9 . 0143053106 , 11 . 365863218 , - 2 . 351557907 , 0 , 2 . 743484225 , 2 . 743484225 <nl> + 050 , 2 , 4 , 20 , 181 , Kansas , Sherman County , 6010 , 6010 , 6014 , 6054 , 4 , 40 , 18 , 70 , 8 , 87 , 10 , - 17 , 3 , 17 , - 9 , 41 , - 6 , 58 , 0 , - 1 , 102 , 102 , 102 , 11 . 600928074 , 14 . 418296321 , - 2 . 817368247 , 2 . 8173682466 , 6 . 7948293006 , 9 . 6121975472 <nl> + 050 , 2 , 4 , 20 , 183 , Kansas , Smith County , 3853 , 3853 , 3864 , 3834 , 11 , - 30 , 8 , 33 , 6 , 52 , 2 , - 19 , 0 , 0 , 9 , - 10 , 9 , - 10 , 0 , - 1 , 56 , 56 , 56 , 8 . 5736554949 , 13 . 510002598 , - 4 . 936347103 , 0 , - 2 . 598077423 , - 2 . 598077423 <nl> + 050 , 2 , 4 , 20 , 185 , Kansas , Stafford County , 4437 , 4437 , 4423 , 4371 , - 14 , - 52 , 10 , 47 , 9 , 56 , 1 , - 9 , 0 , 4 , - 14 , - 46 , - 14 , - 42 , - 1 , - 1 , 69 , 69 , 69 , 10 . 689106209 , 12 . 735956334 , - 2 . 046850125 , 0 . 9097111667 , - 10 . 46167842 , - 9 . 55196725 <nl> + 050 , 2 , 4 , 20 , 187 , Kansas , Stanton County , 2235 , 2235 , 2252 , 2250 , 17 , - 2 , 6 , 31 , 1 , 19 , 5 , 12 , 0 , 8 , 11 , - 22 , 11 , - 14 , 1 , 0 , 47 , 47 , 47 , 13 . 771657041 , 8 . 4406930253 , 5 . 330964016 , 3 . 5539760107 , - 9 . 773434029 , - 6 . 219458019 <nl> + 050 , 2 , 4 , 20 , 189 , Kansas , Stevens County , 5724 , 5724 , 5748 , 5613 , 24 , - 135 , 19 , 83 , 3 , 34 , 16 , 49 , 2 , 7 , 6 , - 192 , 8 , - 185 , 0 , 1 , 72 , 72 , 72 , 14 . 611389842 , 5 . 9853886102 , 8 . 6260012323 , 1 . 2322858903 , - 33 . 79984156 , - 32 . 56755567 <nl> + 050 , 2 , 4 , 20 , 191 , Kansas , Sumner County , 24132 , 24132 , 24099 , 23787 , - 33 , - 312 , 83 , 286 , 68 , 263 , 15 , 23 , 0 , 0 , - 48 , - 338 , - 48 , - 338 , 0 , 3 , 409 , 409 , 409 , 11 . 945036127 , 10 . 984421334 , 0 . 9606147935 , 0 , - 14 . 11686088 , - 14 . 11686088 <nl> + 050 , 2 , 4 , 20 , 193 , Kansas , Thomas County , 7900 , 7900 , 7949 , 7977 , 49 , 28 , 27 , 110 , 7 , 66 , 20 , 44 , 3 , 8 , 26 , - 24 , 29 , - 16 , 0 , 0 , 353 , 353 , 353 , 13 . 813889238 , 8 . 2883335426 , 5 . 5255556951 , 1 . 00464649 , - 3 . 01393947 , - 2 . 00929298 <nl> + 050 , 2 , 4 , 20 , 195 , Kansas , Trego County , 3001 , 3001 , 2995 , 2930 , - 6 , - 65 , 6 , 29 , 7 , 48 , - 1 , - 19 , 0 , 0 , - 4 , - 45 , - 4 , - 45 , - 1 , - 1 , 64 , 64 , 64 , 9 . 7890295359 , 16 . 202531646 , - 6 . 41350211 , 0 , - 15 . 18987342 , - 15 . 18987342 <nl> + 050 , 2 , 4 , 20 , 197 , Kansas , Wabaunsee County , 7053 , 7053 , 7046 , 7026 , - 7 , - 20 , 18 , 81 , 4 , 54 , 14 , 27 , 0 , 2 , - 21 , - 48 , - 21 , - 46 , 0 , - 1 , 90 , 90 , 90 , 11 . 512222854 , 7 . 6748152359 , 3 . 837407618 , 0 . 2842524161 , - 6 . 822057987 , - 6 . 537805571 <nl> + 050 , 2 , 4 , 20 , 199 , Kansas , Wallace County , 1485 , 1485 , 1486 , 1527 , 1 , 41 , 2 , 14 , 2 , 19 , 0 , - 5 , 0 , 0 , 1 , 46 , 1 , 46 , 0 , 0 , 19 , 19 , 19 , 9 . 293063392 , 12 . 612014603 , - 3 . 318951211 , 0 , 30 . 534351145 , 30 . 534351145 <nl> + 050 , 2 , 4 , 20 , 201 , Kansas , Washington County , 5799 , 5799 , 5798 , 5845 , - 1 , 47 , 13 , 63 , 13 , 94 , 0 , - 31 , 0 , 2 , 0 , 76 , 0 , 78 , - 1 , 0 , 114 , 114 , 114 , 10 . 821953105 , 16 . 147041141 , - 5 . 325088036 , 0 . 3435540668 , 13 . 055054539 , 13 . 398608606 <nl> + 050 , 2 , 4 , 20 , 203 , Kansas , Wichita County , 2234 , 2234 , 2242 , 2276 , 8 , 34 , 7 , 31 , 2 , 24 , 5 , 7 , 1 , 4 , 2 , 23 , 3 , 27 , 0 , 0 , 26 , 26 , 26 , 13 . 722886233 , 10 . 624169987 , 3 . 0987162461 , 1 . 7706949978 , 10 . 181496237 , 11 . 952191235 <nl> + 050 , 2 , 4 , 20 , 205 , Kansas , Wilson County , 9409 , 9409 , 9402 , 9300 , - 7 , - 102 , 30 , 118 , 34 , 145 , - 4 , - 27 , 0 , 0 , - 3 , - 74 , - 3 , - 74 , 0 , - 1 , 121 , 121 , 121 , 12 . 618971233 , 15 . 506362956 , - 2 . 887391723 , 0 , - 7 . 913592129 , - 7 . 913592129 <nl> + 050 , 2 , 4 , 20 , 207 , Kansas , Woodson County , 3309 , 3309 , 3307 , 3292 , - 2 , - 15 , 9 , 42 , 10 , 62 , - 1 , - 20 , 0 , 0 , 0 , 4 , 0 , 4 , - 1 , 1 , 39 , 39 , 39 , 12 . 729201394 , 18 . 790725868 , - 6 . 061524473 , 0 , 1 . 2123048947 , 1 . 2123048947 <nl> + 050 , 2 , 4 , 20 , 209 , Kansas , Wyandotte County , 157505 , 157505 , 157811 , 158224 , 306 , 413 , 672 , 2756 , 318 , 1318 , 354 , 1438 , 141 , 561 , - 189 , - 1598 , - 48 , - 1037 , 0 , 12 , 1335 , 1335 , 1335 , 17 . 441106207 , 8 . 3408483238 , 9 . 1002578828 , 3 . 5502396886 , - 10 . 11280396 , - 6 . 562564273 <nl> + 040 , 3 , 6 , 21 , 000 , Kentucky , Kentucky , 4339367 , 4339362 , 4347223 , 4369356 , 7861 , 22133 , 13991 , 56447 , 10486 , 41945 , 3505 , 14502 , 1458 , 4845 , 2920 , 2841 , 4378 , 7686 , - 22 , - 55 , 125870 , 125877 , 125879 , 12 . 951640776 , 9 . 6241885721 , 3 . 3274522034 , 1 . 1116746604 , 0 . 6518612405 , 1 . 763535901 <nl> + 050 , 3 , 6 , 21 , 001 , Kentucky , Adair County , 18656 , 18656 , 18615 , 18686 , - 41 , 71 , 53 , 205 , 62 , 220 , - 9 , - 15 , 0 , 0 , - 32 , 86 , - 32 , 86 , 0 , 0 , 1055 , 1055 , 1055 , 10 . 991662422 , 11 . 795930404 , - 0 . 804267982 , 0 , 4 . 6111364307 , 4 . 6111364307 <nl> + 050 , 3 , 6 , 21 , 003 , Kentucky , Allen County , 19956 , 19956 , 20000 , 20140 , 44 , 140 , 58 , 236 , 67 , 233 , - 9 , 3 , 1 , 9 , 52 , 128 , 53 , 137 , 0 , 0 , 197 , 197 , 197 , 11 . 758844046 , 11 . 609367215 , 0 . 1494768311 , 0 . 4484304933 , 6 . 3776781266 , 6 . 8261086198 <nl> + 050 , 3 , 6 , 21 , 005 , Kentucky , Anderson County , 21421 , 21421 , 21479 , 21644 , 58 , 165 , 69 , 265 , 46 , 176 , 23 , 89 , 2 , 4 , 33 , 72 , 35 , 76 , 0 , 0 , 108 , 108 , 108 , 12 . 290425063 , 8 . 1626974005 , 4 . 1277276627 , 0 . 18551585 , 3 . 3392853002 , 3 . 5248011502 <nl> + 050 , 3 , 6 , 21 , 007 , Kentucky , Ballard County , 8249 , 8249 , 8263 , 8253 , 14 , - 10 , 23 , 96 , 24 , 107 , - 1 , - 11 , 0 , 2 , 14 , 0 , 14 , 2 , 1 , - 1 , 127 , 127 , 127 , 11 . 625090821 , 12 . 957132478 , - 1 . 332041657 , 0 . 2421893921 , 0 , 0 . 2421893921 <nl> + 050 , 3 , 6 , 21 , 009 , Kentucky , Barren County , 42173 , 42173 , 42135 , 42269 , - 38 , 134 , 125 , 509 , 124 , 472 , 1 , 37 , 4 , 14 , - 43 , 84 , - 39 , 98 , 0 , - 1 , 702 , 702 , 702 , 12 . 061039761 , 11 . 184304061 , 0 . 8767356997 , 0 . 3317378323 , 1 . 990426994 , 2 . 3221648263 <nl> + 050 , 3 , 6 , 21 , 011 , Kentucky , Bath County , 11591 , 11591 , 11624 , 11742 , 33 , 118 , 39 , 156 , 33 , 155 , 6 , 1 , 0 , 1 , 27 , 115 , 27 , 116 , 0 , 1 , 103 , 103 , 103 , 13 . 352734743 , 13 . 267140289 , 0 . 0855944535 , 0 . 0855944535 , 9 . 8433621501 , 9 . 9289566036 <nl> + 050 , 3 , 6 , 21 , 013 , Kentucky , Bell County , 28691 , 28691 , 28700 , 28725 , 9 , 25 , 88 , 363 , 108 , 362 , - 20 , 1 , 1 , 5 , 28 , 20 , 29 , 25 , 0 , - 1 , 952 , 952 , 952 , 12 . 642577275 , 12 . 607749238 , 0 . 0348280366 , 0 . 1741401828 , 0 . 6965607314 , 0 . 8707009142 <nl> + 050 , 3 , 6 , 21 , 015 , Kentucky , Boone County , 118811 , 118811 , 119314 , 121737 , 503 , 2423 , 429 , 1710 , 203 , 759 , 226 , 951 , 79 , 275 , 196 , 1188 , 275 , 1463 , 2 , 9 , 835 , 835 , 835 , 14 . 187868957 , 6 . 2974225371 , 7 . 8904464201 , 2 . 2816748323 , 9 . 8568352755 , 12 . 138510108 <nl> + 050 , 3 , 6 , 21 , 017 , Kentucky , Bourbon County , 19985 , 19985 , 19972 , 19998 , - 13 , 26 , 57 , 229 , 60 , 221 , - 3 , 8 , 5 , 20 , - 16 , - 1 , - 11 , 19 , 1 , - 1 , 236 , 236 , 236 , 11 . 458593945 , 11 . 05829372 , 0 . 4003002252 , 1 . 0007505629 , - 0 . 050037528 , 0 . 9507130348 <nl> + 050 , 3 , 6 , 21 , 019 , Kentucky , Boyd County , 49542 , 49538 , 49613 , 49466 , 75 , - 147 , 143 , 581 , 150 , 574 , - 7 , 7 , 5 , 14 , 76 , - 166 , 81 , - 152 , 1 , - 2 , 2338 , 2338 , 2338 , 11 . 728015018 , 11 . 586713633 , 0 . 1413013858 , 0 . 2826027715 , - 3 . 350861434 , - 3 . 068258662 <nl> + 050 , 3 , 6 , 21 , 021 , Kentucky , Boyle County , 28432 , 28451 , 28480 , 28550 , 29 , 70 , 74 , 285 , 88 , 293 , - 14 , - 8 , 8 , 24 , 36 , 55 , 44 , 79 , - 1 , - 1 , 2301 , 2301 , 2301 , 9 . 9947396107 , 10 . 275293705 , - 0 . 280554094 , 0 . 841662283 , 1 . 9288093986 , 2 . 7704716816 <nl> + 050 , 3 , 6 , 21 , 023 , Kentucky , Bracken County , 8488 , 8488 , 8506 , 8513 , 18 , 7 , 27 , 117 , 14 , 108 , 13 , 9 , 0 , 0 , 4 , 0 , 4 , 0 , 1 , - 2 , 41 , 41 , 41 , 13 . 749338974 , 12 . 691697515 , 1 . 0576414595 , 0 , 0 , 0 <nl> + 050 , 3 , 6 , 21 , 025 , Kentucky , Breathitt County , 13878 , 13878 , 13885 , 13842 , 7 , - 43 , 37 , 165 , 51 , 193 , - 14 , - 28 , 0 , 0 , 21 , - 14 , 21 , - 14 , 0 , - 1 , 322 , 322 , 322 , 11 . 901756411 , 13 . 921448408 , - 2 . 019691997 , 0 , - 1 . 009845998 , - 1 . 009845998 <nl> + 050 , 3 , 6 , 21 , 027 , Kentucky , Breckinridge County , 20059 , 20051 , 20075 , 20256 , 24 , 181 , 58 , 228 , 56 , 201 , 2 , 27 , 0 , 1 , 22 , 152 , 22 , 153 , 0 , 1 , 301 , 301 , 301 , 11 . 306439215 , 9 . 9675187821 , 1 . 3389204334 , 0 . 0495896457 , 7 . 5376261437 , 7 . 5872157893 <nl> + 050 , 3 , 6 , 21 , 029 , Kentucky , Bullitt County , 74319 , 74319 , 74479 , 75109 , 160 , 630 , 184 , 738 , 125 , 491 , 59 , 247 , 3 , 5 , 96 , 376 , 99 , 381 , 2 , 2 , 340 , 340 , 340 , 9 . 8671016392 , 6 . 564697703 , 3 . 3024039361 , 0 . 0668502821 , 5 . 0271412145 , 5 . 0939914966 <nl> + 050 , 3 , 6 , 21 , 031 , Kentucky , Butler County , 12690 , 12690 , 12730 , 12827 , 40 , 97 , 43 , 180 , 21 , 123 , 22 , 57 , 3 , 17 , 16 , 24 , 19 , 41 , - 1 , - 1 , 203 , 203 , 203 , 14 . 086160347 , 9 . 6255429041 , 4 . 4606174434 , 1 . 3303595884 , 1 . 878154713 , 3 . 2085143014 <nl> + 050 , 3 , 6 , 21 , 033 , Kentucky , Caldwell County , 12984 , 12984 , 12974 , 12973 , - 10 , - 1 , 39 , 162 , 56 , 170 , - 17 , - 8 , 1 , 4 , 6 , 4 , 7 , 8 , 0 , - 1 , 148 , 148 , 148 , 12 . 486992716 , 13 . 103634332 , - 0 . 616641616 , 0 . 3083208078 , 0 . 3083208078 , 0 . 6166416156 <nl> + 050 , 3 , 6 , 21 , 035 , Kentucky , Calloway County , 37191 , 37191 , 37292 , 37544 , 101 , 252 , 106 , 413 , 95 , 396 , 11 , 17 , 11 , 56 , 79 , 180 , 90 , 236 , 0 , - 1 , 2952 , 2952 , 2952 , 11 . 037468598 , 10 . 583141803 , 0 . 4543267946 , 1 . 4966059116 , 4 . 8105190016 , 6 . 3071249131 <nl> + 050 , 3 , 6 , 21 , 037 , Kentucky , Campbell County , 90336 , 90336 , 90534 , 90940 , 198 , 406 , 308 , 1232 , 201 , 825 , 107 , 407 , 8 , 33 , 83 , - 28 , 91 , 5 , 0 , - 6 , 2963 , 2963 , 2963 , 13 . 577702591 , 9 . 0922115565 , 4 . 4854910345 , 0 . 3636884623 , - 0 . 30858415 , 0 . 0551043125 <nl> + 050 , 3 , 6 , 21 , 039 , Kentucky , Carlisle County , 5104 , 5104 , 5105 , 5048 , 1 , - 57 , 12 , 52 , 6 , 70 , 6 , - 18 , 0 , 0 , - 4 , - 39 , - 4 , - 39 , - 1 , 0 , 60 , 60 , 60 , 10 . 243277849 , 13 . 789027874 , - 3 . 545750025 , 0 , - 7 . 682458387 , - 7 . 682458387 <nl> + 050 , 3 , 6 , 21 , 041 , Kentucky , Carroll County , 10811 , 10811 , 10801 , 11013 , - 10 , 212 , 39 , 174 , 28 , 121 , 11 , 53 , 6 , 23 , - 28 , 136 , - 22 , 159 , 1 , 0 , 325 , 325 , 325 , 15 . 953057669 , 11 . 093792977 , 4 . 8592646924 , 2 . 108737508 , 12 . 469056569 , 14 . 577794077 <nl> + 050 , 3 , 6 , 21 , 043 , Kentucky , Carter County , 27720 , 27718 , 27706 , 27586 , - 12 , - 120 , 84 , 343 , 88 , 330 , - 4 , 13 , 0 , 0 , - 6 , - 135 , - 6 , - 135 , - 2 , 2 , 626 , 626 , 626 , 12 . 406858135 , 11 . 93662736 , 0 . 4702307748 , 0 , - 4 . 883165738 , - 4 . 883165738 <nl> + 050 , 3 , 6 , 21 , 045 , Kentucky , Casey County , 15955 , 15955 , 15960 , 15909 , 5 , - 51 , 49 , 209 , 51 , 200 , - 2 , 9 , 0 , 9 , 8 , - 67 , 8 , - 58 , - 1 , - 2 , 480 , 480 , 480 , 13 . 116194421 , 12 . 551382221 , 0 . 5648121999 , 0 . 5648121999 , - 4 . 204713044 , - 3 . 639900844 <nl> + 050 , 3 , 6 , 21 , 047 , Kentucky , Christian County , 73955 , 73950 , 74119 , 73591 , 169 , - 528 , 375 , 1504 , 138 , 589 , 237 , 915 , 155 , 124 , - 229 , - 1589 , - 74 , - 1465 , 6 , 22 , 5389 , 5389 , 5390 , 20 . 364227202 , 7 . 9750863178 , 12 . 389140884 , 1 . 6789655406 , - 21 . 515131 , - 19 . 83616546 <nl> + 050 , 3 , 6 , 21 , 049 , Kentucky , Clark County , 35613 , 35613 , 35623 , 35537 , 10 , - 86 , 113 , 456 , 107 , 347 , 6 , 109 , 2 , 16 , 3 , - 212 , 5 , - 196 , - 1 , 1 , 458 , 458 , 458 , 12 . 81618887 , 9 . 7526700393 , 3 . 0635188308 , 0 . 4496908375 , - 5 . 958403598 , - 5 . 50871276 <nl> + 050 , 3 , 6 , 21 , 051 , Kentucky , Clay County , 21730 , 21730 , 21713 , 21720 , - 17 , 7 , 62 , 256 , 72 , 233 , - 10 , 23 , 0 , 0 , - 6 , - 15 , - 6 , - 15 , - 1 , - 1 , 2240 , 2240 , 2240 , 11 . 788271591 , 10 . 729169065 , 1 . 0591025257 , 0 , - 0 . 690719039 , - 0 . 690719039 <nl> + 050 , 3 , 6 , 21 , 053 , Kentucky , Clinton County , 10272 , 10272 , 10275 , 10201 , 3 , - 74 , 31 , 133 , 25 , 114 , 6 , 19 , 3 , 8 , - 5 , - 100 , - 2 , - 92 , - 1 , - 1 , 136 , 136 , 136 , 12 . 990818519 , 11 . 134987302 , 1 . 855831217 , 0 . 7814026177 , - 9 . 767532721 , - 8 . 986130104 <nl> + 050 , 3 , 6 , 21 , 055 , Kentucky , Crittenden County , 9315 , 9315 , 9333 , 9336 , 18 , 3 , 29 , 114 , 13 , 102 , 16 , 12 , 0 , 2 , 2 , - 10 , 2 , - 8 , 0 , - 1 , 210 , 210 , 210 , 12 . 212759119 , 10 . 927205528 , 1 . 2855535915 , 0 . 2142589319 , - 1 . 07129466 , - 0 . 857035728 <nl> + 050 , 3 , 6 , 21 , 057 , Kentucky , Cumberland County , 6856 , 6856 , 6857 , 6832 , 1 , - 25 , 17 , 80 , 16 , 118 , 1 , - 38 , 0 , 0 , 1 , 13 , 1 , 13 , - 1 , 0 , 86 , 86 , 86 , 11 . 688216816 , 17 . 240119804 , - 5 . 551902988 , 0 , 1 . 8993352327 , 1 . 8993352327 <nl> + 050 , 3 , 6 , 21 , 059 , Kentucky , Daviess County , 96656 , 96659 , 96756 , 97234 , 97 , 478 , 332 , 1323 , 234 , 942 , 98 , 381 , 12 , 51 , - 9 , 51 , 3 , 102 , - 4 , - 5 , 2581 , 2581 , 2581 , 13 . 639878344 , 9 . 7118408165 , 3 . 9280375277 , 0 . 525800299 , 0 . 525800299 , 1 . 051600598 <nl> + 050 , 3 , 6 , 21 , 061 , Kentucky , Edmonson County , 12161 , 12161 , 12157 , 12090 , - 4 , - 67 , 26 , 108 , 27 , 147 , - 1 , - 39 , 0 , 0 , - 2 , - 27 , - 2 , - 27 , - 1 , - 1 , 323 , 323 , 323 , 8 . 9083185549 , 12 . 125211366 , - 3 . 216892811 , 0 , - 2 . 227079639 , - 2 . 227079639 <nl> + 050 , 3 , 6 , 21 , 063 , Kentucky , Elliott County , 7852 , 7852 , 7848 , 7707 , - 4 , - 141 , 17 , 70 , 5 , 66 , 12 , 4 , 0 , 0 , - 15 , - 143 , - 15 , - 143 , - 1 , - 2 , 1061 , 1061 , 1061 , 9 . 0003214401 , 8 . 4860173578 , 0 . 5143040823 , 0 , - 18 . 38637094 , - 18 . 38637094 <nl> + 050 , 3 , 6 , 21 , 065 , Kentucky , Estill County , 14672 , 14672 , 14686 , 14666 , 14 , - 20 , 39 , 156 , 45 , 180 , - 6 , - 24 , 1 , 5 , 19 , 0 , 20 , 5 , 0 , - 1 , 118 , 118 , 118 , 10 . 629599346 , 12 . 264922322 , - 1 . 635322976 , 0 . 3406922867 , 0 , 0 . 3406922867 <nl> + 050 , 3 , 6 , 21 , 067 , Kentucky , Fayette County , 295803 , 295803 , 296792 , 301569 , 989 , 4777 , 1000 , 3950 , 515 , 1945 , 485 , 2005 , 328 , 1186 , 175 , 1575 , 503 , 2761 , 1 , 11 , 12804 , 12811 , 12811 , 13 . 20273213 , 6 . 5010921501 , 6 . 7016399799 , 3 . 9641621028 , 5 . 2643805328 , 9 . 2285426356 <nl> + 050 , 3 , 6 , 21 , 069 , Kentucky , Fleming County , 14348 , 14355 , 14394 , 14512 , 39 , 118 , 49 , 199 , 51 , 177 , - 2 , 22 , 4 , 11 , 38 , 84 , 42 , 95 , - 1 , 1 , 22 , 22 , 22 , 13 . 76876773 , 12 . 246592403 , 1 . 5221753269 , 0 . 7610876635 , 5 . 8119421573 , 6 . 5730298208 <nl> + 050 , 3 , 6 , 21 , 071 , Kentucky , Floyd County , 39451 , 39451 , 39430 , 39207 , - 21 , - 223 , 130 , 529 , 143 , 530 , - 13 , - 1 , 2 , 9 , - 9 , - 233 , - 7 , - 224 , - 1 , 2 , 790 , 790 , 790 , 13 . 454226382 , 13 . 479659702 , - 0 . 02543332 , 0 . 2288998817 , - 5 . 925963605 , - 5 . 697063723 <nl> + 050 , 3 , 6 , 21 , 073 , Kentucky , Franklin County , 49285 , 49285 , 49283 , 49393 , - 2 , 110 , 148 , 603 , 122 , 446 , 26 , 157 , 18 , 81 , - 46 , - 127 , - 28 , - 46 , 0 , - 1 , 2061 , 2061 , 2061 , 12 . 221816855 , 9 . 0396854352 , 3 . 18213142 , 1 . 6417365925 , - 2 . 57408083 , - 0 . 932344238 <nl> + 050 , 3 , 6 , 21 , 075 , Kentucky , Fulton County , 6813 , 6813 , 6825 , 6755 , 12 , - 70 , 20 , 82 , 19 , 112 , 1 , - 30 , 0 , 0 , 11 , - 40 , 11 , - 40 , 0 , 0 , 445 , 445 , 445 , 12 . 076583211 , 16 . 494845361 , - 4 . 41826215 , 0 , - 5 . 8910162 , - 5 . 8910162 <nl> + 050 , 3 , 6 , 21 , 077 , Kentucky , Gallatin County , 8589 , 8589 , 8613 , 8612 , 24 , - 1 , 35 , 135 , 5 , 82 , 30 , 53 , 2 , 7 , - 8 , - 60 , - 6 , - 53 , 0 , - 1 , 85 , 85 , 85 , 15 . 674891147 , 9 . 5210449927 , 6 . 1538461538 , 0 . 8127721335 , - 6 . 966618287 , - 6 . 153846154 <nl> + 050 , 3 , 6 , 21 , 079 , Kentucky , Garrard County , 16912 , 16912 , 16932 , 16885 , 20 , - 47 , 44 , 185 , 40 , 165 , 4 , 20 , 0 , 0 , 17 , - 67 , 17 , - 67 , - 1 , 0 , 109 , 109 , 109 , 10 . 94124257 , 9 . 7584055357 , 1 . 1828370346 , 0 , - 3 . 962504066 , - 3 . 962504066 <nl> + 050 , 3 , 6 , 21 , 081 , Kentucky , Grant County , 24662 , 24662 , 24689 , 24816 , 27 , 127 , 91 , 365 , 58 , 218 , 33 , 147 , 1 , 7 , - 7 , - 25 , - 6 , - 18 , 0 , - 2 , 457 , 457 , 457 , 14 . 745985254 , 8 . 8071911928 , 5 . 9387940612 , 0 . 2827997172 , - 1 . 00999899 , - 0 . 727199273 <nl> + 050 , 3 , 6 , 21 , 083 , Kentucky , Graves County , 37121 , 37121 , 37195 , 37519 , 74 , 324 , 126 , 516 , 113 , 418 , 13 , 98 , 18 , 74 , 44 , 153 , 62 , 227 , - 1 , - 1 , 548 , 548 , 548 , 13 . 812672324 , 11 . 189335332 , 2 . 6233369917 , 1 . 9808871162 , 4 . 0956179565 , 6 . 0765050727 <nl> + 050 , 3 , 6 , 21 , 085 , Kentucky , Grayson County , 25746 , 25746 , 25808 , 25957 , 62 , 149 , 84 , 333 , 73 , 276 , 11 , 57 , 0 , - 1 , 51 , 92 , 51 , 91 , 0 , 1 , 768 , 768 , 768 , 12 . 86583599 , 10 . 663575775 , 2 . 2022602144 , - 0 . 038636144 , 3 . 5545252584 , 3 . 5158891143 <nl> + 050 , 3 , 6 , 21 , 087 , Kentucky , Green County , 11258 , 11258 , 11247 , 11220 , - 11 , - 27 , 26 , 116 , 27 , 132 , - 1 , - 16 , 1 , 2 , - 11 , - 12 , - 10 , - 10 , 0 , - 1 , 113 , 113 , 113 , 10 . 326256287 , 11 . 750567499 , - 1 . 424311212 , 0 . 1780389015 , - 1 . 068233409 , - 0 . 890194507 <nl> + 050 , 3 , 6 , 21 , 089 , Kentucky , Greenup County , 36910 , 36914 , 36907 , 36865 , - 7 , - 42 , 88 , 360 , 116 , 453 , - 28 , - 93 , 1 , 2 , 23 , 51 , 24 , 53 , - 3 , - 2 , 454 , 454 , 454 , 9 . 7598004663 , 12 . 281082253 , - 2 . 521281787 , 0 . 0542211137 , 1 . 3826383994 , 1 . 4368595131 <nl> + 050 , 3 , 6 , 21 , 091 , Kentucky , Hancock County , 8565 , 8565 , 8563 , 8572 , - 2 , 9 , 27 , 114 , 12 , 79 , 15 , 35 , 0 , 0 , - 16 , - 25 , - 16 , - 25 , - 1 , - 1 , 90 , 90 , 90 , 13 . 306098629 , 9 . 2208929093 , 4 . 0852057193 , 0 , - 2 . 918004085 , - 2 . 918004085 <nl> + 050 , 3 , 6 , 21 , 093 , Kentucky , Hardin County , 105543 , 105549 , 106999 , 107456 , 1450 , 457 , 404 , 1633 , 190 , 834 , 214 , 799 , 95 , 87 , 1107 , - 431 , 1202 , - 344 , 34 , 2 , 3256 , 3256 , 3256 , 15 . 229302185 , 7 . 7778554942 , 7 . 4514466904 , 0 . 8113590264 , - 4 . 019491269 , - 3 . 208132242 <nl> + 050 , 3 , 6 , 21 , 095 , Kentucky , Harlan County , 29278 , 29278 , 29240 , 29060 , - 38 , - 180 , 90 , 372 , 108 , 394 , - 18 , - 22 , 1 , 2 , - 21 , - 159 , - 20 , - 157 , 0 , - 1 , 627 , 627 , 627 , 12 . 761578045 , 13 . 516295026 , - 0 . 754716981 , 0 . 0686106346 , - 5 . 454545455 , - 5 . 38593482 <nl> + 050 , 3 , 6 , 21 , 097 , Kentucky , Harrison County , 18846 , 18849 , 18842 , 18777 , - 7 , - 65 , 57 , 222 , 54 , 212 , 3 , 10 , 4 , 9 , - 12 , - 85 , - 8 , - 76 , - 2 , 1 , 275 , 275 , 275 , 11 . 802546586 , 11 . 270900343 , 0 . 5316462426 , 0 . 4784816183 , - 4 . 518993062 , - 4 . 040511444 <nl> + 050 , 3 , 6 , 21 , 099 , Kentucky , Hart County , 18199 , 18199 , 18214 , 18235 , 15 , 21 , 53 , 224 , 51 , 193 , 2 , 31 , 0 , 0 , 14 , - 10 , 14 , - 10 , - 1 , 0 , 227 , 227 , 227 , 12 . 291146534 , 10 . 590139647 , 1 . 7010068863 , 0 , - 0 . 548711899 , - 0 . 548711899 <nl> + 050 , 3 , 6 , 21 , 101 , Kentucky , Henderson County , 46250 , 46250 , 46292 , 46406 , 42 , 114 , 148 , 606 , 125 , 494 , 23 , 112 , 6 , 18 , 15 , - 13 , 21 , 5 , - 2 , - 3 , 1165 , 1165 , 1165 , 13 . 074715744 , 10 . 658266629 , 2 . 4164491143 , 0 . 3883578934 , - 0 . 280480701 , 0 . 1078771926 <nl> + 050 , 3 , 6 , 21 , 103 , Kentucky , Henry County , 15416 , 15416 , 15412 , 15443 , - 4 , 31 , 47 , 183 , 33 , 157 , 14 , 26 , 6 , 21 , - 25 , - 15 , - 19 , 6 , 1 , - 1 , 80 , 80 , 80 , 11 . 861934857 , 10 . 176632637 , 1 . 6853022201 , 1 . 3612056393 , - 0 . 972289742 , 0 . 3889158969 <nl> + 050 , 3 , 6 , 21 , 105 , Kentucky , Hickman County , 4902 , 4902 , 4882 , 4784 , - 20 , - 98 , 10 , 43 , 7 , 78 , 3 , - 35 , 0 , 0 , - 23 , - 63 , - 23 , - 63 , 0 , 0 , 212 , 212 , 212 , 8 . 8971653217 , 16 . 139044072 , - 7 . 24187875 , 0 , - 13 . 03538175 , - 13 . 03538175 <nl> + 050 , 3 , 6 , 21 , 107 , Kentucky , Hopkins County , 46920 , 46920 , 46892 , 46909 , - 28 , 17 , 136 , 563 , 144 , 521 , - 8 , 42 , 2 , 6 , - 20 , - 30 , - 18 , - 24 , - 2 , - 1 , 1086 , 1086 , 1086 , 12 . 004136416 , 11 . 108623575 , 0 . 895512841 , 0 . 1279304059 , - 0 . 639652029 , - 0 . 511721623 <nl> + 050 , 3 , 6 , 21 , 109 , Kentucky , Jackson County , 13494 , 13494 , 13522 , 13443 , 28 , - 79 , 37 , 152 , 40 , 151 , - 3 , 1 , 1 , 6 , 30 , - 86 , 31 , - 80 , 0 , 0 , 110 , 110 , 110 , 11 . 27387354 , 11 . 199703319 , 0 . 0741702207 , 0 . 4450213239 , - 6 . 378638976 , - 5 . 933617653 <nl> + 050 , 3 , 6 , 21 , 111 , Kentucky , Jefferson County , 741096 , 741096 , 742176 , 746906 , 1080 , 4730 , 2561 , 10239 , 1673 , 6823 , 888 , 3416 , 332 , 1342 , - 122 , 18 , 210 , 1360 , - 18 , - 46 , 14153 , 14153 , 14153 , 13 . 75209693 , 9 . 1640352915 , 4 . 588061638 , 1 . 8024527863 , 0 . 0241759688 , 1 . 8266287552 <nl> + 050 , 3 , 6 , 21 , 113 , Kentucky , Jessamine County , 48586 , 48586 , 48729 , 49046 , 143 , 317 , 171 , 692 , 105 , 347 , 66 , 345 , 17 , 81 , 60 , - 108 , 77 , - 27 , 0 , - 1 , 1779 , 1779 , 1779 , 14 . 154947584 , 7 . 0979289184 , 7 . 0570186653 , 1 . 6568652519 , - 2 . 209153669 , - 0 . 552288417 <nl> + 050 , 3 , 6 , 21 , 115 , Kentucky , Johnson County , 23356 , 23358 , 23411 , 23396 , 53 , - 15 , 71 , 292 , 75 , 284 , - 4 , 8 , 0 , - 1 , 56 , - 20 , 56 , - 21 , 1 , - 2 , 528 , 528 , 528 , 12 . 476766296 , 12 . 134937082 , 0 . 3418292136 , - 0 . 042728652 , - 0 . 854573034 , - 0 . 897301686 <nl> + 050 , 3 , 6 , 21 , 117 , Kentucky , Kenton County , 159720 , 159721 , 159897 , 160406 , 176 , 509 , 623 , 2463 , 326 , 1304 , 297 , 1159 , 41 , 131 , - 160 , - 779 , - 119 , - 648 , - 2 , - 2 , 2332 , 2332 , 2332 , 15 . 379187832 , 8 . 1422902689 , 7 . 2368975626 , 0 . 8179754795 , - 4 . 864144263 , - 4 . 046168784 <nl> + 050 , 3 , 6 , 21 , 119 , Kentucky , Knott County , 16346 , 16346 , 16325 , 16289 , - 21 , - 36 , 49 , 199 , 39 , 181 , 10 , 18 , 3 , 13 , - 35 , - 66 , - 32 , - 53 , 1 , - 1 , 677 , 677 , 677 , 12 . 203348255 , 11 . 09952781 , 1 . 1038204452 , 0 . 7972036549 , - 4 . 047341632 , - 3 . 250137978 <nl> + 050 , 3 , 6 , 21 , 121 , Kentucky , Knox County , 31883 , 31883 , 31877 , 31888 , - 6 , 11 , 108 , 426 , 100 , 418 , 8 , 8 , 2 , 3 , - 15 , 2 , - 13 , 5 , - 1 , - 2 , 642 , 642 , 642 , 13 . 361561985 , 13 . 110640634 , 0 . 2509213518 , 0 . 0940955069 , 0 . 062730338 , 0 . 1568258449 <nl> + 050 , 3 , 6 , 21 , 123 , Kentucky , Larue County , 14193 , 14193 , 14215 , 14315 , 22 , 100 , 41 , 172 , 30 , 159 , 11 , 13 , 3 , 6 , 9 , 82 , 12 , 88 , - 1 , - 1 , 313 , 313 , 313 , 12 . 057483351 , 11 . 146161935 , 0 . 9113214161 , 0 . 4206098843 , 5 . 7483350859 , 6 . 1689449702 <nl> + 050 , 3 , 6 , 21 , 125 , Kentucky , Laurel County , 58849 , 58849 , 59000 , 59355 , 151 , 355 , 178 , 724 , 138 , 570 , 40 , 154 , 7 , 30 , 102 , 173 , 109 , 203 , 2 , - 2 , 699 , 699 , 699 , 12 . 234379621 , 9 . 6320392041 , 2 . 6023404165 , 0 . 5069494318 , 2 . 92340839 , 3 . 4303578218 <nl> + 050 , 3 , 6 , 21 , 127 , Kentucky , Lawrence County , 15860 , 15858 , 15890 , 16035 , 32 , 145 , 55 , 217 , 67 , 204 , - 12 , 13 , 1 , 4 , 44 , 129 , 45 , 133 , - 1 , - 1 , 108 , 108 , 108 , 13 . 594361785 , 12 . 779953015 , 0 . 8144087706 , 0 . 250587314 , 8 . 0814408771 , 8 . 3320281911 <nl> + 050 , 3 , 6 , 21 , 129 , Kentucky , Lee County , 7887 , 7887 , 7876 , 7817 , - 11 , - 59 , 16 , 70 , 25 , 124 , - 9 , - 54 , 0 , 0 , - 1 , - 6 , - 1 , - 6 , - 1 , 1 , 1016 , 1016 , 1016 , 8 . 9211750462 , 15 . 803224368 , - 6 . 882049321 , 0 , - 0 . 764672147 , - 0 . 764672147 <nl> + 050 , 3 , 6 , 21 , 131 , Kentucky , Leslie County , 11310 , 11310 , 11297 , 11233 , - 13 , - 64 , 37 , 166 , 49 , 163 , - 12 , 3 , 0 , 0 , 0 , - 67 , 0 , - 67 , - 1 , 0 , 227 , 227 , 227 , 14 . 735907679 , 14 . 469596094 , 0 . 2663115846 , 0 , - 5 . 947625388 , - 5 . 947625388 <nl> + 050 , 3 , 6 , 21 , 133 , Kentucky , Letcher County , 24519 , 24519 , 24574 , 24446 , 55 , - 128 , 72 , 299 , 76 , 283 , - 4 , 16 , 0 , 1 , 58 , - 144 , 58 , - 143 , 1 , - 1 , 243 , 243 , 243 , 12 . 199102407 , 11 . 54630763 , 0 . 6527947776 , 0 . 0407996736 , - 5 . 875152999 , - 5 . 834353325 <nl> + 050 , 3 , 6 , 21 , 135 , Kentucky , Lewis County , 13870 , 13872 , 13871 , 13878 , - 1 , 7 , 41 , 166 , 35 , 149 , 6 , 17 , 0 , 0 , - 7 , - 9 , - 7 , - 9 , 0 , - 1 , 139 , 139 , 139 , 11 . 964395113 , 10 . 739125734 , 1 . 2252693791 , 0 , - 0 . 648672024 , - 0 . 648672024 <nl> + 050 , 3 , 6 , 21 , 137 , Kentucky , Lincoln County , 24742 , 24723 , 24742 , 24731 , 19 , - 11 , 90 , 350 , 66 , 265 , 24 , 85 , 2 , 7 , - 6 , - 103 , - 4 , - 96 , - 1 , 0 , 219 , 219 , 219 , 14 . 14913185 , 10 . 712914115 , 3 . 4362177349 , 0 . 282982637 , - 4 . 163887373 , - 3 . 880904736 <nl> + 050 , 3 , 6 , 21 , 139 , Kentucky , Livingston County , 9519 , 9519 , 9542 , 9531 , 23 , - 11 , 23 , 102 , 25 , 127 , - 2 , - 25 , 0 , 1 , 25 , 12 , 25 , 13 , 0 , 1 , 69 , 69 , 69 , 10 . 695747916 , 13 . 317254758 , - 2 . 621506842 , 0 . 1048602737 , 1 . 2583232842 , 1 . 3631835579 <nl> + 050 , 3 , 6 , 21 , 141 , Kentucky , Logan County , 26835 , 26835 , 26826 , 26792 , - 9 , - 34 , 82 , 321 , 85 , 279 , - 3 , 42 , 2 , 13 , - 7 , - 88 , - 5 , - 75 , - 1 , - 1 , 277 , 277 , 277 , 11 . 973590958 , 10 . 406952889 , 1 . 5666380693 , 0 . 4849117834 , - 3 . 282479764 , - 2 . 797567981 <nl> + 050 , 3 , 6 , 21 , 143 , Kentucky , Lyon County , 8314 , 8314 , 8317 , 8317 , 3 , 0 , 17 , 67 , 26 , 131 , - 9 , - 64 , 0 , 1 , 13 , 61 , 13 , 62 , - 1 , 2 , 1123 , 1123 , 1123 , 8 . 0557893471 , 15 . 750871709 , - 7 . 695082361 , 0 . 1202356619 , 7 . 3343753757 , 7 . 4546110376 <nl> + 050 , 3 , 6 , 21 , 145 , Kentucky , McCracken County , 65565 , 65565 , 65527 , 65864 , - 38 , 337 , 184 , 743 , 192 , 810 , - 8 , - 67 , 5 , 21 , - 32 , 383 , - 27 , 404 , - 3 , 0 , 1189 , 1189 , 1189 , 11 . 309754854 , 12 . 329611617 , - 1 . 019856763 , 0 . 3196565975 , 5 . 8299274684 , 6 . 1495840659 <nl> + 050 , 3 , 6 , 21 , 147 , Kentucky , McCreary County , 18306 , 18306 , 18315 , 18285 , 9 , - 30 , 54 , 225 , 46 , 166 , 8 , 59 , 0 , 0 , 2 , - 89 , 2 , - 89 , - 1 , 0 , 2111 , 2111 , 2111 , 12 . 295081967 , 9 . 0710382514 , 3 . 2240437158 , 0 , - 4 . 863387978 , - 4 . 863387978 <nl> + 050 , 3 , 6 , 21 , 149 , Kentucky , McLean County , 9531 , 9531 , 9538 , 9527 , 7 , - 11 , 29 , 117 , 19 , 119 , 10 , - 2 , 0 , 0 , - 3 , - 9 , - 3 , - 9 , 0 , 0 , 82 , 82 , 82 , 12 . 273800157 , 12 . 483608707 , - 0 . 20980855 , 0 , - 0 . 944138474 , - 0 . 944138474 <nl> + 050 , 3 , 6 , 21 , 151 , Kentucky , Madison County , 82916 , 82916 , 83146 , 84188 , 230 , 1042 , 242 , 995 , 161 , 613 , 81 , 382 , 18 , 63 , 129 , 593 , 147 , 656 , 2 , 4 , 5695 , 5695 , 5695 , 11 . 892382899 , 7 . 3266640372 , 4 . 5657188617 , 0 . 7529850479 , 7 . 0876211649 , 7 . 8406062127 <nl> + 050 , 3 , 6 , 21 , 153 , Kentucky , Magoffin County , 13333 , 13333 , 13331 , 13216 , - 2 , - 115 , 39 , 162 , 39 , 158 , 0 , 4 , 0 , 0 , - 2 , - 120 , - 2 , - 120 , 0 , 1 , 127 , 127 , 127 , 12 . 2047689 , 11 . 903416582 , 0 . 3013523185 , 0 , - 9 . 040569556 , - 9 . 040569556 <nl> + 050 , 3 , 6 , 21 , 155 , Kentucky , Marion County , 19820 , 19820 , 19819 , 19982 , - 1 , 163 , 69 , 278 , 54 , 185 , 15 , 93 , 5 , 25 , - 21 , 46 , - 16 , 71 , 0 , - 1 , 1297 , 1297 , 1297 , 13 . 969498254 , 9 . 296248838 , 4 . 6732494158 , 1 . 256249843 , 2 . 3114997111 , 3 . 567749554 <nl> + 050 , 3 , 6 , 21 , 157 , Kentucky , Marshall County , 31448 , 31448 , 31464 , 31308 , 16 , - 156 , 84 , 339 , 110 , 427 , - 26 , - 88 , 1 , 7 , 41 , - 73 , 42 , - 66 , 0 , - 2 , 464 , 464 , 464 , 10 . 800994074 , 13 . 604791945 , - 2 . 803797872 , 0 . 2230293762 , - 2 . 32587778 , - 2 . 102848404 <nl> + 050 , 3 , 6 , 21 , 159 , Kentucky , Martin County , 12929 , 12929 , 12897 , 12751 , - 32 , - 146 , 33 , 131 , 29 , 152 , 4 , - 21 , 0 , 0 , - 36 , - 124 , - 36 , - 124 , 0 , - 1 , 1657 , 1657 , 1657 , 10 . 21522146 , 11 . 852776045 , - 1 . 637554585 , 0 , - 9 . 669369931 , - 9 . 669369931 <nl> + 050 , 3 , 6 , 21 , 161 , Kentucky , Mason County , 17490 , 17490 , 17509 , 17653 , 19 , 144 , 57 , 231 , 51 , 195 , 6 , 36 , 3 , 11 , 12 , 97 , 15 , 108 , - 2 , 0 , 298 , 298 , 298 , 13 . 139184347 , 11 . 091519254 , 2 . 047665093 , 0 . 6256754451 , 5 . 5173198339 , 6 . 142995279 <nl> + 050 , 3 , 6 , 21 , 163 , Kentucky , Meade County , 28602 , 28601 , 28683 , 29562 , 82 , 879 , 69 , 292 , 55 , 195 , 14 , 97 , 14 , 4 , 52 , 766 , 66 , 770 , 2 , 12 , 212 , 212 , 212 , 10 . 026611726 , 6 . 6958537213 , 3 . 330758005 , 0 . 1373508456 , 26 . 302686926 , 26 . 440037771 <nl> + 050 , 3 , 6 , 21 , 165 , Kentucky , Menifee County , 6306 , 6306 , 6314 , 6317 , 8 , 3 , 12 , 57 , 12 , 84 , 0 , - 27 , 0 , 0 , 9 , 30 , 9 , 30 , - 1 , 0 , 230 , 230 , 230 , 9 . 0254136648 , 13 . 300609611 , - 4 . 275195946 , 0 , 4 . 7502177183 , 4 . 7502177183 <nl> + 050 , 3 , 6 , 21 , 167 , Kentucky , Mercer County , 21331 , 21331 , 21351 , 21282 , 20 , - 69 , 65 , 268 , 66 , 252 , - 1 , 16 , 2 , 14 , 20 , - 98 , 22 , - 84 , - 1 , - 1 , 128 , 128 , 128 , 12 . 572420425 , 11 . 821828161 , 0 . 7505922642 , 0 . 6567682312 , - 4 . 597377618 , - 3 . 940609387 <nl> + 050 , 3 , 6 , 21 , 169 , Kentucky , Metcalfe County , 10099 , 10099 , 10126 , 10073 , 27 , - 53 , 33 , 141 , 28 , 136 , 5 , 5 , 3 , 12 , 19 , - 71 , 22 , - 59 , 0 , 1 , 121 , 121 , 121 , 13 . 961087183 , 13 . 466013169 , 0 . 4950740136 , 1 . 1881776326 , - 7 . 030050993 , - 5 . 84187336 <nl> + 050 , 3 , 6 , 21 , 171 , Kentucky , Monroe County , 10963 , 10963 , 10976 , 10937 , 13 , - 39 , 27 , 119 , 31 , 162 , - 4 , - 43 , 0 , 7 , 17 , - 3 , 17 , 4 , 0 , 0 , 143 , 143 , 143 , 10 . 861132661 , 14 . 785743623 , - 3 . 924610962 , 0 . 6388901565 , - 0 . 273810067 , 0 . 3650800894 <nl> + 050 , 3 , 6 , 21 , 173 , Kentucky , Montgomery County , 26499 , 26499 , 26531 , 26743 , 32 , 212 , 95 , 388 , 67 , 258 , 28 , 130 , 3 , 18 , 2 , 65 , 5 , 83 , - 1 , - 1 , 357 , 357 , 357 , 14 . 566204903 , 9 . 6857754252 , 4 . 8804294778 , 0 . 6757517738 , 2 . 4402147389 , 3 . 1159665127 <nl> + 050 , 3 , 6 , 21 , 175 , Kentucky , Morgan County , 13923 , 13923 , 13941 , 13943 , 18 , 2 , 39 , 154 , 44 , 167 , - 5 , - 13 , 0 , 2 , 24 , 15 , 24 , 17 , - 1 , - 2 , 1975 , 1975 , 1975 , 11 . 04576101 , 11 . 978195381 , - 0 . 932434371 , 0 . 1434514417 , 1 . 0758858127 , 1 . 2193372543 <nl> + 050 , 3 , 6 , 21 , 177 , Kentucky , Muhlenberg County , 31499 , 31499 , 31476 , 31272 , - 23 , - 204 , 80 , 333 , 109 , 412 , - 29 , - 79 , 2 , 13 , 6 , - 137 , 8 , - 124 , - 2 , - 1 , 1951 , 1951 , 1951 , 10 . 613884108 , 13 . 13189265 , - 2 . 518008542 , 0 . 414355836 , - 4 . 366673041 , - 3 . 952317205 <nl> + 050 , 3 , 6 , 21 , 179 , Kentucky , Nelson County , 43437 , 43437 , 43576 , 43974 , 139 , 398 , 138 , 555 , 98 , 363 , 40 , 192 , 7 , 24 , 91 , 182 , 98 , 206 , 1 , 0 , 496 , 496 , 496 , 12 . 678469446 , 8 . 2924043404 , 4 . 3860651057 , 0 . 5482581382 , 4 . 1576242147 , 4 . 7058823529 <nl> + 050 , 3 , 6 , 21 , 181 , Kentucky , Nicholas County , 7135 , 7128 , 7127 , 7071 , - 1 , - 56 , 22 , 92 , 18 , 114 , 4 , - 22 , 0 , 1 , - 4 , - 35 , - 4 , - 34 , - 1 , 0 , 95 , 95 , 95 , 12 . 959571771 , 16 . 058599803 , - 3 . 099028032 , 0 . 1408649106 , - 4 . 930271869 , - 4 . 789406959 <nl> + 050 , 3 , 6 , 21 , 183 , Kentucky , Ohio County , 23842 , 23842 , 23852 , 24103 , 10 , 251 , 77 , 319 , 59 , 253 , 18 , 66 , 0 , 3 , - 6 , 182 , - 6 , 185 , - 2 , 0 , 307 , 307 , 307 , 13 . 304139297 , 10 . 551558753 , 2 . 7525805443 , 0 . 1251172975 , 7 . 5904493796 , 7 . 7155666771 <nl> + 050 , 3 , 6 , 21 , 185 , Kentucky , Oldham County , 60316 , 60316 , 60409 , 60642 , 93 , 233 , 120 , 491 , 87 , 316 , 33 , 175 , 8 , 39 , 51 , 22 , 59 , 61 , 1 , - 3 , 4568 , 4568 , 4569 , 8 . 1122832525 , 5 . 2209399344 , 2 . 8913433181 , 0 . 6443565109 , 0 . 36348316 , 1 . 0078396709 <nl> + 050 , 3 , 6 , 21 , 187 , Kentucky , Owen County , 10841 , 10838 , 10837 , 10858 , - 1 , 21 , 27 , 110 , 13 , 104 , 14 , 6 , 2 , 11 , - 17 , 6 , - 15 , 17 , 0 , - 2 , 0 , 0 , 0 , 10 . 140585388 , 9 . 587462549 , 0 . 5531228394 , 1 . 0140585388 , 0 . 5531228394 , 1 . 5671813782 <nl> + 050 , 3 , 6 , 21 , 189 , Kentucky , Owsley County , 4755 , 4755 , 4774 , 4820 , 19 , 46 , 16 , 61 , 5 , 78 , 11 , - 17 , 0 , 0 , 8 , 63 , 8 , 63 , 0 , 0 , 90 , 90 , 90 , 12 . 716281009 , 16 . 260162602 , - 3 . 543881593 , 0 , 13 . 133208255 , 13 . 133208255 <nl> + 050 , 3 , 6 , 21 , 191 , Kentucky , Pendleton County , 14877 , 14876 , 14912 , 14698 , 36 , - 214 , 49 , 204 , 38 , 157 , 11 , 47 , 0 , 0 , 26 , - 264 , 26 , - 264 , - 1 , 3 , 215 , 215 , 215 , 13 . 779128673 , 10 . 604525498 , 3 . 1746031746 , 0 , - 17 . 83181358 , - 17 . 83181358 <nl> + 050 , 3 , 6 , 21 , 193 , Kentucky , Perry County , 28712 , 28712 , 28716 , 28751 , 4 , 35 , 98 , 384 , 114 , 429 , - 16 , - 45 , 1 , 4 , 19 , 76 , 20 , 80 , 0 , 0 , 611 , 611 , 611 , 13 . 364191623 , 14 . 930307829 , - 1 . 566116206 , 0 . 1392103294 , 2 . 6449962587 , 2 . 7842065881 <nl> + 050 , 3 , 6 , 21 , 195 , Kentucky , Pike County , 65024 , 65024 , 65006 , 64904 , - 18 , - 102 , 193 , 778 , 202 , 781 , - 9 , - 3 , 3 , 19 , - 9 , - 117 , - 6 , - 98 , - 3 , - 1 , 1100 , 1100 , 1100 , 11 . 9775229 , 12 . 023708721 , - 0 . 046185821 , 0 . 2925101994 , - 1 . 801247017 , - 1 . 508736818 <nl> + 050 , 3 , 6 , 21 , 197 , Kentucky , Powell County , 12613 , 12613 , 12637 , 12651 , 24 , 14 , 41 , 167 , 39 , 140 , 2 , 27 , 1 , 4 , 22 , - 15 , 23 , - 11 , - 1 , - 2 , 188 , 188 , 188 , 13 . 207845618 , 11 . 072445429 , 2 . 1354001898 , 0 . 3163555837 , - 1 . 186333439 , - 0 . 869977855 <nl> + 050 , 3 , 6 , 21 , 199 , Kentucky , Pulaski County , 63063 , 63063 , 63192 , 63657 , 129 , 465 , 184 , 745 , 185 , 735 , - 1 , 10 , 11 , 47 , 121 , 407 , 132 , 454 , - 2 , 1 , 962 , 962 , 962 , 11 . 746249478 , 11 . 5885817 , 0 . 1576677782 , 0 . 7410385577 , 6 . 4170785737 , 7 . 1581171314 <nl> + 050 , 3 , 6 , 21 , 201 , Kentucky , Robertson County , 2282 , 2282 , 2273 , 2229 , - 9 , - 44 , 4 , 18 , 1 , 29 , 3 , - 11 , 0 , 0 , - 11 , - 33 , - 11 , - 33 , - 1 , 0 , 57 , 57 , 57 , 7 . 996446024 , 12 . 883163039 , - 4 . 886717015 , 0 , - 14 . 66015104 , - 14 . 66015104 <nl> + 050 , 3 , 6 , 21 , 203 , Kentucky , Rockcastle County , 17056 , 17056 , 17054 , 17069 , - 2 , 15 , 37 , 164 , 56 , 231 , - 19 , - 67 , 0 , 0 , 18 , 83 , 18 , 83 , - 1 , - 1 , 341 , 341 , 341 , 9 . 6122849691 , 13 . 539255048 , - 3 . 926970079 , 0 , 4 . 8647539783 , 4 . 8647539783 <nl> + 050 , 3 , 6 , 21 , 205 , Kentucky , Rowan County , 23333 , 23333 , 23359 , 23582 , 26 , 223 , 70 , 281 , 51 , 195 , 19 , 86 , 1 , - 7 , 7 , 145 , 8 , 138 , - 1 , - 1 , 2435 , 2435 , 2435 , 11 . 972476087 , 8 . 3083019109 , 3 . 6641741761 , - 0 . 298246735 , 6 . 1779680876 , 5 . 8797213523 <nl> + 050 , 3 , 6 , 21 , 207 , Kentucky , Russell County , 17565 , 17565 , 17537 , 17610 , - 28 , 73 , 52 , 218 , 54 , 213 , - 2 , 5 , 3 , 12 , - 28 , 56 , - 25 , 68 , - 1 , 0 , 177 , 177 , 177 , 12 . 405041682 , 12 . 120522377 , 0 . 2845193046 , 0 . 6828463311 , 3 . 1866162119 , 3 . 869462543 <nl> + 050 , 3 , 6 , 21 , 209 , Kentucky , Scott County , 47173 , 47173 , 47441 , 48149 , 268 , 708 , 165 , 657 , 82 , 315 , 83 , 342 , 4 , 25 , 178 , 342 , 182 , 367 , 3 , - 1 , 1316 , 1316 , 1316 , 13 . 746207762 , 6 . 5906475573 , 7 . 155560205 , 0 . 5230672665 , 7 . 155560205 , 7 . 6786274715 <nl> + 050 , 3 , 6 , 21 , 211 , Kentucky , Shelby County , 42074 , 42074 , 42331 , 43068 , 257 , 737 , 168 , 665 , 66 , 275 , 102 , 390 , 25 , 123 , 129 , 223 , 154 , 346 , 1 , 1 , 1696 , 1696 , 1696 , 15 . 573952857 , 6 . 4403564445 , 9 . 1335964121 , 2 . 8805957915 , 5 . 2225435895 , 8 . 103139381 <nl> + 050 , 3 , 6 , 21 , 213 , Kentucky , Simpson County , 17327 , 17327 , 17372 , 17378 , 45 , 6 , 50 , 208 , 32 , 154 , 18 , 54 , 1 , 4 , 26 , - 51 , 27 , - 47 , 0 , - 1 , 327 , 327 , 327 , 11 . 971223022 , 8 . 8633093525 , 3 . 1079136691 , 0 . 2302158273 , - 2 . 935251799 , - 2 . 705035971 <nl> + 050 , 3 , 6 , 21 , 215 , Kentucky , Spencer County , 17061 , 17061 , 17129 , 17378 , 68 , 249 , 51 , 203 , 26 , 134 , 25 , 69 , 0 , 3 , 42 , 176 , 42 , 179 , 1 , 1 , 113 , 113 , 113 , 11 . 765728693 , 7 . 7665401223 , 3 . 9991885704 , 0 . 1738777639 , 10 . 200828817 , 10 . 374706581 <nl> + 050 , 3 , 6 , 21 , 217 , Kentucky , Taylor County , 24512 , 24512 , 24567 , 24731 , 55 , 164 , 74 , 303 , 80 , 301 , - 6 , 2 , 2 , 8 , 59 , 154 , 61 , 162 , 0 , 0 , 1035 , 1035 , 1035 , 12 . 292587935 , 12 . 21144874 , 0 . 0811391943 , 0 . 3245567772 , 6 . 2477179602 , 6 . 5722747373 <nl> + 050 , 3 , 6 , 21 , 219 , Kentucky , Todd County , 12460 , 12460 , 12449 , 12463 , - 11 , 14 , 45 , 177 , 27 , 134 , 18 , 43 , 5 , 19 , - 34 , - 49 , - 29 , - 30 , 0 , 1 , 195 , 195 , 195 , 14 . 210019268 , 10 . 757867694 , 3 . 4521515735 , 1 . 5253692999 , - 3 . 933847142 , - 2 . 408477842 <nl> + 050 , 3 , 6 , 21 , 221 , Kentucky , Trigg County , 14339 , 14339 , 14362 , 14305 , 23 , - 57 , 41 , 169 , 51 , 166 , - 10 , 3 , 2 , 2 , 32 , - 62 , 34 , - 60 , - 1 , 0 , 78 , 78 , 78 , 11 . 790560575 , 11 . 581260683 , 0 . 2092998919 , 0 . 1395332612 , - 4 . 325531098 , - 4 . 185997837 <nl> + 050 , 3 , 6 , 21 , 223 , Kentucky , Trimble County , 8809 , 8809 , 8792 , 8725 , - 17 , - 67 , 24 , 104 , 18 , 98 , 6 , 6 , 0 , 3 , - 23 , - 75 , - 23 , - 72 , 0 , - 1 , 41 , 41 , 41 , 11 . 874179369 , 11 . 189130559 , 0 . 6850488097 , 0 . 3425244049 , - 8 . 563110122 , - 8 . 220585717 <nl> + 050 , 3 , 6 , 21 , 225 , Kentucky , Union County , 15007 , 15007 , 15021 , 15067 , 14 , 46 , 40 , 171 , 57 , 182 , - 17 , - 11 , 0 , 3 , 33 , 56 , 33 , 59 , - 2 , - 2 , 1371 , 1371 , 1371 , 11 . 366657804 , 12 . 097846317 , - 0 . 731188514 , 0 . 1994150492 , 3 . 7224142515 , 3 . 9218293007 <nl> + 050 , 3 , 6 , 21 , 227 , Kentucky , Warren County , 113792 , 113792 , 114165 , 115517 , 373 , 1352 , 373 , 1469 , 200 , 818 , 173 , 651 , 89 , 326 , 110 , 377 , 199 , 703 , 1 , - 2 , 6210 , 6210 , 6210 , 12 . 791598819 , 7 . 1228916502 , 5 . 668707169 , 2 . 8387074303 , 3 . 282799697 , 6 . 1215071272 <nl> + 050 , 3 , 6 , 21 , 229 , Kentucky , Washington County , 11717 , 11717 , 11768 , 11846 , 51 , 78 , 31 , 126 , 23 , 129 , 8 , - 3 , 0 , 3 , 43 , 80 , 43 , 83 , 0 , - 2 , 389 , 389 , 389 , 10 . 67163547 , 10 . 925722029 , - 0 . 254086559 , 0 . 2540865588 , 6 . 7756415686 , 7 . 0297281274 <nl> + 050 , 3 , 6 , 21 , 231 , Kentucky , Wayne County , 20813 , 20813 , 20850 , 20969 , 37 , 119 , 63 , 258 , 52 , 197 , 11 , 61 , 8 , 23 , 19 , 35 , 27 , 58 , - 1 , 0 , 331 , 331 , 331 , 12 . 338889022 , 9 . 4215547957 , 2 . 9173342261 , 1 . 0999784787 , 1 . 6738802936 , 2 . 7738587723 <nl> + 050 , 3 , 6 , 21 , 233 , Kentucky , Webster County , 13621 , 13621 , 13622 , 13668 , 1 , 46 , 43 , 180 , 32 , 157 , 11 , 23 , 7 , 25 , - 17 , - 2 , - 10 , 23 , 0 , 0 , 393 , 393 , 393 , 13 . 191645291 , 11 . 506046171 , 1 . 6855991206 , 1 . 8321729571 , - 0 . 146573837 , 1 . 6855991206 <nl> + 050 , 3 , 6 , 21 , 235 , Kentucky , Whitley County , 35637 , 35637 , 35637 , 35823 , 0 , 186 , 115 , 501 , 112 , 432 , 3 , 69 , 3 , 16 , - 4 , 105 , - 1 , 121 , - 2 , - 4 , 1590 , 1590 , 1590 , 14 . 021830395 , 12 . 090680101 , 1 . 9311502939 , 0 . 4478029667 , 2 . 9387069689 , 3 . 3865099356 <nl> + 050 , 3 , 6 , 21 , 237 , Kentucky , Wolfe County , 7355 , 7355 , 7354 , 7342 , - 1 , - 12 , 24 , 94 , 12 , 110 , 12 , - 16 , 0 , 0 , - 13 , 5 , - 13 , 5 , 0 , - 1 , 132 , 132 , 132 , 12 . 792596625 , 14 . 97005988 , - 2 . 177463255 , 0 , 0 . 6804572673 , 0 . 6804572673 <nl> + 050 , 3 , 6 , 21 , 239 , Kentucky , Woodford County , 24939 , 24939 , 25011 , 24945 , 72 , - 66 , 75 , 304 , 58 , 198 , 17 , 106 , 9 , 27 , 45 , - 201 , 54 , - 174 , 1 , 2 , 329 , 329 , 329 , 12 . 170710225 , 7 . 9269757387 , 4 . 2437344863 , 1 . 0809512371 , - 8 . 047081432 , - 6 . 966130195 <nl> + 040 , 3 , 7 , 22 , 000 , Louisiana , Louisiana , 4533372 , 4533372 , 4545343 , 4574836 , 11971 , 29493 , 15571 , 63969 , 9771 , 40780 , 5800 , 23189 , 1354 , 3740 , 4706 , 2379 , 6060 , 6119 , 111 , 185 , 127427 , 127432 , 127432 , 14 . 028014143 , 8 . 9428069339 , 5 . 0852072092 , 0 . 8201593412 , 0 . 5217002868 , 1 . 341859628 <nl> + 050 , 3 , 7 , 22 , 001 , Louisiana , Acadia Parish , 61773 , 61773 , 61838 , 61982 , 65 , 144 , 215 , 925 , 142 , 622 , 73 , 303 , 1 , 5 , - 7 , - 163 , - 6 , - 158 , - 2 , - 1 , 1050 , 1050 , 1050 , 14 . 94104345 , 10 . 04684219 , 4 . 8942012599 , 0 . 080762397 , - 2 . 632854143 , - 2 . 552091746 <nl> + 050 , 3 , 7 , 22 , 003 , Louisiana , Allen Parish , 25764 , 25764 , 25741 , 25757 , - 23 , 16 , 72 , 309 , 61 , 211 , 11 , 98 , 0 , 2 , - 34 , - 83 , - 34 , - 81 , 0 , - 1 , 4200 , 4200 , 4200 , 12 . 000466038 , 8 . 19449299 , 3 . 8059730475 , 0 . 0776729193 , - 3 . 223426152 , - 3 . 145753233 <nl> + 050 , 3 , 7 , 22 , 005 , Louisiana , Ascension Parish , 107215 , 107169 , 107862 , 109985 , 693 , 2123 , 405 , 1639 , 156 , 681 , 249 , 958 , 17 , 61 , 415 , 1094 , 432 , 1155 , 12 , 10 , 790 , 790 , 790 , 15 . 047257938 , 6 . 2520943598 , 8 . 7951635781 , 0 . 5600260733 , 10 . 043746299 , 10 . 603772372 <nl> + 050 , 3 , 7 , 22 , 007 , Louisiana , Assumption Parish , 23421 , 23421 , 23367 , 23153 , - 54 , - 214 , 54 , 239 , 38 , 222 , 16 , 17 , 1 , 4 , - 71 , - 235 , - 70 , - 231 , 0 , 0 , 199 , 199 , 199 , 10 . 275150473 , 9 . 5442820292 , 0 . 7308684437 , 0 . 1719690456 , - 10 . 10318143 , - 9 . 931212382 <nl> + 050 , 3 , 7 , 22 , 009 , Louisiana , Avoyelles Parish , 42073 , 42073 , 42109 , 41895 , 36 , - 214 , 147 , 609 , 102 , 453 , 45 , 156 , 3 , 16 , - 11 , - 389 , - 8 , - 373 , - 1 , 3 , 3343 , 3343 , 3343 , 14 . 499309557 , 10 . 785200705 , 3 . 714108852 , 0 . 3809342412 , - 9 . 26146374 , - 8 . 880529499 <nl> + 050 , 3 , 7 , 22 , 011 , Louisiana , Beauregard Parish , 35654 , 35654 , 35854 , 36129 , 200 , 275 , 125 , 501 , 89 , 353 , 36 , 148 , 5 , 16 , 154 , 112 , 159 , 128 , 5 , - 1 , 1300 , 1300 , 1300 , 13 . 919953322 , 9 . 8078713029 , 4 . 1120820194 , 0 . 4445494075 , 3 . 1118458525 , 3 . 55639526 <nl> + 050 , 3 , 7 , 22 , 013 , Louisiana , Bienville Parish , 14353 , 14353 , 14356 , 14335 , 3 , - 21 , 37 , 155 , 28 , 209 , 9 , - 54 , 0 , 0 , - 5 , 36 , - 5 , 36 , - 1 , - 3 , 319 , 319 , 319 , 10 . 804781987 , 14 . 569028615 , - 3 . 764246628 , 0 , 2 . 5094977519 , 2 . 5094977519 <nl> + 050 , 3 , 7 , 22 , 015 , Louisiana , Bossier Parish , 116979 , 116979 , 117543 , 119732 , 564 , 2189 , 409 , 1636 , 234 , 912 , 175 , 724 , 80 , 132 , 302 , 1317 , 382 , 1449 , 7 , 16 , 1961 , 1961 , 1961 , 13 . 789906227 , 7 . 6872826889 , 6 . 1026235381 , 1 . 1126330208 , 11 . 101043093 , 12 . 213676114 <nl> + 050 , 3 , 7 , 22 , 017 , Louisiana , Caddo Parish , 254969 , 254969 , 255613 , 257051 , 644 , 1438 , 956 , 3858 , 667 , 2594 , 289 , 1264 , 54 , 135 , 299 , 54 , 353 , 189 , 2 , - 15 , 6247 , 6247 , 6247 , 15 . 050793502 , 10 . 119688529 , 4 . 9311049732 , 0 . 5266607369 , 0 . 2106642947 , 0 . 7373250316 <nl> + 050 , 3 , 7 , 22 , 019 , Louisiana , Calcasieu Parish , 192768 , 192768 , 193273 , 194092 , 505 , 819 , 685 , 2785 , 461 , 1816 , 224 , 969 , 24 , 73 , 256 , - 214 , 280 , - 141 , 1 , - 9 , 3796 , 3796 , 3796 , 14 . 379203077 , 9 . 3761697624 , 5 . 0030333148 , 0 . 3769055026 , - 1 . 104901062 , - 0 . 72799556 <nl> + 050 , 3 , 7 , 22 , 021 , Louisiana , Caldwell Parish , 10132 , 10132 , 10136 , 10057 , 4 , - 79 , 33 , 131 , 16 , 113 , 17 , 18 , 0 , 0 , - 13 , - 95 , - 13 , - 95 , 0 , - 2 , 584 , 584 , 584 , 12 . 974793245 , 11 . 191997227 , 1 . 7827960184 , 0 , - 9 . 409201208 , - 9 . 409201208 <nl> + 050 , 3 , 7 , 22 , 023 , Louisiana , Cameron Parish , 6839 , 6839 , 6810 , 6730 , - 29 , - 80 , 19 , 78 , 6 , 57 , 13 , 21 , 3 , 15 , - 45 , - 115 , - 42 , - 100 , 0 , - 1 , 0 , 0 , 0 , 11 . 521418021 , 8 . 4194977843 , 3 . 1019202363 , 2 . 2156573117 , - 16 . 98670606 , - 14 . 77104874 <nl> + 050 , 3 , 7 , 22 , 025 , Louisiana , Catahoula Parish , 10407 , 10407 , 10397 , 10325 , - 10 , - 72 , 33 , 141 , 18 , 125 , 15 , 16 , 0 , 0 , - 25 , - 89 , - 25 , - 89 , 0 , 1 , 866 , 866 , 866 , 13 . 608725027 , 12 . 064472541 , 1 . 5442524853 , 0 , - 8 . 589904449 , - 8 . 589904449 <nl> + 050 , 3 , 7 , 22 , 027 , Louisiana , Claiborne Parish , 17195 , 17195 , 17153 , 16914 , - 42 , - 239 , 39 , 166 , 24 , 189 , 15 , - 23 , 2 , 8 , - 58 , - 226 , - 56 , - 218 , - 1 , 2 , 2917 , 2917 , 2917 , 9 . 7455015117 , 11 . 095781842 , - 1 . 35028033 , 0 . 4696627235 , - 13 . 26797194 , - 12 . 79830921 <nl> + 050 , 3 , 7 , 22 , 029 , Louisiana , Concordia Parish , 20822 , 20822 , 20821 , 20876 , - 1 , 55 , 60 , 256 , 51 , 248 , 9 , 8 , 2 , 10 , - 12 , 39 , - 10 , 49 , 0 , - 2 , 1485 , 1485 , 1485 , 12 . 279060844 , 11 . 895340192 , 0 . 3837206514 , 0 . 4796508142 , 1 . 8706381754 , 2 . 3502889896 <nl> + 050 , 3 , 7 , 22 , 031 , Louisiana , De Soto Parish , 26656 , 26656 , 26732 , 26812 , 76 , 80 , 78 , 328 , 64 , 272 , 14 , 56 , 2 , 15 , 59 , 11 , 61 , 26 , 1 , - 2 , 215 , 215 , 215 , 12 . 251606156 , 10 . 159868519 , 2 . 0917376363 , 0 . 5602868669 , 0 . 4108770357 , 0 . 9711639026 <nl> + 050 , 3 , 7 , 22 , 033 , Louisiana , East Baton Rouge Parish , 440171 , 440178 , 440879 , 441438 , 701 , 559 , 1539 , 6318 , 864 , 3507 , 675 , 2811 , 220 , 612 , - 189 , - 2880 , 31 , - 2268 , - 5 , 16 , 11105 , 11105 , 11105 , 14 . 321383358 , 7 . 9495238106 , 6 . 3718595471 , 1 . 3872565076 , - 6 . 528265918 , - 5 . 14100941 <nl> + 050 , 3 , 7 , 22 , 035 , Louisiana , East Carroll Parish , 7759 , 7759 , 7731 , 7630 , - 28 , - 101 , 26 , 116 , 5 , 77 , 21 , 39 , 0 , 0 , - 50 , - 140 , - 50 , - 140 , 1 , 0 , 1067 , 1067 , 1067 , 15 . 103183386 , 10 . 025388972 , 5 . 0777944144 , 0 , - 18 . 22797995 , - 18 . 22797995 <nl> + 050 , 3 , 7 , 22 , 037 , Louisiana , East Feliciana Parish , 20267 , 20263 , 20198 , 20117 , - 65 , - 81 , 60 , 245 , 36 , 226 , 24 , 19 , 1 , 4 , - 91 , - 104 , - 90 , - 100 , 1 , 0 , 2391 , 2391 , 2391 , 12 . 154285006 , 11 . 211707801 , 0 . 9425772045 , 0 . 1984373062 , - 5 . 159369962 , - 4 . 960932655 <nl> + 050 , 3 , 7 , 22 , 039 , Louisiana , Evangeline Parish , 33984 , 33984 , 34004 , 33896 , 20 , - 108 , 124 , 529 , 79 , 357 , 45 , 172 , 0 , 7 , - 24 , - 289 , - 24 , - 282 , - 1 , 2 , 1379 , 1379 , 1379 , 15 . 58173785 , 10 . 515463918 , 5 . 0662739323 , 0 . 206185567 , - 8 . 512518409 , - 8 . 306332842 <nl> + 050 , 3 , 7 , 22 , 041 , Louisiana , Franklin Parish , 20767 , 20767 , 20802 , 20785 , 35 , - 17 , 70 , 299 , 61 , 271 , 9 , 28 , 0 , 0 , 28 , - 45 , 28 , - 45 , - 2 , 0 , 732 , 732 , 732 , 14 . 379493592 , 13 . 032918941 , 1 . 3465746507 , 0 , - 2 . 164137832 , - 2 . 164137832 <nl> + 050 , 3 , 7 , 22 , 043 , Louisiana , Grant Parish , 22309 , 22309 , 22335 , 22131 , 26 , - 204 , 66 , 265 , 49 , 183 , 17 , 82 , 2 , 7 , 8 , - 296 , 10 , - 289 , - 1 , 3 , 2937 , 2937 , 2937 , 11 . 919219179 , 8 . 2310079611 , 3 . 6882112176 , 0 . 3148472991 , - 13 . 31354293 , - 12 . 99869563 <nl> + 050 , 3 , 7 , 22 , 045 , Louisiana , Iberia Parish , 73240 , 73240 , 73260 , 73400 , 20 , 140 , 284 , 1192 , 171 , 700 , 113 , 492 , 10 , 31 , - 103 , - 383 , - 93 , - 352 , 0 , 0 , 944 , 944 , 944 , 16 . 255284331 , 9 . 5458884495 , 6 . 7093958816 , 0 . 4227464885 , - 5 . 22296468 , - 4 . 800218192 <nl> + 050 , 3 , 7 , 22 , 047 , Louisiana , Iberville Parish , 33387 , 33387 , 33362 , 33230 , - 25 , - 132 , 99 , 420 , 54 , 284 , 45 , 136 , 1 , 2 , - 70 , - 271 , - 69 , - 269 , - 1 , 1 , 3979 , 3979 , 3979 , 12 . 614127823 , 8 . 5295530995 , 4 . 0845747237 , 0 . 0600672753 , - 8 . 13911581 , - 8 . 079048534 <nl> + 050 , 3 , 7 , 22 , 049 , Louisiana , Jackson Parish , 16274 , 16274 , 16288 , 16323 , 14 , 35 , 50 , 201 , 47 , 208 , 3 , - 7 , 0 , - 1 , 12 , 44 , 12 , 43 , - 1 , - 1 , 1038 , 1038 , 1038 , 12 . 327128883 , 12 . 756431879 , - 0 . 429302996 , - 0 . 061328999 , 2 . 6984759744 , 2 . 6371469749 <nl> + 050 , 3 , 7 , 22 , 051 , Louisiana , Jefferson Parish , 432552 , 432552 , 432546 , 432640 , - 6 , 94 , 1409 , 5779 , 966 , 3941 , 443 , 1838 , 277 , 781 , - 723 , - 2522 , - 446 , - 1741 , - 3 , - 3 , 3311 , 3311 , 3311 , 13 . 358977145 , 9 . 1101797764 , 4 . 2487973684 , 1 . 8053921353 , - 5 . 829960263 , - 4 . 024568128 <nl> + 050 , 3 , 7 , 22 , 053 , Louisiana , Jefferson Davis Parish , 31594 , 31594 , 31627 , 31694 , 33 , 67 , 111 , 459 , 92 , 390 , 19 , 69 , 0 , 1 , 15 , 1 , 15 , 2 , - 1 , - 4 , 567 , 567 , 567 , 14 . 497560051 , 12 . 318188279 , 2 . 1793717724 , 0 . 0315850982 , 0 . 0315850982 , 0 . 0631701963 <nl> + 050 , 3 , 7 , 22 , 055 , Louisiana , Lafayette Parish , 221578 , 221578 , 222107 , 224390 , 529 , 2283 , 807 , 3305 , 426 , 1586 , 381 , 1719 , 70 , 230 , 81 , 342 , 151 , 572 , - 3 , - 8 , 5150 , 5150 , 5150 , 14 . 804130823 , 7 . 1041910696 , 7 . 6999397532 , 1 . 0302420845 , 1 . 5319251865 , 2 . 562167271 <nl> + 050 , 3 , 7 , 22 , 057 , Louisiana , Lafourche Parish , 96318 , 96318 , 96380 , 96666 , 62 , 286 , 320 , 1305 , 182 , 793 , 138 , 512 , 17 , 66 , - 91 , - 290 , - 74 , - 224 , - 2 , - 2 , 1625 , 1625 , 1625 , 13 . 520093656 , 8 . 2156584441 , 5 . 3044352123 , 0 . 6837748516 , - 3 . 004465257 , - 2 . 320690405 <nl> + 050 , 3 , 7 , 22 , 059 , Louisiana , La Salle Parish , 14890 , 14890 , 14946 , 14985 , 56 , 39 , 45 , 202 , 33 , 172 , 12 , 30 , 0 , 1 , 43 , 9 , 43 , 10 , 1 , - 1 , 1243 , 1243 , 1243 , 13 . 497711403 , 11 . 493100799 , 2 . 0046106044 , 0 . 0668203535 , 0 . 6013831813 , 0 . 6682035348 <nl> + 050 , 3 , 7 , 22 , 061 , Louisiana , Lincoln Parish , 46735 , 46735 , 46814 , 46856 , 79 , 42 , 145 , 590 , 83 , 396 , 62 , 194 , 15 , 55 , 3 , - 209 , 18 , - 154 , - 1 , 2 , 4883 , 4883 , 4883 , 12 . 597416462 , 8 . 4552151169 , 4 . 1422013451 , 1 . 1743354329 , - 4 . 462474645 , - 3 . 288139212 <nl> + 050 , 3 , 7 , 22 , 063 , Louisiana , Livingston Parish , 128026 , 128069 , 128687 , 130251 , 618 , 1564 , 447 , 1839 , 234 , 905 , 213 , 934 , 19 , 66 , 377 , 565 , 396 , 631 , 9 , - 1 , 1192 , 1192 , 1192 , 14 . 204172427 , 6 . 9900902919 , 7 . 2140821355 , 0 . 5097745406 , 4 . 363979022 , 4 . 8737535626 <nl> + 050 , 3 , 7 , 22 , 065 , Louisiana , Madison Parish , 12093 , 12093 , 12113 , 12004 , 20 , - 109 , 45 , 178 , 10 , 159 , 35 , 19 , 0 , 0 , - 15 , - 129 , - 15 , - 129 , 0 , 1 , 1591 , 1591 , 1591 , 14 . 761371647 , 13 . 185719617 , 1 . 5756520297 , 0 , - 10 . 69784799 , - 10 . 69784799 <nl> + 050 , 3 , 7 , 22 , 067 , Louisiana , Morehouse Parish , 27979 , 27979 , 27939 , 27608 , - 40 , - 331 , 102 , 446 , 74 , 358 , 28 , 88 , 0 , 0 , - 68 , - 424 , - 68 , - 424 , 0 , 5 , 768 , 768 , 768 , 16 . 058473005 , 12 . 889985058 , 3 . 1684879471 , 0 , - 15 . 26635102 , - 15 . 26635102 <nl> + 050 , 3 , 7 , 22 , 069 , Louisiana , Natchitoches Parish , 39566 , 39566 , 39596 , 39442 , 30 , - 154 , 128 , 513 , 82 , 373 , 46 , 140 , 2 , 15 , - 17 , - 313 , - 15 , - 298 , - 1 , 4 , 2190 , 2190 , 2190 , 12 . 9810977 , 9 . 4384979377 , 3 . 5425997621 , 0 . 3795642602 , - 7 . 920240897 , - 7 . 540676637 <nl> + 050 , 3 , 7 , 22 , 071 , Louisiana , Orleans Parish , 343829 , 343829 , 347907 , 360740 , 4078 , 12833 , 1181 , 4828 , 665 , 2845 , 516 , 1983 , 183 , 490 , 3298 , 10243 , 3481 , 10733 , 81 , 117 , 13165 , 13165 , 13165 , 13 . 625966102 , 8 . 0293855756 , 5 . 596580526 , 1 . 3829170236 , 28 . 908610352 , 30 . 291527375 <nl> + 050 , 3 , 7 , 22 , 073 , Louisiana , Ouachita Parish , 153720 , 153720 , 153989 , 154919 , 269 , 930 , 576 , 2346 , 389 , 1494 , 187 , 852 , 18 , 67 , 72 , 21 , 90 , 88 , - 8 , - 10 , 5534 , 5534 , 5534 , 15 . 188988307 , 9 . 672782835 , 5 . 5162054722 , 0 . 4337861111 , 0 . 1359628109 , 0 . 569748922 <nl> + 050 , 3 , 7 , 22 , 075 , Louisiana , Plaquemines Parish , 23042 , 23042 , 23134 , 23628 , 92 , 494 , 72 , 296 , 31 , 176 , 41 , 120 , 4 , 3 , 46 , 368 , 50 , 371 , 1 , 3 , 272 , 272 , 272 , 12 . 659852017 , 7 . 5274795774 , 5 . 1323724392 , 0 . 128309311 , 15 . 73927548 , 15 . 867584791 <nl> + 050 , 3 , 7 , 22 , 077 , Louisiana , Pointe Coupee Parish , 22802 , 22802 , 22787 , 22703 , - 15 , - 84 , 74 , 304 , 45 , 240 , 29 , 64 , 3 , 9 , - 45 , - 155 , - 42 , - 146 , - 2 , - 2 , 116 , 116 , 116 , 13 . 365574852 , 10 . 55176962 , 2 . 8138052319 , 0 . 3956913607 , - 6 . 814684546 , - 6 . 418993185 <nl> + 050 , 3 , 7 , 22 , 079 , Louisiana , Rapides Parish , 131613 , 131613 , 131780 , 132374 , 167 , 594 , 466 , 1921 , 347 , 1326 , 119 , 595 , 33 , 133 , 19 , - 126 , 52 , 7 , - 4 , - 8 , 4501 , 4501 , 4501 , 14 . 544545985 , 10 . 039598113 , 4 . 5049478713 , 1 . 0069883477 , - 0 . 953988961 , 0 . 0529993867 <nl> + 050 , 3 , 7 , 22 , 081 , Louisiana , Red River Parish , 9091 , 9091 , 9055 , 8890 , - 36 , - 165 , 30 , 120 , 14 , 122 , 16 , - 2 , 0 , 2 , - 50 , - 161 , - 50 , - 159 , - 2 , - 4 , 164 , 164 , 164 , 13 . 374198941 , 13 . 597102257 , - 0 . 222903316 , 0 . 2229033157 , - 17 . 94371691 , - 17 . 7208136 <nl> + 050 , 3 , 7 , 22 , 083 , Louisiana , Richland Parish , 20725 , 20725 , 20743 , 20938 , 18 , 195 , 70 , 291 , 55 , 248 , 15 , 43 , 0 , 0 , 4 , 152 , 4 , 152 , - 1 , 0 , 1039 , 1039 , 1039 , 13 . 96319666 , 11 . 899906432 , 2 . 0632902282 , 0 , 7 . 2934910391 , 7 . 2934910391 <nl> + 050 , 3 , 7 , 22 , 085 , Louisiana , Sabine Parish , 24233 , 24233 , 24241 , 24526 , 8 , 285 , 74 , 309 , 59 , 212 , 15 , 97 , 0 , 1 , - 6 , 186 , - 6 , 187 , - 1 , 1 , 440 , 440 , 440 , 12 . 672503947 , 8 . 6944040027 , 3 . 9780999446 , 0 . 0410113396 , 7 . 6281091722 , 7 . 6691205118 <nl> + 050 , 3 , 7 , 22 , 087 , Louisiana , St . Bernard Parish , 35897 , 35897 , 36808 , 39558 , 911 , 2750 , 141 , 569 , 70 , 272 , 71 , 297 , 15 , 37 , 804 , 2382 , 819 , 2419 , 21 , 34 , 293 , 293 , 293 , 14 . 901919702 , 7 . 1235890318 , 7 . 7783306707 , 0 . 9690176256 , 62 . 383783359 , 63 . 352800985 <nl> + 050 , 3 , 7 , 22 , 089 , Louisiana , St . Charles Parish , 52780 , 52780 , 52791 , 52517 , 11 , - 274 , 174 , 709 , 88 , 401 , 86 , 308 , 15 , 68 , - 92 , - 658 , - 77 , - 590 , 2 , 8 , 592 , 592 , 592 , 13 . 465263798 , 7 . 6157556881 , 5 . 8495081095 , 1 . 2914498424 , - 12 . 49667642 , - 11 . 20522657 <nl> + 050 , 3 , 7 , 22 , 091 , Louisiana , St . Helena Parish , 11203 , 11203 , 11206 , 10949 , 3 , - 257 , 29 , 131 , 8 , 100 , 21 , 31 , 1 , 3 , - 17 , - 292 , - 16 , - 289 , - 2 , 1 , 121 , 121 , 121 , 11 . 825772963 , 9 . 0273076055 , 2 . 7984653577 , 0 . 2708192282 , - 26 . 35973821 , - 26 . 08891898 <nl> + 050 , 3 , 7 , 22 , 093 , Louisiana , St . James Parish , 22102 , 22102 , 22045 , 21784 , - 57 , - 261 , 75 , 322 , 29 , 211 , 46 , 111 , 3 , 13 , - 107 , - 390 , - 104 , - 377 , 1 , 5 , 204 , 204 , 204 , 14 . 693467795 , 9 . 6283282758 , 5 . 0651395195 , 0 . 5932145383 , - 17 . 79643615 , - 17 . 20322161 <nl> + 050 , 3 , 7 , 22 , 095 , Louisiana , St . John the Baptist Parish , 45924 , 45924 , 45795 , 45221 , - 129 , - 574 , 150 , 621 , 110 , 381 , 40 , 240 , 12 , 45 , - 186 , - 872 , - 174 , - 827 , 5 , 13 , 471 , 471 , 471 , 13 . 64595236 , 8 . 3721543465 , 5 . 2737980135 , 0 . 9888371275 , - 19 . 16146612 , - 18 . 17262899 <nl> + 050 , 3 , 7 , 22 , 097 , Louisiana , St . Landry Parish , 83384 , 83384 , 83503 , 83552 , 119 , 49 , 340 , 1410 , 259 , 949 , 81 , 461 , 9 , 28 , 33 , - 443 , 42 , - 415 , - 4 , 3 , 1105 , 1105 , 1105 , 16 . 880668043 , 11 . 361527641 , 5 . 5191404029 , 0 . 3352189399 , - 5 . 303642513 , - 4 . 968423573 <nl> + 050 , 3 , 7 , 22 , 099 , Louisiana , St . Martin Parish , 52160 , 52160 , 52259 , 52917 , 99 , 658 , 185 , 771 , 107 , 446 , 78 , 325 , 3 , 14 , 19 , 319 , 22 , 333 , - 1 , 0 , 701 , 701 , 701 , 14 . 661139423 , 8 . 4810222865 , 6 . 180117137 , 0 . 2662204305 , 6 . 0660226668 , 6 . 3322430973 <nl> + 050 , 3 , 7 , 22 , 101 , Louisiana , St . Mary Parish , 54650 , 54650 , 54583 , 54210 , - 67 , - 373 , 190 , 799 , 123 , 509 , 67 , 290 , 16 , 71 , - 150 , - 737 , - 134 , - 666 , 0 , 3 , 868 , 868 , 868 , 14 . 688445029 , 9 . 3572196741 , 5 . 3312253546 , 1 . 3052310351 , - 13 . 54866581 , - 12 . 24343478 <nl> + 050 , 3 , 7 , 22 , 103 , Louisiana , St . Tammany Parish , 233740 , 233740 , 234591 , 236785 , 851 , 2194 , 679 , 2756 , 473 , 1912 , 206 , 844 , 69 , 139 , 568 , 1212 , 637 , 1351 , 8 , - 1 , 1275 , 1275 , 1275 , 11 . 693425206 , 8 . 1124198092 , 3 . 581005397 , 0 . 5897627372 , 5 . 1423916364 , 5 . 7321543736 <nl> + 050 , 3 , 7 , 22 , 105 , Louisiana , Tangipahoa Parish , 121097 , 121097 , 121460 , 122571 , 363 , 1111 , 437 , 1792 , 302 , 1140 , 135 , 652 , 13 , 40 , 215 , 423 , 228 , 463 , 0 , - 4 , 3638 , 3638 , 3638 , 14 . 686658662 , 9 . 343075265 , 5 . 3435833972 , 0 . 3278272023 , 3 . 4667726641 , 3 . 7945998664 <nl> + 050 , 3 , 7 , 22 , 107 , Louisiana , Tensas Parish , 5252 , 5252 , 5230 , 5066 , - 22 , - 164 , 16 , 61 , 6 , 58 , 10 , 3 , 0 , 0 , - 32 , - 170 , - 32 , - 170 , 0 , 3 , 16 , 16 , 16 , 11 . 849261849 , 11 . 266511267 , 0 . 5827505828 , 0 , - 33 . 02253302 , - 33 . 02253302 <nl> + 050 , 3 , 7 , 22 , 109 , Louisiana , Terrebonne Parish , 111860 , 111860 , 111874 , 111917 , 14 , 43 , 407 , 1692 , 230 , 947 , 177 , 745 , 12 , 73 , - 177 , - 778 , - 165 , - 705 , 2 , 3 , 1479 , 1479 , 1479 , 15 . 121251525 , 8 . 4632536608 , 6 . 6579978641 , 0 . 6523944216 , - 6 . 95291589 , - 6 . 300521469 <nl> + 050 , 3 , 7 , 22 , 111 , Louisiana , Union Parish , 22721 , 22721 , 22765 , 22732 , 44 , - 33 , 66 , 274 , 59 , 215 , 7 , 59 , 2 , 11 , 36 , - 104 , 38 , - 93 , - 1 , 1 , 415 , 415 , 415 , 12 . 044750203 , 9 . 4511726048 , 2 . 5935775985 , 0 . 4835483658 , - 4 . 571730004 , - 4 . 088181638 <nl> + 050 , 3 , 7 , 22 , 113 , Louisiana , Vermilion Parish , 57999 , 57999 , 58086 , 58276 , 87 , 190 , 199 , 814 , 126 , 527 , 73 , 287 , 6 , 21 , 9 , - 116 , 15 , - 95 , - 1 , - 2 , 536 , 536 , 536 , 13 . 990821746 , 9 . 0579398773 , 4 . 9328818687 , 0 . 3609425758 , - 1 . 993778038 , - 1 . 632835462 <nl> + 050 , 3 , 7 , 22 , 115 , Louisiana , Vernon Parish , 52334 , 52334 , 52715 , 52107 , 381 , - 608 , 245 , 983 , 87 , 344 , 158 , 639 , 97 , 62 , 122 , - 1328 , 219 , - 1266 , 4 , 19 , 2258 , 2258 , 2259 , 18 . 755604739 , 6 . 5635076606 , 12 . 192097079 , 1 . 182957776 , - 25 . 33819236 , - 24 . 15523459 <nl> + 050 , 3 , 7 , 22 , 117 , Louisiana , Washington Parish , 47168 , 47168 , 47069 , 47139 , - 99 , 70 , 135 , 576 , 156 , 589 , - 21 , - 13 , 2 , 2 , - 80 , 85 , - 78 , 87 , 0 , - 4 , 1582 , 1582 , 1582 , 12 . 22826087 , 12 . 504245924 , - 0 . 275985054 , 0 . 0424592391 , 1 . 804517663 , 1 . 8469769022 <nl> + 050 , 3 , 7 , 22 , 119 , Louisiana , Webster Parish , 41207 , 41207 , 41243 , 41288 , 36 , 45 , 125 , 529 , 122 , 511 , 3 , 18 , 3 , 15 , 32 , 14 , 35 , 29 , - 2 , - 2 , 1231 , 1231 , 1231 , 12 . 819425428 , 12 . 383225697 , 0 . 436199731 , 0 . 3634997758 , 0 . 3392664575 , 0 . 7027662333 <nl> + 050 , 3 , 7 , 22 , 121 , Louisiana , West Baton Rouge Parish , 23788 , 23788 , 23954 , 24109 , 166 , 155 , 84 , 339 , 22 , 186 , 62 , 153 , 5 , 19 , 96 , - 16 , 101 , 3 , 3 , - 1 , 556 , 556 , 556 , 14 . 106485238 , 7 . 7398414581 , 6 . 36664378 , 0 . 7906289661 , - 0 . 665792814 , 0 . 1248361525 <nl> + 050 , 3 , 7 , 22 , 123 , Louisiana , West Carroll Parish , 11604 , 11604 , 11597 , 11569 , - 7 , - 28 , 33 , 142 , 35 , 155 , - 2 , - 13 , 1 , 2 , - 6 , - 16 , - 5 , - 14 , 0 , - 1 , 434 , 434 , 434 , 12 . 259345593 , 13 . 381680048 , - 1 . 122334456 , 0 . 1726668393 , - 1 . 381334715 , - 1 . 208667875 <nl> + 050 , 3 , 7 , 22 , 125 , Louisiana , West Feliciana Parish , 15625 , 15625 , 15633 , 15460 , 8 , - 173 , 28 , 114 , 5 , 111 , 23 , 3 , 0 , 1 , - 14 , - 177 , - 14 , - 176 , - 1 , 0 , 5297 , 5302 , 5301 , 7 . 3328401891 , 7 . 1398707104 , 0 . 1929694787 , 0 . 0643231596 , - 11 . 38519924 , - 11 . 32087608 <nl> + 050 , 3 , 7 , 22 , 127 , Louisiana , Winn Parish , 15313 , 15313 , 15281 , 15080 , - 32 , - 201 , 46 , 193 , 44 , 190 , 2 , 3 , 1 , 2 , - 35 , - 207 , - 34 , - 205 , 0 , 1 , 1760 , 1760 , 1760 , 12 . 713678733 , 12 . 516056783 , 0 . 1976219492 , 0 . 1317479661 , - 13 . 6359145 , - 13 . 50416653 <nl> + 040 , 1 , 1 , 23 , 000 , Maine , Maine , 1328361 , 1328361 , 1327379 , 1328188 , - 982 , 809 , 3186 , 12868 , 3290 , 12688 , - 104 , 180 , 225 , 594 , - 1072 , 72 , - 847 , 666 , - 31 , - 37 , 35545 , 35545 , 35545 , 9 . 6913389871 , 9 . 5557747178 , 0 . 1355642693 , 0 . 4473620888 , 0 . 0542257077 , 0 . 5015877965 <nl> + 050 , 1 , 1 , 23 , 001 , Maine , Androscoggin County , 107702 , 107704 , 107675 , 107398 , - 29 , - 277 , 328 , 1331 , 242 , 986 , 86 , 345 , 37 , 114 , - 152 , - 740 , - 115 , - 626 , 0 , 4 , 2760 , 2760 , 2760 , 12 . 37719286 , 9 . 1689798348 , 3 . 2082130253 , 1 . 0601051736 , - 6 . 88138446 , - 5 . 821279287 <nl> + 050 , 1 , 1 , 23 , 003 , Maine , Aroostook County , 71870 , 71870 , 71723 , 71482 , - 147 , - 241 , 156 , 648 , 209 , 795 , - 53 , - 147 , 4 , 21 , - 96 , - 112 , - 92 , - 91 , - 2 , - 3 , 2005 , 2005 , 2005 , 9 . 0499633393 , 11 . 102964282 , - 2 . 053000943 , 0 . 293285849 , - 1 . 564191194 , - 1 . 270905345 <nl> + 050 , 1 , 1 , 23 , 005 , Maine , Cumberland County , 281674 , 281676 , 281386 , 282401 , - 290 , 1015 , 688 , 2720 , 605 , 2375 , 83 , 345 , 96 , 204 , - 472 , 482 , - 376 , 686 , 3 , - 16 , 9190 , 9190 , 9190 , 9 . 649034121 , 8 . 4251676608 , 1 . 2238664602 , 0 . 7236775591 , 1 . 7098656053 , 2 . 4335431644 <nl> + 050 , 1 , 1 , 23 , 007 , Maine , Franklin County , 30768 , 30768 , 30711 , 30746 , - 57 , 35 , 66 , 271 , 85 , 299 , - 19 , - 28 , 1 , 2 , - 38 , 62 , - 37 , 64 , - 1 , - 1 , 1110 , 1110 , 1110 , 8 . 8191743821 , 9 . 7303805913 , - 0 . 911206209 , 0 . 0650861578 , 2 . 0176708918 , 2 . 0827570496 <nl> + 050 , 1 , 1 , 23 , 009 , Maine , Hancock County , 54418 , 54420 , 54360 , 54578 , - 60 , 218 , 113 , 442 , 150 , 576 , - 37 , - 134 , 17 , 63 , - 37 , 291 , - 20 , 354 , - 3 , - 2 , 1176 , 1176 , 1176 , 8 . 1147074483 , 10 . 574822376 , - 2 . 460114928 , 1 . 1566211974 , 5 . 3424883879 , 6 . 4991095853 <nl> + 050 , 1 , 1 , 23 , 011 , Maine , Kennebec County , 122151 , 122151 , 122131 , 121935 , - 20 , - 196 , 300 , 1212 , 312 , 1247 , - 12 , - 35 , 13 , 44 , - 16 , - 202 , - 3 , - 158 , - 5 , - 3 , 3636 , 3636 , 3636 , 9 . 9317397753 , 10 . 218547442 , - 0 . 286807667 , 0 . 3605582097 , - 1 . 655289963 , - 1 . 294731753 <nl> + 050 , 1 , 1 , 23 , 013 , Maine , Knox County , 39736 , 39736 , 39705 , 39708 , - 31 , 3 , 90 , 369 , 101 , 403 , - 11 , - 34 , 2 , 3 , - 20 , 36 , - 18 , 39 , - 2 , - 2 , 1361 , 1361 , 1361 , 9 . 2931887726 , 10 . 149471749 , - 0 . 856282976 , 0 . 0755543803 , 0 . 9066525632 , 0 . 9822069434 <nl> + 050 , 1 , 1 , 23 , 015 , Maine , Lincoln County , 34457 , 34457 , 34379 , 34224 , - 78 , - 155 , 70 , 290 , 104 , 389 , - 34 , - 99 , 1 , 11 , - 44 , - 66 , - 43 , - 55 , - 1 , - 1 , 498 , 498 , 498 , 8 . 4544407679 , 11 . 340611927 , - 2 . 886171159 , 0 . 3206856843 , - 1 . 924114106 , - 1 . 603428421 <nl> + 050 , 1 , 1 , 23 , 017 , Maine , Oxford County , 57833 , 57831 , 57739 , 57695 , - 92 , - 44 , 127 , 519 , 169 , 634 , - 42 , - 115 , 1 , 1 , - 49 , 72 , - 48 , 73 , - 2 , - 2 , 849 , 849 , 849 , 8 . 9921513592 , 10 . 984631911 , - 1 . 992480552 , 0 . 0173259178 , 1 . 2474660845 , 1 . 2647920024 <nl> + 050 , 1 , 1 , 23 , 019 , Maine , Penobscot County , 153923 , 153921 , 153838 , 153786 , - 83 , - 52 , 376 , 1506 , 370 , 1407 , 6 , 99 , 26 , 100 , - 112 , - 246 , - 86 , - 146 , - 3 , - 5 , 7318 , 7318 , 7318 , 9 . 7911736405 , 9 . 1475307518 , 0 . 6436428887 , 0 . 650144332 , - 1 . 599355057 , - 0 . 949210725 <nl> + 050 , 1 , 1 , 23 , 021 , Maine , Piscataquis County , 17535 , 17535 , 17545 , 17419 , 10 , - 126 , 35 , 151 , 52 , 216 , - 17 , - 65 , 0 , - 1 , 28 , - 61 , 28 , - 62 , - 1 , 1 , 220 , 220 , 220 , 8 . 6374556687 , 12 . 355565725 , - 3 . 718110056 , - 0 . 057201693 , - 3 . 489303283 , - 3 . 546504977 <nl> + 050 , 1 , 1 , 23 , 023 , Maine , Sagadahoc County , 35293 , 35293 , 35205 , 35207 , - 88 , 2 , 87 , 379 , 98 , 357 , - 11 , 22 , 3 , 7 , - 79 , - 25 , - 76 , - 18 , - 1 , - 2 , 265 , 265 , 265 , 10 . 765210475 , 10 . 140316991 , 0 . 6248934841 , 0 . 1988297449 , - 0 . 710106232 , - 0 . 511276487 <nl> + 050 , 1 , 1 , 23 , 025 , Maine , Somerset County , 52228 , 52226 , 52233 , 52028 , 7 , - 205 , 118 , 503 , 141 , 503 , - 23 , 0 , 0 , 5 , 32 , - 210 , 32 , - 205 , - 2 , 0 , 715 , 715 , 715 , 9 . 6488619906 , 9 . 6488619906 , 0 , 0 . 0959131411 , - 4 . 028351924 , - 3 . 932438783 <nl> + 050 , 1 , 1 , 23 , 027 , Maine , Waldo County , 38786 , 38786 , 38801 , 38745 , 15 , - 56 , 91 , 379 , 103 , 391 , - 12 , - 12 , 0 , 3 , 28 , - 43 , 28 , - 40 , - 1 , - 4 , 501 , 501 , 501 , 9 . 7748433188 , 10 . 084337039 , - 0 . 30949372 , 0 . 07737343 , - 1 . 109019163 , - 1 . 031645733 <nl> + 050 , 1 , 1 , 23 , 029 , Maine , Washington County , 32856 , 32856 , 32798 , 32637 , - 58 , - 161 , 72 , 293 , 109 , 399 , - 37 , - 106 , 7 , 25 , - 26 , - 76 , - 19 , - 51 , - 2 , - 4 , 836 , 836 , 836 , 8 . 9554519752 , 12 . 195308321 , - 3 . 239856346 , 0 . 7641170627 , - 2 . 322915871 , - 1 . 558798808 <nl> + 050 , 1 , 1 , 23 , 031 , Maine , York County , 197131 , 197131 , 197150 , 198199 , 19 , 1049 , 469 , 1855 , 440 , 1711 , 29 , 144 , 17 , - 8 , - 19 , 910 , - 2 , 902 , - 8 , 3 , 3105 , 3105 , 3105 , 9 . 384113783 , 8 . 6556434947 , 0 . 7284702883 , - 0 . 040470572 , 4 . 6035275162 , 4 . 5630569446 <nl> + 040 , 3 , 5 , 24 , 000 , Maryland , Maryland , 5773552 , 5773552 , 5785681 , 5828289 , 12129 , 42608 , 18102 , 72995 , 10563 , 43606 , 7539 , 29389 , 4493 , 16435 , 130 , - 3124 , 4623 , 13311 , - 33 , - 92 , 138375 , 138382 , 138387 , 12 . 570206398 , 7 . 5092324158 , 5 . 0609739822 , 2 . 8302122358 , - 0 . 537972803 , 2 . 2922394323 <nl> + 050 , 3 , 5 , 24 , 001 , Maryland , Allegany County , 75087 , 75087 , 75059 , 74692 , - 28 , - 367 , 184 , 730 , 223 , 877 , - 39 , - 147 , 6 , 33 , 9 , - 252 , 15 , - 219 , - 4 , - 1 , 7924 , 7924 , 7924 , 9 . 7495175324 , 11 . 712776542 , - 1 . 96325901 , 0 . 4407316145 , - 3 . 365586874 , - 2 . 92485526 <nl> + 050 , 3 , 5 , 24 , 003 , Maryland , Anne Arundel County , 537656 , 537656 , 539241 , 544403 , 1585 , 5162 , 1724 , 6874 , 908 , 3746 , 816 , 3128 , 356 , 714 , 412 , 1328 , 768 , 2042 , 1 , - 8 , 14133 , 14133 , 14137 , 12 . 686823348 , 6 . 9137096685 , 5 . 7731136794 , 1 . 3177759486 , 2 . 4509894393 , 3 . 7687653879 <nl> + 050 , 3 , 5 , 24 , 005 , Maryland , Baltimore County , 805029 , 805029 , 805964 , 809941 , 935 , 3977 , 2416 , 9740 , 1897 , 7751 , 519 , 1989 , 531 , 1871 , - 82 , 164 , 449 , 2035 , - 33 , - 47 , 20781 , 20788 , 20789 , 12 . 055164134 , 9 . 5933857498 , 2 . 4617783842 , 2 . 3157301945 , 0 . 2029822298 , 2 . 5187124243 <nl> + 050 , 3 , 5 , 24 , 009 , Maryland , Calvert County , 88737 , 88737 , 88912 , 89256 , 175 , 344 , 221 , 905 , 141 , 605 , 80 , 300 , 19 , 44 , 75 , 5 , 94 , 49 , 1 , - 5 , 650 , 650 , 650 , 10 . 158951102 , 6 . 7913430021 , 3 . 3676081002 , 0 . 4939158547 , 0 . 0561268017 , 0 . 5500426564 <nl> + 050 , 3 , 5 , 24 , 011 , Maryland , Caroline County , 33066 , 33066 , 33072 , 32985 , 6 , - 87 , 106 , 436 , 83 , 311 , 23 , 125 , 7 , 50 , - 23 , - 264 , - 16 , - 214 , - 1 , 2 , 442 , 442 , 442 , 13 . 20072059 , 9 . 416110329 , 3 . 7846102608 , 1 . 5138441043 , - 7 . 993096871 , - 6 . 479252767 <nl> + 050 , 3 , 5 , 24 , 013 , Maryland , Carroll County , 167134 , 167134 , 167247 , 167288 , 113 , 41 , 405 , 1608 , 334 , 1317 , 71 , 291 , 26 , 61 , 22 , - 306 , 48 , - 245 , - 6 , - 5 , 3319 , 3319 , 3319 , 9 . 6133438953 , 7 . 8736156157 , 1 . 7397282796 , 0 . 3646853095 , - 1 . 829404995 , - 1 . 464719686 <nl> + 050 , 3 , 5 , 24 , 015 , Maryland , Cecil County , 101108 , 101108 , 101209 , 101694 , 101 , 485 , 286 , 1165 , 200 , 846 , 86 , 319 , 24 , 100 , - 7 , 70 , 17 , 170 , - 2 , - 4 , 1551 , 1551 , 1551 , 11 . 483319616 , 8 . 3389599957 , 3 . 1443596201 , 0 . 9856926709 , 0 . 6899848696 , 1 . 6756775405 <nl> + 050 , 3 , 5 , 24 , 017 , Maryland , Charles County , 146551 , 146551 , 147103 , 149130 , 552 , 2027 , 441 , 1747 , 234 , 874 , 207 , 873 , 52 , 138 , 287 , 1009 , 339 , 1147 , 6 , 7 , 1405 , 1405 , 1405 , 11 . 794769658 , 5 . 90076055 , 5 . 8940091077 , 0 . 9316990342 , 6 . 8122052573 , 7 . 7439042916 <nl> + 050 , 3 , 5 , 24 , 019 , Maryland , Dorchester County , 32618 , 32618 , 32652 , 32640 , 34 , - 12 , 94 , 389 , 88 , 379 , 6 , 10 , 9 , 34 , 20 , - 54 , 29 , - 20 , - 1 , - 2 , 506 , 506 , 506 , 11 . 915701771 , 11 . 60938553 , 0 . 3063162409 , 1 . 041475219 , - 1 . 654107701 , - 0 . 612632482 <nl> + 050 , 3 , 5 , 24 , 021 , Maryland , Frederick County , 233385 , 233385 , 234188 , 236745 , 803 , 2557 , 705 , 2757 , 334 , 1471 , 371 , 1286 , 151 , 445 , 276 , 825 , 427 , 1270 , 5 , 1 , 4182 , 4182 , 4182 , 11 . 708671934 , 6 . 2471731648 , 5 . 4614987695 , 1 . 8898654373 , 3 . 5036831142 , 5 . 3935485515 <nl> + 050 , 3 , 5 , 24 , 023 , Maryland , Garrett County , 30097 , 30097 , 30075 , 30051 , - 22 , - 24 , 68 , 279 , 82 , 307 , - 14 , - 28 , 0 , 3 , - 7 , 3 , - 7 , 6 , - 1 , - 2 , 515 , 515 , 515 , 9 . 2805109271 , 10 . 211888368 , - 0 . 931377441 , 0 . 0997904401 , 0 . 0997904401 , 0 . 1995808802 <nl> + 050 , 3 , 5 , 24 , 025 , Maryland , Harford County , 244826 , 244826 , 245190 , 246489 , 364 , 1299 , 672 , 2700 , 436 , 1789 , 236 , 911 , 53 , 69 , 78 , 329 , 131 , 398 , - 3 , - 10 , 2743 , 2743 , 2743 , 10 . 982775347 , 7 . 2771055912 , 3 . 7056697561 , 0 . 2806709255 , 1 . 3382715145 , 1 . 6189424401 <nl> + 050 , 3 , 5 , 24 , 027 , Maryland , Howard County , 287085 , 287085 , 288472 , 293142 , 1387 , 4670 , 843 , 3302 , 311 , 1343 , 532 , 1959 , 280 , 924 , 562 , 1773 , 842 , 2697 , 13 , 14 , 2322 , 2322 , 2322 , 11 . 354609758 , 4 . 6181831937 , 6 . 7364265647 , 3 . 1773650565 , 6 . 0968271053 , 9 . 2741921618 <nl> + 050 , 3 , 5 , 24 , 029 , Maryland , Kent County , 20197 , 20197 , 20204 , 20204 , 7 , 0 , 40 , 192 , 67 , 267 , - 27 , - 75 , 4 , 22 , 33 , 55 , 37 , 77 , - 3 , - 2 , 1526 , 1526 , 1526 , 9 . 5030686993 , 13 . 21520491 , - 3 . 712136211 , 1 . 0888932885 , 2 . 7222332211 , 3 . 8111265096 <nl> + 050 , 3 , 5 , 24 , 031 , Maryland , Montgomery County , 971777 , 971777 , 975439 , 989794 , 3662 , 14355 , 3271 , 13226 , 1261 , 5221 , 2010 , 8005 , 1413 , 6110 , 257 , 294 , 1670 , 6404 , - 18 , - 54 , 8900 , 8900 , 8900 , 13 . 45998159 , 5 . 3133648784 , 8 . 1466167116 , 6 . 2180922059 , 0 . 2992011634 , 6 . 5172933693 <nl> + 050 , 3 , 5 , 24 , 033 , Maryland , Prince George ' s County , 863420 , 863420 , 865219 , 871233 , 1799 , 6014 , 2945 , 11967 , 1311 , 5391 , 1634 , 6576 , 985 , 3859 , - 832 , - 4438 , 153 , - 579 , 12 , 17 , 19328 , 19328 , 19328 , 13 . 783277626 , 6 . 2092128086 , 7 . 5740648172 , 4 . 4446952752 , - 5 . 111572333 , - 0 . 666877057 <nl> + 050 , 3 , 5 , 24 , 035 , Maryland , Queen Anne ' s County , 47798 , 47798 , 47872 , 48354 , 74 , 482 , 121 , 459 , 95 , 329 , 26 , 130 , 5 , 21 , 46 , 330 , 51 , 351 , - 3 , 1 , 426 , 426 , 426 , 9 . 5400411531 , 6 . 8380687132 , 2 . 7019724399 , 0 . 4364724711 , 6 . 8588531166 , 7 . 2953255877 <nl> + 050 , 3 , 5 , 24 , 037 , Maryland , St . Mary ' s County , 105151 , 105151 , 105749 , 107484 , 598 , 1735 , 355 , 1461 , 163 , 700 , 192 , 761 , 46 , 81 , 350 , 884 , 396 , 965 , 10 , 9 , 2926 , 2926 , 2926 , 13 . 703319843 , 6 . 565587878 , 7 . 1377319646 , 0 . 7597323116 , 8 . 2913995489 , 9 . 0511318605 <nl> + 050 , 3 , 5 , 24 , 039 , Maryland , Somerset County , 26470 , 26470 , 26495 , 26339 , 25 , - 156 , 64 , 250 , 64 , 260 , 0 , - 10 , 8 , 25 , 18 , - 172 , 26 , - 147 , - 1 , 1 , 5651 , 5651 , 5651 , 9 . 4636029829 , 9 . 8421471022 , - 0 . 378544119 , 0 . 9463602983 , - 6 . 510958852 , - 5 . 564598554 <nl> + 050 , 3 , 5 , 24 , 041 , Maryland , Talbot County , 37782 , 37782 , 37879 , 38025 , 97 , 146 , 90 , 359 , 96 , 434 , - 6 , - 75 , 15 , 60 , 90 , 168 , 105 , 228 , - 2 , - 7 , 383 , 383 , 383 , 9 . 459317032 , 11 . 43549747 , - 1 . 976180438 , 1 . 5809443508 , 4 . 4266441821 , 6 . 0075885329 <nl> + 050 , 3 , 5 , 24 , 043 , Maryland , Washington County , 147430 , 147430 , 147586 , 148203 , 156 , 617 , 433 , 1715 , 318 , 1347 , 115 , 368 , 35 , 120 , 11 , 136 , 46 , 256 , - 5 , - 7 , 8425 , 8425 , 8425 , 11 . 59610398 , 9 . 107843767 , 2 . 4882602125 , 0 . 8113891997 , 0 . 9195744264 , 1 . 7309636261 <nl> + 050 , 3 , 5 , 24 , 045 , Maryland , Wicomico County , 98733 , 98733 , 98830 , 99190 , 97 , 360 , 303 , 1259 , 219 , 927 , 84 , 332 , 51 , 219 , - 35 , - 189 , 16 , 30 , - 3 , - 2 , 4403 , 4403 , 4403 , 12 . 715887284 , 9 . 3626906373 , 3 . 3531966468 , 2 . 2118977881 , - 1 . 908898091 , 0 . 302999697 <nl> + 050 , 3 , 5 , 24 , 047 , Maryland , Worcester County , 51454 , 51454 , 51464 , 51514 , 10 , 50 , 105 , 429 , 142 , 601 , - 37 , - 172 , 25 , 88 , 26 , 137 , 51 , 225 , - 4 , - 3 , 735 , 735 , 735 , 8 . 3318767115 , 11 . 672396046 , - 3 . 340519334 , 1 . 7091029152 , 2 . 660762493 , 4 . 3698654081 <nl> + 050 , 3 , 5 , 24 , 510 , Maryland , Baltimore city , 620961 , 620961 , 620560 , 619493 , - 401 , - 1067 , 2210 , 9046 , 1556 , 6513 , 654 , 2533 , 392 , 1344 , - 1456 , - 4959 , - 1064 , - 3615 , 9 , 15 , 25199 , 25199 , 25199 , 14 . 589698989 , 10 . 504389732 , 4 . 0853092569 , 2 . 167649286 , - 7 . 998045245 , - 5 . 830395959 <nl> + 040 , 1 , 1 , 25 , 000 , Massachusetts , Massachusetts , 6547629 , 6547629 , 6555466 , 6587536 , 7837 , 32070 , 18589 , 73368 , 12958 , 52355 , 5631 , 21013 , 4906 , 19664 , - 2587 , - 8299 , 2319 , 11365 , - 113 , - 308 , 238882 , 238470 , 238444 , 11 . 164572599 , 7 . 9669774074 , 3 . 1975951917 , 2 . 9923148456 , - 1 . 262877385 , 1 . 7294374603 <nl> + 050 , 1 , 1 , 25 , 001 , Massachusetts , Barnstable County , 215888 , 215888 , 215988 , 215769 , 100 , - 219 , 438 , 1750 , 679 , 2743 , - 241 , - 993 , 112 , 282 , 243 , 503 , 355 , 785 , - 14 , - 11 , 3961 , 3961 , 3961 , 8 . 1064117084 , 12 . 706221324 , - 4 . 599809615 , 1 . 3062903439 , 2 . 3300143368 , 3 . 6363046806 <nl> + 050 , 1 , 1 , 25 , 003 , Massachusetts , Berkshire County , 131219 , 131219 , 131128 , 130458 , - 91 , - 670 , 277 , 1110 , 341 , 1365 , - 64 , - 255 , 33 , 122 , - 52 , - 535 , - 19 , - 413 , - 8 , - 2 , 6159 , 6159 , 6159 , 8 . 4866927129 , 10 . 436338336 , - 1 . 949645623 , 0 . 9327716315 , - 4 . 090432974 , - 3 . 157661343 <nl> + 050 , 1 , 1 , 25 , 005 , Massachusetts , Bristol County , 548285 , 548285 , 548537 , 548922 , 252 , 385 , 1522 , 6007 , 1193 , 4890 , 329 , 1117 , 132 , 447 , - 197 , - 1165 , - 65 , - 718 , - 12 , - 14 , 15868 , 15868 , 15868 , 10 . 947105997 , 8 . 9114946435 , 2 . 0356113531 , 0 . 8146090196 , - 2 . 123086147 , - 1 . 308477128 <nl> + 050 , 1 , 1 , 25 , 007 , Massachusetts , Dukes County , 16535 , 16535 , 16576 , 16766 , 41 , 190 , 45 , 183 , 21 , 127 , 24 , 56 , 20 , 81 , - 1 , 53 , 19 , 134 , - 2 , 0 , 143 , 143 , 143 , 10 . 977145942 , 7 . 618019315 , 3 . 3591266271 , 4 . 8587367285 , 3 . 1791734149 , 8 . 0379101434 <nl> + 050 , 1 , 1 , 25 , 009 , Massachusetts , Essex County , 743159 , 743159 , 744484 , 748930 , 1325 , 4446 , 2193 , 8653 , 1479 , 6121 , 714 , 2532 , 482 , 1962 , 149 , - 2 , 631 , 1960 , - 20 , - 46 , 16472 , 16472 , 16472 , 11 . 588213315 , 8 . 1973250552 , 3 . 3908882601 , 2 . 6275366375 , - 0 . 002678427 , 2 . 6248582108 <nl> + 050 , 1 , 1 , 25 , 011 , Massachusetts , Franklin County , 71372 , 71372 , 71336 , 71599 , - 36 , 263 , 163 , 635 , 163 , 638 , 0 , - 3 , 11 , 63 , - 46 , 205 , - 35 , 268 , - 1 , - 2 , 1481 , 1481 , 1481 , 8 . 8851575891 , 8 . 9271347116 , - 0 . 041977122 , 0 . 8815195718 , 2 . 868436702 , 3 . 7499562738 <nl> + 050 , 1 , 1 , 25 , 013 , Massachusetts , Hampden County , 463490 , 463490 , 463711 , 463783 , 221 , 72 , 1404 , 5571 , 1026 , 4102 , 378 , 1469 , 421 , 1340 , - 569 , - 2732 , - 148 , - 1392 , - 9 , - 5 , 14791 , 14791 , 14791 , 12 . 013015718 , 8 . 8453402394 , 3 . 1676754782 , 2 . 8895065628 , - 5 . 891143231 , - 3 . 001636668 <nl> + 050 , 1 , 1 , 25 , 015 , Massachusetts , Hampshire County , 158080 , 158080 , 157963 , 157822 , - 117 , - 141 , 275 , 1077 , 296 , 1174 , - 21 , - 97 , 55 , 198 , - 148 , - 231 , - 93 , - 33 , - 3 , - 11 , 20832 , 20832 , 20832 , 6 . 8210966322 , 7 . 4354386687 , - 0 . 614342037 , 1 . 2540177653 , - 1 . 463020726 , - 0 . 209002961 <nl> + 050 , 1 , 1 , 25 , 017 , Massachusetts , Middlesex County , 1503085 , 1503085 , 1505720 , 1518171 , 2635 , 12451 , 4470 , 17581 , 2672 , 10644 , 1798 , 6937 , 1379 , 6062 , - 504 , - 449 , 875 , 5613 , - 38 , - 99 , 55412 , 55303 , 55305 , 11 . 628064636 , 7 . 039936294 , 4 . 5881283419 , 4 . 0094037781 , - 0 . 296968376 , 3 . 7124354019 <nl> + 050 , 1 , 1 , 25 , 019 , Massachusetts , Nantucket County , 10172 , 10172 , 10154 , 10142 , - 18 , - 12 , 42 , 155 , 4 , 51 , 38 , 104 , 5 , 19 , - 62 , - 136 , - 57 , - 117 , 1 , 1 , 58 , 58 , 58 , 15 . 273945605 , 5 . 025620812 , 10 . 248324793 , 1 . 8722901064 , - 13 . 4016555 , - 11 . 52936539 <nl> + 050 , 1 , 1 , 25 , 021 , Massachusetts , Norfolk County , 670850 , 670850 , 672107 , 675436 , 1257 , 3329 , 1778 , 6966 , 1342 , 5357 , 436 , 1609 , 344 , 1553 , 485 , 204 , 829 , 1757 , - 8 , - 37 , 17611 , 17611 , 17611 , 10 . 338816646 , 7 . 9507666917 , 2 . 3880499546 , 2 . 3049357238 , 0 . 3027732696 , 2 . 6077089933 <nl> + 050 , 1 , 1 , 25 , 023 , Massachusetts , Plymouth County , 494919 , 494919 , 495731 , 497579 , 812 , 1848 , 1320 , 5181 , 1004 , 3974 , 316 , 1207 , 228 , 768 , 283 , - 97 , 511 , 671 , - 15 , - 30 , 11821 , 11821 , 11821 , 10 . 431788666 , 8 . 0015302373 , 2 . 4302584289 , 1 . 5463450484 , - 0 . 195306601 , 1 . 3510384472 <nl> + 050 , 1 , 1 , 25 , 025 , Massachusetts , Suffolk County , 722023 , 722023 , 722731 , 730932 , 708 , 8201 , 2369 , 9430 , 1177 , 4669 , 1192 , 4761 , 1270 , 4998 , - 1788 , - 1523 , - 518 , 3475 , 34 , - 35 , 47228 , 46923 , 46897 , 12 . 974121237 , 6 . 4237722223 , 6 . 5503490149 , 6 . 8764218392 , - 2 . 095396251 , 4 . 7810255885 <nl> + 050 , 1 , 1 , 25 , 027 , Massachusetts , Worcester County , 798552 , 798552 , 799300 , 801227 , 748 , 1927 , 2293 , 9069 , 1561 , 6500 , 732 , 2569 , 414 , 1769 , - 380 , - 2394 , 34 , - 625 , - 18 , - 17 , 27045 , 27047 , 27045 , 11 . 332517352 , 8 . 1223247093 , 3 . 2101926428 , 2 . 2105219093 , - 2 . 99151467 , - 0 . 780992761 <nl> + 040 , 2 , 3 , 26 , 000 , Michigan , Michigan , 9883640 , 9883635 , 9877143 , 9876187 , - 6492 , - 956 , 28932 , 113894 , 21459 , 86988 , 7473 , 26906 , 2817 , 12399 , - 16903 , - 40331 , - 14086 , - 27932 , 121 , 70 , 229068 , 229068 , 229069 , 11 . 531625301 , 8 . 8074263934 , 2 . 7241989072 , 1 . 2553832696 , - 4 . 083463396 , - 2 . 828080126 <nl> + 050 , 2 , 3 , 26 , 001 , Michigan , Alcona County , 10942 , 10942 , 10907 , 10800 , - 35 , - 107 , 16 , 67 , 45 , 166 , - 29 , - 99 , 1 , 4 , - 6 , - 12 , - 5 , - 8 , - 1 , 0 , 127 , 127 , 127 , 6 . 1731238771 , 15 . 294605427 , - 9 . 12148155 , 0 . 3685447091 , - 1 . 105634127 , - 0 . 737089418 <nl> + 050 , 2 , 3 , 26 , 003 , Michigan , Alger County , 9601 , 9601 , 9580 , 9513 , - 21 , - 67 , 18 , 71 , 17 , 120 , 1 , - 49 , 0 , 1 , - 21 , - 19 , - 21 , - 18 , - 1 , 0 , 1022 , 1022 , 1022 , 7 . 4372806788 , 12 . 570051851 , - 5 . 132771173 , 0 . 1047504321 , - 1 . 99025821 , - 1 . 885507778 <nl> + 050 , 2 , 3 , 26 , 005 , Michigan , Allegan County , 111408 , 111408 , 111521 , 111234 , 113 , - 287 , 366 , 1436 , 191 , 823 , 175 , 613 , 14 , 72 , - 74 , - 979 , - 60 , - 907 , - 2 , 7 , 954 , 954 , 954 , 12 . 89308882 , 7 . 3892841912 , 5 . 5038046284 , 0 . 6464501358 , - 8 . 789926152 , - 8 . 143476016 <nl> + 050 , 2 , 3 , 26 , 007 , Michigan , Alpena County , 29598 , 29598 , 29543 , 29386 , - 55 , - 157 , 70 , 276 , 96 , 336 , - 26 , - 60 , 3 , 10 , - 30 , - 107 , - 27 , - 97 , - 2 , 0 , 514 , 514 , 514 , 9 . 3672046021 , 11 . 403553429 , - 2 . 036348827 , 0 . 3393914711 , - 3 . 631488741 , - 3 . 29209727 <nl> + 050 , 2 , 3 , 26 , 009 , Michigan , Antrim County , 23580 , 23580 , 23527 , 23316 , - 53 , - 211 , 53 , 213 , 67 , 247 , - 14 , - 34 , 1 , 9 , - 38 , - 186 , - 37 , - 177 , - 2 , 0 , 226 , 226 , 226 , 9 . 0942083129 , 10 . 545865978 , - 1 . 451657665 , 0 . 3842623231 , - 7 . 941421344 , - 7 . 557159021 <nl> + 050 , 2 , 3 , 26 , 011 , Michigan , Arenac County , 15899 , 15899 , 15882 , 15649 , - 17 , - 233 , 31 , 120 , 51 , 202 , - 20 , - 82 , 0 , 2 , 5 , - 152 , 5 , - 150 , - 2 , - 1 , 207 , 207 , 207 , 7 . 6115568805 , 12 . 812787416 , - 5 . 201230535 , 0 . 1268592813 , - 9 . 641305382 , - 9 . 514446101 <nl> + 050 , 2 , 3 , 26 , 013 , Michigan , Baraga County , 8860 , 8860 , 8836 , 8808 , - 24 , - 28 , 16 , 63 , 21 , 113 , - 5 , - 50 , 0 , 5 , - 19 , 17 , - 19 , 22 , 0 , 0 , 1010 , 1010 , 1010 , 7 . 1412378146 , 12 . 808886874 , - 5 . 667649059 , 0 . 5667649059 , 1 . 9270006801 , 2 . 493765586 <nl> + 050 , 2 , 3 , 26 , 015 , Michigan , Barry County , 59173 , 59173 , 59062 , 58820 , - 111 , - 242 , 152 , 611 , 123 , 495 , 29 , 116 , 7 , 27 , - 149 , - 386 , - 142 , - 359 , 2 , 1 , 603 , 603 , 603 , 10 . 366298502 , 8 . 3982287372 , 1 . 9680697647 , 0 . 4580852038 , - 6 . 548921803 , - 6 . 090836599 <nl> + 050 , 2 , 3 , 26 , 017 , Michigan , Bay County , 107771 , 107771 , 107715 , 107110 , - 56 , - 605 , 292 , 1142 , 281 , 1121 , 11 , 21 , 9 , 35 , - 71 , - 663 , - 62 , - 628 , - 5 , 2 , 1438 , 1438 , 1438 , 10 . 631909694 , 10 . 436401722 , 0 . 1955079716 , 0 . 3258466193 , - 6 . 172465961 , - 5 . 846619341 <nl> + 050 , 2 , 3 , 26 , 019 , Michigan , Benzie County , 17525 , 17525 , 17524 , 17443 , - 1 , - 81 , 43 , 163 , 51 , 199 , - 8 , - 36 , 0 , 2 , 9 , - 46 , 9 , - 44 , - 2 , - 1 , 252 , 252 , 252 , 9 . 3230760431 , 11 . 382160323 , - 2 . 059084279 , 0 . 1143935711 , - 2 . 631052135 , - 2 . 516658564 <nl> + 050 , 2 , 3 , 26 , 021 , Michigan , Berrien County , 156813 , 156813 , 156789 , 156941 , - 24 , 152 , 476 , 1901 , 390 , 1588 , 86 , 313 , 24 , 104 , - 130 , - 258 , - 106 , - 154 , - 4 , - 7 , 3527 , 3527 , 3527 , 12 . 118700794 , 10 . 123354477 , 1 . 9953463169 , 0 . 6629904695 , - 1 . 644726357 , - 0 . 981735888 <nl> + 050 , 2 , 3 , 26 , 023 , Michigan , Branch County , 45248 , 45248 , 45155 , 45197 , - 93 , 42 , 127 , 514 , 105 , 396 , 22 , 118 , 10 , 58 , - 127 , - 135 , - 117 , - 77 , 2 , 1 , 3148 , 3148 , 3148 , 11 . 377722685 , 8 . 7657163095 , 2 . 6120063751 , 1 . 2838675403 , - 2 . 988312378 , - 1 . 704444838 <nl> + 050 , 2 , 3 , 26 , 025 , Michigan , Calhoun County , 136146 , 136146 , 136084 , 135490 , - 62 , - 594 , 416 , 1649 , 323 , 1321 , 93 , 328 , 41 , 159 , - 195 , - 1088 , - 154 , - 929 , - 1 , 7 , 4275 , 4275 , 4275 , 12 . 144019678 , 9 . 7284717977 , 2 . 4155478801 , 1 . 1709515638 , - 8 . 012549066 , - 6 . 841597502 <nl> + 050 , 2 , 3 , 26 , 027 , Michigan , Cass County , 52293 , 52293 , 52210 , 51988 , - 83 , - 222 , 143 , 559 , 121 , 487 , 22 , 72 , 3 , 16 , - 103 , - 302 , - 100 , - 286 , - 5 , - 8 , 474 , 474 , 474 , 10 . 729572545 , 9 . 3475882455 , 1 . 3819842991 , 0 . 307107622 , - 5 . 796656366 , - 5 . 489548744 <nl> + 050 , 2 , 3 , 26 , 029 , Michigan , Charlevoix County , 25949 , 25949 , 25902 , 25998 , - 47 , 96 , 57 , 224 , 76 , 267 , - 19 , - 43 , 1 , 3 , - 28 , 136 , - 27 , 139 , - 1 , 0 , 279 , 279 , 279 , 8 . 6319845857 , 10 . 289017341 , - 1 . 657032755 , 0 . 1156069364 , 5 . 2408477842 , 5 . 3564547206 <nl> + 050 , 2 , 3 , 26 , 031 , Michigan , Cheboygan County , 26152 , 26150 , 26082 , 25918 , - 68 , - 164 , 53 , 211 , 86 , 333 , - 33 , - 122 , 1 , 4 , - 35 , - 45 , - 34 , - 41 , - 1 , - 1 , 388 , 388 , 388 , 8 . 1153846154 , 12 . 807692308 , - 4 . 692307692 , 0 . 1538461538 , - 1 . 730769231 , - 1 . 576923077 <nl> + 050 , 2 , 3 , 26 , 033 , Michigan , Chippewa County , 38520 , 38520 , 38612 , 38797 , 92 , 185 , 105 , 400 , 82 , 318 , 23 , 82 , 5 , 15 , 63 , 88 , 68 , 103 , 1 , 0 , 4930 , 4930 , 4930 , 10 . 334715602 , 8 . 2160989032 , 2 . 1186166983 , 0 . 3875518351 , 2 . 2736374323 , 2 . 6611892674 <nl> + 050 , 2 , 3 , 26 , 035 , Michigan , Clare County , 30926 , 30926 , 30982 , 31033 , 56 , 51 , 88 , 349 , 102 , 370 , - 14 , - 21 , 0 , 1 , 70 , 72 , 70 , 73 , 0 , - 1 , 391 , 391 , 391 , 11 . 25534145 , 11 . 932596952 , - 0 . 677255503 , 0 . 032250262 , 2 . 3220188664 , 2 . 3542691284 <nl> + 050 , 2 , 3 , 26 , 037 , Michigan , Clinton County , 75382 , 75382 , 75420 , 75469 , 38 , 49 , 179 , 703 , 125 , 484 , 54 , 219 , 5 , 29 , - 19 , - 195 , - 14 , - 166 , - 2 , - 4 , 680 , 680 , 680 , 9 . 3181080132 , 6 . 415311918 , 2 . 9027960951 , 0 . 384388524 , - 2 . 584681455 , - 2 . 200292931 <nl> + 050 , 2 , 3 , 26 , 039 , Michigan , Crawford County , 14074 , 14074 , 14046 , 14014 , - 28 , - 32 , 33 , 130 , 46 , 153 , - 13 , - 23 , 0 , 9 , - 14 , - 15 , - 14 , - 6 , - 1 , - 3 , 197 , 197 , 197 , 9 . 2658588738 , 10 . 905203136 , - 1 . 639344262 , 0 . 6414825374 , - 1 . 069137562 , - 0 . 427655025 <nl> + 050 , 2 , 3 , 26 , 041 , Michigan , Delta County , 37069 , 37069 , 37081 , 37105 , 12 , 24 , 99 , 388 , 111 , 401 , - 12 , - 13 , 0 , 5 , 27 , 36 , 27 , 41 , - 3 , - 4 , 623 , 623 , 623 , 10 . 460194646 , 10 . 810665085 , - 0 . 350470439 , 0 . 1347963228 , 0 . 9705335238 , 1 . 1053298466 <nl> + 050 , 2 , 3 , 26 , 043 , Michigan , Dickinson County , 26168 , 26168 , 26134 , 26185 , - 34 , 51 , 57 , 225 , 83 , 306 , - 26 , - 81 , 3 , 16 , - 9 , 117 , - 6 , 133 , - 2 , - 1 , 453 , 453 , 453 , 8 . 601081825 , 11 . 697471282 , - 3 . 096389457 , 0 . 6116324853 , 4 . 472562549 , 5 . 0841950343 <nl> + 050 , 2 , 3 , 26 , 045 , Michigan , Eaton County , 107759 , 107759 , 107877 , 108056 , 118 , 179 , 292 , 1124 , 208 , 860 , 84 , 264 , 26 , 89 , 12 , - 169 , 38 , - 80 , - 4 , - 5 , 1559 , 1559 , 1559 , 10 . 410636633 , 7 . 9654337225 , 2 . 4452029102 , 0 . 824329769 , - 1 . 565300348 , - 0 . 740970579 <nl> + 050 , 2 , 3 , 26 , 047 , Michigan , Emmet County , 32694 , 32694 , 32709 , 32848 , 15 , 139 , 78 , 307 , 74 , 280 , 4 , 27 , 0 , 7 , 14 , 108 , 14 , 115 , - 3 , - 3 , 505 , 505 , 505 , 9 . 3658953277 , 8 . 5421846637 , 0 . 823710664 , 0 . 2135546166 , 3 . 294842656 , 3 . 5083972726 <nl> + 050 , 2 , 3 , 26 , 049 , Michigan , Genesee County , 425790 , 425790 , 425100 , 422080 , - 690 , - 3020 , 1321 , 5222 , 992 , 4102 , 329 , 1120 , 54 , 35 , - 1092 , - 4220 , - 1038 , - 4185 , 19 , 45 , 5973 , 5974 , 5974 , 12 . 327958639 , 9 . 6838924432 , 2 . 6440661961 , 0 . 0826270686 , - 9 . 962463703 , - 9 . 879836634 <nl> + 050 , 2 , 3 , 26 , 051 , Michigan , Gladwin County , 25692 , 25692 , 25700 , 25851 , 8 , 151 , 56 , 223 , 92 , 354 , - 36 , - 131 , 0 , 1 , 45 , 280 , 45 , 281 , - 1 , 1 , 289 , 289 , 289 , 8 . 6516265446 , 13 . 733972183 , - 5 . 082345638 , 0 . 0387965316 , 10 . 863028845 , 10 . 901825377 <nl> + 050 , 2 , 3 , 26 , 053 , Michigan , Gogebic County , 16427 , 16427 , 16423 , 16281 , - 4 , - 142 , 33 , 133 , 66 , 233 , - 33 , - 100 , 3 , 12 , 28 , - 53 , 31 , - 41 , - 2 , - 1 , 1549 , 1549 , 1549 , 8 . 1335616438 , 14 . 249021526 , - 6 . 115459883 , 0 . 7338551859 , - 3 . 241193738 , - 2 . 507338552 <nl> + 050 , 2 , 3 , 26 , 055 , Michigan , Grand Traverse County , 86986 , 86986 , 87033 , 88349 , 47 , 1316 , 235 , 925 , 184 , 747 , 51 , 178 , 4 , 15 , - 5 , 1111 , - 1 , 1126 , - 3 , 12 , 2642 , 2642 , 2642 , 10 . 548402915 , 8 . 5185480836 , 2 . 0298548312 , 0 . 1710551824 , 12 . 669487177 , 12 . 840542359 <nl> + 050 , 2 , 3 , 26 , 057 , Michigan , Gratiot County , 42476 , 42476 , 42446 , 42145 , - 30 , - 301 , 118 , 476 , 112 , 426 , 6 , 50 , 5 , 18 , - 39 , - 372 , - 34 , - 354 , - 2 , 3 , 5560 , 5560 , 5560 , 11 . 254152333 , 10 . 071993474 , 1 . 1821588585 , 0 . 4255771891 , - 8 . 795261907 , - 8 . 369684718 <nl> + 050 , 2 , 3 , 26 , 059 , Michigan , Hillsdale County , 46688 , 46688 , 46626 , 46514 , - 62 , - 112 , 125 , 509 , 113 , 436 , 12 , 73 , 6 , 27 , - 78 , - 208 , - 72 , - 181 , - 2 , - 4 , 1641 , 1641 , 1641 , 10 . 929783122 , 9 . 3622503758 , 1 . 5675327464 , 0 . 5797723857 , - 4 . 466394675 , - 3 . 886622289 <nl> + 050 , 2 , 3 , 26 , 061 , Michigan , Houghton County , 36628 , 36628 , 36681 , 36638 , 53 , - 43 , 103 , 406 , 92 , 361 , 11 , 45 , 9 , 62 , 35 , - 150 , 44 , - 88 , - 2 , 0 , 2715 , 2715 , 2715 , 11 . 074891911 , 9 . 8473792605 , 1 . 2275126502 , 1 . 6912396514 , - 4 . 091708834 , - 2 . 400469183 <nl> + 050 , 2 , 3 , 26 , 063 , Michigan , Huron County , 33118 , 33118 , 33043 , 32675 , - 75 , - 368 , 74 , 304 , 124 , 471 , - 50 , - 167 , 1 , 6 , - 25 , - 206 , - 24 , - 200 , - 1 , - 1 , 524 , 524 , 524 , 9 . 2516509936 , 14 . 333972428 , - 5 . 082321434 , 0 . 1825983749 , - 6 . 269210871 , - 6 . 086612496 <nl> + 050 , 2 , 3 , 26 , 065 , Michigan , Ingham County , 280895 , 280895 , 280761 , 281613 , - 134 , 852 , 831 , 3270 , 478 , 1983 , 353 , 1287 , 212 , 713 , - 716 , - 1153 , - 504 , - 440 , 17 , 5 , 18478 , 18478 , 18478 , 11 . 629271624 , 7 . 0522463699 , 4 . 5770252537 , 2 . 5356791032 , - 4 . 100474062 , - 1 . 564794959 <nl> + 050 , 2 , 3 , 26 , 067 , Michigan , Ionia County , 63905 , 63905 , 63898 , 63979 , - 7 , 81 , 180 , 729 , 116 , 473 , 64 , 256 , 3 , 23 , - 75 , - 197 , - 72 , - 174 , 1 , - 1 , 5524 , 5524 , 5524 , 11 . 401581207 , 7 . 3977337598 , 4 . 0038474472 , 0 . 3597206691 , - 3 . 081085731 , - 2 . 721365062 <nl> + 050 , 2 , 3 , 26 , 069 , Michigan , Iosco County , 25887 , 25887 , 25801 , 25541 , - 86 , - 260 , 48 , 200 , 96 , 379 , - 48 , - 179 , 2 , 10 , - 38 , - 88 , - 36 , - 78 , - 2 , - 3 , 400 , 400 , 400 , 7 . 7908924467 , 14 . 763741187 , - 6 . 97284874 , 0 . 3895446223 , - 3 . 427992677 , - 3 . 038448054 <nl> + 050 , 2 , 3 , 26 , 071 , Michigan , Iron County , 11817 , 11817 , 11804 , 11796 , - 13 , - 8 , 32 , 118 , 50 , 204 , - 18 , - 86 , 0 , 0 , 6 , 78 , 6 , 78 , - 1 , 0 , 355 , 355 , 355 , 10 , 17 . 288135593 , - 7 . 288135593 , 0 , 6 . 6101694915 , 6 . 6101694915 <nl> + 050 , 2 , 3 , 26 , 073 , Michigan , Isabella County , 70311 , 70311 , 70315 , 70622 , 4 , 307 , 179 , 701 , 101 , 416 , 78 , 285 , 10 , 46 , - 86 , - 20 , - 76 , 26 , 2 , - 4 , 6540 , 6540 , 6540 , 9 . 9477071316 , 5 . 9033468855 , 4 . 0443602461 , 0 . 6527739345 , - 0 . 283814754 , 0 . 3689591803 <nl> + 050 , 2 , 3 , 26 , 075 , Michigan , Jackson County , 160248 , 160248 , 160168 , 159748 , - 80 , - 420 , 453 , 1815 , 358 , 1496 , 95 , 319 , 20 , 72 , - 193 , - 815 , - 173 , - 743 , - 2 , 4 , 9672 , 9672 , 9672 , 11 . 346728516 , 9 . 3524550194 , 1 . 9942734968 , 0 . 450118156 , - 5 . 09508746 , - 4 . 644969304 <nl> + 050 , 2 , 3 , 26 , 077 , Michigan , Kalamazoo County , 250331 , 250331 , 250659 , 252074 , 328 , 1415 , 772 , 3008 , 481 , 2001 , 291 , 1007 , 90 , 335 , - 46 , 86 , 44 , 421 , - 7 , - 13 , 8455 , 8455 , 8455 , 11 . 966590616 , 7 . 9604879727 , 4 . 006102643 , 1 . 3327153777 , 0 . 3421299179 , 1 . 6748452956 <nl> + 050 , 2 , 3 , 26 , 079 , Michigan , Kalkaska County , 17153 , 17153 , 17137 , 17160 , - 16 , 23 , 45 , 183 , 33 , 159 , 12 , 24 , 0 , 1 , - 27 , 0 , - 27 , 1 , - 1 , - 2 , 138 , 138 , 138 , 10 . 671487302 , 9 . 2719479838 , 1 . 3995393183 , 0 . 0583141383 , 0 , 0 . 0583141383 <nl> + 050 , 2 , 3 , 26 , 081 , Michigan , Kent County , 602622 , 602622 , 603029 , 608453 , 407 , 5424 , 2212 , 8675 , 1023 , 4162 , 1189 , 4513 , 209 , 819 , - 1012 , 127 , - 803 , 946 , 21 , - 35 , 11353 , 11353 , 11353 , 14 . 321302339 , 6 . 8709233814 , 7 . 4503789573 , 1 . 3520630104 , 0 . 2096605645 , 1 . 5617235749 <nl> + 050 , 2 , 3 , 26 , 083 , Michigan , Keweenaw County , 2156 , 2156 , 2167 , 2173 , 11 , 6 , 6 , 27 , 1 , 18 , 5 , 9 , 0 , 0 , 6 , - 4 , 6 , - 4 , 0 , 1 , 10 , 10 , 10 , 12 . 442396313 , 8 . 2949308756 , 4 . 1474654378 , 0 , - 1 . 843317972 , - 1 . 843317972 <nl> + 050 , 2 , 3 , 26 , 085 , Michigan , Lake County , 11539 , 11539 , 11516 , 11539 , - 23 , 23 , 27 , 107 , 43 , 141 , - 16 , - 34 , 0 , 0 , - 6 , 56 , - 6 , 56 , - 1 , 1 , 397 , 397 , 397 , 9 . 2821513771 , 12 . 231620039 , - 2 . 949468662 , 0 , 4 . 8579483843 , 4 . 8579483843 <nl> + 050 , 2 , 3 , 26 , 087 , Michigan , Lapeer County , 88319 , 88316 , 88189 , 88082 , - 127 , - 107 , 206 , 818 , 182 , 739 , 24 , 79 , 12 , 52 , - 165 , - 236 , - 153 , - 184 , 2 , - 2 , 1716 , 1716 , 1716 , 9 . 2811636628 , 8 . 3848165609 , 0 . 8963471019 , 0 . 590000624 , - 2 . 67769514 , - 2 . 087694516 <nl> + 050 , 2 , 3 , 26 , 089 , Michigan , Leelanau County , 21708 , 21708 , 21703 , 21459 , - 5 , - 244 , 43 , 173 , 46 , 202 , - 3 , - 29 , 3 , 21 , - 4 , - 238 , - 1 , - 217 , - 1 , 2 , 284 , 284 , 284 , 8 . 0163106436 , 9 . 3600852602 , - 1 . 343774617 , 0 . 9730781706 , - 11 . 02821927 , - 10 . 0551411 <nl> + 050 , 2 , 3 , 26 , 091 , Michigan , Lenawee County , 99892 , 99892 , 99762 , 99440 , - 130 , - 322 , 261 , 1033 , 228 , 917 , 33 , 116 , 18 , 83 , - 182 , - 524 , - 164 , - 441 , 1 , 3 , 5396 , 5396 , 5396 , 10 . 371381813 , 9 . 2067348721 , 1 . 1646469413 , 0 . 8333249666 , - 5 . 260991356 , - 4 . 427666389 <nl> + 050 , 2 , 3 , 26 , 093 , Michigan , Livingston County , 180967 , 180967 , 180931 , 181722 , - 36 , 791 , 407 , 1603 , 300 , 1213 , 107 , 390 , 17 , 11 , - 162 , 396 , - 145 , 407 , 2 , - 6 , 1152 , 1152 , 1152 , 8 . 8404066697 , 6 . 6895903246 , 2 . 1508163451 , 0 . 0606640508 , 2 . 1839058273 , 2 . 2445698781 <nl> + 050 , 2 , 3 , 26 , 095 , Michigan , Luce County , 6631 , 6631 , 6617 , 6584 , - 14 , - 33 , 16 , 56 , 8 , 86 , 8 , - 30 , 1 , 4 , - 23 , - 6 , - 22 , - 2 , 0 , - 1 , 1211 , 1211 , 1211 , 8 . 484205742 , 13 . 029315961 , - 4 . 545110219 , 0 . 6060146959 , - 0 . 909022044 , - 0 . 303007348 <nl> + 050 , 2 , 3 , 26 , 097 , Michigan , Mackinac County , 11113 , 11113 , 11099 , 11037 , - 14 , - 62 , 21 , 74 , 22 , 126 , - 1 , - 52 , 2 , 12 , - 14 , - 20 , - 12 , - 8 , - 1 , - 2 , 95 , 95 , 95 , 6 . 6859414528 , 11 . 384170582 , - 4 . 698229129 , 1 . 0842067221 , - 1 . 807011203 , - 0 . 722804481 <nl> + 050 , 2 , 3 , 26 , 099 , Michigan , Macomb County , 840978 , 840978 , 840944 , 842145 , - 34 , 1201 , 2295 , 9036 , 1874 , 7669 , 421 , 1367 , 141 , 945 , - 584 , - 1078 , - 443 , - 133 , - 12 , - 33 , 7432 , 7432 , 7432 , 10 . 737400102 , 9 . 1130059076 , 1 . 6243941942 , 1 . 1229352696 , - 1 . 280978011 , - 0 . 158042742 <nl> + 050 , 2 , 3 , 26 , 101 , Michigan , Manistee County , 24733 , 24733 , 24702 , 24709 , - 31 , 7 , 49 , 199 , 80 , 289 , - 31 , - 90 , 0 , 3 , 2 , 94 , 2 , 97 , - 2 , 0 , 1349 , 1349 , 1349 , 8 . 0548865637 , 11 . 697800085 , - 3 . 642913521 , 0 . 1214304507 , 3 . 8048207889 , 3 . 9262512396 <nl> + 050 , 2 , 3 , 26 , 103 , Michigan , Marquette County , 67077 , 67077 , 67164 , 67694 , 87 , 530 , 178 , 692 , 153 , 615 , 25 , 77 , 7 , 30 , 56 , 420 , 63 , 450 , - 1 , 3 , 4757 , 4757 , 4757 , 10 . 262646636 , 9 . 1207047413 , 1 . 1419418944 , 0 . 4449124264 , 6 . 2287739697 , 6 . 6736863961 <nl> + 050 , 2 , 3 , 26 , 105 , Michigan , Mason County , 28705 , 28705 , 28724 , 28678 , 19 , - 46 , 74 , 293 , 77 , 291 , - 3 , 2 , 1 , 1 , 23 , - 48 , 24 , - 47 , - 2 , - 1 , 442 , 442 , 442 , 10 . 208703529 , 10 . 139019546 , 0 . 0696839831 , 0 . 0348419916 , - 1 . 672415595 , - 1 . 637573604 <nl> + 050 , 2 , 3 , 26 , 107 , Michigan , Mecosta County , 42798 , 42798 , 42843 , 43300 , 45 , 457 , 113 , 451 , 83 , 329 , 30 , 122 , 5 , 20 , 13 , 312 , 18 , 332 , - 3 , 3 , 3375 , 3375 , 3375 , 10 . 470961076 , 7 . 6384616278 , 2 . 8324994486 , 0 . 4643441719 , 7 . 2437690816 , 7 . 7081132535 <nl> + 050 , 2 , 3 , 26 , 109 , Michigan , Menominee County , 24029 , 24029 , 24001 , 23930 , - 28 , - 71 , 50 , 205 , 61 , 237 , - 11 , - 32 , 3 , 16 , - 19 , - 54 , - 16 , - 38 , - 1 , - 1 , 382 , 382 , 382 , 8 . 5539629885 , 9 . 8892157476 , - 1 . 335252759 , 0 . 6676263796 , - 2 . 253239031 , - 1 . 585612652 <nl> + 050 , 2 , 3 , 26 , 111 , Michigan , Midland County , 83629 , 83629 , 83634 , 84063 , 5 , 429 , 217 , 843 , 166 , 670 , 51 , 173 , 23 , 78 , - 68 , 181 , - 45 , 259 , - 1 , - 3 , 1272 , 1272 , 1272 , 10 . 053847117 , 7 . 9906020978 , 2 . 0632450193 , 0 . 9302491994 , 2 . 1586551936 , 3 . 088904393 <nl> + 050 , 2 , 3 , 26 , 113 , Michigan , Missaukee County , 14849 , 14849 , 14840 , 14911 , - 9 , 71 , 41 , 173 , 35 , 157 , 6 , 16 , 1 , 3 , - 16 , 52 , - 15 , 55 , 0 , 0 , 194 , 194 , 194 , 11 . 629861181 , 10 . 554267083 , 1 . 0755940977 , 0 . 2016738933 , 3 . 4956808175 , 3 . 6973547108 <nl> + 050 , 2 , 3 , 26 , 115 , Michigan , Monroe County , 152021 , 152021 , 151964 , 151560 , - 57 , - 404 , 421 , 1658 , 313 , 1246 , 108 , 412 , 15 , 50 , - 180 , - 871 , - 165 , - 821 , 0 , 5 , 1462 , 1462 , 1462 , 10 . 925000988 , 8 . 2102239032 , 2 . 7147770852 , 0 . 3294632385 , - 5 . 739249615 , - 5 . 409786376 <nl> + 050 , 2 , 3 , 26 , 117 , Michigan , Montcalm County , 63342 , 63342 , 63278 , 63185 , - 64 , - 93 , 174 , 683 , 140 , 541 , 34 , 142 , 5 , 23 , - 102 , - 257 , - 97 , - 234 , - 1 , - 1 , 3163 , 3163 , 3163 , 10 . 801578327 , 8 . 5558621889 , 2 . 2457161383 , 0 . 3637427548 , - 4 . 064429912 , - 3 . 700687158 <nl> + 050 , 2 , 3 , 26 , 119 , Michigan , Montmorency County , 9765 , 9765 , 9768 , 9653 , 3 , - 115 , 18 , 72 , 46 , 170 , - 28 , - 98 , 0 , 0 , 32 , - 17 , 32 , - 17 , - 1 , 0 , 156 , 156 , 156 , 7 . 4146542403 , 17 . 506822512 , - 10 . 09216827 , 0 , - 1 . 750682251 , - 1 . 750682251 <nl> + 050 , 2 , 3 , 26 , 121 , Michigan , Muskegon County , 172188 , 172188 , 172083 , 171302 , - 105 , - 781 , 565 , 2209 , 401 , 1622 , 164 , 587 , 10 , 37 , - 283 , - 1418 , - 273 , - 1381 , 4 , 13 , 6345 , 6345 , 6345 , 12 . 866025016 , 9 . 447122035 , 3 . 4189029806 , 0 . 2155015507 , - 8 . 258951323 , - 8 . 043449772 <nl> + 050 , 2 , 3 , 26 , 123 , Michigan , Newaygo County , 48460 , 48460 , 48408 , 48352 , - 52 , - 56 , 139 , 556 , 119 , 469 , 20 , 87 , 7 , 31 , - 80 , - 172 , - 73 , - 141 , 1 , - 2 , 557 , 557 , 557 , 11 . 492352212 , 9 . 6940884663 , 1 . 7982637453 , 0 . 6407606449 , - 3 . 555188094 , - 2 . 914427449 <nl> + 050 , 2 , 3 , 26 , 125 , Michigan , Oakland County , 1202362 , 1202362 , 1202682 , 1210145 , 320 , 7463 , 3343 , 13022 , 2344 , 9463 , 999 , 3559 , 700 , 3389 , - 1387 , 581 , - 687 , 3970 , 8 , - 66 , 12496 , 12496 , 12496 , 10 . 793977355 , 7 . 8439108979 , 2 . 9500664573 , 2 . 8091529148 , 0 . 4815927541 , 3 . 2907456689 <nl> + 050 , 2 , 3 , 26 , 127 , Michigan , Oceana County , 26570 , 26570 , 26523 , 26523 , - 47 , 0 , 80 , 333 , 74 , 254 , 6 , 79 , 2 , 14 , - 55 , - 93 , - 53 , - 79 , 0 , 0 , 303 , 303 , 303 , 12 . 555140821 , 9 . 5765938996 , 2 . 9785469215 , 0 . 5278437582 , - 3 . 50639068 , - 2 . 978546922 <nl> + 050 , 2 , 3 , 26 , 129 , Michigan , Ogemaw County , 21699 , 21699 , 21652 , 21570 , - 47 , - 82 , 45 , 184 , 64 , 275 , - 19 , - 91 , 0 , 1 , - 28 , 10 , - 28 , 11 , 0 , - 2 , 244 , 244 , 244 , 8 . 5141825922 , 12 . 725001157 , - 4 . 210818565 , 0 . 0462727315 , 0 . 4627273148 , 0 . 5090000463 <nl> + 050 , 2 , 3 , 26 , 131 , Michigan , Ontonagon County , 6780 , 6780 , 6760 , 6598 , - 20 , - 162 , 9 , 38 , 19 , 107 , - 10 , - 69 , 0 , 0 , - 9 , - 92 , - 9 , - 92 , - 1 , - 1 , 83 , 83 , 83 , 5 . 6894744722 , 16 . 02036233 , - 10 . 33088786 , 0 , - 13 . 77451714 , - 13 . 77451714 <nl> + 050 , 2 , 3 , 26 , 133 , Michigan , Osceola County , 23528 , 23528 , 23538 , 23510 , 10 , - 28 , 71 , 276 , 54 , 226 , 17 , 50 , 1 , 8 , - 8 , - 83 , - 7 , - 75 , 0 , - 3 , 455 , 455 , 455 , 11 . 732698521 , 9 . 6072096582 , 2 . 1254888624 , 0 . 340078218 , - 3 . 528311512 , - 3 . 188233294 <nl> + 050 , 2 , 3 , 26 , 135 , Michigan , Oscoda County , 8640 , 8640 , 8629 , 8608 , - 11 , - 21 , 20 , 79 , 27 , 114 , - 7 , - 35 , 0 , 1 , - 3 , 14 , - 3 , 15 , - 1 , - 1 , 65 , 65 , 65 , 9 . 1663282474 , 13 . 227359749 , - 4 . 061031502 , 0 . 1160294715 , 1 . 6244126008 , 1 . 7404420723 <nl> + 050 , 2 , 3 , 26 , 137 , Michigan , Otsego County , 24164 , 24164 , 24162 , 24078 , - 2 , - 84 , 61 , 246 , 60 , 259 , 1 , - 13 , 0 , 5 , - 3 , - 76 , - 3 , - 71 , 0 , 0 , 348 , 348 , 348 , 10 . 199004975 , 10 . 737976783 , - 0 . 538971808 , 0 . 2072968491 , - 3 . 150912106 , - 2 . 943615257 <nl> + 050 , 2 , 3 , 26 , 139 , Michigan , Ottawa County , 263801 , 263801 , 264065 , 266300 , 264 , 2235 , 811 , 3154 , 391 , 1595 , 420 , 1559 , 66 , 118 , - 222 , 573 , - 156 , 691 , 0 , - 15 , 8261 , 8261 , 8261 , 11 . 893695851 , 6 . 0147257078 , 5 . 8789701432 , 0 . 4449765727 , 2 . 1607760693 , 2 . 605752642 <nl> + 050 , 2 , 3 , 26 , 141 , Michigan , Presque Isle County , 13376 , 13376 , 13339 , 13155 , - 37 , - 184 , 22 , 90 , 47 , 189 , - 25 , - 99 , 0 , 1 , - 10 , - 85 , - 10 , - 84 , - 2 , - 1 , 230 , 230 , 230 , 6 . 7939910923 , 14 . 267381294 , - 7 . 473390202 , 0 . 0754887899 , - 6 . 416547143 , - 6 . 341058353 <nl> + 050 , 2 , 3 , 26 , 143 , Michigan , Roscommon County , 24449 , 24449 , 24462 , 24414 , 13 , - 48 , 41 , 172 , 94 , 369 , - 53 , - 197 , 3 , 11 , 64 , 138 , 67 , 149 , - 1 , 0 , 277 , 277 , 277 , 7 . 0382191669 , 15 . 099435306 , - 8 . 061216139 , 0 . 4501186676 , 5 . 646943285 , 6 . 0970619527 <nl> + 050 , 2 , 3 , 26 , 145 , Michigan , Saginaw County , 200169 , 200169 , 199959 , 199088 , - 210 , - 871 , 605 , 2362 , 482 , 1980 , 123 , 382 , 23 , 96 , - 358 , - 1359 , - 335 , - 1263 , 2 , 10 , 7116 , 7116 , 7116 , 11 . 838204522 , 9 . 9236430796 , 1 . 9145614426 , 0 . 4811463311 , - 6 . 81122775 , - 6 . 330081419 <nl> + 050 , 2 , 3 , 26 , 147 , Michigan , St . Clair County , 163040 , 163040 , 162730 , 161642 , - 310 , - 1088 , 425 , 1705 , 379 , 1572 , 46 , 133 , 11 , 18 , - 373 , - 1250 , - 362 , - 1232 , 6 , 11 , 1999 , 1999 , 1999 , 10 . 512621311 , 9 . 6925751914 , 0 . 8200461199 , 0 . 1109836854 , - 7 . 707200375 , - 7 . 596216689 <nl> + 050 , 2 , 3 , 26 , 149 , Michigan , St . Joseph County , 61295 , 61295 , 61271 , 61136 , - 24 , - 135 , 207 , 817 , 150 , 548 , 57 , 269 , 12 , 59 , - 94 , - 467 , - 82 , - 408 , 1 , 4 , 765 , 765 , 765 , 13 . 348909785 , 8 . 9537363059 , 4 . 3951734786 , 0 . 963997157 , - 7 . 630282582 , - 6 . 666285425 <nl> + 050 , 2 , 3 , 26 , 151 , Michigan , Sanilac County , 43114 , 43114 , 43041 , 42605 , - 73 , - 436 , 117 , 462 , 117 , 476 , 0 , - 14 , 0 , 2 , - 71 , - 428 , - 71 , - 426 , - 2 , 4 , 566 , 566 , 566 , 10 . 788594914 , 11 . 115522033 , - 0 . 326927119 , 0 . 0467038741 , - 9 . 994629054 , - 9 . 94792518 <nl> + 050 , 2 , 3 , 26 , 153 , Michigan , Schoolcraft County , 8485 , 8485 , 8487 , 8490 , 2 , 3 , 16 , 69 , 23 , 110 , - 7 , - 41 , 0 , 1 , 11 , 44 , 11 , 45 , - 2 , - 1 , 140 , 140 , 140 , 8 . 1286446369 , 12 . 958708841 , - 4 . 830064205 , 0 . 117806444 , 5 . 1834835365 , 5 . 3012899806 <nl> + 050 , 2 , 3 , 26 , 155 , Michigan , Shiawassee County , 70648 , 70648 , 70580 , 69841 , - 68 , - 739 , 178 , 693 , 169 , 676 , 9 , 17 , 6 , 19 , - 81 , - 781 , - 75 , - 762 , - 2 , 6 , 821 , 821 , 821 , 9 . 8703185421 , 9 . 6281895158 , 0 . 2421290263 , 0 . 2706147941 , - 11 . 12369233 , - 10 . 85307753 <nl> + 050 , 2 , 3 , 26 , 157 , Michigan , Tuscola County , 55729 , 55729 , 55665 , 55422 , - 64 , - 243 , 133 , 546 , 144 , 605 , - 11 , - 59 , 6 , 29 , - 57 , - 212 , - 51 , - 183 , - 2 , - 1 , 1235 , 1235 , 1235 , 9 . 8301331389 , 10 . 892363643 , - 1 . 062230504 , 0 . 5221132986 , - 3 . 816828252 , - 3 . 294714953 <nl> + 050 , 2 , 3 , 26 , 159 , Michigan , Van Buren County , 76258 , 76258 , 76196 , 76131 , - 62 , - 65 , 248 , 1002 , 171 , 707 , 77 , 295 , 16 , 67 , - 157 , - 430 , - 141 , - 363 , 2 , 3 , 877 , 877 , 877 , 13 . 155908014 , 9 . 2826616424 , 3 . 8732463713 , 0 . 879686464 , - 5 . 645748948 , - 4 . 766062484 <nl> + 050 , 2 , 3 , 26 , 161 , Michigan , Washtenaw County , 344791 , 344791 , 345250 , 347962 , 459 , 2712 , 953 , 3696 , 473 , 1973 , 480 , 1723 , 361 , 1205 , - 390 , - 201 , - 29 , 1004 , 8 , - 15 , 17812 , 17812 , 17812 , 10 . 663404557 , 5 . 6923423138 , 4 . 9710622436 , 3 . 4765699382 , - 0 . 579909176 , 2 . 8966607618 <nl> + 050 , 2 , 3 , 26 , 163 , Michigan , Wayne County , 1820584 , 1820584 , 1815246 , 1802096 , - 5338 , - 13150 , 6051 , 23853 , 4332 , 17647 , 1719 , 6206 , 557 , 3053 , - 7745 , - 22583 , - 7188 , - 19530 , 131 , 174 , 23849 , 23848 , 23849 , 13 . 188136483 , 9 . 7568877922 , 3 . 4312486903 , 1 . 6879797376 , - 12 . 48596345 , - 10 . 79798371 <nl> + 050 , 2 , 3 , 26 , 165 , Michigan , Wexford County , 32735 , 32735 , 32765 , 32718 , 30 , - 47 , 98 , 391 , 81 , 307 , 17 , 84 , 0 , 5 , 15 , - 136 , 15 , - 131 , - 2 , 0 , 389 , 389 , 389 , 11 . 942030756 , 9 . 3764793916 , 2 . 5655513645 , 0 . 1527113907 , - 4 . 153749828 , - 4 . 001038437 <nl> + 040 , 2 , 4 , 27 , 000 , Minnesota , Minnesota , 5303925 , 5303925 , 5310658 , 5344861 , 6733 , 34203 , 16979 , 68088 , 9326 , 38436 , 7653 , 29652 , 2463 , 9417 , - 3354 , - 4719 , - 891 , 4698 , - 29 , - 147 , 135395 , 135395 , 135394 , 12 . 779856148 , 7 . 214289609 , 5 . 5655665388 , 1 . 7675347395 , - 0 . 885738179 , 0 . 8817965601 <nl> + 050 , 2 , 4 , 27 , 001 , Minnesota , Aitkin County , 16202 , 16202 , 16223 , 16220 , 21 , - 3 , 30 , 133 , 52 , 202 , - 22 , - 69 , 0 , 3 , 44 , 63 , 44 , 66 , - 1 , 0 , 274 , 274 , 274 , 8 . 1989951607 , 12 . 452609192 , - 4 . 253614031 , 0 . 1849397405 , 3 . 8837345498 , 4 . 0686742903 <nl> + 050 , 2 , 4 , 27 , 003 , Minnesota , Anoka County , 330844 , 330844 , 331464 , 333140 , 620 , 1676 , 1049 , 4123 , 390 , 1535 , 659 , 2588 , 145 , 421 , - 186 , - 1336 , - 41 , - 915 , 2 , 3 , 3009 , 3009 , 3009 , 12 . 40738846 , 4 . 6192920897 , 7 . 7880963702 , 1 . 26691985 , - 4 . 020439239 , - 2 . 753519389 <nl> + 050 , 2 , 4 , 27 , 005 , Minnesota , Becker County , 32504 , 32504 , 32538 , 32778 , 34 , 240 , 105 , 427 , 90 , 362 , 15 , 65 , 1 , 6 , 21 , 170 , 22 , 176 , - 3 , - 1 , 458 , 458 , 458 , 13 . 074897422 , 11 . 084573458 , 1 . 9903239635 , 0 . 183722212 , 5 . 2054626738 , 5 . 3891848858 <nl> + 050 , 2 , 4 , 27 , 007 , Minnesota , Beltrami County , 44442 , 44442 , 44578 , 45264 , 136 , 686 , 180 , 692 , 84 , 323 , 96 , 369 , 9 , 30 , 33 , 288 , 42 , 318 , - 2 , - 1 , 2079 , 2079 , 2079 , 15 . 404821798 , 7 . 1904009261 , 8 . 2144208722 , 0 . 6678390953 , 6 . 4112553149 , 7 . 0790944102 <nl> + 050 , 2 , 4 , 27 , 009 , Minnesota , Benton County , 38451 , 38451 , 38489 , 38671 , 38 , 182 , 156 , 557 , 76 , 288 , 80 , 269 , 2 , 8 , - 45 , - 94 , - 43 , - 86 , 1 , - 1 , 1048 , 1048 , 1048 , 14 . 4375324 , 7 . 465007776 , 6 . 9725246242 , 0 . 2073613271 , - 2 . 436495594 , - 2 . 229134266 <nl> + 050 , 2 , 4 , 27 , 011 , Minnesota , Big Stone County , 5269 , 5269 , 5267 , 5238 , - 2 , - 29 , 13 , 66 , 11 , 85 , 2 , - 19 , 0 , 0 , - 3 , - 11 , - 3 , - 11 , - 1 , 1 , 137 , 137 , 137 , 12 . 565445026 , 16 . 182770109 , - 3 . 617325083 , 0 , - 2 . 094240838 , - 2 . 094240838 <nl> + 050 , 2 , 4 , 27 , 013 , Minnesota , Blue Earth County , 64013 , 64013 , 64067 , 64384 , 54 , 317 , 188 , 746 , 119 , 443 , 69 , 303 , 33 , 142 , - 48 , - 126 , - 15 , 16 , 0 , - 2 , 4529 , 4529 , 4529 , 11 . 615324131 , 6 . 8975718367 , 4 . 7177522946 , 2 . 2109598213 , - 1 . 961837588 , 0 . 2491222334 <nl> + 050 , 2 , 4 , 27 , 015 , Minnesota , Brown County , 25893 , 25893 , 25884 , 25734 , - 9 , - 150 , 64 , 273 , 62 , 295 , 2 , - 22 , 1 , 7 , - 11 , - 134 , - 10 , - 127 , - 1 , - 1 , 1111 , 1111 , 1111 , 10 . 577705452 , 11 . 430121276 , - 0 . 852415824 , 0 . 2712232167 , - 5 . 191987291 , - 4 . 920764075 <nl> + 050 , 2 , 4 , 27 , 017 , Minnesota , Carlton County , 35386 , 35386 , 35398 , 35455 , 12 , 57 , 92 , 388 , 96 , 363 , - 4 , 25 , 5 , 19 , 13 , 16 , 18 , 35 , - 2 , - 3 , 1984 , 1984 , 1984 , 10 . 952253257 , 10 . 246566836 , 0 . 7056864212 , 0 . 5363216801 , 0 . 4516393096 , 0 . 9879609897 <nl> + 050 , 2 , 4 , 27 , 019 , Minnesota , Carver County , 91042 , 91042 , 91358 , 92638 , 316 , 1280 , 301 , 1136 , 115 , 418 , 186 , 718 , 28 , 104 , 100 , 456 , 128 , 560 , 2 , 2 , 836 , 836 , 836 , 12 . 348094524 , 4 . 5435770343 , 7 . 8045174895 , 1 . 1304593578 , 4 . 9566294919 , 6 . 0870888498 <nl> + 050 , 2 , 4 , 27 , 021 , Minnesota , Cass County , 28567 , 28567 , 28631 , 28390 , 64 , - 241 , 76 , 312 , 68 , 275 , 8 , 37 , 0 , 4 , 56 , - 282 , 56 , - 278 , 0 , 0 , 223 , 223 , 223 , 10 . 943336665 , 9 . 6455691763 , 1 . 2977674892 , 0 . 140299188 , - 9 . 891092755 , - 9 . 750793567 <nl> + 050 , 2 , 4 , 27 , 023 , Minnesota , Chippewa County , 12441 , 12441 , 12459 , 12319 , 18 , - 140 , 39 , 163 , 26 , 142 , 13 , 21 , 3 , 11 , 3 , - 173 , 6 , - 162 , - 1 , 1 , 237 , 237 , 237 , 13 . 156832674 , 11 . 461780612 , 1 . 6950520623 , 0 . 8878844136 , - 13 . 96400032 , - 13 . 07611591 <nl> + 050 , 2 , 4 , 27 , 025 , Minnesota , Chisago County , 53887 , 53887 , 53905 , 53916 , 18 , 11 , 138 , 587 , 89 , 322 , 49 , 265 , 0 , 6 , - 30 , - 260 , - 30 , - 254 , - 1 , 0 , 1673 , 1673 , 1673 , 10 . 888416913 , 5 . 9728624294 , 4 . 9155544838 , 0 . 1112955732 , - 4 . 822808173 , - 4 . 7115126 <nl> + 050 , 2 , 4 , 27 , 027 , Minnesota , Clay County , 58999 , 58999 , 59145 , 59803 , 146 , 658 , 200 , 787 , 111 , 420 , 89 , 367 , 4 , 31 , 53 , 259 , 57 , 290 , 0 , 1 , 3743 , 3743 , 3743 , 13 . 232673101 , 7 . 0619094058 , 6 . 1707636951 , 0 . 5212361704 , 4 . 3548441336 , 4 . 876080304 <nl> + 050 , 2 , 4 , 27 , 029 , Minnesota , Clearwater County , 8695 , 8695 , 8708 , 8774 , 13 , 66 , 25 , 106 , 11 , 90 , 14 , 16 , 0 , 2 , - 1 , 49 , - 1 , 51 , 0 , - 1 , 115 , 115 , 115 , 12 . 126758952 , 10 . 296304771 , 1 . 8304541814 , 0 . 2288067727 , 5 . 6057659307 , 5 . 8345727034 <nl> + 050 , 2 , 4 , 27 , 031 , Minnesota , Cook County , 5176 , 5176 , 5171 , 5218 , - 5 , 47 , 8 , 44 , 5 , 51 , 3 , - 7 , 0 , 0 , - 7 , 53 , - 7 , 53 , - 1 , 1 , 51 , 51 , 51 , 8 . 4704976417 , 9 . 818076812 , - 1 . 34757917 , 0 , 10 . 203099432 , 10 . 203099432 <nl> + 050 , 2 , 4 , 27 , 033 , Minnesota , Cottonwood County , 11687 , 11687 , 11706 , 11686 , 19 , - 20 , 35 , 135 , 39 , 176 , - 4 , - 41 , 2 , 7 , 22 , 15 , 24 , 22 , - 1 , - 1 , 244 , 244 , 244 , 11 . 542407661 , 15 . 047879617 , - 3 . 505471956 , 0 . 598495212 , 1 . 2824897401 , 1 . 8809849521 <nl> + 050 , 2 , 4 , 27 , 035 , Minnesota , Crow Wing County , 62500 , 62500 , 62603 , 62763 , 103 , 160 , 191 , 755 , 151 , 594 , 40 , 161 , 3 , 10 , 64 , - 7 , 67 , 3 , - 4 , - 4 , 750 , 750 , 750 , 12 . 044733022 , 9 . 4762535297 , 2 . 568479492 , 0 . 1595328877 , - 0 . 111673021 , 0 . 0478598663 <nl> + 050 , 2 , 4 , 27 , 037 , Minnesota , Dakota County , 398552 , 398552 , 399155 , 402006 , 603 , 2851 , 1287 , 5187 , 514 , 2070 , 773 , 3117 , 212 , 541 , - 388 , - 799 , - 176 , - 258 , 6 , - 8 , 2853 , 2853 , 2853 , 12 . 948708187 , 5 . 1675006647 , 7 . 7812075226 , 1 . 3505400288 , - 1 . 994605329 , - 0 . 6440653 <nl> + 050 , 2 , 4 , 27 , 039 , Minnesota , Dodge County , 20087 , 20087 , 20154 , 20243 , 67 , 89 , 66 , 267 , 27 , 131 , 39 , 136 , 0 , 6 , 28 , - 52 , 28 , - 46 , 0 , - 1 , 149 , 149 , 149 , 13 . 218803376 , 6 . 485630121 , 6 . 7331732554 , 0 . 2970517613 , - 2 . 574448598 , - 2 . 277396836 <nl> + 050 , 2 , 4 , 27 , 041 , Minnesota , Douglas County , 36009 , 36009 , 35996 , 36172 , - 13 , 176 , 98 , 401 , 110 , 402 , - 12 , - 1 , 1 , 9 , 1 , 170 , 2 , 179 , - 3 , - 2 , 522 , 522 , 522 , 11 . 112958652 , 11 . 140671766 , - 0 . 027713114 , 0 . 2494180246 , 4 . 7112293537 , 4 . 9606473783 <nl> + 050 , 2 , 4 , 27 , 043 , Minnesota , Faribault County , 14553 , 14553 , 14514 , 14508 , - 39 , - 6 , 35 , 157 , 36 , 166 , - 1 , - 9 , 0 , 3 , - 37 , 2 , - 37 , 5 , - 1 , - 2 , 336 , 336 , 336 , 10 . 819378403 , 11 . 439597547 , - 0 . 620219144 , 0 . 2067397147 , 0 . 1378264765 , 0 . 3445661912 <nl> + 050 , 2 , 4 , 27 , 045 , Minnesota , Fillmore County , 20866 , 20866 , 20852 , 20876 , - 14 , 24 , 60 , 250 , 57 , 233 , 3 , 17 , 0 , 8 , - 15 , 0 , - 15 , 8 , - 2 , - 1 , 359 , 359 , 359 , 11 . 982361963 , 11 . 16756135 , 0 . 8148006135 , 0 . 3834355828 , 0 , 0 . 3834355828 <nl> + 050 , 2 , 4 , 27 , 047 , Minnesota , Freeborn County , 31255 , 31255 , 31239 , 31172 , - 16 , - 67 , 93 , 362 , 94 , 367 , - 1 , - 5 , 16 , 59 , - 29 , - 121 , - 13 , - 62 , - 2 , 0 , 637 , 637 , 637 , 11 . 600519139 , 11 . 760747304 , - 0 . 160228165 , 1 . 8906923459 , - 3 . 877521591 , - 1 . 986829245 <nl> + 050 , 2 , 4 , 27 , 049 , Minnesota , Goodhue County , 46183 , 46183 , 46217 , 46217 , 34 , 0 , 133 , 541 , 111 , 453 , 22 , 88 , 8 , 41 , 6 , - 127 , 14 , - 86 , - 2 , - 2 , 901 , 901 , 901 , 11 . 705649436 , 9 . 8015881602 , 1 . 9040612762 , 0 . 8871194582 , - 2 . 747906614 , - 1 . 860787156 <nl> + 050 , 2 , 4 , 27 , 051 , Minnesota , Grant County , 6018 , 6018 , 6009 , 5989 , - 9 , - 20 , 14 , 65 , 12 , 74 , 2 , - 9 , 0 , 3 , - 11 , - 13 , - 11 , - 10 , 0 , - 1 , 110 , 110 , 110 , 10 . 83513919 , 12 . 335389232 , - 1 . 500250042 , 0 . 5000833472 , - 2 . 167027838 , - 1 . 666944491 <nl> + 050 , 2 , 4 , 27 , 053 , Minnesota , Hennepin County , 1152425 , 1152425 , 1154067 , 1168431 , 1642 , 14364 , 3979 , 15811 , 1849 , 7532 , 2130 , 8279 , 959 , 4219 , - 1472 , 1896 , - 513 , 6115 , 25 , - 30 , 25084 , 25084 , 25083 , 13 . 615512263 , 6 . 4861196866 , 7 . 1293925764 , 3 . 6331570576 , 1 . 6327247645 , 5 . 2658818221 <nl> + 050 , 2 , 4 , 27 , 055 , Minnesota , Houston County , 19027 , 19027 , 19021 , 18916 , - 6 , - 105 , 38 , 176 , 44 , 192 , - 6 , - 16 , 3 , 14 , - 2 , - 104 , 1 , - 90 , - 1 , 1 , 257 , 257 , 257 , 9 . 2785407386 , 10 . 122044442 , - 0 . 843503704 , 0 . 7380657406 , - 5 . 482774073 , - 4 . 744708332 <nl> + 050 , 2 , 4 , 27 , 057 , Minnesota , Hubbard County , 20428 , 20428 , 20431 , 20303 , 3 , - 128 , 54 , 217 , 39 , 177 , 15 , 40 , 0 , 0 , - 10 , - 167 , - 10 , - 167 , - 2 , - 1 , 154 , 154 , 154 , 10 . 654490107 , 8 . 6905287966 , 1 . 96396131 , 0 , - 8 . 199538469 , - 8 . 199538469 <nl> + 050 , 2 , 4 , 27 , 059 , Minnesota , Isanti County , 37816 , 37816 , 37896 , 38283 , 80 , 387 , 121 , 473 , 66 , 265 , 55 , 208 , 3 , 21 , 24 , 162 , 27 , 183 , - 2 , - 4 , 465 , 465 , 465 , 12 . 418120479 , 6 . 957297943 , 5 . 4608225364 , 0 . 5513330445 , 4 . 2531406293 , 4 . 8044736738 <nl> + 050 , 2 , 4 , 27 , 061 , Minnesota , Itasca County , 45058 , 45058 , 45014 , 45034 , - 44 , 20 , 104 , 424 , 118 , 449 , - 14 , - 25 , 1 , 9 , - 28 , 40 , - 27 , 49 , - 3 , - 4 , 1021 , 1021 , 1021 , 9 . 4171997157 , 9 . 9724591329 , - 0 . 555259417 , 0 . 1998933902 , 0 . 8884150675 , 1 . 0883084577 <nl> + 050 , 2 , 4 , 27 , 063 , Minnesota , Jackson County , 10266 , 10266 , 10267 , 10202 , 1 , - 65 , 24 , 98 , 26 , 129 , - 2 , - 31 , 0 , 7 , 3 , - 40 , 3 , - 33 , 0 , - 1 , 110 , 110 , 110 , 9 . 575455567 , 12 . 604426205 , - 3 . 028970639 , 0 . 6839611119 , - 3 . 908349211 , - 3 . 224388099 <nl> + 050 , 2 , 4 , 27 , 065 , Minnesota , Kanabec County , 16239 , 16239 , 16228 , 16169 , - 11 , - 59 , 41 , 162 , 37 , 159 , 4 , 3 , 0 , 3 , - 14 , - 63 , - 14 , - 60 , - 1 , - 2 , 246 , 246 , 246 , 10 . 000926012 , 9 . 8157236781 , 0 . 1852023335 , 0 . 1852023335 , - 3 . 889249005 , - 3 . 704046671 <nl> + 050 , 2 , 4 , 27 , 067 , Minnesota , Kandiyohi County , 42239 , 42239 , 42251 , 42173 , 12 , - 78 , 135 , 546 , 88 , 337 , 47 , 209 , 6 , 30 , - 40 , - 321 , - 34 , - 291 , - 1 , 4 , 1058 , 1058 , 1058 , 12 . 934710509 , 7 . 9835117976 , 4 . 9511987113 , 0 . 7106983796 , - 7 . 604472662 , - 6 . 893774282 <nl> + 050 , 2 , 4 , 27 , 069 , Minnesota , Kittson County , 4552 , 4552 , 4546 , 4515 , - 6 , - 31 , 10 , 45 , 13 , 76 , - 3 , - 31 , 0 , 0 , - 3 , 0 , - 3 , 0 , 0 , 0 , 111 , 111 , 111 , 9 . 9326785123 , 16 . 775190376 , - 6 . 842511864 , 0 , 0 , 0 <nl> + 050 , 2 , 4 , 27 , 071 , Minnesota , Koochiching County , 13311 , 13311 , 13325 , 13213 , 14 , - 112 , 27 , 116 , 28 , 142 , - 1 , - 26 , 1 , 4 , 14 , - 88 , 15 , - 84 , 0 , - 2 , 241 , 241 , 241 , 8 . 7421810234 , 10 . 701635391 , - 1 . 959454367 , 0 . 301454518 , - 6 . 631999397 , - 6 . 330544879 <nl> + 050 , 2 , 4 , 27 , 073 , Minnesota , Lac qui Parle County , 7259 , 7259 , 7233 , 7193 , - 26 , - 40 , 16 , 65 , 11 , 94 , 5 , - 29 , 0 , 0 , - 30 , - 10 , - 30 , - 10 , - 1 , - 1 , 154 , 154 , 154 , 9 . 0115070012 , 13 . 032025509 , - 4 . 020518508 , 0 , - 1 . 386385692 , - 1 . 386385692 <nl> + 050 , 2 , 4 , 27 , 075 , Minnesota , Lake County , 10866 , 10866 , 10881 , 10824 , 15 , - 57 , 33 , 116 , 33 , 132 , 0 , - 16 , 0 , 3 , 16 , - 43 , 16 , - 40 , - 1 , - 1 , 224 , 224 , 224 , 10 . 688781387 , 12 . 163096061 , - 1 . 474314674 , 0 . 2764340014 , - 3 . 962220686 , - 3 . 685786685 <nl> + 050 , 2 , 4 , 27 , 077 , Minnesota , Lake of the Woods County , 4045 , 4045 , 4042 , 4007 , - 3 , - 35 , 6 , 34 , 5 , 46 , 1 , - 12 , 0 , 0 , - 3 , - 22 , - 3 , - 22 , - 1 , - 1 , 53 , 53 , 53 , 8 . 4482544415 , 11 . 429991303 , - 2 . 981736862 , 0 , - 5 . 46651758 , - 5 . 46651758 <nl> + 050 , 2 , 4 , 27 , 079 , Minnesota , Le Sueur County , 27703 , 27703 , 27696 , 27656 , - 7 , - 40 , 86 , 344 , 55 , 225 , 31 , 119 , 1 , 10 , - 38 , - 168 , - 37 , - 158 , - 1 , - 1 , 270 , 270 , 270 , 12 . 429541841 , 8 . 1297875416 , 4 . 2997542998 , 0 . 3613238907 , - 6 . 070241364 , - 5 . 708917474 <nl> + 050 , 2 , 4 , 27 , 081 , Minnesota , Lincoln County , 5896 , 5896 , 5891 , 5820 , - 5 , - 71 , 11 , 61 , 15 , 88 , - 4 , - 27 , 0 , 5 , - 1 , - 49 , - 1 , - 44 , 0 , 0 , 135 , 135 , 135 , 10 . 417556144 , 15 . 028605584 , - 4 . 611049441 , 0 . 8538980446 , - 8 . 368200837 , - 7 . 514302792 <nl> + 050 , 2 , 4 , 27 , 083 , Minnesota , Lyon County , 25857 , 25857 , 25871 , 25891 , 14 , 20 , 90 , 362 , 60 , 240 , 30 , 122 , 8 , 29 , - 22 , - 132 , - 14 , - 103 , - 2 , 1 , 1092 , 1092 , 1092 , 13 . 98709478 , 9 . 2732120088 , 4 . 7138827711 , 1 . 1205131177 , - 5 . 100266605 , - 3 . 979753487 <nl> + 050 , 2 , 4 , 27 , 085 , Minnesota , McLeod County , 36651 , 36651 , 36625 , 36432 , - 26 , - 193 , 110 , 463 , 93 , 319 , 17 , 144 , 6 , 23 , - 48 , - 364 , - 42 , - 341 , - 1 , 4 , 476 , 476 , 476 , 12 . 675034562 , 8 . 7329071821 , 3 . 94212738 , 0 . 6296453454 , - 9 . 964821988 , - 9 . 335176643 <nl> + 050 , 2 , 4 , 27 , 087 , Minnesota , Mahnomen County , 5413 , 5413 , 5429 , 5456 , 16 , 27 , 28 , 101 , 10 , 54 , 18 , 47 , 0 , 2 , - 1 , - 22 , - 1 , - 20 , - 1 , 0 , 79 , 79 , 79 , 18 . 55764814 , 9 . 9219108865 , 8 . 6357372531 , 0 . 367478181 , - 4 . 042259991 , - 3 . 67478181 <nl> + 050 , 2 , 4 , 27 , 089 , Minnesota , Marshall County , 9439 , 9439 , 9432 , 9481 , - 7 , 49 , 27 , 100 , 12 , 95 , 15 , 5 , 0 , 5 , - 21 , 38 , - 21 , 43 , - 1 , 1 , 76 , 76 , 76 , 10 . 574736953 , 10 . 046000106 , 0 . 5287368477 , 0 . 5287368477 , 4 . 0184000423 , 4 . 54713689 <nl> + 050 , 2 , 4 , 27 , 091 , Minnesota , Martin County , 20840 , 20840 , 20832 , 20689 , - 8 , - 143 , 53 , 228 , 59 , 244 , - 6 , - 16 , 5 , 14 , - 5 , - 141 , 0 , - 127 , - 2 , 0 , 348 , 348 , 348 , 10 . 982394451 , 11 . 753088798 , - 0 . 770694347 , 0 . 674357554 , - 6 . 791743937 , - 6 . 117386383 <nl> + 050 , 2 , 4 , 27 , 093 , Minnesota , Meeker County , 23300 , 23300 , 23318 , 23265 , 18 , - 53 , 67 , 299 , 51 , 203 , 16 , 96 , 2 , 11 , 1 , - 161 , 3 , - 150 , - 1 , 1 , 354 , 354 , 354 , 12 . 837301161 , 8 . 7156258721 , 4 . 1216752893 , 0 . 4722752936 , - 6 . 912392933 , - 6 . 440117639 <nl> + 050 , 2 , 4 , 27 , 095 , Minnesota , Mille Lacs County , 26097 , 26097 , 26092 , 25979 , - 5 , - 113 , 75 , 328 , 65 , 255 , 10 , 73 , 0 , 6 , - 14 , - 192 , - 14 , - 186 , - 1 , 0 , 523 , 523 , 523 , 12 . 59818325 , 9 . 7943192948 , 2 . 803863955 , 0 . 2304545716 , - 7 . 374546293 , - 7 . 144091721 <nl> + 050 , 2 , 4 , 27 , 097 , Minnesota , Morrison County , 33198 , 33198 , 33213 , 33229 , 15 , 16 , 99 , 407 , 86 , 335 , 13 , 72 , 1 , 10 , 3 , - 64 , 4 , - 54 , - 2 , - 2 , 528 , 528 , 528 , 12 . 251286837 , 10 . 083983023 , 2 . 1673038139 , 0 . 3010144186 , - 1 . 926492279 , - 1 . 62547786 <nl> + 050 , 2 , 4 , 27 , 099 , Minnesota , Mower County , 39163 , 39163 , 39187 , 39349 , 24 , 162 , 129 , 558 , 96 , 370 , 33 , 188 , 21 , 69 , - 27 , - 91 , - 6 , - 22 , - 3 , - 4 , 632 , 632 , 632 , 14 . 210043802 , 9 . 4224304777 , 4 . 7876133238 , 1 . 757155954 , - 2 . 317408577 , - 0 . 560252623 <nl> + 050 , 2 , 4 , 27 , 101 , Minnesota , Murray County , 8725 , 8725 , 8702 , 8630 , - 23 , - 72 , 21 , 88 , 16 , 99 , 5 , - 11 , 0 , 0 , - 27 , - 61 , - 27 , - 61 , - 1 , 0 , 163 , 163 , 163 , 10 . 154627279 , 11 . 423955689 , - 1 . 26932841 , 0 , - 7 . 039003 , - 7 . 039003 <nl> + 050 , 2 , 4 , 27 , 103 , Minnesota , Nicollet County , 32727 , 32727 , 32740 , 32820 , 13 , 80 , 90 , 376 , 60 , 228 , 30 , 148 , 4 , 17 , - 20 , - 84 , - 16 , - 67 , - 1 , - 1 , 2720 , 2720 , 2720 , 11 . 470408786 , 6 . 9554606467 , 4 . 5149481391 , 0 . 5186089079 , - 2 . 562538133 , - 2 . 043929225 <nl> + 050 , 2 , 4 , 27 , 105 , Minnesota , Nobles County , 21378 , 21378 , 21375 , 21397 , - 3 , 22 , 96 , 369 , 50 , 185 , 46 , 184 , 15 , 57 , - 65 , - 219 , - 50 , - 162 , 1 , 0 , 385 , 385 , 385 , 17 . 2542785 , 8 . 6505190311 , 8 . 6037594688 , 2 . 6652950528 , - 10 . 24034415 , - 7 . 575049098 <nl> + 050 , 2 , 4 , 27 , 107 , Minnesota , Norman County , 6852 , 6852 , 6861 , 6869 , 9 , 8 , 18 , 70 , 16 , 102 , 2 , - 32 , 0 , 1 , 7 , 40 , 7 , 41 , 0 , - 1 , 149 , 149 , 149 , 10 . 196649672 , 14 . 857975237 , - 4 . 661325564 , 0 . 1456664239 , 5 . 8266569556 , 5 . 9723233795 <nl> + 050 , 2 , 4 , 27 , 109 , Minnesota , Olmsted County , 144248 , 144248 , 144486 , 145769 , 238 , 1283 , 537 , 2118 , 215 , 885 , 322 , 1233 , 102 , 351 , - 187 , - 297 , - 85 , 54 , 1 , - 4 , 2770 , 2770 , 2770 , 14 . 59406384 , 6 . 0980861656 , 8 . 4959776748 , 2 . 4185629877 , - 2 . 046476374 , 0 . 3720866135 <nl> + 050 , 2 , 4 , 27 , 111 , Minnesota , Otter Tail County , 57303 , 57303 , 57259 , 57252 , - 44 , - 7 , 139 , 590 , 173 , 691 , - 34 , - 101 , 2 , 32 , - 9 , 67 , - 7 , 99 , - 3 , - 5 , 1188 , 1188 , 1188 , 10 . 304686886 , 12 . 068709556 , - 1 . 76402267 , 0 . 5588982718 , 1 . 1701932565 , 1 . 7290915283 <nl> + 050 , 2 , 4 , 27 , 113 , Minnesota , Pennington County , 13930 , 13930 , 13949 , 14072 , 19 , 123 , 43 , 188 , 24 , 142 , 19 , 46 , 1 , 5 , 0 , 72 , 1 , 77 , - 1 , 0 , 327 , 327 , 327 , 13 . 418507548 , 10 . 135255701 , 3 . 2832518468 , 0 . 3568752007 , 5 . 1390028907 , 5 . 4958780914 <nl> + 050 , 2 , 4 , 27 , 115 , Minnesota , Pine County , 29750 , 29750 , 29751 , 29604 , 1 , - 147 , 70 , 304 , 67 , 244 , 3 , 60 , 2 , 11 , - 2 , - 220 , 0 , - 209 , - 2 , 2 , 1797 , 1797 , 1797 , 10 . 243450425 , 8 . 2217167888 , 2 . 0217336366 , 0 . 3706511667 , - 7 . 413023334 , - 7 . 042372167 <nl> + 050 , 2 , 4 , 27 , 117 , Minnesota , Pipestone County , 9596 , 9596 , 9586 , 9501 , - 10 , - 85 , 27 , 126 , 24 , 129 , 3 , - 3 , 0 , 1 , - 13 , - 83 , - 13 , - 82 , 0 , 0 , 205 , 205 , 205 , 13 . 202703411 , 13 . 517053492 , - 0 . 314350081 , 0 . 1047833604 , - 8 . 697018913 , - 8 . 592235553 <nl> + 050 , 2 , 4 , 27 , 119 , Minnesota , Polk County , 31600 , 31600 , 31632 , 31456 , 32 , - 176 , 94 , 377 , 86 , 358 , 8 , 19 , 8 , 21 , 18 , - 217 , 26 , - 196 , - 2 , 1 , 1330 , 1330 , 1330 , 11 . 951559726 , 11 . 349226477 , 0 . 6023332488 , 0 . 6657367487 , - 6 . 879279736 , - 6 . 213542988 <nl> + 050 , 2 , 4 , 27 , 121 , Minnesota , Pope County , 10995 , 10995 , 10967 , 10894 , - 28 , - 73 , 25 , 117 , 25 , 134 , 0 , - 17 , 0 , 0 , - 27 , - 56 , - 27 , - 56 , - 1 , 0 , 184 , 184 , 184 , 10 . 703993413 , 12 . 259274507 , - 1 . 555281094 , 0 , - 5 . 123278898 , - 5 . 123278898 <nl> + 050 , 2 , 4 , 27 , 123 , Minnesota , Ramsey County , 508640 , 508640 , 509259 , 514696 , 619 , 5437 , 1807 , 7264 , 903 , 3759 , 904 , 3505 , 519 , 1868 , - 818 , 93 , - 299 , 1961 , 14 , - 29 , 18384 , 18384 , 18384 , 14 . 188123502 , 7 . 3421195267 , 6 . 8460039748 , 3 . 6485978388 , 0 . 1816486076 , 3 . 8302464464 <nl> + 050 , 2 , 4 , 27 , 125 , Minnesota , Red Lake County , 4089 , 4089 , 4081 , 4105 , - 8 , 24 , 12 , 53 , 2 , 34 , 10 , 19 , 0 , 1 , - 19 , 5 , - 19 , 6 , 1 , - 1 , 34 , 34 , 34 , 12 . 94893721 , 8 . 3068653799 , 4 . 64207183 , 0 . 24431957 , 1 . 22159785 , 1 . 46591742 <nl> + 050 , 2 , 4 , 27 , 127 , Minnesota , Redwood County , 16059 , 16059 , 16055 , 15972 , - 4 , - 83 , 45 , 190 , 40 , 180 , 5 , 10 , 0 , 1 , - 8 , - 93 , - 8 , - 92 , - 1 , - 1 , 373 , 373 , 373 , 11 . 864988916 , 11 . 240515815 , 0 . 6244731008 , 0 . 0624473101 , - 5 . 807599838 , - 5 . 745152528 <nl> + 050 , 2 , 4 , 27 , 129 , Minnesota , Renville County , 15730 , 15730 , 15698 , 15500 , - 32 , - 198 , 49 , 193 , 47 , 203 , 2 , - 10 , 0 , 8 , - 34 , - 198 , - 34 , - 190 , 0 , 2 , 342 , 342 , 342 , 12 . 372587986 , 13 . 013654721 , - 0 . 641066735 , 0 . 512853388 , - 12 . 69312135 , - 12 . 18026797 <nl> + 050 , 2 , 4 , 27 , 131 , Minnesota , Rice County , 64142 , 64142 , 64254 , 64409 , 112 , 155 , 181 , 720 , 114 , 440 , 67 , 280 , 26 , 102 , 22 , - 226 , 48 , - 124 , - 3 , - 1 , 7278 , 7278 , 7278 , 11 . 192028788 , 6 . 8395731485 , 4 . 3524556399 , 1 . 5855374117 , - 3 . 513053481 , - 1 . 927516069 <nl> + 050 , 2 , 4 , 27 , 133 , Minnesota , Rock County , 9687 , 9687 , 9674 , 9614 , - 13 , - 60 , 28 , 114 , 20 , 113 , 8 , 1 , 0 , 3 , - 20 , - 63 , - 20 , - 60 , - 1 , - 1 , 260 , 260 , 260 , 11 . 820821236 , 11 . 717129822 , 0 . 1036914144 , 0 . 3110742431 , - 6 . 532559104 , - 6 . 221484861 <nl> + 050 , 2 , 4 , 27 , 135 , Minnesota , Roseau County , 15629 , 15629 , 15577 , 15540 , - 52 , - 37 , 55 , 191 , 25 , 130 , 30 , 61 , 0 , 2 , - 84 , - 100 , - 84 , - 98 , 2 , 0 , 191 , 191 , 191 , 12 . 27624771 , 8 . 3555612688 , 3 . 9206864415 , 0 . 1285470964 , - 6 . 427354822 , - 6 . 298807726 <nl> + 050 , 2 , 4 , 27 , 137 , Minnesota , St . Louis County , 200226 , 200226 , 200143 , 200255 , - 83 , 112 , 514 , 2056 , 515 , 2046 , - 1 , 10 , 29 , 46 , - 104 , 68 , - 75 , 114 , - 7 , - 12 , 9433 , 9433 , 9433 , 10 . 269781567 , 10 . 219831268 , 0 . 0499502995 , 0 . 2297713775 , 0 . 3396620363 , 0 . 5694334138 <nl> + 050 , 2 , 4 , 27 , 139 , Minnesota , Scott County , 129928 , 129928 , 130485 , 132556 , 557 , 2071 , 478 , 1897 , 133 , 496 , 345 , 1401 , 49 , 169 , 159 , 502 , 208 , 671 , 4 , - 1 , 1287 , 1287 , 1287 , 14 . 423606966 , 3 . 7712752004 , 10 . 652331766 , 1 . 284970784 , 3 . 816895465 , 5 . 101866249 <nl> + 050 , 2 , 4 , 27 , 141 , Minnesota , Sherburne County , 88499 , 88499 , 88745 , 89319 , 246 , 574 , 301 , 1223 , 122 , 455 , 179 , 768 , 5 , 18 , 63 , - 210 , 68 , - 192 , - 1 , - 2 , 2174 , 2174 , 2174 , 13 . 736634019 , 5 . 1105220595 , 8 . 6261119597 , 0 . 2021744991 , - 2 . 358702489 , - 2 . 15652799 <nl> + 050 , 2 , 4 , 27 , 143 , Minnesota , Sibley County , 15226 , 15226 , 15238 , 15169 , 12 , - 69 , 42 , 188 , 26 , 135 , 16 , 53 , 1 , 4 , - 4 , - 126 , - 3 , - 122 , - 1 , 0 , 230 , 230 , 230 , 12 . 365573717 , 8 . 8795343178 , 3 . 4860393988 , 0 . 2630973131 , - 8 . 287565363 , - 8 . 02446805 <nl> + 050 , 2 , 4 , 27 , 145 , Minnesota , Stearns County , 150642 , 150642 , 150749 , 151343 , 107 , 594 , 483 , 1928 , 206 , 864 , 277 , 1064 , 25 , 95 , - 198 , - 566 , - 173 , - 471 , 3 , 1 , 8213 , 8213 , 8213 , 12 . 764323451 , 5 . 720111754 , 7 . 0442116971 , 0 . 628947473 , - 3 . 747202839 , - 3 . 118255366 <nl> + 050 , 2 , 4 , 27 , 147 , Minnesota , Steele County , 36576 , 36576 , 36529 , 36534 , - 47 , 5 , 120 , 480 , 63 , 293 , 57 , 187 , 8 , 25 , - 114 , - 209 , - 106 , - 184 , 2 , 2 , 594 , 594 , 594 , 13 . 139345496 , 8 . 0204754801 , 5 . 1188700163 , 0 . 6843409113 , - 5 . 721090018 , - 5 . 036749107 <nl> + 050 , 2 , 4 , 27 , 149 , Minnesota , Stevens County , 9726 , 9726 , 9723 , 9685 , - 3 , - 38 , 27 , 124 , 13 , 89 , 14 , 35 , 5 , 21 , - 21 , - 94 , - 16 , - 73 , - 1 , 0 , 892 , 892 , 892 , 12 . 778235779 , 9 . 1714756801 , 3 . 6067600989 , 2 . 1640560594 , - 9 . 686727123 , - 7 . 522671063 <nl> + 050 , 2 , 4 , 27 , 151 , Minnesota , Swift County , 9783 , 9783 , 9769 , 9640 , - 14 , - 129 , 29 , 105 , 22 , 110 , 7 , - 5 , 0 , 1 , - 19 , - 125 , - 19 , - 124 , - 2 , 0 , 150 , 150 , 150 , 10 . 819722809 , 11 . 334947705 , - 0 . 515224896 , 0 . 1030449791 , - 12 . 88062239 , - 12 . 77757741 <nl> + 050 , 2 , 4 , 27 , 153 , Minnesota , Todd County , 24895 , 24895 , 24887 , 24836 , - 8 , - 51 , 78 , 313 , 47 , 197 , 31 , 116 , 8 , 32 , - 45 , - 196 , - 37 , - 164 , - 2 , - 3 , 346 , 346 , 346 , 12 . 589747199 , 7 . 9238983971 , 4 . 6658488024 , 1 . 2871307041 , - 7 . 883675563 , - 6 . 596544859 <nl> + 050 , 2 , 4 , 27 , 155 , Minnesota , Traverse County , 3558 , 3558 , 3544 , 3523 , - 14 , - 21 , 6 , 36 , 5 , 32 , 1 , 4 , 0 , 0 , - 14 , - 24 , - 14 , - 24 , - 1 , - 1 , 100 , 100 , 100 , 10 . 18819867 , 9 . 0561765954 , 1 . 1320220744 , 0 , - 6 . 792132447 , - 6 . 792132447 <nl> + 050 , 2 , 4 , 27 , 157 , Minnesota , Wabasha County , 21676 , 21676 , 21675 , 21600 , - 1 , - 75 , 58 , 240 , 32 , 175 , 26 , 65 , 2 , 12 , - 27 , - 153 , - 25 , - 141 , - 2 , 1 , 246 , 246 , 246 , 11 . 091854419 , 8 . 0878105142 , 3 . 0040439053 , 0 . 554592721 , - 7 . 071057192 , - 6 . 516464471 <nl> + 050 , 2 , 4 , 27 , 159 , Minnesota , Wadena County , 13843 , 13843 , 13842 , 13749 , - 1 , - 93 , 37 , 168 , 44 , 191 , - 7 , - 23 , 0 , 1 , 7 , - 69 , 7 , - 68 , - 1 , - 2 , 482 , 482 , 482 , 12 . 177884093 , 13 . 845094415 , - 1 . 667210322 , 0 . 0724874053 , - 5 . 001630967 , - 4 . 929143561 <nl> + 050 , 2 , 4 , 27 , 161 , Minnesota , Waseca County , 19136 , 19136 , 19140 , 19273 , 4 , 133 , 56 , 237 , 25 , 138 , 31 , 99 , 2 , 10 , - 29 , 25 , - 27 , 35 , 0 , - 1 , 1344 , 1344 , 1344 , 12 . 339572541 , 7 . 1850675553 , 5 . 1545049853 , 0 . 5206570692 , 1 . 3016426731 , 1 . 8222997423 <nl> + 050 , 2 , 4 , 27 , 163 , Minnesota , Washington County , 238136 , 238136 , 238983 , 241280 , 847 , 2297 , 722 , 2769 , 316 , 1271 , 406 , 1498 , 108 , 319 , 332 , 496 , 440 , 815 , 1 , - 16 , 3570 , 3570 , 3570 , 11 . 531181873 , 5 . 292933247 , 6 . 2382486263 , 1 . 3284387929 , 2 . 0655349257 , 3 . 3939737186 <nl> + 050 , 2 , 4 , 27 , 165 , Minnesota , Watonwan County , 11211 , 11211 , 11227 , 11201 , 16 , - 26 , 39 , 156 , 25 , 122 , 14 , 34 , 8 , 38 , - 6 , - 98 , 2 , - 60 , 0 , 0 , 150 , 150 , 150 , 13 . 911182451 , 10 . 87925807 , 3 . 0319243802 , 3 . 3886213661 , - 8 . 739076155 , - 5 . 350454789 <nl> + 050 , 2 , 4 , 27 , 167 , Minnesota , Wilkin County , 6576 , 6576 , 6574 , 6592 , - 2 , 18 , 14 , 72 , 17 , 106 , - 3 , - 34 , 1 , 2 , 1 , 52 , 2 , 54 , - 1 , - 2 , 152 , 152 , 152 , 10 . 937262646 , 16 . 102081118 , - 5 . 164818472 , 0 . 3038128513 , 7 . 8991341334 , 8 . 2029469847 <nl> + 050 , 2 , 4 , 27 , 169 , Minnesota , Winona County , 51461 , 51461 , 51395 , 51378 , - 66 , - 17 , 102 , 465 , 111 , 436 , - 9 , 29 , 18 , 64 , - 75 , - 108 , - 57 , - 44 , 0 , - 2 , 4499 , 4499 , 4499 , 9 . 0490693081 , 8 . 4847187491 , 0 . 564350559 , 1 . 2454633026 , - 2 . 101719323 , - 0 . 856256021 <nl> + 050 , 2 , 4 , 27 , 171 , Minnesota , Wright County , 124700 , 124700 , 125148 , 126437 , 448 , 1289 , 471 , 1878 , 164 , 664 , 307 , 1214 , 25 , 101 , 117 , - 19 , 142 , 82 , - 1 , - 7 , 1104 , 1104 , 1104 , 14 . 929347934 , 5 . 2785340938 , 9 . 6508138403 , 0 . 8029095534 , - 0 . 151042391 , 0 . 6518671622 <nl> + 050 , 2 , 4 , 27 , 173 , Minnesota , Yellow Medicine County , 10438 , 10438 , 10438 , 10307 , 0 , - 131 , 26 , 111 , 18 , 122 , 8 , - 11 , 0 , 3 , - 6 , - 125 , - 6 , - 122 , - 2 , 2 , 290 , 290 , 290 , 10 . 701373825 , 11 . 76187033 , - 1 . 060496505 , 0 . 2892263196 , - 12 . 05109665 , - 11 . 76187033 <nl> + 040 , 3 , 6 , 28 , 000 , Mississippi , Mississippi , 2967297 , 2967297 , 2970072 , 2978512 , 2775 , 8440 , 9515 , 40464 , 6516 , 28837 , 2999 , 11627 , 774 , 2385 , - 984 , - 5688 , - 210 , - 3303 , - 14 , 116 , 91964 , 91964 , 91963 , 13 . 6045822 , 9 . 6954165899 , 3 . 9091656098 , 0 . 8018715042 , - 1 . 912387889 , - 1 . 110516385 <nl> + 050 , 3 , 6 , 28 , 001 , Mississippi , Adams County , 32297 , 32297 , 32263 , 32067 , - 34 , - 196 , 90 , 402 , 103 , 402 , - 13 , 0 , 5 , 17 , - 26 , - 213 , - 21 , - 196 , 0 , 0 , 2320 , 2320 , 2320 , 12 . 498056894 , 12 . 498056894 , 0 , 0 . 528524794 , - 6 . 622104772 , - 6 . 093579978 <nl> + 050 , 3 , 6 , 28 , 003 , Mississippi , Alcorn County , 37057 , 37057 , 37085 , 37052 , 28 , - 33 , 104 , 433 , 110 , 437 , - 6 , - 4 , 1 , 7 , 35 , - 34 , 36 , - 27 , - 2 , - 2 , 435 , 435 , 435 , 11 . 681076925 , 11 . 788985257 , - 0 . 107908332 , 0 . 1888395808 , - 0 . 917220821 , - 0 . 72838124 <nl> + 050 , 3 , 6 , 28 , 005 , Mississippi , Amite County , 13131 , 13128 , 13108 , 13064 , - 20 , - 44 , 29 , 139 , 20 , 148 , 9 , - 9 , 0 , 0 , - 27 , - 35 , - 27 , - 35 , - 2 , 0 , 116 , 116 , 116 , 10 . 62203882 , 11 . 309796729 , - 0 . 687757909 , 0 , - 2 . 674614091 , - 2 . 674614091 <nl> + 050 , 3 , 6 , 28 , 007 , Mississippi , Attala County , 19564 , 19564 , 19550 , 19466 , - 14 , - 84 , 66 , 288 , 63 , 274 , 3 , 14 , 0 , - 1 , - 17 , - 96 , - 17 , - 97 , 0 , - 1 , 343 , 343 , 343 , 14 . 763174082 , 14 . 045519787 , 0 . 7176542957 , - 0 . 051261021 , - 4 . 921058027 , - 4 . 972319049 <nl> + 050 , 3 , 6 , 28 , 009 , Mississippi , Benton County , 8729 , 8729 , 8728 , 8732 , - 1 , 4 , 24 , 98 , 8 , 91 , 16 , 7 , 0 , 0 , - 16 , - 2 , - 16 , - 2 , - 1 , - 1 , 78 , 78 , 78 , 11 . 225658648 , 10 . 423825888 , 0 . 8018327606 , 0 , - 0 . 229095074 , - 0 . 229095074 <nl> + 050 , 3 , 6 , 28 , 011 , Mississippi , Bolivar County , 34145 , 34145 , 34077 , 33771 , - 68 , - 306 , 139 , 574 , 108 , 429 , 31 , 145 , 4 , 13 , - 104 , - 469 , - 100 , - 456 , 1 , 5 , 1564 , 1564 , 1564 , 16 . 920174508 , 12 . 645914397 , 4 . 2742601108 , 0 . 3832095272 , - 13 . 82502063 , - 13 . 44181111 <nl> + 050 , 3 , 6 , 28 , 013 , Mississippi , Calhoun County , 14962 , 14962 , 14949 , 14917 , - 13 , - 32 , 48 , 199 , 39 , 185 , 9 , 14 , 1 , 9 , - 23 , - 55 , - 22 , - 46 , 0 , 0 , 215 , 215 , 215 , 13 . 326190317 , 12 . 38866939 , 0 . 9375209268 , 0 . 6026920244 , - 3 . 683117927 , - 3 . 080425902 <nl> + 050 , 3 , 6 , 28 , 015 , Mississippi , Carroll County , 10597 , 10597 , 10587 , 10373 , - 10 , - 214 , 23 , 90 , 7 , 102 , 16 , - 12 , 0 , 0 , - 24 , - 204 , - 24 , - 204 , - 2 , 2 , 334 , 334 , 334 , 8 . 5877862595 , 9 . 7328244275 , - 1 . 145038168 , 0 , - 19 . 46564885 , - 19 . 46564885 <nl> + 050 , 3 , 6 , 28 , 017 , Mississippi , Chickasaw County , 17392 , 17392 , 17399 , 17124 , 7 , - 275 , 66 , 267 , 28 , 192 , 38 , 75 , 2 , 13 , - 31 , - 364 , - 29 , - 351 , - 2 , 1 , 206 , 206 , 206 , 15 . 467948904 , 11 . 123019436 , 4 . 3449294673 , 0 . 7531211077 , - 21 . 08739101 , - 20 . 33426991 <nl> + 050 , 3 , 6 , 28 , 019 , Mississippi , Choctaw County , 8547 , 8547 , 8557 , 8412 , 10 , - 145 , 25 , 110 , 11 , 95 , 14 , 15 , 0 , 2 , - 3 , - 164 , - 3 , - 162 , - 1 , 2 , 121 , 121 , 121 , 12 . 964818198 , 11 . 196888444 , 1 . 7679297543 , 0 . 2357239672 , - 19 . 32936531 , - 19 . 09364135 <nl> + 050 , 3 , 6 , 28 , 021 , Mississippi , Claiborne County , 9604 , 9600 , 9568 , 9585 , - 32 , 17 , 32 , 131 , 9 , 99 , 23 , 32 , 0 , 0 , - 56 , - 15 , - 56 , - 15 , 1 , 0 , 899 , 899 , 899 , 13 . 679319167 , 10 . 337806088 , 3 . 3415130789 , 0 , - 1 . 566334256 , - 1 . 566334256 <nl> + 050 , 3 , 6 , 28 , 023 , Mississippi , Clarke County , 16732 , 16732 , 16749 , 16743 , 17 , - 6 , 47 , 207 , 33 , 180 , 14 , 27 , 0 , 1 , 5 , - 33 , 5 , - 32 , - 2 , - 1 , 52 , 52 , 52 , 12 . 361160874 , 10 . 748835543 , 1 . 6123253314 , 0 . 059715753 , - 1 . 97061985 , - 1 . 910904097 <nl> + 050 , 3 , 6 , 28 , 025 , Mississippi , Clay County , 20634 , 20634 , 20583 , 20456 , - 51 , - 127 , 56 , 249 , 30 , 220 , 26 , 29 , 1 , 1 , - 78 , - 156 , - 77 , - 155 , 0 , - 1 , 303 , 303 , 303 , 12 . 134798606 , 10 . 721508809 , 1 . 4132897975 , 0 . 0487341309 , - 7 . 602524428 , - 7 . 553790297 <nl> + 050 , 3 , 6 , 28 , 027 , Mississippi , Coahoma County , 26151 , 26151 , 26137 , 25913 , - 14 , - 224 , 106 , 472 , 56 , 292 , 50 , 180 , 1 , 3 , - 65 , - 412 , - 64 , - 409 , 0 , 5 , 667 , 667 , 667 , 18 . 136407301 , 11 . 219980788 , 6 . 916426513 , 0 . 1152737752 , - 15 . 8309318 , - 15 . 71565802 <nl> + 050 , 3 , 6 , 28 , 029 , Mississippi , Copiah County , 29449 , 29449 , 29413 , 29247 , - 36 , - 166 , 87 , 391 , 69 , 298 , 18 , 93 , 8 , 27 , - 62 , - 288 , - 54 , - 261 , 0 , 2 , 1027 , 1027 , 1027 , 13 . 331060348 , 10 . 160245482 , 3 . 1708148653 , 0 . 9205591544 , - 9 . 819297647 , - 8 . 898738493 <nl> + 050 , 3 , 6 , 28 , 031 , Mississippi , Covington County , 19568 , 19568 , 19625 , 19629 , 57 , 4 , 64 , 291 , 42 , 215 , 22 , 76 , 0 , 0 , 35 , - 72 , 35 , - 72 , 0 , 0 , 240 , 240 , 240 , 14 . 826514495 , 10 . 954297651 , 3 . 8722168441 , 0 , - 3 . 668415958 , - 3 . 668415958 <nl> + 050 , 3 , 6 , 28 , 033 , Mississippi , DeSoto County , 161252 , 161252 , 161768 , 164053 , 516 , 2285 , 494 , 2055 , 263 , 1091 , 231 , 964 , 36 , 111 , 245 , 1207 , 281 , 1318 , 4 , 3 , 610 , 610 , 610 , 12 . 614288213 , 6 . 6969286817 , 5 . 9173595318 , 0 . 6813557137 , 7 . 4089760942 , 8 . 090331808 <nl> + 050 , 3 , 6 , 28 , 035 , Mississippi , Forrest County , 74934 , 74934 , 75050 , 75842 , 116 , 792 , 278 , 1142 , 168 , 706 , 110 , 436 , 45 , 156 , - 38 , 200 , 7 , 356 , - 1 , 0 , 3601 , 3601 , 3601 , 15 . 136654031 , 9 . 3576862922 , 5 . 7789677385 , 2 . 0677040532 , 2 . 6509026323 , 4 . 7186066856 <nl> + 050 , 3 , 6 , 28 , 037 , Mississippi , Franklin County , 8118 , 8118 , 8131 , 8017 , 13 , - 114 , 20 , 92 , 10 , 73 , 10 , 19 , 0 , 0 , 3 , - 134 , 3 , - 134 , 0 , 1 , 67 , 67 , 67 , 11 . 39459995 , 9 . 041367352 , 2 . 3532325985 , 0 , - 16 . 59648254 , - 16 . 59648254 <nl> + 050 , 3 , 6 , 28 , 039 , Mississippi , George County , 22578 , 22578 , 22680 , 22889 , 102 , 209 , 88 , 367 , 65 , 234 , 23 , 133 , 3 , 13 , 76 , 64 , 79 , 77 , 0 , - 1 , 564 , 564 , 564 , 16 . 107441462 , 10 . 270139788 , 5 . 8373016744 , 0 . 5705633216 , 2 . 8089271215 , 3 . 3794904431 <nl> + 050 , 3 , 6 , 28 , 041 , Mississippi , Greene County , 14400 , 14400 , 14388 , 14338 , - 12 , - 50 , 31 , 149 , 21 , 130 , 10 , 19 , 0 , 5 , - 22 , - 74 , - 22 , - 69 , 0 , 0 , 3042 , 3042 , 3042 , 10 . 373877324 , 9 . 0510339066 , 1 . 3228434171 , 0 . 3481166887 , - 5 . 152126993 , - 4 . 804010304 <nl> + 050 , 3 , 6 , 28 , 043 , Mississippi , Grenada County , 21906 , 21906 , 21887 , 21706 , - 19 , - 181 , 62 , 273 , 55 , 262 , 7 , 11 , 6 , 18 , - 32 , - 212 , - 26 , - 194 , 0 , 2 , 256 , 256 , 256 , 12 . 524946666 , 12 . 020278485 , 0 . 5046681807 , 0 . 8258206593 , - 9 . 726332209 , - 8 . 90051155 <nl> + 050 , 3 , 6 , 28 , 045 , Mississippi , Hancock County , 43929 , 43929 , 44020 , 44649 , 91 , 629 , 105 , 462 , 95 , 375 , 10 , 87 , 11 , 35 , 70 , 501 , 81 , 536 , 0 , 6 , 547 , 547 , 547 , 10 . 420778401 , 8 . 4584240264 , 1 . 9623543741 , 0 . 7894529091 , 11 . 300454499 , 12 . 089907408 <nl> + 050 , 3 , 6 , 28 , 047 , Mississippi , Harrison County , 187105 , 187105 , 187842 , 191040 , 737 , 3198 , 656 , 2741 , 399 , 1541 , 257 , 1200 , 179 , 379 , 298 , 1604 , 477 , 1983 , 3 , 15 , 5452 , 5452 , 5451 , 14 . 468884772 , 8 . 1344587497 , 6 . 3344260218 , 2 . 0006228852 , 8 . 4670161158 , 10 . 467639001 <nl> + 050 , 3 , 6 , 28 , 049 , Mississippi , Hinds County , 245285 , 245285 , 245557 , 248184 , 272 , 2627 , 849 , 3557 , 504 , 1974 , 345 , 1583 , 48 , 158 , - 115 , 886 , - 67 , 1044 , - 6 , 0 , 7843 , 7843 , 7843 , 14 . 408363899 , 7 . 9960951187 , 6 . 4122687806 , 0 . 640011666 , 3 . 5889261779 , 4 . 2289378439 <nl> + 050 , 3 , 6 , 28 , 051 , Mississippi , Holmes County , 19198 , 19198 , 19116 , 18818 , - 82 , - 298 , 69 , 322 , 48 , 247 , 21 , 75 , 0 , 0 , - 105 , - 378 , - 105 , - 378 , 2 , 5 , 591 , 591 , 591 , 16 . 976854537 , 13 . 022618232 , 3 . 9542363052 , 0 , - 19 . 92935098 , - 19 . 92935098 <nl> + 050 , 3 , 6 , 28 , 053 , Mississippi , Humphreys County , 9375 , 9375 , 9334 , 9312 , - 41 , - 22 , 33 , 172 , 8 , 122 , 25 , 50 , 0 , 0 , - 67 , - 72 , - 67 , - 72 , 1 , 0 , 83 , 83 , 83 , 18 . 448997104 , 13 . 08591655 , 5 . 3630805535 , 0 , - 7 . 722835997 , - 7 . 722835997 <nl> + 050 , 3 , 6 , 28 , 055 , Mississippi , Issaquena County , 1406 , 1406 , 1400 , 1392 , - 6 , - 8 , 7 , 20 , 0 , 13 , 7 , 7 , 0 , 0 , - 14 , - 15 , - 14 , - 15 , 1 , 0 , 251 , 251 , 251 , 14 . 326647564 , 9 . 3123209169 , 5 . 0143266476 , 0 , - 10 . 74498567 , - 10 . 74498567 <nl> + 050 , 3 , 6 , 28 , 057 , Mississippi , Itawamba County , 23401 , 23401 , 23407 , 23332 , 6 , - 75 , 55 , 261 , 66 , 240 , - 11 , 21 , 2 , 4 , 15 , - 99 , 17 , - 95 , 0 , - 1 , 934 , 934 , 934 , 11 . 168403261 , 10 . 269796102 , 0 . 8986071589 , 0 . 1711632684 , - 4 . 236290892 , - 4 . 065127624 <nl> + 050 , 3 , 6 , 28 , 059 , Mississippi , Jackson County , 139668 , 139668 , 139658 , 139901 , - 10 , 243 , 407 , 1714 , 307 , 1222 , 100 , 492 , 87 , 249 , - 194 , - 489 , - 107 , - 240 , - 3 , - 9 , 1290 , 1290 , 1290 , 12 . 262170061 , 8 . 742340615 , 3 . 5198294457 , 1 . 7813770975 , - 3 . 498367071 , - 1 . 716989973 <nl> + 050 , 3 , 6 , 28 , 061 , Mississippi , Jasper County , 17062 , 17062 , 16981 , 16777 , - 81 , - 204 , 50 , 221 , 16 , 192 , 34 , 29 , 0 , 0 , - 116 , - 234 , - 116 , - 234 , 1 , 1 , 87 , 87 , 87 , 13 . 093192725 , 11 . 375081462 , 1 . 7181112625 , 0 , - 13 . 86338053 , - 13 . 86338053 <nl> + 050 , 3 , 6 , 28 , 063 , Mississippi , Jefferson County , 7726 , 7730 , 7722 , 7605 , - 8 , - 117 , 25 , 100 , 7 , 72 , 18 , 28 , 0 , 0 , - 26 , - 146 , - 26 , - 146 , 0 , 1 , 393 , 393 , 393 , 13 . 048868011 , 9 . 3951849677 , 3 . 653683043 , 0 , - 19 . 0513473 , - 19 . 0513473 <nl> + 050 , 3 , 6 , 28 , 065 , Mississippi , Jefferson Davis County , 12487 , 12487 , 12465 , 12118 , - 22 , - 347 , 38 , 158 , 13 , 164 , 25 , - 6 , - 1 , - 3 , - 44 , - 341 , - 45 , - 344 , - 2 , 3 , 116 , 116 , 116 , 12 . 854411585 , 13 . 342553797 , - 0 . 488142212 , - 0 . 244071106 , - 27 . 74274905 , - 27 . 98682016 <nl> + 050 , 3 , 6 , 28 , 067 , Mississippi , Jones County , 67761 , 67761 , 67887 , 68075 , 126 , 188 , 247 , 1025 , 186 , 752 , 61 , 273 , 36 , 129 , 31 , - 213 , 67 , - 84 , - 2 , - 1 , 1810 , 1810 , 1810 , 15 . 07774231 , 11 . 061914358 , 4 . 0158279519 , 1 . 8975890322 , - 3 . 133228402 , - 1 . 23563937 <nl> + 050 , 3 , 6 , 28 , 069 , Mississippi , Kemper County , 10456 , 10456 , 10418 , 10146 , - 38 , - 272 , 23 , 93 , 11 , 103 , 12 , - 10 , 1 , 7 , - 51 , - 273 , - 50 , - 266 , 0 , 4 , 708 , 708 , 708 , 9 . 0449328924 , 10 . 017506322 , - 0 . 972573429 , 0 . 6808014005 , - 26 . 55125462 , - 25 . 87045322 <nl> + 050 , 3 , 6 , 28 , 071 , Mississippi , Lafayette County , 47351 , 47354 , 47516 , 48472 , 162 , 956 , 125 , 505 , 78 , 364 , 47 , 141 , 23 , 83 , 91 , 725 , 114 , 808 , 1 , 7 , 5038 , 5038 , 5038 , 10 . 522148602 , 7 . 5842813685 , 2 . 9378672334 , 1 . 7293828395 , 15 . 106054924 , 16 . 835437763 <nl> + 050 , 3 , 6 , 28 , 073 , Mississippi , Lamar County , 55658 , 55658 , 56062 , 57422 , 404 , 1360 , 174 , 768 , 82 , 315 , 92 , 453 , 7 , 19 , 299 , 879 , 306 , 898 , 6 , 9 , 338 , 338 , 338 , 13 . 534947658 , 5 . 5514433753 , 7 . 9835042825 , 0 . 3348489655 , 15 . 491170561 , 15 . 826019527 <nl> + 050 , 3 , 6 , 28 , 075 , Mississippi , Lauderdale County , 80261 , 80261 , 80200 , 80475 , - 61 , 275 , 254 , 1074 , 226 , 812 , 28 , 262 , 26 , 47 , - 115 , - 29 , - 89 , 18 , 0 , - 5 , 3847 , 3847 , 3847 , 13 . 368601214 , 10 . 107359577 , 3 . 2612416368 , 0 . 5850318967 , - 0 . 360977128 , 0 . 2240547689 <nl> + 050 , 3 , 6 , 28 , 077 , Mississippi , Lawrence County , 12929 , 12929 , 12904 , 12687 , - 25 , - 217 , 41 , 174 , 16 , 137 , 25 , 37 , 0 , 1 , - 50 , - 259 , - 50 , - 258 , 0 , 4 , 0 , 0 , 0 , 13 . 598530733 , 10 . 706889141 , 2 . 8916415927 , 0 . 0781524755 , - 20 . 24149115 , - 20 . 16333867 <nl> + 050 , 3 , 6 , 28 , 079 , Mississippi , Leake County , 23805 , 23805 , 23816 , 23572 , 11 , - 244 , 82 , 337 , 56 , 289 , 26 , 48 , 6 , 22 , - 21 , - 317 , - 15 , - 295 , 0 , 3 , 1845 , 1845 , 1845 , 14 . 223010045 , 12 . 197180721 , 2 . 0258293239 , 0 . 9285051068 , - 13 . 37891449 , - 12 . 45040939 <nl> + 050 , 3 , 6 , 28 , 081 , Mississippi , Lee County , 82910 , 82910 , 83047 , 84156 , 137 , 1109 , 293 , 1185 , 227 , 948 , 66 , 237 , 10 , 40 , 67 , 831 , 77 , 871 , - 6 , 1 , 1065 , 1065 , 1065 , 14 . 174386823 , 11 . 339509459 , 2 . 8348773646 , 0 . 4784603147 , 9 . 940013038 , 10 . 418473353 <nl> + 050 , 3 , 6 , 28 , 083 , Mississippi , Leflore County , 32317 , 32317 , 32293 , 31861 , - 24 , - 432 , 124 , 547 , 94 , 360 , 30 , 187 , 4 , 15 , - 60 , - 641 , - 56 , - 626 , 2 , 7 , 2279 , 2279 , 2279 , 17 . 0527169 , 11 . 222994669 , 5 . 8297222309 , 0 . 4676247779 , - 19 . 98316551 , - 19 . 51554073 <nl> + 050 , 3 , 6 , 28 , 085 , Mississippi , Lincoln County , 34869 , 34869 , 34869 , 34889 , 0 , 20 , 112 , 478 , 83 , 377 , 29 , 101 , 6 , 21 , - 34 , - 100 , - 28 , - 79 , - 1 , - 2 , 714 , 714 , 714 , 13 . 704521345 , 10 . 808796124 , 2 . 8957252215 , 0 . 6020814817 , - 2 . 867054675 , - 2 . 264973193 <nl> + 050 , 3 , 6 , 28 , 087 , Mississippi , Lowndes County , 59779 , 59779 , 59818 , 59671 , 39 , - 147 , 188 , 804 , 133 , 539 , 55 , 265 , 22 , 36 , - 38 , - 451 , - 16 , - 415 , 0 , 3 , 1318 , 1318 , 1318 , 13 . 457305693 , 9 . 0217509562 , 4 . 4355547373 , 0 . 6025659266 , - 7 . 548812025 , - 6 . 946246098 <nl> + 050 , 3 , 6 , 28 , 089 , Mississippi , Madison County , 95203 , 95203 , 95553 , 96941 , 350 , 1388 , 294 , 1289 , 267 , 1013 , 27 , 276 , 28 , 114 , 297 , 1001 , 325 , 1115 , - 2 , - 3 , 1765 , 1765 , 1765 , 13 . 392625225 , 10 . 525003377 , 2 . 867621848 , 1 . 1844525024 , 10 . 400324166 , 11 . 584776668 <nl> + 050 , 3 , 6 , 28 , 091 , Mississippi , Marion County , 27088 , 27088 , 27083 , 26809 , - 5 , - 274 , 84 , 393 , 73 , 350 , 11 , 43 , 0 , 0 , - 16 , - 320 , - 16 , - 320 , 0 , 3 , 693 , 693 , 693 , 14 . 584725006 , 12 . 988940845 , 1 . 5957841609 , 0 , - 11 . 87560306 , - 11 . 87560306 <nl> + 050 , 3 , 6 , 28 , 093 , Mississippi , Marshall County , 37144 , 37144 , 37125 , 36786 , - 19 , - 339 , 109 , 463 , 107 , 398 , 2 , 65 , 7 , 37 , - 27 , - 446 , - 20 , - 409 , - 1 , 5 , 1737 , 1737 , 1737 , 12 . 528581673 , 10 . 769709515 , 1 . 7588721571 , 1 . 0012041509 , - 12 . 06856895 , - 11 . 0673648 <nl> + 050 , 3 , 6 , 28 , 095 , Mississippi , Monroe County , 36989 , 36989 , 36900 , 36626 , - 89 , - 274 , 97 , 427 , 79 , 387 , 18 , 40 , 4 , 15 , - 112 , - 331 , - 108 , - 316 , 1 , 2 , 408 , 408 , 408 , 11 . 614938933 , 10 . 526888448 , 1 . 0880504855 , 0 . 4080189321 , - 9 . 003617768 , - 8 . 595598836 <nl> + 050 , 3 , 6 , 28 , 097 , Mississippi , Montgomery County , 10925 , 10925 , 10927 , 10872 , 2 , - 55 , 28 , 137 , 24 , 135 , 4 , 2 , 0 , 0 , - 1 , - 58 , - 1 , - 58 , - 1 , 1 , 99 , 99 , 99 , 12 . 569383917 , 12 . 385889261 , 0 . 1834946557 , 0 , - 5 . 321345016 , - 5 . 321345016 <nl> + 050 , 3 , 6 , 28 , 099 , Mississippi , Neshoba County , 29676 , 29676 , 29661 , 29818 , - 15 , 157 , 105 , 475 , 75 , 310 , 30 , 165 , 1 , 7 , - 47 , - 14 , - 46 , - 7 , 1 , - 1 , 386 , 386 , 386 , 15 . 972023739 , 10 . 423847072 , 5 . 5481766674 , 0 . 235377192 , - 0 . 470754384 , - 0 . 235377192 <nl> + 050 , 3 , 6 , 28 , 101 , Mississippi , Newton County , 21720 , 21720 , 21711 , 21499 , - 9 , - 212 , 69 , 308 , 64 , 290 , 5 , 18 , 3 , 3 , - 17 , - 235 , - 14 , - 232 , 0 , 2 , 600 , 600 , 600 , 14 . 255959269 , 13 . 422818792 , 0 . 8331404767 , 0 . 1388567461 , - 10 . 87711178 , - 10 . 73825503 <nl> + 050 , 3 , 6 , 28 , 103 , Mississippi , Noxubee County , 11545 , 11545 , 11517 , 11351 , - 28 , - 166 , 36 , 174 , 13 , 142 , 23 , 32 , 0 , 1 , - 51 , - 201 , - 51 , - 200 , 0 , 2 , 173 , 173 , 173 , 15 . 217771559 , 12 . 419100927 , 2 . 7986706315 , 0 . 0874584572 , - 17 . 5791499 , - 17 . 49169145 <nl> + 050 , 3 , 6 , 28 , 105 , Mississippi , Oktibbeha County , 47671 , 47671 , 47678 , 47741 , 7 , 63 , 134 , 540 , 58 , 328 , 76 , 212 , 27 , 107 , - 97 , - 254 , - 70 , - 147 , 1 , - 2 , 4367 , 4367 , 4367 , 11 . 318500508 , 6 . 8749410495 , 4 . 4435594588 , 2 . 2427399155 , - 5 . 323887276 , - 3 . 081147361 <nl> + 050 , 3 , 6 , 28 , 107 , Mississippi , Panola County , 34707 , 34704 , 34709 , 34602 , 5 , - 107 , 127 , 541 , 85 , 410 , 42 , 131 , 7 , 27 , - 45 , - 267 , - 38 , - 240 , 1 , 2 , 315 , 315 , 315 , 15 . 610797709 , 11 . 830733938 , 3 . 7800637705 , 0 . 779097113 , - 7 . 704404784 , - 6 . 925307671 <nl> + 050 , 3 , 6 , 28 , 109 , Mississippi , Pearl River County , 55834 , 55834 , 55818 , 55718 , - 16 , - 100 , 160 , 691 , 134 , 578 , 26 , 113 , 3 , 9 , - 45 , - 222 , - 42 , - 213 , 0 , 0 , 1124 , 1124 , 1124 , 12 . 390618276 , 10 . 364366662 , 2 . 0262516138 , 0 . 1613828719 , - 3 . 980777507 , - 3 . 819394635 <nl> + 050 , 3 , 6 , 28 , 111 , Mississippi , Perry County , 12250 , 12250 , 12257 , 12164 , 7 , - 93 , 34 , 150 , 15 , 118 , 19 , 32 , 0 , 0 , - 12 , - 125 , - 12 , - 125 , 0 , 0 , 102 , 102 , 102 , 12 . 284509234 , 9 . 6638139306 , 2 . 6206953032 , 0 , - 10 . 23709103 , - 10 . 23709103 <nl> + 050 , 3 , 6 , 28 , 113 , Mississippi , Pike County , 40404 , 40407 , 40402 , 40406 , - 5 , 4 , 139 , 625 , 137 , 497 , 2 , 128 , 1 , 1 , - 7 , - 124 , - 6 , - 123 , - 1 , - 1 , 865 , 865 , 865 , 15 . 468765469 , 12 . 300762301 , 3 . 168003168 , 0 . 0247500248 , - 3 . 069003069 , - 3 . 044253044 <nl> + 050 , 3 , 6 , 28 , 115 , Mississippi , Pontotoc County , 29957 , 29957 , 30003 , 29900 , 46 , - 103 , 101 , 433 , 65 , 229 , 36 , 204 , 8 , 35 , 3 , - 342 , 11 , - 307 , - 1 , 0 , 236 , 236 , 236 , 14 . 456705006 , 7 . 6456938718 , 6 . 8110111347 , 1 . 1685558319 , - 11 . 41845984 , - 10 . 24990401 <nl> + 050 , 3 , 6 , 28 , 117 , Mississippi , Prentiss County , 25276 , 25276 , 25204 , 25330 , - 72 , 126 , 84 , 324 , 61 , 221 , 23 , 103 , - 3 , - 7 , - 93 , 31 , - 96 , 24 , 1 , - 1 , 864 , 864 , 864 , 12 . 823049828 , 8 . 7465864566 , 4 . 0764633712 , - 0 . 2770412 , 1 . 2268967428 , 0 . 9498555428 <nl> + 050 , 3 , 6 , 28 , 119 , Mississippi , Quitman County , 8223 , 8223 , 8196 , 8134 , - 27 , - 62 , 25 , 122 , 4 , 110 , 21 , 12 , 0 , 1 , - 47 , - 76 , - 47 , - 75 , - 1 , 1 , 164 , 164 , 164 , 14 . 941824862 , 13 . 472137171 , 1 . 4696876914 , 0 . 1224739743 , - 9 . 308022045 , - 9 . 185548071 <nl> + 050 , 3 , 6 , 28 , 121 , Mississippi , Rankin County , 141617 , 141617 , 142049 , 143702 , 432 , 1653 , 479 , 1914 , 246 , 983 , 233 , 931 , 20 , 63 , 176 , 655 , 196 , 718 , 3 , 4 , 5629 , 5629 , 5629 , 13 . 396278578 , 6 . 8801159051 , 6 . 5161626731 , 0 . 4409433388 , 4 . 5844109032 , 5 . 025354242 <nl> + 050 , 3 , 6 , 28 , 123 , Mississippi , Scott County , 28264 , 28264 , 28334 , 28388 , 70 , 54 , 107 , 476 , 56 , 288 , 51 , 188 , 31 , 113 , - 11 , - 248 , 20 , - 135 , - 1 , 1 , 229 , 229 , 229 , 16 . 783611297 , 10 . 154790029 , 6 . 6288212686 , 3 . 9843446987 , - 8 . 744402525 , - 4 . 760057826 <nl> + 050 , 3 , 6 , 28 , 125 , Mississippi , Sharkey County , 4916 , 4916 , 4879 , 4892 , - 37 , 13 , 17 , 76 , 4 , 53 , 13 , 23 , 0 , 0 , - 50 , - 10 , - 50 , - 10 , 0 , 0 , 108 , 108 , 108 , 15 . 556237847 , 10 . 848429025 , 4 . 707808822 , 0 , - 2 . 046873401 , - 2 . 046873401 <nl> + 050 , 3 , 6 , 28 , 127 , Mississippi , Simpson County , 27503 , 27503 , 27500 , 27320 , - 3 , - 180 , 84 , 383 , 59 , 283 , 25 , 100 , 6 , 18 , - 33 , - 298 , - 27 , - 280 , - 1 , 0 , 642 , 642 , 642 , 13 . 973002554 , 10 . 324699015 , 3 . 6483035389 , 0 . 656694637 , - 10 . 87194455 , - 10 . 21524991 <nl> + 050 , 3 , 6 , 28 , 129 , Mississippi , Smith County , 16491 , 16491 , 16463 , 16442 , - 28 , - 21 , 52 , 210 , 37 , 163 , 15 , 47 , 0 , 0 , - 43 , - 68 , - 43 , - 68 , 0 , 0 , 107 , 107 , 107 , 12 . 764017627 , 9 . 9073089196 , 2 . 8567087069 , 0 , - 4 . 13311047 , - 4 . 13311047 <nl> + 050 , 3 , 6 , 28 , 131 , Mississippi , Stone County , 17786 , 17786 , 17894 , 17822 , 108 , - 72 , 51 , 216 , 30 , 163 , 21 , 53 , 1 , 0 , 85 , - 126 , 86 , - 126 , 1 , 1 , 1288 , 1288 , 1288 , 12 . 09541942 , 9 . 127561877 , 2 . 9678575428 , 0 , - 7 . 055661328 , - 7 . 055661328 <nl> + 050 , 3 , 6 , 28 , 133 , Mississippi , Sunflower County , 29450 , 29450 , 29424 , 29296 , - 26 , - 128 , 95 , 389 , 59 , 296 , 36 , 93 , 0 , 9 , - 63 , - 233 , - 63 , - 224 , 1 , 3 , 4654 , 4654 , 4654 , 13 . 249318801 , 10 . 081743869 , 3 . 1675749319 , 0 . 3065395095 , - 7 . 935967302 , - 7 . 629427793 <nl> + 050 , 3 , 6 , 28 , 135 , Mississippi , Tallahatchie County , 15378 , 15378 , 15355 , 15318 , - 23 , - 37 , 45 , 198 , 11 , 158 , 34 , 40 , 0 , 0 , - 57 , - 76 , - 57 , - 76 , 0 , - 1 , 2421 , 2421 , 2421 , 12 . 910377205 , 10 . 302220194 , 2 . 6081570111 , 0 , - 4 . 955498321 , - 4 . 955498321 <nl> + 050 , 3 , 6 , 28 , 137 , Mississippi , Tate County , 28886 , 28886 , 28983 , 28719 , 97 , - 264 , 86 , 371 , 64 , 276 , 22 , 95 , 3 , 9 , 71 , - 372 , 74 , - 363 , 1 , 4 , 1281 , 1281 , 1281 , 12 . 859172992 , 9 . 566392846 , 3 . 2927801463 , 0 . 3119475928 , - 12 . 89383384 , - 12 . 58188624 <nl> + 050 , 3 , 6 , 28 , 139 , Mississippi , Tippah County , 22232 , 22232 , 22232 , 22143 , 0 , - 89 , 60 , 274 , 53 , 232 , 7 , 42 , 5 , 23 , - 11 , - 156 , - 6 , - 133 , - 1 , 2 , 287 , 287 , 287 , 12 . 349295775 , 10 . 456338028 , 1 . 8929577465 , 1 . 0366197183 , - 7 . 030985915 , - 5 . 994366197 <nl> + 050 , 3 , 6 , 28 , 141 , Mississippi , Tishomingo County , 19593 , 19593 , 19588 , 19603 , - 5 , 15 , 43 , 184 , 77 , 299 , - 34 , - 115 , 6 , 25 , 25 , 106 , 31 , 131 , - 2 , - 1 , 280 , 280 , 280 , 9 . 3899109489 , 15 . 258605292 , - 5 . 868694343 , 1 . 2758031181 , 5 . 4094052206 , 6 . 6852083386 <nl> + 050 , 3 , 6 , 28 , 143 , Mississippi , Tunica County , 10778 , 10778 , 10758 , 10628 , - 20 , - 130 , 51 , 184 , 6 , 93 , 45 , 91 , 11 , 41 , - 77 , - 265 , - 66 , - 224 , 1 , 3 , 104 , 104 , 104 , 17 . 207518938 , 8 . 6972785935 , 8 . 5102403442 , 3 . 8342841111 , - 24 . 78256804 , - 20 . 94828392 <nl> + 050 , 3 , 6 , 28 , 145 , Mississippi , Union County , 27134 , 27134 , 27160 , 27340 , 26 , 180 , 80 , 354 , 61 , 239 , 19 , 115 , 6 , 26 , 2 , 39 , 8 , 65 , - 1 , 0 , 283 , 283 , 283 , 12 . 990825688 , 8 . 7706422018 , 4 . 2201834862 , 0 . 9541284404 , 1 . 4311926606 , 2 . 3853211009 <nl> + 050 , 3 , 6 , 28 , 147 , Mississippi , Walthall County , 15443 , 15443 , 15426 , 15406 , - 17 , - 20 , 45 , 196 , 26 , 183 , 19 , 13 , 0 , 2 , - 35 , - 36 , - 35 , - 34 , - 1 , 1 , 128 , 128 , 128 , 12 . 714063311 , 11 . 870783601 , 0 . 8432797094 , 0 . 1297353399 , - 2 . 335236118 , - 2 . 205500778 <nl> + 050 , 3 , 6 , 28 , 149 , Mississippi , Warren County , 48773 , 48773 , 48803 , 48346 , 30 , - 457 , 152 , 660 , 126 , 496 , 26 , 164 , 11 , 45 , - 6 , - 673 , 5 , - 628 , - 1 , 7 , 524 , 524 , 524 , 13 . 587376092 , 10 . 211119003 , 3 . 3762570896 , 0 . 9264120063 , - 13 . 85500623 , - 12 . 92859422 <nl> + 050 , 3 , 6 , 28 , 151 , Mississippi , Washington County , 51137 , 51137 , 51050 , 50406 , - 87 , - 644 , 192 , 815 , 176 , 659 , 16 , 156 , 3 , 9 , - 108 , - 821 , - 105 , - 812 , 2 , 12 , 548 , 548 , 548 , 16 . 066077906 , 12 . 990853178 , 3 . 075224728 , 0 . 1774168112 , - 16 . 18435578 , - 16 . 00693897 <nl> + 050 , 3 , 6 , 28 , 153 , Mississippi , Wayne County , 20747 , 20747 , 20784 , 20589 , 37 , - 195 , 76 , 288 , 31 , 193 , 45 , 95 , 1 , 2 , - 7 , - 293 , - 6 , - 291 , - 2 , 1 , 137 , 137 , 137 , 13 . 922123124 , 9 . 3297561211 , 4 . 5923670026 , 0 . 0966814106 , - 14 . 16382665 , - 14 . 06714524 <nl> + 050 , 3 , 6 , 28 , 155 , Mississippi , Webster County , 10253 , 10253 , 10300 , 10319 , 47 , 19 , 32 , 130 , 33 , 148 , - 1 , - 18 , 2 , 8 , 47 , 31 , 49 , 39 , - 1 , - 2 , 56 , 56 , 56 , 12 . 609728891 , 14 . 355691353 , - 1 . 745962462 , 0 . 7759833164 , 3 . 0069353509 , 3 . 7829186672 <nl> + 050 , 3 , 6 , 28 , 157 , Mississippi , Wilkinson County , 9878 , 9878 , 9855 , 9679 , - 23 , - 176 , 26 , 123 , 18 , 140 , 8 , - 17 , 0 , 0 , - 32 , - 161 , - 32 , - 161 , 1 , 2 , 1168 , 1168 , 1168 , 12 . 593426846 , 14 . 333981775 , - 1 . 74055493 , 0 , - 16 . 48407904 , - 16 . 48407904 <nl> + 050 , 3 , 6 , 28 , 159 , Mississippi , Winston County , 19198 , 19198 , 19193 , 19069 , - 5 , - 124 , 51 , 235 , 43 , 243 , 8 , - 8 , 0 , 1 , - 12 , - 117 , - 12 , - 116 , - 1 , 0 , 408 , 408 , 408 , 12 . 283727981 , 12 . 701897444 , - 0 . 418169463 , 0 . 0522711829 , - 6 . 115728399 , - 6 . 063457216 <nl> + 050 , 3 , 6 , 28 , 161 , Mississippi , Yalobusha County , 12678 , 12678 , 12663 , 12552 , - 15 , - 111 , 38 , 155 , 21 , 166 , 17 , - 11 , 0 , 0 , - 31 , - 101 , - 31 , - 101 , - 1 , 1 , 155 , 155 , 155 , 12 . 294269284 , 13 . 166765814 , - 0 . 87249653 , 0 , - 8 . 011104501 , - 8 . 011104501 <nl> + 050 , 3 , 6 , 28 , 163 , Mississippi , Yazoo County , 28065 , 28065 , 28021 , 27886 , - 44 , - 135 , 91 , 404 , 45 , 254 , 46 , 150 , 2 , 4 , - 93 , - 290 , - 91 , - 286 , 1 , 1 , 4020 , 4020 , 4020 , 14 . 452573023 , 9 . 0865186828 , 5 . 3660543402 , 0 . 1430947824 , - 10 . 37437172 , - 10 . 23127694 <nl> + 040 , 2 , 4 , 29 , 000 , Missouri , Missouri , 5988927 , 5988927 , 5995715 , 6010688 , 6788 , 14973 , 18600 , 75910 , 13350 , 54361 , 5250 , 21549 , 1638 , 5319 , - 26 , - 11805 , 1612 , - 6486 , - 74 , - 90 , 174142 , 174031 , 174034 , 12 . 644919548 , 9 . 0553348909 , 3 . 5895846575 , 0 . 8860272306 , - 1 . 966450735 , - 1 . 080423504 <nl> + 050 , 2 , 4 , 29 , 001 , Missouri , Adair County , 25607 , 25607 , 25592 , 25552 , - 15 , - 40 , 61 , 273 , 49 , 184 , 12 , 89 , 3 , 8 , - 30 , - 137 , - 27 , - 129 , 0 , 0 , 2900 , 2900 , 2900 , 10 . 67573909 , 7 . 1953699359 , 3 . 4803691538 , 0 . 3128421711 , - 5 . 357422181 , - 5 . 044580009 <nl> + 050 , 2 , 4 , 29 , 003 , Missouri , Andrew County , 17291 , 17291 , 17377 , 17196 , 86 , - 181 , 45 , 188 , 35 , 172 , 10 , 16 , 1 , 0 , 73 , - 198 , 74 , - 198 , 2 , 1 , 192 , 192 , 192 , 10 . 875538715 , 9 . 9499609522 , 0 . 925577763 , 0 , - 11 . 45402482 , - 11 . 45402482 <nl> + 050 , 2 , 4 , 29 , 005 , Missouri , Atchison County , 5685 , 5685 , 5655 , 5569 , - 30 , - 86 , 14 , 62 , 13 , 93 , 1 , - 31 , 0 , 0 , - 31 , - 54 , - 31 , - 54 , 0 , - 1 , 98 , 98 , 98 , 11 . 047754811 , 16 . 571632217 , - 5 . 523877406 , 0 , - 9 . 622238061 , - 9 . 622238061 <nl> + 050 , 2 , 4 , 29 , 007 , Missouri , Audrain County , 25529 , 25529 , 25487 , 25566 , - 42 , 79 , 94 , 362 , 87 , 296 , 7 , 66 , 3 , 19 , - 52 , - 5 , - 49 , 14 , 0 , - 1 , 2100 , 2100 , 2100 , 14 . 181340959 , 11 . 595792608 , 2 . 5855483517 , 0 . 7443245255 , - 0 . 195874875 , 0 . 5484496504 <nl> + 050 , 2 , 4 , 29 , 009 , Missouri , Barry County , 35597 , 35597 , 35558 , 35282 , - 39 , - 276 , 100 , 432 , 92 , 358 , 8 , 74 , 2 , 8 , - 48 , - 360 , - 46 , - 352 , - 1 , 2 , 296 , 296 , 296 , 12 . 196499153 , 10 . 10728402 , 2 . 0892151327 , 0 . 2258610954 , - 10 . 16374929 , - 9 . 937888199 <nl> + 050 , 2 , 4 , 29 , 011 , Missouri , Barton County , 12402 , 12402 , 12392 , 12327 , - 10 , - 65 , 33 , 132 , 23 , 138 , 10 , - 6 , 3 , 11 , - 22 , - 69 , - 19 , - 58 , - 1 , - 1 , 90 , 90 , 90 , 10 . 680043691 , 11 . 165500223 , - 0 . 485456531 , 0 . 8900036409 , - 5 . 582750111 , - 4 . 69274647 <nl> + 050 , 2 , 4 , 29 , 013 , Missouri , Bates County , 17049 , 17049 , 17050 , 17008 , 1 , - 42 , 47 , 196 , 44 , 191 , 3 , 5 , 0 , 0 , - 1 , - 46 , - 1 , - 46 , - 1 , - 1 , 311 , 311 , 311 , 11 . 509777438 , 11 . 216160667 , 0 . 2936167714 , 0 , - 2 . 701274297 , - 2 . 701274297 <nl> + 050 , 2 , 4 , 29 , 015 , Missouri , Benton County , 19056 , 19056 , 19108 , 19115 , 52 , 7 , 47 , 166 , 70 , 264 , - 23 , - 98 , 7 , 32 , 68 , 76 , 75 , 108 , 0 , - 3 , 244 , 244 , 244 , 8 . 6858697643 , 13 . 813672396 , - 5 . 127802632 , 1 . 6743845329 , 3 . 9766632656 , 5 . 6510477984 <nl> + 050 , 2 , 4 , 29 , 017 , Missouri , Bollinger County , 12363 , 12363 , 12341 , 12356 , - 22 , 15 , 32 , 135 , 41 , 140 , - 9 , - 5 , 0 , 0 , - 13 , 21 , - 13 , 21 , 0 , - 1 , 163 , 163 , 163 , 10 . 932501923 , 11 . 337409402 , - 0 . 404907479 , 0 , 1 . 7006114103 , 1 . 7006114103 <nl> + 050 , 2 , 4 , 29 , 019 , Missouri , Boone County , 162642 , 162642 , 163193 , 165627 , 551 , 2434 , 487 , 2044 , 227 , 942 , 260 , 1102 , 104 , 364 , 183 , 959 , 287 , 1323 , 4 , 9 , 8998 , 8998 , 8998 , 12 . 4323338 , 5 . 7295784928 , 6 . 7027553069 , 2 . 213977252 , 5 . 8329785293 , 8 . 0469557813 <nl> + 050 , 2 , 4 , 29 , 021 , Missouri , Buchanan County , 89201 , 89201 , 89051 , 89666 , - 150 , 615 , 304 , 1274 , 215 , 871 , 89 , 403 , 12 , 53 , - 256 , 162 , - 244 , 215 , 5 , - 3 , 4495 , 4384 , 4384 , 14 . 257177549 , 9 . 7472540385 , 4 . 5099235104 , 0 . 5931164914 , 1 . 8129221059 , 2 . 4060385973 <nl> + 050 , 2 , 4 , 29 , 023 , Missouri , Butler County , 42794 , 42794 , 42809 , 43082 , 15 , 273 , 126 , 530 , 132 , 529 , - 6 , 1 , 3 , 14 , 21 , 257 , 24 , 271 , - 3 , 1 , 884 , 884 , 884 , 12 . 341223178 , 12 . 317937851 , 0 . 0232853268 , 0 . 3259945745 , 5 . 9843289751 , 6 . 3103235496 <nl> + 050 , 2 , 4 , 29 , 025 , Missouri , Caldwell County , 9424 , 9424 , 9432 , 9315 , 8 , - 117 , 23 , 102 , 18 , 100 , 5 , 2 , 0 , 1 , 4 , - 121 , 4 , - 120 , - 1 , 1 , 214 , 214 , 214 , 10 . 881741079 , 10 . 668373606 , 0 . 2133674721 , 0 . 1066837361 , - 12 . 90873206 , - 12 . 80204833 <nl> + 050 , 2 , 4 , 29 , 027 , Missouri , Callaway County , 44332 , 44332 , 44400 , 44420 , 68 , 20 , 123 , 482 , 95 , 356 , 28 , 126 , 2 , 6 , 37 , - 110 , 39 , - 104 , 1 , - 2 , 3907 , 3907 , 3907 , 10 . 853411394 , 8 . 0162125647 , 2 . 8371988291 , 0 . 1351047061 , - 2 . 476919613 , - 2 . 341814907 <nl> + 050 , 2 , 4 , 29 , 029 , Missouri , Camden County , 44002 , 44002 , 44016 , 43679 , 14 , - 337 , 101 , 412 , 116 , 448 , - 15 , - 36 , 2 , 3 , 31 , - 302 , 33 , - 299 , - 4 , - 2 , 774 , 774 , 774 , 9 . 3962027482 , 10 . 217230173 , - 0 . 821027425 , 0 . 068418952 , - 6 . 88750784 , - 6 . 819088888 <nl> + 050 , 2 , 4 , 29 , 031 , Missouri , Cape Girardeau County , 75674 , 75674 , 75873 , 76632 , 199 , 759 , 225 , 915 , 168 , 648 , 57 , 267 , 8 , 38 , 133 , 452 , 141 , 490 , 1 , 2 , 3823 , 3823 , 3823 , 11 . 99960657 , 8 . 4980820301 , 3 . 5015245402 , 0 . 4983443166 , 5 . 9276745025 , 6 . 4260188191 <nl> + 050 , 2 , 4 , 29 , 033 , Missouri , Carroll County , 9295 , 9295 , 9294 , 9260 , - 1 , - 34 , 29 , 107 , 24 , 137 , 5 , - 30 , 3 , 9 , - 8 , - 12 , - 5 , - 3 , - 1 , - 1 , 88 , 88 , 88 , 11 . 533901046 , 14 . 767705077 , - 3 . 233804031 , 0 . 9701412094 , - 1 . 293521613 , - 0 . 323380403 <nl> + 050 , 2 , 4 , 29 , 035 , Missouri , Carter County , 6265 , 6265 , 6297 , 6365 , 32 , 68 , 14 , 77 , 22 , 101 , - 8 , - 24 , 0 , 0 , 40 , 92 , 40 , 92 , 0 , 0 , 40 , 40 , 40 , 12 . 162375612 , 15 . 953245933 , - 3 . 790870321 , 0 , 14 . 531669562 , 14 . 531669562 <nl> + 050 , 2 , 4 , 29 , 037 , Missouri , Cass County , 99478 , 99478 , 99736 , 100052 , 258 , 316 , 309 , 1251 , 201 , 811 , 108 , 440 , 11 , 25 , 140 , - 145 , 151 , - 120 , - 1 , - 4 , 1044 , 1044 , 1044 , 12 . 523274671 , 8 . 1186057221 , 4 . 4046689491 , 0 . 2502652812 , - 1 . 451538631 , - 1 . 20127335 <nl> + 050 , 2 , 4 , 29 , 039 , Missouri , Cedar County , 13982 , 13982 , 13999 , 13948 , 17 , - 51 , 37 , 155 , 47 , 201 , - 10 , - 46 , 0 , 0 , 29 , - 5 , 29 , - 5 , - 2 , 0 , 156 , 156 , 156 , 11 . 092424947 , 14 . 384370415 , - 3 . 291945468 , 0 , - 0 . 35782016 , - 0 . 35782016 <nl> + 050 , 2 , 4 , 29 , 041 , Missouri , Chariton County , 7831 , 7831 , 7840 , 7734 , 9 , - 106 , 20 , 84 , 14 , 108 , 6 , - 24 , 0 , 3 , 4 , - 85 , 4 , - 82 , - 1 , 0 , 213 , 213 , 213 , 10 . 787209452 , 13 . 869269295 , - 3 . 082059843 , 0 . 3852574804 , - 10 . 91562861 , - 10 . 53037113 <nl> + 050 , 2 , 4 , 29 , 043 , Missouri , Christian County , 77422 , 77422 , 77859 , 78570 , 437 , 711 , 271 , 1057 , 131 , 521 , 140 , 536 , 4 , 18 , 288 , 162 , 292 , 180 , 5 , - 5 , 582 , 582 , 582 , 13 . 514118226 , 6 . 6611689648 , 6 . 8529492613 , 0 . 2301363558 , 2 . 0712272021 , 2 . 3013635579 <nl> + 050 , 2 , 4 , 29 , 045 , Missouri , Clark County , 7139 , 7139 , 7140 , 7019 , 1 , - 121 , 16 , 77 , 6 , 73 , 10 , 4 , 0 , 1 , - 7 , - 127 , - 7 , - 126 , - 2 , 1 , 90 , 90 , 90 , 10 . 876474327 , 10 . 311462674 , 0 . 5650116534 , 0 . 1412529133 , - 17 . 93911999 , - 17 . 79786708 <nl> + 050 , 2 , 4 , 29 , 047 , Missouri , Clay County , 221939 , 221939 , 222686 , 225161 , 747 , 2475 , 783 , 3083 , 365 , 1459 , 418 , 1624 , 57 , 144 , 266 , 707 , 323 , 851 , 6 , 0 , 2646 , 2646 , 2646 , 13 . 768094907 , 6 . 5156180571 , 7 . 2524768504 , 0 . 6430767651 , 3 . 157328284 , 3 . 800405049 <nl> + 050 , 2 , 4 , 29 , 049 , Missouri , Clinton County , 20743 , 20743 , 20747 , 20789 , 4 , 42 , 53 , 237 , 65 , 224 , - 12 , 13 , 2 , 6 , 16 , 26 , 18 , 32 , - 2 , - 3 , 445 , 445 , 445 , 11 . 411787365 , 10 . 785824345 , 0 . 62596302 , 0 . 2889060092 , 1 . 2519260401 , 1 . 5408320493 <nl> + 050 , 2 , 4 , 29 , 051 , Missouri , Cole County , 75990 , 75983 , 76120 , 76448 , 137 , 328 , 228 , 912 , 153 , 597 , 75 , 315 , 21 , 80 , 41 , - 63 , 62 , 17 , 0 , - 4 , 4968 , 4968 , 4968 , 11 . 955324839 , 7 . 8260185622 , 4 . 1293062765 , 1 . 0487127052 , - 0 . 825861255 , 0 . 2228514498 <nl> + 050 , 2 , 4 , 29 , 053 , Missouri , Cooper County , 17601 , 17601 , 17607 , 17663 , 6 , 56 , 43 , 192 , 44 , 183 , - 1 , 9 , 0 , 2 , 8 , 47 , 8 , 49 , - 1 , - 2 , 1533 , 1533 , 1533 , 10 . 88743975 , 10 . 377091012 , 0 . 5103487383 , 0 . 1134108307 , 2 . 6651545223 , 2 . 778565353 <nl> + 050 , 2 , 4 , 29 , 055 , Missouri , Crawford County , 24696 , 24696 , 24636 , 24800 , - 60 , 164 , 65 , 278 , 76 , 282 , - 11 , - 4 , 1 , 7 , - 50 , 160 , - 49 , 167 , 0 , 1 , 332 , 332 , 332 , 11 . 246864633 , 11 . 408690023 , - 0 . 16182539 , 0 . 2831944332 , 6 . 4730156162 , 6 . 7562100494 <nl> + 050 , 2 , 4 , 29 , 057 , Missouri , Dade County , 7883 , 7883 , 7867 , 7807 , - 16 , - 60 , 18 , 74 , 21 , 112 , - 3 , - 38 , 0 , 0 , - 12 , - 23 , - 12 , - 23 , - 1 , 1 , 133 , 133 , 133 , 9 . 4423886691 , 14 . 291182851 , - 4 . 848794181 , 0 , - 2 . 934796478 , - 2 . 934796478 <nl> + 050 , 2 , 4 , 29 , 059 , Missouri , Dallas County , 16777 , 16777 , 16759 , 16749 , - 18 , - 10 , 46 , 203 , 50 , 196 , - 4 , 7 , 3 , 9 , - 15 , - 26 , - 12 , - 17 , - 2 , 0 , 199 , 199 , 199 , 12 . 11650949 , 11 . 698698818 , 0 . 4178106721 , 0 . 5371851498 , - 1 . 551868211 , - 1 . 014683061 <nl> + 050 , 2 , 4 , 29 , 061 , Missouri , Daviess County , 8433 , 8433 , 8451 , 8313 , 18 , - 138 , 30 , 114 , 9 , 87 , 21 , 27 , 0 , 0 , - 2 , - 167 , - 2 , - 167 , - 1 , 2 , 152 , 152 , 152 , 13 . 600572656 , 10 . 379384395 , 3 . 2211882606 , 0 , - 19 . 92364591 , - 19 . 92364591 <nl> + 050 , 2 , 4 , 29 , 063 , Missouri , DeKalb County , 12892 , 12892 , 12888 , 12767 , - 4 , - 121 , 26 , 108 , 14 , 91 , 12 , 17 , 4 , 13 , - 19 , - 148 , - 15 , - 135 , - 1 , - 3 , 3560 , 3560 , 3560 , 8 . 4194114208 , 7 . 0941336971 , 1 . 3252777236 , 1 . 013447671 , - 11 . 53771195 , - 10 . 52426428 <nl> + 050 , 2 , 4 , 29 , 065 , Missouri , Dent County , 15657 , 15657 , 15689 , 15676 , 32 , - 13 , 41 , 186 , 62 , 207 , - 21 , - 21 , 0 , 3 , 55 , 7 , 55 , 10 , - 2 , - 2 , 202 , 202 , 202 , 11 . 860353898 , 13 . 199426112 , - 1 . 339072214 , 0 . 1912960306 , 0 . 4463574048 , 0 . 6376534354 <nl> + 050 , 2 , 4 , 29 , 067 , Missouri , Douglas County , 13684 , 13684 , 13634 , 13548 , - 50 , - 86 , 31 , 127 , 38 , 149 , - 7 , - 22 , - 1 , - 1 , - 42 , - 61 , - 43 , - 62 , 0 , - 2 , 123 , 123 , 123 , 9 . 3444191009 , 10 . 96313737 , - 1 . 618718269 , - 0 . 073578103 , - 4 . 488264293 , - 4 . 561842396 <nl> + 050 , 2 , 4 , 29 , 069 , Missouri , Dunklin County , 31953 , 31953 , 31913 , 31974 , - 40 , 61 , 106 , 442 , 117 , 445 , - 11 , - 3 , 3 , 18 , - 31 , 47 , - 28 , 65 , - 1 , - 1 , 672 , 672 , 672 , 13 . 836930831 , 13 . 930846651 , - 0 . 09391582 , 0 . 5634949207 , 1 . 4713478485 , 2 . 0348427693 <nl> + 050 , 2 , 4 , 29 , 071 , Missouri , Franklin County , 101492 , 101493 , 101543 , 101938 , 50 , 395 , 311 , 1260 , 221 , 914 , 90 , 346 , 2 , 19 , - 40 , 38 , - 38 , 57 , - 2 , - 8 , 857 , 857 , 856 , 12 . 384448671 , 8 . 9836397501 , 3 . 4008089207 , 0 . 1867496228 , 0 . 3734992456 , 0 . 5602488684 <nl> + 050 , 2 , 4 , 29 , 073 , Missouri , Gasconade County , 15222 , 15222 , 15238 , 15168 , 16 , - 70 , 39 , 145 , 56 , 207 , - 17 , - 62 , 0 , 2 , 36 , - 9 , 36 , - 7 , - 3 , - 1 , 250 , 250 , 250 , 9 . 5375912649 , 13 . 615733737 , - 4 . 078142472 , 0 . 131552983 , - 0 . 591988423 , - 0 . 46043544 <nl> + 050 , 2 , 4 , 29 , 075 , Missouri , Gentry County , 6738 , 6738 , 6735 , 6786 , - 3 , 51 , 23 , 88 , 17 , 104 , 6 , - 16 , 0 , 1 , - 9 , 67 , - 9 , 68 , 0 , - 1 , 177 , 177 , 177 , 13 . 016788699 , 15 . 383477553 , - 2 . 366688854 , 0 . 1479180534 , 9 . 9105095777 , 10 . 058427631 <nl> + 050 , 2 , 4 , 29 , 077 , Missouri , Greene County , 275174 , 275174 , 275397 , 277214 , 223 , 1817 , 866 , 3454 , 601 , 2408 , 265 , 1046 , 65 , 106 , - 101 , 670 , - 36 , 776 , - 6 , - 5 , 11242 , 11242 , 11242 , 12 . 500655977 , 8 . 7149911963 , 3 . 7856647805 , 0 . 3836333334 , 2 . 4248522016 , 2 . 808485535 <nl> + 050 , 2 , 4 , 29 , 079 , Missouri , Grundy County , 10261 , 10261 , 10271 , 10228 , 10 , - 43 , 37 , 146 , 28 , 132 , 9 , 14 , 0 , 0 , 2 , - 56 , 2 , - 56 , - 1 , - 1 , 350 , 350 , 350 , 14 . 244597297 , 12 . 878677009 , 1 . 3659202888 , 0 , - 5 . 463681155 , - 5 . 463681155 <nl> + 050 , 2 , 4 , 29 , 081 , Missouri , Harrison County , 8957 , 8957 , 8950 , 8866 , - 7 , - 84 , 24 , 101 , 17 , 125 , 7 , - 24 , 0 , 1 , - 14 , - 61 , - 14 , - 60 , 0 , 0 , 145 , 145 , 145 , 11 . 338123035 , 14 . 032330489 , - 2 . 694207454 , 0 . 1122586439 , - 6 . 847777279 , - 6 . 735518635 <nl> + 050 , 2 , 4 , 29 , 083 , Missouri , Henry County , 22272 , 22272 , 22264 , 22219 , - 8 , - 45 , 60 , 261 , 79 , 315 , - 19 , - 54 , 1 , 1 , 12 , 9 , 13 , 10 , - 2 , - 1 , 233 , 233 , 233 , 11 . 734820044 , 14 . 162713846 , - 2 . 427893802 , 0 . 0449609963 , 0 . 404648967 , 0 . 4496099634 <nl> + 050 , 2 , 4 , 29 , 085 , Missouri , Hickory County , 9627 , 9627 , 9640 , 9628 , 13 , - 12 , 20 , 80 , 27 , 141 , - 7 , - 61 , 0 , 0 , 22 , 49 , 22 , 49 , - 2 , 0 , 75 , 75 , 75 , 8 . 3039236039 , 14 . 635665352 , - 6 . 331741748 , 0 , 5 . 0861532074 , 5 . 0861532074 <nl> + 050 , 2 , 4 , 29 , 087 , Missouri , Holt County , 4912 , 4912 , 4903 , 4814 , - 9 , - 89 , 14 , 62 , 9 , 79 , 5 , - 17 , 0 , 0 , - 12 , - 72 , - 12 , - 72 , - 2 , 0 , 101 , 101 , 101 , 12 . 76114027 , 16 . 260162602 , - 3 . 499022332 , 0 , - 14 . 8193887 , - 14 . 8193887 <nl> + 050 , 2 , 4 , 29 , 089 , Missouri , Howard County , 10144 , 10144 , 10127 , 10204 , - 17 , 77 , 30 , 114 , 13 , 72 , 17 , 42 , 1 , 6 , - 34 , 28 , - 33 , 34 , - 1 , 1 , 714 , 714 , 714 , 11 . 214401653 , 7 . 0827799911 , 4 . 1316216615 , 0 . 5902316659 , 2 . 754414441 , 3 . 3446461069 <nl> + 050 , 2 , 4 , 29 , 091 , Missouri , Howell County , 40400 , 40400 , 40557 , 40665 , 157 , 108 , 126 , 529 , 119 , 474 , 7 , 55 , 8 , 25 , 142 , 31 , 150 , 56 , 0 , - 3 , 608 , 608 , 608 , 13 . 026027431 , 11 . 67171456 , 1 . 3543128709 , 0 . 6155967595 , 0 . 7633399818 , 1 . 3789367413 <nl> + 050 , 2 , 4 , 29 , 093 , Missouri , Iron County , 10630 , 10630 , 10588 , 10656 , - 42 , 68 , 28 , 107 , 43 , 158 , - 15 , - 51 , 0 , 0 , - 26 , 119 , - 26 , 119 , - 1 , 0 , 276 , 276 , 276 , 10 . 073432499 , 14 . 874788175 , - 4 . 801355677 , 0 , 11 . 203163246 , 11 . 203163246 <nl> + 050 , 2 , 4 , 29 , 095 , Missouri , Jackson County , 674158 , 674158 , 674953 , 676360 , 795 , 1407 , 2390 , 9849 , 1416 , 5925 , 974 , 3924 , 274 , 960 , - 445 , - 3494 , - 171 , - 2534 , - 8 , 17 , 11219 , 11219 , 11219 , 14 . 576933693 , 8 . 7692488713 , 5 . 8076848221 , 1 . 4208403234 , - 5 . 171266761 , - 3 . 750426437 <nl> + 050 , 2 , 4 , 29 , 097 , Missouri , Jasper County , 117404 , 117404 , 117754 , 118435 , 350 , 681 , 434 , 1740 , 274 , 1085 , 160 , 655 , 17 , 72 , 174 , - 39 , 191 , 33 , - 1 , - 7 , 2478 , 2478 , 2478 , 14 . 733963055 , 9 . 1875574222 , 5 . 5464056328 , 0 . 6096812299 , - 0 . 330244 , 0 . 2794372304 <nl> + 050 , 2 , 4 , 29 , 099 , Missouri , Jefferson County , 218733 , 218728 , 219056 , 219480 , 328 , 424 , 668 , 2733 , 449 , 1786 , 219 , 947 , 22 , - 21 , 90 , - 499 , 112 , - 520 , - 3 , - 3 , 1983 , 1983 , 1983 , 12 . 464199062 , 8 . 1452833975 , 4 . 3189156648 , - 0 . 095773209 , - 2 . 275753872 , - 2 . 371527081 <nl> + 050 , 2 , 4 , 29 , 101 , Missouri , Johnson County , 52595 , 52595 , 52712 , 53439 , 117 , 727 , 182 , 723 , 90 , 356 , 92 , 367 , 51 , 74 , - 26 , 285 , 25 , 359 , 0 , 1 , 3671 , 3671 , 3671 , 13 . 622104361 , 6 . 7074262136 , 6 . 9146781472 , 1 . 3942402804 , 5 . 3697091879 , 6 . 7639494682 <nl> + 050 , 2 , 4 , 29 , 103 , Missouri , Knox County , 4131 , 4131 , 4128 , 4126 , - 3 , - 2 , 6 , 35 , 3 , 49 , 3 , - 14 , 0 , 0 , - 5 , 12 , - 5 , 12 , - 1 , 0 , 87 , 87 , 87 , 8 . 4807366126 , 11 . 873031258 , - 3 . 392294645 , 0 , 2 . 9076811243 , 2 . 9076811243 <nl> + 050 , 2 , 4 , 29 , 105 , Missouri , Laclede County , 35571 , 35571 , 35634 , 35636 , 63 , 2 , 104 , 451 , 92 , 349 , 12 , 102 , 0 , 0 , 50 , - 97 , 50 , - 97 , 1 , - 3 , 345 , 345 , 345 , 12 . 656096534 , 9 . 7937421075 , 2 . 8623544268 , 0 , - 2 . 722042935 , - 2 . 722042935 <nl> + 050 , 2 , 4 , 29 , 107 , Missouri , Lafayette County , 33381 , 33381 , 33406 , 33209 , 25 , - 197 , 96 , 386 , 96 , 335 , 0 , 51 , 3 , 7 , 23 , - 256 , 26 , - 249 , - 1 , 1 , 724 , 724 , 724 , 11 . 588981461 , 10 . 057794791 , 1 . 5311866697 , 0 . 2101628762 , - 7 . 685956616 , - 7 . 47579374 <nl> + 050 , 2 , 4 , 29 , 109 , Missouri , Lawrence County , 38634 , 38634 , 38596 , 38660 , - 38 , 64 , 112 , 486 , 104 , 409 , 8 , 77 , 2 , 8 , - 48 , - 18 , - 46 , - 10 , 0 , - 3 , 559 , 559 , 559 , 12 . 581547064 , 10 . 588174381 , 1 . 993372683 , 0 . 2071036554 , - 0 . 465983225 , - 0 . 258879569 <nl> + 050 , 2 , 4 , 29 , 111 , Missouri , Lewis County , 10211 , 10211 , 10194 , 10155 , - 17 , - 39 , 10 , 85 , 18 , 112 , - 8 , - 27 , 2 , 9 , - 11 , - 20 , - 9 , - 11 , 0 , - 1 , 782 , 782 , 782 , 8 . 3542188805 , 11 . 007911937 , - 2 . 653693056 , 0 . 8845643521 , - 1 . 96569856 , - 1 . 081134208 <nl> + 050 , 2 , 4 , 29 , 113 , Missouri , Lincoln County , 52566 , 52566 , 52686 , 53076 , 120 , 390 , 179 , 748 , 105 , 382 , 74 , 366 , 5 , 20 , 40 , 8 , 45 , 28 , 1 , - 4 , 632 , 632 , 632 , 14 . 144967001 , 7 . 2237665702 , 6 . 9212004312 , 0 . 3782076738 , 0 . 1512830695 , 0 . 5294907434 <nl> + 050 , 2 , 4 , 29 , 115 , Missouri , Linn County , 12761 , 12761 , 12742 , 12566 , - 19 , - 176 , 30 , 137 , 52 , 184 , - 22 , - 47 , 1 , 8 , 3 , - 138 , 4 , - 130 , - 1 , 1 , 152 , 152 , 152 , 10 . 82661609 , 14 . 540856646 , - 3 . 714240556 , 0 . 6322111585 , - 10 . 90564248 , - 10 . 27343133 <nl> + 050 , 2 , 4 , 29 , 117 , Missouri , Livingston County , 15195 , 15195 , 15193 , 15074 , - 2 , - 119 , 45 , 163 , 48 , 195 , - 3 , - 32 , 0 , 0 , 1 , - 86 , 1 , - 86 , 0 , - 1 , 1340 , 1340 , 1340 , 10 . 770806489 , 12 . 885320646 , - 2 . 114514157 , 0 , - 5 . 682756798 , - 5 . 682756798 <nl> + 050 , 2 , 4 , 29 , 119 , Missouri , McDonald County , 23083 , 23083 , 23081 , 22977 , - 2 , - 104 , 63 , 301 , 52 , 211 , 11 , 90 , 16 , 64 , - 29 , - 262 , - 13 , - 198 , 0 , 4 , 157 , 157 , 157 , 13 . 070476356 , 9 . 162360502 , 3 . 9081158539 , 2 . 7791046072 , - 11 . 37695949 , - 8 . 597854879 <nl> + 050 , 2 , 4 , 29 , 121 , Missouri , Macon County , 15566 , 15566 , 15598 , 15591 , 32 , - 7 , 45 , 184 , 30 , 166 , 15 , 18 , 0 , 1 , 19 , - 25 , 19 , - 24 , - 2 , - 1 , 286 , 286 , 286 , 11 . 79903171 , 10 . 644778608 , 1 . 1542531021 , 0 . 0641251723 , - 1 . 603129308 , - 1 . 539004136 <nl> + 050 , 2 , 4 , 29 , 123 , Missouri , Madison County , 12226 , 12222 , 12192 , 12195 , - 30 , 3 , 33 , 147 , 41 , 192 , - 8 , - 45 , 0 , 0 , - 22 , 48 , - 22 , 48 , 0 , 0 , 168 , 168 , 168 , 12 . 055603395 , 15 . 746094231 , - 3 . 690490835 , 0 , 3 . 9365235576 , 3 . 9365235576 <nl> + 050 , 2 , 4 , 29 , 125 , Missouri , Maries County , 9176 , 9175 , 9194 , 9171 , 19 , - 23 , 23 , 93 , 12 , 99 , 11 , - 6 , 0 , 0 , 8 , - 15 , 8 , - 15 , 0 , - 2 , 67 , 67 , 67 , 10 . 127960795 , 10 . 78137762 , - 0 . 653416825 , 0 , - 1 . 633542064 , - 1 . 633542064 <nl> + 050 , 2 , 4 , 29 , 127 , Missouri , Marion County , 28781 , 28781 , 28764 , 28717 , - 17 , - 47 , 71 , 324 , 76 , 301 , - 5 , 23 , 1 , 4 , - 12 , - 74 , - 11 , - 70 , - 1 , 0 , 1368 , 1368 , 1368 , 11 . 273290305 , 10 . 473025869 , 0 . 8002644352 , 0 . 1391764235 , - 2 . 574763835 , - 2 . 435587411 <nl> + 050 , 2 , 4 , 29 , 129 , Missouri , Mercer County , 3785 , 3785 , 3779 , 3804 , - 6 , 25 , 8 , 43 , 3 , 37 , 5 , 6 , 0 , 0 , - 11 , 18 , - 11 , 18 , 0 , 1 , 51 , 51 , 51 , 11 . 341157853 , 9 . 7586707108 , 1 . 5824871423 , 0 , 4 . 7474614269 , 4 . 7474614269 <nl> + 050 , 2 , 4 , 29 , 131 , Missouri , Miller County , 24748 , 24748 , 24717 , 24770 , - 31 , 53 , 67 , 302 , 72 , 254 , - 5 , 48 , 5 , 20 , - 30 , - 14 , - 25 , 6 , - 1 , - 1 , 271 , 271 , 271 , 12 . 205225615 , 10 . 265322206 , 1 . 939903409 , 0 . 8082930871 , - 0 . 565805161 , 0 . 2424879261 <nl> + 050 , 2 , 4 , 29 , 133 , Missouri , Mississippi County , 14358 , 14358 , 14385 , 14306 , 27 , - 79 , 39 , 176 , 42 , 201 , - 3 , - 25 , 1 , 4 , 29 , - 58 , 30 , - 54 , 0 , 0 , 1874 , 1874 , 1874 , 12 . 268655676 , 14 . 011362448 , - 1 . 742706772 , 0 . 2788330835 , - 4 . 043079711 , - 3 . 764246628 <nl> + 050 , 2 , 4 , 29 , 135 , Missouri , Moniteau County , 15607 , 15607 , 15621 , 15697 , 14 , 76 , 48 , 198 , 35 , 158 , 13 , 40 , 2 , 7 , 0 , 31 , 2 , 38 , - 1 , - 2 , 1316 , 1316 , 1316 , 12 . 644485599 , 10 . 090044064 , 2 . 5544415352 , 0 . 4470272687 , 1 . 9796921898 , 2 . 4267194585 <nl> + 050 , 2 , 4 , 29 , 137 , Missouri , Monroe County , 8840 , 8840 , 8804 , 8734 , - 36 , - 70 , 23 , 91 , 12 , 93 , 11 , - 2 , 0 , 0 , - 47 , - 69 , - 47 , - 69 , 0 , 1 , 128 , 128 , 128 , 10 . 377466074 , 10 . 605542251 , - 0 . 228076177 , 0 , - 7 . 868628122 , - 7 . 868628122 <nl> + 050 , 2 , 4 , 29 , 139 , Missouri , Montgomery County , 12236 , 12236 , 12248 , 12270 , 12 , 22 , 34 , 133 , 30 , 149 , 4 , - 16 , 0 , 2 , 10 , 37 , 10 , 39 , - 2 , - 1 , 394 , 394 , 394 , 10 . 849172037 , 12 . 15433559 , - 1 . 305163553 , 0 . 1631454442 , 3 . 018190717 , 3 . 1813361612 <nl> + 050 , 2 , 4 , 29 , 141 , Missouri , Morgan County , 20565 , 20565 , 20556 , 20502 , - 9 , - 54 , 53 , 244 , 83 , 306 , - 30 , - 62 , 0 , 1 , 23 , 10 , 23 , 11 , - 2 , - 3 , 302 , 302 , 302 , 11 . 885625213 , 14 . 905743095 , - 3 . 020117882 , 0 . 0487115787 , 0 . 4871157874 , 0 . 5358273662 <nl> + 050 , 2 , 4 , 29 , 143 , Missouri , New Madrid County , 18956 , 18960 , 18930 , 18783 , - 30 , - 147 , 56 , 238 , 64 , 230 , - 8 , 8 , 0 , 2 , - 22 , - 157 , - 22 , - 155 , 0 , 0 , 332 , 332 , 332 , 12 . 621642404 , 12 . 197385517 , 0 . 4242568875 , 0 . 1060642219 , - 8 . 326041418 , - 8 . 219977196 <nl> + 050 , 2 , 4 , 29 , 145 , Missouri , Newton County , 58114 , 58114 , 58103 , 58414 , - 11 , 311 , 187 , 742 , 145 , 550 , 42 , 192 , 6 , 33 , - 56 , 88 , - 50 , 121 , - 3 , - 2 , 880 , 880 , 880 , 12 . 736338903 , 9 . 4406824755 , 3 . 2956564278 , 0 . 5664409485 , 1 . 5105091961 , 2 . 0769501446 <nl> + 050 , 2 , 4 , 29 , 147 , Missouri , Nodaway County , 23370 , 23370 , 23383 , 23468 , 13 , 85 , 65 , 239 , 44 , 181 , 21 , 58 , 5 , 23 , - 12 , 5 , - 7 , 28 , - 1 , - 1 , 3611 , 3611 , 3611 , 10 . 202557043 , 7 . 7266226975 , 2 . 4759343451 , 0 . 9818360334 , 0 . 213442616 , 1 . 1952786493 <nl> + 050 , 2 , 4 , 29 , 149 , Missouri , Oregon County , 10881 , 10881 , 10925 , 11017 , 44 , 92 , 27 , 120 , 33 , 151 , - 6 , - 31 , 1 , 2 , 48 , 121 , 49 , 123 , 1 , 0 , 121 , 121 , 121 , 10 . 937927263 , 13 . 763558472 , - 2 . 82563121 , 0 . 1822987877 , 11 . 029076657 , 11 . 211375444 <nl> + 050 , 2 , 4 , 29 , 151 , Missouri , Osage County , 13878 , 13885 , 13879 , 13915 , - 6 , 36 , 37 , 158 , 18 , 132 , 19 , 26 , 0 , 0 , - 24 , 10 , - 24 , 10 , - 1 , 0 , 405 , 405 , 405 , 11 . 369360294 , 9 . 4984529035 , 1 . 8709073901 , 0 , 0 . 7195797654 , 0 . 7195797654 <nl> + 050 , 2 , 4 , 29 , 153 , Missouri , Ozark County , 9723 , 9723 , 9735 , 9595 , 12 , - 140 , 14 , 76 , 27 , 133 , - 13 , - 57 , 0 , 1 , 26 , - 84 , 26 , - 83 , - 1 , 0 , 123 , 123 , 123 , 7 . 8634247284 , 13 . 760993275 , - 5 . 897568546 , 0 . 1034661148 , - 8 . 691153647 , - 8 . 587687532 <nl> + 050 , 2 , 4 , 29 , 155 , Missouri , Pemiscot County , 18296 , 18296 , 18254 , 18174 , - 42 , - 80 , 67 , 288 , 59 , 243 , 8 , 45 , 0 , 4 , - 51 , - 129 , - 51 , - 125 , 1 , 0 , 202 , 202 , 202 , 15 . 812012737 , 13 . 341385747 , 2 . 4706269902 , 0 . 219611288 , - 7 . 082464039 , - 6 . 862852751 <nl> + 050 , 2 , 4 , 29 , 157 , Missouri , Perry County , 18971 , 18971 , 18958 , 19041 , - 13 , 83 , 59 , 222 , 62 , 226 , - 3 , - 4 , 6 , 22 , - 15 , 66 , - 9 , 88 , - 1 , - 1 , 286 , 286 , 286 , 11 . 684518014 , 11 . 89504987 , - 0 . 210531856 , 1 . 1579252086 , 3 . 4737756257 , 4 . 6317008342 <nl> + 050 , 2 , 4 , 29 , 159 , Missouri , Pettis County , 42201 , 42201 , 42265 , 42178 , 64 , - 87 , 146 , 585 , 107 , 378 , 39 , 207 , 8 , 35 , 19 , - 331 , 27 , - 296 , - 2 , 2 , 851 , 851 , 851 , 13 . 85550016 , 8 . 9527847187 , 4 . 9027154412 , 0 . 828961548 , - 7 . 839607783 , - 7 . 010646235 <nl> + 050 , 2 , 4 , 29 , 161 , Missouri , Phelps County , 45156 , 45156 , 45266 , 45020 , 110 , - 246 , 135 , 524 , 108 , 407 , 27 , 117 , 16 , 57 , 66 , - 423 , 82 , - 366 , 1 , 3 , 3001 , 3001 , 3001 , 11 . 607558204 , 9 . 0157942538 , 2 . 5917639501 , 1 . 2626542321 , - 9 . 370223512 , - 8 . 10756928 <nl> + 050 , 2 , 4 , 29 , 163 , Missouri , Pike County , 18516 , 18516 , 18500 , 18572 , - 16 , 72 , 51 , 223 , 53 , 194 , - 2 , 29 , 7 , 25 , - 21 , 20 , - 14 , 45 , 0 , - 2 , 2162 , 2162 , 2162 , 12 . 030643073 , 10 . 466119983 , 1 . 5645230902 , 1 . 3487268019 , 1 . 0789814415 , 2 . 4277082434 <nl> + 050 , 2 , 4 , 29 , 165 , Missouri , Platte County , 89322 , 89322 , 89726 , 90903 , 404 , 1177 , 288 , 1104 , 135 , 534 , 153 , 570 , 31 , 126 , 217 , 480 , 248 , 606 , 3 , 1 , 869 , 869 , 869 , 12 . 22395075 , 5 . 9126718301 , 6 . 3112789198 , 1 . 3951248138 , 5 . 3147611956 , 6 . 7098860094 <nl> + 050 , 2 , 4 , 29 , 167 , Missouri , Polk County , 31137 , 31137 , 31139 , 31170 , 2 , 31 , 82 , 361 , 105 , 384 , - 23 , - 23 , 4 , 13 , 24 , 44 , 28 , 57 , - 3 , - 3 , 1511 , 1511 , 1511 , 11 . 587411128 , 12 . 325667239 , - 0 . 738256111 , 0 . 417275193 , 1 . 4123160378 , 1 . 8295912308 <nl> + 050 , 2 , 4 , 29 , 169 , Missouri , Pulaski County , 52274 , 52275 , 52814 , 53175 , 539 , 361 , 223 , 893 , 71 , 255 , 152 , 638 , 131 , 90 , 247 , - 369 , 378 , - 279 , 9 , 2 , 9989 , 9989 , 9993 , 16 . 850805272 , 4 . 8118200945 , 12 . 038985178 , 1 . 6982894451 , - 6 . 962986725 , - 5 . 26469728 <nl> + 050 , 2 , 4 , 29 , 171 , Missouri , Putnam County , 4979 , 4979 , 4973 , 4978 , - 6 , 5 , 12 , 54 , 5 , 56 , 7 , - 2 , 0 , 0 , - 12 , 7 , - 12 , 7 , - 1 , 0 , 57 , 57 , 57 , 10 . 853180585 , 11 . 255150236 , - 0 . 401969651 , 0 , 1 . 4068937795 , 1 . 4068937795 <nl> + 050 , 2 , 4 , 29 , 173 , Missouri , Ralls County , 10167 , 10167 , 10188 , 10281 , 21 , 93 , 20 , 97 , 8 , 85 , 12 , 12 , 0 , 0 , 10 , 80 , 10 , 80 , - 1 , 1 , 54 , 54 , 54 , 9 . 4777468367 , 8 . 3052420734 , 1 . 1725047633 , 0 , 7 . 816698422 , 7 . 816698422 <nl> + 050 , 2 , 4 , 29 , 175 , Missouri , Randolph County , 25414 , 25414 , 25423 , 25346 , 9 , - 77 , 79 , 313 , 68 , 243 , 11 , 70 , 3 , 15 , - 3 , - 163 , 0 , - 148 , - 2 , 1 , 2455 , 2455 , 2455 , 12 . 330359077 , 9 . 5727707853 , 2 . 7575882921 , 0 . 5909117769 , - 6 . 421241309 , - 5 . 830329532 <nl> + 050 , 2 , 4 , 29 , 177 , Missouri , Ray County , 23494 , 23494 , 23461 , 23230 , - 33 , - 231 , 62 , 274 , 72 , 258 , - 10 , 16 , 0 , 4 , - 22 , - 252 , - 22 , - 248 , - 1 , 1 , 311 , 311 , 311 , 11 . 736737273 , 11 . 051380352 , 0 . 685356921 , 0 . 1713392303 , - 10 . 79437151 , - 10 . 62303228 <nl> + 050 , 2 , 4 , 29 , 179 , Missouri , Reynolds County , 6696 , 6694 , 6699 , 6588 , 5 , - 111 , 18 , 68 , 14 , 86 , 4 , - 18 , 0 , 1 , 2 , - 94 , 2 , - 93 , - 1 , 0 , 101 , 101 , 101 , 10 . 235568601 , 12 . 944983819 , - 2 . 709415218 , 0 . 1505230677 , - 14 . 14916836 , - 13 . 99864529 <nl> + 050 , 2 , 4 , 29 , 181 , Missouri , Ripley County , 14100 , 14100 , 14124 , 14143 , 24 , 19 , 49 , 200 , 53 , 216 , - 4 , - 16 , 0 , 3 , 29 , 32 , 29 , 35 , - 1 , 0 , 63 , 63 , 63 , 14 . 150776524 , 15 . 282838646 , - 1 . 132062122 , 0 . 2122616479 , 2 . 2641242438 , 2 . 4763858917 <nl> + 050 , 2 , 4 , 29 , 183 , Missouri , St . Charles County , 360485 , 360485 , 361725 , 365151 , 1240 , 3426 , 1132 , 4529 , 526 , 2119 , 606 , 2410 , 97 , 189 , 537 , 852 , 634 , 1041 , 0 , - 25 , 5426 , 5426 , 5426 , 12 . 461547774 , 5 . 8304304998 , 6 . 6311172745 , 0 . 5200336784 , 2 . 3442788041 , 2 . 8643124825 <nl> + 050 , 2 , 4 , 29 , 185 , Missouri , St . Clair County , 9805 , 9805 , 9830 , 9641 , 25 , - 189 , 26 , 92 , 31 , 148 , - 5 , - 56 , 0 , 0 , 31 , - 133 , 31 , - 133 , - 1 , 0 , 207 , 207 , 207 , 9 . 4499512095 , 15 . 202095424 , - 5 . 752144214 , 0 , - 13 . 66134251 , - 13 . 66134251 <nl> + 050 , 2 , 4 , 29 , 186 , Missouri , Ste . Genevieve County , 18145 , 18149 , 18137 , 18124 , - 12 , - 13 , 45 , 176 , 54 , 181 , - 9 , - 5 , 1 , 3 , - 3 , - 9 , - 2 , - 6 , - 1 , - 2 , 277 , 277 , 277 , 9 . 7073991341 , 9 . 9831775185 , - 0 . 275778384 , 0 . 1654670307 , - 0 . 496401092 , - 0 . 330934061 <nl> + 050 , 2 , 4 , 29 , 187 , Missouri , St . Francois County , 65359 , 65364 , 65496 , 65577 , 132 , 81 , 182 , 762 , 189 , 723 , - 7 , 39 , 4 , 6 , 134 , 41 , 138 , 47 , 1 , - 5 , 6652 , 6652 , 6652 , 11 . 627108558 , 11 . 032020325 , 0 . 5950882333 , 0 . 0915520359 , 0 . 6256055786 , 0 . 7171576145 <nl> + 050 , 2 , 4 , 29 , 189 , Missouri , St . Louis County , 998954 , 998954 , 998772 , 998692 , - 182 , - 80 , 2875 , 11411 , 2216 , 9097 , 659 , 2314 , 304 , 1396 , - 1129 , - 3776 , - 825 , - 2380 , - 16 , - 14 , 19454 , 19454 , 19454 , 11 . 425487518 , 9 . 1085496409 , 2 . 3169378772 , 1 . 3977723754 , - 3 . 780794047 , - 2 . 383021671 <nl> + 050 , 2 , 4 , 29 , 195 , Missouri , Saline County , 23370 , 23370 , 23394 , 23280 , 24 , - 114 , 76 , 299 , 65 , 247 , 11 , 52 , 6 , 21 , 7 , - 186 , 13 , - 165 , 0 , - 1 , 1484 , 1484 , 1484 , 12 . 812272357 , 10 . 584051078 , 2 . 2282212795 , 0 . 8998585936 , - 7 . 970176115 , - 7 . 070317522 <nl> + 050 , 2 , 4 , 29 , 197 , Missouri , Schuyler County , 4431 , 4431 , 4441 , 4381 , 10 , - 60 , 16 , 54 , 4 , 44 , 12 , 10 , 0 , 0 , - 2 , - 69 , - 2 , - 69 , 0 , - 1 , 47 , 47 , 47 , 12 . 242121968 , 9 . 9750623441 , 2 . 2670596237 , 0 , - 15 . 6427114 , - 15 . 6427114 <nl> + 050 , 2 , 4 , 29 , 199 , Missouri , Scotland County , 4843 , 4843 , 4839 , 4828 , - 4 , - 11 , 16 , 69 , 5 , 52 , 11 , 17 , 0 , 0 , - 14 , - 27 , - 14 , - 27 , - 1 , - 1 , 76 , 76 , 76 , 14 . 275369815 , 10 . 758249716 , 3 . 5171200993 , 0 , - 5 . 586014275 , - 5 . 586014275 <nl> + 050 , 2 , 4 , 29 , 201 , Missouri , Scott County , 39191 , 39187 , 39218 , 39136 , 31 , - 82 , 130 , 552 , 120 , 428 , 10 , 124 , 1 , 8 , 22 , - 215 , 23 , - 207 , - 2 , 1 , 559 , 559 , 559 , 14 . 089899686 , 10 . 924777293 , 3 . 1651223932 , 0 . 2042014447 , - 5 . 487913827 , - 5 . 283712382 <nl> + 050 , 2 , 4 , 29 , 203 , Missouri , Shannon County , 8441 , 8441 , 8442 , 8432 , 1 , - 10 , 25 , 104 , 7 , 88 , 18 , 16 , 0 , 2 , - 17 , - 27 , - 17 , - 25 , 0 , - 1 , 80 , 80 , 80 , 12 . 326656394 , 10 . 430247718 , 1 . 8964086761 , 0 . 2370510845 , - 3 . 200189641 , - 2 . 963138556 <nl> + 050 , 2 , 4 , 29 , 205 , Missouri , Shelby County , 6373 , 6373 , 6376 , 6280 , 3 , - 96 , 16 , 74 , 8 , 70 , 8 , 4 , 0 , 1 , - 5 , - 101 , - 5 , - 100 , 0 , 0 , 198 , 198 , 198 , 11 . 694058154 , 11 . 061946903 , 0 . 6321112516 , 0 . 1580278129 , - 15 . 9608091 , - 15 . 80278129 <nl> + 050 , 2 , 4 , 29 , 207 , Missouri , Stoddard County , 29968 , 29969 , 30019 , 29807 , 50 , - 212 , 84 , 327 , 94 , 373 , - 10 , - 46 , 0 , 1 , 60 , - 167 , 60 , - 166 , 0 , 0 , 689 , 689 , 689 , 10 . 931701936 , 12 . 469494868 , - 1 . 537792933 , 0 . 0334302811 , - 5 . 582856952 , - 5 . 549426671 <nl> + 050 , 2 , 4 , 29 , 209 , Missouri , Stone County , 32202 , 32202 , 32207 , 32263 , 5 , 56 , 66 , 265 , 89 , 343 , - 23 , - 78 , 0 , 3 , 31 , 134 , 31 , 137 , - 3 , - 3 , 300 , 300 , 300 , 8 . 2208779277 , 10 . 640608035 , - 2 . 419730107 , 0 . 0930665426 , 4 . 1569722351 , 4 . 2500387777 <nl> + 050 , 2 , 4 , 29 , 211 , Missouri , Sullivan County , 6714 , 6714 , 6721 , 6659 , 7 , - 62 , 20 , 96 , 9 , 80 , 11 , 16 , 5 , 18 , - 8 , - 97 , - 3 , - 79 , - 1 , 1 , 108 , 108 , 108 , 14 . 349775785 , 11 . 958146487 , 2 . 3916292975 , 2 . 6905829596 , - 14 . 49925262 , - 11 . 80866966 <nl> + 050 , 2 , 4 , 29 , 213 , Missouri , Taney County , 51675 , 51675 , 51896 , 52736 , 221 , 840 , 149 , 645 , 116 , 450 , 33 , 195 , 11 , 63 , 176 , 579 , 187 , 642 , 1 , 3 , 1744 , 1744 , 1744 , 12 . 32892423 , 8 . 601575044 , 3 . 7273491857 , 1 . 2042205062 , 11 . 06735989 , 12 . 271580396 <nl> + 050 , 2 , 4 , 29 , 215 , Missouri , Texas County , 26008 , 26008 , 26051 , 25936 , 43 , - 115 , 66 , 296 , 70 , 262 , - 4 , 34 , 2 , 2 , 45 , - 148 , 47 , - 146 , 0 , - 3 , 1897 , 1897 , 1897 , 11 . 38746225 , 10 . 079442938 , 1 . 3080193125 , 0 . 0769423125 , - 5 . 693731125 , - 5 . 616788813 <nl> + 050 , 2 , 4 , 29 , 217 , Missouri , Vernon County , 21159 , 21159 , 21125 , 20963 , - 34 , - 162 , 49 , 234 , 57 , 219 , - 8 , 15 , 0 , 0 , - 25 , - 176 , - 25 , - 176 , - 1 , - 1 , 866 , 866 , 866 , 11 . 119559019 , 10 . 406766774 , 0 . 7127922448 , 0 , - 8 . 363429006 , - 8 . 363429006 <nl> + 050 , 2 , 4 , 29 , 219 , Missouri , Warren County , 32513 , 32513 , 32557 , 32515 , 44 , - 42 , 101 , 425 , 74 , 270 , 27 , 155 , 0 , 4 , 18 , - 202 , 18 , - 198 , - 1 , 1 , 317 , 317 , 317 , 13 . 062453897 , 8 . 2985001229 , 4 . 7639537743 , 0 . 1229407426 , - 6 . 208507499 , - 6 . 085566757 <nl> + 050 , 2 , 4 , 29 , 221 , Missouri , Washington County , 25195 , 25194 , 25191 , 25076 , - 3 , - 115 , 72 , 299 , 71 , 254 , 1 , 45 , 0 , 0 , - 4 , - 159 , - 4 , - 159 , 0 , - 1 , 1091 , 1091 , 1091 , 11 . 896472835 , 10 . 10603378 , 1 . 7904390554 , 0 , - 6 . 326217996 , - 6 . 326217996 <nl> + 050 , 2 , 4 , 29 , 223 , Missouri , Wayne County , 13521 , 13522 , 13526 , 13475 , 4 , - 51 , 35 , 145 , 46 , 203 , - 11 , - 58 , 0 , 0 , 16 , 8 , 16 , 8 , - 1 , - 1 , 133 , 133 , 133 , 10 . 74034295 , 15 . 03648013 , - 4 . 29613718 , 0 , 0 . 5925706455 , 0 . 5925706455 <nl> + 050 , 2 , 4 , 29 , 225 , Missouri , Webster County , 36202 , 36202 , 36282 , 36439 , 80 , 157 , 132 , 528 , 101 , 324 , 31 , 204 , 1 , 6 , 48 , - 51 , 49 , - 45 , 0 , - 2 , 879 , 879 , 879 , 14 . 521252458 , 8 . 9107685538 , 5 . 6104839042 , 0 . 1650142325 , - 1 . 402620976 , - 1 . 237606744 <nl> + 050 , 2 , 4 , 29 , 227 , Missouri , Worth County , 2171 , 2171 , 2159 , 2150 , - 12 , - 9 , 5 , 19 , 2 , 25 , 3 , - 6 , 0 , 0 , - 14 , - 3 , - 14 , - 3 , - 1 , 0 , 52 , 52 , 52 , 8 . 8187514505 , 11 . 60362033 , - 2 . 784868879 , 0 , - 1 . 39243444 , - 1 . 39243444 <nl> + 050 , 2 , 4 , 29 , 229 , Missouri , Wright County , 18815 , 18815 , 18856 , 18716 , 41 , - 140 , 57 , 247 , 54 , 216 , 3 , 31 , 5 , 24 , 33 , - 195 , 38 , - 171 , 0 , 0 , 195 , 195 , 195 , 13 . 148089002 , 11 . 497923986 , 1 . 6501650165 , 1 . 2775471095 , - 10 . 38007027 , - 9 . 102523156 <nl> + 050 , 2 , 4 , 29 , 510 , Missouri , St . Louis city , 319294 , 319294 , 319008 , 318069 , - 286 , - 939 , 1179 , 4895 , 742 , 3026 , 437 , 1869 , 246 , 821 , - 973 , - 3638 , - 727 , - 2817 , 4 , 9 , 11978 , 11978 , 11978 , 15 . 367059241 , 9 . 4996366216 , 5 . 8674226192 , 2 . 5773964529 , - 11 . 42091144 , - 8 . 843514991 <nl> + 040 , 4 , 8 , 30 , 000 , Montana , Montana , 989415 , 989415 , 990958 , 998199 , 1543 , 7241 , 2973 , 11911 , 1840 , 8629 , 1133 , 3282 , 128 , 387 , 310 , 3578 , 438 , 3965 , - 28 , - 6 , 28849 , 28849 , 28849 , 11 . 975927491 , 8 . 6760371353 , 3 . 2998903556 , 0 . 3891095575 , 3 . 5975038672 , 3 . 9866134247 <nl> + 050 , 4 , 8 , 30 , 001 , Montana , Beaverhead County , 9246 , 9246 , 9256 , 9198 , 10 , - 58 , 23 , 97 , 12 , 86 , 11 , 11 , 5 , 17 , - 4 , - 88 , 1 , - 71 , - 2 , 2 , 444 , 444 , 444 , 10 . 512625989 , 9 . 3204725263 , 1 . 1921534627 , 1 . 8424189878 , - 9 . 537227701 , - 7 . 694808714 <nl> + 050 , 4 , 8 , 30 , 003 , Montana , Big Horn County , 12865 , 12865 , 12925 , 13093 , 60 , 168 , 69 , 293 , 3 , 89 , 66 , 204 , 0 , 0 , - 5 , - 34 , - 5 , - 34 , - 1 , - 2 , 137 , 137 , 137 , 22 . 522868783 , 6 . 8414174802 , 15 . 681451303 , 0 , - 2 . 613575217 , - 2 . 613575217 <nl> + 050 , 4 , 8 , 30 , 005 , Montana , Blaine County , 6491 , 6491 , 6495 , 6565 , 4 , 70 , 24 , 111 , 3 , 39 , 21 , 72 , 0 , 1 , - 16 , - 2 , - 16 , - 1 , - 1 , - 1 , 220 , 220 , 220 , 16 . 998468606 , 5 . 9724349158 , 11 . 026033691 , 0 . 1531393568 , - 0 . 306278714 , - 0 . 153139357 <nl> + 050 , 4 , 8 , 30 , 007 , Montana , Broadwater County , 5612 , 5612 , 5636 , 5752 , 24 , 116 , 14 , 45 , 5 , 48 , 9 , - 3 , 0 , 0 , 15 , 117 , 15 , 117 , 0 , 2 , 52 , 52 , 52 , 7 . 9030558483 , 8 . 4299262381 , - 0 . 52687039 , 0 , 20 . 547945205 , 20 . 547945205 <nl> + 050 , 4 , 8 , 30 , 009 , Montana , Carbon County , 10078 , 10078 , 10079 , 10028 , 1 , - 51 , 22 , 72 , 8 , 81 , 14 , - 9 , 0 , 4 , - 11 , - 43 , - 11 , - 39 , - 2 , - 3 , 53 , 53 , 53 , 7 . 1616849853 , 8 . 0568956085 , - 0 . 895210623 , 0 . 3978713881 , - 4 . 277117422 , - 3 . 879246034 <nl> + 050 , 4 , 8 , 30 , 011 , Montana , Carter County , 1160 , 1160 , 1158 , 1152 , - 2 , - 6 , 2 , 8 , 2 , 14 , 0 , - 6 , 0 , 0 , - 2 , 1 , - 2 , 1 , 0 , - 1 , 11 , 11 , 11 , 6 . 9264069264 , 12 . 121212121 , - 5 . 194805195 , 0 , 0 . 8658008658 , 0 . 8658008658 <nl> + 050 , 4 , 8 , 30 , 013 , Montana , Cascade County , 81327 , 81327 , 81509 , 81837 , 182 , 328 , 290 , 1154 , 181 , 716 , 109 , 438 , 31 , 29 , 45 , - 133 , 76 , - 104 , - 3 , - 6 , 2562 , 2562 , 2562 , 14 . 129516486 , 8 . 7666670748 , 5 . 3628494117 , 0 . 3550745044 , - 1 . 628445141 , - 1 . 273370637 <nl> + 050 , 4 , 8 , 30 , 015 , Montana , Chouteau County , 5813 , 5813 , 5813 , 5793 , 0 , - 20 , 10 , 39 , 7 , 66 , 3 , - 27 , 0 , 2 , - 3 , 6 , - 3 , 8 , 0 , - 1 , 135 , 135 , 135 , 6 . 7206617267 , 11 . 373427537 , - 4 . 652765811 , 0 . 3446493193 , 1 . 033947958 , 1 . 3785972773 <nl> + 050 , 4 , 8 , 30 , 017 , Montana , Custer County , 11699 , 11699 , 11710 , 11752 , 11 , 42 , 37 , 145 , 33 , 159 , 4 , - 14 , 1 , 2 , 7 , 54 , 8 , 56 , - 1 , 0 , 413 , 413 , 413 , 12 . 360412582 , 13 . 553831728 , - 1 . 193419146 , 0 . 1704884494 , 4 . 603188134 , 4 . 7736765834 <nl> + 050 , 4 , 8 , 30 , 019 , Montana , Daniels County , 1751 , 1751 , 1751 , 1763 , 0 , 12 , 4 , 18 , 2 , 18 , 2 , 0 , 0 , 0 , - 1 , 12 , - 1 , 12 , - 1 , 0 , 41 , 41 , 41 , 10 . 244735344 , 10 . 244735344 , 0 , 0 , 6 . 8298235629 , 6 . 8298235629 <nl> + 050 , 4 , 8 , 30 , 021 , Montana , Dawson County , 8966 , 8966 , 8939 , 8989 , - 27 , 50 , 26 , 109 , 13 , 99 , 13 , 10 , 0 , 0 , - 39 , 40 , - 39 , 40 , - 1 , 0 , 498 , 498 , 498 , 12 . 159750112 , 11 . 044176707 , 1 . 1155734047 , 0 , 4 . 4622936189 , 4 . 4622936189 <nl> + 050 , 4 , 8 , 30 , 023 , Montana , Deer Lodge County , 9298 , 9298 , 9297 , 9299 , - 1 , 2 , 17 , 81 , 31 , 130 , - 14 , - 49 , 0 , 0 , 13 , 51 , 13 , 51 , 0 , 0 , 811 , 811 , 811 , 8 . 7115508712 , 13 . 981501398 , - 5 . 269950527 , 0 , 5 . 4850505485 , 5 . 4850505485 <nl> + 050 , 4 , 8 , 30 , 025 , Montana , Fallon County , 2890 , 2890 , 2893 , 2956 , 3 , 63 , 8 , 45 , 3 , 33 , 5 , 12 , 1 , 2 , - 3 , 49 , - 2 , 51 , 0 , 0 , 34 , 34 , 34 , 15 . 387245683 , 11 . 283980168 , 4 . 1032655155 , 0 . 6838775859 , 16 . 755000855 , 17 . 438878441 <nl> + 050 , 4 , 8 , 30 , 027 , Montana , Fergus County , 11586 , 11586 , 11594 , 11506 , 8 , - 88 , 33 , 114 , 31 , 164 , 2 , - 50 , 0 , 3 , 6 , - 40 , 6 , - 37 , 0 , - 1 , 465 , 465 , 465 , 9 . 8701298701 , 14 . 199134199 , - 4 . 329004329 , 0 . 2597402597 , - 3 . 463203463 , - 3 . 203463203 <nl> + 050 , 4 , 8 , 30 , 029 , Montana , Flathead County , 90928 , 90928 , 90871 , 91301 , - 57 , 430 , 270 , 1085 , 187 , 734 , 83 , 351 , 4 , 14 , - 145 , 74 , - 141 , 88 , 1 , - 9 , 992 , 992 , 992 , 11 . 911819599 , 8 . 0583185122 , 3 . 8535010869 , 0 . 1537008981 , 0 . 8124190326 , 0 . 9661199306 <nl> + 050 , 4 , 8 , 30 , 031 , Montana , Gallatin County , 89513 , 89513 , 89616 , 91377 , 103 , 1761 , 274 , 1083 , 124 , 498 , 150 , 585 , 24 , 84 , - 72 , 1081 , - 48 , 1165 , 1 , 11 , 3260 , 3260 , 3260 , 11 . 967313653 , 5 . 5029752532 , 6 . 4643383998 , 0 . 9282126933 , 11 . 945213351 , 12 . 873426044 <nl> + 050 , 4 , 8 , 30 , 033 , Montana , Garfield County , 1206 , 1206 , 1193 , 1251 , - 13 , 58 , 3 , 10 , 1 , 12 , 2 , - 2 , 0 , 0 , - 16 , 59 , - 16 , 59 , 1 , 1 , 0 , 0 , 0 , 8 . 1833060556 , 9 . 8199672668 , - 1 . 636661211 , 0 , 48 . 281505728 , 48 . 281505728 <nl> + 050 , 4 , 8 , 30 , 035 , Montana , Glacier County , 13399 , 13399 , 13467 , 13624 , 68 , 157 , 61 , 250 , 5 , 99 , 56 , 151 , 2 , 5 , 11 , 2 , 13 , 7 , - 1 , - 1 , 690 , 690 , 690 , 18 . 456313905 , 7 . 3087003064 , 11 . 147613599 , 0 . 3691262781 , 0 . 1476505112 , 0 . 5167767893 <nl> + 050 , 4 , 8 , 30 , 037 , Montana , Golden Valley County , 884 , 884 , 886 , 865 , 2 , - 21 , 2 , 6 , 0 , 7 , 2 , - 1 , 0 , 0 , 1 , - 22 , 1 , - 22 , - 1 , 2 , 89 , 89 , 89 , 6 . 8532267276 , 7 . 9954311822 , - 1 . 142204455 , 0 , - 25 . 128498 , - 25 . 128498 <nl> + 050 , 4 , 8 , 30 , 039 , Montana , Granite County , 3079 , 3079 , 3079 , 3068 , 0 , - 11 , 4 , 18 , 4 , 29 , 0 , - 11 , 0 , 0 , 1 , 1 , 1 , 1 , - 1 , - 1 , 40 , 40 , 40 , 5 . 8565153734 , 9 . 4354969904 , - 3 . 578981617 , 0 , 0 . 3253619652 , 0 . 3253619652 <nl> + 050 , 4 , 8 , 30 , 041 , Montana , Hill County , 16096 , 16096 , 16161 , 16397 , 65 , 236 , 69 , 256 , 32 , 147 , 37 , 109 , 0 , 9 , 27 , 118 , 27 , 127 , 1 , 0 , 593 , 593 , 593 , 15 . 725781682 , 9 . 0300387002 , 6 . 6957429818 , 0 . 5528595123 , 7 . 248602494 , 7 . 8014620063 <nl> + 050 , 4 , 8 , 30 , 043 , Montana , Jefferson County , 11406 , 11406 , 11419 , 11381 , 13 , - 38 , 24 , 106 , 16 , 112 , 8 , - 6 , 1 , 8 , 5 , - 40 , 6 , - 32 , - 1 , 0 , 230 , 230 , 230 , 9 . 298245614 , 9 . 8245614035 , - 0 . 526315789 , 0 . 701754386 , - 3 . 50877193 , - 2 . 807017544 <nl> + 050 , 4 , 8 , 30 , 045 , Montana , Judith Basin County , 2072 , 2072 , 2070 , 2004 , - 2 , - 66 , 4 , 16 , 1 , 16 , 3 , 0 , 0 , 0 , - 5 , - 66 , - 5 , - 66 , 0 , 0 , 0 , 0 , 0 , 7 . 8546882671 , 7 . 8546882671 , 0 , 0 , - 32 . 4005891 , - 32 . 4005891 <nl> + 050 , 4 , 8 , 30 , 047 , Montana , Lake County , 28746 , 28746 , 28775 , 28947 , 29 , 172 , 89 , 363 , 55 , 231 , 34 , 132 , 2 , 9 , - 6 , 33 , - 4 , 42 , - 1 , - 2 , 587 , 587 , 587 , 12 . 577526766 , 8 . 0038806694 , 4 . 5736460968 , 0 . 3118395066 , 1 . 1434115242 , 1 . 4552510308 <nl> + 050 , 4 , 8 , 30 , 049 , Montana , Lewis and Clark County , 63395 , 63395 , 63604 , 64318 , 209 , 714 , 191 , 775 , 133 , 553 , 58 , 222 , 5 , 21 , 145 , 468 , 150 , 489 , 1 , 3 , 1946 , 1946 , 1946 , 12 . 11675865 , 8 . 6458935914 , 3 . 4708650584 , 0 . 3283250731 , 7 . 3169587718 , 7 . 6452838448 <nl> + 050 , 4 , 8 , 30 , 051 , Montana , Liberty County , 2339 , 2339 , 2355 , 2402 , 16 , 47 , 6 , 19 , 2 , 22 , 4 , - 3 , 0 , 0 , 12 , 51 , 12 , 51 , 0 , - 1 , 403 , 403 , 403 , 7 . 9882278747 , 9 . 2495270128 , - 1 . 261299138 , 0 , 21 . 442085348 , 21 . 442085348 <nl> + 050 , 4 , 8 , 30 , 053 , Montana , Lincoln County , 19687 , 19687 , 19668 , 19566 , - 19 , - 102 , 39 , 183 , 66 , 234 , - 27 , - 51 , 0 , 6 , 9 , - 56 , 9 , - 50 , - 1 , - 1 , 209 , 209 , 209 , 9 . 3286435235 , 11 . 928429423 , - 2 . 5997859 , 0 . 3058571647 , - 2 . 854666871 , - 2 . 548809706 <nl> + 050 , 4 , 8 , 30 , 055 , Montana , McCone County , 1734 , 1734 , 1738 , 1711 , 4 , - 27 , 2 , 14 , 3 , 18 , - 1 , - 4 , 0 , 0 , 5 , - 23 , 5 , - 23 , 0 , 0 , 19 , 19 , 19 , 8 . 118295158 , 10 . 43780806 , - 2 . 319512902 , 0 , - 13 . 33719919 , - 13 . 33719919 <nl> + 050 , 4 , 8 , 30 , 057 , Montana , Madison County , 7691 , 7691 , 7698 , 7660 , 7 , - 38 , 14 , 59 , 5 , 59 , 9 , 0 , 0 , 0 , - 1 , - 38 , - 1 , - 38 , - 1 , 0 , 163 , 163 , 163 , 7 . 6832920953 , 7 . 6832920953 , 0 , 0 , - 4 . 948561011 , - 4 . 948561011 <nl> + 050 , 4 , 8 , 30 , 059 , Montana , Meagher County , 1891 , 1891 , 1892 , 1911 , 1 , 19 , 4 , 24 , 2 , 16 , 2 , 8 , 0 , - 2 , - 1 , 14 , - 1 , 12 , 0 , - 1 , 174 , 174 , 174 , 12 . 621614515 , 8 . 4144096766 , 4 . 2072048383 , - 1 . 05180121 , 7 . 362608467 , 6 . 3108072574 <nl> + 050 , 4 , 8 , 30 , 061 , Montana , Mineral County , 4223 , 4223 , 4223 , 4208 , 0 , - 15 , 11 , 45 , 3 , 42 , 8 , 3 , 0 , 0 , - 7 , - 18 , - 7 , - 18 , - 1 , 0 , 22 , 22 , 22 , 10 . 674890286 , 9 . 9632309335 , 0 . 7116593524 , 0 , - 4 . 269956114 , - 4 . 269956114 <nl> + 050 , 4 , 8 , 30 , 063 , Montana , Missoula County , 109299 , 109299 , 109443 , 110138 , 144 , 695 , 298 , 1177 , 192 , 744 , 106 , 433 , 19 , 60 , 20 , 204 , 39 , 264 , - 1 , - 2 , 3634 , 3634 , 3634 , 10 . 720417522 , 6 . 776542597 , 3 . 9438749254 , 0 . 5464953707 , 1 . 8580842605 , 2 . 4045796312 <nl> + 050 , 4 , 8 , 30 , 065 , Montana , Musselshell County , 4538 , 4538 , 4550 , 4701 , 12 , 151 , 13 , 43 , 6 , 61 , 7 , - 18 , 0 , 0 , 6 , 167 , 6 , 167 , - 1 , 2 , 52 , 52 , 52 , 9 . 2962922927 , 13 . 187763485 , - 3 . 891471192 , 0 , 36 . 104204951 , 36 . 104204951 <nl> + 050 , 4 , 8 , 30 , 067 , Montana , Park County , 15636 , 15636 , 15587 , 15469 , - 49 , - 118 , 33 , 151 , 38 , 152 , - 5 , - 1 , 1 , 4 , - 45 , - 122 , - 44 , - 118 , 0 , 1 , 108 , 108 , 108 , 9 . 724368882 , 9 . 7887686759 , - 0 . 064399794 , 0 . 2575991757 , - 7 . 856774858 , - 7 . 599175683 <nl> + 050 , 4 , 8 , 30 , 069 , Montana , Petroleum County , 494 , 494 , 493 , 491 , - 1 , - 2 , 1 , 3 , 0 , 3 , 1 , 0 , 0 , 0 , - 2 , - 2 , - 2 , - 2 , 0 , 0 , 0 , 0 , 0 , 6 . 0975609756 , 6 . 0975609756 , 0 , 0 , - 4 . 06504065 , - 4 . 06504065 <nl> + 050 , 4 , 8 , 30 , 071 , Montana , Phillips County , 4253 , 4253 , 4267 , 4250 , 14 , - 17 , 12 , 43 , 7 , 45 , 5 , - 2 , 0 , 0 , 10 , - 15 , 10 , - 15 , - 1 , 0 , 127 , 127 , 127 , 10 . 097452155 , 10 . 567101092 , - 0 . 469648937 , 0 , - 3 . 522367031 , - 3 . 522367031 <nl> + 050 , 4 , 8 , 30 , 073 , Montana , Pondera County , 6153 , 6153 , 6173 , 6257 , 20 , 84 , 19 , 82 , 7 , 68 , 12 , 14 , 0 , 0 , 9 , 70 , 9 , 70 , - 1 , 0 , 645 , 645 , 645 , 13 . 19388576 , 10 . 941271118 , 2 . 252614642 , 0 , 11 . 26307321 , 11 . 26307321 <nl> + 050 , 4 , 8 , 30 , 075 , Montana , Powder River County , 1743 , 1743 , 1737 , 1738 , - 6 , 1 , 2 , 10 , 2 , 14 , 0 , - 4 , 0 , 0 , - 5 , 5 , - 5 , 5 , - 1 , 0 , 35 , 35 , 35 , 5 . 7553956835 , 8 . 0575539568 , - 2 . 302158273 , 0 , 2 . 8776978417 , 2 . 8776978417 <nl> + 050 , 4 , 8 , 30 , 077 , Montana , Powell County , 7027 , 7027 , 7031 , 7063 , 4 , 32 , 15 , 60 , 8 , 84 , 7 , - 24 , 0 , 0 , - 2 , 55 , - 2 , 55 , - 1 , 1 , 1523 , 1523 , 1523 , 8 . 5142613878 , 11 . 919965943 , - 3 . 405704555 , 0 , 7 . 8047396055 , 7 . 8047396055 <nl> + 050 , 4 , 8 , 30 , 079 , Montana , Prairie County , 1179 , 1179 , 1190 , 1159 , 11 , - 31 , 2 , 14 , 1 , 8 , 1 , 6 , 0 , 0 , 9 , - 37 , 9 , - 37 , 1 , 0 , 21 , 21 , 21 , 11 . 919965943 , 6 . 8114091103 , 5 . 1085568327 , 0 , - 31 . 50276713 , - 31 . 50276713 <nl> + 050 , 4 , 8 , 30 , 081 , Montana , Ravalli County , 40212 , 40212 , 40343 , 40450 , 131 , 107 , 105 , 393 , 101 , 405 , 4 , - 12 , 3 , 11 , 125 , 113 , 128 , 124 , - 1 , - 5 , 478 , 478 , 478 , 9 . 7285655936 , 10 . 025621032 , - 0 . 297055438 , 0 . 2723008181 , 2 . 7972720409 , 3 . 069572859 <nl> + 050 , 4 , 8 , 30 , 083 , Montana , Richland County , 9746 , 9746 , 9753 , 10128 , 7 , 375 , 29 , 122 , 16 , 99 , 13 , 23 , 0 , - 2 , - 6 , 349 , - 6 , 347 , 0 , 5 , 34 , 34 , 34 , 12 . 273024496 , 9 . 9592575826 , 2 . 3137669131 , - 0 . 201197123 , 35 . 108897943 , 34 . 90770082 <nl> + 050 , 4 , 8 , 30 , 085 , Montana , Roosevelt County , 10425 , 10425 , 10458 , 10527 , 33 , 69 , 47 , 212 , 13 , 133 , 34 , 79 , 0 , 1 , - 1 , - 11 , - 1 , - 10 , 0 , 0 , 186 , 186 , 186 , 20 . 204908268 , 12 . 675720753 , 7 . 5291875149 , 0 . 0953061711 , - 1 . 048367882 , - 0 . 953061711 <nl> + 050 , 4 , 8 , 30 , 087 , Montana , Rosebud County , 9233 , 9233 , 9264 , 9379 , 31 , 115 , 45 , 174 , 8 , 72 , 37 , 102 , 1 , 2 , - 7 , 11 , - 6 , 13 , 0 , 0 , 65 , 65 , 65 , 18 . 666523628 , 7 . 7240787427 , 10 . 942444885 , 0 . 2145577429 , 1 . 1800675857 , 1 . 3946253285 <nl> + 050 , 4 , 8 , 30 , 089 , Montana , Sanders County , 11413 , 11413 , 11397 , 11440 , - 16 , 43 , 22 , 97 , 10 , 98 , 12 , - 1 , 1 , 4 , - 29 , 40 , - 28 , 44 , 0 , 0 , 188 , 188 , 188 , 8 . 4949862066 , 8 . 582563384 , - 0 . 087577177 , 0 . 3503087096 , 3 . 5030870955 , 3 . 8533958051 <nl> + 050 , 4 , 8 , 30 , 091 , Montana , Sheridan County , 3384 , 3384 , 3384 , 3460 , 0 , 76 , 6 , 24 , 8 , 57 , - 2 , - 33 , 0 , 0 , 3 , 107 , 3 , 107 , - 1 , 2 , 85 , 85 , 85 , 7 . 0134424313 , 16 . 656925774 , - 9 . 643483343 , 0 , 31 . 268264173 , 31 . 268264173 <nl> + 050 , 4 , 8 , 30 , 093 , Montana , Silver Bow County , 34200 , 34200 , 34233 , 34383 , 33 , 150 , 102 , 398 , 107 , 416 , - 5 , - 18 , 9 , 29 , 30 , 139 , 39 , 168 , - 1 , 0 , 998 , 998 , 998 , 11 . 600792818 , 12 . 12545179 , - 0 . 524658972 , 0 . 8452838988 , 4 . 0515331701 , 4 . 8968170689 <nl> + 050 , 4 , 8 , 30 , 095 , Montana , Stillwater County , 9117 , 9117 , 9110 , 9131 , - 7 , 21 , 24 , 87 , 6 , 75 , 18 , 12 , 0 , 0 , - 23 , 10 , - 23 , 10 , - 2 , - 1 , 112 , 112 , 112 , 9 . 5389507154 , 8 . 2232333754 , 1 . 3157173401 , 0 , 1 . 0964311167 , 1 . 0964311167 <nl> + 050 , 4 , 8 , 30 , 097 , Montana , Sweet Grass County , 3651 , 3651 , 3623 , 3623 , - 28 , 0 , 6 , 27 , 4 , 35 , 2 , - 8 , 1 , 7 , - 31 , 2 , - 30 , 9 , 0 , - 1 , 45 , 45 , 45 , 7 . 4523875242 , 9 . 6605023461 , - 2 . 208114822 , 1 . 9321004692 , 0 . 5520287055 , 2 . 4841291747 <nl> + 050 , 4 , 8 , 30 , 099 , Montana , Teton County , 6073 , 6073 , 6088 , 6091 , 15 , 3 , 17 , 59 , 7 , 64 , 10 , - 5 , 0 , 0 , 6 , 8 , 6 , 8 , - 1 , 0 , 462 , 462 , 462 , 9 . 688808605 , 10 . 50989408 , - 0 . 821085475 , 0 , 1 . 31373676 , 1 . 31373676 <nl> + 050 , 4 , 8 , 30 , 101 , Montana , Toole County , 5324 , 5324 , 5346 , 5239 , 22 , - 107 , 16 , 55 , 6 , 46 , 10 , 9 , 0 , 1 , 12 , - 118 , 12 , - 117 , 0 , 1 , 766 , 766 , 766 , 10 . 392064242 , 8 . 6915446386 , 1 . 7005196032 , 0 . 1889466226 , - 22 . 29570146 , - 22 . 10675484 <nl> + 050 , 4 , 8 , 30 , 103 , Montana , Treasure County , 718 , 718 , 721 , 727 , 3 , 6 , 2 , 8 , 0 , 2 , 2 , 6 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 11 . 049723757 , 2 . 7624309392 , 8 . 2872928177 , 0 , 0 , 0 <nl> + 050 , 4 , 8 , 30 , 105 , Montana , Valley County , 7369 , 7369 , 7376 , 7487 , 7 , 111 , 17 , 65 , 8 , 59 , 9 , 6 , 0 , 2 , - 1 , 102 , - 1 , 104 , - 1 , 1 , 126 , 126 , 126 , 8 . 7465518401 , 7 . 9391778241 , 0 . 807374016 , 0 . 269124672 , 13 . 725358272 , 13 . 994482944 <nl> + 050 , 4 , 8 , 30 , 107 , Montana , Wheatland County , 2168 , 2168 , 2162 , 2140 , - 6 , - 22 , 4 , 27 , 1 , 20 , 3 , 7 , 0 , 0 , - 9 , - 29 , - 9 , - 29 , 0 , 0 , 147 , 147 , 147 , 12 . 552301255 , 9 . 2980009298 , 3 . 2543003254 , 0 , - 13 . 48210135 , - 13 . 48210135 <nl> + 050 , 4 , 8 , 30 , 109 , Montana , Wibaux County , 1017 , 1017 , 1009 , 985 , - 8 , - 24 , 2 , 8 , 2 , 15 , 0 , - 7 , 0 , 0 , - 8 , - 18 , - 8 , - 18 , 0 , 1 , 24 , 24 , 24 , 8 . 0240722166 , 15 . 045135406 , - 7 . 02106319 , 0 , - 18 . 05416249 , - 18 . 05416249 <nl> + 050 , 4 , 8 , 30 , 111 , Montana , Yellowstone County , 147972 , 147972 , 148450 , 150069 , 478 , 1619 , 488 , 1929 , 309 , 1283 , 179 , 646 , 17 , 54 , 283 , 920 , 300 , 974 , - 1 , - 1 , 3695 , 3695 , 3695 , 12 . 923800495 , 8 . 5957677736 , 4 . 3280327215 , 0 . 361786017 , 6 . 1637617706 , 6 . 5255477876 <nl> + 040 , 2 , 4 , 31 , 000 , Nebraska , Nebraska , 1826341 , 1826341 , 1830141 , 1842641 , 3800 , 12500 , 6316 , 25991 , 3362 , 14878 , 2954 , 11113 , 768 , 2508 , 123 , - 1100 , 891 , 1408 , - 45 , - 21 , 51165 , 51165 , 51165 , 14 . 153303953 , 8 . 1017604639 , 6 . 0515434894 , 1 . 3657222236 , - 0 . 599000975 , 0 . 7667212484 <nl> + 050 , 2 , 4 , 31 , 001 , Nebraska , Adams County , 31364 , 31364 , 31356 , 31216 , - 8 , - 140 , 96 , 417 , 80 , 322 , 16 , 95 , 11 , 39 , - 34 , - 277 , - 23 , - 238 , - 1 , 3 , 1554 , 1554 , 1554 , 13 . 3286454 , 10 . 292143451 , 3 . 0365019498 , 1 . 2465639583 , - 8 . 853800422 , - 7 . 607236464 <nl> + 050 , 2 , 4 , 31 , 003 , Nebraska , Antelope County , 6685 , 6685 , 6658 , 6619 , - 27 , - 39 , 18 , 86 , 6 , 67 , 12 , 19 , 0 , 0 , - 38 , - 58 , - 38 , - 58 , - 1 , 0 , 70 , 70 , 70 , 12 . 95473375 , 10 . 09264141 , 2 . 8620923401 , 0 , - 8 . 736913459 , - 8 . 736913459 <nl> + 050 , 2 , 4 , 31 , 005 , Nebraska , Arthur County , 460 , 460 , 465 , 469 , 5 , 4 , 2 , 10 , 1 , 2 , 1 , 8 , 0 , 0 , 4 , - 4 , 4 , - 4 , 0 , 0 , 0 , 0 , 0 , 21 . 413276231 , 4 . 2826552463 , 17 . 130620985 , 0 , - 8 . 565310493 , - 8 . 565310493 <nl> + 050 , 2 , 4 , 31 , 007 , Nebraska , Banner County , 690 , 690 , 696 , 684 , 6 , - 12 , 1 , 7 , 0 , 0 , 1 , 7 , 0 , 0 , 5 , - 19 , 5 , - 19 , 0 , 0 , 0 , 0 , 0 , 10 . 144927536 , 0 , 10 . 144927536 , 0 , - 27 . 53623188 , - 27 . 53623188 <nl> + 050 , 2 , 4 , 31 , 009 , Nebraska , Blaine County , 478 , 478 , 479 , 473 , 1 , - 6 , 2 , 6 , 0 , 2 , 2 , 4 , 0 , 0 , - 1 , - 10 , - 1 , - 10 , 0 , 0 , 0 , 0 , 0 , 12 . 605042017 , 4 . 2016806723 , 8 . 4033613445 , 0 , - 21 . 00840336 , - 21 . 00840336 <nl> + 050 , 2 , 4 , 31 , 011 , Nebraska , Boone County , 5505 , 5505 , 5503 , 5412 , - 2 , - 91 , 16 , 63 , 10 , 73 , 6 , - 10 , 0 , 0 , - 8 , - 82 , - 8 , - 82 , 0 , 1 , 95 , 95 , 95 , 11 . 543747137 , 13 . 376087952 , - 1 . 832340815 , 0 , - 15 . 02519469 , - 15 . 02519469 <nl> + 050 , 2 , 4 , 31 , 013 , Nebraska , Box Butte County , 11308 , 11308 , 11292 , 11383 , - 16 , 91 , 36 , 146 , 17 , 114 , 19 , 32 , 1 , 3 , - 37 , 57 , - 36 , 60 , 1 , - 1 , 186 , 186 , 186 , 12 . 877618523 , 10 . 055126792 , 2 . 822491731 , 0 . 2646085998 , 5 . 0275633958 , 5 . 2921719956 <nl> + 050 , 2 , 4 , 31 , 015 , Nebraska , Boyd County , 2099 , 2099 , 2105 , 2082 , 6 , - 23 , 4 , 18 , 3 , 25 , 1 , - 7 , 0 , 0 , 5 , - 16 , 5 , - 16 , 0 , 0 , 27 , 27 , 27 , 8 . 5980415572 , 11 . 941724385 , - 3 . 343682828 , 0 , - 7 . 642703606 , - 7 . 642703606 <nl> + 050 , 2 , 4 , 31 , 017 , Nebraska , Brown County , 3145 , 3145 , 3157 , 3117 , 12 , - 40 , 8 , 32 , 5 , 43 , 3 , - 11 , 0 , 0 , 9 , - 30 , 9 , - 30 , 0 , 1 , 40 , 40 , 40 , 10 . 200828817 , 13 . 707363723 , - 3 . 506534906 , 0 , - 9 . 563277016 , - 9 . 563277016 <nl> + 050 , 2 , 4 , 31 , 019 , Nebraska , Buffalo County , 46102 , 46102 , 46146 , 46690 , 44 , 544 , 161 , 654 , 91 , 351 , 70 , 303 , 9 , 50 , - 34 , 190 , - 25 , 240 , - 1 , 1 , 2225 , 2225 , 2225 , 14 . 089361885 , 7 . 5617217459 , 6 . 5276401396 , 1 . 0771683399 , 4 . 0932396915 , 5 . 1704080314 <nl> + 050 , 2 , 4 , 31 , 021 , Nebraska , Burt County , 6858 , 6858 , 6851 , 6802 , - 7 , - 49 , 15 , 70 , 12 , 108 , 3 , - 38 , 0 , 0 , - 9 , - 10 , - 9 , - 10 , - 1 , - 1 , 122 , 122 , 122 , 10 . 254156596 , 15 . 820698748 , - 5 . 566542152 , 0 , - 1 . 464879514 , - 1 . 464879514 <nl> + 050 , 2 , 4 , 31 , 023 , Nebraska , Butler County , 8395 , 8395 , 8397 , 8287 , 2 , - 110 , 19 , 90 , 16 , 95 , 3 , - 5 , 0 , 2 , - 1 , - 108 , - 1 , - 106 , 0 , 1 , 173 , 173 , 173 , 10 . 788779669 , 11 . 388156317 , - 0 . 599376648 , 0 . 2397506593 , - 12 . 9465356 , - 12 . 70678494 <nl> + 050 , 2 , 4 , 31 , 025 , Nebraska , Cass County , 25241 , 25241 , 25264 , 25188 , 23 , - 76 , 72 , 280 , 68 , 241 , 4 , 39 , 2 , 3 , 19 , - 118 , 21 , - 115 , - 2 , 0 , 297 , 297 , 297 , 11 . 099659082 , 9 . 5536351383 , 1 . 5460239436 , 0 . 1189249187 , - 4 . 67771347 , - 4 . 558788551 <nl> + 050 , 2 , 4 , 31 , 027 , Nebraska , Cedar County , 8852 , 8852 , 8829 , 8730 , - 23 , - 99 , 29 , 106 , 24 , 109 , 5 , - 3 , 0 , 0 , - 27 , - 96 , - 27 , - 96 , - 1 , 0 , 144 , 144 , 144 , 12 . 0735805 , 12 . 415285609 , - 0 . 341705108 , 0 , - 10 . 93456347 , - 10 . 93456347 <nl> + 050 , 2 , 4 , 31 , 029 , Nebraska , Chase County , 3966 , 3966 , 3975 , 4011 , 9 , 36 , 11 , 51 , 8 , 62 , 3 , - 11 , 0 , 3 , 6 , 43 , 6 , 46 , 0 , 1 , 66 , 66 , 66 , 12 . 772351615 , 15 . 527172552 , - 2 . 754820937 , 0 . 7513148009 , 10 . 76884548 , 11 . 52016028 <nl> + 050 , 2 , 4 , 31 , 031 , Nebraska , Cherry County , 5713 , 5713 , 5720 , 5761 , 7 , 41 , 14 , 59 , 6 , 60 , 8 , - 1 , 0 , 0 , 0 , 42 , 0 , 42 , - 1 , 0 , 57 , 57 , 57 , 10 . 277850361 , 10 . 452051215 , - 0 . 174200854 , 0 , 7 . 3164358505 , 7 . 3164358505 <nl> + 050 , 2 , 4 , 31 , 033 , Nebraska , Cheyenne County , 9998 , 9998 , 9982 , 9978 , - 16 , - 4 , 29 , 120 , 12 , 79 , 17 , 41 , 3 , 17 , - 36 , - 61 , - 33 , - 44 , 0 , - 1 , 102 , 102 , 102 , 12 . 024048096 , 7 . 9158316633 , 4 . 1082164329 , 1 . 7034068136 , - 6 . 112224449 , - 4 . 408817635 <nl> + 050 , 2 , 4 , 31 , 035 , Nebraska , Clay County , 6542 , 6542 , 6546 , 6486 , 4 , - 60 , 14 , 69 , 11 , 87 , 3 , - 18 , 0 , 4 , 1 , - 47 , 1 , - 43 , 0 , 1 , 96 , 96 , 96 , 10 . 5893186 , 13 . 35174954 , - 2 . 762430939 , 0 . 6138735421 , - 7 . 213014119 , - 6 . 599140577 <nl> + 050 , 2 , 4 , 31 , 037 , Nebraska , Colfax County , 10515 , 10515 , 10542 , 10614 , 27 , 72 , 43 , 203 , 8 , 82 , 35 , 121 , 9 , 39 , - 15 , - 88 , - 6 , - 49 , - 2 , 0 , 108 , 108 , 108 , 19 . 190773303 , 7 . 7519379845 , 11 . 438835319 , 3 . 6868973341 , - 8 . 319152959 , - 4 . 632255625 <nl> + 050 , 2 , 4 , 31 , 039 , Nebraska , Cuming County , 9139 , 9139 , 9156 , 9181 , 17 , 25 , 27 , 105 , 16 , 94 , 11 , 11 , 6 , 25 , 1 , - 11 , 7 , 14 , - 1 , 0 , 130 , 130 , 130 , 11 . 452255004 , 10 . 252494956 , 1 . 199760048 , 2 . 7267273818 , - 1 . 199760048 , 1 . 5269673338 <nl> + 050 , 2 , 4 , 31 , 041 , Nebraska , Custer County , 10939 , 10939 , 10903 , 10903 , - 36 , 0 , 25 , 102 , 37 , 151 , - 12 , - 49 , 0 , 1 , - 24 , 48 , - 24 , 49 , 0 , 0 , 128 , 128 , 128 , 9 . 355223333 , 13 . 849399248 , - 4 . 494175915 , 0 . 0917178758 , 4 . 4024580391 , 4 . 4941759149 <nl> + 050 , 2 , 4 , 31 , 043 , Nebraska , Dakota County , 21006 , 21006 , 21049 , 20913 , 43 , - 136 , 96 , 393 , 29 , 133 , 67 , 260 , 21 , 72 , - 45 , - 473 , - 24 , - 401 , 0 , 5 , 249 , 249 , 249 , 18 . 73123302 , 6 . 3390686812 , 12 . 392164339 , 3 . 4316762785 , - 22 . 54420666 , - 19 . 11253038 <nl> + 050 , 2 , 4 , 31 , 045 , Nebraska , Dawes County , 9182 , 9182 , 9173 , 9196 , - 9 , 23 , 25 , 103 , 15 , 95 , 10 , 8 , 0 , - 1 , - 19 , 16 , - 19 , 15 , 0 , 0 , 1132 , 1132 , 1132 , 11 . 214546246 , 10 . 343513528 , 0 . 8710327182 , - 0 . 10887909 , 1 . 7420654363 , 1 . 6331863466 <nl> + 050 , 2 , 4 , 31 , 047 , Nebraska , Dawson County , 24326 , 24326 , 24365 , 24388 , 39 , 23 , 94 , 401 , 50 , 208 , 44 , 193 , 24 , 67 , - 30 , - 239 , - 6 , - 172 , 1 , 2 , 299 , 299 , 299 , 16 . 450269727 , 8 . 5328082374 , 7 . 9174614895 , 2 . 7485488073 , - 9 . 80452485 , - 7 . 055976042 <nl> + 050 , 2 , 4 , 31 , 049 , Nebraska , Deuel County , 1941 , 1941 , 1941 , 1984 , 0 , 43 , 2 , 12 , 4 , 23 , - 2 , - 11 , 0 , 0 , 1 , 55 , 1 , 55 , 1 , - 1 , 22 , 22 , 22 , 6 . 1146496815 , 11 . 719745223 , - 5 . 605095541 , 0 , 28 . 025477707 , 28 . 025477707 <nl> + 050 , 2 , 4 , 31 , 051 , Nebraska , Dixon County , 6000 , 6000 , 5979 , 5989 , - 21 , 10 , 17 , 72 , 10 , 70 , 7 , 2 , 0 , 1 , - 28 , 8 , - 28 , 9 , 0 , - 1 , 81 , 81 , 81 , 12 . 032085561 , 11 . 697860963 , 0 . 3342245989 , 0 . 1671122995 , 1 . 3368983957 , 1 . 5040106952 <nl> + 050 , 2 , 4 , 31 , 053 , Nebraska , Dodge County , 36691 , 36691 , 36685 , 36773 , - 6 , 88 , 121 , 491 , 108 , 404 , 13 , 87 , 5 , 27 , - 23 , - 23 , - 18 , 4 , - 1 , - 3 , 1003 , 1003 , 1003 , 13 . 36818318 , 10 . 999482698 , 2 . 3687004819 , 0 . 7351139427 , - 0 . 626208173 , 0 . 1089057693 <nl> + 050 , 2 , 4 , 31 , 055 , Nebraska , Douglas County , 517110 , 517110 , 518643 , 524861 , 1533 , 6218 , 2014 , 8277 , 873 , 3454 , 1141 , 4823 , 332 , 1175 , 66 , 244 , 398 , 1419 , - 6 , - 24 , 12188 , 12188 , 12188 , 15 . 863858691 , 6 . 6200033733 , 9 . 2438553182 , 2 . 2520277833 , 0 . 4676551312 , 2 . 7196829145 <nl> + 050 , 2 , 4 , 31 , 057 , Nebraska , Dundy County , 2008 , 2008 , 2007 , 1976 , - 1 , - 31 , 3 , 20 , 8 , 38 , - 5 , - 18 , 0 , 0 , 4 , - 12 , 4 , - 12 , 0 , - 1 , 41 , 41 , 41 , 10 . 042681396 , 19 . 081094652 , - 9 . 038413256 , 0 , - 6 . 025608838 , - 6 . 025608838 <nl> + 050 , 2 , 4 , 31 , 059 , Nebraska , Fillmore County , 5890 , 5890 , 5888 , 5866 , - 2 , - 22 , 15 , 56 , 10 , 81 , 5 , - 25 , 0 , 0 , - 6 , 4 , - 6 , 4 , - 1 , - 1 , 222 , 222 , 222 , 9 . 5286710907 , 13 . 782542113 , - 4 . 253871023 , 0 , 0 . 6806193636 , 0 . 6806193636 <nl> + 050 , 2 , 4 , 31 , 061 , Nebraska , Franklin County , 3225 , 3225 , 3239 , 3207 , 14 , - 32 , 7 , 29 , 5 , 38 , 2 , - 9 , 0 , 0 , 12 , - 23 , 12 , - 23 , 0 , 0 , 59 , 59 , 59 , 8 . 9978281105 , 11 . 790257524 , - 2 . 792429414 , 0 , - 7 . 136208501 , - 7 . 136208501 <nl> + 050 , 2 , 4 , 31 , 063 , Nebraska , Frontier County , 2756 , 2756 , 2753 , 2723 , - 3 , - 30 , 6 , 24 , 3 , 13 , 3 , 11 , 0 , 1 , - 6 , - 43 , - 6 , - 42 , 0 , 1 , 113 , 113 , 113 , 8 . 765522279 , 4 . 7479912345 , 4 . 0175310446 , 0 . 365230095 , - 15 . 70489408 , - 15 . 33966399 <nl> + 050 , 2 , 4 , 31 , 065 , Nebraska , Furnas County , 4959 , 4959 , 4957 , 4943 , - 2 , - 14 , 10 , 43 , 12 , 73 , - 2 , - 30 , 0 , 0 , 0 , 17 , 0 , 17 , 0 , - 1 , 81 , 81 , 81 , 8 . 6868686869 , 14 . 747474747 , - 6 . 060606061 , 0 , 3 . 4343434343 , 3 . 4343434343 <nl> + 050 , 2 , 4 , 31 , 067 , Nebraska , Gage County , 22311 , 22311 , 22301 , 22031 , - 10 , - 270 , 56 , 244 , 72 , 290 , - 16 , - 46 , 1 , 8 , 7 , - 235 , 8 , - 227 , - 2 , 3 , 523 , 523 , 523 , 11 . 00784986 , 13 . 083100244 , - 2 . 075250383 , 0 . 3609131102 , - 10 . 60182261 , - 10 . 2409095 <nl> + 050 , 2 , 4 , 31 , 069 , Nebraska , Garden County , 2057 , 2057 , 2072 , 2069 , 15 , - 3 , 2 , 18 , 2 , 31 , 0 , - 13 , 0 , 0 , 14 , 11 , 14 , 11 , 1 , - 1 , 36 , 36 , 36 , 8 . 6935522821 , 14 . 97222893 , - 6 . 278676648 , 0 , 5 . 3127263946 , 5 . 3127263946 <nl> + 050 , 2 , 4 , 31 , 071 , Nebraska , Garfield County , 2049 , 2049 , 2046 , 2032 , - 3 , - 14 , 2 , 12 , 4 , 19 , - 2 , - 7 , 1 , 2 , - 2 , - 9 , - 1 , - 7 , 0 , 0 , 30 , 30 , 30 , 5 . 8852378617 , 9 . 318293281 , - 3 . 433055419 , 0 . 9808729769 , - 4 . 413928396 , - 3 . 433055419 <nl> + 050 , 2 , 4 , 31 , 073 , Nebraska , Gosper County , 2044 , 2044 , 2050 , 2010 , 6 , - 40 , 4 , 19 , 2 , 21 , 2 , - 2 , 0 , 1 , 4 , - 40 , 4 , - 39 , 0 , 1 , 40 , 40 , 40 , 9 . 3596059113 , 10 . 344827586 , - 0 . 985221675 , 0 . 4926108374 , - 19 . 7044335 , - 19 . 21182266 <nl> + 050 , 2 , 4 , 31 , 075 , Nebraska , Grant County , 614 , 614 , 612 , 630 , - 2 , 18 , 2 , 8 , 1 , 4 , 1 , 4 , 0 , 0 , - 3 , 13 , - 3 , 13 , 0 , 1 , 3 , 3 , 3 , 12 . 882447665 , 6 . 4412238325 , 6 . 4412238325 , 0 , 20 . 933977456 , 20 . 933977456 <nl> + 050 , 2 , 4 , 31 , 077 , Nebraska , Greeley County , 2538 , 2538 , 2543 , 2519 , 5 , - 24 , 6 , 32 , 3 , 39 , 3 , - 7 , 0 , 0 , 3 , - 17 , 3 , - 17 , - 1 , 0 , 53 , 53 , 53 , 12 . 643224022 , 15 . 408929277 , - 2 . 765705255 , 0 , - 6 . 716712762 , - 6 . 716712762 <nl> + 050 , 2 , 4 , 31 , 079 , Nebraska , Hall County , 58607 , 58607 , 58771 , 59477 , 164 , 706 , 227 , 949 , 137 , 525 , 90 , 424 , 48 , 165 , 29 , 120 , 77 , 285 , - 3 , - 3 , 1118 , 1118 , 1118 , 16 . 051011434 , 8 . 8796427847 , 7 . 1713686489 , 2 . 7907448752 , 2 . 0296326365 , 4 . 8203775117 <nl> + 050 , 2 , 4 , 31 , 081 , Nebraska , Hamilton County , 9124 , 9124 , 9132 , 9069 , 8 , - 63 , 23 , 94 , 9 , 94 , 14 , 0 , 0 , 0 , - 5 , - 63 , - 5 , - 63 , - 1 , 0 , 124 , 124 , 124 , 10 . 329102797 , 10 . 329102797 , 0 , 0 , - 6 . 922696555 , - 6 . 922696555 <nl> + 050 , 2 , 4 , 31 , 083 , Nebraska , Harlan County , 3423 , 3423 , 3427 , 3417 , 4 , - 10 , 10 , 34 , 6 , 46 , 4 , - 12 , 0 , 0 , 1 , 2 , 1 , 2 , - 1 , 0 , 47 , 47 , 47 , 9 . 935710111 , 13 . 442431327 , - 3 . 506721216 , 0 , 0 . 5844535359 , 0 . 5844535359 <nl> + 050 , 2 , 4 , 31 , 085 , Nebraska , Hayes County , 967 , 967 , 960 , 960 , - 7 , 0 , 2 , 9 , 0 , 2 , 2 , 7 , 0 , 0 , - 9 , - 7 , - 9 , - 7 , 0 , 0 , 0 , 0 , 0 , 9 . 375 , 2 . 0833333333 , 7 . 2916666667 , 0 , - 7 . 291666667 , - 7 . 291666667 <nl> + 050 , 2 , 4 , 31 , 087 , Nebraska , Hitchcock County , 2908 , 2908 , 2903 , 2857 , - 5 , - 46 , 8 , 34 , 4 , 45 , 4 , - 11 , 0 , 1 , - 9 , - 35 , - 9 , - 34 , 0 , - 1 , 26 , 26 , 26 , 11 . 805555556 , 15 . 625 , - 3 . 819444444 , 0 . 3472222222 , - 12 . 15277778 , - 11 . 80555556 <nl> + 050 , 2 , 4 , 31 , 089 , Nebraska , Holt County , 10435 , 10435 , 10439 , 10399 , 4 , - 40 , 31 , 127 , 24 , 137 , 7 , - 10 , 0 , 2 , - 2 , - 31 , - 2 , - 29 , - 1 , - 1 , 160 , 160 , 160 , 12 . 189269604 , 13 . 149054612 , - 0 . 959785008 , 0 . 1919570016 , - 2 . 975333525 , - 2 . 783376524 <nl> + 050 , 2 , 4 , 31 , 091 , Nebraska , Hooker County , 736 , 736 , 734 , 729 , - 2 , - 5 , 1 , 8 , 2 , 8 , - 1 , 0 , 0 , 0 , 0 , - 5 , 0 , - 5 , - 1 , 0 , 26 , 26 , 26 , 10 . 936431989 , 10 . 936431989 , 0 , 0 , - 6 . 835269993 , - 6 . 835269993 <nl> + 050 , 2 , 4 , 31 , 093 , Nebraska , Howard County , 6274 , 6274 , 6266 , 6342 , - 8 , 76 , 15 , 74 , 9 , 61 , 6 , 13 , 0 , 1 , - 15 , 62 , - 15 , 63 , 1 , 0 , 35 , 35 , 35 , 11 . 73857868 , 9 . 6763959391 , 2 . 0621827411 , 0 . 1586294416 , 9 . 8350253807 , 9 . 9936548223 <nl> + 050 , 2 , 4 , 31 , 095 , Nebraska , Jefferson County , 7547 , 7547 , 7526 , 7519 , - 21 , - 7 , 18 , 67 , 12 , 100 , 6 , - 33 , 0 , 0 , - 26 , 26 , - 26 , 26 , - 1 , 0 , 105 , 105 , 105 , 8 . 9066134929 , 13 . 293452974 , - 4 . 386839482 , 0 , 3 . 4562977733 , 3 . 4562977733 <nl> + 050 , 2 , 4 , 31 , 097 , Nebraska , Johnson County , 5217 , 5217 , 5225 , 5211 , 8 , - 14 , 12 , 48 , 11 , 63 , 1 , - 15 , 1 , 9 , 5 , - 6 , 6 , 3 , 1 , - 2 , 955 , 955 , 955 , 9 . 1989267919 , 12 . 073591414 , - 2 . 874664622 , 1 . 7247987735 , - 1 . 149865849 , 0 . 5749329245 <nl> + 050 , 2 , 4 , 31 , 099 , Nebraska , Kearney County , 6489 , 6489 , 6497 , 6588 , 8 , 91 , 20 , 74 , 8 , 69 , 12 , 5 , 0 , 8 , - 3 , 78 , - 3 , 86 , - 1 , 0 , 84 , 84 , 84 , 11 . 310661062 , 10 . 546427207 , 0 . 7642338556 , 1 . 2227741689 , 11 . 922048147 , 13 . 144822316 <nl> + 050 , 2 , 4 , 31 , 101 , Nebraska , Keith County , 8368 , 8368 , 8374 , 8301 , 6 , - 73 , 17 , 77 , 14 , 83 , 3 , - 6 , 0 , 0 , 4 , - 68 , 4 , - 68 , - 1 , 1 , 55 , 55 , 55 , 9 . 2353823088 , 9 . 9550224888 , - 0 . 71964018 , 0 , - 8 . 155922039 , - 8 . 155922039 <nl> + 050 , 2 , 4 , 31 , 103 , Nebraska , Keya Paha County , 824 , 824 , 824 , 813 , 0 , - 11 , 1 , 7 , 0 , 8 , 1 , - 1 , 0 , 2 , - 1 , - 12 , - 1 , - 10 , 0 , 0 , 0 , 0 , 0 , 8 . 5522296885 , 9 . 7739767868 , - 1 . 221747098 , 2 . 4434941967 , - 14 . 66096518 , - 12 . 21747098 <nl> + 050 , 2 , 4 , 31 , 105 , Nebraska , Kimball County , 3821 , 3821 , 3824 , 3775 , 3 , - 49 , 11 , 39 , 6 , 45 , 5 , - 6 , 0 , 0 , - 1 , - 44 , - 1 , - 44 , - 1 , 1 , 48 , 48 , 48 , 10 . 264508488 , 11 . 84366364 , - 1 . 579155152 , 0 , - 11 . 58047111 , - 11 . 58047111 <nl> + 050 , 2 , 4 , 31 , 107 , Nebraska , Knox County , 8701 , 8701 , 8688 , 8575 , - 13 , - 113 , 18 , 85 , 26 , 119 , - 8 , - 34 , 0 , 0 , - 3 , - 79 , - 3 , - 79 , - 2 , 0 , 234 , 234 , 234 , 9 . 8476510456 , 13 . 786711464 , - 3 . 939060418 , 0 , - 9 . 152522736 , - 9 . 152522736 <nl> + 050 , 2 , 4 , 31 , 109 , Nebraska , Lancaster County , 285407 , 285407 , 286142 , 289800 , 735 , 3658 , 1032 , 4079 , 455 , 1785 , 577 , 2294 , 156 , 435 , 8 , 937 , 164 , 1372 , - 6 , - 8 , 13816 , 13816 , 13816 , 14 . 164620743 , 6 . 1985408253 , 7 . 9660799178 , 1 . 5105687726 , 3 . 2537998618 , 4 . 7643686343 <nl> + 050 , 2 , 4 , 31 , 111 , Nebraska , Lincoln County , 36288 , 36288 , 36261 , 36142 , - 27 , - 119 , 104 , 464 , 90 , 353 , 14 , 111 , 4 , 19 , - 45 , - 251 , - 41 , - 232 , 0 , 2 , 642 , 642 , 642 , 12 . 817148461 , 9 . 7509771695 , 3 . 0661712912 , 0 . 5248401309 , - 6 . 933414361 , - 6 . 40857423 <nl> + 050 , 2 , 4 , 31 , 113 , Nebraska , Logan County , 763 , 763 , 767 , 762 , 4 , - 5 , 0 , 4 , 1 , 12 , - 1 , - 8 , 0 , 0 , 5 , 3 , 5 , 3 , 0 , 0 , 0 , 0 , 0 , 5 . 232177894 , 15 . 696533682 , - 10 . 46435579 , 0 , 3 . 9241334205 , 3 . 9241334205 <nl> + 050 , 2 , 4 , 31 , 115 , Nebraska , Loup County , 632 , 632 , 632 , 610 , 0 , - 22 , 1 , 4 , 2 , 6 , - 1 , - 2 , 0 , 0 , 1 , - 20 , 1 , - 20 , 0 , 0 , 0 , 0 , 0 , 6 . 4412238325 , 9 . 6618357488 , - 3 . 220611916 , 0 , - 32 . 20611916 , - 32 . 20611916 <nl> + 050 , 2 , 4 , 31 , 117 , Nebraska , McPherson County , 539 , 539 , 540 , 552 , 1 , 12 , 1 , 5 , 0 , 1 , 1 , 4 , 0 , 0 , 0 , 8 , 0 , 8 , 0 , 0 , 0 , 0 , 0 , 9 . 1575091575 , 1 . 8315018315 , 7 . 326007326 , 0 , 14 . 652014652 , 14 . 652014652 <nl> + 050 , 2 , 4 , 31 , 119 , Nebraska , Madison County , 34876 , 34876 , 34935 , 34931 , 59 , - 4 , 136 , 510 , 104 , 373 , 32 , 137 , 18 , 58 , 11 , - 201 , 29 , - 143 , - 2 , 2 , 1071 , 1071 , 1071 , 14 . 599375948 , 10 . 677582801 , 3 . 9217931469 , 1 . 6603211863 , - 5 . 753871697 , - 4 . 093550511 <nl> + 050 , 2 , 4 , 31 , 121 , Nebraska , Merrick County , 7845 , 7845 , 7850 , 7732 , 5 , - 118 , 18 , 83 , 15 , 88 , 3 , - 5 , 0 , 0 , 3 , - 114 , 3 , - 114 , - 1 , 1 , 197 , 197 , 197 , 10 . 653317931 , 11 . 295084071 , - 0 . 64176614 , 0 , - 14 . 632268 , - 14 . 632268 <nl> + 050 , 2 , 4 , 31 , 123 , Nebraska , Morrill County , 5042 , 5042 , 5044 , 4998 , 2 , - 46 , 14 , 57 , 5 , 44 , 9 , 13 , 0 , 1 , - 7 , - 59 , - 7 , - 58 , 0 , - 1 , 82 , 82 , 82 , 11 . 352320255 , 8 . 7631945828 , 2 . 5891256722 , 0 . 1991635132 , - 11 . 75064728 , - 11 . 55148377 <nl> + 050 , 2 , 4 , 31 , 125 , Nebraska , Nance County , 3735 , 3735 , 3732 , 3740 , - 3 , 8 , 9 , 44 , 3 , 38 , 6 , 6 , 0 , 0 , - 9 , 2 , - 9 , 2 , 0 , 0 , 143 , 143 , 143 , 11 . 777301927 , 10 . 17130621 , 1 . 6059957173 , 0 , 0 . 5353319058 , 0 . 5353319058 <nl> + 050 , 2 , 4 , 31 , 127 , Nebraska , Nemaha County , 7248 , 7248 , 7258 , 7280 , 10 , 22 , 18 , 70 , 10 , 72 , 8 , - 2 , 0 , - 1 , 2 , 25 , 2 , 24 , 0 , 0 , 486 , 486 , 486 , 9 . 6299353419 , 9 . 9050763516 , - 0 . 27514101 , - 0 . 137570505 , 3 . 4392626221 , 3 . 3016921172 <nl> + 050 , 2 , 4 , 31 , 129 , Nebraska , Nuckolls County , 4500 , 4500 , 4503 , 4478 , 3 , - 25 , 8 , 39 , 15 , 81 , - 7 , - 42 , 0 , 0 , 11 , 17 , 11 , 17 , - 1 , 0 , 59 , 59 , 59 , 8 . 6850016702 , 18 . 038080392 , - 9 . 353078722 , 0 , 3 . 7857699588 , 3 . 7857699588 <nl> + 050 , 2 , 4 , 31 , 131 , Nebraska , Otoe County , 15740 , 15740 , 15779 , 15798 , 39 , 19 , 43 , 198 , 47 , 184 , - 4 , 14 , 2 , 11 , 42 , - 5 , 44 , 6 , - 1 , - 1 , 338 , 338 , 338 , 12 . 540773348 , 11 . 654052 , 0 . 8867213478 , 0 . 6967096304 , - 0 . 316686196 , 0 . 3800234348 <nl> + 050 , 2 , 4 , 31 , 133 , Nebraska , Pawnee County , 2773 , 2773 , 2770 , 2735 , - 3 , - 35 , 2 , 17 , 4 , 47 , - 2 , - 30 , 0 , 0 , - 1 , - 5 , - 1 , - 5 , 0 , 0 , 39 , 39 , 39 , 6 . 1762034514 , 17 . 075386013 , - 10 . 89918256 , 0 , - 1 . 816530427 , - 1 . 816530427 <nl> + 050 , 2 , 4 , 31 , 135 , Nebraska , Perkins County , 2970 , 2970 , 2978 , 2955 , 8 , - 23 , 6 , 30 , 5 , 23 , 1 , 7 , 0 , 0 , 6 , - 30 , 6 , - 30 , 1 , 0 , 44 , 44 , 44 , 10 . 112927693 , 7 . 7532445643 , 2 . 3596831283 , 0 , - 10 . 11292769 , - 10 . 11292769 <nl> + 050 , 2 , 4 , 31 , 137 , Nebraska , Phelps County , 9188 , 9188 , 9201 , 9184 , 13 , - 17 , 27 , 104 , 14 , 94 , 13 , 10 , 0 , 4 , 1 , - 31 , 1 , - 27 , - 1 , 0 , 249 , 249 , 249 , 11 . 313570846 , 10 . 225727495 , 1 . 0878433506 , 0 . 4351373402 , - 3 . 372314387 , - 2 . 937177047 <nl> + 050 , 2 , 4 , 31 , 139 , Nebraska , Pierce County , 7266 , 7266 , 7261 , 7216 , - 5 , - 45 , 20 , 82 , 9 , 71 , 11 , 11 , 1 , 5 , - 16 , - 62 , - 15 , - 57 , - 1 , 1 , 116 , 116 , 116 , 11 . 328313877 , 9 . 8086620156 , 1 . 5196518616 , 0 . 6907508462 , - 8 . 565310493 , - 7 . 874559646 <nl> + 050 , 2 , 4 , 31 , 141 , Nebraska , Platte County , 32237 , 32237 , 32271 , 32593 , 34 , 322 , 113 , 496 , 74 , 256 , 39 , 240 , 11 , 41 , - 15 , 43 , - 4 , 84 , - 1 , - 2 , 476 , 476 , 476 , 15 . 293537247 , 7 . 8934385792 , 7 . 400098668 , 1 . 2641835224 , 1 . 3258510113 , 2 . 5900345338 <nl> + 050 , 2 , 4 , 31 , 143 , Nebraska , Polk County , 5406 , 5406 , 5386 , 5322 , - 20 , - 64 , 8 , 55 , 9 , 63 , - 1 , - 8 , 0 , 1 , - 17 , - 57 , - 17 , - 56 , - 2 , 0 , 124 , 124 , 124 , 10 . 272693313 , 11 . 76690325 , - 1 . 494209936 , 0 . 1867762421 , - 10 . 6462458 , - 10 . 45946956 <nl> + 050 , 2 , 4 , 31 , 145 , Nebraska , Red Willow County , 11055 , 11055 , 11058 , 11032 , 3 , - 26 , 33 , 123 , 25 , 131 , 8 , - 8 , 0 , 1 , - 4 , - 18 , - 4 , - 17 , - 1 , - 1 , 369 , 369 , 369 , 11 . 136260751 , 11 . 860570394 , - 0 . 724309642 , 0 . 0905387053 , - 1 . 629696695 , - 1 . 53915799 <nl> + 050 , 2 , 4 , 31 , 147 , Nebraska , Richardson County , 8363 , 8363 , 8358 , 8345 , - 5 , - 13 , 22 , 90 , 21 , 123 , 1 , - 33 , 1 , 2 , - 5 , 18 , - 4 , 20 , - 2 , 0 , 155 , 155 , 155 , 10 . 776507214 , 14 . 727893193 , - 3 . 951385979 , 0 . 2394779381 , 2 . 1553014429 , 2 . 3947793809 <nl> + 050 , 2 , 4 , 31 , 149 , Nebraska , Rock County , 1526 , 1526 , 1519 , 1494 , - 7 , - 25 , 2 , 14 , 3 , 18 , - 1 , - 4 , 0 , 1 , - 5 , - 23 , - 5 , - 22 , - 1 , 1 , 30 , 30 , 30 , 9 . 293063392 , 11 . 948224361 , - 2 . 655160969 , 0 . 6637902423 , - 15 . 26717557 , - 14 . 60338533 <nl> + 050 , 2 , 4 , 31 , 151 , Nebraska , Saline County , 14200 , 14200 , 14222 , 14345 , 22 , 123 , 52 , 217 , 32 , 132 , 20 , 85 , 10 , 40 , - 7 , - 2 , 3 , 38 , - 1 , 0 , 1038 , 1038 , 1038 , 15 . 192354815 , 9 . 241432422 , 5 . 950922393 , 2 . 8004340673 , - 0 . 140021703 , 2 . 6604123639 <nl> + 050 , 2 , 4 , 31 , 153 , Nebraska , Sarpy County , 158840 , 158840 , 159687 , 162561 , 847 , 2874 , 629 , 2578 , 196 , 750 , 433 , 1828 , 84 , 126 , 323 , 918 , 407 , 1044 , 7 , 2 , 1277 , 1277 , 1277 , 16 . 000099302 , 4 . 6548000298 , 11 . 345299273 , 0 . 782006405 , 5 . 6974752365 , 6 . 4794816415 <nl> + 050 , 2 , 4 , 31 , 155 , Nebraska , Saunders County , 20780 , 20780 , 20864 , 20867 , 84 , 3 , 66 , 268 , 38 , 175 , 28 , 93 , 0 , - 2 , 54 , - 87 , 54 , - 89 , 2 , - 1 , 335 , 335 , 335 , 12 . 844168604 , 8 . 3870503942 , 4 . 4571182095 , - 0 . 095852005 , - 4 . 169562196 , - 4 . 2654142 <nl> + 050 , 2 , 4 , 31 , 157 , Nebraska , Scotts Bluff County , 36970 , 36970 , 37052 , 37044 , 82 , - 8 , 133 , 546 , 111 , 406 , 22 , 140 , - 1 , 6 , 62 , - 155 , 61 , - 149 , - 1 , 1 , 847 , 847 , 847 , 14 . 737637659 , 10 . 958756208 , 3 . 7788814511 , 0 . 1619520622 , - 4 . 183761607 , - 4 . 021809544 <nl> + 050 , 2 , 4 , 31 , 159 , Nebraska , Seward County , 16750 , 16750 , 16812 , 16703 , 62 , - 109 , 52 , 198 , 33 , 156 , 19 , 42 , 2 , 2 , 40 , - 154 , 42 , - 152 , 1 , 1 , 1296 , 1296 , 1296 , 11 . 815604953 , 9 . 3092645084 , 2 . 5063404446 , 0 . 119349545 , - 9 . 189914963 , - 9 . 070565418 <nl> + 050 , 2 , 4 , 31 , 161 , Nebraska , Sheridan County , 5469 , 5469 , 5458 , 5392 , - 11 , - 66 , 14 , 53 , 10 , 67 , 4 , - 14 , 0 , 4 , - 15 , - 57 , - 15 , - 53 , 0 , 1 , 113 , 113 , 113 , 9 . 7695852535 , 12 . 350230415 , - 2 . 580645161 , 0 . 7373271889 , - 10 . 50691244 , - 9 . 769585253 <nl> + 050 , 2 , 4 , 31 , 163 , Nebraska , Sherman County , 3152 , 3152 , 3155 , 3093 , 3 , - 62 , 7 , 26 , 4 , 52 , 3 , - 26 , 0 , 0 , 1 , - 36 , 1 , - 36 , - 1 , 0 , 56 , 56 , 56 , 8 . 3226632522 , 16 . 645326504 , - 8 . 322663252 , 0 , - 11 . 52368758 , - 11 . 52368758 <nl> + 050 , 2 , 4 , 31 , 165 , Nebraska , Sioux County , 1311 , 1311 , 1313 , 1336 , 2 , 23 , 2 , 8 , 0 , 1 , 2 , 7 , 0 , 0 , 0 , 16 , 0 , 16 , 0 , 0 , 0 , 0 , 0 , 6 . 0400151 , 0 . 7550018875 , 5 . 2850132125 , 0 , 12 . 0800302 , 12 . 0800302 <nl> + 050 , 2 , 4 , 31 , 167 , Nebraska , Stanton County , 6129 , 6129 , 6130 , 6155 , 1 , 25 , 21 , 79 , 5 , 39 , 16 , 40 , 1 , 2 , - 16 , - 17 , - 15 , - 15 , 0 , 0 , 0 , 0 , 0 , 12 . 861212861 , 6 . 3492063492 , 6 . 512006512 , 0 . 3256003256 , - 2 . 767602768 , - 2 . 442002442 <nl> + 050 , 2 , 4 , 31 , 169 , Nebraska , Thayer County , 5228 , 5228 , 5222 , 5160 , - 6 , - 62 , 10 , 47 , 20 , 96 , - 10 , - 49 , 0 , 1 , 5 , - 13 , 5 , - 12 , - 1 , - 1 , 156 , 156 , 156 , 9 . 0541321518 , 18 . 493546523 , - 9 . 439414371 , 0 . 1926411096 , - 2 . 504334425 , - 2 . 311693315 <nl> + 050 , 2 , 4 , 31 , 171 , Nebraska , Thomas County , 647 , 647 , 649 , 716 , 2 , 67 , 3 , 6 , 0 , 4 , 3 , 2 , 0 , 0 , - 1 , 65 , - 1 , 65 , 0 , 0 , 2 , 2 , 2 , 8 . 7912087912 , 5 . 8608058608 , 2 . 9304029304 , 0 , 95 . 238095238 , 95 . 238095238 <nl> + 050 , 2 , 4 , 31 , 173 , Nebraska , Thurston County , 6940 , 6940 , 6984 , 7006 , 44 , 22 , 39 , 166 , 3 , 55 , 36 , 111 , 1 , 5 , 7 , - 95 , 8 , - 90 , 0 , 1 , 58 , 58 , 58 , 23 . 731236598 , 7 . 8627591137 , 15 . 868477484 , 0 . 7147962831 , - 13 . 58112938 , - 12 . 8663331 <nl> + 050 , 2 , 4 , 31 , 175 , Nebraska , Valley County , 4260 , 4260 , 4266 , 4218 , 6 , - 48 , 13 , 49 , 8 , 57 , 5 , - 8 , 0 , 0 , 1 , - 39 , 1 , - 39 , 0 , - 1 , 49 , 49 , 49 , 11 . 551155116 , 13 . 437057992 , - 1 . 885902876 , 0 , - 9 . 193776521 , - 9 . 193776521 <nl> + 050 , 2 , 4 , 31 , 177 , Nebraska , Washington County , 20234 , 20234 , 20272 , 20295 , 38 , 23 , 50 , 200 , 38 , 169 , 12 , 31 , 1 , 5 , 26 , - 12 , 27 , - 7 , - 1 , - 1 , 535 , 535 , 535 , 9 . 8602312224 , 8 . 3318953829 , 1 . 5283358395 , 0 . 2465057806 , - 0 . 591613873 , - 0 . 345108093 <nl> + 050 , 2 , 4 , 31 , 179 , Nebraska , Wayne County , 9595 , 9595 , 9608 , 9504 , 13 , - 104 , 23 , 92 , 4 , 48 , 19 , 44 , 1 , 3 , - 7 , - 151 , - 6 , - 148 , 0 , 0 , 1262 , 1262 , 1262 , 9 . 6274591879 , 5 . 023022185 , 4 . 6044370029 , 0 . 3139388866 , - 15 . 80159062 , - 15 . 48765174 <nl> + 050 , 2 , 4 , 31 , 181 , Nebraska , Webster County , 3812 , 3812 , 3818 , 3775 , 6 , - 43 , 8 , 36 , 5 , 63 , 3 , - 27 , 0 , 0 , 4 , - 16 , 4 , - 16 , - 1 , 0 , 156 , 156 , 156 , 9 . 4824180166 , 16 . 594231529 , - 7 . 111813512 , 0 , - 4 . 214408007 , - 4 . 214408007 <nl> + 050 , 2 , 4 , 31 , 183 , Nebraska , Wheeler County , 818 , 818 , 822 , 818 , 4 , - 4 , 2 , 11 , 0 , 0 , 2 , 11 , 0 , 0 , 2 , - 16 , 2 , - 16 , 0 , 1 , 0 , 0 , 0 , 13 . 414634146 , 0 , 13 . 414634146 , 0 , - 19 . 51219512 , - 19 . 51219512 <nl> + 050 , 2 , 4 , 31 , 185 , Nebraska , York County , 13665 , 13665 , 13647 , 13726 , - 18 , 79 , 37 , 169 , 34 , 139 , 3 , 30 , 2 , 11 , - 22 , 37 , - 20 , 48 , - 1 , 1 , 737 , 737 , 737 , 12 . 347934096 , 10 . 155993132 , 2 . 1919409637 , 0 . 8037116867 , 2 . 7033938553 , 3 . 507105542 <nl> + 040 , 4 , 8 , 32 , 000 , Nevada , Nevada , 2700551 , 2700551 , 2704283 , 2723322 , 3732 , 19039 , 9162 , 36772 , 4743 , 19373 , 4419 , 17399 , 2382 , 9679 , - 3105 , - 8008 , - 723 , 1671 , 36 , - 31 , 36154 , 36154 , 36154 , 13 . 549991202 , 7 . 1386919277 , 6 . 4112992747 , 3 . 5665823139 , - 2 . 950841117 , 0 . 6157411971 <nl> + 050 , 4 , 8 , 32 , 001 , Nevada , Churchill County , 24877 , 24877 , 24804 , 24637 , - 73 , - 167 , 88 , 341 , 68 , 242 , 20 , 99 , 25 , 53 , - 120 , - 320 , - 95 , - 267 , 2 , 1 , 366 , 366 , 366 , 13 . 794219373 , 9 . 7894460064 , 4 . 0047733662 , 2 . 1439695799 , - 12 . 94472199 , - 10 . 80075241 <nl> + 050 , 4 , 8 , 32 , 003 , Nevada , Clark County , 1951269 , 1951269 , 1953927 , 1969975 , 2658 , 16048 , 6832 , 27563 , 3273 , 13168 , 3559 , 14395 , 1887 , 8007 , - 2842 , - 6353 , - 955 , 1654 , 54 , - 1 , 21992 , 21992 , 21992 , 14 . 048770841 , 6 . 7116864794 , 7 . 3370843614 , 4 . 0811416799 , - 3 . 238103296 , 0 . 8430383837 <nl> + 050 , 4 , 8 , 32 , 005 , Nevada , Douglas County , 46997 , 46997 , 47001 , 46886 , 4 , - 115 , 97 , 379 , 114 , 441 , - 17 , - 62 , 8 , 37 , 16 , - 85 , 24 , - 48 , - 3 , - 5 , 230 , 230 , 230 , 8 . 0735352072 , 9 . 3942718374 , - 1 . 32073663 , 0 . 7881815374 , - 1 . 810687316 , - 1 . 022505778 <nl> + 050 , 4 , 8 , 32 , 007 , Nevada , Elko County , 48818 , 48818 , 48958 , 49491 , 140 , 533 , 192 , 754 , 64 , 276 , 128 , 478 , 27 , 91 , - 15 , - 32 , 12 , 59 , 0 , - 4 , 570 , 570 , 570 , 15 . 317575598 , 5 . 6069640118 , 9 . 7106115857 , 1 . 8486729169 , - 0 . 650082784 , 1 . 198590133 <nl> + 050 , 4 , 8 , 32 , 009 , Nevada , Esmeralda County , 783 , 783 , 778 , 775 , - 5 , - 3 , 2 , 8 , 0 , 4 , 2 , 4 , 0 , 5 , - 7 , - 12 , - 7 , - 7 , 0 , 0 , 1 , 1 , 1 , 10 . 302640052 , 5 . 1513200258 , 5 . 1513200258 , 6 . 4391500322 , - 15 . 45396008 , - 9 . 014810045 <nl> + 050 , 4 , 8 , 32 , 011 , Nevada , Eureka County , 1987 , 1987 , 1997 , 1979 , 10 , - 18 , 4 , 17 , 0 , 5 , 4 , 12 , 0 , 0 , 6 , - 30 , 6 , - 30 , 0 , 0 , 1 , 1 , 1 , 8 . 5513078471 , 2 . 5150905433 , 6 . 0362173038 , 0 , - 15 . 09054326 , - 15 . 09054326 <nl> + 050 , 4 , 8 , 32 , 013 , Nevada , Humboldt County , 16528 , 16528 , 16602 , 16735 , 74 , 133 , 61 , 250 , 21 , 111 , 40 , 139 , 16 , 65 , 18 , - 71 , 34 , - 6 , 0 , 0 , 183 , 183 , 183 , 14 . 998350181 , 6 . 6592674806 , 8 . 3390827009 , 3 . 8995710472 , - 4 . 259531452 , - 0 . 359960404 <nl> + 050 , 4 , 8 , 32 , 015 , Nevada , Lander County , 5775 , 5775 , 5792 , 5841 , 17 , 49 , 21 , 98 , 3 , 37 , 18 , 61 , 2 , 3 , - 2 , - 15 , 0 , - 12 , - 1 , 0 , 16 , 16 , 16 , 16 . 848620304 , 6 . 3612137884 , 10 . 487406516 , 0 . 5157740909 , - 2 . 578870455 , - 2 . 063096364 <nl> + 050 , 4 , 8 , 32 , 017 , Nevada , Lincoln County , 5345 , 5345 , 5363 , 5311 , 18 , - 52 , 10 , 44 , 4 , 53 , 6 , - 9 , 0 , 0 , 12 , - 44 , 12 , - 44 , 0 , 1 , 239 , 239 , 239 , 8 . 2443320217 , 9 . 9306726625 , - 1 . 686340641 , 0 , - 8 . 244332022 , - 8 . 244332022 <nl> + 050 , 4 , 8 , 32 , 019 , Nevada , Lyon County , 51980 , 51980 , 52112 , 51871 , 132 , - 241 , 147 , 583 , 121 , 478 , 26 , 105 , 35 , 142 , 76 , - 492 , 111 , - 350 , - 5 , 4 , 358 , 358 , 358 , 11 . 213371416 , 9 . 1938105267 , 2 . 0195608898 , 2 . 7312156795 , - 9 . 463085312 , - 6 . 731869633 <nl> + 050 , 4 , 8 , 32 , 021 , Nevada , Mineral County , 4772 , 4772 , 4776 , 4593 , 4 , - 183 , 12 , 50 , 19 , 99 , - 7 , - 49 , 2 , 5 , 9 , - 141 , 11 , - 136 , 0 , 2 , 52 , 52 , 52 , 10 . 673497705 , 21 . 133525456 , - 10 . 46002775 , 1 . 0673497705 , - 30 . 09926353 , - 29 . 03191376 <nl> + 050 , 4 , 8 , 32 , 023 , Nevada , Nye County , 43946 , 43946 , 43818 , 43351 , - 128 , - 467 , 101 , 387 , 147 , 577 , - 46 , - 190 , 17 , 65 , - 97 , - 344 , - 80 , - 279 , - 2 , 2 , 334 , 334 , 334 , 8 . 8793034221 , 13 . 238651355 , - 4 . 359347933 , 1 . 4913558719 , - 7 . 892714153 , - 6 . 401358281 <nl> + 050 , 4 , 8 , 32 , 027 , Nevada , Pershing County , 6753 , 6753 , 6755 , 6734 , 2 , - 21 , 12 , 45 , 2 , 53 , 10 , - 8 , 2 , 1 , - 10 , - 14 , - 8 , - 13 , 0 , 0 , 1681 , 1681 , 1681 , 6 . 6721031952 , 7 . 8582548743 , - 1 . 186151679 , 0 . 1482689599 , - 2 . 075765439 , - 1 . 927496479 <nl> + 050 , 4 , 8 , 32 , 029 , Nevada , Storey County , 4010 , 4010 , 3996 , 3896 , - 14 , - 100 , 4 , 25 , 1 , 17 , 3 , 8 , 0 , - 1 , - 17 , - 107 , - 17 , - 108 , 0 , 0 , 5 , 5 , 5 , 6 . 3355296503 , 4 . 3081601622 , 2 . 0273694881 , - 0 . 253421186 , - 27 . 1160669 , - 27 . 36948809 <nl> + 050 , 4 , 8 , 32 , 031 , Nevada , Washoe County , 421407 , 421407 , 422328 , 425710 , 921 , 3382 , 1383 , 5448 , 751 , 3105 , 632 , 2343 , 332 , 1089 , - 33 , - 26 , 299 , 1063 , - 10 , - 24 , 5272 , 5272 , 5272 , 12 . 848480846 , 7 . 3227850639 , 5 . 5256957825 , 2 . 5682811383 , - 0 . 061318007 , 2 . 5069631314 <nl> + 050 , 4 , 8 , 32 , 033 , Nevada , White Pine County , 10030 , 10030 , 10064 , 10098 , 34 , 34 , 31 , 118 , 7 , 93 , 24 , 25 , 1 , 5 , 9 , 4 , 10 , 9 , 0 , 0 , 1229 , 1229 , 1229 , 11 . 705187977 , 9 . 2252752703 , 2 . 4799127071 , 0 . 4959825414 , 0 . 3967860331 , 0 . 8927685745 <nl> + 050 , 4 , 8 , 32 , 510 , Nevada , Carson City , 55274 , 55274 , 55212 , 55439 , - 62 , 227 , 165 , 662 , 148 , 614 , 17 , 48 , 28 , 112 , - 108 , 74 , - 80 , 186 , 1 , - 7 , 3625 , 3625 , 3625 , 11 . 96554934 , 11 . 097956638 , 0 . 8675927014 , 2 . 0243829699 , 1 . 337538748 , 3 . 3619217178 <nl> + 040 , 1 , 1 , 33 , 000 , New Hampshire , New Hampshire , 1316470 , 1316472 , 1316807 , 1318194 , 335 , 1387 , 3191 , 12795 , 2350 , 9778 , 841 , 3017 , 399 , 1165 , - 882 , - 2763 , - 483 , - 1598 , - 23 , - 32 , 40104 , 40104 , 40104 , 9 . 711571267 , 7 . 421629062 , 2 . 289942205 , 0 . 8842501388 , - 2 . 097152904 , - 1 . 212902766 <nl> + 050 , 1 , 1 , 33 , 001 , New Hampshire , Belknap County , 60088 , 60088 , 60087 , 60223 , - 1 , 136 , 146 , 578 , 162 , 677 , - 16 , - 99 , 12 , 58 , 7 , 181 , 19 , 239 , - 4 , - 4 , 858 , 858 , 858 , 9 . 6085113457 , 11 . 254259829 , - 1 . 645748483 , 0 . 964175879 , 3 . 0088936913 , 3 . 9730695703 <nl> + 050 , 1 , 1 , 33 , 003 , New Hampshire , Carroll County , 47818 , 47820 , 47837 , 47641 , 17 , - 196 , 95 , 380 , 123 , 493 , - 28 , - 113 , 7 , 32 , 40 , - 112 , 47 , - 80 , - 2 , - 3 , 437 , 437 , 437 , 7 . 9599488887 , 10 . 326986321 , - 2 . 367037433 , 0 . 6703114854 , - 2 . 346090199 , - 1 . 675778713 <nl> + 050 , 1 , 1 , 33 , 005 , New Hampshire , Cheshire County , 77117 , 77117 , 77070 , 76918 , - 47 , - 152 , 181 , 725 , 143 , 600 , 38 , 125 , 9 , 42 , - 93 , - 318 , - 84 , - 276 , - 1 , - 1 , 4627 , 4627 , 4627 , 9 . 4163181547 , 7 . 7928150245 , 1 . 6235031301 , 0 . 5454970517 , - 4 . 130191963 , - 3 . 584694911 <nl> + 050 , 1 , 1 , 33 , 007 , New Hampshire , Coos County , 33055 , 33055 , 32967 , 32688 , - 88 , - 279 , 66 , 254 , 100 , 374 , - 34 , - 120 , 3 , 15 , - 56 , - 174 , - 53 , - 159 , - 1 , 0 , 1467 , 1467 , 1467 , 7 . 7374152768 , 11 . 392887061 , - 3 . 655471784 , 0 . 456933973 , - 5 . 300434087 , - 4 . 843500114 <nl> + 050 , 1 , 1 , 33 , 009 , New Hampshire , Grafton County , 89118 , 89118 , 89122 , 88923 , 4 , - 199 , 187 , 767 , 156 , 679 , 31 , 88 , 33 , 116 , - 55 , - 403 , - 22 , - 287 , - 5 , 0 , 7001 , 7001 , 7001 , 8 . 6157993766 , 7 . 6272852369 , 0 . 9885141397 , 1 . 3030413659 , - 4 . 526945435 , - 3 . 223904069 <nl> + 050 , 1 , 1 , 33 , 011 , New Hampshire , Hillsborough County , 400721 , 400721 , 400974 , 401696 , 253 , 722 , 1107 , 4448 , 650 , 2731 , 457 , 1717 , 221 , 675 , - 425 , - 1675 , - 204 , - 1000 , 0 , 5 , 7759 , 7759 , 7759 , 11 . 083010453 , 6 . 8047890167 , 4 . 278221436 , 1 . 6818867031 , - 4 . 173570708 , - 2 . 491684005 <nl> + 050 , 1 , 1 , 33 , 013 , New Hampshire , Merrimack County , 146445 , 146445 , 146427 , 146579 , - 18 , 152 , 340 , 1381 , 254 , 1088 , 86 , 293 , 20 , 63 , - 123 , - 197 , - 103 , - 134 , - 1 , - 7 , 6335 , 6335 , 6335 , 9 . 4264281278 , 7 . 4264690825 , 1 . 9999590452 , 0 . 4300253237 , - 1 . 344682361 , - 0 . 914657038 <nl> + 050 , 1 , 1 , 33 , 015 , New Hampshire , Rockingham County , 295223 , 295223 , 295391 , 296207 , 168 , 816 , 639 , 2544 , 457 , 1916 , 182 , 628 , 68 , 79 , - 76 , 125 , - 8 , 204 , - 6 , - 16 , 2498 , 2498 , 2498 , 8 . 6004347547 , 6 . 4773714583 , 2 . 1230632964 , 0 . 2670732491 , 0 . 4225842548 , 0 . 6896575039 <nl> + 050 , 1 , 1 , 33 , 017 , New Hampshire , Strafford County , 123143 , 123143 , 123208 , 123857 , 65 , 649 , 321 , 1311 , 206 , 842 , 115 , 469 , 25 , 72 , - 75 , 115 , - 50 , 187 , 0 , - 7 , 8421 , 8421 , 8421 , 10 . 612591828 , 6 . 8160200757 , 3 . 7965717524 , 0 . 5828425718 , 0 . 9309291077 , 1 . 5137716795 <nl> + 050 , 1 , 1 , 33 , 019 , New Hampshire , Sullivan County , 43742 , 43742 , 43724 , 43462 , - 18 , - 262 , 109 , 407 , 99 , 378 , 10 , 29 , 1 , 13 , - 26 , - 305 , - 25 , - 292 , - 3 , 1 , 701 , 701 , 701 , 9 . 3363613424 , 8 . 6711169224 , 0 . 66524442 , 0 . 2982130159 , - 6 . 996536141 , - 6 . 698323125 <nl> + 040 , 1 , 2 , 34 , 000 , New Jersey , New Jersey , 8791894 , 8791894 , 8799593 , 8821155 , 7699 , 21562 , 25275 , 104343 , 16884 , 68372 , 8391 , 35971 , 8273 , 30889 , - 8854 , - 45244 , - 581 , - 14355 , - 111 , - 54 , 186876 , 186620 , 186237 , 11 . 843197576 , 7 . 7603970047 , 4 . 0828005712 , 3 . 5059805634 , - 5 . 135309806 , - 1 . 629329243 <nl> + 050 , 1 , 2 , 34 , 001 , New Jersey , Atlantic County , 274549 , 274549 , 274666 , 274338 , 117 , - 328 , 810 , 3411 , 617 , 2555 , 193 , 856 , 269 , 805 , - 343 , - 2001 , - 74 , - 1196 , - 2 , 12 , 6046 , 6046 , 6046 , 12 . 426138972 , 9 . 3077646065 , 3 . 1183743652 , 2 . 9325833692 , - 7 . 289564375 , - 4 . 356981006 <nl> + 050 , 1 , 2 , 34 , 003 , New Jersey , Bergen County , 905116 , 905116 , 906184 , 911004 , 1068 , 4820 , 2157 , 8910 , 1635 , 6647 , 522 , 2263 , 811 , 3738 , - 210 , - 1096 , 601 , 2642 , - 55 , - 85 , 10422 , 10422 , 10422 , 9 . 8063601565 , 7 . 3156987609 , 2 . 4906613955 , 4 . 114048739 , - 1 . 206259341 , 2 . 9077893977 <nl> + 050 , 1 , 2 , 34 , 005 , New Jersey , Burlington County , 448734 , 448734 , 449119 , 449576 , 385 , 457 , 1116 , 4658 , 887 , 3599 , 229 , 1059 , 252 , 500 , - 77 , - 1080 , 175 , - 580 , - 19 , - 22 , 13214 , 13217 , 13222 , 10 . 366142017 , 8 . 0093913953 , 2 . 3567506217 , 1 . 1127245617 , - 2 . 403485053 , - 1 . 290760492 <nl> + 050 , 1 , 2 , 34 , 007 , New Jersey , Camden County , 513657 , 513657 , 513601 , 513241 , - 56 , - 360 , 1623 , 6652 , 1090 , 4350 , 533 , 2302 , 355 , 1122 , - 952 , - 3805 , - 597 , - 2683 , 8 , 21 , 7414 , 7414 , 7414 , 12 . 956228904 , 8 . 4725790336 , 4 . 4836498702 , 2 . 1853410749 , - 7 . 411072005 , - 5 . 22573093 <nl> + 050 , 1 , 2 , 34 , 009 , New Jersey , Cape May County , 97265 , 97265 , 97250 , 96601 , - 15 , - 649 , 230 , 941 , 312 , 1260 , - 82 , - 319 , 28 , 76 , 46 , - 405 , 74 , - 329 , - 7 , - 1 , 2628 , 2628 , 2628 , 9 . 7084874465 , 12 . 999675008 , - 3 . 291187562 , 0 . 7841073814 , - 4 . 178466967 , - 3 . 394359585 <nl> + 050 , 1 , 2 , 34 , 011 , New Jersey , Cumberland County , 156898 , 156898 , 156855 , 157095 , - 43 , 240 , 570 , 2297 , 330 , 1360 , 240 , 937 , 130 , 457 , - 419 , - 1160 , - 289 , - 703 , 6 , 6 , 12111 , 11849 , 11739 , 14 . 632903329 , 8 . 6637999681 , 5 . 9691033604 , 2 . 9112916069 , - 7 . 389711738 , - 4 . 478420131 <nl> + 050 , 1 , 2 , 34 , 013 , New Jersey , Essex County , 783969 , 783969 , 784099 , 785137 , 130 , 1038 , 2477 , 10491 , 1442 , 5744 , 1035 , 4747 , 948 , 3696 , - 1868 , - 7436 , - 920 , - 3740 , 15 , 31 , 23772 , 23772 , 23772 , 13 . 370837783 , 7 . 3207599112 , 6 . 0500778723 , 4 . 7105725334 , - 9 . 477223311 , - 4 . 766650778 <nl> + 050 , 1 , 2 , 34 , 015 , New Jersey , Gloucester County , 288288 , 288288 , 288557 , 289104 , 269 , 547 , 781 , 3167 , 584 , 2329 , 197 , 838 , 57 , 71 , 22 , - 351 , 79 , - 280 , - 7 , - 11 , 4223 , 4223 , 4223 , 10 . 964908484 , 8 . 063552845 , 2 . 9013556394 , 0 . 2458189146 , - 1 . 21524562 , - 0 . 969426705 <nl> + 050 , 1 , 2 , 34 , 017 , New Jersey , Hudson County , 634266 , 634266 , 634979 , 641224 , 713 , 6245 , 2084 , 9057 , 977 , 3779 , 1107 , 5278 , 1261 , 5112 , - 1673 , - 4132 , - 412 , 980 , 18 , - 13 , 9378 , 9378 , 9378 , 14 . 193666682 , 5 . 9222553152 , 8 . 2714113664 , 8 . 0112646656 , - 6 . 475458842 , 1 . 535805824 <nl> + 050 , 1 , 2 , 34 , 019 , New Jersey , Hunterdon County , 128349 , 128349 , 128354 , 128038 , 5 , - 316 , 239 , 945 , 192 , 788 , 47 , 157 , 42 , 171 , - 82 , - 646 , - 40 , - 475 , - 2 , 2 , 4569 , 4570 , 4570 , 7 . 3715248526 , 6 . 1468376548 , 1 . 2246871977 , 1 . 3338949733 , - 5 . 039158788 , - 3 . 705263815 <nl> + 050 , 1 , 2 , 34 , 021 , New Jersey , Mercer County , 366513 , 366511 , 366933 , 367063 , 422 , 130 , 1084 , 4378 , 666 , 2746 , 418 , 1632 , 447 , 1534 , - 445 , - 3062 , 2 , - 1528 , 2 , 26 , 18805 , 18807 , 18529 , 11 . 929220323 , 7 . 482329604 , 4 . 4468907188 , 4 . 1798592908 , - 8 . 343369719 , - 4 . 163510428 <nl> + 050 , 1 , 2 , 34 , 023 , New Jersey , Middlesex County , 809858 , 809860 , 810747 , 814217 , 887 , 3470 , 2404 , 9813 , 1412 , 5546 , 992 , 4267 , 1168 , 4727 , - 1282 , - 5547 , - 114 , - 820 , 9 , 23 , 23835 , 23835 , 23835 , 12 . 077806031 , 6 . 8259973759 , 5 . 2518086555 , 5 . 8179750444 , - 6 . 827228172 , - 1 . 009253128 <nl> + 050 , 1 , 2 , 34 , 025 , New Jersey , Monmouth County , 630380 , 630380 , 630920 , 631020 , 540 , 100 , 1535 , 6295 , 1278 , 5217 , 257 , 1078 , 377 , 1360 , - 76 , - 2339 , 301 , - 979 , - 18 , 1 , 7670 , 7670 , 7670 , 9 . 9767025374 , 8 . 268221944 , 1 . 7084805934 , 2 . 1554115093 , - 3 . 706990824 , - 1 . 551579314 <nl> + 050 , 1 , 2 , 34 , 027 , New Jersey , Morris County , 492276 , 492276 , 492681 , 494976 , 405 , 2295 , 1185 , 4770 , 805 , 3378 , 380 , 1392 , 421 , 1438 , - 385 , - 503 , 36 , 935 , - 11 , - 32 , 8866 , 8866 , 8866 , 9 . 6592237994 , 6 . 8404314453 , 2 . 818792354 , 2 . 9119421014 , - 1 . 018572237 , 1 . 8933698642 <nl> + 050 , 1 , 2 , 34 , 029 , New Jersey , Ocean County , 576567 , 576567 , 577624 , 579369 , 1057 , 1745 , 1914 , 7786 , 1646 , 6863 , 268 , 923 , 171 , 493 , 643 , 375 , 814 , 868 , - 25 , - 46 , 7163 , 7163 , 7163 , 13 . 459026978 , 11 . 863511707 , 1 . 5955152711 , 0 . 8522091318 , 0 . 6482320982 , 1 . 50044123 <nl> + 050 , 1 , 2 , 34 , 031 , New Jersey , Passaic County , 501226 , 501226 , 501606 , 502007 , 380 , 401 , 1733 , 7103 , 866 , 3430 , 867 , 3673 , 547 , 2022 , - 1042 , - 5330 , - 495 , - 3308 , 8 , 36 , 11019 , 11019 , 11019 , 14 . 154858496 , 6 . 8353040465 , 7 . 3195544498 , 4 . 0294416274 , - 10 . 62162407 , - 6 . 592182445 <nl> + 050 , 1 , 2 , 34 , 033 , New Jersey , Salem County , 66083 , 66083 , 65996 , 65902 , - 87 , - 94 , 194 , 767 , 170 , 719 , 24 , 48 , 11 , 44 , - 120 , - 182 , - 109 , - 138 , - 2 , - 4 , 1257 , 1257 , 1257 , 11 . 630199093 , 10 . 902363948 , 0 . 7278351453 , 0 . 6671822166 , - 2 . 759708259 , - 2 . 092526043 <nl> + 050 , 1 , 2 , 34 , 035 , New Jersey , Somerset County , 323444 , 323444 , 324078 , 324893 , 634 , 815 , 859 , 3528 , 507 , 2176 , 352 , 1352 , 314 , 1041 , - 22 , - 1576 , 292 , - 535 , - 10 , - 2 , 3970 , 3970 , 3970 , 10 . 872596772 , 6 . 7060007304 , 4 . 166596042 , 3 . 2081556803 , - 4 . 856919647 , - 1 . 648763966 <nl> + 050 , 1 , 2 , 34 , 037 , New Jersey , Sussex County , 149265 , 149265 , 149198 , 148517 , - 67 , - 681 , 345 , 1368 , 264 , 1096 , 81 , 272 , 33 , 92 , - 182 , - 1053 , - 149 , - 961 , 1 , 8 , 1742 , 1742 , 1742 , 9 . 1899971449 , 7 . 3627462506 , 1 . 8272508943 , 0 . 6180407437 , - 7 . 073879381 , - 6 . 455838638 <nl> + 050 , 1 , 2 , 34 , 039 , New Jersey , Union County , 536499 , 536499 , 537475 , 539494 , 976 , 2019 , 1701 , 6991 , 979 , 3926 , 722 , 3065 , 589 , 2232 , - 317 , - 3272 , 272 , - 1040 , - 18 , - 6 , 6804 , 6804 , 6804 , 12 . 982732093 , 7 . 2908319552 , 5 . 6919001383 , 4 . 1449661039 , - 6 . 076312317 , - 1 . 931346213 <nl> + 050 , 1 , 2 , 34 , 041 , New Jersey , Warren County , 108692 , 108692 , 108671 , 108339 , - 21 , - 332 , 234 , 1015 , 225 , 864 , 9 , 151 , 42 , 158 , - 70 , - 643 , - 28 , - 485 , - 2 , 2 , 1968 , 1968 , 1968 , 9 . 354407631 , 7 . 9627666928 , 1 . 3916409382 , 1 . 4561540943 , - 5 . 925994194 , - 4 . 4698401 <nl> + 040 , 4 , 8 , 35 , 000 , New Mexico , New Mexico , 2059179 , 2059180 , 2065913 , 2082224 , 6733 , 16311 , 7109 , 28511 , 3636 , 15760 , 3473 , 12751 , 1088 , 3471 , 2135 , 67 , 3223 , 3538 , 37 , 22 , 42629 , 42631 , 42632 , 13 . 746411943 , 7 . 5985918498 , 6 . 1478200937 , 1 . 6735223547 , 0 . 0323036582 , 1 . 705826013 <nl> + 050 , 4 , 8 , 35 , 001 , New Mexico , Bernalillo County , 662564 , 662564 , 664425 , 670968 , 1861 , 6543 , 2250 , 8990 , 1201 , 5015 , 1049 , 3975 , 425 , 1289 , 389 , 1297 , 814 , 2586 , - 2 , - 18 , 11945 , 11947 , 11947 , 13 . 464201175 , 7 . 510897541 , 5 . 9533036342 , 1 . 9305178326 , 1 . 9424993242 , 3 . 8730171567 <nl> + 050 , 4 , 8 , 35 , 003 , New Mexico , Catron County , 3725 , 3725 , 3743 , 3733 , 18 , - 10 , 6 , 23 , 1 , 19 , 5 , 4 , 2 , 6 , 11 , - 19 , 13 , - 13 , 0 , - 1 , 106 , 106 , 106 , 6 . 153023007 , 5 . 0829320492 , 1 . 0700909577 , 1 . 6051364366 , - 5 . 082932049 , - 3 . 477795613 <nl> + 050 , 4 , 8 , 35 , 005 , New Mexico , Chaves County , 65645 , 65645 , 65778 , 65890 , 133 , 112 , 254 , 1026 , 165 , 648 , 89 , 378 , 34 , 100 , 12 , - 366 , 46 , - 266 , - 2 , 0 , 1784 , 1784 , 1785 , 15 . 584652307 , 9 . 8429382994 , 5 . 741714008 , 1 . 5189719598 , - 5 . 559437373 , - 4 . 040465413 <nl> + 050 , 4 , 8 , 35 , 006 , New Mexico , Cibola County , 27213 , 27213 , 27309 , 27658 , 96 , 349 , 104 , 410 , 16 , 222 , 88 , 188 , 2 , 13 , 6 , 150 , 8 , 163 , 0 , - 2 , 2531 , 2531 , 2531 , 14 . 918041734 , 8 . 077573817 , 6 . 8404679171 , 0 . 4730110794 , 5 . 4578201466 , 5 . 930831226 <nl> + 050 , 4 , 8 , 35 , 007 , New Mexico , Colfax County , 13750 , 13750 , 13743 , 13640 , - 7 , - 103 , 34 , 137 , 13 , 139 , 21 , - 2 , 1 , 7 , - 28 , - 109 , - 27 , - 102 , - 1 , 1 , 408 , 408 , 408 , 10 . 006208231 , 10 . 152284264 , - 0 . 146076033 , 0 . 511266114 , - 7 . 961143775 , - 7 . 449877661 <nl> + 050 , 4 , 8 , 35 , 009 , New Mexico , Curry County , 48376 , 48376 , 48960 , 49649 , 584 , 689 , 221 , 873 , 78 , 358 , 143 , 515 , 49 , 81 , 381 , 94 , 430 , 175 , 11 , - 1 , 1041 , 1041 , 1041 , 17 . 706294557 , 7 . 2610005172 , 10 . 44529404 , 1 . 6428520723 , 1 . 9065196889 , 3 . 5493717612 <nl> + 050 , 4 , 8 , 35 , 011 , New Mexico , De Baca County , 2022 , 2022 , 2015 , 1945 , - 7 , - 70 , 4 , 20 , 2 , 28 , 2 , - 8 , 0 , 0 , - 9 , - 62 , - 9 , - 62 , 0 , 0 , 9 , 9 , 9 , 10 . 101010101 , 14 . 141414141 , - 4 . 04040404 , 0 , - 31 . 31313131 , - 31 . 31313131 <nl> + 050 , 4 , 8 , 35 , 013 , New Mexico , Dona Ana County , 209233 , 209234 , 210477 , 213598 , 1243 , 3121 , 798 , 3281 , 352 , 1387 , 446 , 1894 , 123 , 436 , 659 , 793 , 782 , 1229 , 15 , - 2 , 4581 , 4581 , 4581 , 15 . 473678005 , 6 . 5412957614 , 8 . 9323822437 , 2 . 0562400519 , 3 . 739904498 , 5 . 7961445499 <nl> + 050 , 4 , 8 , 35 , 015 , New Mexico , Eddy County , 53829 , 53829 , 53919 , 54152 , 90 , 233 , 188 , 754 , 121 , 524 , 67 , 230 , 6 , 17 , 18 , - 10 , 24 , 7 , - 1 , - 4 , 995 , 995 , 995 , 13 . 953789638 , 9 . 697328608 , 4 . 2564610302 , 0 . 3146079892 , - 0 . 185063523 , 0 . 1295444661 <nl> + 050 , 4 , 8 , 35 , 017 , New Mexico , Grant County , 29514 , 29514 , 29413 , 29380 , - 101 , - 33 , 84 , 346 , 67 , 313 , 17 , 33 , 7 , 20 , - 126 , - 84 , - 119 , - 64 , 1 , - 2 , 590 , 590 , 590 , 11 . 770108686 , 10 . 647526066 , 1 . 1225826204 , 0 . 6803531033 , - 2 . 857483034 , - 2 . 17712993 <nl> + 050 , 4 , 8 , 35 , 019 , New Mexico , Guadalupe County , 4687 , 4687 , 4701 , 4619 , 14 , - 82 , 9 , 37 , 4 , 40 , 5 , - 3 , 0 , 0 , 10 , - 80 , 10 , - 80 , - 1 , 1 , 571 , 571 , 571 , 7 . 9399141631 , 8 . 5836909871 , - 0 . 643776824 , 0 , - 17 . 16738197 , - 17 . 16738197 <nl> + 050 , 4 , 8 , 35 , 021 , New Mexico , Harding County , 695 , 695 , 690 , 704 , - 5 , 14 , 2 , 6 , 1 , 11 , 1 , - 5 , 0 , 0 , - 6 , 18 , - 6 , 18 , 0 , 1 , 0 , 0 , 0 , 8 . 6083213773 , 15 . 781922525 , - 7 . 173601148 , 0 , 25 . 824964132 , 25 . 824964132 <nl> + 050 , 4 , 8 , 35 , 023 , New Mexico , Hidalgo County , 4894 , 4894 , 4857 , 4861 , - 37 , 4 , 15 , 57 , 4 , 44 , 11 , 13 , 0 , - 1 , - 48 , - 8 , - 48 , - 9 , 0 , 0 , 64 , 64 , 64 , 11 . 730808808 , 9 . 0553611854 , 2 . 675447623 , - 0 . 205803663 , - 1 . 646429306 , - 1 . 85223297 <nl> + 050 , 4 , 8 , 35 , 025 , New Mexico , Lea County , 64727 , 64727 , 64748 , 65423 , 21 , 675 , 297 , 1179 , 109 , 457 , 188 , 722 , 37 , 117 , - 208 , - 159 , - 171 , - 42 , 4 , - 5 , 2057 , 2057 , 2057 , 18 . 114633828 , 7 . 021533214 , 11 . 093100614 , 1 . 797635418 , - 2 . 44294044 , - 0 . 645305022 <nl> + 050 , 4 , 8 , 35 , 027 , New Mexico , Lincoln County , 20497 , 20497 , 20503 , 20454 , 6 , - 49 , 56 , 225 , 45 , 173 , 11 , 52 , 14 , 56 , - 16 , - 154 , - 2 , - 98 , - 3 , - 3 , 116 , 116 , 116 , 10 . 987132847 , 8 . 4478843665 , 2 . 5392484801 , 2 . 7345752863 , - 7 . 520082037 , - 4 . 785506751 <nl> + 050 , 4 , 8 , 35 , 028 , New Mexico , Los Alamos County , 17950 , 17950 , 18031 , 18222 , 81 , 191 , 41 , 166 , 18 , 109 , 23 , 57 , 13 , 58 , 44 , 76 , 57 , 134 , 1 , 0 , 94 , 94 , 94 , 9 . 1578627976 , 6 . 0132954514 , 3 . 1445673462 , 3 . 1997351943 , 4 . 1927564615 , 7 . 3924916559 <nl> + 050 , 4 , 8 , 35 , 029 , New Mexico , Luna County , 25095 , 25095 , 25146 , 25281 , 51 , 135 , 100 , 411 , 54 , 279 , 46 , 132 , 11 , 34 , - 5 , - 28 , 6 , 6 , - 1 , - 3 , 551 , 551 , 551 , 16 . 300791243 , 11 . 065500625 , 5 . 2352906181 , 1 . 3484839471 , - 1 . 110516192 , 0 . 2379677554 <nl> + 050 , 4 , 8 , 35 , 031 , New Mexico , McKinley County , 71492 , 71492 , 71812 , 73664 , 320 , 1852 , 336 , 1340 , 128 , 462 , 208 , 878 , 14 , 54 , 96 , 909 , 110 , 963 , 2 , 11 , 780 , 780 , 780 , 18 . 422282713 , 6 . 3515631444 , 12 . 070719569 , 0 . 7423904974 , 12 . 496906706 , 13 . 239297204 <nl> + 050 , 4 , 8 , 35 , 033 , New Mexico , Mora County , 4881 , 4881 , 4886 , 4773 , 5 , - 113 , 8 , 34 , 4 , 33 , 4 , 1 , 0 , 0 , 1 , - 116 , 1 , - 116 , 0 , 2 , 8 , 8 , 8 , 7 . 0400662594 , 6 . 8330054871 , 0 . 2070607723 , 0 , - 24 . 01904959 , - 24 . 01904959 <nl> + 050 , 4 , 8 , 35 , 035 , New Mexico , Otero County , 63797 , 63797 , 64340 , 65703 , 543 , 1363 , 238 , 951 , 120 , 508 , 118 , 443 , 105 , 249 , 313 , 664 , 418 , 913 , 7 , 7 , 2306 , 2306 , 2306 , 14 . 625931423 , 7 . 8128003814 , 6 . 8131310413 , 3 . 8295025492 , 10 . 212006798 , 14 . 041509347 <nl> + 050 , 4 , 8 , 35 , 037 , New Mexico , Quay County , 9041 , 9041 , 9082 , 9026 , 41 , - 56 , 22 , 101 , 9 , 108 , 13 , - 7 , 3 , 7 , 25 , - 55 , 28 , - 48 , 0 , - 1 , 22 , 22 , 22 , 11 . 155290479 , 11 . 928429423 , - 0 . 773138944 , 0 . 7731389441 , - 6 . 074663132 , - 5 . 301524188 <nl> + 050 , 4 , 8 , 35 , 039 , New Mexico , Rio Arriba County , 40246 , 40248 , 40333 , 40446 , 85 , 113 , 154 , 611 , 78 , 347 , 76 , 264 , 14 , 68 , - 4 , - 220 , 10 , - 152 , - 1 , 1 , 425 , 425 , 425 , 15 . 127694079 , 8 . 5913418091 , 6 . 5363522698 , 1 . 6836058877 , - 5 . 446960225 , - 3 . 763354337 <nl> + 050 , 4 , 8 , 35 , 041 , New Mexico , Roosevelt County , 19846 , 19846 , 20038 , 20446 , 192 , 408 , 78 , 306 , 34 , 171 , 44 , 135 , 7 , 29 , 137 , 242 , 144 , 271 , 4 , 2 , 1083 , 1083 , 1083 , 15 . 117083292 , 8 . 4477818397 , 6 . 6693014524 , 1 . 4326647564 , 11 . 955340381 , 13 . 388005138 <nl> + 050 , 4 , 8 , 35 , 043 , New Mexico , Sandoval County , 131561 , 131561 , 132387 , 134259 , 826 , 1872 , 397 , 1564 , 182 , 839 , 215 , 725 , 24 , 80 , 574 , 1063 , 598 , 1143 , 13 , 4 , 761 , 761 , 761 , 11 . 730909145 , 6 . 2929877065 , 5 . 4379214389 , 0 . 6000465036 , 7 . 9731179166 , 8 . 5731644202 <nl> + 050 , 4 , 8 , 35 , 045 , New Mexico , San Juan County , 130044 , 130044 , 130185 , 128200 , 141 , - 1985 , 513 , 2098 , 225 , 898 , 288 , 1200 , 12 , 34 , - 160 , - 3263 , - 148 , - 3229 , 1 , 44 , 1754 , 1754 , 1754 , 16 . 239332779 , 6 . 9508678909 , 9 . 2884648877 , 0 . 2631731718 , - 25 . 25688411 , - 24 . 99371094 <nl> + 050 , 4 , 8 , 35 , 047 , New Mexico , San Miguel County , 29393 , 29393 , 29369 , 29301 , - 24 , - 68 , 81 , 309 , 67 , 267 , 14 , 42 , 1 , 3 , - 39 , - 112 , - 38 , - 109 , 0 , - 1 , 1310 , 1310 , 1310 , 10 . 533492415 , 9 . 1017555821 , 1 . 4317368331 , 0 . 1022669167 , - 3 . 817964888 , - 3 . 715697972 <nl> + 050 , 4 , 8 , 35 , 049 , New Mexico , Santa Fe County , 144170 , 144168 , 144497 , 145648 , 329 , 1151 , 355 , 1411 , 244 , 924 , 111 , 487 , 145 , 570 , 76 , 102 , 221 , 672 , - 3 , - 8 , 2613 , 2613 , 2613 , 9 . 7261713971 , 6 . 3692291785 , 3 . 3569422185 , 3 . 9290699478 , 0 . 7030967275 , 4 . 6321666753 <nl> + 050 , 4 , 8 , 35 , 051 , New Mexico , Sierra County , 11988 , 11988 , 12017 , 11943 , 29 , - 74 , 22 , 99 , 55 , 245 , - 33 , - 146 , 0 , - 4 , 63 , 76 , 63 , 72 , - 1 , 0 , 265 , 265 , 265 , 8 . 2637729549 , 20 . 450751252 , - 12 . 1869783 , - 0 . 333889816 , 6 . 3439065109 , 6 . 0100166945 <nl> + 050 , 4 , 8 , 35 , 053 , New Mexico , Socorro County , 17866 , 17864 , 17869 , 17873 , 5 , 4 , 62 , 241 , 14 , 161 , 48 , 80 , 10 , 36 , - 53 , - 114 , - 43 , - 78 , 0 , 2 , 583 , 583 , 583 , 13 . 485535225 , 9 . 009009009 , 4 . 4765262157 , 2 . 014436797 , - 6 . 379049857 , - 4 . 36461306 <nl> + 050 , 4 , 8 , 35 , 055 , New Mexico , Taos County , 32937 , 32937 , 32938 , 32917 , 1 , - 21 , 79 , 320 , 55 , 259 , 24 , 61 , 10 , 44 , - 32 , - 125 , - 22 , - 81 , - 1 , - 1 , 470 , 470 , 470 , 9 . 7183205527 , 7 . 8657656974 , 1 . 8525548554 , 1 . 336269076 , - 3 . 796218966 , - 2 . 45994989 <nl> + 050 , 4 , 8 , 35 , 057 , New Mexico , Torrance County , 16383 , 16383 , 16381 , 16345 , - 2 , - 36 , 42 , 159 , 10 , 146 , 32 , 13 , 2 , 23 , - 34 , - 71 , - 32 , - 48 , - 2 , - 1 , 615 , 615 , 615 , 9 . 7170445517 , 8 . 922569211 , 0 . 7944753407 , 1 . 4056102182 , - 4 . 33905763 , - 2 . 933447412 <nl> + 050 , 4 , 8 , 35 , 059 , New Mexico , Union County , 4549 , 4549 , 4542 , 4433 , - 7 , - 109 , 10 , 46 , 2 , 36 , 8 , 10 , 0 , 2 , - 14 , - 123 , - 14 , - 121 , - 1 , 2 , 662 , 662 , 662 , 10 . 250696379 , 8 . 0222841226 , 2 . 2284122563 , 0 . 4456824513 , - 27 . 40947075 , - 26 . 9637883 <nl> + 050 , 4 , 8 , 35 , 061 , New Mexico , Valencia County , 76569 , 76571 , 76779 , 77070 , 208 , 291 , 249 , 980 , 158 , 590 , 91 , 390 , 17 , 43 , 102 , - 139 , 119 , - 96 , - 2 , - 3 , 1529 , 1529 , 1529 , 12 . 739764314 , 7 . 6698581076 , 5 . 0699062067 , 0 . 5589896587 , - 1 . 806966571 , - 1 . 247976912 <nl> + 040 , 1 , 2 , 36 , 000 , New York , New York , 19378102 , 19378104 , 19395206 , 19465197 , 17102 , 69991 , 61126 , 242972 , 36134 , 146864 , 24992 , 96108 , 15809 , 64716 , - 23415 , - 90342 , - 7606 , - 25626 , - 284 , - 491 , 585678 , 585989 , 585672 , 12 . 504862598 , 7 . 5585423033 , 4 . 9463202942 , 3 . 3306911408 , - 4 . 64956578 , - 1 . 31887464 <nl> + 050 , 1 , 2 , 36 , 001 , New York , Albany County , 304204 , 304206 , 303889 , 303565 , - 317 , - 324 , 769 , 3038 , 636 , 2571 , 133 , 467 , 188 , 601 , - 641 , - 1382 , - 453 , - 781 , 3 , - 10 , 17024 , 17024 , 17024 , 10 . 002403474 , 8 . 4648384898 , 1 . 5375649843 , 1 . 9787506544 , - 4 . 550138776 , - 2 . 571388122 <nl> + 050 , 1 , 2 , 36 , 003 , New York , Allegany County , 48946 , 48946 , 48951 , 48778 , 5 , - 173 , 125 , 505 , 123 , 454 , 2 , 51 , 1 , 26 , 4 , - 250 , 5 , - 224 , - 2 , 0 , 4584 , 4584 , 4584 , 10 . 334701061 , 9 . 2909985777 , 1 . 0437024834 , 0 . 532083619 , - 5 . 116188644 , - 4 . 584105025 <nl> + 050 , 1 , 2 , 36 , 005 , New York , Bronx County , 1385108 , 1385108 , 1387159 , 1392002 , 2051 , 4843 , 5675 , 22695 , 2279 , 9344 , 3396 , 13351 , 2026 , 8502 , - 3423 , - 17159 , - 1397 , - 8657 , 52 , 149 , 46710 , 46698 , 46727 , 16 . 332267184 , 6 . 7243315519 , 9 . 6079356324 , 6 . 1183932849 , - 12 . 34833103 , - 6 . 22993774 <nl> + 050 , 1 , 2 , 36 , 007 , New York , Broome County , 200600 , 200600 , 200368 , 199031 , - 232 , - 1337 , 510 , 2018 , 513 , 2074 , - 3 , - 56 , 78 , 241 , - 307 , - 1535 , - 229 , - 1294 , 0 , 13 , 10141 , 10141 , 10141 , 10 . 105183038 , 10 . 385604371 , - 0 . 280421333 , 1 . 2068132369 , - 7 . 68654904 , - 6 . 479735803 <nl> + 050 , 1 , 2 , 36 , 009 , New York , Cattaraugus County , 80317 , 80317 , 80250 , 79832 , - 67 , - 418 , 241 , 952 , 199 , 808 , 42 , 144 , 3 , 31 , - 109 , - 593 , - 106 , - 562 , - 3 , 0 , 2679 , 2679 , 2679 , 11 . 893904374 , 10 . 094826401 , 1 . 7990779725 , 0 . 387301508 , - 7 . 40870304 , - 7 . 021401532 <nl> + 050 , 1 , 2 , 36 , 011 , New York , Cayuga County , 80026 , 80027 , 79997 , 79738 , - 30 , - 259 , 202 , 800 , 164 , 683 , 38 , 117 , 4 , 16 , - 68 , - 388 , - 64 , - 372 , - 4 , - 4 , 4245 , 4245 , 4245 , 10 . 016589977 , 8 . 551663693 , 1 . 4649262842 , 0 . 2003317995 , - 4 . 858046139 , - 4 . 657714339 <nl> + 050 , 1 , 2 , 36 , 013 , New York , Chautauqua County , 134905 , 134905 , 134813 , 134368 , - 92 , - 445 , 366 , 1449 , 335 , 1348 , 31 , 101 , 16 , 55 , - 136 , - 601 , - 120 , - 546 , - 3 , 0 , 6514 , 6514 , 6514 , 10 . 76599017 , 10 . 015565735 , 0 . 7504244356 , 0 . 4086469699 , - 4 . 465396889 , - 4 . 056749919 <nl> + 050 , 1 , 2 , 36 , 015 , New York , Chemung County , 88830 , 88830 , 88830 , 88840 , 0 , 10 , 248 , 974 , 233 , 942 , 15 , 32 , 3 , 22 , - 14 , - 37 , - 11 , - 15 , - 4 , - 7 , 4916 , 4916 , 4916 , 10 . 964147014 , 10 . 603928632 , 0 . 3602183824 , 0 . 2476501379 , - 0 . 416502505 , - 0 . 168852367 <nl> + 050 , 1 , 2 , 36 , 017 , New York , Chenango County , 50477 , 50477 , 50396 , 50118 , - 81 , - 278 , 127 , 522 , 144 , 534 , - 17 , - 12 , 0 , 19 , - 63 , - 282 , - 63 , - 263 , - 1 , - 3 , 796 , 796 , 796 , 10 . 38661281 , 10 . 625385518 , - 0 . 238772708 , 0 . 3780567881 , - 5 . 611158645 , - 5 . 233101856 <nl> + 050 , 1 , 2 , 36 , 019 , New York , Clinton County , 82128 , 82128 , 82143 , 81945 , 15 , - 198 , 196 , 768 , 162 , 649 , 34 , 119 , 5 , 28 , - 22 , - 344 , - 17 , - 316 , - 2 , - 1 , 7153 , 7153 , 7153 , 9 . 3608307737 , 7 . 9103895471 , 1 . 4504412267 , 0 . 3412802886 , - 4 . 192872117 , - 3 . 851591829 <nl> + 050 , 1 , 2 , 36 , 021 , New York , Columbia County , 63096 , 63096 , 63020 , 62550 , - 76 , - 470 , 132 , 531 , 156 , 613 , - 24 , - 82 , 10 , 48 , - 59 , - 436 , - 49 , - 388 , - 3 , 0 , 2136 , 2136 , 2136 , 8 . 4574341005 , 9 . 7634785379 , - 1 . 306044437 , 0 . 764513817 , - 6 . 944333838 , - 6 . 179820021 <nl> + 050 , 1 , 2 , 36 , 023 , New York , Cortland County , 49336 , 49336 , 49324 , 49363 , - 12 , 39 , 140 , 542 , 115 , 409 , 25 , 133 , 7 , 30 , - 43 , - 123 , - 36 , - 93 , - 1 , - 1 , 3561 , 3561 , 3561 , 10 . 984222846 , 8 . 288832369 , 2 . 695390477 , 0 . 6079828144 , - 2 . 492729539 , - 1 . 884746724 <nl> + 050 , 1 , 2 , 36 , 025 , New York , Delaware County , 47980 , 47981 , 47843 , 47559 , - 138 , - 284 , 111 , 434 , 145 , 540 , - 34 , - 106 , 3 , 18 , - 106 , - 193 , - 103 , - 175 , - 1 , - 3 , 2435 , 2435 , 2435 , 9 . 0983417538 , 11 . 32051739 , - 2 . 222175636 , 0 . 3773505797 , - 4 . 046036771 , - 3 . 668686191 <nl> + 050 , 1 , 2 , 36 , 027 , New York , Dutchess County , 297488 , 297488 , 297739 , 297999 , 251 , 260 , 721 , 2879 , 541 , 2310 , 180 , 569 , 167 , 439 , - 88 , - 739 , 79 , - 300 , - 8 , - 9 , 19965 , 19964 , 19966 , 9 . 6653226754 , 7 . 7550869678 , 1 . 9102357076 , 1 . 4738022419 , - 2 . 480956394 , - 1 . 007154152 <nl> + 050 , 1 , 2 , 36 , 029 , New York , Erie County , 919040 , 919040 , 918751 , 918028 , - 289 , - 723 , 2436 , 9625 , 2274 , 9407 , 162 , 218 , 231 , 1101 , - 645 , - 1992 , - 414 , - 891 , - 37 , - 50 , 28387 , 28387 , 28387 , 10 . 480302747 , 10 . 242930696 , 0 . 2373720518 , 1 . 198837748 , - 2 . 169014345 , - 0 . 970176597 <nl> + 050 , 1 , 2 , 36 , 031 , New York , Essex County , 39370 , 39367 , 39316 , 39181 , - 51 , - 135 , 84 , 344 , 97 , 392 , - 13 , - 48 , 6 , 27 , - 43 , - 112 , - 37 , - 85 , - 1 , - 2 , 2647 , 2647 , 2647 , 8 . 7646661656 , 9 . 9876428399 , - 1 . 222976674 , 0 . 6879243793 , - 2 . 85361224 , - 2 . 165687861 <nl> + 050 , 1 , 2 , 36 , 033 , New York , Franklin County , 51599 , 51602 , 51609 , 51551 , 7 , - 58 , 129 , 513 , 111 , 441 , 18 , 72 , 10 , 44 , - 20 , - 174 , - 10 , - 130 , - 1 , 0 , 6400 , 6401 , 6400 , 9 . 9457153936 , 8 . 5498255138 , 1 . 3958898798 , 0 . 8530438154 , - 3 . 373400543 , - 2 . 520356727 <nl> + 050 , 1 , 2 , 36 , 035 , New York , Fulton County , 55531 , 55531 , 55471 , 55180 , - 60 , - 291 , 134 , 540 , 142 , 582 , - 8 , - 42 , 1 , 16 , - 51 , - 266 , - 50 , - 250 , - 2 , 1 , 1474 , 1444 , 1280 , 9 . 7604178905 , 10 . 519561504 , - 0 . 759143614 , 0 . 2891975671 , - 4 . 807909553 , - 4 . 518711986 <nl> + 050 , 1 , 2 , 36 , 037 , New York , Genesee County , 60079 , 60079 , 60080 , 59993 , 1 , - 87 , 163 , 645 , 160 , 609 , 3 , 36 , 6 , 29 , - 5 , - 151 , 1 , - 122 , - 3 , - 1 , 1908 , 1908 , 1908 , 10 . 743464392 , 10 . 143829171 , 0 . 5996352219 , 0 . 4830394843 , - 2 . 515136625 , - 2 . 032097141 <nl> + 050 , 1 , 2 , 36 , 039 , New York , Greene County , 49221 , 49221 , 49160 , 48954 , - 61 , - 206 , 109 , 430 , 128 , 492 , - 19 , - 62 , 7 , 32 , - 46 , - 172 , - 39 , - 140 , - 3 , - 4 , 3400 , 3400 , 3400 , 8 . 7653138186 , 10 . 029149765 , - 1 . 263835946 , 0 . 6523024237 , - 3 . 506125527 , - 2 . 853823104 <nl> + 050 , 1 , 2 , 36 , 041 , New York , Hamilton County , 4836 , 4836 , 4835 , 4793 , - 1 , - 42 , 8 , 35 , 8 , 74 , 0 , - 39 , 0 , 1 , - 1 , - 2 , - 1 , - 1 , 0 , - 2 , 80 , 80 , 80 , 7 . 270461155 , 15 . 371832156 , - 8 . 101371001 , 0 . 2077274616 , - 0 . 415454923 , - 0 . 207727462 <nl> + 050 , 1 , 2 , 36 , 043 , New York , Herkimer County , 64519 , 64519 , 64481 , 64160 , - 38 , - 321 , 163 , 652 , 164 , 659 , - 1 , - 7 , 4 , 25 , - 35 , - 331 , - 31 , - 306 , - 6 , - 8 , 1426 , 1426 , 1426 , 10 . 136737121 , 10 . 245567121 , - 0 . 10883 , 0 . 3886785706 , - 5 . 146104275 , - 4 . 757425704 <nl> + 050 , 1 , 2 , 36 , 045 , New York , Jefferson County , 116229 , 116229 , 116680 , 117910 , 451 , 1230 , 517 , 2014 , 236 , 910 , 281 , 1104 , 137 , 149 , 35 , - 16 , 172 , 133 , - 2 , - 7 , 6170 , 6170 , 6170 , 17 . 170382369 , 7 . 7582164628 , 9 . 4121659065 , 1 . 2703013769 , - 0 . 136408202 , 1 . 1338931753 <nl> + 050 , 1 , 2 , 36 , 047 , New York , Kings County , 2504700 , 2504700 , 2508515 , 2532645 , 3815 , 24130 , 10385 , 41555 , 3835 , 15753 , 6550 , 25802 , 3291 , 14044 , - 6047 , - 15630 , - 2756 , - 1586 , 21 , - 86 , 35609 , 35609 , 35609 , 16 . 486284903 , 6 . 2497520412 , 10 . 236532861 , 5 . 5717334899 , - 6 . 200953749 , - 0 . 629220259 <nl> + 050 , 1 , 2 , 36 , 049 , New York , Lewis County , 27087 , 27087 , 27101 , 27072 , 14 , - 29 , 93 , 357 , 56 , 257 , 37 , 100 , 3 , 9 , - 26 , - 137 , - 23 , - 128 , 0 , - 1 , 313 , 313 , 313 , 13 . 179997416 , 9 . 4881213889 , 3 . 6918760268 , 0 . 3322688424 , - 5 . 057870157 , - 4 . 725601314 <nl> + 050 , 1 , 2 , 36 , 051 , New York , Livingston County , 65393 , 65393 , 65349 , 65070 , - 44 , - 279 , 141 , 557 , 129 , 490 , 12 , 67 , 3 , 29 , - 58 , - 377 , - 55 , - 348 , - 1 , 2 , 5758 , 5758 , 5758 , 8 . 5417002124 , 7 . 5142425567 , 1 . 0274576557 , 0 . 4447204778 , - 5 . 781366212 , - 5 . 336645734 <nl> + 050 , 1 , 2 , 36 , 053 , New York , Madison County , 73442 , 73442 , 73464 , 73365 , 22 , - 99 , 172 , 680 , 130 , 548 , 42 , 132 , 4 , 25 , - 22 , - 254 , - 18 , - 229 , - 2 , - 2 , 5133 , 5133 , 5133 , 9 . 2624753965 , 7 . 4644654666 , 1 . 7980099299 , 0 . 3405321837 , - 3 . 459806986 , - 3 . 119274803 <nl> + 050 , 1 , 2 , 36 , 055 , New York , Monroe County , 744344 , 744344 , 744635 , 745625 , 291 , 990 , 2153 , 8440 , 1499 , 6194 , 654 , 2246 , 268 , 1042 , - 620 , - 2285 , - 352 , - 1243 , - 11 , - 13 , 26283 , 26527 , 26527 , 11 . 326882557 , 8 . 3126434313 , 3 . 0142391261 , 1 . 3984136996 , - 3 . 066578986 , - 1 . 668165287 <nl> + 050 , 1 , 2 , 36 , 057 , New York , Montgomery County , 50219 , 50219 , 50260 , 49916 , 41 , - 344 , 153 , 611 , 138 , 576 , 15 , 35 , 9 , 47 , 19 , - 429 , 28 , - 382 , - 2 , 3 , 920 , 920 , 920 , 12 . 198530586 , 11 . 499760422 , 0 . 6987701645 , 0 . 9383485066 , - 8 . 564925731 , - 7 . 626577224 <nl> + 050 , 1 , 2 , 36 , 059 , New York , Nassau County , 1339532 , 1339532 , 1341033 , 1344436 , 1501 , 3403 , 3684 , 14420 , 2570 , 10498 , 1114 , 3922 , 304 , 1841 , 145 , - 2235 , 449 , - 394 , - 62 , - 125 , 21666 , 21666 , 21666 , 10 . 739278688 , 7 . 8183736249 , 2 . 9209050635 , 1 . 3710826675 , - 1 . 664513722 , - 0 . 293431054 <nl> + 050 , 1 , 2 , 36 , 061 , New York , New York County , 1585873 , 1585873 , 1587481 , 1601948 , 1608 , 14467 , 4994 , 19820 , 2476 , 10152 , 2518 , 9668 , 2204 , 9406 , - 3091 , - 4464 , - 887 , 4942 , - 23 , - 143 , 67373 , 67470 , 67473 , 12 . 428556961 , 6 . 3660297815 , 6 . 0625271796 , 5 . 8982344489 , - 2 . 799247138 , 3 . 0989873109 <nl> + 050 , 1 , 2 , 36 , 063 , New York , Niagara County , 216469 , 216469 , 216542 , 216011 , 73 , - 531 , 572 , 2243 , 562 , 2285 , 10 , - 42 , 35 , 84 , 38 , - 566 , 73 , - 482 , - 10 , - 7 , 4319 , 4319 , 4319 , 10 . 37098344 , 10 . 565179296 , - 0 . 194195856 , 0 . 3883917115 , - 2 . 617020342 , - 2 . 22862863 <nl> + 050 , 1 , 2 , 36 , 065 , New York , Oneida County , 234878 , 234878 , 234870 , 234287 , - 8 , - 583 , 652 , 2563 , 591 , 2421 , 61 , 142 , 77 , 211 , - 139 , - 936 , - 62 , - 725 , - 7 , 0 , 13405 , 13405 , 13283 , 10 . 925980002 , 10 . 320638933 , 0 . 6053410692 , 0 . 8994856732 , - 3 . 990135498 , - 3 . 090649825 <nl> + 050 , 1 , 2 , 36 , 067 , New York , Onondaga County , 467026 , 467025 , 467253 , 466960 , 228 , - 293 , 1362 , 5381 , 976 , 3925 , 386 , 1456 , 215 , 636 , - 361 , - 2385 , - 146 , - 1749 , - 12 , 0 , 17069 , 17069 , 17069 , 11 . 519856821 , 8 . 4027946518 , 3 . 1170621689 , 1 . 3615738595 , - 5 . 105901973 , - 3 . 744328114 <nl> + 050 , 1 , 2 , 36 , 069 , New York , Ontario County , 107931 , 107931 , 108095 , 108525 , 164 , 430 , 263 , 1020 , 238 , 973 , 25 , 47 , 21 , 86 , 121 , 302 , 142 , 388 , - 3 , - 5 , 3329 , 3329 , 3329 , 9 . 4174129813 , 8 . 9834733635 , 0 . 4339396178 , 0 . 7940171729 , 2 . 7882928631 , 3 . 582310036 <nl> + 050 , 1 , 2 , 36 , 071 , New York , Orange County , 372813 , 372813 , 373551 , 374872 , 738 , 1321 , 1273 , 5097 , 603 , 2478 , 670 , 2619 , 239 , 495 , - 171 , - 1802 , 68 , - 1307 , 0 , 9 , 12230 , 12230 , 12230 , 13 . 620639665 , 6 . 6219236982 , 6 . 9987159668 , 1 . 3227813683 , - 4 . 815458638 , - 3 . 492677269 <nl> + 050 , 1 , 2 , 36 , 073 , New York , Orleans County , 42883 , 42883 , 42861 , 42622 , - 22 , - 239 , 104 , 429 , 111 , 402 , - 7 , 27 , 6 , 30 , - 20 , - 297 , - 14 , - 267 , - 1 , 1 , 2586 , 2586 , 2519 , 10 . 037083397 , 9 . 4053788473 , 0 . 6317045494 , 0 . 7018939438 , - 6 . 948750044 , - 6 . 2468561 <nl> + 050 , 1 , 2 , 36 , 075 , New York , Oswego County , 122109 , 122112 , 122166 , 122228 , 54 , 62 , 345 , 1385 , 247 , 987 , 98 , 398 , 6 , 25 , - 48 , - 359 , - 42 , - 334 , - 2 , - 2 , 4954 , 4954 , 4954 , 11 . 33415714 , 8 . 0771213696 , 3 . 2570357701 , 0 . 204587674 , - 2 . 937878999 , - 2 . 733291325 <nl> + 050 , 1 , 2 , 36 , 077 , New York , Otsego County , 62259 , 62259 , 62227 , 61917 , - 32 , - 310 , 119 , 478 , 156 , 605 , - 37 , - 127 , 10 , 44 , - 1 , - 226 , 9 , - 182 , - 4 , - 1 , 5320 , 5320 , 5320 , 7 . 7007346308 , 9 . 7467457147 , - 2 . 046011084 , 0 . 7088542338 , - 3 . 64093311 , - 2 . 932078876 <nl> + 050 , 1 , 2 , 36 , 079 , New York , Putnam County , 99710 , 99710 , 99718 , 99933 , 8 , 215 , 217 , 866 , 162 , 635 , 55 , 231 , 35 , 128 , - 82 , - 140 , - 47 , - 12 , 0 , - 4 , 2592 , 2598 , 2601 , 8 . 675138116 , 6 . 3611001197 , 2 . 3140379963 , 1 . 2822375044 , - 1 . 40244727 , - 0 . 120209766 <nl> + 050 , 1 , 2 , 36 , 081 , New York , Queens County , 2230722 , 2230722 , 2233895 , 2247848 , 3173 , 13953 , 7500 , 30197 , 3453 , 14060 , 4047 , 16137 , 3913 , 15949 , - 4774 , - 18127 , - 861 , - 2178 , - 13 , - 6 , 28000 , 28000 , 28000 , 13 . 475560736 , 6 . 2743446021 , 7 . 201216134 , 7 . 1173202033 , - 8 . 089263485 , - 0 . 971943282 <nl> + 050 , 1 , 2 , 36 , 083 , New York , Rensselaer County , 159429 , 159429 , 159465 , 159395 , 36 , - 70 , 443 , 1753 , 365 , 1485 , 78 , 268 , 75 , 278 , - 112 , - 613 , - 37 , - 335 , - 5 , - 3 , 5607 , 5607 , 5607 , 10 . 995421188 , 9 . 3144326664 , 1 . 6809885216 , 1 . 7437119739 , - 3 . 844947626 , - 2 . 101235652 <nl> + 050 , 1 , 2 , 36 , 085 , New York , Richmond County , 468730 , 468730 , 469393 , 470467 , 663 , 1074 , 1424 , 5643 , 898 , 3493 , 526 , 2150 , 186 , 539 , - 35 , - 1602 , 151 , - 1063 , - 14 , - 13 , 7838 , 7838 , 7837 , 12 . 00817143 , 7 . 4330219394 , 4 . 5751494903 , 1 . 1469793373 , - 3 . 409018364 , - 2 . 262039027 <nl> + 050 , 1 , 2 , 36 , 087 , New York , Rockland County , 311687 , 311687 , 312520 , 315158 , 833 , 2638 , 1204 , 4828 , 496 , 2050 , 708 , 2778 , 302 , 820 , - 169 , - 951 , 133 , - 131 , - 8 , - 9 , 7183 , 7183 , 7183 , 15 . 383683991 , 6 . 5320116365 , 8 . 8516723543 , 2 . 6128046546 , - 3 . 03021613 , - 0 . 417411475 <nl> + 050 , 1 , 2 , 36 , 089 , New York , St . Lawrence County , 111944 , 111944 , 111917 , 111690 , - 27 , - 227 , 293 , 1163 , 250 , 990 , 43 , 173 , 8 , 38 , - 76 , - 438 , - 68 , - 400 , - 2 , 0 , 10751 , 10751 , 10751 , 10 . 402178823 , 8 . 8548211818 , 1 . 5473576409 , 0 . 3398820252 , - 3 . 917587553 , - 3 . 577705528 <nl> + 050 , 1 , 2 , 36 , 091 , New York , Saratoga County , 219607 , 219607 , 219988 , 220882 , 381 , 894 , 547 , 2145 , 421 , 1685 , 126 , 460 , 68 , 82 , 189 , 359 , 257 , 441 , - 2 , - 7 , 3950 , 3950 , 3950 , 9 . 7307596344 , 7 . 6439766825 , 2 . 0867829519 , 0 . 3719917436 , 1 . 6285979994 , 2 . 000589743 <nl> + 050 , 1 , 2 , 36 , 093 , New York , Schenectady County , 154727 , 154727 , 154932 , 155058 , 205 , 126 , 467 , 1834 , 345 , 1481 , 122 , 353 , 76 , 277 , 12 , - 502 , 88 , - 225 , - 5 , - 2 , 4434 , 4434 , 4434 , 11 . 832639763 , 9 . 5551469402 , 2 . 2774928223 , 1 . 7871544243 , - 3 . 238814155 , - 1 . 451659731 <nl> + 050 , 1 , 2 , 36 , 095 , New York , Schoharie County , 32749 , 32749 , 32692 , 32578 , - 57 , - 114 , 67 , 274 , 83 , 281 , - 16 , - 7 , 1 , 8 , - 40 , - 110 , - 39 , - 102 , - 2 , - 5 , 1556 , 1556 , 1556 , 8 . 3958939789 , 8 . 6103876207 , - 0 . 214493642 , 0 . 2451355906 , - 3 . 370614371 , - 3 . 12547878 <nl> + 050 , 1 , 2 , 36 , 097 , New York , Schuyler County , 18343 , 18344 , 18338 , 18361 , - 6 , 23 , 37 , 149 , 44 , 180 , - 7 , - 31 , 4 , 15 , - 2 , 41 , 2 , 56 , - 1 , - 2 , 354 , 354 , 354 , 8 . 1201122646 , 9 . 8095315949 , - 1 . 68941933 , 0 . 8174609662 , 2 . 2343933077 , 3 . 051854274 <nl> + 050 , 1 , 2 , 36 , 099 , New York , Seneca County , 35251 , 35248 , 35206 , 35198 , - 42 , - 8 , 92 , 357 , 87 , 327 , 5 , 30 , 2 , 9 , - 48 , - 44 , - 46 , - 35 , - 1 , - 3 , 2809 , 2809 , 2809 , 10 . 141469235 , 9 . 2892449293 , 0 . 8522243054 , 0 . 2556672916 , - 1 . 249928981 , - 0 . 99426169 <nl> + 050 , 1 , 2 , 36 , 101 , New York , Steuben County , 98990 , 98989 , 98938 , 99033 , - 51 , 95 , 275 , 1087 , 249 , 959 , 26 , 128 , 15 , 74 , - 89 , - 98 , - 74 , - 24 , - 3 , - 9 , 1583 , 1583 , 1583 , 10 . 981406368 , 9 . 6882876785 , 1 . 2931186891 , 0 . 7475842421 , - 0 . 990043996 , - 0 . 242459754 <nl> + 050 , 1 , 2 , 36 , 103 , New York , Suffolk County , 1493350 , 1493350 , 1494388 , 1498816 , 1038 , 4428 , 4281 , 16846 , 2784 , 11275 , 1497 , 5571 , 432 , 2205 , - 873 , - 3314 , - 441 , - 1109 , - 18 , - 34 , 29406 , 29410 , 29410 , 11 . 256165634 , 7 . 5337330833 , 3 . 7224325505 , 1 . 4733376008 , - 2 . 214349573 , - 0 . 741011972 <nl> + 050 , 1 , 2 , 36 , 105 , New York , Sullivan County , 77547 , 77545 , 77470 , 76900 , - 75 , - 570 , 215 , 854 , 169 , 724 , 46 , 130 , 24 , 93 , - 141 , - 792 , - 117 , - 699 , - 4 , - 1 , 3825 , 3825 , 3825 , 11 . 06432597 , 9 . 3800608927 , 1 . 6842650774 , 1 . 2048973246 , - 10 . 26106109 , - 9 . 056163762 <nl> + 050 , 1 , 2 , 36 , 107 , New York , Tioga County , 51125 , 51125 , 51095 , 51043 , - 30 , - 52 , 131 , 521 , 116 , 417 , 15 , 104 , 0 , 3 , - 44 , - 156 , - 44 , - 153 , - 1 , - 3 , 523 , 523 , 523 , 10 . 201883726 , 8 . 1654232509 , 2 . 036460475 , 0 . 0587440522 , - 3 . 054690713 , - 2 . 99594666 <nl> + 050 , 1 , 2 , 36 , 109 , New York , Tompkins County , 101564 , 101564 , 101654 , 101723 , 90 , 69 , 229 , 910 , 142 , 587 , 87 , 323 , 146 , 547 , - 145 , - 808 , 1 , - 261 , 2 , 7 , 13232 , 13232 , 13232 , 8 . 9488978596 , 5 . 7725308172 , 3 . 1763670425 , 5 . 3791726695 , - 7 . 945834583 , - 2 . 566661914 <nl> + 050 , 1 , 2 , 36 , 111 , New York , Ulster County , 182493 , 182496 , 182473 , 182448 , - 23 , - 25 , 404 , 1631 , 358 , 1523 , 46 , 108 , 78 , 245 , - 143 , - 373 , - 65 , - 128 , - 4 , - 5 , 11773 , 11773 , 11773 , 8 . 9389210267 , 8 . 347012093 , 0 . 5919089337 , 1 . 3427563774 , - 2 . 044278077 , - 0 . 701521699 <nl> + 050 , 1 , 2 , 36 , 113 , New York , Warren County , 65707 , 65705 , 65723 , 65831 , 18 , 108 , 158 , 629 , 154 , 615 , 4 , 14 , 6 , 28 , 11 , 69 , 17 , 97 , - 3 , - 3 , 738 , 738 , 738 , 9 . 5626130714 , 9 . 3497727169 , 0 . 2128403545 , 0 . 4256807091 , 1 . 0489988902 , 1 . 4746795993 <nl> + 050 , 1 , 2 , 36 , 115 , New York , Washington County , 63216 , 63216 , 63322 , 63165 , 106 , - 157 , 156 , 623 , 150 , 621 , 6 , 2 , 2 , 17 , 98 , - 175 , 100 , - 158 , 0 , - 1 , 3164 , 3164 , 3164 , 9 . 8508147082 , 9 . 819190905 , 0 . 0316238032 , 0 . 2688023275 , - 2 . 767082783 , - 2 . 498280456 <nl> + 050 , 1 , 2 , 36 , 117 , New York , Wayne County , 93772 , 93772 , 93783 , 93436 , 11 , - 347 , 270 , 1047 , 196 , 784 , 74 , 263 , 10 , 48 , - 71 , - 663 , - 61 , - 615 , - 2 , 5 , 1390 , 1390 , 1390 , 11 . 18476223 , 8 . 3752183272 , 2 . 8095439031 , 0 . 512768469 , - 7 . 082614478 , - 6 . 569846009 <nl> + 050 , 1 , 2 , 36 , 119 , New York , Westchester County , 949113 , 949113 , 950283 , 955899 , 1170 , 5616 , 2756 , 10927 , 1681 , 6720 , 1075 , 4207 , 818 , 3742 , - 679 , - 2259 , 139 , 1483 , - 44 , - 74 , 28704 , 28706 , 28707 , 11 . 464802417 , 7 . 0507433183 , 4 . 4140590982 , 3 . 9261728418 , - 2 . 37018291 , 1 . 5559899317 <nl> + 050 , 1 , 2 , 36 , 121 , New York , Wyoming County , 42155 , 42155 , 42138 , 41944 , - 17 , - 194 , 99 , 398 , 79 , 326 , 20 , 72 , 0 , 7 , - 36 , - 274 , - 36 , - 267 , - 1 , 1 , 3961 , 3961 , 3961 , 9 . 4669489308 , 7 . 7543350539 , 1 . 7126138769 , 0 . 1665041269 , - 6 . 517447254 , - 6 . 350943127 <nl> + 050 , 1 , 2 , 36 , 123 , New York , Yates County , 25348 , 25348 , 25367 , 25454 , 19 , 87 , 90 , 349 , 70 , 257 , 20 , 92 , 0 , 10 , 1 , - 14 , 1 , - 4 , - 2 , - 1 , 1287 , 1287 , 1287 , 13 . 734479841 , 10 . 113929281 , 3 . 6205505598 , 0 . 3935381043 , - 0 . 550953346 , - 0 . 157415242 <nl> + 040 , 3 , 5 , 37 , 000 , North Carolina , North Carolina , 9535483 , 9535475 , 9560234 , 9656401 , 24759 , 96167 , 29777 , 122131 , 19235 , 78169 , 10542 , 43962 , 6074 , 18955 , 8092 , 32941 , 14166 , 51896 , 51 , 309 , 257246 , 257262 , 257265 , 12 . 710966306 , 8 . 1355554706 , 4 . 5754108355 , 1 . 9727699465 , 3 . 4283837935 , 5 . 40115374 <nl> + 050 , 3 , 5 , 37 , 001 , North Carolina , Alamance County , 151131 , 151131 , 151532 , 153291 , 401 , 1759 , 449 , 1836 , 364 , 1424 , 85 , 412 , 91 , 383 , 229 , 963 , 320 , 1346 , - 4 , 1 , 4229 , 4229 , 4229 , 12 . 046335086 , 9 . 343126995 , 2 . 7032080913 , 2 . 5129337353 , 6 . 3184208541 , 8 . 8313545894 <nl> + 050 , 3 , 5 , 37 , 003 , North Carolina , Alexander County , 37198 , 37198 , 37232 , 37087 , 34 , - 145 , 92 , 378 , 87 , 330 , 5 , 48 , 12 , 43 , 18 , - 237 , 30 , - 194 , - 1 , 1 , 1161 , 1161 , 1161 , 10 . 172365075 , 8 . 8806361765 , 1 . 2917288984 , 1 . 1571738048 , - 6 . 377911436 , - 5 . 220737631 <nl> + 050 , 3 , 5 , 37 , 005 , North Carolina , Alleghany County , 11155 , 11155 , 11160 , 11052 , 5 , - 108 , 23 , 103 , 22 , 132 , 1 , - 29 , 1 , 11 , 4 , - 91 , 5 , - 80 , - 1 , 1 , 111 , 111 , 111 , 9 . 2742661624 , 11 . 885467315 , - 2 . 611201153 , 0 . 9904556096 , - 8 . 193769134 , - 7 . 203313524 <nl> + 050 , 3 , 5 , 37 , 007 , North Carolina , Anson County , 26948 , 26948 , 26914 , 26609 , - 34 , - 305 , 64 , 269 , 44 , 272 , 20 , - 3 , 0 , 0 , - 54 , - 305 , - 54 , - 305 , 0 , 3 , 2484 , 2484 , 2484 , 10 . 051753452 , 10 . 163854791 , - 0 . 11210134 , 0 , - 11 . 39696953 , - 11 . 39696953 <nl> + 050 , 3 , 5 , 37 , 009 , North Carolina , Ashe County , 27281 , 27281 , 27304 , 27143 , 23 , - 161 , 65 , 257 , 84 , 323 , - 19 , - 66 , 7 , 34 , 37 , - 130 , 44 , - 96 , - 2 , 1 , 369 , 369 , 369 , 9 . 440373207 , 11 . 864749206 , - 2 . 424375999 , 1 . 248920969 , - 4 . 775286058 , - 3 . 526365089 <nl> + 050 , 3 , 5 , 37 , 011 , North Carolina , Avery County , 17797 , 17797 , 17751 , 17572 , - 46 , - 179 , 42 , 163 , 49 , 203 , - 7 , - 40 , 9 , 27 , - 47 , - 164 , - 38 , - 137 , - 1 , - 2 , 2414 , 2414 , 2414 , 9 . 2291141749 , 11 . 493927469 , - 2 . 264813294 , 1 . 5287489738 , - 9 . 285734507 , - 7 . 756985534 <nl> + 050 , 3 , 5 , 37 , 013 , North Carolina , Beaufort County , 47759 , 47759 , 47783 , 47691 , 24 , - 92 , 133 , 556 , 135 , 566 , - 2 , - 10 , 14 , 52 , 14 , - 132 , 28 , - 80 , - 2 , - 2 , 503 , 503 , 503 , 11 . 647150009 , 11 . 856631125 , - 0 . 209481115 , 1 . 0893017994 , - 2 . 765150722 , - 1 . 675848922 <nl> + 050 , 3 , 5 , 37 , 015 , North Carolina , Bertie County , 21282 , 21293 , 21271 , 20874 , - 22 , - 397 , 48 , 209 , 64 , 265 , - 16 , - 56 , 1 , 5 , - 7 , - 349 , - 6 , - 344 , 0 , 3 , 1324 , 1324 , 1324 , 9 . 9181397556 , 12 . 575631748 , - 2 . 657491992 , 0 . 2372760707 , - 16 . 56186974 , - 16 . 32459366 <nl> + 050 , 3 , 5 , 37 , 017 , North Carolina , Bladen County , 35190 , 35190 , 35214 , 34928 , 24 , - 286 , 89 , 364 , 97 , 401 , - 8 , - 37 , 12 , 43 , 21 , - 293 , 33 , - 250 , - 1 , 1 , 511 , 511 , 511 , 10 . 378945568 , 11 . 433948276 , - 1 . 055002709 , 1 . 2260842291 , - 8 . 35448091 , - 7 . 128396681 <nl> + 050 , 3 , 5 , 37 , 019 , North Carolina , Brunswick County , 107431 , 107431 , 108072 , 110097 , 641 , 2025 , 250 , 1051 , 262 , 1107 , - 12 , - 56 , 41 , 132 , 605 , 1932 , 646 , 2064 , 7 , 17 , 843 , 843 , 843 , 9 . 6347327072 , 10 . 148096201 , - 0 . 513363493 , 1 . 2100710917 , 17 . 711040524 , 18 . 921111615 <nl> + 050 , 3 , 5 , 37 , 021 , North Carolina , Buncombe County , 238318 , 238319 , 238846 , 241419 , 527 , 2573 , 635 , 2570 , 561 , 2312 , 74 , 258 , 118 , 352 , 336 , 1947 , 454 , 2299 , - 1 , 16 , 7673 , 7673 , 7673 , 10 . 702424703 , 9 . 6280178651 , 1 . 0744068379 , 1 . 4658573912 , 8 . 1080236953 , 9 . 5738810865 <nl> + 050 , 3 , 5 , 37 , 023 , North Carolina , Burke County , 90912 , 90914 , 90750 , 90904 , - 164 , 154 , 215 , 894 , 220 , 895 , - 5 , - 1 , 30 , 120 , - 188 , 41 , - 158 , 161 , - 1 , - 6 , 3352 , 3345 , 3345 , 9 . 842888128 , 9 . 85389807 , - 0 . 011009942 , 1 . 3211930373 , 0 . 4514076211 , 1 . 7726006584 <nl> + 050 , 3 , 5 , 37 , 025 , North Carolina , Cabarrus County , 178011 , 178011 , 178558 , 181468 , 547 , 2910 , 576 , 2382 , 327 , 1348 , 249 , 1034 , 99 , 352 , 200 , 1515 , 299 , 1867 , - 1 , 9 , 1480 , 1480 , 1480 , 13 . 232377662 , 7 . 4883480638 , 5 . 7440295979 , 1 . 9554143312 , 8 . 4160588402 , 10 . 371473171 <nl> + 050 , 3 , 5 , 37 , 027 , North Carolina , Caldwell County , 83029 , 83029 , 83012 , 82395 , - 17 , - 617 , 206 , 808 , 212 , 851 , - 6 , - 43 , 9 , 34 , - 16 , - 610 , - 7 , - 576 , - 4 , 2 , 968 , 968 , 968 , 9 . 7698404542 , 10 . 289770082 , - 0 . 519929628 , 0 . 4111071478 , - 7 . 375745887 , - 6 . 96463874 <nl> + 050 , 3 , 5 , 37 , 029 , North Carolina , Camden County , 9980 , 9980 , 10005 , 10014 , 25 , 9 , 22 , 95 , 5 , 48 , 17 , 47 , 7 , 23 , 1 , - 59 , 8 , - 36 , 0 , - 2 , 17 , 17 , 17 , 9 . 4909835656 , 4 . 7954443279 , 4 . 6955392377 , 2 . 2978170738 , - 5 . 89440032 , - 3 . 596583246 <nl> + 050 , 3 , 5 , 37 , 031 , North Carolina , Carteret County , 66469 , 66469 , 66716 , 67373 , 247 , 657 , 156 , 598 , 173 , 732 , - 17 , - 134 , 22 , 59 , 239 , 724 , 261 , 783 , 3 , 8 , 987 , 987 , 987 , 8 . 9194490227 , 10 . 918121546 , - 1 . 998672523 , 0 . 880012529 , 10 . 798797813 , 11 . 678810342 <nl> + 050 , 3 , 5 , 37 , 033 , North Carolina , Caswell County , 23719 , 23719 , 23718 , 23403 , - 1 , - 315 , 45 , 188 , 42 , 239 , 3 , - 51 , 0 , 3 , - 2 , - 270 , - 2 , - 267 , - 2 , 3 , 1368 , 1368 , 1368 , 7 . 9794571423 , 10 . 144097112 , - 2 . 164639969 , 0 . 1273317629 , - 11 . 45985866 , - 11 . 3325269 <nl> + 050 , 3 , 5 , 37 , 035 , North Carolina , Catawba County , 154358 , 154356 , 154344 , 154181 , - 12 , - 163 , 455 , 1809 , 358 , 1484 , 97 , 325 , 80 , 280 , - 190 , - 771 , - 110 , - 491 , 1 , 3 , 2408 , 2408 , 2408 , 11 . 726764444 , 9 . 6199659671 , 2 . 1067984766 , 1 . 8150879183 , - 4 . 997974232 , - 3 . 182886314 <nl> + 050 , 3 , 5 , 37 , 037 , North Carolina , Chatham County , 63505 , 63505 , 63803 , 64195 , 298 , 392 , 159 , 650 , 136 , 583 , 23 , 67 , 68 , 246 , 205 , 82 , 273 , 328 , 2 , - 3 , 778 , 778 , 778 , 10 . 156408694 , 9 . 1095173362 , 1 . 0468913577 , 3 . 8438100595 , 1 . 2812700198 , 5 . 1250800794 <nl> + 050 , 3 , 5 , 37 , 039 , North Carolina , Cherokee County , 27444 , 27444 , 27435 , 27194 , - 9 , - 241 , 54 , 180 , 85 , 315 , - 31 , - 135 , 1 , 12 , 24 , - 117 , 25 , - 105 , - 3 , - 1 , 436 , 436 , 436 , 6 . 5899064599 , 11 . 532336305 , - 4 . 942429845 , 0 . 4393270973 , - 4 . 283439199 , - 3 . 844112102 <nl> + 050 , 3 , 5 , 37 , 041 , North Carolina , Chowan County , 14793 , 14793 , 14763 , 14853 , - 30 , 90 , 37 , 161 , 39 , 176 , - 2 , - 15 , 7 , 28 , - 35 , 77 , - 28 , 105 , 0 , 0 , 273 , 273 , 273 , 10 . 872501351 , 11 . 885467315 , - 1 . 012965964 , 1 . 8908698001 , 5 . 1998919503 , 7 . 0907617504 <nl> + 050 , 3 , 5 , 37 , 043 , North Carolina , Clay County , 10587 , 10587 , 10579 , 10563 , - 8 , - 16 , 18 , 57 , 34 , 143 , - 16 , - 86 , 0 , 2 , 9 , 67 , 9 , 69 , - 1 , 1 , 91 , 91 , 91 , 5 . 392110491 , 13 . 527575442 , - 8 . 135464951 , 0 . 1891968593 , 6 . 3380947876 , 6 . 527291647 <nl> + 050 , 3 , 5 , 37 , 045 , North Carolina , Cleveland County , 98078 , 98078 , 98019 , 97489 , - 59 , - 530 , 280 , 1134 , 268 , 1122 , 12 , 12 , 4 , 18 , - 73 , - 564 , - 69 , - 546 , - 2 , 4 , 2050 , 2050 , 2050 , 11 . 600548315 , 11 . 47779119 , 0 . 122757125 , 0 . 1841356875 , - 5 . 769584876 , - 5 . 585449189 <nl> + 050 , 3 , 5 , 37 , 047 , North Carolina , Columbus County , 58098 , 58098 , 57978 , 57712 , - 120 , - 266 , 162 , 665 , 165 , 647 , - 3 , 18 , 11 , 47 , - 129 , - 331 , - 118 , - 284 , 1 , 0 , 2925 , 2925 , 2925 , 11 . 496239952 , 11 . 185063532 , 0 . 3111764197 , 0 . 8125162071 , - 5 . 722188607 , - 4 . 9096724 <nl> + 050 , 3 , 5 , 37 , 049 , North Carolina , Craven County , 103505 , 103505 , 103925 , 104786 , 420 , 861 , 417 , 1671 , 223 , 910 , 194 , 761 , 120 , 160 , 108 , - 54 , 228 , 106 , - 2 , - 6 , 4939 , 4939 , 4939 , 16 . 012572409 , 8 . 7201920359 , 7 . 2923803729 , 1 . 5332205777 , - 0 . 517461945 , 1 . 0157586328 <nl> + 050 , 3 , 5 , 37 , 051 , North Carolina , Cumberland County , 319431 , 319431 , 320169 , 324885 , 738 , 4716 , 1419 , 5893 , 543 , 2150 , 876 , 3743 , 534 , 359 , - 690 , 621 , - 156 , 980 , 18 , - 7 , 10157 , 10157 , 10157 , 18 . 271338524 , 6 . 6661085739 , 11 . 60522995 , 1 . 1130851061 , 1 . 9254201974 , 3 . 0385053034 <nl> + 050 , 3 , 5 , 37 , 053 , North Carolina , Currituck County , 23547 , 23547 , 23652 , 23955 , 105 , 303 , 57 , 229 , 61 , 187 , - 4 , 42 , 8 , 23 , 101 , 236 , 109 , 259 , 0 , 2 , 135 , 135 , 135 , 9 . 6204339698 , 7 . 8559875649 , 1 . 7644464049 , 0 . 9662444598 , 9 . 9145083706 , 10 . 88075283 <nl> + 050 , 3 , 5 , 37 , 055 , North Carolina , Dare County , 33920 , 33920 , 34016 , 34307 , 96 , 291 , 89 , 370 , 70 , 281 , 19 , 89 , 16 , 72 , 61 , 129 , 77 , 201 , 0 , 1 , 152 , 152 , 152 , 10 . 830906137 , 8 . 2256341203 , 2 . 6052720167 , 2 . 1076357888 , 3 . 7761807883 , 5 . 8838165771 <nl> + 050 , 3 , 5 , 37 , 057 , North Carolina , Davidson County , 162878 , 162878 , 162873 , 162697 , - 5 , - 176 , 429 , 1766 , 371 , 1526 , 58 , 240 , 35 , 130 , - 93 , - 543 , - 58 , - 413 , - 5 , - 3 , 1691 , 1691 , 1691 , 10 . 848665418 , 9 . 3743281015 , 1 . 4743373161 , 0 . 7985993795 , - 3 . 335688178 , - 2 . 537088798 <nl> + 050 , 3 , 5 , 37 , 059 , North Carolina , Davie County , 41240 , 41240 , 41331 , 41552 , 91 , 221 , 92 , 414 , 89 , 326 , 3 , 88 , 6 , 23 , 83 , 114 , 89 , 137 , - 1 , - 4 , 365 , 365 , 365 , 9 . 9899858837 , 7 . 8665106234 , 2 . 1234752603 , 0 . 5549992158 , 2 . 7508656781 , 3 . 3058648939 <nl> + 050 , 3 , 5 , 37 , 061 , North Carolina , Duplin County , 58505 , 58505 , 58740 , 59542 , 235 , 802 , 184 , 794 , 126 , 504 , 58 , 290 , 82 , 282 , 94 , 230 , 176 , 512 , 1 , 0 , 679 , 679 , 679 , 13 . 425542348 , 8 . 5220067297 , 4 . 9035356183 , 4 . 7682656702 , 3 . 8890110076 , 8 . 6572766778 <nl> + 050 , 3 , 5 , 37 , 063 , North Carolina , Durham County , 267587 , 267587 , 268411 , 273392 , 824 , 4981 , 1052 , 4248 , 423 , 1690 , 629 , 2558 , 355 , 1321 , - 163 , 1102 , 192 , 2423 , 3 , 0 , 10121 , 10121 , 10121 , 15 . 680976296 , 6 . 2384298352 , 9 . 4425464606 , 4 . 8763111315 , 4 . 067899218 , 8 . 9442103495 <nl> + 050 , 3 , 5 , 37 , 065 , North Carolina , Edgecombe County , 56552 , 56552 , 56552 , 56041 , 0 , - 511 , 177 , 712 , 172 , 567 , 5 , 145 , 7 , 19 , - 9 , - 684 , - 2 , - 665 , - 3 , 9 , 1430 , 1430 , 1430 , 12 . 647322658 , 10 . 071674083 , 2 . 575648575 , 0 . 3374987788 , - 12 . 14995604 , - 11 . 81245726 <nl> + 050 , 3 , 5 , 37 , 067 , North Carolina , Forsyth County , 350670 , 350670 , 351383 , 354952 , 713 , 3569 , 1143 , 4680 , 706 , 2822 , 437 , 1858 , 253 , 904 , 34 , 818 , 287 , 1722 , - 11 , - 11 , 9851 , 9851 , 9851 , 13 . 251502474 , 7 . 9905427311 , 5 . 2609597429 , 2 . 5596919309 , 2 . 3161814153 , 4 . 8758733462 <nl> + 050 , 3 , 5 , 37 , 069 , North Carolina , Franklin County , 60619 , 60619 , 60835 , 61140 , 216 , 305 , 166 , 647 , 131 , 497 , 35 , 150 , 16 , 56 , 163 , 104 , 179 , 160 , 2 , - 5 , 1640 , 1640 , 1640 , 10 . 608731297 , 8 . 1492109039 , 2 . 4595203935 , 0 . 9182209469 , 1 . 7052674728 , 2 . 6234884198 <nl> + 050 , 3 , 5 , 37 , 071 , North Carolina , Gaston County , 206086 , 206086 , 206196 , 207031 , 110 , 835 , 632 , 2597 , 521 , 2052 , 111 , 545 , 82 , 269 , - 80 , 34 , 2 , 303 , - 3 , - 13 , 3317 , 3317 , 3317 , 12 . 569362602 , 9 . 931587239 , 2 . 6377753632 , 1 . 3019478398 , 0 . 164558463 , 1 . 4665063028 <nl> + 050 , 3 , 5 , 37 , 073 , North Carolina , Gates County , 12197 , 12190 , 12192 , 12043 , 2 , - 149 , 27 , 105 , 15 , 127 , 12 , - 22 , 0 , 0 , - 8 , - 128 , - 8 , - 128 , - 2 , 1 , 61 , 61 , 61 , 8 . 6651537033 , 10 . 480709717 , - 1 . 815556014 , 0 , - 10 . 56323499 , - 10 . 56323499 <nl> + 050 , 3 , 5 , 37 , 075 , North Carolina , Graham County , 8861 , 8861 , 8882 , 8802 , 21 , - 80 , 24 , 84 , 13 , 96 , 11 , - 12 , 1 , 7 , 10 , - 75 , 11 , - 68 , - 1 , 0 , 93 , 93 , 93 , 9 . 5001130966 , 10 . 85727211 , - 1 . 357159014 , 0 . 7916760914 , - 8 . 482243836 , - 7 . 690567745 <nl> + 050 , 3 , 5 , 37 , 077 , North Carolina , Granville County , 59916 , 59919 , 60059 , 59976 , 140 , - 83 , 150 , 616 , 130 , 509 , 20 , 107 , 28 , 104 , 92 , - 296 , 120 , - 192 , 0 , 2 , 6948 , 6950 , 6947 , 10 . 263673095 , 8 . 4808597492 , 1 . 7828133461 , 1 . 7328279252 , - 4 . 931894864 , - 3 . 199066939 <nl> + 050 , 3 , 5 , 37 , 079 , North Carolina , Greene County , 21362 , 21362 , 21396 , 21556 , 34 , 160 , 55 , 245 , 35 , 200 , 20 , 45 , 12 , 38 , 2 , 78 , 14 , 116 , 0 , - 1 , 2320 , 2320 , 2320 , 11 . 408083442 , 9 . 3127211771 , 2 . 0953622649 , 1 . 7694170237 , 3 . 6319612591 , 5 . 4013782827 <nl> + 050 , 3 , 5 , 37 , 081 , North Carolina , Guilford County , 488406 , 488406 , 489670 , 495279 , 1264 , 5609 , 1472 , 5965 , 964 , 3841 , 508 , 2124 , 393 , 1248 , 364 , 2228 , 757 , 3476 , - 1 , 9 , 15492 , 15512 , 15513 , 12 . 112302261 , 7 . 7993885978 , 4 . 3129136636 , 2 . 5341413616 , 4 . 5240921104 , 7 . 058233472 <nl> + 050 , 3 , 5 , 37 , 083 , North Carolina , Halifax County , 54691 , 54691 , 54548 , 54173 , - 143 , - 375 , 156 , 621 , 187 , 667 , - 31 , - 46 , 7 , 30 , - 120 , - 358 , - 113 , - 328 , 1 , - 1 , 1416 , 1416 , 1416 , 11 . 423735985 , 12 . 26993865 , - 0 . 846202666 , 0 . 5518713036 , - 6 . 585664223 , - 6 . 033792919 <nl> + 050 , 3 , 5 , 37 , 085 , North Carolina , Harnett County , 114678 , 114678 , 115789 , 119256 , 1111 , 3467 , 427 , 1728 , 214 , 867 , 213 , 861 , 81 , 200 , 793 , 2371 , 874 , 2571 , 24 , 35 , 3380 , 3380 , 3380 , 14 . 703567402 , 7 . 3773107277 , 7 . 3262566743 , 1 . 7018017826 , 20 . 174860133 , 21 . 876661916 <nl> + 050 , 3 , 5 , 37 , 087 , North Carolina , Haywood County , 59036 , 59036 , 58974 , 58855 , - 62 , - 119 , 127 , 542 , 171 , 688 , - 44 , - 146 , 4 , 12 , - 17 , 19 , - 13 , 31 , - 5 , - 4 , 813 , 813 , 813 , 9 . 1997725517 , 11 . 677940066 , - 2 . 478167514 , 0 . 2036850011 , 0 . 3225012518 , 0 . 526186253 <nl> + 050 , 3 , 5 , 37 , 089 , North Carolina , Henderson County , 106740 , 106740 , 106965 , 107927 , 225 , 962 , 262 , 1105 , 313 , 1258 , - 51 , - 153 , 50 , 187 , 233 , 932 , 283 , 1119 , - 7 , - 4 , 1299 , 1299 , 1299 , 10 . 284235802 , 11 . 708206913 , - 1 . 423971111 , 1 . 7404091358 , 8 . 6741246766 , 10 . 414533812 <nl> + 050 , 3 , 5 , 37 , 091 , North Carolina , Hertford County , 24669 , 24658 , 24620 , 24433 , - 38 , - 187 , 61 , 270 , 53 , 273 , 8 , - 3 , 2 , 12 , - 48 , - 195 , - 46 , - 183 , 0 , - 1 , 2297 , 2297 , 2297 , 11 . 008501009 , 11 . 130817687 , - 0 . 122316678 , 0 . 4892667115 , - 7 . 950584062 , - 7 . 461317351 <nl> + 050 , 3 , 5 , 37 , 093 , North Carolina , Hoke County , 46952 , 46952 , 47506 , 49272 , 554 , 1766 , 221 , 922 , 31 , 239 , 190 , 683 , 47 , 105 , 308 , 962 , 355 , 1067 , 9 , 16 , 670 , 670 , 670 , 19 . 053917213 , 4 . 9391390605 , 14 . 114778152 , 2 . 16991465 , 19 . 880551365 , 22 . 050466015 <nl> + 050 , 3 , 5 , 37 , 095 , North Carolina , Hyde County , 5810 , 5810 , 5818 , 5822 , 8 , 4 , 14 , 49 , 6 , 47 , 8 , 2 , 2 , 6 , - 2 , - 4 , 0 , 2 , 0 , 0 , 830 , 830 , 830 , 8 . 4192439863 , 8 . 0756013746 , 0 . 3436426117 , 1 . 0309278351 , - 0 . 687285223 , 0 . 3436426117 <nl> + 050 , 3 , 5 , 37 , 097 , North Carolina , Iredell County , 159437 , 159437 , 159766 , 161202 , 329 , 1436 , 443 , 1823 , 328 , 1340 , 115 , 483 , 45 , 138 , 172 , 818 , 217 , 956 , - 3 , - 3 , 1292 , 1292 , 1292 , 11 . 359387852 , 8 . 3497420304 , 3 . 0096458214 , 0 . 8598988061 , 5 . 097081329 , 5 . 9569801351 <nl> + 050 , 3 , 5 , 37 , 099 , North Carolina , Jackson County , 40271 , 40271 , 40331 , 40285 , 60 , - 46 , 109 , 440 , 80 , 289 , 29 , 151 , 8 , 40 , 24 , - 235 , 32 , - 195 , - 1 , - 2 , 3574 , 3574 , 3574 , 10 . 915947207 , 7 . 169792597 , 3 . 7461546095 , 0 . 992358837 , - 5 . 830108167 , - 4 . 83774933 <nl> + 050 , 3 , 5 , 37 , 101 , North Carolina , Johnston County , 168878 , 168878 , 169674 , 172595 , 796 , 2921 , 554 , 2290 , 299 , 1180 , 255 , 1110 , 64 , 248 , 465 , 1548 , 529 , 1796 , 12 , 15 , 1771 , 1771 , 1771 , 13 . 381287817 , 6 . 8951614081 , 6 . 4861264093 , 1 . 4491525671 , 9 . 0455168303 , 10 . 494669397 <nl> + 050 , 3 , 5 , 37 , 103 , North Carolina , Jones County , 10153 , 10153 , 10157 , 10020 , 4 , - 137 , 24 , 95 , 7 , 109 , 17 , - 14 , 4 , 10 , - 15 , - 132 , - 11 , - 122 , - 2 , - 1 , 91 , 91 , 91 , 9 . 4166625366 , 10 . 804381226 , - 1 . 38771869 , 0 . 9912276354 , - 13 . 08420479 , - 12 . 09297715 <nl> + 050 , 3 , 5 , 37 , 105 , North Carolina , Lee County , 57866 , 57866 , 57898 , 58752 , 32 , 854 , 209 , 843 , 118 , 501 , 91 , 342 , 60 , 212 , - 119 , 298 , - 59 , 510 , 0 , 2 , 999 , 999 , 999 , 14 . 453493356 , 8 . 5897985426 , 5 . 8636948135 , 3 . 6348049721 , 5 . 1093013288 , 8 . 7441063009 <nl> + 050 , 3 , 5 , 37 , 107 , North Carolina , Lenoir County , 59495 , 59495 , 59398 , 59339 , - 97 , - 59 , 166 , 714 , 215 , 727 , - 49 , - 13 , 18 , 70 , - 65 , - 113 , - 47 , - 43 , - 1 , - 3 , 1242 , 1242 , 1242 , 12 . 026579752 , 12 . 245551092 , - 0 . 21897134 , 1 . 1790764463 , - 1 . 903366263 , - 0 . 724289817 <nl> + 050 , 3 , 5 , 37 , 109 , North Carolina , Lincoln County , 78265 , 78265 , 78390 , 78932 , 125 , 542 , 189 , 817 , 172 , 692 , 17 , 125 , 23 , 93 , 86 , 325 , 109 , 418 , - 1 , - 1 , 679 , 679 , 679 , 10 . 386341389 , 8 . 7972438693 , 1 . 5890975197 , 1 . 1822885547 , 4 . 1316535513 , 5 . 313942106 <nl> + 050 , 3 , 5 , 37 , 111 , North Carolina , McDowell County , 44996 , 44996 , 45045 , 45104 , 49 , 59 , 115 , 467 , 112 , 456 , 3 , 11 , 6 , 20 , 42 , 32 , 48 , 52 , - 2 , - 4 , 1666 , 1666 , 1666 , 10 . 360625187 , 10 . 116584765 , 0 . 244040422 , 0 . 4437098581 , 0 . 709935773 , 1 . 1536456311 <nl> + 050 , 3 , 5 , 37 , 113 , North Carolina , Macon County , 33922 , 33922 , 33928 , 34074 , 6 , 146 , 76 , 320 , 93 , 377 , - 17 , - 57 , 10 , 43 , 17 , 163 , 27 , 206 , - 4 , - 3 , 439 , 439 , 439 , 9 . 4114878974 , 11 . 087909179 , - 1 . 676421282 , 1 . 2646686862 , 4 . 7939766477 , 6 . 058645334 <nl> + 050 , 3 , 5 , 37 , 115 , North Carolina , Madison County , 20764 , 20764 , 20782 , 20816 , 18 , 34 , 39 , 167 , 53 , 220 , - 14 , - 53 , 3 , 13 , 30 , 74 , 33 , 87 , - 1 , 0 , 1028 , 1028 , 1028 , 8 . 0292321746 , 10 . 577431607 , - 2 . 548199433 , 0 . 6250300495 , 3 . 5578633588 , 4 . 1828934083 <nl> + 050 , 3 , 5 , 37 , 117 , North Carolina , Martin County , 24505 , 24505 , 24491 , 24180 , - 14 , - 311 , 61 , 268 , 65 , 295 , - 4 , - 27 , 1 , 12 , - 9 , - 298 , - 8 , - 286 , - 2 , 2 , 156 , 156 , 156 , 11 . 012718046 , 12 . 122208297 , - 1 . 109490251 , 0 . 4931067782 , - 12 . 24548499 , - 11 . 75237821 <nl> + 050 , 3 , 5 , 37 , 119 , North Carolina , Mecklenburg County , 919628 , 919628 , 923141 , 944373 , 3513 , 21232 , 3408 , 13971 , 1251 , 5173 , 2157 , 8798 , 828 , 3312 , 526 , 9039 , 1354 , 12351 , 2 , 83 , 16015 , 16015 , 16015 , 14 . 96213683 , 5 . 5399852424 , 9 . 4221515876 , 3 . 5469613615 , 9 . 6802487157 , 13 . 227210077 <nl> + 050 , 3 , 5 , 37 , 121 , North Carolina , Mitchell County , 15579 , 15579 , 15552 , 15445 , - 27 , - 107 , 35 , 140 , 57 , 222 , - 22 , - 82 , 5 , 17 , - 9 , - 41 , - 4 , - 24 , - 1 , - 1 , 204 , 204 , 204 , 9 . 0331322386 , 14 . 323966836 , - 5 . 290834597 , 1 . 0968803433 , - 2 . 645417298 , - 1 . 548536955 <nl> + 050 , 3 , 5 , 37 , 123 , North Carolina , Montgomery County , 27798 , 27798 , 27784 , 27667 , - 14 , - 117 , 81 , 317 , 58 , 244 , 23 , 73 , 19 , 49 , - 54 , - 235 , - 35 , - 186 , - 2 , - 4 , 1093 , 1093 , 1093 , 11 . 433517881 , 8 . 8005626589 , 2 . 6329552217 , 1 . 7673261077 , - 8 . 475951741 , - 6 . 708625633 <nl> + 050 , 3 , 5 , 37 , 125 , North Carolina , Moore County , 88247 , 88247 , 88567 , 89352 , 320 , 785 , 232 , 926 , 252 , 1064 , - 20 , - 138 , 31 , 85 , 308 , 833 , 339 , 918 , 1 , 5 , 848 , 848 , 848 , 10 . 409231167 , 11 . 960498879 , - 1 . 551267712 , 0 . 9554909819 , 9 . 3638116221 , 10 . 319302604 <nl> + 050 , 3 , 5 , 37 , 127 , North Carolina , Nash County , 95840 , 95840 , 95851 , 96116 , 11 , 265 , 281 , 1191 , 255 , 934 , 26 , 257 , 32 , 129 , - 45 , - 117 , - 13 , 12 , - 2 , - 4 , 2210 , 2210 , 2210 , 12 . 408382691 , 9 . 7308391546 , 2 . 6775435361 , 1 . 3439809967 , - 1 . 218959509 , 0 . 1250214881 <nl> + 050 , 3 , 5 , 37 , 129 , North Carolina , New Hanover County , 202667 , 202667 , 203264 , 206189 , 597 , 2925 , 544 , 2249 , 405 , 1613 , 139 , 636 , 76 , 278 , 380 , 1996 , 456 , 2274 , 2 , 15 , 6698 , 6698 , 6698 , 10 . 985387822 , 7 . 8788041607 , 3 . 1065836616 , 1 . 3579092106 , 9 . 7495927494 , 11 . 10750196 <nl> + 050 , 3 , 5 , 37 , 131 , North Carolina , Northampton County , 22099 , 22098 , 22051 , 21893 , - 47 , - 158 , 49 , 206 , 56 , 288 , - 7 , - 82 , 0 , 1 , - 40 , - 75 , - 40 , - 74 , 0 , - 2 , 752 , 752 , 752 , 9 . 3755689059 , 13 . 10759148 , - 3 . 732022574 , 0 . 0455124704 , - 3 . 413435281 , - 3 . 367922811 <nl> + 050 , 3 , 5 , 37 , 133 , North Carolina , Onslow County , 177772 , 177772 , 179485 , 179719 , 1713 , 234 , 1037 , 4202 , 199 , 848 , 838 , 3354 , 447 , 239 , 414 , - 3404 , 861 , - 3165 , 14 , 45 , 17805 , 17805 , 17808 , 23 . 396175989 , 4 . 721550985 , 18 . 674625004 , 1 . 3307201479 , - 18 . 95301834 , - 17 . 62229819 <nl> + 050 , 3 , 5 , 37 , 135 , North Carolina , Orange County , 133801 , 133801 , 134200 , 135755 , 399 , 1555 , 300 , 1238 , 152 , 686 , 148 , 552 , 181 , 640 , 69 , 365 , 250 , 1005 , 1 , - 2 , 9557 , 9557 , 9557 , 9 . 1718990202 , 5 . 0823285362 , 4 . 089570484 , 4 . 7415309959 , 2 . 7041543961 , 7 . 445685392 <nl> + 050 , 3 , 5 , 37 , 137 , North Carolina , Pamlico County , 13144 , 13144 , 13128 , 13197 , - 16 , 69 , 24 , 104 , 27 , 150 , - 3 , - 46 , 0 , 3 , - 10 , 111 , - 10 , 114 , - 3 , 1 , 705 , 705 , 705 , 7 . 9012345679 , 11 . 396011396 , - 3 . 494776828 , 0 . 2279202279 , 8 . 433048433 , 8 . 660968661 <nl> + 050 , 3 , 5 , 37 , 139 , North Carolina , Pasquotank County , 40661 , 40661 , 40714 , 40696 , 53 , - 18 , 129 , 515 , 84 , 354 , 45 , 161 , 13 , 35 , - 4 , - 214 , 9 , - 179 , - 1 , 0 , 3063 , 3063 , 3063 , 12 . 652008353 , 8 . 6967203046 , 3 . 9552880482 , 0 . 8598452279 , - 5 . 257339393 , - 4 . 397494165 <nl> + 050 , 3 , 5 , 37 , 141 , North Carolina , Pender County , 52217 , 52217 , 52440 , 53399 , 223 , 959 , 150 , 588 , 101 , 455 , 49 , 133 , 25 , 95 , 147 , 722 , 172 , 817 , 2 , 9 , 1090 , 1090 , 1090 , 11 . 111216092 , 8 . 5979648334 , 2 . 513251259 , 1 . 7951794707 , 13 . 643363977 , 15 . 438543448 <nl> + 050 , 3 , 5 , 37 , 143 , North Carolina , Perquimans County , 13453 , 13453 , 13490 , 13487 , 37 , - 3 , 30 , 133 , 26 , 133 , 4 , 0 , 1 , 3 , 32 , - 5 , 33 , - 2 , 0 , - 1 , 84 , 84 , 84 , 9 . 8602513252 , 9 . 8602513252 , 0 , 0 . 222411684 , - 0 . 37068614 , - 0 . 148274456 <nl> + 050 , 3 , 5 , 37 , 145 , North Carolina , Person County , 39464 , 39464 , 39448 , 39637 , - 16 , 189 , 106 , 446 , 98 , 416 , 8 , 30 , 8 , 31 , - 31 , 129 , - 23 , 160 , - 1 , - 1 , 442 , 442 , 442 , 11 . 279003604 , 10 . 520326231 , 0 . 7586773724 , 0 . 7839666182 , 3 . 2623127015 , 4 . 0462793197 <nl> + 050 , 3 , 5 , 37 , 147 , North Carolina , Pitt County , 168148 , 168148 , 168752 , 171134 , 604 , 2382 , 524 , 2200 , 304 , 1157 , 220 , 1043 , 37 , 150 , 340 , 1182 , 377 , 1332 , 7 , 7 , 6526 , 6526 , 6526 , 12 . 945517026 , 6 . 8081650906 , 6 . 1373519356 , 0 . 8826488882 , 6 . 9552732387 , 7 . 8379221268 <nl> + 050 , 3 , 5 , 37 , 149 , North Carolina , Polk County , 20510 , 20510 , 20447 , 20256 , - 63 , - 191 , 32 , 146 , 76 , 288 , - 44 , - 142 , 4 , 20 , - 22 , - 69 , - 18 , - 49 , - 1 , 0 , 330 , 330 , 330 , 7 . 1739183844 , 14 . 15129106 , - 6 . 977372675 , 0 . 9827285458 , - 3 . 390413483 , - 2 . 407684937 <nl> + 050 , 3 , 5 , 37 , 151 , North Carolina , Randolph County , 141752 , 141752 , 141896 , 142358 , 144 , 462 , 403 , 1650 , 330 , 1366 , 73 , 284 , 58 , 213 , 18 , - 26 , 76 , 187 , - 5 , - 9 , 1298 , 1298 , 1298 , 11 . 609335313 , 9 . 6111224468 , 1 . 998212866 , 1 . 4986596495 , - 0 . 182934981 , 1 . 3157246688 <nl> + 050 , 3 , 5 , 37 , 153 , North Carolina , Richmond County , 46639 , 46639 , 46654 , 46611 , 15 , - 43 , 142 , 597 , 118 , 526 , 24 , 71 , 20 , 62 , - 26 , - 172 , - 6 , - 110 , - 3 , - 4 , 1160 , 1160 , 1160 , 12 . 802230204 , 11 . 279686914 , 1 . 5225432906 , 1 . 3295448453 , - 3 . 688414732 , - 2 . 358869887 <nl> + 050 , 3 , 5 , 37 , 155 , North Carolina , Robeson County , 134168 , 134168 , 134477 , 135517 , 309 , 1040 , 501 , 2081 , 316 , 1199 , 185 , 882 , 76 , 286 , 49 , - 121 , 125 , 165 , - 1 , - 7 , 4105 , 4105 , 4105 , 15 . 415157374 , 8 . 8816788521 , 6 . 5334785217 , 2 . 1185655978 , - 0 . 896316214 , 1 . 2222493833 <nl> + 050 , 3 , 5 , 37 , 157 , North Carolina , Rockingham County , 93643 , 93640 , 93626 , 93329 , - 14 , - 297 , 233 , 978 , 270 , 1060 , - 37 , - 82 , 27 , 93 , 0 , - 308 , 27 , - 215 , - 4 , 0 , 1055 , 1055 , 1055 , 10 . 462410741 , 11 . 339627183 , - 0 . 877216442 , 0 . 9948918189 , - 3 . 29491054 , - 2 . 300018721 <nl> + 050 , 3 , 5 , 37 , 159 , North Carolina , Rowan County , 138428 , 138428 , 138344 , 138019 , - 84 , - 325 , 370 , 1574 , 352 , 1428 , 18 , 146 , 39 , 125 , - 140 , - 599 , - 101 , - 474 , - 1 , 3 , 4286 , 4287 , 4288 , 11 . 390815703 , 10 . 334234322 , 1 . 0565813803 , 0 . 9046073461 , - 4 . 334878403 , - 3 . 430271057 <nl> + 050 , 3 , 5 , 37 , 161 , North Carolina , Rutherford County , 67810 , 67809 , 67763 , 67538 , - 46 , - 225 , 173 , 708 , 191 , 793 , - 18 , - 85 , 6 , 24 , - 31 , - 161 , - 25 , - 137 , - 3 , - 3 , 1223 , 1223 , 1223 , 10 . 465554578 , 11 . 722012402 , - 1 . 256457824 , 0 . 354764562 , - 2 . 379878937 , - 2 . 025114375 <nl> + 050 , 3 , 5 , 37 , 163 , North Carolina , Sampson County , 63431 , 63431 , 63568 , 63734 , 137 , 166 , 203 , 873 , 155 , 585 , 48 , 288 , 61 , 196 , 32 , - 320 , 93 , - 124 , - 4 , 2 , 1087 , 1087 , 1087 , 13 . 715416883 , 9 . 1907432719 , 4 . 5246736108 , 3 . 0792917629 , - 5 . 027415123 , - 1 . 94812336 <nl> + 050 , 3 , 5 , 37 , 165 , North Carolina , Scotland County , 36157 , 36157 , 36099 , 35861 , - 58 , - 238 , 118 , 483 , 83 , 362 , 35 , 121 , 6 , 22 , - 101 , - 385 , - 95 , - 363 , 2 , 4 , 1730 , 1730 , 1730 , 13 . 424124514 , 10 . 061145081 , 3 . 362979433 , 0 . 611450806 , - 10 . 70038911 , - 10 . 0889383 <nl> + 050 , 3 , 5 , 37 , 167 , North Carolina , Stanly County , 60585 , 60585 , 60583 , 60626 , - 2 , 43 , 162 , 693 , 154 , 630 , 8 , 63 , 15 , 67 , - 23 , - 84 , - 8 , - 17 , - 2 , - 3 , 2051 , 2051 , 2051 , 11 . 434794446 , 10 . 395267678 , 1 . 0395267678 , 1 . 1055284674 , - 1 . 38603569 , - 0 . 280507223 <nl> + 050 , 3 , 5 , 37 , 169 , North Carolina , Stokes County , 47401 , 47401 , 47364 , 47242 , - 37 , - 122 , 105 , 422 , 131 , 476 , - 26 , - 54 , 4 , 17 , - 13 , - 84 , - 9 , - 67 , - 2 , - 1 , 456 , 456 , 456 , 8 . 9212100712 , 10 . 062786715 , - 1 . 141576644 , 0 . 3593852398 , - 1 . 775785891 , - 1 . 416400651 <nl> + 050 , 3 , 5 , 37 , 171 , North Carolina , Surry County , 73673 , 73673 , 73716 , 73714 , 43 , - 2 , 195 , 821 , 202 , 810 , - 7 , 11 , 28 , 104 , 26 , - 114 , 54 , - 10 , - 4 , - 3 , 870 , 870 , 870 , 11 . 137488978 , 10 . 988265618 , 0 . 1492233602 , 1 . 4108390423 , - 1 . 546496642 , - 0 . 1356576 <nl> + 050 , 3 , 5 , 37 , 173 , North Carolina , Swain County , 13981 , 13981 , 13993 , 14043 , 12 , 50 , 44 , 175 , 36 , 178 , 8 , - 3 , 2 , 7 , 2 , 47 , 4 , 54 , 0 , - 1 , 244 , 244 , 244 , 12 . 483949208 , 12 . 697959766 , - 0 . 214010558 , 0 . 4993579683 , 3 . 352832073 , 3 . 8521900414 <nl> + 050 , 3 , 5 , 37 , 175 , North Carolina , Transylvania County , 33090 , 33090 , 33076 , 32820 , - 14 , - 256 , 64 , 287 , 86 , 356 , - 22 , - 69 , 8 , 36 , 3 , - 218 , 11 , - 182 , - 3 , - 5 , 1070 , 1070 , 1070 , 8 . 7106956416 , 10 . 804904698 , - 2 . 094209057 , 1 . 0926308122 , - 6 . 616486585 , - 5 . 523855773 <nl> + 050 , 3 , 5 , 37 , 177 , North Carolina , Tyrrell County , 4407 , 4407 , 4417 , 4364 , 10 , - 53 , 12 , 46 , 6 , 47 , 6 , - 1 , 4 , 22 , 1 , - 74 , 5 , - 52 , - 1 , 0 , 632 , 632 , 632 , 10 . 47716661 , 10 . 704931101 , - 0 . 227764492 , 5 . 0108188133 , - 16 . 85457237 , - 11 . 84375356 <nl> + 050 , 3 , 5 , 37 , 179 , North Carolina , Union County , 201292 , 201292 , 202201 , 205463 , 909 , 3262 , 612 , 2456 , 255 , 1095 , 357 , 1361 , 106 , 361 , 437 , 1531 , 543 , 1892 , 9 , 9 , 2050 , 2050 , 2050 , 12 . 049138506 , 5 . 3720711174 , 6 . 6770673888 , 1 . 7710663684 , 7 . 5110875623 , 9 . 2821539307 <nl> + 050 , 3 , 5 , 37 , 181 , North Carolina , Vance County , 45422 , 45419 , 45376 , 45307 , - 43 , - 69 , 146 , 607 , 124 , 478 , 22 , 129 , 12 , 25 , - 78 , - 222 , - 66 , - 197 , 1 , - 1 , 846 , 846 , 846 , 13 . 387294201 , 10 . 542218497 , 2 . 8450757033 , 0 . 5513712603 , - 4 . 896176792 , - 4 . 344805531 <nl> + 050 , 3 , 5 , 37 , 183 , North Carolina , Wake County , 900993 , 900993 , 906788 , 929780 , 5795 , 22992 , 3117 , 12622 , 1059 , 4274 , 2058 , 8348 , 704 , 2924 , 2964 , 11610 , 3668 , 14534 , 69 , 110 , 20983 , 20983 , 20984 , 13 . 745203009 , 4 . 6543335177 , 9 . 0908694914 , 3 . 184200095 , 12 . 643147436 , 15 . 827347531 <nl> + 050 , 3 , 5 , 37 , 185 , North Carolina , Warren County , 20972 , 20975 , 20944 , 20861 , - 31 , - 83 , 51 , 203 , 45 , 252 , 6 , - 49 , 0 , 1 , - 35 , - 33 , - 35 , - 32 , - 2 , - 2 , 1168 , 1168 , 1168 , 9 . 7117569669 , 12 . 055974166 , - 2 . 344217199 , 0 . 0478411673 , - 1 . 578758522 , - 1 . 530917354 <nl> + 050 , 3 , 5 , 37 , 187 , North Carolina , Washington County , 13228 , 13228 , 13194 , 12973 , - 34 , - 221 , 29 , 148 , 15 , 176 , 14 , - 28 , 0 , 11 , - 47 , - 206 , - 47 , - 195 , - 1 , 2 , 151 , 151 , 151 , 11 . 311957809 , 13 . 452057936 , - 2 . 140100126 , 0 . 840753621 , - 15 . 74502236 , - 14 . 90426874 <nl> + 050 , 3 , 5 , 37 , 189 , North Carolina , Watauga County , 51079 , 51079 , 51033 , 51333 , - 46 , 300 , 85 , 344 , 90 , 338 , - 5 , 6 , 8 , 36 , - 50 , 258 , - 42 , 294 , 1 , 0 , 5323 , 5323 , 5323 , 6 . 7209815759 , 6 . 6037551531 , 0 . 1172264228 , 0 . 703358537 , 5 . 0407361819 , 5 . 7440947189 <nl> + 050 , 3 , 5 , 37 , 191 , North Carolina , Wayne County , 122623 , 122623 , 122852 , 123697 , 229 , 845 , 390 , 1615 , 308 , 1192 , 82 , 423 , 77 , 143 , 74 , 284 , 151 , 427 , - 4 , - 5 , 3219 , 3219 , 3219 , 13 . 100844051 , 9 . 669477467 , 3 . 4313665843 , 1 . 1600128169 , 2 . 3038016784 , 3 . 4638144953 <nl> + 050 , 3 , 5 , 37 , 193 , North Carolina , Wilkes County , 69340 , 69340 , 69287 , 68984 , - 53 , - 303 , 163 , 665 , 184 , 713 , - 21 , - 48 , 19 , 76 , - 49 , - 331 , - 30 , - 255 , - 2 , 0 , 967 , 967 , 967 , 9 . 6187920822 , 10 . 313080834 , - 0 . 694288752 , 1 . 0992905237 , - 4 . 787699518 , - 3 . 688408994 <nl> + 050 , 3 , 5 , 37 , 195 , North Carolina , Wilson County , 81234 , 81234 , 81374 , 81452 , 140 , 78 , 248 , 1040 , 219 , 806 , 29 , 234 , 46 , 194 , 68 , - 351 , 114 , - 157 , - 3 , 1 , 1593 , 1593 , 1593 , 12 . 774372643 , 9 . 9001387985 , 2 . 8742338447 , 2 . 38291182 , - 4 . 311350767 , - 1 . 928438947 <nl> + 050 , 3 , 5 , 37 , 197 , North Carolina , Yadkin County , 38406 , 38406 , 38398 , 38279 , - 8 , - 119 , 97 , 404 , 101 , 379 , - 4 , 25 , 9 , 26 , - 11 , - 168 , - 2 , - 142 , - 2 , - 2 , 304 , 304 , 304 , 10 . 537710135 , 9 . 8856241115 , 0 . 6520860232 , 0 . 6781694641 , - 4 . 382018076 , - 3 . 703848612 <nl> + 050 , 3 , 5 , 37 , 199 , North Carolina , Yancey County , 17818 , 17818 , 17776 , 17701 , - 42 , - 75 , 39 , 173 , 61 , 197 , - 22 , - 24 , 5 , 25 , - 24 , - 75 , - 19 , - 50 , - 1 , - 1 , 165 , 165 , 165 , 9 . 7527975872 , 11 . 105786848 , - 1 . 352989261 , 1 . 4093638132 , - 4 . 22809144 , - 2 . 818727626 <nl> + 040 , 2 , 4 , 38 , 000 , North Dakota , North Dakota , 672591 , 672591 , 674629 , 683932 , 2038 , 9303 , 2280 , 8960 , 1226 , 5915 , 1054 , 3045 , 211 , 577 , 771 , 5597 , 982 , 6174 , 2 , 84 , 25056 , 25056 , 25056 , 13 . 190427224 , 8 . 7077429722 , 4 . 4826842519 , 0 . 8494281817 , 8 . 2396005774 , 9 . 0890287591 <nl> + 050 , 2 , 4 , 38 , 001 , North Dakota , Adams County , 2343 , 2343 , 2347 , 2307 , 4 , - 40 , 6 , 27 , 3 , 35 , 3 , - 8 , 0 , 0 , 1 , - 32 , 1 , - 32 , 0 , 0 , 52 , 52 , 52 , 11 . 602922217 , 15 . 040825097 , - 3 . 437902879 , 0 , - 13 . 75161152 , - 13 . 75161152 <nl> + 050 , 2 , 4 , 38 , 003 , North Dakota , Barnes County , 11066 , 11066 , 11072 , 11056 , 6 , - 16 , 27 , 111 , 28 , 139 , - 1 , - 28 , 4 , 19 , 4 , - 6 , 8 , 13 , - 1 , - 1 , 492 , 492 , 492 , 10 . 032537961 , 12 . 563268257 , - 2 . 530730296 , 1 . 7172812726 , - 0 . 542299349 , 1 . 1749819234 <nl> + 050 , 2 , 4 , 38 , 005 , North Dakota , Benson County , 6660 , 6660 , 6690 , 6723 , 30 , 33 , 33 , 119 , 2 , 53 , 31 , 66 , 2 , 11 , - 2 , - 44 , 0 , - 33 , - 1 , 0 , 16 , 16 , 16 , 17 . 743979721 , 7 . 9027808842 , 9 . 8411988369 , 1 . 6401998062 , - 6 . 560799225 , - 4 . 920599418 <nl> + 050 , 2 , 4 , 38 , 007 , North Dakota , Billings County , 783 , 783 , 773 , 816 , - 10 , 43 , 2 , 9 , 0 , 4 , 2 , 5 , 0 , 0 , - 11 , 38 , - 11 , 38 , - 1 , 0 , 9 , 9 , 9 , 11 . 327879169 , 5 . 0346129641 , 6 . 2932662052 , 0 , 47 . 828823159 , 47 . 828823159 <nl> + 050 , 2 , 4 , 38 , 009 , North Dakota , Bottineau County , 6429 , 6429 , 6431 , 6443 , 2 , 12 , 16 , 64 , 18 , 104 , - 2 , - 40 , 2 , 5 , 2 , 47 , 4 , 52 , 0 , 0 , 270 , 270 , 270 , 9 . 9425198074 , 16 . 156594687 , - 6 . 21407488 , 0 . 77675936 , 7 . 3015379835 , 8 . 0782973435 <nl> + 050 , 2 , 4 , 38 , 011 , North Dakota , Bowman County , 3151 , 3151 , 3145 , 3134 , - 6 , - 11 , 9 , 36 , 6 , 45 , 3 , - 9 , 0 , 1 , - 8 , - 2 , - 8 , - 1 , - 1 , - 1 , 82 , 82 , 82 , 11 . 466794075 , 14 . 333492594 , - 2 . 866698519 , 0 . 3185220577 , - 0 . 637044115 , - 0 . 318522058 <nl> + 050 , 2 , 4 , 38 , 013 , North Dakota , Burke County , 1968 , 1968 , 1964 , 2033 , - 4 , 69 , 4 , 19 , 2 , 30 , 2 , - 11 , 0 , 0 , - 5 , 80 , - 5 , 80 , - 1 , 0 , 2 , 2 , 2 , 9 . 5071303478 , 15 . 011258444 , - 5 . 504128096 , 0 , 40 . 030022517 , 40 . 030022517 <nl> + 050 , 2 , 4 , 38 , 015 , North Dakota , Burleigh County , 81308 , 81308 , 81706 , 83145 , 398 , 1439 , 275 , 1065 , 151 , 610 , 124 , 455 , 10 , 36 , 262 , 941 , 272 , 977 , 2 , 7 , 2763 , 2763 , 2763 , 12 . 920758746 , 7 . 4006223802 , 5 . 5201363656 , 0 . 4367580421 , 11 . 416369934 , 11 . 853127976 <nl> + 050 , 2 , 4 , 38 , 017 , North Dakota , Cass County , 149778 , 149778 , 150263 , 152368 , 485 , 2105 , 553 , 2155 , 223 , 871 , 330 , 1284 , 84 , 273 , 73 , 550 , 157 , 823 , - 2 , - 2 , 5010 , 5010 , 5010 , 14 . 241766376 , 5 . 7561849249 , 8 . 4855814507 , 1 . 8041773645 , 3 . 6347895622 , 5 . 4389669267 <nl> + 050 , 2 , 4 , 38 , 019 , North Dakota , Cavalier County , 3993 , 3993 , 3990 , 3939 , - 3 , - 51 , 10 , 33 , 10 , 61 , 0 , - 28 , 0 , 0 , - 2 , - 23 , - 2 , - 23 , - 1 , 0 , 83 , 83 , 83 , 8 . 3238743852 , 15 . 386555682 , - 7 . 062681297 , 0 , - 5 . 801488208 , - 5 . 801488208 <nl> + 050 , 2 , 4 , 38 , 021 , North Dakota , Dickey County , 5289 , 5289 , 5290 , 5317 , 1 , 27 , 15 , 70 , 15 , 81 , 0 , - 11 , 0 , 1 , 2 , 38 , 2 , 39 , - 1 , - 1 , 299 , 299 , 299 , 13 . 198830961 , 15 . 272932969 , - 2 . 074102008 , 0 . 188554728 , 7 . 1650796644 , 7 . 3536343924 <nl> + 050 , 2 , 4 , 38 , 023 , North Dakota , Divide County , 2071 , 2071 , 2081 , 2125 , 10 , 44 , 4 , 18 , 5 , 24 , - 1 , - 6 , 0 , 0 , 10 , 49 , 10 , 49 , 1 , 1 , 66 , 66 , 66 , 8 . 5592011412 , 11 . 412268188 , - 2 . 853067047 , 0 , 23 . 300047551 , 23 . 300047551 <nl> + 050 , 2 , 4 , 38 , 025 , North Dakota , Dunn County , 3536 , 3536 , 3542 , 3720 , 6 , 178 , 8 , 31 , 3 , 16 , 5 , 15 , 1 , 7 , 1 , 154 , 2 , 161 , - 1 , 2 , 127 , 127 , 127 , 8 . 5375929496 , 4 . 4064995869 , 4 . 1310933627 , 1 . 9278435693 , 42 . 412558524 , 44 . 340402093 <nl> + 050 , 2 , 4 , 38 , 027 , North Dakota , Eddy County , 2385 , 2385 , 2386 , 2380 , 1 , - 6 , 6 , 25 , 5 , 48 , 1 , - 23 , 1 , 2 , - 1 , 15 , 0 , 17 , 0 , 0 , 84 , 84 , 84 , 10 . 490977759 , 20 . 142677298 , - 9 . 651699538 , 0 . 8392782207 , 6 . 2945866555 , 7 . 1338648762 <nl> + 050 , 2 , 4 , 38 , 029 , North Dakota , Emmons County , 3550 , 3550 , 3546 , 3546 , - 4 , 0 , 4 , 20 , 6 , 53 , - 2 , - 33 , 0 , 1 , - 2 , 33 , - 2 , 34 , 0 , - 1 , 53 , 53 , 53 , 5 . 6401579244 , 14 . 9464185 , - 9 . 306260575 , 0 . 2820078962 , 9 . 3062605753 , 9 . 5882684715 <nl> + 050 , 2 , 4 , 38 , 031 , North Dakota , Foster County , 3343 , 3343 , 3350 , 3341 , 7 , - 9 , 8 , 31 , 8 , 45 , 0 , - 14 , 1 , 3 , 5 , 2 , 6 , 5 , 1 , 0 , 61 , 61 , 61 , 9 . 2661784487 , 13 . 4509042 , - 4 . 184725751 , 0 . 8967269466 , 0 . 5978179644 , 1 . 4945449111 <nl> + 050 , 2 , 4 , 38 , 033 , North Dakota , Golden Valley County , 1680 , 1680 , 1685 , 1752 , 5 , 67 , 4 , 16 , 1 , 8 , 3 , 8 , 0 , 0 , 2 , 59 , 2 , 59 , 0 , 0 , 52 , 52 , 52 , 9 . 3104451557 , 4 . 6552225778 , 4 . 6552225778 , 0 , 34 . 332266511 , 34 . 332266511 <nl> + 050 , 2 , 4 , 38 , 035 , North Dakota , Grand Forks County , 66861 , 66861 , 66945 , 66598 , 84 , - 347 , 227 , 893 , 116 , 449 , 111 , 444 , 43 , 79 , - 71 , - 882 , - 28 , - 803 , 1 , 12 , 4216 , 4216 , 4216 , 13 . 373969433 , 6 . 7244258404 , 6 . 6495435927 , 1 . 1831395131 , - 13 . 20922849 , - 12 . 02608898 <nl> + 050 , 2 , 4 , 38 , 037 , North Dakota , Grant County , 2394 , 2394 , 2390 , 2337 , - 4 , - 53 , 4 , 22 , 4 , 34 , 0 , - 12 , 0 , 0 , - 4 , - 42 , - 4 , - 42 , 0 , 1 , 25 , 25 , 25 , 9 . 3082293209 , 14 . 385445314 , - 5 . 077215993 , 0 , - 17 . 77025598 , - 17 . 77025598 <nl> + 050 , 2 , 4 , 38 , 039 , North Dakota , Griggs County , 2420 , 2420 , 2414 , 2372 , - 6 , - 42 , 5 , 26 , 4 , 45 , 1 , - 19 , 0 , 0 , - 6 , - 24 , - 6 , - 24 , - 1 , 1 , 47 , 47 , 47 , 10 . 865022984 , 18 . 804847472 , - 7 . 939824488 , 0 , - 10 . 02925198 , - 10 . 02925198 <nl> + 050 , 2 , 4 , 38 , 041 , North Dakota , Hettinger County , 2477 , 2477 , 2477 , 2515 , 0 , 38 , 6 , 23 , 4 , 24 , 2 , - 1 , 0 , 0 , - 2 , 40 , - 2 , 40 , 0 , - 1 , 169 , 169 , 169 , 9 . 2147435897 , 9 . 6153846154 , - 0 . 400641026 , 0 , 16 . 025641026 , 16 . 025641026 <nl> + 050 , 2 , 4 , 38 , 043 , North Dakota , Kidder County , 2435 , 2435 , 2443 , 2414 , 8 , - 29 , 6 , 23 , 2 , 22 , 4 , 1 , 0 , 0 , 4 , - 29 , 4 , - 29 , 0 , - 1 , 0 , 0 , 0 , 9 . 4708667902 , 9 . 0590899732 , 0 . 411776817 , 0 , - 11 . 94152769 , - 11 . 94152769 <nl> + 050 , 2 , 4 , 38 , 045 , North Dakota , LaMoure County , 4139 , 4139 , 4133 , 4105 , - 6 , - 28 , 8 , 29 , 6 , 48 , 2 , - 19 , 0 , 0 , - 7 , - 9 , - 7 , - 9 , - 1 , 0 , 65 , 65 , 65 , 7 . 0405438213 , 11 . 653313911 , - 4 . 61277009 , 0 , - 2 . 184996358 , - 2 . 184996358 <nl> + 050 , 2 , 4 , 38 , 047 , North Dakota , Logan County , 1990 , 1990 , 2000 , 1985 , 10 , - 15 , 4 , 17 , 3 , 26 , 1 , - 9 , 0 , 0 , 8 , - 6 , 8 , - 6 , 1 , 0 , 72 , 72 , 72 , 8 . 5319949812 , 13 . 048933501 , - 4 . 516938519 , 0 , - 3 . 011292346 , - 3 . 011292346 <nl> + 050 , 2 , 4 , 38 , 049 , North Dakota , McHenry County , 5395 , 5395 , 5397 , 5505 , 2 , 108 , 13 , 52 , 10 , 65 , 3 , - 13 , 0 , 1 , 0 , 119 , 0 , 120 , - 1 , 1 , 48 , 48 , 48 , 9 . 5395340305 , 11 . 924417538 , - 2 . 384883508 , 0 . 1834525775 , 21 . 830856724 , 22 . 014309301 <nl> + 050 , 2 , 4 , 38 , 051 , North Dakota , McIntosh County , 2809 , 2809 , 2800 , 2769 , - 9 , - 31 , 6 , 26 , 10 , 57 , - 4 , - 31 , 0 , 0 , - 6 , 1 , - 6 , 1 , 1 , - 1 , 103 , 103 , 103 , 9 . 3374034836 , 20 . 470461483 , - 11 . 133058 , 0 , 0 . 3591309032 , 0 . 3591309032 <nl> + 050 , 2 , 4 , 38 , 053 , North Dakota , McKenzie County , 6360 , 6360 , 6412 , 7019 , 52 , 607 , 22 , 96 , 5 , 43 , 17 , 53 , 0 , 0 , 34 , 546 , 34 , 546 , 1 , 8 , 152 , 152 , 152 , 14 . 295287023 , 6 . 4030973122 , 7 . 8921897104 , 0 , 81 . 304444941 , 81 . 304444941 <nl> + 050 , 2 , 4 , 38 , 055 , North Dakota , McLean County , 8962 , 8962 , 8991 , 9068 , 29 , 77 , 22 , 82 , 16 , 115 , 6 , - 33 , 0 , 0 , 23 , 108 , 23 , 108 , 0 , 2 , 196 , 196 , 196 , 9 . 081344482 , 12 . 736031895 , - 3 . 654687413 , 0 , 11 . 960795171 , 11 . 960795171 <nl> + 050 , 2 , 4 , 38 , 057 , North Dakota , Mercer County , 8424 , 8424 , 8427 , 8449 , 3 , 22 , 27 , 109 , 11 , 81 , 16 , 28 , 0 , 2 , - 13 , - 8 , - 13 , - 6 , 0 , 0 , 126 , 126 , 126 , 12 . 917753022 , 9 . 5994311448 , 3 . 3183218772 , 0 . 2370229912 , - 0 . 948091965 , - 0 . 711068974 <nl> + 050 , 2 , 4 , 38 , 059 , North Dakota , Morton County , 27471 , 27471 , 27599 , 27734 , 128 , 135 , 102 , 391 , 57 , 233 , 45 , 158 , 1 , 4 , 81 , - 24 , 82 , - 20 , 1 , - 3 , 597 , 597 , 597 , 14 . 132615257 , 8 . 4217374803 , 5 . 7108777764 , 0 . 1445791842 , - 0 . 867475105 , - 0 . 722895921 <nl> + 050 , 2 , 4 , 38 , 061 , North Dakota , Mountrail County , 7673 , 7673 , 7730 , 8097 , 57 , 367 , 28 , 114 , 10 , 72 , 18 , 42 , 0 , 2 , 38 , 317 , 38 , 319 , 1 , 6 , 564 , 564 , 564 , 14 . 405762305 , 9 . 0983761926 , 5 . 3073861123 , 0 . 252732672 , 40 . 058128515 , 40 . 310861187 <nl> + 050 , 2 , 4 , 38 , 063 , North Dakota , Nelson County , 3126 , 3126 , 3120 , 3057 , - 6 , - 63 , 6 , 28 , 10 , 64 , - 4 , - 36 , 0 , 1 , - 1 , - 28 , - 1 , - 27 , - 1 , 0 , 80 , 80 , 80 , 9 . 0658895904 , 20 . 72203335 , - 11 . 65614376 , 0 . 3237817711 , - 9 . 06588959 , - 8 . 742107819 <nl> + 050 , 2 , 4 , 38 , 065 , North Dakota , Oliver County , 1846 , 1846 , 1836 , 1830 , - 10 , - 6 , 4 , 18 , 2 , 8 , 2 , 10 , 0 , 0 , - 12 , - 15 , - 12 , - 15 , 0 , - 1 , 2 , 2 , 2 , 9 . 8199672668 , 4 . 3644298963 , 5 . 4555373704 , 0 , - 8 . 183306056 , - 8 . 183306056 <nl> + 050 , 2 , 4 , 38 , 067 , North Dakota , Pembina County , 7413 , 7413 , 7416 , 7342 , 3 , - 74 , 20 , 79 , 13 , 105 , 7 , - 26 , 0 , 4 , - 4 , - 53 , - 4 , - 49 , 0 , 1 , 149 , 149 , 149 , 10 . 706057731 , 14 . 229570402 , - 3 . 523512671 , 0 . 5420788725 , - 7 . 18254506 , - 6 . 640466188 <nl> + 050 , 2 , 4 , 38 , 069 , North Dakota , Pierce County , 4357 , 4357 , 4361 , 4375 , 4 , 14 , 11 , 41 , 9 , 61 , 2 , - 20 , 0 , 0 , 2 , 33 , 2 , 33 , 0 , 1 , 261 , 261 , 261 , 9 . 3864468864 , 13 . 965201465 , - 4 . 578754579 , 0 , 7 . 5549450549 , 7 . 5549450549 <nl> + 050 , 2 , 4 , 38 , 071 , North Dakota , Ramsey County , 11451 , 11451 , 11468 , 11452 , 17 , - 16 , 38 , 140 , 22 , 140 , 16 , 0 , 2 , 3 , 0 , - 17 , 2 , - 14 , - 1 , - 2 , 492 , 492 , 492 , 12 . 216404887 , 12 . 216404887 , 0 , 0 . 2617801047 , - 1 . 483420593 , - 1 . 221640489 <nl> + 050 , 2 , 4 , 38 , 073 , North Dakota , Ransom County , 5457 , 5457 , 5430 , 5403 , - 27 , - 27 , 12 , 51 , 21 , 95 , - 9 , - 44 , 0 , 0 , - 18 , 17 , - 18 , 17 , 0 , 0 , 185 , 185 , 185 , 9 . 4156743284 , 17 . 5390012 , - 8 . 123326872 , 0 , 3 . 1385581095 , 3 . 1385581095 <nl> + 050 , 2 , 4 , 38 , 075 , North Dakota , Renville County , 2470 , 2470 , 2476 , 2490 , 6 , 14 , 8 , 35 , 5 , 30 , 3 , 5 , 0 , 0 , 3 , 9 , 3 , 9 , 0 , 0 , 54 , 54 , 54 , 14 . 095851792 , 12 . 082158679 , 2 . 0136931132 , 0 , 3 . 6246476037 , 3 . 6246476037 <nl> + 050 , 2 , 4 , 38 , 077 , North Dakota , Richland County , 16321 , 16321 , 16342 , 16245 , 21 , - 97 , 52 , 196 , 20 , 130 , 32 , 66 , 1 , 2 , - 11 , - 164 , - 10 , - 162 , - 1 , - 1 , 986 , 986 , 986 , 12 . 029336852 , 7 . 9786417897 , 4 . 0506950624 , 0 . 1227483352 , - 10 . 06536349 , - 9 . 942615153 <nl> + 050 , 2 , 4 , 38 , 079 , North Dakota , Rolette County , 13937 , 13937 , 13999 , 14206 , 62 , 207 , 72 , 294 , 12 , 149 , 60 , 145 , 1 , 3 , 1 , 60 , 2 , 63 , 0 , - 1 , 122 , 122 , 122 , 20 . 847367488 , 10 . 56550257 , 10 . 281864918 , 0 . 2127282397 , 4 . 2545647935 , 4 . 4672930332 <nl> + 050 , 2 , 4 , 38 , 081 , North Dakota , Sargent County , 3829 , 3829 , 3809 , 3798 , - 20 , - 11 , 8 , 31 , 2 , 36 , 6 , - 5 , 0 , 4 , - 26 , - 10 , - 26 , - 6 , 0 , 0 , 37 , 37 , 37 , 8 . 1503878007 , 9 . 4649664782 , - 1 . 314578678 , 1 . 051662942 , - 2 . 629157355 , - 1 . 577494413 <nl> + 050 , 2 , 4 , 38 , 083 , North Dakota , Sheridan County , 1321 , 1321 , 1313 , 1309 , - 8 , - 4 , 2 , 10 , 2 , 7 , 0 , 3 , 0 , 1 , - 8 , - 8 , - 8 , - 7 , 0 , 0 , 0 , 0 , 0 , 7 . 6277650648 , 5 . 3394355454 , 2 . 2883295195 , 0 . 7627765065 , - 6 . 102212052 , - 5 . 339435545 <nl> + 050 , 2 , 4 , 38 , 085 , North Dakota , Sioux County , 4153 , 4153 , 4164 , 4280 , 11 , 116 , 26 , 98 , 1 , 35 , 25 , 63 , 0 , 0 , - 15 , 53 , - 15 , 53 , 1 , 0 , 44 , 44 , 44 , 23 . 211747987 , 8 . 2899099953 , 14 . 921837991 , 0 , 12 . 553292279 , 12 . 553292279 <nl> + 050 , 2 , 4 , 38 , 087 , North Dakota , Slope County , 727 , 727 , 728 , 718 , 1 , - 10 , 4 , 16 , 0 , 4 , 4 , 12 , 0 , 0 , - 3 , - 22 , - 3 , - 22 , 0 , 0 , 0 , 0 , 0 , 22 . 130013831 , 5 . 5325034578 , 16 . 597510373 , 0 , - 30 . 42876902 , - 30 . 42876902 <nl> + 050 , 2 , 4 , 38 , 089 , North Dakota , Stark County , 24199 , 24199 , 24350 , 25177 , 151 , 827 , 84 , 315 , 54 , 220 , 30 , 95 , 6 , 29 , 114 , 692 , 120 , 721 , 1 , 11 , 909 , 909 , 909 , 12 . 720334363 , 8 . 8840430472 , 3 . 8362913158 , 1 . 1710784017 , 27 . 944353585 , 29 . 115431987 <nl> + 050 , 2 , 4 , 38 , 091 , North Dakota , Steele County , 1975 , 1975 , 1985 , 1950 , 10 , - 35 , 4 , 14 , 1 , 8 , 3 , 6 , 0 , 0 , 7 , - 40 , 7 , - 40 , 0 , - 1 , 0 , 0 , 0 , 7 . 1156289708 , 4 . 0660736976 , 3 . 0495552732 , 0 , - 20 . 33036849 , - 20 . 33036849 <nl> + 050 , 2 , 4 , 38 , 093 , North Dakota , Stutsman County , 21100 , 21100 , 21106 , 21062 , 6 , - 44 , 52 , 222 , 61 , 227 , - 9 , - 5 , 2 , 10 , 14 , - 48 , 16 , - 38 , - 1 , - 1 , 1733 , 1733 , 1733 , 10 . 529311326 , 10 . 766457978 , - 0 . 237146651 , 0 . 474293303 , - 2 . 276607854 , - 1 . 802314551 <nl> + 050 , 2 , 4 , 38 , 095 , North Dakota , Towner County , 2246 , 2246 , 2242 , 2264 , - 4 , 22 , 4 , 21 , 4 , 29 , 0 , - 8 , 0 , 1 , - 3 , 28 , - 3 , 29 , - 1 , 1 , 43 , 43 , 43 , 9 . 3209054594 , 12 . 871726587 , - 3 . 550821127 , 0 . 4438526409 , 12 . 427873946 , 12 . 871726587 <nl> + 050 , 2 , 4 , 38 , 097 , North Dakota , Traill County , 8121 , 8121 , 8117 , 8147 , - 4 , 30 , 21 , 90 , 17 , 99 , 4 , - 9 , 1 , 7 , - 8 , 33 , - 7 , 40 , - 1 , - 1 , 362 , 362 , 362 , 11 . 067388096 , 12 . 174126906 , - 1 . 10673881 , 0 . 8607968519 , 4 . 058042302 , 4 . 918839154 <nl> + 050 , 2 , 4 , 38 , 099 , North Dakota , Walsh County , 11119 , 11119 , 11104 , 11032 , - 15 , - 72 , 33 , 130 , 26 , 137 , 7 , - 7 , 0 , 1 , - 22 , - 66 , - 22 , - 65 , 0 , 0 , 332 , 332 , 332 , 11 . 745572823 , 12 . 378026744 , - 0 . 632453921 , 0 . 0903505602 , - 5 . 963136971 , - 5 . 872786411 <nl> + 050 , 2 , 4 , 38 , 101 , North Dakota , Ward County , 61675 , 61675 , 62081 , 64072 , 406 , 1991 , 270 , 1034 , 135 , 513 , 135 , 521 , 48 , 60 , 218 , 1389 , 266 , 1449 , 5 , 21 , 2685 , 2685 , 2685 , 16 . 392792878 , 8 . 1329813798 , 8 . 2598114987 , 0 . 9512258924 , 22 . 020879408 , 22 . 972105301 <nl> + 050 , 2 , 4 , 38 , 103 , North Dakota , Wells County , 4207 , 4207 , 4203 , 4237 , - 4 , 34 , 10 , 45 , 9 , 65 , 1 , - 20 , 0 , 1 , - 5 , 53 , - 5 , 54 , 0 , 0 , 119 , 119 , 119 , 10 . 663507109 , 15 . 402843602 , - 4 . 739336493 , 0 . 2369668246 , 12 . 559241706 , 12 . 796208531 <nl> + 050 , 2 , 4 , 38 , 105 , North Dakota , Williams County , 22398 , 22398 , 22560 , 24374 , 162 , 1814 , 75 , 300 , 56 , 212 , 19 , 88 , 1 , 3 , 138 , 1695 , 139 , 1698 , 4 , 28 , 560 , 560 , 560 , 12 . 783909319 , 9 . 0339625858 , 3 . 7499467337 , 0 . 1278390932 , 72 . 229087655 , 72 . 356926748 <nl> + 040 , 2 , 3 , 39 , 000 , Ohio , Ohio , 11536504 , 11536502 , 11537968 , 11544951 , 1466 , 6983 , 35487 , 140808 , 26758 , 107668 , 8729 , 33140 , 2533 , 9186 , - 9670 , - 35198 , - 7137 , - 26012 , - 126 , - 145 , 306266 , 306286 , 306305 , 12 . 200190106 , 9 . 328802826 , 2 . 8713872799 , 0 . 7959132032 , - 3 . 04970095 , - 2 . 253787747 <nl> + 050 , 2 , 3 , 39 , 001 , Ohio , Adams County , 28550 , 28550 , 28573 , 28456 , 23 , - 117 , 86 , 354 , 92 , 331 , - 6 , 23 , 0 , 1 , 30 , - 141 , 30 , - 140 , - 1 , 0 , 338 , 338 , 338 , 12 . 414736362 , 11 . 608129197 , 0 . 8066071648 , 0 . 0350698767 , - 4 . 944852619 , - 4 . 909782742 <nl> + 050 , 2 , 3 , 39 , 003 , Ohio , Allen County , 106331 , 106331 , 106239 , 106094 , - 92 , - 145 , 335 , 1334 , 244 , 1063 , 91 , 271 , 11 , 50 , - 196 , - 467 , - 185 , - 417 , 2 , 1 , 5934 , 5934 , 5935 , 12 . 565168862 , 10 . 012574588 , 2 . 5525942741 , 0 . 4709583532 , - 4 . 398751018 , - 3 . 927792665 <nl> + 050 , 2 , 3 , 39 , 005 , Ohio , Ashland County , 53139 , 53139 , 53152 , 53153 , 13 , 1 , 149 , 600 , 136 , 542 , 13 , 58 , 10 , 36 , - 6 , - 91 , 4 , - 55 , - 4 , - 2 , 2144 , 2144 , 2144 , 11 . 288274305 , 10 . 197074456 , 1 . 0911998495 , 0 . 6772964583 , - 1 . 712054936 , - 1 . 034758478 <nl> + 050 , 2 , 3 , 39 , 007 , Ohio , Ashtabula County , 101497 , 101497 , 101467 , 101345 , - 30 , - 122 , 303 , 1200 , 269 , 1088 , 34 , 112 , 13 , 52 , - 74 , - 284 , - 61 , - 232 , - 3 , - 2 , 3190 , 3190 , 3190 , 11 . 833619312 , 10 . 729148177 , 1 . 1044711358 , 0 . 5127901702 , - 2 . 800623237 , - 2 . 287833067 <nl> + 050 , 2 , 3 , 39 , 009 , Ohio , Athens County , 64757 , 64757 , 64774 , 64769 , 17 , - 5 , 134 , 531 , 116 , 465 , 18 , 66 , 34 , 136 , - 35 , - 207 , - 1 , - 71 , 0 , 0 , 9345 , 9345 , 9345 , 8 . 1980500683 , 7 . 1790833932 , 1 . 0189666752 , 2 . 0996889064 , - 3 . 195850027 , - 1 . 09616112 <nl> + 050 , 2 , 3 , 39 , 011 , Ohio , Auglaize County , 45949 , 45949 , 45952 , 45838 , 3 , - 114 , 146 , 593 , 120 , 469 , 26 , 124 , 2 , 15 , - 22 , - 255 , - 20 , - 240 , - 3 , 2 , 525 , 525 , 525 , 12 . 920797472 , 10 . 218978102 , 2 . 7018193703 , 0 . 3268329883 , - 5 . 556160802 , - 5 . 229327813 <nl> + 050 , 2 , 3 , 39 , 013 , Ohio , Belmont County , 70400 , 70400 , 70354 , 70151 , - 46 , - 203 , 174 , 701 , 219 , 860 , - 45 , - 159 , 1 , 8 , 3 , - 47 , 4 , - 39 , - 5 , - 5 , 3834 , 3834 , 3834 , 9 . 9782925875 , 12 . 24155724 , - 2 . 263264653 , 0 . 1138749511 , - 0 . 669015338 , - 0 . 555140386 <nl> + 050 , 2 , 3 , 39 , 015 , Ohio , Brown County , 44846 , 44846 , 44856 , 44687 , 10 , - 169 , 131 , 527 , 116 , 447 , 15 , 80 , 0 , 0 , - 3 , - 248 , - 3 , - 248 , - 2 , - 1 , 575 , 575 , 575 , 11 . 770881029 , 9 . 9840300191 , 1 . 7868510101 , 0 , - 5 . 539238131 , - 5 . 539238131 <nl> + 050 , 2 , 3 , 39 , 017 , Ohio , Butler County , 368130 , 368130 , 368832 , 369999 , 702 , 1167 , 1208 , 4786 , 721 , 2978 , 487 , 1808 , 157 , 448 , 64 , - 1087 , 221 , - 639 , - 6 , - 2 , 10953 , 10953 , 10953 , 12 . 955601484 , 8 . 0613834558 , 4 . 8942180282 , 1 . 2127265911 , - 2 . 942486171 , - 1 . 72975958 <nl> + 050 , 2 , 3 , 39 , 019 , Ohio , Carroll County , 28836 , 28836 , 28807 , 28782 , - 29 , - 25 , 78 , 320 , 78 , 281 , 0 , 39 , 0 , 1 , - 28 , - 62 , - 28 , - 61 , - 1 , - 3 , 405 , 405 , 405 , 11 . 11323343 , 9 . 7588081057 , 1 . 3544253243 , 0 . 0347288545 , - 2 . 153188977 , - 2 . 118460123 <nl> + 050 , 2 , 3 , 39 , 021 , Ohio , Champaign County , 40097 , 40097 , 40010 , 39795 , - 87 , - 215 , 108 , 434 , 99 , 372 , 9 , 62 , 1 , 11 , - 98 , - 291 , - 97 , - 280 , 1 , 3 , 793 , 793 , 793 , 10 . 876511497 , 9 . 3227241401 , 1 . 5537873567 , 0 . 2756719504 , - 7 . 292776142 , - 7 . 017104191 <nl> + 050 , 2 , 3 , 39 , 023 , Ohio , Clark County , 138333 , 138333 , 138206 , 137691 , - 127 , - 515 , 415 , 1674 , 395 , 1599 , 20 , 75 , 14 , 50 , - 157 , - 639 , - 143 , - 589 , - 4 , - 1 , 2798 , 2798 , 2798 , 12 . 13496341 , 11 . 591282254 , 0 . 5436811564 , 0 . 3624541042 , - 4 . 632163452 , - 4 . 269709348 <nl> + 050 , 2 , 3 , 39 , 025 , Ohio , Clermont County , 197363 , 197363 , 197768 , 199139 , 405 , 1371 , 622 , 2494 , 371 , 1451 , 251 , 1043 , 32 , 69 , 130 , 275 , 162 , 344 , - 8 , - 16 , 1717 , 1717 , 1717 , 12 . 567175686 , 7 . 3115364556 , 5 . 2556392303 , 0 . 3476885013 , 1 . 3857150416 , 1 . 7334035429 <nl> + 050 , 2 , 3 , 39 , 027 , Ohio , Clinton County , 42040 , 42040 , 41903 , 41927 , - 137 , 24 , 131 , 526 , 107 , 424 , 24 , 102 , 5 , 31 , - 168 , - 106 , - 163 , - 75 , 2 , - 3 , 1145 , 1145 , 1145 , 12 . 549206728 , 10 . 115710366 , 2 . 4334963617 , 0 . 7395920315 , - 2 . 528927592 , - 1 . 78933556 <nl> + 050 , 2 , 3 , 39 , 029 , Ohio , Columbiana County , 107841 , 107841 , 107851 , 107570 , 10 , - 281 , 299 , 1183 , 281 , 1127 , 18 , 56 , 1 , 1 , - 4 , - 336 , - 3 , - 335 , - 5 , - 2 , 3944 , 3944 , 3944 , 10 . 983144633 , 10 . 463232461 , 0 . 519912172 , 0 . 0092841459 , - 3 . 119473032 , - 3 . 110188886 <nl> + 050 , 2 , 3 , 39 , 031 , Ohio , Coshocton County , 36901 , 36901 , 36901 , 36955 , 0 , 54 , 106 , 433 , 105 , 370 , 1 , 63 , 0 , 0 , 1 , - 8 , 1 , - 8 , - 2 , - 1 , 428 , 428 , 428 , 11 . 725519931 , 10 . 0194974 , 1 . 7060225303 , 0 , - 0 . 216637782 , - 0 . 216637782 <nl> + 050 , 2 , 3 , 39 , 033 , Ohio , Crawford County , 43784 , 43784 , 43755 , 43389 , - 29 , - 366 , 119 , 495 , 117 , 473 , 2 , 22 , 3 , 14 , - 32 , - 407 , - 29 , - 393 , - 2 , 5 , 579 , 579 , 579 , 11 . 360506747 , 10 . 855595336 , 0 . 504911411 , 0 . 3213072615 , - 9 . 340861103 , - 9 . 019553842 <nl> + 050 , 2 , 3 , 39 , 035 , Ohio , Cuyahoga County , 1280122 , 1280122 , 1278000 , 1270294 , - 2122 , - 7706 , 3823 , 15077 , 3250 , 13215 , 573 , 1862 , 331 , 1639 , - 3034 , - 11263 , - 2703 , - 9624 , 8 , 56 , 29251 , 29251 , 29251 , 11 . 833014558 , 10 . 371644716 , 1 . 4613698419 , 1 . 28635079 , - 8 . 839639382 , - 7 . 553288592 <nl> + 050 , 2 , 3 , 39 , 037 , Ohio , Darke County , 52959 , 52959 , 52993 , 52809 , 34 , - 184 , 169 , 678 , 144 , 570 , 25 , 108 , 4 , 19 , 9 , - 313 , 13 , - 294 , - 4 , 2 , 606 , 606 , 606 , 12 . 816392885 , 10 . 774843576 , 2 . 0415493091 , 0 . 3591614525 , - 5 . 916712349 , - 5 . 557550897 <nl> + 050 , 2 , 3 , 39 , 039 , Ohio , Defiance County , 39037 , 39035 , 39012 , 38884 , - 23 , - 128 , 111 , 460 , 102 , 381 , 9 , 79 , 2 , 9 , - 33 , - 217 , - 31 , - 208 , - 1 , 1 , 720 , 720 , 720 , 11 . 810619287 , 9 . 782273801 , 2 . 0283454863 , 0 . 2310773339 , - 5 . 571531272 , - 5 . 340453939 <nl> + 050 , 2 , 3 , 39 , 041 , Ohio , Delaware County , 174214 , 174214 , 175238 , 178341 , 1024 , 3103 , 546 , 2131 , 220 , 868 , 326 , 1263 , 40 , 129 , 641 , 1696 , 681 , 1825 , 17 , 15 , 2368 , 2368 , 2368 , 12 . 053883291 , 4 . 9097938509 , 7 . 1440894397 , 0 . 7296813442 , 9 . 5933299206 , 10 . 323011265 <nl> + 050 , 2 , 3 , 39 , 043 , Ohio , Erie County , 77079 , 77079 , 77036 , 76751 , - 43 , - 285 , 198 , 769 , 208 , 864 , - 10 , - 95 , 1 , 11 , - 31 , - 198 , - 30 , - 187 , - 3 , - 3 , 1677 , 1677 , 1677 , 10 . 000845325 , 11 . 236320365 , - 1 . 23547504 , 0 . 1430550046 , - 2 . 574990084 , - 2 . 431935079 <nl> + 050 , 2 , 3 , 39 , 045 , Ohio , Fairfield County , 146156 , 146156 , 146381 , 147066 , 225 , 685 , 420 , 1660 , 278 , 1118 , 142 , 542 , 12 , 51 , 73 , 99 , 85 , 150 , - 2 , - 7 , 2872 , 2872 , 2872 , 11 . 313797722 , 7 . 6197746101 , 3 . 6940231115 , 0 . 3475925806 , 0 . 6747385388 , 1 . 0223311194 <nl> + 050 , 2 , 3 , 39 , 047 , Ohio , Fayette County , 29030 , 29030 , 29058 , 28985 , 28 , - 73 , 103 , 418 , 74 , 301 , 29 , 117 , 7 , 35 , - 6 , - 226 , 1 , - 191 , - 2 , 1 , 593 , 593 , 593 , 14 . 403114932 , 10 . 37162104 , 4 . 0314938925 , 1 . 2060024465 , - 7 . 787330083 , - 6 . 581327636 <nl> + 050 , 2 , 3 , 39 , 049 , Ohio , Franklin County , 1163414 , 1163414 , 1165789 , 1178799 , 2375 , 13010 , 4524 , 17962 , 2095 , 8556 , 2429 , 9406 , 718 , 3021 , - 786 , 632 , - 68 , 3653 , 14 , - 49 , 25224 , 25224 , 25224 , 15 . 322094969 , 7 . 2985104419 , 8 . 0235845274 , 2 . 5769986027 , 0 . 5391139083 , 3 . 116112511 <nl> + 050 , 2 , 3 , 39 , 051 , Ohio , Fulton County , 42698 , 42698 , 42674 , 42510 , - 24 , - 164 , 127 , 502 , 99 , 396 , 28 , 106 , 2 , 19 , - 53 , - 291 , - 51 , - 272 , - 1 , 2 , 391 , 391 , 391 , 11 . 786250939 , 9 . 2975206612 , 2 . 488730278 , 0 . 446093163 , - 6 . 832268971 , - 6 . 386175808 <nl> + 050 , 2 , 3 , 39 , 053 , Ohio , Gallia County , 30934 , 30934 , 30968 , 30970 , 34 , 2 , 94 , 397 , 89 , 332 , 5 , 65 , 0 , 0 , 29 , - 61 , 29 , - 61 , 0 , - 2 , 921 , 921 , 921 , 12 . 819270884 , 10 . 720397817 , 2 . 0988730666 , 0 , - 1 . 969711647 , - 1 . 969711647 <nl> + 050 , 2 , 3 , 39 , 055 , Ohio , Geauga County , 93389 , 93389 , 93379 , 93228 , - 10 , - 151 , 221 , 867 , 179 , 705 , 42 , 162 , 5 , 34 , - 55 , - 347 , - 50 , - 313 , - 2 , 0 , 864 , 864 , 864 , 9 . 2922559175 , 7 . 5559866457 , 1 . 7362692718 , 0 . 3644021928 , - 3 . 719045909 , - 3 . 354643716 <nl> + 050 , 2 , 3 , 39 , 057 , Ohio , Greene County , 161573 , 161573 , 161607 , 162846 , 34 , 1239 , 443 , 1731 , 306 , 1272 , 137 , 459 , 52 , 102 , - 155 , 677 , - 103 , 779 , 0 , 1 , 8775 , 8775 , 8775 , 10 . 670266572 , 7 . 8408891272 , 2 . 8293774445 , 0 . 6287505432 , 4 . 1731776251 , 4 . 8019281683 <nl> + 050 , 2 , 3 , 39 , 059 , Ohio , Guernsey County , 40087 , 40087 , 40049 , 39927 , - 38 , - 122 , 113 , 464 , 118 , 441 , - 5 , 23 , 3 , 13 , - 36 , - 157 , - 33 , - 144 , 0 , - 1 , 510 , 510 , 510 , 11 . 603481044 , 11 . 028308493 , 0 . 5751725518 , 0 . 3250975293 , - 3 . 926177853 , - 3 . 601080324 <nl> + 050 , 2 , 3 , 39 , 061 , Ohio , Hamilton County , 802374 , 802374 , 801948 , 800362 , - 426 , - 1586 , 2797 , 11081 , 1851 , 7507 , 946 , 3574 , 223 , 966 , - 1604 , - 6154 , - 1381 , - 5188 , 9 , 28 , 19511 , 19511 , 19511 , 13 . 831281088 , 9 . 3702217424 , 4 . 4610593456 , 1 . 2057591852 , - 7 . 681409964 , - 6 . 475650779 <nl> + 050 , 2 , 3 , 39 , 063 , Ohio , Hancock County , 74782 , 74782 , 74724 , 75056 , - 58 , 332 , 237 , 931 , 157 , 640 , 80 , 291 , 13 , 75 , - 152 , - 29 , - 139 , 46 , 1 , - 5 , 1694 , 1694 , 1694 , 12 . 431566297 , 8 . 545867272 , 3 . 8856990252 , 1 . 0014688209 , - 0 . 387234611 , 0 . 6142342102 <nl> + 050 , 2 , 3 , 39 , 065 , Ohio , Hardin County , 32058 , 32058 , 32099 , 32020 , 41 , - 79 , 100 , 388 , 77 , 321 , 23 , 67 , 0 , 5 , 19 , - 152 , 19 , - 147 , - 1 , 1 , 2259 , 2259 , 2259 , 12 . 10249692 , 10 . 012632761 , 2 . 0898641588 , 0 . 1559600119 , - 4 . 74118436 , - 4 . 585224348 <nl> + 050 , 2 , 3 , 39 , 067 , Ohio , Harrison County , 15864 , 15864 , 15855 , 15850 , - 9 , - 5 , 43 , 173 , 54 , 206 , - 11 , - 33 , 0 , 3 , 4 , 25 , 4 , 28 , - 2 , 0 , 232 , 232 , 232 , 10 . 913105188 , 12 . 994795774 , - 2 . 081690585 , 0 . 1892445986 , 1 . 577038322 , 1 . 7662829207 <nl> + 050 , 2 , 3 , 39 , 069 , Ohio , Henry County , 28215 , 28215 , 28183 , 28064 , - 32 , - 119 , 78 , 316 , 60 , 236 , 18 , 80 , 0 , 0 , - 50 , - 200 , - 50 , - 200 , 0 , 1 , 346 , 346 , 346 , 11 . 236154817 , 8 . 3915586609 , 2 . 8445961562 , 0 , - 7 . 111490391 , - 7 . 111490391 <nl> + 050 , 2 , 3 , 39 , 071 , Ohio , Highland County , 43589 , 43589 , 43601 , 43433 , 12 , - 168 , 140 , 558 , 112 , 467 , 28 , 91 , 1 , 3 , - 16 , - 263 , - 15 , - 260 , - 1 , 1 , 484 , 484 , 484 , 12 . 822575086 , 10 . 731438288 , 2 . 0911367971 , 0 . 0689385757 , - 6 . 043615139 , - 5 . 974676563 <nl> + 050 , 2 , 3 , 39 , 073 , Ohio , Hocking County , 29380 , 29380 , 29386 , 29394 , 6 , 8 , 74 , 321 , 79 , 287 , - 5 , 34 , 0 , 4 , 13 , - 29 , 13 , - 25 , - 2 , - 1 , 718 , 718 , 718 , 10 . 922082341 , 9 . 7652262674 , 1 . 1568560735 , 0 . 1361007145 , - 0 . 98673018 , - 0 . 850629466 <nl> + 050 , 2 , 3 , 39 , 075 , Ohio , Holmes County , 42366 , 42366 , 42446 , 42746 , 80 , 300 , 205 , 819 , 77 , 305 , 128 , 514 , 1 , 6 , - 49 , - 222 , - 48 , - 216 , 0 , 2 , 765 , 765 , 765 , 19 . 22715748 , 7 . 1602967415 , 12 . 066860738 , 0 . 1408582966 , - 5 . 211756972 , - 5 . 070898676 <nl> + 050 , 2 , 3 , 39 , 077 , Ohio , Huron County , 59626 , 59626 , 59609 , 59496 , - 17 , - 113 , 180 , 744 , 132 , 535 , 48 , 209 , 9 , 40 , - 75 , - 364 , - 66 , - 324 , 1 , 2 , 578 , 578 , 578 , 12 . 493178288 , 8 . 9836698711 , 3 . 5095084169 , 0 . 671676252 , - 6 . 112253894 , - 5 . 440577642 <nl> + 050 , 2 , 3 , 39 , 079 , Ohio , Jackson County , 33225 , 33225 , 33270 , 33186 , 45 , - 84 , 106 , 445 , 92 , 351 , 14 , 94 , 0 , 1 , 31 , - 178 , 31 , - 177 , 0 , - 1 , 325 , 325 , 325 , 13 . 39231973 , 10 . 563380282 , 2 . 8289394487 , 0 . 0300951005 , - 5 . 356927892 , - 5 . 326832792 <nl> + 050 , 2 , 3 , 39 , 081 , Ohio , Jefferson County , 69709 , 69709 , 69597 , 68828 , - 112 , - 769 , 170 , 676 , 245 , 965 , - 75 , - 289 , 3 , 15 , - 33 , - 492 , - 30 , - 477 , - 7 , - 3 , 2212 , 2212 , 2212 , 9 . 767021853 , 13 . 942568178 , - 4 . 175546325 , 0 . 2167238577 , - 7 . 108542532 , - 6 . 891818674 <nl> + 050 , 2 , 3 , 39 , 083 , Ohio , Knox County , 60921 , 60921 , 61016 , 61275 , 95 , 259 , 187 , 743 , 150 , 591 , 37 , 152 , 2 , 8 , 57 , 103 , 59 , 111 , - 1 , - 4 , 3485 , 3485 , 3485 , 12 . 151343926 , 9 . 6654700673 , 2 . 4858738583 , 0 . 1308354662 , 1 . 6845066276 , 1 . 8153420939 <nl> + 050 , 2 , 3 , 39 , 085 , Ohio , Lake County , 230041 , 230041 , 230054 , 229885 , 13 , - 169 , 590 , 2301 , 561 , 2259 , 29 , 42 , 66 , 107 , - 73 , - 307 , - 7 , - 200 , - 9 , - 11 , 2786 , 2786 , 2786 , 10 . 005674666 , 9 . 8230417512 , 0 . 1826329144 , 0 . 4652790914 , - 1 . 334959636 , - 0 . 869680545 <nl> + 050 , 2 , 3 , 39 , 087 , Ohio , Lawrence County , 62450 , 62450 , 62417 , 62489 , - 33 , 72 , 175 , 721 , 175 , 688 , 0 , 33 , 0 , 3 , - 31 , 38 , - 31 , 41 , - 2 , - 2 , 669 , 669 , 669 , 11 . 544681601 , 11 . 016284246 , 0 . 5283973548 , 0 . 0480361232 , 0 . 6084575601 , 0 . 6564936832 <nl> + 050 , 2 , 3 , 39 , 089 , Ohio , Licking County , 166492 , 166492 , 166727 , 167248 , 235 , 521 , 502 , 1976 , 362 , 1412 , 140 , 564 , 11 , 22 , 87 , - 56 , 98 , - 34 , - 3 , - 9 , 3448 , 3448 , 3448 , 11 . 833221049 , 8 . 4557227337 , 3 . 3774983157 , 0 . 1317463882 , - 0 . 335354443 , - 0 . 203608054 <nl> + 050 , 2 , 3 , 39 , 091 , Ohio , Logan County , 45858 , 45858 , 45808 , 45688 , - 50 , - 120 , 139 , 557 , 122 , 488 , 17 , 69 , 3 , 18 , - 70 , - 207 , - 67 , - 189 , 0 , 0 , 450 , 450 , 450 , 12 . 175395646 , 10 . 667132989 , 1 . 5082626563 , 0 . 3934598234 , - 4 . 524787969 , - 4 . 131328145 <nl> + 050 , 2 , 3 , 39 , 093 , Ohio , Lorain County , 301356 , 301356 , 301526 , 301614 , 170 , 88 , 847 , 3333 , 642 , 2608 , 205 , 725 , 46 , 50 , - 70 , - 676 , - 24 , - 626 , - 11 , - 11 , 9332 , 9332 , 9332 , 11 . 052160361 , 8 . 6480750738 , 2 . 404085287 , 0 . 1657989853 , - 2 . 241602281 , - 2 . 075803296 <nl> + 050 , 2 , 3 , 39 , 095 , Ohio , Lucas County , 441815 , 441815 , 441541 , 440005 , - 274 , - 1536 , 1504 , 5867 , 1031 , 4223 , 473 , 1644 , 116 , 283 , - 877 , - 3495 , - 761 , - 3212 , 14 , 32 , 10715 , 10715 , 10715 , 13 . 310706418 , 9 . 5808953815 , 3 . 7298110365 , 0 . 6420538463 , - 7 . 929251565 , - 7 . 287197719 <nl> + 050 , 2 , 3 , 39 , 097 , Ohio , Madison County , 43435 , 43435 , 43444 , 43401 , 9 , - 43 , 120 , 487 , 102 , 361 , 18 , 126 , 6 , 25 , - 14 , - 192 , - 8 , - 167 , - 1 , - 2 , 5238 , 5238 , 5238 , 11 . 21538373 , 8 . 3136622719 , 2 . 9017214578 , 0 . 5757383845 , - 4 . 421670793 , - 3 . 845932408 <nl> + 050 , 2 , 3 , 39 , 099 , Ohio , Mahoning County , 238823 , 238823 , 238310 , 237270 , - 513 , - 1040 , 614 , 2406 , 754 , 2963 , - 140 , - 557 , 22 , 31 , - 390 , - 497 , - 368 , - 466 , - 5 , - 17 , 7925 , 7925 , 7925 , 10 . 118171496 , 12 . 460574456 , - 2 . 342402961 , 0 . 1303671307 , - 2 . 090079482 , - 1 . 959712351 <nl> + 050 , 2 , 3 , 39 , 101 , Ohio , Marion County , 66501 , 66501 , 66477 , 66212 , - 24 , - 265 , 206 , 822 , 175 , 672 , 31 , 150 , 5 , 23 , - 59 , - 440 , - 54 , - 417 , - 1 , 2 , 5457 , 5457 , 5457 , 12 . 389874066 , 10 . 128948142 , 2 . 2609259245 , 0 . 3466753084 , - 6 . 632049379 , - 6 . 28537407 <nl> + 050 , 2 , 3 , 39 , 103 , Ohio , Medina County , 172332 , 172332 , 172581 , 173262 , 249 , 681 , 456 , 1793 , 313 , 1240 , 143 , 553 , 29 , 66 , 79 , 72 , 108 , 138 , - 2 , - 10 , 1198 , 1198 , 1198 , 10 . 368866798 , 7 . 1708838982 , 3 . 1979828998 , 0 . 3816760785 , 0 . 4163739038 , 0 . 7980499822 <nl> + 050 , 2 , 3 , 39 , 105 , Ohio , Meigs County , 23770 , 23770 , 23744 , 23680 , - 26 , - 64 , 62 , 247 , 70 , 260 , - 8 , - 13 , 0 , 6 , - 18 , - 56 , - 18 , - 50 , 0 , - 1 , 212 , 212 , 212 , 10 . 416666667 , 10 . 964912281 , - 0 . 548245614 , 0 . 2530364372 , - 2 . 361673414 , - 2 . 108636977 <nl> + 050 , 2 , 3 , 39 , 107 , Ohio , Mercer County , 40814 , 40814 , 40819 , 40838 , 5 , 19 , 142 , 566 , 99 , 374 , 43 , 192 , 0 , 0 , - 37 , - 173 , - 37 , - 173 , - 1 , 0 , 439 , 439 , 439 , 13 . 8628654 , 9 . 1602679501 , 4 . 7025974503 , 0 , - 4 . 237236244 , - 4 . 237236244 <nl> + 050 , 2 , 3 , 39 , 109 , Ohio , Miami County , 102506 , 102506 , 102490 , 102857 , - 16 , 367 , 300 , 1196 , 222 , 920 , 78 , 276 , 12 , 60 , - 105 , 37 , - 93 , 97 , - 1 , - 6 , 1055 , 1055 , 1055 , 11 . 648575338 , 8 . 9604425679 , 2 . 6881327704 , 0 . 5843766892 , 0 . 360365625 , 0 . 9447423142 <nl> + 050 , 2 , 3 , 39 , 111 , Ohio , Monroe County , 14642 , 14642 , 14609 , 14585 , - 33 , - 24 , 35 , 139 , 53 , 201 , - 18 , - 62 , 0 , 0 , - 14 , 40 , - 14 , 40 , - 1 , - 2 , 165 , 165 , 165 , 9 . 5225046242 , 13 . 76995273 , - 4 . 247448106 , 0 , 2 . 7402891005 , 2 . 7402891005 <nl> + 050 , 2 , 3 , 39 , 113 , Ohio , Montgomery County , 535153 , 535153 , 535819 , 537602 , 666 , 1783 , 1719 , 6847 , 1327 , 5430 , 392 , 1417 , 149 , 288 , 167 , 126 , 316 , 414 , - 42 , - 48 , 14142 , 14142 , 14142 , 12 . 757343111 , 10 . 117186081 , 2 . 6401570307 , 0 . 5366021347 , 0 . 2347634339 , 0 . 7713655686 <nl> + 050 , 2 , 3 , 39 , 115 , Ohio , Morgan County , 15054 , 15054 , 15048 , 15034 , - 6 , - 14 , 37 , 151 , 33 , 155 , 4 , - 4 , 0 , 0 , - 8 , - 10 , - 8 , - 10 , - 2 , 0 , 188 , 188 , 188 , 10 . 039226115 , 10 . 30516588 , - 0 . 265939765 , 0 , - 0 . 664849412 , - 0 . 664849412 <nl> + 050 , 2 , 3 , 39 , 117 , Ohio , Morrow County , 34827 , 34827 , 34825 , 34855 , - 2 , 30 , 96 , 379 , 80 , 288 , 16 , 91 , 3 , 11 , - 19 , - 72 , - 16 , - 61 , - 2 , 0 , 366 , 366 , 366 , 10 . 878300804 , 8 . 2663605052 , 2 . 6119402985 , 0 . 3157290471 , - 2 . 066590126 , - 1 . 750861079 <nl> + 050 , 2 , 3 , 39 , 119 , Ohio , Muskingum County , 86074 , 86074 , 86158 , 86237 , 84 , 79 , 250 , 993 , 231 , 899 , 19 , 94 , 4 , 17 , 64 , - 27 , 68 , - 10 , - 3 , - 5 , 1898 , 1898 , 1898 , 11 . 520055686 , 10 . 42953682 , 1 . 0905188666 , 0 . 1972214971 , - 0 . 313234143 , - 0 . 116012645 <nl> + 050 , 2 , 3 , 39 , 121 , Ohio , Noble County , 14645 , 14645 , 14672 , 14702 , 27 , 30 , 37 , 153 , 23 , 124 , 14 , 29 , 0 , 0 , 14 , 2 , 14 , 2 , - 1 , - 1 , 2672 , 2689 , 2692 , 10 . 417375911 , 8 . 4428406073 , 1 . 9745353033 , 0 , 0 . 1361748485 , 0 . 1361748485 <nl> + 050 , 2 , 3 , 39 , 123 , Ohio , Ottawa County , 41428 , 41428 , 41403 , 41396 , - 25 , - 7 , 88 , 370 , 118 , 476 , - 30 , - 106 , 3 , 16 , 5 , 86 , 8 , 102 , - 3 , - 3 , 489 , 489 , 489 , 8 . 9373060061 , 11 . 497723402 , - 2 . 560417396 , 0 . 3864780976 , 2 . 0773197744 , 2 . 463797872 <nl> + 050 , 2 , 3 , 39 , 125 , Ohio , Paulding County , 19614 , 19614 , 19589 , 19420 , - 25 , - 169 , 62 , 247 , 48 , 191 , 14 , 56 , 0 , 5 , - 40 , - 232 , - 40 , - 227 , 1 , 2 , 85 , 85 , 85 , 12 . 663744264 , 9 . 7926119613 , 2 . 8711323028 , 0 . 2563510985 , - 11 . 89469097 , - 11 . 63833987 <nl> + 050 , 2 , 3 , 39 , 127 , Ohio , Perry County , 36058 , 36058 , 36091 , 36303 , 33 , 212 , 113 , 464 , 94 , 365 , 19 , 99 , 0 , 0 , 16 , 116 , 16 , 116 , - 2 , - 3 , 307 , 307 , 307 , 12 . 818741885 , 10 . 083708595 , 2 . 7350332901 , 0 , 3 . 2046854712 , 3 . 2046854712 <nl> + 050 , 2 , 3 , 39 , 129 , Ohio , Pickaway County , 55698 , 55698 , 55810 , 55990 , 112 , 180 , 143 , 573 , 123 , 500 , 20 , 73 , 0 , 3 , 91 , 107 , 91 , 110 , 1 , - 3 , 4455 , 4455 , 4455 , 10 . 250447227 , 8 . 9445438283 , 1 . 3059033989 , 0 . 053667263 , 1 . 9141323792 , 1 . 9677996422 <nl> + 050 , 2 , 3 , 39 , 131 , Ohio , Pike County , 28709 , 28709 , 28710 , 28628 , 1 , - 82 , 93 , 364 , 94 , 353 , - 1 , 11 , 0 , - 1 , 3 , - 91 , 3 , - 92 , - 1 , - 1 , 496 , 496 , 496 , 12 . 696640971 , 12 . 312951271 , 0 . 3836896997 , - 0 . 034880882 , - 3 . 174160243 , - 3 . 209041125 <nl> + 050 , 2 , 3 , 39 , 133 , Ohio , Portage County , 161419 , 161419 , 161381 , 161624 , - 38 , 243 , 385 , 1514 , 320 , 1277 , 65 , 237 , 26 , 117 , - 127 , - 103 , - 101 , 14 , - 2 , - 8 , 7914 , 7914 , 7914 , 9 . 3744678875 , 7 . 9069983437 , 1 . 4674695438 , 0 . 72444699 , - 0 . 637761025 , 0 . 0866859646 <nl> + 050 , 2 , 3 , 39 , 135 , Ohio , Preble County , 42270 , 42270 , 42215 , 42083 , - 55 , - 132 , 117 , 480 , 104 , 417 , 13 , 63 , 5 , 26 , - 71 , - 221 , - 66 , - 195 , - 2 , 0 , 386 , 386 , 386 , 11 . 388170538 , 9 . 8934731548 , 1 . 4946973831 , 0 . 6168592375 , - 5 . 243303518 , - 4 . 626444281 <nl> + 050 , 2 , 3 , 39 , 137 , Ohio , Putnam County , 34499 , 34499 , 34446 , 34294 , - 53 , - 152 , 123 , 485 , 88 , 326 , 35 , 159 , 0 , 5 , - 89 , - 319 , - 89 , - 314 , 1 , 3 , 303 , 303 , 303 , 14 . 111143439 , 9 . 4850160023 , 4 . 6261274367 , 0 . 1454757056 , - 9 . 281350015 , - 9 . 135874309 <nl> + 050 , 2 , 3 , 39 , 139 , Ohio , Richland County , 124475 , 124475 , 124263 , 123510 , - 212 , - 753 , 374 , 1484 , 296 , 1273 , 78 , 211 , 3 , 10 , - 295 , - 981 , - 292 , - 971 , 2 , 7 , 7263 , 7263 , 7263 , 11 . 978706316 , 10 . 275534461 , 1 . 7031718549 , 0 . 0807190453 , - 7 . 91853834 , - 7 . 837819294 <nl> + 050 , 2 , 3 , 39 , 141 , Ohio , Ross County , 78064 , 78064 , 78135 , 78249 , 71 , 114 , 231 , 911 , 180 , 765 , 51 , 146 , 4 , 18 , 19 , - 46 , 23 , - 28 , - 3 , - 4 , 6353 , 6353 , 6353 , 11 . 650808267 , 9 . 7836095764 , 1 . 8671986904 , 0 . 2302025783 , - 0 . 588295478 , - 0 . 3580929 <nl> + 050 , 2 , 3 , 39 , 143 , Ohio , Sandusky County , 60944 , 60944 , 60911 , 60734 , - 33 , - 177 , 185 , 744 , 145 , 586 , 40 , 158 , 3 , 13 , - 77 , - 350 , - 74 , - 337 , 1 , 2 , 901 , 901 , 901 , 12 . 232315344 , 9 . 6345924617 , 2 . 5977228822 , 0 . 2137366928 , - 5 . 754449422 , - 5 . 54071273 <nl> + 050 , 2 , 3 , 39 , 145 , Ohio , Scioto County , 79499 , 79499 , 79517 , 79277 , 18 , - 240 , 223 , 908 , 225 , 874 , - 2 , 34 , 1 , 13 , 22 , - 283 , 23 , - 270 , - 3 , - 4 , 3642 , 3642 , 3642 , 11 . 43620036 , 11 . 007972593 , 0 . 4282277668 , 0 . 1637341461 , - 3 . 564366412 , - 3 . 400632266 <nl> + 050 , 2 , 3 , 39 , 147 , Ohio , Seneca County , 56745 , 56745 , 56651 , 56469 , - 94 , - 182 , 159 , 642 , 141 , 554 , 18 , 88 , 1 , 3 , - 114 , - 273 , - 113 , - 270 , 1 , 0 , 2534 , 2534 , 2534 , 11 . 350777935 , 9 . 7949080622 , 1 . 5558698727 , 0 . 0530410184 , - 4 . 826732673 , - 4 . 773691655 <nl> + 050 , 2 , 3 , 39 , 149 , Ohio , Shelby County , 49423 , 49423 , 49361 , 49307 , - 62 , - 54 , 166 , 658 , 106 , 404 , 60 , 254 , 13 , 51 , - 137 , - 360 , - 124 , - 309 , 2 , 1 , 589 , 589 , 589 , 13 . 337657599 , 8 . 189078526 , 5 . 1485790733 , 1 . 0337698139 , - 7 . 297198687 , - 6 . 263428873 <nl> + 050 , 2 , 3 , 39 , 151 , Ohio , Stark County , 375586 , 375586 , 375394 , 375087 , - 192 , - 307 , 1049 , 4156 , 960 , 3812 , 89 , 344 , 50 , 27 , - 321 , - 665 , - 271 , - 638 , - 10 , - 13 , 9264 , 9264 , 9264 , 11 . 075563539 , 10 . 158818145 , 0 . 916745394 , 0 . 0719538536 , - 1 . 772196764 , - 1 . 700242911 <nl> + 050 , 2 , 3 , 39 , 153 , Ohio , Summit County , 541781 , 541781 , 541487 , 539832 , - 294 , - 1655 , 1560 , 6172 , 1315 , 5381 , 245 , 791 , 101 , 297 , - 631 , - 2744 , - 530 , - 2447 , - 9 , 1 , 9967 , 9967 , 9967 , 11 . 415687693 , 9 . 9526596684 , 1 . 4630280241 , 0 . 5493291064 , - 5 . 075283057 , - 4 . 525953951 <nl> + 050 , 2 , 3 , 39 , 155 , Ohio , Trumbull County , 210312 , 210312 , 209972 , 209264 , - 340 , - 708 , 566 , 2213 , 587 , 2357 , - 21 , - 144 , 3 , - 36 , - 317 , - 519 , - 314 , - 555 , - 5 , - 9 , 3821 , 3821 , 3821 , 10 . 557299469 , 11 . 244263374 , - 0 . 686963906 , - 0 . 171740976 , - 2 . 47593241 , - 2 . 647673387 <nl> + 050 , 2 , 3 , 39 , 157 , Ohio , Tuscarawas County , 92582 , 92582 , 92569 , 92508 , - 13 , - 61 , 276 , 1125 , 239 , 958 , 37 , 167 , 4 , 19 , - 52 , - 245 , - 48 , - 226 , - 2 , - 2 , 1250 , 1250 , 1250 , 12 . 157102179 , 10 . 3524479 , 1 . 804654279 , 0 . 2053199479 , - 2 . 647546697 , - 2 . 442226749 <nl> + 050 , 2 , 3 , 39 , 159 , Ohio , Union County , 52300 , 52300 , 52370 , 52764 , 70 , 394 , 160 , 621 , 86 , 296 , 74 , 325 , 15 , 67 , - 18 , 5 , - 3 , 72 , - 1 , - 3 , 2932 , 2935 , 2950 , 11 . 813495159 , 5 . 6309091255 , 6 . 1825860331 , 1 . 2745638899 , 0 . 0951167082 , 1 . 3696805981 <nl> + 050 , 2 , 3 , 39 , 161 , Ohio , Van Wert County , 28744 , 28744 , 28693 , 28601 , - 51 , - 92 , 84 , 347 , 78 , 295 , 6 , 52 , 1 , 10 , - 58 , - 154 , - 57 , - 144 , 0 , 0 , 396 , 396 , 396 , 12 . 112961218 , 10 . 297762418 , 1 . 8151987992 , 0 . 3490766921 , - 5 . 375781059 , - 5 . 026704367 <nl> + 050 , 2 , 3 , 39 , 163 , Ohio , Vinton County , 13435 , 13435 , 13425 , 13367 , - 10 , - 58 , 39 , 149 , 35 , 158 , 4 , - 9 , 0 , 1 , - 14 , - 50 , - 14 , - 49 , 0 , 0 , 68 , 68 , 68 , 11 . 122723201 , 11 . 794565542 , - 0 . 671842341 , 0 . 074649149 , - 3 . 73245745 , - 3 . 657808301 <nl> + 050 , 2 , 3 , 39 , 165 , Ohio , Warren County , 212693 , 212693 , 213271 , 214910 , 578 , 1639 , 662 , 2590 , 354 , 1434 , 308 , 1156 , 71 , 199 , 197 , 294 , 268 , 493 , 2 , - 10 , 5985 , 5985 , 5985 , 12 . 09768766 , 6 . 6981019709 , 5 . 3995856892 , 0 . 9295134534 , 1 . 3732510317 , 2 . 3027644851 <nl> + 050 , 2 , 3 , 39 , 167 , Ohio , Washington County , 61778 , 61778 , 61716 , 61755 , - 62 , 39 , 152 , 611 , 171 , 687 , - 19 , - 76 , 3 , 16 , - 43 , 105 , - 40 , 121 , - 3 , - 6 , 1781 , 1781 , 1781 , 9 . 8970608483 , 11 . 128119153 , - 1 . 231058305 , 0 . 2591701695 , 1 . 7008042374 , 1 . 9599744069 <nl> + 050 , 2 , 3 , 39 , 169 , Ohio , Wayne County , 114520 , 114520 , 114509 , 114611 , - 11 , 102 , 382 , 1519 , 263 , 1019 , 119 , 500 , 8 , 34 , - 138 , - 431 , - 130 , - 397 , 0 , - 1 , 3231 , 3231 , 3231 , 13 . 259427374 , 8 . 8949022346 , 4 . 3645251397 , 0 . 2967877095 , - 3 . 76222067 , - 3 . 465432961 <nl> + 050 , 2 , 3 , 39 , 171 , Ohio , Williams County , 37642 , 37642 , 37547 , 37597 , - 95 , 50 , 95 , 392 , 90 , 372 , 5 , 20 , 6 , 23 , - 109 , 12 , - 103 , 35 , 3 , - 5 , 990 , 990 , 990 , 10 . 433301395 , 9 . 900990099 , 0 . 5323112956 , 0 . 61215799 , 0 . 3193867774 , 0 . 9315447674 <nl> + 050 , 2 , 3 , 39 , 173 , Ohio , Wood County , 125488 , 125488 , 125532 , 126355 , 44 , 823 , 347 , 1362 , 225 , 952 , 122 , 410 , 23 , 91 , - 101 , 325 , - 78 , 416 , 0 , - 3 , 6230 , 6230 , 6230 , 10 . 814373112 , 7 . 5589450825 , 3 . 2554280292 , 0 . 7225462211 , 2 . 5805222183 , 3 . 3030684394 <nl> + 050 , 2 , 3 , 39 , 175 , Ohio , Wyandot County , 22615 , 22615 , 22613 , 22692 , - 2 , 79 , 69 , 277 , 64 , 251 , 5 , 26 , 4 , 18 , - 10 , 37 , - 6 , 55 , - 1 , - 2 , 251 , 251 , 251 , 12 . 22823088 , 11 . 080454696 , 1 . 1477761836 , 0 . 794614281 , 1 . 6333737998 , 2 . 4279880808 <nl> + 040 , 3 , 7 , 40 , 000 , Oklahoma , Oklahoma , 3751351 , 3751354 , 3760184 , 3791508 , 8830 , 31324 , 13366 , 53727 , 7930 , 34528 , 5436 , 19199 , 1564 , 4908 , 1738 , 7195 , 3302 , 12103 , 92 , 22 , 112017 , 109945 , 109945 , 14 . 229129048 , 9 . 1444407426 , 5 . 0846883056 , 1 . 2998411482 , 1 . 9055332235 , 3 . 2053743717 <nl> + 050 , 3 , 7 , 40 , 001 , Oklahoma , Adair County , 22683 , 22683 , 22748 , 22612 , 65 , - 136 , 76 , 303 , 32 , 222 , 44 , 81 , 3 , 13 , 19 , - 233 , 22 , - 220 , - 1 , 3 , 92 , 92 , 92 , 13 . 35978836 , 9 . 7883597884 , 3 . 5714285714 , 0 . 5731922399 , - 10 . 27336861 , - 9 . 700176367 <nl> + 050 , 3 , 7 , 40 , 003 , Oklahoma , Alfalfa County , 5642 , 5642 , 5643 , 5662 , 1 , 19 , 11 , 49 , 9 , 58 , 2 , - 9 , 0 , 0 , - 1 , 28 , - 1 , 28 , 0 , 0 , 1054 , 1054 , 1054 , 8 . 6687306502 , 10 . 260946484 , - 1 . 592215834 , 0 , 4 . 9535603715 , 4 . 9535603715 <nl> + 050 , 3 , 7 , 40 , 005 , Oklahoma , Atoka County , 14182 , 14185 , 14215 , 14206 , 30 , - 9 , 40 , 169 , 12 , 117 , 28 , 52 , 0 , 2 , 3 , - 62 , 3 , - 60 , - 1 , - 1 , 750 , 750 , 750 , 11 . 892614616 , 8 . 2333485803 , 3 . 6592660357 , 0 . 1407410014 , - 4 . 362971043 , - 4 . 222230041 <nl> + 050 , 3 , 7 , 40 , 007 , Oklahoma , Beaver County , 5636 , 5636 , 5650 , 5624 , 14 , - 26 , 16 , 54 , 4 , 50 , 12 , 4 , 0 , 5 , 2 , - 34 , 2 , - 29 , 0 , - 1 , 43 , 43 , 43 , 9 . 5795635977 , 8 . 8699662941 , 0 . 7095973035 , 0 . 8869966294 , - 6 . 03157708 , - 5 . 144580451 <nl> + 050 , 3 , 7 , 40 , 009 , Oklahoma , Beckham County , 22119 , 22119 , 22029 , 22288 , - 90 , 259 , 86 , 338 , 67 , 255 , 19 , 83 , 4 , 14 , - 116 , 162 , - 112 , 176 , 3 , 0 , 1907 , 1907 , 1907 , 15 . 2537401 , 11 . 507999188 , 3 . 7457409121 , 0 . 6318117201 , 7 . 3109641898 , 7 . 9427759099 <nl> + 050 , 3 , 7 , 40 , 011 , Oklahoma , Blaine County , 11943 , 11943 , 9906 , 9780 , - 2037 , - 126 , 43 , 173 , 18 , 117 , 25 , 56 , 0 , 1 , - 2126 , - 187 , - 2126 , - 186 , 64 , 4 , 2190 , 107 , 107 , 17 . 575942294 , 11 . 886619933 , 5 . 6893223611 , 0 . 1015950422 , - 18 . 99827288 , - 18 . 89667784 <nl> + 050 , 3 , 7 , 40 , 013 , Oklahoma , Bryan County , 42416 , 42416 , 42572 , 43089 , 156 , 517 , 141 , 569 , 103 , 405 , 38 , 164 , 7 , 33 , 109 , 317 , 116 , 350 , 2 , 3 , 1134 , 1134 , 1134 , 13 . 284925462 , 9 . 4558784044 , 3 . 8290470576 , 0 . 7704789811 , 7 . 4012677881 , 8 . 1717467692 <nl> + 050 , 3 , 7 , 40 , 015 , Oklahoma , Caddo County , 29600 , 29600 , 29670 , 29537 , 70 , - 133 , 104 , 416 , 70 , 303 , 34 , 113 , 5 , 35 , 31 , - 281 , 36 , - 246 , 0 , 0 , 1935 , 1935 , 1935 , 14 . 052392454 , 10 . 235276234 , 3 . 8171162194 , 1 . 1822926343 , - 9 . 492120864 , - 8 . 30982823 <nl> + 050 , 3 , 7 , 40 , 017 , Oklahoma , Canadian County , 115541 , 115541 , 116318 , 119492 , 777 , 3174 , 392 , 1548 , 187 , 763 , 205 , 785 , 16 , 66 , 544 , 2296 , 560 , 2362 , 12 , 27 , 2488 , 2488 , 2488 , 13 . 129214198 , 6 . 4713116492 , 6 . 6579025487 , 0 . 5597726984 , 19 . 473304779 , 20 . 033077478 <nl> + 050 , 3 , 7 , 40 , 019 , Oklahoma , Carter County , 47557 , 47563 , 47622 , 48096 , 59 , 474 , 162 , 676 , 140 , 547 , 22 , 129 , 10 , 41 , 28 , 302 , 38 , 343 , - 1 , 2 , 750 , 750 , 750 , 14 . 124825007 , 11 . 429407217 , 2 . 6954177898 , 0 . 8566831735 , 6 . 3102028876 , 7 . 1668860611 <nl> + 050 , 3 , 7 , 40 , 021 , Oklahoma , Cherokee County , 46987 , 46987 , 47165 , 47845 , 178 , 680 , 157 , 646 , 85 , 384 , 72 , 262 , 8 , 30 , 97 , 386 , 105 , 416 , 1 , 2 , 2008 , 2008 , 2008 , 13 . 598568572 , 8 . 0833596464 , 5 . 5152089254 , 0 . 6315124724 , 8 . 1254604778 , 8 . 7569729502 <nl> + 050 , 3 , 7 , 40 , 023 , Oklahoma , Choctaw County , 15205 , 15205 , 15229 , 15250 , 24 , 21 , 55 , 227 , 46 , 194 , 9 , 33 , 0 , 4 , 15 , - 14 , 15 , - 10 , 0 , - 2 , 172 , 172 , 172 , 14 . 895501821 , 12 . 730076446 , 2 . 1654253748 , 0 . 262475803 , - 0 . 918665311 , - 0 . 656189508 <nl> + 050 , 3 , 7 , 40 , 025 , Oklahoma , Cimarron County , 2475 , 2475 , 2470 , 2487 , - 5 , 17 , 8 , 31 , 4 , 28 , 4 , 3 , 0 , 3 , - 9 , 11 , - 9 , 14 , 0 , 0 , 7 , 7 , 7 , 12 . 50756506 , 11 . 297155538 , 1 . 2104095219 , 1 . 2104095219 , 4 . 4381682469 , 5 . 6485777688 <nl> + 050 , 3 , 7 , 40 , 027 , Oklahoma , Cleveland County , 255755 , 255757 , 256932 , 261281 , 1175 , 4349 , 727 , 2902 , 359 , 1543 , 368 , 1359 , 136 , 376 , 656 , 2589 , 792 , 2965 , 15 , 25 , 10561 , 10565 , 10565 , 11 . 200027788 , 5 . 9550802469 , 5 . 2449475409 , 1 . 4511407471 , 9 . 9920303041 , 11 . 443171051 <nl> + 050 , 3 , 7 , 40 , 029 , Oklahoma , Coal County , 5925 , 5925 , 5911 , 5928 , - 14 , 17 , 19 , 77 , 11 , 77 , 8 , 0 , 0 , 0 , - 22 , 18 , - 22 , 18 , 0 , - 1 , 61 , 61 , 61 , 13 . 007855393 , 13 . 007855393 , 0 , 0 , 3 . 0407973646 , 3 . 0407973646 <nl> + 050 , 3 , 7 , 40 , 031 , Oklahoma , Comanche County , 124098 , 124098 , 125418 , 125815 , 1320 , 397 , 512 , 2068 , 199 , 930 , 313 , 1138 , 184 , 167 , 799 , - 917 , 983 , - 750 , 24 , 9 , 10343 , 10343 , 10344 , 16 . 462805444 , 7 . 403486007 , 9 . 0593194365 , 1 . 3294431862 , - 7 . 299996418 , - 5 . 970553231 <nl> + 050 , 3 , 7 , 40 , 033 , Oklahoma , Cotton County , 6193 , 6193 , 6193 , 6179 , 0 , - 14 , 14 , 59 , 10 , 90 , 4 , - 31 , 2 , 6 , - 5 , 12 , - 3 , 18 , - 1 , - 1 , 48 , 48 , 48 , 9 . 5376656967 , 14 . 548981571 , - 5 . 011315875 , 0 . 9699321048 , 1 . 9398642095 , 2 . 9097963143 <nl> + 050 , 3 , 7 , 40 , 035 , Oklahoma , Craig County , 15029 , 15027 , 15068 , 15073 , 41 , 5 , 46 , 191 , 41 , 184 , 5 , 7 , 2 , 5 , 35 , - 6 , 37 , - 1 , - 1 , - 1 , 1050 , 1050 , 1050 , 12 . 67376663 , 12 . 209283036 , 0 . 4644835938 , 0 . 3317739956 , - 0 . 398128795 , - 0 . 066354799 <nl> + 050 , 3 , 7 , 40 , 037 , Oklahoma , Creek County , 69967 , 69967 , 70141 , 70467 , 174 , 326 , 211 , 839 , 171 , 744 , 40 , 95 , 10 , 31 , 123 , 201 , 133 , 232 , 1 , - 1 , 1062 , 1062 , 1062 , 11 . 933887119 , 10 . 582612654 , 1 . 3512744652 , 0 . 4409421939 , 2 . 8590122895 , 3 . 2999544834 <nl> + 050 , 3 , 7 , 40 , 039 , Oklahoma , Custer County , 27469 , 27469 , 27515 , 27750 , 46 , 235 , 102 , 408 , 62 , 271 , 40 , 137 , 8 , 33 , - 2 , 66 , 6 , 99 , 0 , - 1 , 1516 , 1516 , 1516 , 14 . 765222112 , 9 . 8072921379 , 4 . 9579299738 , 1 . 1942459061 , 2 . 3884918122 , 3 . 5827377183 <nl> + 050 , 3 , 7 , 40 , 041 , Oklahoma , Delaware County , 41487 , 41487 , 41548 , 41633 , 61 , 85 , 100 , 396 , 99 , 451 , 1 , - 55 , 12 , 49 , 49 , 93 , 61 , 142 , - 1 , - 2 , 356 , 356 , 356 , 9 . 5214051286 , 10 . 843822508 , - 1 . 322417379 , 1 . 1781536649 , 2 . 2360875681 , 3 . 414241233 <nl> + 050 , 3 , 7 , 40 , 043 , Oklahoma , Dewey County , 4810 , 4810 , 4831 , 4867 , 21 , 36 , 16 , 55 , 11 , 87 , 5 , - 32 , 1 , 4 , 15 , 66 , 16 , 70 , 0 , - 2 , 93 , 93 , 93 , 11 . 342544855 , 17 . 941843679 , - 6 . 599298824 , 0 . 8249123531 , 13 . 611053826 , 14 . 435966179 <nl> + 050 , 3 , 7 , 40 , 045 , Oklahoma , Ellis County , 4151 , 4151 , 4154 , 4051 , 3 , - 103 , 14 , 53 , 5 , 61 , 9 , - 8 , 1 , 3 , - 6 , - 99 , - 5 , - 96 , - 1 , 1 , 46 , 46 , 46 , 12 . 918951859 , 14 . 868982328 , - 1 . 950030469 , 0 . 731261426 , - 24 . 13162706 , - 23 . 40036563 <nl> + 050 , 3 , 7 , 40 , 047 , Oklahoma , Garfield County , 60580 , 60580 , 60745 , 60670 , 165 , - 75 , 238 , 972 , 157 , 628 , 81 , 344 , 30 , 73 , 54 , - 496 , 84 , - 423 , 0 , 4 , 1830 , 1830 , 1830 , 16 . 011201252 , 10 . 344685583 , 5 . 6665156694 , 1 . 2024873368 , - 8 . 170324919 , - 6 . 967837582 <nl> + 050 , 3 , 7 , 40 , 049 , Oklahoma , Garvin County , 27576 , 27576 , 27528 , 27452 , - 48 , - 76 , 89 , 385 , 97 , 339 , - 8 , 46 , 1 , 5 , - 38 , - 124 , - 37 , - 119 , - 3 , - 3 , 317 , 317 , 317 , 14 . 005092761 , 12 . 331757003 , 1 . 6733357585 , 0 . 1818843216 , - 4 . 510731175 , - 4 . 328846853 <nl> + 050 , 3 , 7 , 40 , 051 , Oklahoma , Grady County , 52431 , 52431 , 52508 , 53020 , 77 , 512 , 158 , 626 , 113 , 444 , 45 , 182 , 10 , 30 , 25 , 302 , 35 , 332 , - 3 , - 2 , 1082 , 1082 , 1082 , 11 . 864149799 , 8 . 414828292 , 3 . 4493215071 , 0 . 5685694792 , 5 . 7235994238 , 6 . 292168903 <nl> + 050 , 3 , 7 , 40 , 053 , Oklahoma , Grant County , 4527 , 4527 , 4544 , 4585 , 17 , 41 , 9 , 48 , 8 , 64 , 1 , - 16 , 0 , 1 , 15 , 56 , 15 , 57 , 1 , 0 , 73 , 73 , 73 , 10 . 515938219 , 14 . 021250958 , - 3 . 50531274 , 0 . 2190820462 , 12 . 268594589 , 12 . 487676635 <nl> + 050 , 3 , 7 , 40 , 055 , Oklahoma , Greer County , 6239 , 6239 , 6212 , 6125 , - 27 , - 87 , 14 , 67 , 12 , 70 , 2 , - 3 , 0 , 1 , - 29 , - 84 , - 29 , - 83 , 0 , - 1 , 1146 , 1146 , 1146 , 10 . 86163573 , 11 . 347977628 , - 0 . 486341898 , 0 . 1621139661 , - 13 . 61757315 , - 13 . 45545919 <nl> + 050 , 3 , 7 , 40 , 057 , Oklahoma , Harmon County , 2922 , 2922 , 2928 , 2919 , 6 , - 9 , 8 , 44 , 4 , 44 , 4 , 0 , 1 , 8 , 2 , - 16 , 3 , - 8 , - 1 , - 1 , 100 , 100 , 100 , 15 . 050453224 , 15 . 050453224 , 0 , 2 . 7364460407 , - 5 . 472892081 , - 2 . 736446041 <nl> + 050 , 3 , 7 , 40 , 059 , Oklahoma , Harper County , 3685 , 3685 , 3688 , 3695 , 3 , 7 , 12 , 45 , 8 , 77 , 4 , - 32 , 0 , 5 , - 1 , 36 , - 1 , 41 , 0 , - 2 , 41 , 41 , 41 , 12 . 190166599 , 20 . 858729514 , - 8 . 668562915 , 1 . 3544629554 , 9 . 7521332792 , 11 . 106596235 <nl> + 050 , 3 , 7 , 40 , 061 , Oklahoma , Haskell County , 12769 , 12769 , 12771 , 12810 , 2 , 39 , 42 , 174 , 33 , 128 , 9 , 46 , 6 , 19 , - 12 , - 25 , - 6 , - 6 , - 1 , - 1 , 78 , 78 , 78 , 13 . 603846605 , 10 . 007427388 , 3 . 5964192174 , 1 . 4854775028 , - 1 . 954575662 , - 0 . 469098159 <nl> + 050 , 3 , 7 , 40 , 063 , Oklahoma , Hughes County , 14003 , 14003 , 14027 , 13843 , 24 , - 184 , 37 , 154 , 38 , 151 , - 1 , 3 , 1 , 2 , 24 , - 191 , 25 , - 189 , 0 , 2 , 1565 , 1565 , 1565 , 11 . 051309652 , 10 . 836024399 , 0 . 215285253 , 0 . 143523502 , - 13 . 70649444 , - 13 . 56297094 <nl> + 050 , 3 , 7 , 40 , 065 , Oklahoma , Jackson County , 26446 , 26446 , 26481 , 26447 , 35 , - 34 , 112 , 449 , 53 , 213 , 59 , 236 , 25 , 30 , - 50 , - 301 , - 25 , - 271 , 1 , 1 , 687 , 687 , 687 , 16 . 966444982 , 8 . 0486698912 , 8 . 9177750907 , 1 . 1336154776 , - 11 . 37394196 , - 10 . 24032648 <nl> + 050 , 3 , 7 , 40 , 067 , Oklahoma , Jefferson County , 6472 , 6472 , 6452 , 6506 , - 20 , 54 , 18 , 61 , 10 , 91 , 8 , - 30 , 1 , 2 , - 29 , 82 , - 28 , 84 , 0 , 0 , 144 , 144 , 144 , 9 . 4150331841 , 14 . 045377373 , - 4 . 630344189 , 0 . 3086896126 , 12 . 656274116 , 12 . 964963729 <nl> + 050 , 3 , 7 , 40 , 069 , Oklahoma , Johnston County , 10957 , 10957 , 11005 , 11139 , 48 , 134 , 41 , 162 , 29 , 151 , 12 , 11 , 3 , 7 , 33 , 115 , 36 , 122 , 0 , 1 , 292 , 292 , 292 , 14 . 63150289 , 13 . 63800578 , 0 . 9934971098 , 0 . 6322254335 , 10 . 386560694 , 11 . 018786127 <nl> + 050 , 3 , 7 , 40 , 071 , Oklahoma , Kay County , 46562 , 46562 , 46447 , 46159 , - 115 , - 288 , 180 , 715 , 120 , 518 , 60 , 197 , 7 , 34 , - 183 , - 524 , - 176 , - 490 , 1 , 5 , 1273 , 1273 , 1273 , 15 . 441764033 , 11 . 187180096 , 4 . 2545839362 , 0 . 7342936743 , - 11 . 31676133 , - 10 . 58246766 <nl> + 050 , 3 , 7 , 40 , 073 , Oklahoma , Kingfisher County , 15034 , 15034 , 15073 , 15213 , 39 , 140 , 49 , 203 , 24 , 131 , 25 , 72 , 1 , 12 , 12 , 57 , 13 , 69 , 1 , - 1 , 155 , 155 , 155 , 13 . 40553391 , 8 . 6508617843 , 4 . 7546721257 , 0 . 7924453543 , 3 . 7641154329 , 4 . 5565607872 <nl> + 050 , 3 , 7 , 40 , 075 , Oklahoma , Kiowa County , 9446 , 9446 , 9427 , 9416 , - 19 , - 11 , 23 , 93 , 23 , 133 , 0 , - 40 , 0 , 0 , - 18 , 29 , - 18 , 29 , - 1 , 0 , 171 , 171 , 171 , 9 . 8710396434 , 14 . 116648092 , - 4 . 245608449 , 0 , 3 . 0780661254 , 3 . 0780661254 <nl> + 050 , 3 , 7 , 40 , 077 , Oklahoma , Latimer County , 11154 , 11154 , 11150 , 11155 , - 4 , 5 , 34 , 142 , 19 , 101 , 15 , 41 , 0 , 0 , - 19 , - 35 , - 19 , - 35 , 0 , - 1 , 574 , 574 , 574 , 12 . 732571172 , 9 . 0562654113 , 3 . 676305761 , 0 , - 3 . 138309796 , - 3 . 138309796 <nl> + 050 , 3 , 7 , 40 , 079 , Oklahoma , Le Flore County , 50384 , 50384 , 50520 , 50628 , 136 , 108 , 172 , 691 , 144 , 602 , 28 , 89 , 11 , 37 , 98 , - 14 , 109 , 23 , - 1 , - 4 , 1616 , 1616 , 1616 , 13 . 663147072 , 11 . 903349547 , 1 . 7597975244 , 0 . 731601218 , - 0 . 276822082 , 0 . 4547791355 <nl> + 050 , 3 , 7 , 40 , 081 , Oklahoma , Lincoln County , 34273 , 34273 , 34293 , 34155 , 20 , - 138 , 96 , 395 , 80 , 310 , 16 , 85 , 2 , 8 , 4 , - 228 , 6 , - 220 , - 2 , - 3 , 386 , 386 , 386 , 11 . 541608228 , 9 . 0579710145 , 2 . 4836372137 , 0 . 2337540907 , - 6 . 661991585 , - 6 . 428237494 <nl> + 050 , 3 , 7 , 40 , 083 , Oklahoma , Logan County , 41848 , 41848 , 42029 , 42499 , 181 , 470 , 109 , 440 , 86 , 306 , 23 , 134 , 9 , 37 , 145 , 298 , 154 , 335 , 4 , 1 , 2161 , 2161 , 2161 , 10 . 410751467 , 7 . 2402044293 , 3 . 1705470377 , 0 . 8754495552 , 7 . 050918039 , 7 . 9263675942 <nl> + 050 , 3 , 7 , 40 , 085 , Oklahoma , Love County , 9423 , 9421 , 9446 , 9386 , 25 , - 60 , 29 , 111 , 19 , 119 , 10 , - 8 , 2 , 7 , 13 , - 59 , 15 , - 52 , 0 , 0 , 88 , 88 , 88 , 11 . 7884452 , 12 . 638062872 , - 0 . 849617672 , 0 . 743415463 , - 6 . 265930331 , - 5 . 522514868 <nl> + 050 , 3 , 7 , 40 , 087 , Oklahoma , McClain County , 34506 , 34506 , 34733 , 35235 , 227 , 502 , 123 , 484 , 67 , 272 , 56 , 212 , 7 , 19 , 160 , 269 , 167 , 288 , 4 , 2 , 194 , 194 , 194 , 13 . 834895952 , 7 . 7749828493 , 6 . 0599131031 , 0 . 5431054196 , 7 . 689229362 , 8 . 2323347816 <nl> + 050 , 3 , 7 , 40 , 089 , Oklahoma , McCurtain County , 33151 , 33151 , 33167 , 33195 , 16 , 28 , 116 , 476 , 96 , 358 , 20 , 118 , 0 , 1 , - 2 , - 87 , - 2 , - 86 , - 2 , - 4 , 454 , 454 , 454 , 14 . 345559206 , 10 . 789307134 , 3 . 556252072 , 0 . 0301377294 , - 2 . 62198246 , - 2 . 59184473 <nl> + 050 , 3 , 7 , 40 , 091 , Oklahoma , McIntosh County , 20252 , 20252 , 20288 , 20360 , 36 , 72 , 50 , 208 , 72 , 261 , - 22 , - 53 , 0 , 0 , 59 , 124 , 59 , 124 , - 1 , 1 , 345 , 345 , 345 , 10 . 234205865 , 12 . 841960244 , - 2 . 607754379 , 0 , 6 . 1011611887 , 6 . 1011611887 <nl> + 050 , 3 , 7 , 40 , 093 , Oklahoma , Major County , 7527 , 7527 , 7516 , 7657 , - 11 , 141 , 28 , 112 , 15 , 75 , 13 , 37 , 0 , 3 , - 23 , 99 , - 23 , 102 , - 1 , 2 , 77 , 77 , 77 , 14 . 763065972 , 9 . 885981678 , 4 . 8770842945 , 0 . 3954392671 , 13 . 049495815 , 13 . 444935082 <nl> + 050 , 3 , 7 , 40 , 095 , Oklahoma , Marshall County , 15840 , 15836 , 15876 , 16049 , 40 , 173 , 51 , 200 , 31 , 147 , 20 , 53 , 3 , 6 , 19 , 112 , 22 , 118 , - 2 , 2 , 329 , 329 , 329 , 12 . 529365701 , 9 . 2090837901 , 3 . 3202819107 , 0 . 375880971 , 7 . 0164447925 , 7 . 3923257635 <nl> + 050 , 3 , 7 , 40 , 097 , Oklahoma , Mayes County , 41259 , 41261 , 41280 , 41389 , 19 , 109 , 126 , 525 , 96 , 456 , 30 , 69 , 0 , 2 , - 9 , 41 , - 9 , 43 , - 2 , - 3 , 567 , 567 , 567 , 12 . 7012544 , 11 . 031946679 , 1 . 6693077212 , 0 . 048385731 , 0 . 9919074865 , 1 . 0402932175 <nl> + 050 , 3 , 7 , 40 , 099 , Oklahoma , Murray County , 13488 , 13488 , 13510 , 13571 , 22 , 61 , 40 , 167 , 47 , 182 , - 7 , - 15 , 4 , 10 , 25 , 65 , 29 , 75 , 0 , 1 , 313 , 313 , 313 , 12 . 33337026 , 13 . 441158007 , - 1 . 107787748 , 0 . 7385251652 , 4 . 8004135741 , 5 . 5389387393 <nl> + 050 , 3 , 7 , 40 , 101 , Oklahoma , Muskogee County , 70990 , 70990 , 71116 , 71003 , 126 , - 113 , 263 , 1042 , 168 , 819 , 95 , 223 , 8 , 52 , 25 , - 389 , 33 , - 337 , - 2 , 1 , 3526 , 3526 , 3526 , 14 . 663767688 , 11 . 52555253 , 3 . 1382151577 , 0 . 731781113 , - 5 . 474285634 , - 4 . 742504521 <nl> + 050 , 3 , 7 , 40 , 103 , Oklahoma , Noble County , 11561 , 11561 , 11555 , 11578 , - 6 , 23 , 33 , 132 , 22 , 127 , 11 , 5 , 0 , 0 , - 17 , 19 , - 17 , 19 , 0 , - 1 , 273 , 273 , 273 , 11 . 412268188 , 10 . 979985302 , 0 . 4322828859 , 0 , 1 . 6426749665 , 1 . 6426749665 <nl> + 050 , 3 , 7 , 40 , 105 , Oklahoma , Nowata County , 10536 , 10536 , 10518 , 10629 , - 18 , 111 , 25 , 108 , 25 , 138 , 0 , - 30 , 0 , 2 , - 17 , 137 , - 17 , 139 , - 1 , 2 , 157 , 157 , 157 , 10 . 214214782 , 13 . 051496666 , - 2 . 837281884 , 0 . 1891521256 , 12 . 956920603 , 13 . 146072729 <nl> + 050 , 3 , 7 , 40 , 107 , Oklahoma , Okfuskee County , 12191 , 12191 , 12228 , 12348 , 37 , 120 , 33 , 147 , 17 , 142 , 16 , 5 , 6 , 26 , 15 , 88 , 21 , 114 , 0 , 1 , 1228 , 1228 , 1228 , 11 . 962890625 , 11 . 555989583 , 0 . 4069010417 , 2 . 1158854167 , 7 . 1614583333 , 9 . 27734375 <nl> + 050 , 3 , 7 , 40 , 109 , Oklahoma , Oklahoma County , 718633 , 718631 , 721298 , 732371 , 2667 , 11073 , 3099 , 12383 , 1476 , 6236 , 1623 , 6147 , 514 , 1692 , 528 , 3220 , 1042 , 4912 , 2 , 14 , 15025 , 15025 , 15025 , 17 . 036890792 , 8 . 5796697873 , 8 . 4572210042 , 2 . 3279027069 , 4 . 430169454 , 6 . 7580721609 <nl> + 050 , 3 , 7 , 40 , 111 , Oklahoma , Okmulgee County , 40069 , 40069 , 40144 , 39937 , 75 , - 207 , 124 , 502 , 97 , 453 , 27 , 49 , 0 , 6 , 48 , - 264 , 48 , - 258 , 0 , 2 , 1374 , 1374 , 1374 , 12 . 537305978 , 11 . 313545036 , 1 . 223760942 , 0 . 1498482786 , - 6 . 593324259 , - 6 . 443475981 <nl> + 050 , 3 , 7 , 40 , 113 , Oklahoma , Osage County , 47472 , 47466 , 47412 , 47425 , - 54 , 13 , 108 , 444 , 95 , 415 , 13 , 29 , 13 , 51 , - 75 , - 62 , - 62 , - 11 , - 5 , - 5 , 1504 , 1504 , 1504 , 9 . 3634341027 , 8 . 7518584519 , 0 . 6115756509 , 1 . 0755295929 , - 1 . 307506564 , - 0 . 231976971 <nl> + 050 , 3 , 7 , 40 , 115 , Oklahoma , Ottawa County , 31848 , 31848 , 31851 , 31860 , 3 , 9 , 118 , 461 , 106 , 460 , 12 , 1 , 2 , 25 , - 10 , - 15 , - 8 , 10 , - 1 , - 2 , 968 , 968 , 968 , 14 . 471598311 , 14 . 440206558 , 0 . 0313917534 , 0 . 7847938347 , - 0 . 470876301 , 0 . 3139175339 <nl> + 050 , 3 , 7 , 40 , 117 , Oklahoma , Pawnee County , 16577 , 16577 , 16576 , 16730 , - 1 , 154 , 43 , 174 , 41 , 170 , 2 , 4 , 0 , 1 , - 2 , 149 , - 2 , 150 , - 1 , 0 , 194 , 194 , 194 , 10 . 448567826 , 10 . 208370864 , 0 . 2401969615 , 0 . 0600492404 , 8 . 9473368162 , 9 . 0073860566 <nl> + 050 , 3 , 7 , 40 , 119 , Oklahoma , Payne County , 77350 , 77350 , 77444 , 77988 , 94 , 544 , 242 , 960 , 134 , 518 , 108 , 442 , 49 , 194 , - 63 , - 89 , - 14 , 105 , 0 , - 3 , 7764 , 7771 , 7771 , 12 . 352668691 , 6 . 6652941479 , 5 . 6873745432 , 2 . 4962684647 , - 1 . 145195327 , 1 . 3510731381 <nl> + 050 , 3 , 7 , 40 , 121 , Oklahoma , Pittsburg County , 45837 , 45837 , 45788 , 45625 , - 49 , - 163 , 136 , 551 , 136 , 536 , 0 , 15 , 7 , 30 , - 52 , - 201 , - 45 , - 171 , - 4 , - 7 , 2433 , 2433 , 2433 , 12 . 055178148 , 11 . 726997254 , 0 . 3281808933 , 0 . 6563617866 , - 4 . 39762397 , - 3 . 741262184 <nl> + 050 , 3 , 7 , 40 , 123 , Oklahoma , Pontotoc County , 37492 , 37492 , 37586 , 37799 , 94 , 213 , 148 , 576 , 102 , 417 , 46 , 159 , 5 , 18 , 44 , 37 , 49 , 55 , - 1 , - 1 , 1696 , 1696 , 1696 , 15 . 281554686 , 11 . 063208861 , 4 . 2183458248 , 0 . 4775485839 , 0 . 9816276448 , 1 . 4591762287 <nl> + 050 , 3 , 7 , 40 , 125 , Oklahoma , Pottawatomie County , 69442 , 69442 , 69646 , 70280 , 204 , 634 , 238 , 960 , 152 , 677 , 86 , 283 , 6 , 20 , 110 , 332 , 116 , 352 , 2 , - 1 , 3053 , 3053 , 3052 , 13 . 721538528 , 9 . 6765433158 , 4 . 0449952118 , 0 . 285865386 , 4 . 7453654074 , 5 . 0312307934 <nl> + 050 , 3 , 7 , 40 , 127 , Oklahoma , Pushmataha County , 11572 , 11572 , 11579 , 11478 , 7 , - 101 , 32 , 138 , 39 , 149 , - 7 , - 11 , 1 , 3 , 14 , - 93 , 15 , - 90 , - 1 , 0 , 110 , 110 , 110 , 11 . 970334389 , 12 . 924491478 , - 0 . 954157089 , 0 . 2602246606 , - 8 . 066964479 , - 7 . 806739819 <nl> + 050 , 3 , 7 , 40 , 129 , Oklahoma , Roger Mills County , 3647 , 3647 , 3643 , 3702 , - 4 , 59 , 11 , 45 , 2 , 24 , 9 , 21 , 2 , 7 , - 14 , 31 , - 12 , 38 , - 1 , 0 , 11 , 11 , 11 , 12 . 253233492 , 6 . 5350578625 , 5 . 7181756297 , 1 . 9060585432 , 8 . 4411164057 , 10 . 347174949 <nl> + 050 , 3 , 7 , 40 , 131 , Oklahoma , Rogers County , 86905 , 86905 , 87042 , 87706 , 137 , 664 , 236 , 949 , 136 , 646 , 100 , 303 , 17 , 58 , 22 , 306 , 39 , 364 , - 2 , - 3 , 1216 , 1216 , 1216 , 10 . 861354636 , 7 . 3935037883 , 3 . 4678508481 , 0 . 6638130336 , 3 . 502186005 , 4 . 1659990386 <nl> + 050 , 3 , 7 , 40 , 133 , Oklahoma , Seminole County , 25482 , 25482 , 25451 , 25292 , - 31 , - 159 , 83 , 335 , 82 , 290 , 1 , 45 , 1 , 12 , - 31 , - 212 , - 30 , - 200 , - 2 , - 4 , 581 , 581 , 581 , 13 . 203791656 , 11 . 430148001 , 1 . 7736436553 , 0 . 4729716414 , - 8 . 355832332 , - 7 . 88286069 <nl> + 050 , 3 , 7 , 40 , 135 , Oklahoma , Sequoyah County , 42391 , 42391 , 42435 , 42341 , 44 , - 94 , 133 , 538 , 107 , 461 , 26 , 77 , 1 , 4 , 18 , - 174 , 19 , - 170 , - 1 , - 1 , 416 , 416 , 416 , 12 . 692271398 , 10 . 875719543 , 1 . 8165518543 , 0 . 0943663301 , - 4 . 104935359 , - 4 . 010569029 <nl> + 050 , 3 , 7 , 40 , 137 , Oklahoma , Stephens County , 45048 , 45048 , 45093 , 45197 , 45 , 104 , 135 , 546 , 122 , 511 , 13 , 35 , 2 , 7 , 32 , 63 , 34 , 70 , - 2 , - 1 , 540 , 540 , 540 , 12 . 094362609 , 11 . 319082955 , 0 . 7752796544 , 0 . 1550559309 , 1 . 395503378 , 1 . 5505593089 <nl> + 050 , 3 , 7 , 40 , 139 , Oklahoma , Texas County , 20640 , 20640 , 20855 , 21312 , 215 , 457 , 111 , 419 , 14 , 133 , 97 , 286 , 37 , 135 , 79 , 36 , 116 , 171 , 2 , 0 , 572 , 572 , 572 , 19 . 873360685 , 6 . 3082505277 , 13 . 565110157 , 6 . 4031114379 , 1 . 7074963834 , 8 . 1106078213 <nl> + 050 , 3 , 7 , 40 , 141 , Oklahoma , Tillman County , 7992 , 7992 , 7999 , 8061 , 7 , 62 , 28 , 107 , 7 , 81 , 21 , 26 , 3 , 13 , - 17 , 25 , - 14 , 38 , 0 , - 2 , 267 , 267 , 267 , 13 . 325031133 , 10 . 087173101 , 3 . 2378580324 , 1 . 6189290162 , 3 . 1133250311 , 4 . 7322540473 <nl> + 050 , 3 , 7 , 40 , 143 , Oklahoma , Tulsa County , 603403 , 603409 , 605413 , 610599 , 2004 , 5186 , 2427 , 9781 , 1232 , 5286 , 1195 , 4495 , 335 , 1168 , 476 , - 449 , 811 , 719 , - 2 , - 28 , 9817 , 9817 , 9817 , 16 . 087012299 , 8 . 6939931514 , 7 . 3930191478 , 1 . 921033674 , - 0 . 738479554 , 1 . 1825541195 <nl> + 050 , 3 , 7 , 40 , 145 , Oklahoma , Wagoner County , 73085 , 73085 , 73395 , 74098 , 310 , 703 , 222 , 892 , 125 , 517 , 97 , 375 , 6 , 19 , 202 , 308 , 208 , 327 , 5 , 1 , 319 , 319 , 319 , 12 . 095489277 , 7 . 0105021933 , 5 . 0849870841 , 0 . 2576393456 , 4 . 1764693918 , 4 . 4341087374 <nl> + 050 , 3 , 7 , 40 , 147 , Oklahoma , Washington County , 50976 , 50976 , 51048 , 51476 , 72 , 428 , 158 , 624 , 138 , 558 , 20 , 66 , 13 , 59 , 40 , 302 , 53 , 361 , - 1 , 1 , 798 , 798 , 798 , 12 . 172759549 , 10 . 885256135 , 1 . 2875034138 , 1 . 1509500215 , 5 . 8913034997 , 7 . 0422535211 <nl> + 050 , 3 , 7 , 40 , 149 , Oklahoma , Washita County , 11629 , 11629 , 11618 , 11574 , - 11 , - 44 , 34 , 137 , 30 , 154 , 4 , - 17 , 0 , 4 , - 14 , - 30 , - 14 , - 26 , - 1 , - 1 , 206 , 206 , 206 , 11 . 814418765 , 13 . 280441532 , - 1 . 466022766 , 0 . 3449465333 , - 2 . 587099 , - 2 . 242152466 <nl> + 050 , 3 , 7 , 40 , 151 , Oklahoma , Woods County , 8878 , 8878 , 8895 , 8775 , 17 , - 120 , 25 , 109 , 16 , 107 , 9 , 2 , 0 , 1 , 9 , - 125 , 9 , - 124 , - 1 , 2 , 1005 , 1005 , 1005 , 12 . 33729485 , 12 . 110922467 , 0 . 2263723826 , 0 . 1131861913 , - 14 . 14827391 , - 14 . 03508772 <nl> + 050 , 3 , 7 , 40 , 153 , Oklahoma , Woodward County , 20081 , 20081 , 19964 , 20034 , - 117 , 70 , 65 , 271 , 63 , 251 , 2 , 20 , 3 , 21 , - 125 , 30 , - 122 , 51 , 3 , - 1 , 1240 , 1240 , 1240 , 13 . 550677534 , 12 . 550627531 , 1 . 0000500025 , 1 . 0500525026 , 1 . 5000750038 , 2 . 5501275064 <nl> + 040 , 4 , 9 , 41 , 000 , Oregon , Oregon , 3831074 , 3831074 , 3838332 , 3871859 , 7258 , 33527 , 11737 , 46232 , 7702 , 31451 , 4035 , 14781 , 1894 , 6604 , 1427 , 12209 , 3321 , 18813 , - 98 , - 67 , 86642 , 86643 , 86645 , 11 . 992439617 , 8 . 1582933549 , 3 . 8341462617 , 1 . 7130574327 , 3 . 1669773161 , 4 . 8800347488 <nl> + 050 , 4 , 9 , 41 , 001 , Oregon , Baker County , 16134 , 16134 , 16089 , 15984 , - 45 , - 105 , 35 , 149 , 62 , 208 , - 27 , - 59 , 0 , - 1 , - 17 , - 45 , - 17 , - 46 , - 1 , 0 , 373 , 373 , 373 , 9 . 2913042123 , 12 . 970411249 , - 3 . 679107037 , - 0 . 062357746 , - 2 . 806098588 , - 2 . 868456334 <nl> + 050 , 4 , 9 , 41 , 003 , Oregon , Benton County , 85579 , 85581 , 85527 , 85928 , - 54 , 401 , 191 , 753 , 141 , 537 , 50 , 216 , 71 , 256 , - 178 , - 68 , - 107 , 188 , 3 , - 3 , 5043 , 5043 , 5043 , 8 . 7836458546 , 6 . 2640342947 , 2 . 5196115599 , 2 . 9862062932 , - 0 . 793211047 , 2 . 1929952466 <nl> + 050 , 4 , 9 , 41 , 005 , Oregon , Clackamas County , 375992 , 375992 , 376957 , 380207 , 965 , 3250 , 1001 , 3951 , 711 , 2966 , 290 , 985 , 133 , 295 , 553 , 1990 , 686 , 2285 , - 11 , - 20 , 2753 , 2753 , 2753 , 10 . 436312344 , 7 . 8344982065 , 2 . 601814138 , 0 . 7792235236 , 5 . 2564569895 , 6 . 0356805131 <nl> + 050 , 4 , 9 , 41 , 007 , Oregon , Clatsop County , 37039 , 37039 , 37062 , 37153 , 23 , 91 , 96 , 388 , 98 , 375 , - 2 , 13 , 13 , 21 , 14 , 59 , 27 , 80 , - 2 , - 2 , 956 , 956 , 956 , 10 . 456107256 , 10 . 105773765 , 0 . 3503334905 , 0 . 5659233309 , 1 . 5899750724 , 2 . 1558984033 <nl> + 050 , 4 , 9 , 41 , 009 , Oregon , Columbia County , 49351 , 49351 , 49334 , 49402 , - 17 , 68 , 125 , 496 , 106 , 428 , 19 , 68 , 7 , 32 , - 42 , - 30 , - 35 , 2 , - 1 , - 2 , 499 , 499 , 499 , 10 . 046994004 , 8 . 6695835359 , 1 . 3774104683 , 0 . 6481931616 , - 0 . 607681089 , 0 . 0405120726 <nl> + 050 , 4 , 9 , 41 , 011 , Oregon , Coos County , 63043 , 63043 , 63026 , 62791 , - 17 , - 235 , 151 , 598 , 208 , 830 , - 57 , - 232 , 8 , 30 , 36 , - 28 , 44 , 2 , - 4 , - 5 , 1008 , 1008 , 1008 , 9 . 5058696361 , 13 . 193765548 , - 3 . 687895912 , 0 . 4768830921 , - 0 . 445090886 , 0 . 0317922061 <nl> + 050 , 4 , 9 , 41 , 013 , Oregon , Crook County , 20978 , 20978 , 20901 , 20839 , - 77 , - 62 , 52 , 211 , 57 , 202 , - 5 , 9 , 11 , 42 , - 84 , - 113 , - 73 , - 71 , 1 , 0 , 245 , 245 , 245 , 10 . 110206037 , 9 . 6789650216 , 0 . 4312410158 , 2 . 0124580738 , - 5 . 414470532 , - 3 . 402012458 <nl> + 050 , 4 , 9 , 41 , 015 , Oregon , Curry County , 22364 , 22364 , 22348 , 22426 , - 16 , 78 , 42 , 173 , 90 , 335 , - 48 , - 162 , 3 , 7 , 31 , 232 , 34 , 239 , - 2 , 1 , 318 , 318 , 318 , 7 . 7276991111 , 14 . 964041631 , - 7 . 23634252 , 0 . 3126814669 , 10 . 363157189 , 10 . 675838656 <nl> + 050 , 4 , 9 , 41 , 017 , Oregon , Deschutes County , 157733 , 157733 , 157932 , 160338 , 199 , 2406 , 446 , 1773 , 283 , 1154 , 163 , 619 , 37 , 153 , 9 , 1632 , 46 , 1785 , - 10 , 2 , 1244 , 1244 , 1244 , 11 . 141483646 , 7 . 2517045276 , 3 . 8897791184 , 0 . 9614478273 , 10 . 255443491 , 11 . 216891319 <nl> + 050 , 4 , 9 , 41 , 019 , Oregon , Douglas County , 107667 , 107667 , 107671 , 107490 , 4 , - 181 , 261 , 1047 , 316 , 1255 , - 55 , - 208 , 7 , 30 , 59 , 6 , 66 , 36 , - 7 , - 9 , 1708 , 1708 , 1708 , 9 . 732247015 , 11 . 665682907 , - 1 . 933435892 , 0 . 278860946 , 0 . 0557721892 , 0 . 3346331352 <nl> + 050 , 4 , 9 , 41 , 021 , Oregon , Gilliam County , 1871 , 1871 , 1870 , 1937 , - 1 , 67 , 2 , 15 , 3 , 31 , - 1 , - 16 , 0 , 0 , 0 , 83 , 0 , 83 , 0 , 0 , 20 , 20 , 20 , 7 . 8802206462 , 16 . 285789335 , - 8 . 405568689 , 0 , 43 . 603887576 , 43 . 603887576 <nl> + 050 , 4 , 9 , 41 , 023 , Oregon , Grant County , 7445 , 7445 , 7466 , 7410 , 21 , - 56 , 16 , 57 , 6 , 78 , 10 , - 21 , 0 , 2 , 12 , - 36 , 12 , - 34 , - 1 , - 1 , 105 , 105 , 105 , 7 . 663350363 , 10 . 48668997 , - 2 . 823339607 , 0 . 2688894864 , - 4 . 840010756 , - 4 . 571121269 <nl> + 050 , 4 , 9 , 41 , 025 , Oregon , Harney County , 7422 , 7422 , 7409 , 7373 , - 13 , - 36 , 19 , 79 , 14 , 75 , 5 , 4 , 2 , 10 , - 19 , - 50 , - 17 , - 40 , - 1 , 0 , 127 , 127 , 127 , 10 . 688675416 , 10 . 147476661 , 0 . 5411987552 , 1 . 3529968881 , - 6 . 764984441 , - 5 . 411987552 <nl> + 050 , 4 , 9 , 41 , 027 , Oregon , Hood River County , 22346 , 22346 , 22437 , 22493 , 91 , 56 , 68 , 275 , 32 , 169 , 36 , 106 , 8 , 31 , 47 , - 79 , 55 , - 48 , 0 , - 2 , 787 , 787 , 787 , 12 . 241264189 , 7 . 5228132651 , 4 . 7184509237 , 1 . 3799243267 , - 3 . 516581349 , - 2 . 136657022 <nl> + 050 , 4 , 9 , 41 , 029 , Oregon , Jackson County , 203206 , 203206 , 203454 , 204822 , 248 , 1368 , 572 , 2293 , 493 , 2012 , 79 , 281 , 54 , 173 , 126 , 919 , 180 , 1092 , - 11 , - 5 , 3492 , 3492 , 3492 , 11 . 232597557 , 9 . 8560777513 , 1 . 3765198052 , 0 . 8474659299 , 4 . 5018565872 , 5 . 3493225171 <nl> + 050 , 4 , 9 , 41 , 031 , Oregon , Jefferson County , 21720 , 21720 , 21683 , 21771 , - 37 , 88 , 78 , 303 , 59 , 214 , 19 , 89 , 3 , 23 , - 58 , - 24 , - 55 , - 1 , - 1 , 0 , 853 , 853 , 853 , 13 . 945781746 , 9 . 8494960188 , 4 . 0962857274 , 1 . 0585906936 , - 1 . 104616376 , - 0 . 046025682 <nl> + 050 , 4 , 9 , 41 , 033 , Oregon , Josephine County , 82713 , 82713 , 82842 , 82987 , 129 , 145 , 197 , 790 , 264 , 1087 , - 67 , - 297 , 14 , 60 , 186 , 389 , 200 , 449 , - 4 , - 7 , 1601 , 1601 , 1601 , 9 . 5278871609 , 13 . 109890309 , - 3 . 582003148 , 0 . 7236369996 , 4 . 6915798805 , 5 . 41521688 <nl> + 050 , 4 , 9 , 41 , 035 , Oregon , Klamath County , 66380 , 66380 , 66328 , 66299 , - 52 , - 29 , 197 , 759 , 185 , 728 , 12 , 31 , 15 , 31 , - 79 , - 86 , - 64 , - 55 , 0 , - 5 , 950 , 950 , 950 , 11 . 445633242 , 10 . 978156786 , 0 . 4674764565 , 0 . 4674764565 , - 1 . 29687017 , - 0 . 829393713 <nl> + 050 , 4 , 9 , 41 , 037 , Oregon , Lake County , 7895 , 7895 , 7882 , 7908 , - 13 , 26 , 14 , 54 , 13 , 94 , 1 , - 40 , 1 , 1 , - 13 , 63 , - 12 , 64 , - 2 , 2 , 454 , 454 , 454 , 6 . 8397720076 , 11 . 906269791 , - 5 . 066497783 , 0 . 1266624446 , 7 . 9797340089 , 8 . 1063964535 <nl> + 050 , 4 , 9 , 41 , 039 , Oregon , Lane County , 351715 , 351715 , 351875 , 353416 , 160 , 1541 , 894 , 3481 , 752 , 3060 , 142 , 421 , 155 , 407 , - 126 , 727 , 29 , 1134 , - 11 , - 14 , 8530 , 8530 , 8530 , 9 . 8711028497 , 8 . 6772693824 , 1 . 1938334673 , 1 . 154133542 , 2 . 0615604056 , 3 . 2156939476 <nl> + 050 , 4 , 9 , 41 , 041 , Oregon , Lincoln County , 46034 , 46032 , 46029 , 45933 , - 3 , - 96 , 121 , 462 , 140 , 537 , - 19 , - 75 , 11 , 44 , 10 , - 60 , 21 , - 16 , - 5 , - 5 , 762 , 762 , 762 , 10 . 047628368 , 11 . 67873687 , - 1 . 631108501 , 0 . 9569169875 , - 1 . 304886801 , - 0 . 347969814 <nl> + 050 , 4 , 9 , 41 , 043 , Oregon , Linn County , 116672 , 116672 , 116857 , 118122 , 185 , 1265 , 357 , 1405 , 289 , 1171 , 68 , 234 , 19 , 76 , 103 , 951 , 122 , 1027 , - 5 , 4 , 1227 , 1227 , 1227 , 11 . 958515442 , 9 . 9668481013 , 1 . 9916673405 , 0 . 6468663157 , 8 . 0943403453 , 8 . 741206661 <nl> + 050 , 4 , 9 , 41 , 045 , Oregon , Malheur County , 31313 , 31313 , 31321 , 31068 , 8 , - 253 , 111 , 452 , 66 , 252 , 45 , 200 , 6 , 29 , - 44 , - 487 , - 38 , - 458 , 1 , 5 , 3351 , 3351 , 3351 , 14 . 489733767 , 8 . 0783471445 , 6 . 4113866226 , 0 . 9296510603 , - 15 . 61172643 , - 14 . 68207537 <nl> + 050 , 4 , 9 , 41 , 047 , Oregon , Marion County , 315335 , 315335 , 316144 , 318872 , 809 , 2728 , 1166 , 4620 , 598 , 2560 , 568 , 2060 , 234 , 821 , 18 , - 136 , 252 , 685 , - 11 , - 17 , 10429 , 10428 , 10429 , 14 . 550814468 , 8 . 0627889691 , 6 . 4880254986 , 2 . 5857616186 , - 0 . 428335664 , 2 . 1574259546 <nl> + 050 , 4 , 9 , 41 , 049 , Oregon , Morrow County , 11173 , 11173 , 11213 , 11169 , 40 , - 44 , 38 , 158 , 13 , 94 , 25 , 64 , 13 , 48 , 3 , - 158 , 16 , - 110 , - 1 , 2 , 23 , 23 , 23 , 14 . 118488071 , 8 . 3996068269 , 5 . 7188812439 , 4 . 2891609329 , - 14 . 11848807 , - 9 . 829327138 <nl> + 050 , 4 , 9 , 41 , 051 , Oregon , Multnomah County , 735334 , 735334 , 737476 , 748031 , 2142 , 10555 , 2531 , 9890 , 1308 , 5254 , 1223 , 4636 , 483 , 1921 , 430 , 3967 , 913 , 5888 , 6 , 31 , 19583 , 19585 , 19586 , 13 . 315319282 , 7 . 073679222 , 6 . 2416400596 , 2 . 5863223802 , 5 . 3409374712 , 7 . 9272598514 <nl> + 050 , 4 , 9 , 41 , 053 , Oregon , Polk County , 75403 , 75403 , 75607 , 75993 , 204 , 386 , 220 , 850 , 157 , 623 , 63 , 227 , 36 , 138 , 106 , 26 , 142 , 164 , - 1 , - 5 , 1885 , 1885 , 1885 , 11 . 213720317 , 8 . 2189973615 , 2 . 9947229551 , 1 . 8205804749 , 0 . 3430079156 , 2 . 1635883905 <nl> + 050 , 4 , 9 , 41 , 055 , Oregon , Sherman County , 1765 , 1765 , 1771 , 1718 , 6 , - 53 , 2 , 11 , 0 , 13 , 2 , - 2 , 1 , 5 , 2 , - 55 , 3 , - 50 , 1 , - 1 , 0 , 0 , 0 , 6 . 305531671 , 7 . 4519919748 , - 1 . 146460304 , 2 . 8661507595 , - 31 . 52765835 , - 28 . 6615076 <nl> + 050 , 4 , 9 , 41 , 057 , Oregon , Tillamook County , 25250 , 25250 , 25267 , 25403 , 17 , 136 , 66 , 257 , 72 , 285 , - 6 , - 28 , 5 , 13 , 19 , 151 , 24 , 164 , - 1 , 0 , 476 , 476 , 476 , 10 . 144069469 , 11 . 249259917 , - 1 . 105190448 , 0 . 5131241366 , 5 . 9601342017 , 6 . 4732583383 <nl> + 050 , 4 , 9 , 41 , 059 , Oregon , Umatilla County , 75889 , 75889 , 76041 , 76725 , 152 , 684 , 258 , 1010 , 155 , 608 , 103 , 402 , 31 , 99 , 21 , 185 , 52 , 284 , - 3 , - 2 , 3985 , 3985 , 3985 , 13 . 222837542 , 7 . 9598863621 , 5 . 2629511802 , 1 . 2960999175 , 2 . 4220048964 , 3 . 7181048139 <nl> + 050 , 4 , 9 , 41 , 061 , Oregon , Union County , 25748 , 25748 , 25758 , 25791 , 10 , 33 , 77 , 306 , 77 , 282 , 0 , 24 , 8 , 29 , 3 , - 19 , 11 , 10 , - 1 , - 1 , 735 , 735 , 735 , 11 . 872199267 , 10 . 941046383 , 0 . 9311528837 , 1 . 1251430678 , - 0 . 7371627 , 0 . 3879803682 <nl> + 050 , 4 , 9 , 41 , 063 , Oregon , Wallowa County , 7008 , 7008 , 7022 , 6990 , 14 , - 32 , 11 , 49 , 10 , 71 , 1 , - 22 , 0 , 1 , 13 , - 12 , 13 , - 11 , 0 , 1 , 105 , 105 , 105 , 6 . 9940051385 , 10 . 134170711 , - 3 . 140165572 , 0 . 1427347987 , - 1 . 712817585 , - 1 . 570082786 <nl> + 050 , 4 , 9 , 41 , 065 , Oregon , Wasco County , 25213 , 25213 , 25265 , 25234 , 52 , - 31 , 84 , 324 , 70 , 281 , 14 , 43 , 1 , 6 , 38 , - 78 , 39 , - 72 , - 1 , - 2 , 741 , 741 , 741 , 12 . 831937266 , 11 . 128933246 , 1 . 7030040199 , 0 . 2376284679 , - 3 . 089170083 , - 2 . 851541615 <nl> + 050 , 4 , 9 , 41 , 067 , Oregon , Washington County , 529710 , 529710 , 531610 , 540410 , 1900 , 8800 , 1927 , 7545 , 675 , 2819 , 1252 , 4726 , 475 , 1661 , 180 , 2415 , 655 , 4076 , - 7 , - 2 , 6788 , 6788 , 6788 , 14 . 076229921 , 5 . 2592302382 , 8 . 8169996828 , 3 . 0988227832 , 4 . 5055129568 , 7 . 60433574 <nl> + 050 , 4 , 9 , 41 , 069 , Oregon , Wheeler County , 1441 , 1441 , 1450 , 1426 , 9 , - 24 , 4 , 14 , 2 , 19 , 2 , - 5 , 0 , 0 , 7 , - 20 , 7 , - 20 , 0 , 1 , 25 , 25 , 25 , 9 . 735744089 , 13 . 212795549 , - 3 . 47705146 , 0 , - 13 . 90820584 , - 13 . 90820584 <nl> + 050 , 4 , 9 , 41 , 071 , Oregon , Yamhill County , 99193 , 99193 , 99408 , 100000 , 215 , 592 , 307 , 1234 , 177 , 744 , 130 , 490 , 29 , 110 , 61 , - 2 , 90 , 108 , - 5 , - 6 , 5461 , 5461 , 5461 , 12 . 376634839 , 7 . 4620877798 , 4 . 9145470593 , 1 . 1032656664 , - 0 . 020059376 , 1 . 0832062906 <nl> + 040 , 1 , 2 , 42 , 000 , Pennsylvania , Pennsylvania , 12702379 , 12702379 , 12717722 , 12742886 , 15343 , 25164 , 36145 , 143420 , 30805 , 125152 , 5340 , 18268 , 4153 , 14714 , 6125 , - 7246 , 10278 , 7468 , - 275 , - 572 , 426113 , 433402 , 433406 , 11 . 266031039 , 9 . 8310299581 , 1 . 4350010809 , 1 . 1558247156 , - 0 . 569193006 , 0 . 5866317097 <nl> + 050 , 1 , 2 , 42 , 001 , Pennsylvania , Adams County , 101407 , 101407 , 101443 , 101434 , 36 , - 9 , 257 , 1041 , 228 , 884 , 29 , 157 , 20 , 75 , - 8 , - 239 , 12 , - 164 , - 5 , - 2 , 3993 , 3993 , 3993 , 10 . 262375725 , 8 . 714639905 , 1 . 5477358202 , 0 . 7393642453 , - 2 . 356107395 , - 1 . 61674315 <nl> + 050 , 1 , 2 , 42 , 003 , Pennsylvania , Allegheny County , 1223348 , 1223348 , 1224833 , 1227066 , 1485 , 2233 , 3291 , 12903 , 3322 , 13598 , - 31 , - 695 , 295 , 1361 , 1245 , 1623 , 1540 , 2984 , - 24 , - 56 , 35054 , 36233 , 36233 , 10 . 52490335 , 11 . 091810878 , - 0 . 566907528 , 1 . 1101599209 , 1 . 3238718234 , 2 . 4340317444 <nl> + 050 , 1 , 2 , 42 , 005 , Pennsylvania , Armstrong County , 68941 , 68942 , 68894 , 68568 , - 48 , - 326 , 174 , 679 , 218 , 881 , - 44 , - 202 , 5 , 24 , - 4 , - 146 , 1 , - 122 , - 5 , - 2 , 650 , 650 , 650 , 9 . 8790938587 , 12 . 818087908 , - 2 . 938994049 , 0 . 3491874118 , - 2 . 124223422 , - 1 . 77503601 <nl> + 050 , 1 , 2 , 42 , 007 , Pennsylvania , Beaver County , 170539 , 170539 , 170701 , 170414 , 162 , - 287 , 434 , 1724 , 511 , 2063 , - 77 , - 339 , 10 , 9 , 232 , 55 , 242 , 64 , - 3 , - 12 , 3382 , 3530 , 3530 , 10 . 108028084 , 12 . 095627574 , - 1 . 98759949 , 0 . 0527681281 , 0 . 3224718936 , 0 . 3752400217 <nl> + 050 , 1 , 2 , 42 , 009 , Pennsylvania , Bedford County , 49762 , 49774 , 49751 , 49739 , - 23 , - 12 , 122 , 493 , 125 , 505 , - 3 , - 12 , 1 , 5 , - 19 , - 1 , - 18 , 4 , - 2 , - 4 , 551 , 551 , 551 , 9 . 9105437732 , 10 . 151774048 , - 0 . 241230274 , 0 . 1005126143 , - 0 . 020102523 , 0 . 0804100915 <nl> + 050 , 1 , 2 , 42 , 011 , Pennsylvania , Berks County , 411442 , 411439 , 412478 , 412778 , 1039 , 300 , 1254 , 4987 , 863 , 3538 , 391 , 1449 , 188 , 569 , 460 , - 1718 , 648 , - 1149 , 0 , 0 , 12023 , 12630 , 12630 , 12 . 085946664 , 8 . 5743090629 , 3 . 5116376009 , 1 . 3789660421 , - 4 . 163556521 , - 2 . 784590479 <nl> + 050 , 1 , 2 , 42 , 013 , Pennsylvania , Blair County , 127089 , 127076 , 127030 , 127099 , - 46 , 69 , 353 , 1410 , 404 , 1613 , - 51 , - 203 , 1 , 16 , 11 , 266 , 12 , 282 , - 7 , - 10 , 3672 , 3672 , 3672 , 11 . 096726466 , 12 . 694340276 , - 1 . 59761381 , 0 . 1259203003 , 2 . 0934249928 , 2 . 2193452931 <nl> + 050 , 1 , 2 , 42 , 015 , Pennsylvania , Bradford County , 62622 , 62622 , 62613 , 62917 , - 9 , 304 , 181 , 720 , 177 , 694 , 4 , 26 , 4 , 16 , - 13 , 262 , - 9 , 278 , - 4 , 0 , 579 , 579 , 579 , 11 . 471361428 , 11 . 05711782 , 0 . 4142436071 , 0 . 2549191428 , 4 . 1743009639 , 4 . 4292201067 <nl> + 050 , 1 , 2 , 42 , 017 , Pennsylvania , Bucks County , 625249 , 625249 , 625618 , 626854 , 369 , 1236 , 1568 , 6195 , 1273 , 5280 , 295 , 915 , 154 , 537 , - 57 , - 178 , 97 , 359 , - 23 , - 38 , 8233 , 8409 , 8409 , 9 . 8924367171 , 8 . 4313262093 , 1 . 4611105079 , 0 . 8575041997 , - 0 . 284237891 , 0 . 5732663085 <nl> + 050 , 1 , 2 , 42 , 019 , Pennsylvania , Butler County , 183862 , 183862 , 184037 , 184848 , 175 , 811 , 450 , 1788 , 436 , 1787 , 14 , 1 , 19 , 27 , 152 , 795 , 171 , 822 , - 10 , - 12 , 5490 , 5490 , 5490 , 9 . 6940781002 , 9 . 6886563563 , 0 . 0054217439 , 0 . 1463870854 , 4 . 3102864036 , 4 . 456673489 <nl> + 050 , 1 , 2 , 42 , 021 , Pennsylvania , Cambria County , 143679 , 143679 , 144601 , 143728 , 922 , - 873 , 337 , 1325 , 448 , 1803 , - 111 , - 478 , 12 , 38 , 999 , - 424 , 1011 , - 386 , 22 , - 9 , 8092 , 9223 , 9223 , 9 . 1908895741 , 12 . 506546341 , - 3 . 315656767 , 0 . 2635877765 , - 2 . 941084664 , - 2 . 677496887 <nl> + 050 , 1 , 2 , 42 , 023 , Pennsylvania , Cameron County , 5085 , 5085 , 5074 , 5010 , - 11 , - 64 , 10 , 39 , 14 , 73 , - 4 , - 34 , 0 , 1 , - 7 , - 31 , - 7 , - 30 , 0 , 0 , 92 , 92 , 92 , 7 . 7350257834 , 14 . 478381595 , - 6 . 743355811 , 0 . 1983339944 , - 6 . 148353828 , - 5 . 950019833 <nl> + 050 , 1 , 2 , 42 , 025 , Pennsylvania , Carbon County , 65249 , 65249 , 65224 , 65154 , - 25 , - 70 , 147 , 589 , 199 , 788 , - 52 , - 199 , 2 , 8 , 28 , 125 , 30 , 133 , - 3 , - 4 , 699 , 699 , 699 , 9 . 0352666861 , 12 . 087928945 , - 3 . 052662259 , 0 . 1227200908 , 1 . 917501419 , 2 . 0402215098 <nl> + 050 , 1 , 2 , 42 , 027 , Pennsylvania , Centre County , 153990 , 153985 , 154526 , 154722 , 541 , 196 , 324 , 1256 , 229 , 907 , 95 , 349 , 116 , 397 , 322 , - 550 , 438 , - 153 , 8 , 0 , 16989 , 17380 , 17380 , 8 . 1229304636 , 5 . 8658423013 , 2 . 2570881623 , 2 . 5675186258 , - 3 . 557015728 , - 0 . 989497103 <nl> + 050 , 1 , 2 , 42 , 029 , Pennsylvania , Chester County , 498886 , 498886 , 500438 , 503897 , 1552 , 3459 , 1460 , 5761 , 869 , 3520 , 591 , 2241 , 232 , 716 , 724 , 533 , 956 , 1249 , 5 , - 31 , 13336 , 13992 , 13992 , 11 . 472267719 , 7 . 0096133262 , 4 . 4626543932 , 1 . 4258190743 , 1 . 061398836 , 2 . 4872179104 <nl> + 050 , 1 , 2 , 42 , 031 , Pennsylvania , Clarion County , 39988 , 39988 , 39951 , 40013 , - 37 , 62 , 98 , 401 , 107 , 421 , - 9 , - 20 , 2 , 8 , - 29 , 76 , - 27 , 84 , - 1 , - 2 , 1841 , 1841 , 1841 , 10 . 029513281 , 10 . 529738382 , - 0 . 500225101 , 0 . 2000900405 , 1 . 9008553849 , 2 . 1009454254 <nl> + 050 , 1 , 2 , 42 , 033 , Pennsylvania , Clearfield County , 81642 , 81645 , 81696 , 81445 , 51 , - 251 , 180 , 708 , 211 , 898 , - 31 , - 190 , 3 , 15 , 82 , - 69 , 85 , - 54 , - 3 , - 7 , 5115 , 5221 , 5221 , 8 . 6796084369 , 11 . 008881887 , - 2 . 329273451 , 0 . 1838900093 , - 0 . 845894043 , - 0 . 662004033 <nl> + 050 , 1 , 2 , 42 , 035 , Pennsylvania , Clinton County , 39238 , 39241 , 38979 , 39208 , - 262 , 229 , 98 , 395 , 93 , 382 , 5 , 13 , 2 , 18 , - 275 , 197 , - 273 , 215 , 6 , 1 , 2623 , 2360 , 2360 , 10 . 10398148 , 9 . 7714453809 , 0 . 3325360994 , 0 . 4604345991 , 5 . 0392008902 , 5 . 4996354893 <nl> + 050 , 1 , 2 , 42 , 037 , Pennsylvania , Columbia County , 67295 , 67296 , 67565 , 67476 , 269 , - 89 , 157 , 616 , 177 , 703 , - 20 , - 87 , 3 , 33 , 280 , - 31 , 283 , 2 , 6 , - 4 , 4387 , 4659 , 4659 , 9 . 1231551899 , 10 . 411652757 , - 1 . 288497567 , 0 . 4887404566 , - 0 . 459119823 , 0 . 0296206337 <nl> + 050 , 1 , 2 , 42 , 039 , Pennsylvania , Crawford County , 88765 , 88765 , 88941 , 88740 , 176 , - 201 , 235 , 922 , 235 , 947 , 0 , - 25 , 3 , 27 , 172 , - 200 , 175 , - 173 , 1 , - 3 , 3875 , 4143 , 4143 , 10 . 378149605 , 10 . 659552794 , - 0 . 281403189 , 0 . 303915444 , - 2 . 251225511 , - 1 . 947310067 <nl> + 050 , 1 , 2 , 42 , 041 , Pennsylvania , Cumberland County , 235406 , 235408 , 236751 , 237892 , 1343 , 1141 , 583 , 2349 , 508 , 2041 , 75 , 308 , 72 , 182 , 1174 , 665 , 1246 , 847 , 22 , - 14 , 12830 , 13718 , 13718 , 9 . 8979654182 , 8 . 6001479006 , 1 . 2978175176 , 0 . 7668921695 , 2 . 8021060039 , 3 . 5689981734 <nl> + 050 , 1 , 2 , 42 , 043 , Pennsylvania , Dauphin County , 268100 , 268100 , 268322 , 268977 , 222 , 655 , 855 , 3409 , 588 , 2301 , 267 , 1108 , 142 , 446 , - 182 , - 892 , - 40 , - 446 , - 5 , - 7 , 6780 , 6882 , 6882 , 12 . 689396407 , 8 . 5650634005 , 4 . 1243330064 , 1 . 6601557047 , - 3 . 320311409 , - 1 . 660155705 <nl> + 050 , 1 , 2 , 42 , 045 , Pennsylvania , Delaware County , 558979 , 558979 , 559488 , 559494 , 509 , 6 , 1720 , 6827 , 1303 , 5267 , 417 , 1560 , 306 , 858 , - 199 , - 2420 , 107 , - 1562 , - 15 , 8 , 23055 , 23251 , 23251 , 12 . 202162323 , 9 . 413913718 , 2 . 7882486045 , 1 . 5335367325 , - 4 . 325360015 , - 2 . 791823282 <nl> + 050 , 1 , 2 , 42 , 047 , Pennsylvania , Elk County , 31946 , 31946 , 31868 , 31751 , - 78 , - 117 , 65 , 262 , 95 , 378 , - 30 , - 116 , 0 , 1 , - 48 , 0 , - 48 , 1 , 0 , - 2 , 355 , 355 , 355 , 8 . 2365331112 , 11 . 883242428 , - 3 . 646709316 , 0 . 0314371493 , 0 , 0 . 0314371493 <nl> + 050 , 1 , 2 , 42 , 049 , Pennsylvania , Erie County , 280566 , 280566 , 281038 , 280985 , 472 , - 53 , 804 , 3185 , 659 , 2685 , 145 , 500 , 63 , 120 , 266 , - 666 , 329 , - 546 , - 2 , - 7 , 12875 , 13236 , 13236 , 11 . 334055724 , 9 . 5547691109 , 1 . 7792866128 , 0 . 4270287871 , - 2 . 370009768 , - 1 . 942980981 <nl> + 050 , 1 , 2 , 42 , 051 , Pennsylvania , Fayette County , 136606 , 136606 , 136498 , 136097 , - 108 , - 401 , 330 , 1332 , 457 , 1823 , - 127 , - 491 , 11 , 40 , 16 , 58 , 27 , 98 , - 8 , - 8 , 4216 , 4216 , 4216 , 9 . 7727397788 , 13 . 375153616 , - 3 . 602413837 , 0 . 293475669 , 0 . 4255397201 , 0 . 7190153891 <nl> + 050 , 1 , 2 , 42 , 053 , Pennsylvania , Forest County , 7716 , 7716 , 7693 , 7589 , - 23 , - 104 , 6 , 32 , 13 , 94 , - 7 , - 62 , 0 , 1 , - 16 , - 41 , - 16 , - 40 , 0 , - 2 , 2500 , 2500 , 2500 , 4 . 1879335166 , 12 . 302054705 , - 8 . 114121188 , 0 . 1308729224 , - 5 . 365789818 , - 5 . 234916896 <nl> + 050 , 1 , 2 , 42 , 055 , Pennsylvania , Franklin County , 149618 , 149618 , 149850 , 150811 , 232 , 961 , 435 , 1756 , 351 , 1413 , 84 , 343 , 21 , 64 , 136 , 564 , 157 , 628 , - 9 , - 10 , 2696 , 2696 , 2696 , 11 . 680929685 , 9 . 3992902305 , 2 . 2816394544 , 0 . 4257286446 , 3 . 7517336801 , 4 . 1774623247 <nl> + 050 , 1 , 2 , 42 , 057 , Pennsylvania , Fulton County , 14845 , 14845 , 14860 , 14801 , 15 , - 59 , 37 , 154 , 29 , 137 , 8 , 17 , 1 , 6 , 7 , - 83 , 8 , - 77 , - 1 , 1 , 122 , 122 , 122 , 10 . 384005934 , 9 . 2377195644 , 1 . 1462863693 , 0 . 4045716598 , - 5 . 596574627 , - 5 . 192002967 <nl> + 050 , 1 , 2 , 42 , 059 , Pennsylvania , Greene County , 38686 , 38686 , 38821 , 38623 , 135 , - 198 , 98 , 381 , 107 , 443 , - 9 , - 62 , 2 , 9 , 139 , - 144 , 141 , - 135 , 3 , - 1 , 3076 , 3248 , 3248 , 9 . 8393678012 , 11 . 440524766 , - 1 . 601156965 , 0 . 2324260111 , - 3 . 718816177 , - 3 . 486390166 <nl> + 050 , 1 , 2 , 42 , 061 , Pennsylvania , Huntingdon County , 45913 , 45914 , 46062 , 45875 , 148 , - 187 , 109 , 443 , 113 , 461 , - 4 , - 18 , 2 , 10 , 147 , - 177 , 149 , - 167 , 3 , - 2 , 4570 , 4720 , 4720 , 9 . 6370340559 , 10 . 028606546 , - 0 . 39157249 , 0 . 2175402721 , - 3 . 850462817 , - 3 . 632922545 <nl> + 050 , 1 , 2 , 42 , 063 , Pennsylvania , Indiana County , 88880 , 88886 , 89525 , 89298 , 639 , - 227 , 223 , 888 , 216 , 871 , 7 , 17 , 13 , 48 , 604 , - 287 , 617 , - 239 , 15 , - 5 , 5357 , 6034 , 6034 , 9 . 9316083502 , 9 . 7414762083 , 0 . 1901321418 , 0 . 5368436946 , - 3 . 209877924 , - 2 . 673034229 <nl> + 050 , 1 , 2 , 42 , 065 , Pennsylvania , Jefferson County , 45200 , 45196 , 45223 , 44976 , 27 , - 247 , 115 , 472 , 134 , 525 , - 19 , - 53 , 2 , 2 , 46 , - 196 , 48 , - 194 , - 2 , 0 , 774 , 774 , 774 , 10 . 465747957 , 11 . 640927283 , - 1 . 175179326 , 0 . 0443463896 , - 4 . 345946186 , - 4 . 301599796 <nl> + 050 , 1 , 2 , 42 , 067 , Pennsylvania , Juniata County , 24636 , 24638 , 24597 , 24400 , - 41 , - 197 , 68 , 282 , 59 , 230 , 9 , 52 , 1 , 13 , - 48 , - 256 , - 47 , - 243 , - 3 , - 6 , 292 , 292 , 292 , 11 . 510908831 , 9 . 3883298977 , 2 . 1225789334 , 0 . 5306447334 , - 10 . 44961936 , - 9 . 918974631 <nl> + 050 , 1 , 2 , 42 , 069 , Pennsylvania , Lackawanna County , 214437 , 214436 , 214423 , 214166 , - 13 , - 257 , 572 , 2261 , 633 , 2582 , - 61 , - 321 , 94 , 303 , - 32 , - 219 , 62 , 84 , - 14 , - 20 , 8063 , 8063 , 8063 , 10 . 550900746 , 12 . 048839331 , - 1 . 497938585 , 1 . 4139420284 , - 1 . 0219581 , 0 . 3919839287 <nl> + 050 , 1 , 2 , 42 , 071 , Pennsylvania , Lancaster County , 519445 , 519448 , 520316 , 523594 , 868 , 3278 , 1777 , 7141 , 1096 , 4511 , 681 , 2630 , 195 , 570 , 17 , 116 , 212 , 686 , - 25 , - 38 , 12638 , 12579 , 12579 , 13 . 681256047 , 8 . 6425074959 , 5 . 0387485511 , 1 . 0920481651 , 0 . 222241381 , 1 . 314289546 <nl> + 050 , 1 , 2 , 42 , 073 , Pennsylvania , Lawrence County , 91108 , 91108 , 90975 , 90535 , - 133 , - 440 , 237 , 940 , 284 , 1103 , - 47 , - 163 , 10 , 33 , - 93 , - 306 , - 83 , - 273 , - 3 , - 4 , 2239 , 2239 , 2239 , 10 . 357556058 , 12 . 153600353 , - 1 . 796044295 , 0 . 3636163297 , - 3 . 371715057 , - 3 . 008098727 <nl> + 050 , 1 , 2 , 42 , 075 , Pennsylvania , Lebanon County , 133568 , 133573 , 133726 , 134311 , 153 , 585 , 400 , 1621 , 339 , 1385 , 61 , 236 , 39 , 154 , 60 , 206 , 99 , 360 , - 7 , - 11 , 3657 , 3657 , 3657 , 12 . 095345046 , 10 . 334394132 , 1 . 7609509135 , 1 . 1490950876 , 1 . 5371012211 , 2 . 6861963087 <nl> + 050 , 1 , 2 , 42 , 077 , Pennsylvania , Lehigh County , 349497 , 349497 , 350211 , 352947 , 714 , 2736 , 1064 , 4217 , 749 , 3087 , 315 , 1130 , 252 , 721 , 155 , 892 , 407 , 1613 , - 8 , - 7 , 8993 , 9102 , 9102 , 11 . 994459282 , 8 . 7803879071 , 3 . 2140713751 , 2 . 050748196 , 2 . 5371253687 , 4 . 5878735647 <nl> + 050 , 1 , 2 , 42 , 079 , Pennsylvania , Luzerne County , 320918 , 320918 , 320863 , 320651 , - 55 , - 212 , 780 , 3103 , 978 , 3993 , - 198 , - 890 , 71 , 133 , 88 , 558 , 159 , 691 , - 16 , - 13 , 11791 , 11791 , 11791 , 9 . 6739899675 , 12 . 448676101 , - 2 . 774686133 , 0 . 4146441075 , 1 . 7396346767 , 2 . 1542787843 <nl> + 050 , 1 , 2 , 42 , 081 , Pennsylvania , Lycoming County , 116111 , 116108 , 116177 , 116747 , 69 , 570 , 309 , 1208 , 312 , 1283 , - 3 , - 75 , 7 , 26 , 70 , 620 , 77 , 646 , - 5 , - 1 , 5437 , 5437 , 5437 , 10 . 372482011 , 11 . 016468891 , - 0 . 64398688 , 0 . 223248785 , 5 . 3236248733 , 5 . 5468736584 <nl> + 050 , 1 , 2 , 42 , 083 , Pennsylvania , McKean County , 43450 , 43450 , 43386 , 43222 , - 64 , - 164 , 122 , 465 , 139 , 517 , - 17 , - 52 , 0 , 2 , - 46 , - 113 , - 46 , - 111 , - 1 , - 1 , 3178 , 3178 , 3178 , 10 . 738038057 , 11 . 938850914 , - 1 . 200812858 , 0 . 0461851099 , - 2 . 609458711 , - 2 . 563273601 <nl> + 050 , 1 , 2 , 42 , 085 , Pennsylvania , Mercer County , 116638 , 116638 , 116691 , 116205 , 53 , - 486 , 281 , 1111 , 343 , 1413 , - 62 , - 302 , 1 , 16 , 117 , - 195 , 118 , - 179 , - 3 , - 5 , 6714 , 6874 , 6874 , 9 . 5407392141 , 12 . 134171476 , - 2 . 593432262 , 0 . 1374003847 , - 1 . 674567189 , - 1 . 537166804 <nl> + 050 , 1 , 2 , 42 , 087 , Pennsylvania , Mifflin County , 46682 , 46683 , 46685 , 46858 , 2 , 173 , 140 , 560 , 139 , 494 , 1 , 66 , 1 , 14 , 3 , 96 , 4 , 110 , - 3 , - 3 , 559 , 559 , 559 , 11 . 973103279 , 10 . 561987535 , 1 . 4111157436 , 0 . 299327582 , 2 . 0525319906 , 2 . 3518595726 <nl> + 050 , 1 , 2 , 42 , 089 , Pennsylvania , Monroe County , 169842 , 169842 , 170048 , 169882 , 206 , - 166 , 386 , 1540 , 329 , 1361 , 57 , 179 , 47 , 112 , 104 , - 454 , 151 , - 342 , - 2 , - 3 , 3790 , 3903 , 3903 , 9 . 0606889654 , 8 . 0075309623 , 1 . 0531580031 , 0 . 6589591975 , - 2 . 671138176 , - 2 . 012178978 <nl> + 050 , 1 , 2 , 42 , 091 , Pennsylvania , Montgomery County , 799874 , 799874 , 800482 , 804210 , 608 , 3728 , 2317 , 9129 , 1770 , 7108 , 547 , 2021 , 254 , 1120 , - 163 , 648 , 91 , 1768 , - 30 , - 61 , 21006 , 20596 , 20597 , 11 . 377884354 , 8 . 8590209211 , 2 . 518863433 , 1 . 3959065042 , 0 . 8076316203 , 2 . 2035381245 <nl> + 050 , 1 , 2 , 42 , 093 , Pennsylvania , Montour County , 18267 , 18267 , 18306 , 18296 , 39 , - 10 , 52 , 210 , 57 , 226 , - 5 , - 16 , 5 , 16 , 40 , - 9 , 45 , 7 , - 1 , - 1 , 843 , 843 , 843 , 11 . 474782799 , 12 . 349051964 , - 0 . 874269166 , 0 . 8742691656 , - 0 . 491776406 , 0 . 38249276 <nl> + 050 , 1 , 2 , 42 , 095 , Pennsylvania , Northampton County , 297735 , 297735 , 298188 , 298476 , 453 , 288 , 753 , 2975 , 652 , 2690 , 101 , 285 , 106 , 306 , 253 , - 288 , 359 , 18 , - 7 , - 15 , 10620 , 10764 , 10765 , 9 . 9721116072 , 9 . 0168000751 , 0 . 9553115321 , 1 . 0257029082 , - 0 . 965367443 , 0 . 0603354652 <nl> + 050 , 1 , 2 , 42 , 097 , Pennsylvania , Northumberland County , 94528 , 94517 , 94394 , 94558 , - 123 , 164 , 248 , 973 , 279 , 1092 , - 31 , - 119 , 6 , 32 , - 95 , 254 , - 89 , 286 , - 3 , - 3 , 3446 , 3446 , 3446 , 10 . 298911893 , 11 . 558491045 , - 1 . 259579152 , 0 . 3387103603 , 2 . 6885134849 , 3 . 0272238452 <nl> + 050 , 1 , 2 , 42 , 099 , Pennsylvania , Perry County , 45969 , 45967 , 46008 , 46042 , 41 , 34 , 137 , 540 , 104 , 408 , 33 , 132 , 0 , 2 , 11 , - 98 , 11 , - 96 , - 3 , - 2 , 657 , 657 , 657 , 11 . 732753938 , 8 . 8647474199 , 2 . 8680065182 , 0 . 0434546442 , - 2 . 129277567 , - 2 . 085822922 <nl> + 050 , 1 , 2 , 42 , 101 , Pennsylvania , Philadelphia County , 1526006 , 1526006 , 1528074 , 1536471 , 2068 , 8397 , 5878 , 23349 , 3552 , 14471 , 2326 , 8878 , 1165 , 5043 , - 1394 , - 5466 , - 229 , - 423 , - 29 , - 58 , 57383 , 57342 , 57341 , 15 . 238151177 , 9 . 4441426052 , 5 . 7940085722 , 3 . 2911900462 , - 3 . 567250603 , - 0 . 276060557 <nl> + 050 , 1 , 2 , 42 , 103 , Pennsylvania , Pike County , 57369 , 57367 , 57319 , 56852 , - 48 , - 467 , 115 , 473 , 102 , 421 , 13 , 52 , 6 , 24 , - 60 , - 539 , - 54 , - 515 , - 7 , - 4 , 478 , 478 , 478 , 8 . 2858168887 , 7 . 3749025584 , 0 . 9109143303 , 0 . 4204219986 , - 9 . 441977385 , - 9 . 021555386 <nl> + 050 , 1 , 2 , 42 , 105 , Pennsylvania , Potter County , 17457 , 17457 , 17478 , 17453 , 21 , - 25 , 49 , 184 , 55 , 206 , - 6 , - 22 , 1 , 3 , 28 , - 6 , 29 , - 3 , - 2 , 0 , 217 , 217 , 217 , 10 . 535054822 , 11 . 794680942 , - 1 . 25962612 , 0 . 1717671982 , - 0 . 343534396 , - 0 . 171767198 <nl> + 050 , 1 , 2 , 42 , 107 , Pennsylvania , Schuylkill County , 148289 , 148289 , 148253 , 147513 , - 36 , - 740 , 350 , 1411 , 459 , 1845 , - 109 , - 434 , 17 , 55 , 63 , - 353 , 80 , - 298 , - 7 , - 8 , 6780 , 6780 , 6780 , 9 . 5413265893 , 12 . 476079063 , - 2 . 934752473 , 0 . 371915636 , - 2 . 387022173 , - 2 . 015106537 <nl> + 050 , 1 , 2 , 42 , 109 , Pennsylvania , Snyder County , 39702 , 39702 , 39841 , 39819 , 139 , - 22 , 111 , 428 , 79 , 343 , 32 , 85 , 1 , 6 , 104 , - 109 , 105 , - 103 , 2 , - 4 , 2317 , 2434 , 2434 , 10 . 745669094 , 8 . 611599297 , 2 . 1340697966 , 0 . 1506402209 , - 2 . 73663068 , - 2 . 585990459 <nl> + 050 , 1 , 2 , 42 , 111 , Pennsylvania , Somerset County , 77742 , 77742 , 77690 , 77405 , - 52 , - 285 , 165 , 677 , 225 , 935 , - 60 , - 258 , 6 , 17 , 8 , - 39 , 14 , - 22 , - 6 , - 5 , 4533 , 4533 , 4533 , 8 . 7301331442 , 12 . 057126277 , - 3 . 326993133 , 0 . 2192204778 , - 0 . 502917567 , - 0 . 283697089 <nl> + 050 , 1 , 2 , 42 , 113 , Pennsylvania , Sullivan County , 6428 , 6428 , 6431 , 6479 , 3 , 48 , 14 , 57 , 15 , 103 , - 1 , - 46 , 0 , 0 , 5 , 94 , 5 , 94 , - 1 , 0 , 434 , 434 , 434 , 8 . 8303640589 , 15 . 956622773 , - 7 . 126258714 , 0 , 14 . 562354764 , 14 . 562354764 <nl> + 050 , 1 , 2 , 42 , 115 , Pennsylvania , Susquehanna County , 43356 , 43356 , 43301 , 43192 , - 55 , - 109 , 99 , 402 , 100 , 415 , - 1 , - 13 , 1 , 5 , - 51 , - 97 , - 50 , - 92 , - 4 , - 4 , 282 , 282 , 282 , 9 . 2955499289 , 9 . 5961522898 , - 0 . 300602361 , 0 . 1156162926 , - 2 . 242956077 , - 2 . 127339785 <nl> + 050 , 1 , 2 , 42 , 117 , Pennsylvania , Tioga County , 41981 , 41981 , 42031 , 42419 , 50 , 388 , 106 , 423 , 112 , 443 , - 6 , - 20 , 0 , 5 , 58 , 401 , 58 , 406 , - 2 , 2 , 1951 , 1951 , 1951 , 10 . 017761989 , 10 . 491415038 , - 0 . 473653049 , 0 . 1184132623 , 9 . 4967436353 , 9 . 6151568976 <nl> + 050 , 1 , 2 , 42 , 119 , Pennsylvania , Union County , 44947 , 44949 , 44816 , 44847 , - 133 , 31 , 94 , 369 , 96 , 382 , - 2 , - 13 , 6 , 26 , - 139 , 20 , - 133 , 46 , 2 , - 2 , 9109 , 8972 , 8975 , 8 . 2308198477 , 8 . 5207945306 , - 0 . 289974683 , 0 . 579949366 , 0 . 4461148969 , 1 . 0260642629 <nl> + 050 , 1 , 2 , 42 , 121 , Pennsylvania , Venango County , 54984 , 54984 , 54934 , 54683 , - 50 , - 251 , 142 , 562 , 166 , 650 , - 24 , - 88 , 8 , 25 , - 31 , - 186 , - 23 , - 161 , - 3 , - 2 , 1297 , 1297 , 1297 , 10 . 253883978 , 11 . 859474352 , - 1 . 605590374 , 0 . 4561336289 , - 3 . 393634199 , - 2 . 93750057 <nl> + 050 , 1 , 2 , 42 , 123 , Pennsylvania , Warren County , 41815 , 41815 , 41766 , 41441 , - 49 , - 325 , 95 , 381 , 122 , 501 , - 27 , - 120 , 0 , 3 , - 19 , - 209 , - 19 , - 206 , - 3 , 1 , 788 , 788 , 788 , 9 . 1578833512 , 12 . 04225606 , - 2 . 884372709 , 0 . 0721093177 , - 5 . 023615802 , - 4 . 951506484 <nl> + 050 , 1 , 2 , 42 , 125 , Pennsylvania , Washington County , 207820 , 207820 , 207903 , 208282 , 83 , 379 , 506 , 2024 , 605 , 2457 , - 99 , - 433 , 9 , - 8 , 181 , 825 , 190 , 817 , - 8 , - 5 , 5925 , 5925 , 5925 , 9 . 726443769 , 11 . 80724918 , - 2 . 080805411 , - 0 . 038444442 , 3 . 964583058 , 3 . 9261386162 <nl> + 050 , 1 , 2 , 42 , 127 , Pennsylvania , Wayne County , 52822 , 52825 , 52794 , 53004 , - 31 , 210 , 107 , 415 , 138 , 568 , - 31 , - 153 , 1 , 1 , 4 , 372 , 5 , 373 , - 5 , - 10 , 3820 , 3644 , 3644 , 7 . 8451388495 , 10 . 737443052 , - 2 . 892304202 , 0 . 018903949 , 7 . 032269041 , 7 . 05117299 <nl> + 050 , 1 , 2 , 42 , 129 , Pennsylvania , Westmoreland County , 365169 , 365168 , 365085 , 364471 , - 83 , - 614 , 824 , 3240 , 1064 , 4341 , - 240 , - 1101 , 30 , - 27 , 146 , 530 , 176 , 503 , - 19 , - 16 , 7962 , 7962 , 7962 , 8 . 8821146012 , 11 . 90038873 , - 3 . 018274128 , - 0 . 074017622 , 1 . 4529384996 , 1 . 3789208779 <nl> + 050 , 1 , 2 , 42 , 131 , Pennsylvania , Wyoming County , 28276 , 28276 , 28412 , 28406 , 136 , - 6 , 67 , 268 , 78 , 305 , - 11 , - 37 , 0 , 1 , 147 , 34 , 147 , 35 , 0 , - 4 , 602 , 709 , 709 , 9 . 4336301876 , 10 . 736034355 , - 1 . 302404168 , 0 . 0352001126 , 1 . 1968038298 , 1 . 2320039424 <nl> + 050 , 1 , 2 , 42 , 133 , Pennsylvania , York County , 434972 , 434972 , 435726 , 436770 , 754 , 1044 , 1270 , 5039 , 863 , 3559 , 407 , 1480 , 106 , 275 , 249 , - 696 , 355 , - 421 , - 8 , - 15 , 8430 , 8575 , 8575 , 11 . 550769287 , 8 . 1582035906 , 3 . 3925656966 , 0 . 6303753828 , - 1 . 595422787 , - 0 . 965047404 <nl> + 040 , 1 , 1 , 44 , 000 , Rhode Island , Rhode Island , 1052567 , 1052567 , 1052528 , 1051302 , - 39 , - 1226 , 2761 , 11012 , 2247 , 9189 , 514 , 1823 , 647 , 2040 , - 1184 , - 5089 , - 537 , - 3049 , - 16 , 0 , 42663 , 42663 , 42663 , 10 . 468526449 , 8 . 7354966894 , 1 . 73302976 , 1 . 9393201922 , - 4 . 837843362 , - 2 . 89852317 <nl> + 050 , 1 , 1 , 44 , 001 , Rhode Island , Bristol County , 49875 , 49875 , 49863 , 49800 , - 12 , - 63 , 98 , 361 , 133 , 510 , - 35 , - 149 , 11 , 24 , 15 , 63 , 26 , 87 , - 3 , - 1 , 3242 , 3242 , 3242 , 7 . 2444136741 , 10 . 234490232 , - 2 . 990076558 , 0 . 4816230697 , 1 . 2642605581 , 1 . 7458836278 <nl> + 050 , 1 , 1 , 44 , 003 , Rhode Island , Kent County , 166158 , 166158 , 166069 , 165535 , - 89 , - 534 , 403 , 1571 , 387 , 1619 , 16 , - 48 , 45 , 116 , - 146 , - 599 , - 101 , - 483 , - 4 , - 3 , 1536 , 1536 , 1536 , 9 . 4751571151 , 9 . 7646590512 , - 0 . 289501936 , 0 . 6996296788 , - 3 . 61274291 , - 2 . 913113231 <nl> + 050 , 1 , 1 , 44 , 005 , Rhode Island , Newport County , 82888 , 82888 , 82847 , 82695 , - 41 , - 152 , 183 , 714 , 176 , 692 , 7 , 22 , 60 , 88 , - 106 , - 258 , - 46 , - 170 , - 2 , - 4 , 3576 , 3576 , 3576 , 8 . 6262096628 , 8 . 3604160878 , 0 . 265793575 , 1 . 0631743002 , - 3 . 117033744 , - 2 . 053859444 <nl> + 050 , 1 , 1 , 44 , 007 , Rhode Island , Providence County , 626667 , 626667 , 626797 , 626709 , 130 , - 88 , 1826 , 7419 , 1295 , 5333 , 531 , 2086 , 506 , 1736 , - 904 , - 3921 , - 398 , - 2185 , - 3 , 11 , 27785 , 27785 , 27785 , 11 . 837199024 , 8 . 5089341415 , 3 . 3282648827 , 2 . 7698311775 , - 6 . 256053022 , - 3 . 486221845 <nl> + 050 , 1 , 1 , 44 , 009 , Rhode Island , Washington County , 126979 , 126979 , 126952 , 126563 , - 27 , - 389 , 251 , 947 , 256 , 1035 , - 5 , - 88 , 25 , 76 , - 43 , - 374 , - 18 , - 298 , - 4 , - 3 , 6524 , 6524 , 6524 , 7 . 4709583259 , 8 . 1651973256 , - 0 . 694239 , 0 . 5995700452 , - 2 . 950515749 , - 2 . 350945703 <nl> + 040 , 3 , 5 , 45 , 000 , South Carolina , South Carolina , 4625364 , 4625364 , 4637106 , 4679230 , 11742 , 42124 , 14781 , 59522 , 10101 , 41144 , 4680 , 18378 , 2233 , 6440 , 4826 , 17187 , 7059 , 23627 , 3 , 119 , 139154 , 139159 , 139167 , 12 . 777984822 , 8 . 8326569587 , 3 . 9453278628 , 1 . 3825177623 , 3 . 6896479474 , 5 . 0721657098 <nl> + 050 , 3 , 5 , 45 , 001 , South Carolina , Abbeville County , 25417 , 25417 , 25354 , 25161 , - 63 , - 193 , 62 , 261 , 49 , 254 , 13 , 7 , 1 , 5 , - 76 , - 206 , - 75 , - 201 , - 1 , 1 , 901 , 901 , 901 , 10 . 333564288 , 10 . 056418885 , 0 . 2771454024 , 0 . 1979610017 , - 8 . 155993269 , - 7 . 958032268 <nl> + 050 , 3 , 5 , 45 , 003 , South Carolina , Aiken County , 160099 , 160106 , 160374 , 160682 , 268 , 308 , 258 , 1016 , 396 , 1516 , - 138 , - 500 , 40 , 129 , 364 , 682 , 404 , 811 , 2 , - 3 , 2439 , 2439 , 2439 , 6 . 3291139241 , 9 . 4438353434 , - 3 . 114721419 , 0 . 8035981262 , 4 . 2484800159 , 5 . 0520781421 <nl> + 050 , 3 , 5 , 45 , 005 , South Carolina , Allendale County , 10419 , 10419 , 10351 , 10181 , - 68 , - 170 , 24 , 102 , 9 , 111 , 15 , - 9 , 1 , 6 , - 86 , - 168 , - 85 , - 162 , 2 , 1 , 1342 , 1342 , 1342 , 9 . 935710111 , 10 . 812390415 , - 0 . 876680304 , 0 . 5844535359 , - 16 . 36469901 , - 15 . 78024547 <nl> + 050 , 3 , 5 , 45 , 007 , South Carolina , Anderson County , 187126 , 187122 , 187282 , 188488 , 160 , 1206 , 561 , 2246 , 489 , 1885 , 72 , 361 , 42 , 140 , 54 , 705 , 96 , 845 , - 8 , 0 , 2764 , 2764 , 2764 , 11 . 954120872 , 10 . 032732789 , 1 . 9213880831 , 0 . 7451366527 , 3 . 752295287 , 4 . 4974319398 <nl> + 050 , 3 , 5 , 45 , 009 , South Carolina , Bamberg County , 15987 , 15987 , 15979 , 15975 , - 8 , - 4 , 43 , 186 , 19 , 185 , 24 , 1 , 1 , 0 , - 33 , - 5 , - 32 , - 5 , 0 , 0 , 1241 , 1241 , 1241 , 11 . 641734994 , 11 . 579145021 , 0 . 0625899731 , 0 , - 0 . 312949865 , - 0 . 312949865 <nl> + 050 , 3 , 5 , 45 , 011 , South Carolina , Barnwell County , 22621 , 22621 , 22611 , 22358 , - 10 , - 253 , 56 , 229 , 54 , 294 , 2 , - 65 , 6 , 21 , - 18 , - 211 , - 12 , - 190 , 0 , 2 , 285 , 285 , 285 , 10 . 184793969 , 13 . 075674353 , - 2 . 890880384 , 0 . 9339767395 , - 9 . 384242478 , - 8 . 450265739 <nl> + 050 , 3 , 5 , 45 , 013 , South Carolina , Beaufort County , 162233 , 162233 , 163007 , 164684 , 774 , 1677 , 516 , 2060 , 288 , 1221 , 228 , 839 , 239 , 578 , 317 , 279 , 556 , 857 , - 10 , - 19 , 5265 , 5265 , 5265 , 12 . 572820126 , 7 . 4521424147 , 5 . 1206777116 , 3 . 5277136082 , 1 . 7028236967 , 5 . 230537305 <nl> + 050 , 3 , 5 , 45 , 015 , South Carolina , Berkeley County , 177843 , 177843 , 178765 , 183525 , 922 , 4760 , 623 , 2522 , 288 , 1082 , 335 , 1440 , 129 , 248 , 446 , 3028 , 575 , 3276 , 12 , 44 , 3742 , 3742 , 3742 , 13 . 922548235 , 5 . 97311546 , 7 . 9494327748 , 1 . 3690689779 , 16 . 715890585 , 18 . 084959563 <nl> + 050 , 3 , 5 , 45 , 017 , South Carolina , Calhoun County , 15175 , 15181 , 15141 , 15145 , - 40 , 4 , 40 , 152 , 18 , 173 , 22 , - 21 , 0 , - 1 , - 63 , 26 , - 63 , 25 , 1 , 0 , 153 , 153 , 153 , 10 . 037641154 , 11 . 424420524 , - 1 . 38677937 , - 0 . 066037113 , 1 . 7169649343 , 1 . 6509278214 <nl> + 050 , 3 , 5 , 45 , 019 , South Carolina , Charleston County , 350209 , 350209 , 351336 , 357704 , 1127 , 6368 , 1235 , 4944 , 719 , 2854 , 516 , 2090 , 210 , 544 , 400 , 3692 , 610 , 4236 , 1 , 42 , 10331 , 10331 , 10331 , 13 . 945616608 , 8 . 0503215615 , 5 . 8952950468 , 1 . 5344691414 , 10 . 414081011 , 11 . 948550152 <nl> + 050 , 3 , 5 , 45 , 021 , South Carolina , Cherokee County , 55342 , 55342 , 55416 , 55540 , 74 , 124 , 169 , 688 , 121 , 570 , 48 , 118 , 4 , 16 , 23 , - 6 , 27 , 10 , - 1 , - 4 , 707 , 707 , 707 , 12 . 401312232 , 10 . 274342983 , 2 . 1269692491 , 0 . 28840261 , - 0 . 108150979 , 0 . 1802516313 <nl> + 050 , 3 , 5 , 45 , 023 , South Carolina , Chester County , 33140 , 33140 , 33121 , 32916 , - 19 , - 205 , 101 , 416 , 89 , 385 , 12 , 31 , 5 , 27 , - 36 , - 264 , - 31 , - 237 , 0 , 1 , 218 , 218 , 218 , 12 . 598997532 , 11 . 660129927 , 0 . 9388676045 , 0 . 8177233975 , - 7 . 995517664 , - 7 . 177794267 <nl> + 050 , 3 , 5 , 45 , 025 , South Carolina , Chesterfield County , 46734 , 46734 , 46667 , 46557 , - 67 , - 110 , 128 , 522 , 110 , 501 , 18 , 21 , 9 , 38 , - 95 , - 169 , - 86 , - 131 , 1 , 0 , 874 , 874 , 874 , 11 . 198832919 , 10 . 748305157 , 0 . 4505277611 , 0 . 8152407105 , - 3 . 625675792 , - 2 . 810435081 <nl> + 050 , 3 , 5 , 45 , 027 , South Carolina , Clarendon County , 34971 , 34971 , 34938 , 34726 , - 33 , - 212 , 92 , 381 , 101 , 355 , - 9 , 26 , 2 , 16 , - 24 , - 255 , - 22 , - 239 , - 2 , 1 , 1661 , 1661 , 1661 , 10 . 938217731 , 10 . 191777676 , 0 . 7464400551 , 0 . 4593477262 , - 7 . 320854387 , - 6 . 861506661 <nl> + 050 , 3 , 5 , 45 , 029 , South Carolina , Colleton County , 38892 , 38890 , 38912 , 38611 , 22 , - 301 , 121 , 505 , 134 , 516 , - 13 , - 11 , 3 , 7 , 35 , - 298 , 38 , - 291 , - 3 , 1 , 388 , 388 , 388 , 13 . 028391574 , 13 . 312178321 , - 0 . 283786747 , 0 . 1805915664 , - 7 . 688040968 , - 7 . 507449402 <nl> + 050 , 3 , 5 , 45 , 031 , South Carolina , Darlington County , 68681 , 68687 , 68638 , 68299 , - 49 , - 339 , 201 , 790 , 202 , 759 , - 1 , 31 , 9 , 46 , - 56 , - 419 , - 47 , - 373 , - 1 , 3 , 1345 , 1345 , 1345 , 11 . 538152581 , 11 . 085389632 , 0 . 4527629494 , 0 . 6718417959 , - 6 . 119602445 , - 5 . 447760649 <nl> + 050 , 3 , 5 , 45 , 033 , South Carolina , Dillon County , 32062 , 32062 , 32132 , 31758 , 70 , - 374 , 112 , 448 , 83 , 344 , 29 , 104 , 8 , 28 , 33 , - 511 , 41 , - 483 , 0 , 5 , 451 , 451 , 451 , 14 . 024103929 , 10 . 768508374 , 3 . 2555955549 , 0 . 8765064955 , - 15 . 99624354 , - 15 . 11973705 <nl> + 050 , 3 , 5 , 45 , 035 , South Carolina , Dorchester County , 136555 , 136555 , 137612 , 140892 , 1057 , 3280 , 463 , 1854 , 226 , 862 , 237 , 992 , 34 , 112 , 773 , 2162 , 807 , 2274 , 13 , 14 , 2015 , 2015 , 2015 , 13 . 3139919 , 6 . 1902162985 , 7 . 1237756011 , 0 . 8042972453 , 15 . 525809324 , 16 . 330106569 <nl> + 050 , 3 , 5 , 45 , 037 , South Carolina , Edgefield County , 26985 , 26978 , 26940 , 26670 , - 38 , - 270 , 28 , 111 , 48 , 248 , - 20 , - 137 , 0 , 0 , - 17 , - 133 , - 17 , - 133 , - 1 , 0 , 3045 , 3045 , 3045 , 4 . 1410184667 , 9 . 2520052229 , - 5 . 110986756 , 0 , - 4 . 961760866 , - 4 . 961760866 <nl> + 050 , 3 , 5 , 45 , 039 , South Carolina , Fairfield County , 23956 , 23956 , 23878 , 23571 , - 78 , - 307 , 57 , 239 , 61 , 284 , - 4 , - 45 , 2 , 4 , - 76 , - 269 , - 74 , - 265 , 0 , 3 , 397 , 397 , 397 , 10 . 073974162 , 11 . 970747539 , - 1 . 896773378 , 0 . 168602078 , - 11 . 33848975 , - 11 . 16988767 <nl> + 050 , 3 , 5 , 45 , 041 , South Carolina , Florence County , 136885 , 136879 , 137067 , 137862 , 188 , 795 , 454 , 1847 , 340 , 1372 , 114 , 475 , 25 , 99 , 54 , 231 , 79 , 330 , - 5 , - 10 , 3228 , 3228 , 3228 , 13 . 436196254 , 9 . 9807586686 , 3 . 4554375857 , 0 . 7201859389 , 1 . 6804338575 , 2 . 4006197964 <nl> + 050 , 3 , 5 , 45 , 043 , South Carolina , Georgetown County , 60158 , 60158 , 60140 , 59991 , - 18 , - 149 , 158 , 652 , 178 , 704 , - 20 , - 52 , 13 , 53 , - 6 , - 148 , 7 , - 95 , - 5 , - 2 , 559 , 559 , 559 , 10 . 854816825 , 11 . 720538412 , - 0 . 865721587 , 0 . 8823700793 , - 2 . 463976825 , - 1 . 581606746 <nl> + 050 , 3 , 5 , 45 , 045 , South Carolina , Greenville County , 451225 , 451222 , 453263 , 461299 , 2041 , 8036 , 1914 , 7654 , 889 , 3601 , 1025 , 4053 , 315 , 1041 , 697 , 2930 , 1012 , 3971 , 4 , 12 , 11854 , 11854 , 11854 , 16 . 738066965 , 7 . 8748078315 , 8 . 8632591339 , 2 . 2764995703 , 6 . 4074387521 , 8 . 6839383224 <nl> + 050 , 3 , 5 , 45 , 047 , South Carolina , Greenwood County , 69661 , 69661 , 69723 , 69835 , 62 , 112 , 229 , 940 , 162 , 702 , 67 , 238 , 27 , 103 , - 29 , - 228 , - 2 , - 125 , - 3 , - 1 , 2640 , 2640 , 2640 , 13 . 471101621 , 10 . 060333338 , 3 . 4107682827 , 1 . 4760887946 , - 3 . 267458691 , - 1 . 791369896 <nl> + 050 , 3 , 5 , 45 , 049 , South Carolina , Hampton County , 21090 , 21092 , 21066 , 20821 , - 26 , - 245 , 69 , 278 , 34 , 229 , 35 , 49 , 6 , 23 , - 67 , - 320 , - 61 , - 297 , 0 , 3 , 1531 , 1531 , 1531 , 13 . 273808103 , 10 . 934180056 , 2 . 3396280469 , 1 . 0981927567 , - 15 . 27920357 , - 14 . 18101081 <nl> + 050 , 3 , 5 , 45 , 051 , South Carolina , Horry County , 269291 , 269291 , 270644 , 276340 , 1353 , 5696 , 767 , 3103 , 639 , 2523 , 128 , 580 , 183 , 611 , 1041 , 4477 , 1224 , 5088 , 1 , 28 , 2952 , 2952 , 2952 , 11 . 345852895 , 9 . 2251327278 , 2 . 1207201673 , 2 . 2340690038 , 16 . 369765843 , 18 . 603834847 <nl> + 050 , 3 , 5 , 45 , 053 , South Carolina , Jasper County , 24777 , 24777 , 24957 , 25195 , 180 , 238 , 84 , 352 , 14 , 197 , 70 , 155 , 31 , 128 , 78 , - 44 , 109 , 84 , 1 , - 1 , 1488 , 1488 , 1488 , 14 . 037326527 , 7 . 8561174031 , 6 . 1812091243 , 5 . 1044823736 , - 1 . 754665816 , 3 . 3498165577 <nl> + 050 , 3 , 5 , 45 , 055 , South Carolina , Kershaw County , 61697 , 61697 , 61859 , 62273 , 162 , 414 , 190 , 754 , 161 , 640 , 29 , 114 , 17 , 59 , 116 , 241 , 133 , 300 , 0 , 0 , 526 , 526 , 526 , 12 . 148358199 , 10 . 311603777 , 1 . 8367544227 , 0 . 9506009732 , 3 . 8829632971 , 4 . 8335642703 <nl> + 050 , 3 , 5 , 45 , 057 , South Carolina , Lancaster County , 76652 , 76652 , 76962 , 77908 , 310 , 946 , 224 , 900 , 180 , 709 , 44 , 191 , 20 , 80 , 250 , 682 , 270 , 762 , - 4 , - 7 , 2114 , 2114 , 2114 , 11 . 622651256 , 9 . 1560663783 , 2 . 4665848776 , 1 . 0331245561 , 8 . 8073868406 , 9 . 8405113967 <nl> + 050 , 3 , 5 , 45 , 059 , South Carolina , Laurens County , 66537 , 66540 , 66523 , 66528 , - 17 , 5 , 204 , 840 , 185 , 763 , 19 , 77 , 20 , 64 , - 55 , - 135 , - 35 , - 71 , - 1 , - 1 , 2402 , 2402 , 2402 , 12 . 626737116 , 11 . 469286214 , 1 . 1574509023 , 0 . 9620371136 , - 2 . 029297036 , - 1 . 067259923 <nl> + 050 , 3 , 5 , 45 , 061 , South Carolina , Lee County , 19220 , 19220 , 19199 , 18976 , - 21 , - 223 , 53 , 222 , 57 , 271 , - 4 , - 49 , 14 , 49 , - 31 , - 226 , - 17 , - 177 , 0 , 3 , 1975 , 1975 , 1975 , 11 . 63064833 , 14 . 197773412 , - 2 . 567125082 , 2 . 5671250819 , - 11 . 84020956 , - 9 . 273084479 <nl> + 050 , 3 , 5 , 45 , 063 , South Carolina , Lexington County , 262391 , 262394 , 263460 , 267129 , 1066 , 3669 , 869 , 3445 , 502 , 2006 , 367 , 1439 , 123 , 367 , 568 , 1854 , 691 , 2221 , 8 , 9 , 2320 , 2320 , 2320 , 12 . 985568868 , 7 . 5614081709 , 5 . 4241606969 , 1 . 3833682945 , 6 . 9884599945 , 8 . 3718282889 <nl> + 050 , 3 , 5 , 45 , 065 , South Carolina , McCormick County , 10233 , 10233 , 10236 , 10035 , 3 , - 201 , 13 , 51 , 18 , 130 , - 5 , - 79 , 1 , 2 , 7 , - 125 , 8 , - 123 , 0 , 1 , 1306 , 1306 , 1306 , 5 . 0318188545 , 12 . 826204923 , - 7 . 794386069 , 0 . 1973262296 , - 12 . 33288935 , - 12 . 13556312 <nl> + 050 , 3 , 5 , 45 , 067 , South Carolina , Marion County , 33062 , 33062 , 32984 , 32846 , - 78 , - 138 , 110 , 461 , 128 , 420 , - 18 , 41 , 10 , 40 , - 70 , - 220 , - 60 , - 180 , 0 , 1 , 203 , 203 , 203 , 14 . 005772444 , 12 . 760139754 , 1 . 2456326903 , 1 . 2152514051 , - 6 . 683882728 , - 5 . 468631323 <nl> + 050 , 3 , 5 , 45 , 069 , South Carolina , Marlboro County , 28933 , 28933 , 28888 , 28509 , - 45 , - 379 , 76 , 311 , 63 , 300 , 13 , 11 , 0 , 4 , - 58 , - 398 , - 58 , - 394 , 0 , 4 , 3291 , 3291 , 3291 , 10 . 836803317 , 10 . 453508023 , 0 . 3832952942 , 0 . 139380107 , - 13 . 86832064 , - 13 . 72894054 <nl> + 050 , 3 , 5 , 45 , 071 , South Carolina , Newberry County , 37508 , 37508 , 37588 , 37721 , 80 , 133 , 127 , 516 , 99 , 413 , 28 , 103 , 25 , 88 , 29 , - 56 , 54 , 32 , - 2 , - 2 , 1168 , 1168 , 1168 , 13 . 703541409 , 10 . 968144578 , 2 . 7353968317 , 2 . 3370380698 , - 1 . 487206044 , 0 . 8498320254 <nl> + 050 , 3 , 5 , 45 , 073 , South Carolina , Oconee County , 74273 , 74275 , 74404 , 74418 , 129 , 14 , 202 , 805 , 201 , 815 , 1 , - 10 , 16 , 55 , 115 , - 25 , 131 , 30 , - 3 , - 6 , 795 , 795 , 795 , 10 . 818292994 , 10 . 952681727 , - 0 . 134388733 , 0 . 7391380307 , - 0 . 335971832 , 0 . 4031661985 <nl> + 050 , 3 , 5 , 45 , 075 , South Carolina , Orangeburg County , 92501 , 92495 , 92339 , 91910 , - 156 , - 429 , 319 , 1306 , 267 , 1036 , 52 , 270 , 6 , 38 , - 217 , - 744 , - 211 , - 706 , 3 , 7 , 3300 , 3300 , 3300 , 14 . 176467715 , 11 . 245651265 , 2 . 9308164495 , 0 . 4124852781 , - 8 . 07602755 , - 7 . 663542272 <nl> + 050 , 3 , 5 , 45 , 077 , South Carolina , Pickens County , 119224 , 119226 , 119182 , 119574 , - 44 , 392 , 282 , 1137 , 261 , 1021 , 21 , 116 , 58 , 212 , - 122 , 72 , - 64 , 284 , - 1 , - 8 , 7053 , 7053 , 7053 , 9 . 524367974 , 8 . 5526646451 , 0 . 9717033289 , 1 . 7758716011 , 0 . 6031262042 , 2 . 3789978053 <nl> + 050 , 3 , 5 , 45 , 079 , South Carolina , Richland County , 384504 , 384501 , 385683 , 389116 , 1182 , 3433 , 1234 , 4917 , 674 , 2698 , 560 , 2219 , 297 , 623 , 319 , 603 , 616 , 1226 , 6 , - 12 , 32002 , 32007 , 32015 , 12 . 692324074 , 6 . 9643868926 , 5 . 7279371811 , 1 . 6081590193 , 1 . 5565327266 , 3 . 1646917459 <nl> + 050 , 3 , 5 , 45 , 081 , South Carolina , Saluda County , 19875 , 19875 , 19926 , 19882 , 51 , - 44 , 61 , 264 , 28 , 183 , 33 , 81 , 13 , 46 , 5 , - 172 , 18 , - 126 , 0 , 1 , 239 , 239 , 239 , 13 . 263665595 , 9 . 1941318328 , 4 . 0695337621 , 2 . 3110932476 , - 8 . 6414791 , - 6 . 330385852 <nl> + 050 , 3 , 5 , 45 , 083 , South Carolina , Spartanburg County , 284307 , 284307 , 284792 , 286868 , 485 , 2076 , 955 , 3845 , 663 , 2660 , 292 , 1185 , 113 , 306 , 89 , 599 , 202 , 905 , - 9 , - 14 , 7986 , 7986 , 7986 , 13 . 452051919 , 9 . 3062309765 , 4 . 1458209425 , 1 . 0705664206 , 2 . 0956512612 , 3 . 1662176818 <nl> + 050 , 3 , 5 , 45 , 085 , South Carolina , Sumter County , 107456 , 107456 , 107555 , 107460 , 99 , - 95 , 381 , 1571 , 245 , 966 , 136 , 605 , 64 , 94 , - 102 , - 801 , - 38 , - 707 , 1 , 7 , 2774 , 2774 , 2774 , 14 . 612933981 , 8 . 9854196219 , 5 . 6275143595 , 0 . 874357603 , - 7 . 450642978 , - 6 . 576285375 <nl> + 050 , 3 , 5 , 45 , 087 , South Carolina , Union County , 28961 , 28961 , 28898 , 28679 , - 63 , - 219 , 84 , 344 , 83 , 377 , 1 , - 33 , 1 , 4 , - 65 , - 190 , - 64 , - 186 , 0 , 0 , 503 , 503 , 503 , 11 . 949215833 , 13 . 095506886 , - 1 . 146291054 , 0 . 1389443701 , - 6 . 599857582 , - 6 . 460913212 <nl> + 050 , 3 , 5 , 45 , 089 , South Carolina , Williamsburg County , 34423 , 34423 , 34355 , 34084 , - 68 , - 271 , 93 , 391 , 101 , 368 , - 8 , 23 , 1 , 0 , - 61 , - 294 , - 60 , - 294 , 0 , 0 , 1476 , 1476 , 1476 , 11 . 42623358 , 10 . 754102193 , 0 . 6721313871 , 0 , - 8 . 591592513 , - 8 . 591592513 <nl> + 050 , 3 , 5 , 45 , 091 , South Carolina , York County , 226073 , 226073 , 226959 , 230528 , 886 , 3569 , 739 , 2944 , 425 , 1641 , 314 , 1303 , 89 , 287 , 476 , 1964 , 565 , 2251 , 7 , 15 , 3905 , 3905 , 3905 , 12 . 870311069 , 7 . 1739743424 , 5 . 6963367265 , 1 . 2546804609 , 8 . 5860363245 , 9 . 8407167854 <nl> + 040 , 2 , 4 , 46 , 000 , South Dakota , South Dakota , 814180 , 814180 , 816598 , 824082 , 2418 , 7484 , 2968 , 11763 , 1329 , 6772 , 1639 , 4991 , 157 , 533 , 646 , 1964 , 803 , 2497 , - 24 , - 4 , 34050 , 34053 , 34051 , 14 . 339176439 , 8 . 2551137333 , 6 . 0840627057 , 0 . 6497305995 , 2 . 3941292635 , 3 . 043859863 <nl> + 050 , 2 , 4 , 46 , 003 , South Dakota , Aurora County , 2710 , 2710 , 2708 , 2694 , - 2 , - 14 , 10 , 30 , 4 , 25 , 6 , 5 , 0 , 2 , - 7 , - 20 , - 7 , - 18 , - 1 , - 1 , 96 , 96 , 96 , 11 . 106997408 , 9 . 2558311736 , 1 . 8511662347 , 0 . 7404664939 , - 7 . 404664939 , - 6 . 664198445 <nl> + 050 , 2 , 4 , 46 , 005 , South Dakota , Beadle County , 17398 , 17398 , 17417 , 17550 , 19 , 133 , 64 , 271 , 46 , 203 , 18 , 68 , 4 , 18 , - 2 , 46 , 2 , 64 , - 1 , 1 , 620 , 620 , 620 , 15 . 500328882 , 11 . 610947465 , 3 . 8893814168 , 1 . 0295421397 , 2 . 6310521349 , 3 . 6605942746 <nl> + 050 , 2 , 4 , 46 , 007 , South Dakota , Bennett County , 3431 , 3431 , 3444 , 3441 , 13 , - 3 , 14 , 63 , 2 , 18 , 12 , 45 , 0 , 0 , 1 , - 48 , 1 , - 48 , 0 , 0 , 37 , 37 , 37 , 18 . 300653595 , 5 . 2287581699 , 13 . 071895425 , 0 , - 13 . 94335512 , - 13 . 94335512 <nl> + 050 , 2 , 4 , 46 , 009 , South Dakota , Bon Homme County , 7070 , 7070 , 7064 , 6983 , - 6 , - 81 , 12 , 51 , 12 , 77 , 0 , - 26 , 0 , 3 , - 4 , - 59 , - 4 , - 56 , - 2 , 1 , 1556 , 1556 , 1556 , 7 . 2613369403 , 10 . 963194988 , - 3 . 701858048 , 0 . 4271374671 , - 8 . 400370186 , - 7 . 973232719 <nl> + 050 , 2 , 4 , 46 , 011 , South Dakota , Brookings County , 31965 , 31965 , 32046 , 32226 , 81 , 180 , 100 , 382 , 43 , 202 , 57 , 180 , 20 , 80 , 5 , - 79 , 25 , 1 , - 1 , - 1 , 3588 , 3588 , 3588 , 11 . 886980334 , 6 . 285785412 , 5 . 6011949216 , 2 . 4894199651 , - 2 . 458302216 , 0 . 0311177496 <nl> + 050 , 2 , 4 , 46 , 013 , South Dakota , Brown County , 36531 , 36531 , 36638 , 36822 , 107 , 184 , 121 , 470 , 77 , 346 , 44 , 124 , 0 , 4 , 63 , 57 , 63 , 61 , 0 , - 1 , 1365 , 1365 , 1365 , 12 . 796079499 , 9 . 4200925674 , 3 . 3759869317 , 0 . 1089028042 , 1 . 5518649605 , 1 . 6607677648 <nl> + 050 , 2 , 4 , 46 , 015 , South Dakota , Brule County , 5255 , 5255 , 5270 , 5283 , 15 , 13 , 17 , 66 , 5 , 57 , 12 , 9 , 0 , 0 , 3 , 3 , 3 , 3 , 0 , 1 , 132 , 132 , 132 , 12 . 508291481 , 10 . 80261537 , 1 . 7056761111 , 0 , 0 . 5685587037 , 0 . 5685587037 <nl> + 050 , 2 , 4 , 46 , 017 , South Dakota , Buffalo County , 1912 , 1912 , 1939 , 1988 , 27 , 49 , 13 , 51 , 0 , 12 , 13 , 39 , 0 , 0 , 14 , 10 , 14 , 10 , 0 , 0 , 3 , 3 , 3 , 25 . 974025974 , 6 . 1115355233 , 19 . 862490451 , 0 , 5 . 0929462694 , 5 . 0929462694 <nl> + 050 , 2 , 4 , 46 , 019 , South Dakota , Butte County , 10110 , 10110 , 10141 , 10259 , 31 , 118 , 36 , 139 , 13 , 106 , 23 , 33 , 0 , 1 , 9 , 83 , 9 , 84 , - 1 , 1 , 111 , 111 , 111 , 13 . 62745098 , 10 . 392156863 , 3 . 2352941176 , 0 . 0980392157 , 8 . 137254902 , 8 . 2352941176 <nl> + 050 , 2 , 4 , 46 , 021 , South Dakota , Campbell County , 1466 , 1466 , 1473 , 1427 , 7 , - 46 , 4 , 16 , 1 , 8 , 3 , 8 , 0 , 0 , 4 , - 54 , 4 , - 54 , 0 , 0 , 0 , 0 , 0 , 11 . 034482759 , 5 . 5172413793 , 5 . 5172413793 , 0 , - 37 . 24137931 , - 37 . 24137931 <nl> + 050 , 2 , 4 , 46 , 023 , South Dakota , Charles Mix County , 9129 , 9129 , 9146 , 9208 , 17 , 62 , 39 , 162 , 14 , 111 , 25 , 51 , 0 , 0 , - 7 , 12 , - 7 , 12 , - 1 , - 1 , 589 , 589 , 589 , 17 . 652827721 , 12 . 095456031 , 5 . 5573716901 , 0 , 1 . 3076168683 , 1 . 3076168683 <nl> + 050 , 2 , 4 , 46 , 025 , South Dakota , Clark County , 3691 , 3691 , 3692 , 3628 , 1 , - 64 , 12 , 55 , 7 , 50 , 5 , 5 , 1 , 5 , - 4 , - 75 , - 3 , - 70 , - 1 , 1 , 489 , 489 , 489 , 15 . 027322404 , 13 . 661202186 , 1 . 3661202186 , 1 . 3661202186 , - 20 . 49180328 , - 19 . 12568306 <nl> + 050 , 2 , 4 , 46 , 027 , South Dakota , Clay County , 13864 , 13864 , 13867 , 14051 , 3 , 184 , 43 , 169 , 9 , 94 , 34 , 75 , 4 , 25 , - 34 , 84 , - 30 , 109 , - 1 , 0 , 2237 , 2237 , 2237 , 12 . 106884447 , 6 . 734006734 , 5 . 3728777133 , 1 . 7909592378 , 6 . 0176230389 , 7 . 8085822767 <nl> + 050 , 2 , 4 , 46 , 029 , South Dakota , Codington County , 27227 , 27227 , 27241 , 27442 , 14 , 201 , 100 , 389 , 58 , 242 , 42 , 147 , 0 , 2 , - 28 , 54 , - 28 , 56 , 0 , - 2 , 381 , 381 , 381 , 14 . 227456431 , 8 . 8510140263 , 5 . 3764424044 , 0 . 0731488763 , 1 . 9750196588 , 2 . 048168535 <nl> + 050 , 2 , 4 , 46 , 031 , South Dakota , Corson County , 4050 , 4050 , 4072 , 4022 , 22 , - 50 , 16 , 70 , 2 , 31 , 14 , 39 , 0 , 1 , 8 , - 90 , 8 , - 89 , 0 , 0 , 1 , 1 , 1 , 17 . 296763034 , 7 . 6599950581 , 9 . 6367679763 , 0 . 2470966148 , - 22 . 23869533 , - 21 . 99159872 <nl> + 050 , 2 , 4 , 46 , 033 , South Dakota , Custer County , 8216 , 8216 , 8254 , 8338 , 38 , 84 , 12 , 60 , 10 , 77 , 2 , - 17 , 0 , 1 , 37 , 98 , 37 , 99 , - 1 , 2 , 255 , 255 , 255 , 7 . 2324011572 , 9 . 2815814851 , - 2 . 049180328 , 0 . 1205400193 , 11 . 81292189 , 11 . 933461909 <nl> + 050 , 2 , 4 , 46 , 035 , South Dakota , Davison County , 19504 , 19504 , 19532 , 19651 , 28 , 119 , 72 , 290 , 35 , 164 , 37 , 126 , 1 , 3 , - 9 , - 9 , - 8 , - 6 , - 1 , - 1 , 769 , 769 , 769 , 14 . 802337749 , 8 . 3709772095 , 6 . 431360539 , 0 . 1531276319 , - 0 . 459382896 , - 0 . 306255264 <nl> + 050 , 2 , 4 , 46 , 037 , South Dakota , Day County , 5710 , 5710 , 5722 , 5741 , 12 , 19 , 17 , 63 , 13 , 98 , 4 , - 35 , 0 , 0 , 8 , 54 , 8 , 54 , 0 , 0 , 139 , 139 , 139 , 10 . 991886941 , 17 . 098490796 , - 6 . 106603856 , 0 , 9 . 4216173776 , 9 . 4216173776 <nl> + 050 , 2 , 4 , 46 , 039 , South Dakota , Deuel County , 4364 , 4364 , 4356 , 4359 , - 8 , 3 , 10 , 43 , 4 , 36 , 6 , 7 , 0 , 2 , - 14 , - 5 , - 14 , - 3 , 0 , - 1 , 50 , 50 , 50 , 9 . 868043603 , 8 . 2616179002 , 1 . 6064257028 , 0 . 4589787722 , - 1 . 147446931 , - 0 . 688468158 <nl> + 050 , 2 , 4 , 46 , 041 , South Dakota , Dewey County , 5301 , 5301 , 5335 , 5421 , 34 , 86 , 29 , 112 , 2 , 32 , 27 , 80 , 0 , 0 , 6 , 8 , 6 , 8 , 1 , - 2 , 19 , 19 , 19 , 20 . 82558572 , 5 . 9501673485 , 14 . 875418371 , 0 , 1 . 4875418371 , 1 . 4875418371 <nl> + 050 , 2 , 4 , 46 , 043 , South Dakota , Douglas County , 3002 , 3002 , 2989 , 2972 , - 13 , - 17 , 6 , 30 , 6 , 37 , 0 , - 7 , 0 , 1 , - 12 , - 10 , - 12 , - 9 , - 1 , - 1 , 178 , 178 , 178 , 10 . 065425264 , 12 . 414024493 , - 2 . 348599228 , 0 . 3355141755 , - 3 . 355141755 , - 3 . 019627579 <nl> + 050 , 2 , 4 , 46 , 045 , South Dakota , Edmunds County , 4071 , 4071 , 4078 , 4056 , 7 , - 22 , 12 , 45 , 4 , 52 , 8 , - 7 , 0 , 0 , 0 , - 15 , 0 , - 15 , - 1 , 0 , 420 , 420 , 420 , 11 . 064666831 , 12 . 785837226 , - 1 . 721170396 , 0 , - 3 . 688222277 , - 3 . 688222277 <nl> + 050 , 2 , 4 , 46 , 047 , South Dakota , Fall River County , 7094 , 7094 , 7114 , 6981 , 20 , - 133 , 13 , 44 , 21 , 104 , - 8 , - 60 , 0 , - 1 , 27 , - 73 , 27 , - 74 , 1 , 1 , 235 , 235 , 235 , 6 . 2433487052 , 14 . 757006031 , - 8 . 513657325 , - 0 . 141894289 , - 10 . 35828308 , - 10 . 50017737 <nl> + 050 , 2 , 4 , 46 , 049 , South Dakota , Faulk County , 2364 , 2364 , 2369 , 2367 , 5 , - 2 , 6 , 29 , 4 , 16 , 2 , 13 , 0 , 0 , 3 , - 15 , 3 , - 15 , 0 , 0 , 497 , 497 , 497 , 12 . 246621622 , 6 . 7567567568 , 5 . 4898648649 , 0 , - 6 . 334459459 , - 6 . 334459459 <nl> + 050 , 2 , 4 , 46 , 051 , South Dakota , Grant County , 7356 , 7356 , 7355 , 7250 , - 1 , - 105 , 20 , 80 , 16 , 87 , 4 , - 7 , 1 , 4 , - 5 , - 104 , - 4 , - 100 , - 1 , 2 , 104 , 104 , 104 , 10 . 955152345 , 11 . 913728175 , - 0 . 95857583 , 0 . 5477576173 , - 14 . 24169805 , - 13 . 69394043 <nl> + 050 , 2 , 4 , 46 , 053 , South Dakota , Gregory County , 4271 , 4271 , 4268 , 4216 , - 3 , - 52 , 12 , 43 , 6 , 61 , 6 , - 18 , 0 , 0 , - 8 , - 34 , - 8 , - 34 , - 1 , 0 , 44 , 44 , 44 , 10 . 136727959 , 14 . 38000943 , - 4 . 243281471 , 0 , - 8 . 015087223 , - 8 . 015087223 <nl> + 050 , 2 , 4 , 46 , 055 , South Dakota , Haakon County , 1937 , 1937 , 1925 , 1907 , - 12 , - 18 , 6 , 24 , 2 , 11 , 4 , 13 , 1 , 4 , - 17 , - 34 , - 16 , - 30 , 0 , - 1 , 36 , 36 , 36 , 12 . 526096033 , 5 . 7411273486 , 6 . 7849686848 , 2 . 0876826722 , - 17 . 74530271 , - 15 . 65762004 <nl> + 050 , 2 , 4 , 46 , 057 , South Dakota , Hamlin County , 5903 , 5903 , 5925 , 5978 , 22 , 53 , 27 , 103 , 10 , 77 , 17 , 26 , 0 , 0 , 6 , 27 , 6 , 27 , - 1 , 0 , 245 , 245 , 245 , 17 . 306561371 , 12 . 937914811 , 4 . 3686465597 , 0 , 4 . 5366714274 , 4 . 5366714274 <nl> + 050 , 2 , 4 , 46 , 059 , South Dakota , Hand County , 3431 , 3431 , 3434 , 3423 , 3 , - 11 , 8 , 29 , 3 , 24 , 5 , 5 , 0 , 0 , - 1 , - 15 , - 1 , - 15 , - 1 , - 1 , 61 , 61 , 61 , 8 . 4585095523 , 7 . 0001458364 , 1 . 4583637159 , 0 , - 4 . 375091148 , - 4 . 375091148 <nl> + 050 , 2 , 4 , 46 , 061 , South Dakota , Hanson County , 3331 , 3331 , 3337 , 3376 , 6 , 39 , 11 , 43 , 2 , 13 , 9 , 30 , 0 , 0 , - 2 , 9 , - 2 , 9 , - 1 , 0 , 520 , 520 , 520 , 12 . 810963802 , 3 . 8730820795 , 8 . 937881722 , 0 , 2 . 6813645166 , 2 . 6813645166 <nl> + 050 , 2 , 4 , 46 , 063 , South Dakota , Harding County , 1255 , 1255 , 1247 , 1269 , - 8 , 22 , 3 , 10 , 2 , 4 , 1 , 6 , 0 , 0 , - 9 , 16 , - 9 , 16 , 0 , 0 , 29 , 29 , 29 , 7 . 9491255962 , 3 . 1796502385 , 4 . 7694753577 , 0 , 12 . 718600954 , 12 . 718600954 <nl> + 050 , 2 , 4 , 46 , 065 , South Dakota , Hughes County , 17022 , 17022 , 17079 , 17292 , 57 , 213 , 66 , 258 , 33 , 161 , 33 , 97 , 2 , 11 , 23 , 104 , 25 , 115 , - 1 , 1 , 772 , 775 , 773 , 15 . 012656018 , 9 . 368362864 , 5 . 6442931541 , 0 . 6400744814 , 6 . 0516132786 , 6 . 69168776 <nl> + 050 , 2 , 4 , 46 , 067 , South Dakota , Hutchinson County , 7343 , 7343 , 7346 , 7257 , 3 , - 89 , 19 , 81 , 17 , 109 , 2 , - 28 , 0 , 0 , 2 , - 62 , 2 , - 62 , - 1 , 1 , 832 , 832 , 832 , 11 . 093610902 , 14 . 928439362 , - 3 . 83482846 , 0 , - 8 . 491405876 , - 8 . 491405876 <nl> + 050 , 2 , 4 , 46 , 069 , South Dakota , Hyde County , 1420 , 1420 , 1419 , 1394 , - 1 , - 25 , 4 , 15 , 2 , 16 , 2 , - 1 , 0 , 0 , - 2 , - 23 , - 2 , - 23 , - 1 , - 1 , 38 , 38 , 38 , 10 . 664770707 , 11 . 375755421 , - 0 . 710984714 , 0 , - 16 . 35264842 , - 16 . 35264842 <nl> + 050 , 2 , 4 , 46 , 071 , South Dakota , Jackson County , 3031 , 3031 , 3048 , 3169 , 17 , 121 , 16 , 73 , 1 , 20 , 15 , 53 , 0 , 0 , 2 , 67 , 2 , 67 , 0 , 1 , 42 , 42 , 42 , 23 . 483995496 , 6 . 4339713688 , 17 . 050024127 , 0 , 21 . 553804086 , 21 . 553804086 <nl> + 050 , 2 , 4 , 46 , 073 , South Dakota , Jerauld County , 2071 , 2071 , 2088 , 2085 , 17 , - 3 , 8 , 34 , 4 , 24 , 4 , 10 , 0 , 3 , 13 , - 15 , 13 , - 12 , 0 , - 1 , 176 , 176 , 176 , 16 . 295231249 , 11 . 502516175 , 4 . 7927150731 , 1 . 4378145219 , - 7 . 18907261 , - 5 . 751258088 <nl> + 050 , 2 , 4 , 46 , 075 , South Dakota , Jones County , 1006 , 1006 , 1015 , 1003 , 9 , - 12 , 6 , 16 , 0 , 5 , 6 , 11 , 0 , 0 , 3 , - 23 , 3 , - 23 , 0 , 0 , 0 , 0 , 0 , 15 . 85728444 , 4 . 9554013875 , 10 . 901883053 , 0 , - 22 . 79484638 , - 22 . 79484638 <nl> + 050 , 2 , 4 , 46 , 077 , South Dakota , Kingsbury County , 5148 , 5148 , 5149 , 5179 , 1 , 30 , 15 , 63 , 11 , 66 , 4 , - 3 , 0 , 4 , - 2 , 28 , - 2 , 32 , - 1 , 1 , 203 , 203 , 203 , 12 . 199845081 , 12 . 780790085 , - 0 . 580945004 , 0 . 7745933385 , 5 . 4221533695 , 6 . 196746708 <nl> + 050 , 2 , 4 , 46 , 079 , South Dakota , Lake County , 11200 , 11200 , 11274 , 11567 , 74 , 293 , 33 , 127 , 21 , 113 , 12 , 14 , 1 , 6 , 60 , 271 , 61 , 277 , 1 , 2 , 874 , 874 , 874 , 11 . 12035375 , 9 . 8944879821 , 1 . 2258657677 , 0 . 5253710433 , 23 . 729258789 , 24 . 254629832 <nl> + 050 , 2 , 4 , 46 , 081 , South Dakota , Lawrence County , 24097 , 24097 , 24189 , 24312 , 92 , 123 , 66 , 252 , 41 , 201 , 25 , 51 , 0 , 3 , 66 , 70 , 66 , 73 , 1 , - 1 , 1071 , 1071 , 1071 , 10 . 391538319 , 8 . 2884888971 , 2 . 1030494217 , 0 . 1237087895 , 2 . 8865384219 , 3 . 0102472114 <nl> + 050 , 2 , 4 , 46 , 083 , South Dakota , Lincoln County , 44828 , 44828 , 45216 , 46793 , 388 , 1577 , 211 , 831 , 33 , 178 , 178 , 653 , 2 , 13 , 201 , 901 , 203 , 914 , 7 , 10 , 284 , 284 , 284 , 18 . 063450315 , 3 . 86918671 , 14 . 194263605 , 0 . 2825810519 , 19 . 585040594 , 19 . 867621646 <nl> + 050 , 2 , 4 , 46 , 085 , South Dakota , Lyman County , 3755 , 3755 , 3763 , 3806 , 8 , 43 , 13 , 54 , 3 , 25 , 10 , 29 , 0 , 0 , - 2 , 14 , - 2 , 14 , 0 , 0 , 37 , 37 , 37 , 14 . 268727705 , 6 . 6058924561 , 7 . 662835249 , 0 , 3 . 6992997754 , 3 . 6992997754 <nl> + 050 , 2 , 4 , 46 , 087 , South Dakota , McCook County , 5618 , 5618 , 5622 , 5556 , 4 , - 66 , 19 , 82 , 17 , 80 , 2 , 2 , 1 , 3 , 2 , - 72 , 3 , - 69 , - 1 , 1 , 312 , 312 , 312 , 14 . 671676507 , 14 . 313830739 , 0 . 3578457685 , 0 . 5367686527 , - 12 . 88244767 , - 12 . 34567901 <nl> + 050 , 2 , 4 , 46 , 089 , South Dakota , McPherson County , 2459 , 2459 , 2455 , 2452 , - 4 , - 3 , 4 , 20 , 5 , 24 , - 1 , - 4 , 0 , 1 , - 2 , - 1 , - 2 , 0 , - 1 , 1 , 347 , 347 , 347 , 8 . 1516201345 , 9 . 7819441614 , - 1 . 630324027 , 0 . 4075810067 , - 0 . 407581007 , 0 <nl> + 050 , 2 , 4 , 46 , 091 , South Dakota , Marshall County , 4656 , 4656 , 4658 , 4597 , 2 , - 61 , 16 , 62 , 8 , 64 , 8 , - 2 , 0 , 0 , - 5 , - 60 , - 5 , - 60 , - 1 , 1 , 373 , 373 , 373 , 13 . 398163155 , 13 . 830361967 , - 0 . 432198811 , 0 , - 12 . 96596434 , - 12 . 96596434 <nl> + 050 , 2 , 4 , 46 , 093 , South Dakota , Meade County , 25434 , 25434 , 25438 , 25546 , 4 , 108 , 75 , 304 , 47 , 179 , 28 , 125 , 18 , 16 , - 43 , - 32 , - 25 , - 16 , 1 , - 1 , 797 , 797 , 797 , 11 . 925309901 , 7 . 0218107642 , 4 . 903499137 , 0 . 6276478895 , - 1 . 255295779 , - 0 . 62764789 <nl> + 050 , 2 , 4 , 46 , 095 , South Dakota , Mellette County , 2048 , 2048 , 2046 , 2067 , - 2 , 21 , 9 , 34 , 2 , 9 , 7 , 25 , 0 , 0 , - 8 , - 3 , - 8 , - 3 , - 1 , - 1 , 49 , 49 , 49 , 16 . 532944323 , 4 . 3763676149 , 12 . 156576708 , 0 , - 1 . 458789205 , - 1 . 458789205 <nl> + 050 , 2 , 4 , 46 , 097 , South Dakota , Miner County , 2389 , 2389 , 2384 , 2359 , - 5 , - 25 , 8 , 29 , 3 , 27 , 5 , 2 , 0 , 0 , - 9 , - 28 , - 9 , - 28 , - 1 , 1 , 80 , 80 , 80 , 12 . 228547333 , 11 . 385199241 , 0 . 8433480919 , 0 , - 11 . 80687329 , - 11 . 80687329 <nl> + 050 , 2 , 4 , 46 , 099 , South Dakota , Minnehaha County , 169468 , 169468 , 169941 , 171752 , 473 , 1811 , 687 , 2696 , 306 , 1214 , 381 , 1482 , 63 , 213 , 34 , 128 , 97 , 341 , - 5 , - 12 , 6291 , 6291 , 6291 , 15 . 780247181 , 7 . 1057937974 , 8 . 6744533836 , 1 . 2467331786 , 0 . 7492105487 , 1 . 9959437273 <nl> + 050 , 2 , 4 , 46 , 101 , South Dakota , Moody County , 6486 , 6486 , 6492 , 6475 , 6 , - 17 , 21 , 85 , 6 , 55 , 15 , 30 , 0 , 6 , - 8 , - 55 , - 8 , - 49 , - 1 , 2 , 164 , 164 , 164 , 13 . 110202823 , 8 . 4830724146 , 4 . 627130408 , 0 . 9254260816 , - 8 . 483072415 , - 7 . 557646333 <nl> + 050 , 2 , 4 , 46 , 103 , South Dakota , Pennington County , 100948 , 100948 , 101370 , 102815 , 422 , 1445 , 392 , 1548 , 180 , 681 , 212 , 867 , 31 , 70 , 180 , 513 , 211 , 583 , - 1 , - 5 , 2575 , 2575 , 2575 , 15 . 162720082 , 6 . 6704214315 , 8 . 4922986507 , 0 . 6856527169 , 5 . 024854911 , 5 . 7105076279 <nl> + 050 , 2 , 4 , 46 , 105 , South Dakota , Perkins County , 2982 , 2982 , 2984 , 3001 , 2 , 17 , 8 , 28 , 5 , 32 , 3 , - 4 , 0 , 0 , 0 , 21 , 0 , 21 , - 1 , 0 , 65 , 65 , 65 , 9 . 3567251462 , 10 . 693400167 , - 1 . 336675021 , 0 , 7 . 0175438596 , 7 . 0175438596 <nl> + 050 , 2 , 4 , 46 , 107 , South Dakota , Potter County , 2329 , 2329 , 2340 , 2364 , 11 , 24 , 6 , 21 , 6 , 40 , 0 , - 19 , 0 , 1 , 10 , 42 , 10 , 43 , 1 , 0 , 63 , 63 , 63 , 8 . 9285714286 , 17 . 006802721 , - 8 . 078231293 , 0 . 425170068 , 17 . 857142857 , 18 . 282312925 <nl> + 050 , 2 , 4 , 46 , 109 , South Dakota , Roberts County , 10149 , 10149 , 10189 , 10286 , 40 , 97 , 42 , 168 , 13 , 100 , 29 , 68 , 0 , 0 , 11 , 29 , 11 , 29 , 0 , 0 , 281 , 281 , 281 , 16 . 41025641 , 9 . 768009768 , 6 . 6422466422 , 0 , 2 . 8327228327 , 2 . 8327228327 <nl> + 050 , 2 , 4 , 46 , 111 , South Dakota , Sanborn County , 2355 , 2355 , 2359 , 2392 , 4 , 33 , 6 , 24 , 2 , 19 , 4 , 5 , 0 , 0 , 0 , 29 , 0 , 29 , 0 , - 1 , 174 , 174 , 174 , 10 . 103136182 , 7 . 998316144 , 2 . 1048200379 , 0 , 12 . 20795622 , 12 . 20795622 <nl> + 050 , 2 , 4 , 46 , 113 , South Dakota , Shannon County , 13586 , 13586 , 13656 , 13928 , 70 , 272 , 83 , 336 , 13 , 114 , 70 , 222 , 0 , 0 , 0 , 50 , 0 , 50 , 0 , 0 , 91 , 91 , 91 , 24 . 361948956 , 8 . 2656612529 , 16 . 096287703 , 0 , 3 . 6252900232 , 3 . 6252900232 <nl> + 050 , 2 , 4 , 46 , 115 , South Dakota , Spink County , 6415 , 6415 , 6411 , 6470 , - 4 , 59 , 15 , 60 , 18 , 90 , - 3 , - 30 , 0 , 0 , 0 , 88 , 0 , 88 , - 1 , 1 , 404 , 404 , 404 , 9 . 3160468908 , 13 . 974070336 , - 4 . 658023445 , 0 , 13 . 66353544 , 13 . 66353544 <nl> + 050 , 2 , 4 , 46 , 117 , South Dakota , Stanley County , 2966 , 2966 , 2984 , 3002 , 18 , 18 , 12 , 40 , 0 , 8 , 12 , 32 , 0 , 0 , 6 , - 15 , 6 , - 15 , 0 , 1 , 0 , 0 , 0 , 13 . 364517207 , 2 . 6729034414 , 10 . 691613765 , 0 , - 5 . 011693953 , - 5 . 011693953 <nl> + 050 , 2 , 4 , 46 , 119 , South Dakota , Sully County , 1373 , 1373 , 1372 , 1375 , - 1 , 3 , 4 , 18 , 0 , 7 , 4 , 11 , 0 , 1 , - 5 , - 9 , - 5 , - 8 , 0 , 0 , 0 , 0 , 0 , 13 . 105205679 , 5 . 0964688751 , 8 . 0087368038 , 0 . 7280669822 , - 6 . 552602839 , - 5 . 824535857 <nl> + 050 , 2 , 4 , 46 , 121 , South Dakota , Todd County , 9612 , 9612 , 9665 , 9822 , 53 , 157 , 66 , 268 , 2 , 93 , 64 , 175 , 0 , 1 , - 10 , - 18 , - 10 , - 17 , - 1 , - 1 , 28 , 28 , 28 , 27 . 505516498 , 9 . 544824755 , 17 . 960691743 , 0 . 1026325242 , - 1 . 847385436 , - 1 . 744752912 <nl> + 050 , 2 , 4 , 46 , 123 , South Dakota , Tripp County , 5644 , 5644 , 5645 , 5615 , 1 , - 30 , 18 , 66 , 9 , 71 , 9 , - 5 , 0 , 0 , - 7 , - 25 , - 7 , - 25 , - 1 , 0 , 131 , 131 , 131 , 11 . 722912966 , 12 . 611012433 , - 0 . 888099467 , 0 , - 4 . 440497336 , - 4 . 440497336 <nl> + 050 , 2 , 4 , 46 , 125 , South Dakota , Turner County , 8347 , 8347 , 8350 , 8332 , 3 , - 18 , 21 , 84 , 16 , 95 , 5 , - 11 , 0 , 1 , - 1 , - 7 , - 1 , - 6 , - 1 , - 1 , 153 , 153 , 153 , 10 . 070734924 , 11 . 38952164 , - 1 . 318786716 , 0 . 1198897015 , - 0 . 83922791 , - 0 . 719338209 <nl> + 050 , 2 , 4 , 46 , 127 , South Dakota , Union County , 14399 , 14399 , 14499 , 14651 , 100 , 152 , 43 , 180 , 19 , 109 , 24 , 71 , 1 , 2 , 73 , 79 , 74 , 81 , 2 , 0 , 89 , 89 , 89 , 12 . 349914237 , 7 . 4785591767 , 4 . 87135506 , 0 . 1372212693 , 5 . 4202401372 , 5 . 5574614065 <nl> + 050 , 2 , 4 , 46 , 129 , South Dakota , Walworth County , 5438 , 5438 , 5454 , 5575 , 16 , 121 , 17 , 68 , 10 , 68 , 7 , 0 , 0 , 0 , 9 , 120 , 9 , 120 , 0 , 1 , 152 , 152 , 152 , 12 . 331127029 , 12 . 331127029 , 0 , 0 , 21 . 760812404 , 21 . 760812404 <nl> + 050 , 2 , 4 , 46 , 135 , South Dakota , Yankton County , 22438 , 22438 , 22476 , 22612 , 38 , 136 , 62 , 252 , 43 , 193 , 19 , 59 , 5 , 18 , 15 , 59 , 20 , 77 , - 1 , 0 , 2296 , 2296 , 2296 , 11 . 178140525 , 8 . 5610361959 , 2 . 6171043293 , 0 . 7984386089 , 2 . 6171043293 , 3 . 4155429383 <nl> + 050 , 2 , 4 , 46 , 137 , South Dakota , Ziebach County , 2801 , 2801 , 2824 , 2852 , 23 , 28 , 12 , 54 , 0 , 7 , 12 , 47 , 1 , 5 , 9 , - 23 , 10 , - 18 , 1 , - 1 , 0 , 0 , 0 , 19 . 027484144 , 2 . 4665257223 , 16 . 560958421 , 1 . 7618040874 , - 8 . 104298802 , - 6 . 342494715 <nl> + 040 , 3 , 6 , 47 , 000 , Tennessee , Tennessee , 6346105 , 6346110 , 6357436 , 6403353 , 11326 , 45917 , 20076 , 80536 , 14624 , 58883 , 5452 , 21653 , 2267 , 7608 , 3661 , 16667 , 5928 , 24275 , - 54 , - 11 , 153472 , 153473 , 153472 , 12 . 622416999 , 9 . 2287396963 , 3 . 3936773032 , 1 . 1924027582 , 2 . 6122209214 , 3 . 8046236796 <nl> + 050 , 3 , 6 , 47 , 001 , Tennessee , Anderson County , 75129 , 75118 , 75117 , 75233 , - 1 , 116 , 190 , 772 , 212 , 860 , - 22 , - 88 , 11 , 40 , 14 , 169 , 25 , 209 , - 4 , - 5 , 1183 , 1183 , 1183 , 10 . 269371467 , 11 . 439973395 , - 1 . 170601929 , 0 . 5320917858 , 2 . 2480877951 , 2 . 780179581 <nl> + 050 , 3 , 6 , 47 , 003 , Tennessee , Bedford County , 45058 , 45058 , 45158 , 45509 , 100 , 351 , 161 , 659 , 108 , 408 , 53 , 251 , 47 , 189 , 2 , - 87 , 49 , 102 , - 2 , - 2 , 545 , 545 , 545 , 14 . 536711262 , 8 . 9999669119 , 5 . 5367443502 , 4 . 1691023195 , - 1 . 919110592 , 2 . 249991728 <nl> + 050 , 3 , 6 , 47 , 005 , Tennessee , Benton County , 16489 , 16489 , 16482 , 16430 , - 7 , - 52 , 43 , 172 , 81 , 265 , - 38 , - 93 , 0 , 0 , 31 , 40 , 31 , 40 , 0 , 1 , 162 , 162 , 162 , 10 . 45211473 , 16 . 103548858 , - 5 . 651434127 , 0 , 2 . 4307243559 , 2 . 4307243559 <nl> + 050 , 3 , 6 , 47 , 007 , Tennessee , Bledsoe County , 12876 , 12876 , 12860 , 12865 , - 16 , 5 , 29 , 112 , 36 , 136 , - 7 , - 24 , 0 , 3 , - 9 , 26 , - 9 , 29 , 0 , 0 , 1101 , 1101 , 1101 , 8 . 7074829932 , 10 . 573372206 , - 1 . 865889213 , 0 . 2332361516 , 2 . 0213799806 , 2 . 2546161322 <nl> + 050 , 3 , 6 , 47 , 009 , Tennessee , Blount County , 123010 , 123010 , 123160 , 123901 , 150 , 741 , 321 , 1273 , 289 , 1122 , 32 , 151 , 27 , 88 , 98 , 509 , 125 , 597 , - 7 , - 7 , 2027 , 2027 , 2027 , 10 . 305147312 , 9 . 0827771279 , 1 . 2223701839 , 0 . 7123746767 , 4 . 1204398914 , 4 . 8328145681 <nl> + 050 , 3 , 6 , 47 , 011 , Tennessee , Bradley County , 98963 , 98963 , 99131 , 100055 , 168 , 924 , 284 , 1156 , 225 , 879 , 59 , 277 , 24 , 109 , 87 , 537 , 111 , 646 , - 2 , 1 , 2744 , 2744 , 2744 , 11 . 607241473 , 8 . 8259215005 , 2 . 7813199723 , 1 . 0944544295 , 5 . 391945217 , 6 . 4863996466 <nl> + 050 , 3 , 6 , 47 , 013 , Tennessee , Campbell County , 40716 , 40716 , 40675 , 40512 , - 41 , - 163 , 103 , 436 , 147 , 549 , - 44 , - 113 , 2 , 6 , 4 , - 54 , 6 , - 48 , - 3 , - 2 , 519 , 519 , 519 , 10 . 740635816 , 13 . 524332713 , - 2 . 783696897 , 0 . 1478069149 , - 1 . 330262234 , - 1 . 182455319 <nl> + 050 , 3 , 6 , 47 , 015 , Tennessee , Cannon County , 13801 , 13801 , 13801 , 13761 , 0 , - 40 , 29 , 125 , 34 , 133 , - 5 , - 8 , 0 , 0 , 7 , - 32 , 7 , - 32 , - 2 , 0 , 164 , 164 , 164 , 9 . 0704593281 , 9 . 6509687251 , - 0 . 580509397 , 0 , - 2 . 322037588 , - 2 . 322037588 <nl> + 050 , 3 , 6 , 47 , 017 , Tennessee , Carroll County , 28522 , 28522 , 28510 , 28457 , - 12 , - 53 , 79 , 329 , 101 , 385 , - 22 , - 56 , 0 , 2 , 11 , 4 , 11 , 6 , - 1 , - 3 , 974 , 974 , 974 , 11 . 550546808 , 13 . 516597328 , - 1 . 96605052 , 0 . 07021609 , 0 . 14043218 , 0 . 2106482701 <nl> + 050 , 3 , 6 , 47 , 019 , Tennessee , Carter County , 57424 , 57424 , 57342 , 57185 , - 82 , - 157 , 140 , 559 , 181 , 675 , - 41 , - 116 , 5 , 24 , - 43 , - 60 , - 38 , - 36 , - 3 , - 5 , 1491 , 1491 , 1491 , 9 . 7618902093 , 11 . 787613401 , - 2 . 025723192 , 0 . 4191151432 , - 1 . 047787858 , - 0 . 628672715 <nl> + 050 , 3 , 6 , 47 , 021 , Tennessee , Cheatham County , 39105 , 39105 , 39107 , 39078 , 2 , - 29 , 110 , 442 , 90 , 346 , 20 , 96 , 9 , 26 , - 27 , - 151 , - 18 , - 125 , 0 , 0 , 283 , 283 , 283 , 11 . 306516595 , 8 . 8508025836 , 2 . 4557140116 , 0 . 6650892115 , - 3 . 862633497 , - 3 . 197544286 <nl> + 050 , 3 , 6 , 47 , 023 , Tennessee , Chester County , 17131 , 17131 , 17157 , 17141 , 26 , - 16 , 44 , 179 , 40 , 148 , 4 , 31 , 0 , 1 , 21 , - 47 , 21 , - 46 , 1 , - 1 , 1262 , 1262 , 1262 , 10 . 43792641 , 8 . 6302408304 , 1 . 8076855793 , 0 . 058312438 , - 2 . 740684588 , - 2 . 68237215 <nl> + 050 , 3 , 6 , 47 , 025 , Tennessee , Claiborne County , 32213 , 32213 , 32249 , 32172 , 36 , - 77 , 86 , 341 , 107 , 410 , - 21 , - 69 , 0 , 3 , 58 , - 8 , 58 , - 5 , - 1 , - 3 , 1257 , 1257 , 1257 , 10 . 586609956 , 12 . 728768569 , - 2 . 142158613 , 0 . 093137331 , - 0 . 248366216 , - 0 . 155228885 <nl> + 050 , 3 , 6 , 47 , 027 , Tennessee , Clay County , 7861 , 7861 , 7870 , 7761 , 9 , - 109 , 24 , 100 , 9 , 105 , 15 , - 5 , 0 , 0 , - 6 , - 103 , - 6 , - 103 , 0 , - 1 , 96 , 96 , 96 , 12 . 795086687 , 13 . 434841021 , - 0 . 639754334 , 0 , - 13 . 17893929 , - 13 . 17893929 <nl> + 050 , 3 , 6 , 47 , 029 , Tennessee , Cocke County , 35662 , 35662 , 35620 , 35544 , - 42 , - 76 , 94 , 384 , 109 , 448 , - 15 , - 64 , 5 , 22 , - 31 , - 32 , - 26 , - 10 , - 1 , - 2 , 294 , 294 , 294 , 10 . 79197347 , 12 . 590635715 , - 1 . 798662245 , 0 . 6182901467 , - 0 . 899331122 , - 0 . 281040976 <nl> + 050 , 3 , 6 , 47 , 031 , Tennessee , Coffee County , 52796 , 52796 , 52790 , 53016 , - 6 , 226 , 158 , 643 , 158 , 622 , 0 , 21 , 13 , 59 , - 17 , 148 , - 4 , 207 , - 2 , - 2 , 557 , 557 , 557 , 12 . 154320171 , 11 . 757367257 , 0 . 3969529138 , 1 . 1152486626 , 2 . 7975729165 , 3 . 9128215791 <nl> + 050 , 3 , 6 , 47 , 033 , Tennessee , Crockett County , 14586 , 14586 , 14588 , 14553 , 2 , - 35 , 48 , 192 , 39 , 182 , 9 , 10 , 1 , 13 , - 8 , - 58 , - 7 , - 45 , 0 , 0 , 194 , 194 , 194 , 13 . 177310319 , 12 . 490992073 , 0 . 6863182458 , 0 . 8922137195 , - 3 . 980645825 , - 3 . 088432106 <nl> + 050 , 3 , 6 , 47 , 035 , Tennessee , Cumberland County , 56053 , 56053 , 56219 , 56632 , 166 , 413 , 135 , 558 , 178 , 711 , - 43 , - 153 , 6 , 20 , 206 , 547 , 212 , 567 , - 3 , - 1 , 636 , 636 , 636 , 9 . 8891458649 , 12 . 60068586 , - 2 . 711539995 , 0 . 3544496726 , 9 . 694198545 , 10 . 048648218 <nl> + 050 , 3 , 6 , 47 , 037 , Tennessee , Davidson County , 626681 , 626681 , 628053 , 635475 , 1372 , 7422 , 2441 , 9669 , 1203 , 4973 , 1238 , 4696 , 571 , 1999 , - 439 , 749 , 132 , 2748 , 2 , - 22 , 25870 , 25871 , 25871 , 15 . 304765704 , 7 . 8716102849 , 7 . 4331554188 , 3 . 1641562356 , 1 . 1855692949 , 4 . 3497255304 <nl> + 050 , 3 , 6 , 47 , 039 , Tennessee , Decatur County , 11757 , 11757 , 11748 , 11687 , - 9 , - 61 , 29 , 125 , 47 , 183 , - 18 , - 58 , 0 , - 1 , 11 , - 2 , 11 , - 3 , - 2 , 0 , 213 , 213 , 213 , 10 . 667804566 , 15 . 617665884 , - 4 . 949861319 , - 0 . 085342437 , - 0 . 170684873 , - 0 . 25602731 <nl> + 050 , 3 , 6 , 47 , 041 , Tennessee , DeKalb County , 18723 , 18723 , 18739 , 18854 , 16 , 115 , 45 , 195 , 50 , 221 , - 5 , - 26 , 13 , 46 , 9 , 97 , 22 , 143 , - 1 , - 2 , 298 , 298 , 298 , 10 . 374271806 , 11 . 757508047 , - 1 . 383236241 , 2 . 4472641183 , 5 . 160535206 , 7 . 6077993243 <nl> + 050 , 3 , 6 , 47 , 043 , Tennessee , Dickson County , 49666 , 49666 , 49730 , 50081 , 64 , 351 , 144 , 580 , 104 , 425 , 40 , 155 , 8 , 32 , 17 , 163 , 25 , 195 , - 1 , 1 , 617 , 617 , 617 , 11 . 621965515 , 8 . 5160954203 , 3 . 1058700945 , 0 . 6412118905 , 3 . 2661730671 , 3 . 9073849576 <nl> + 050 , 3 , 6 , 47 , 045 , Tennessee , Dyer County , 38335 , 38335 , 38336 , 38192 , 1 , - 144 , 119 , 490 , 110 , 417 , 9 , 73 , 2 , 1 , - 10 , - 218 , - 8 , - 217 , 0 , 0 , 516 , 516 , 516 , 12 . 805770437 , 10 . 897971984 , 1 . 9077984529 , 0 . 0261342254 , - 5 . 697261133 , - 5 . 671126908 <nl> + 050 , 3 , 6 , 47 , 047 , Tennessee , Fayette County , 38413 , 38413 , 38455 , 38513 , 42 , 58 , 123 , 502 , 86 , 359 , 37 , 143 , 5 , 19 , 2 , - 104 , 7 , - 85 , - 2 , 0 , 421 , 421 , 421 , 13 . 044382081 , 9 . 3285521256 , 3 . 7158299553 , 0 . 4937116724 , - 2 . 702421786 , - 2 . 208710113 <nl> + 050 , 3 , 6 , 47 , 049 , Tennessee , Fentress County , 17959 , 17959 , 17958 , 18020 , - 1 , 62 , 49 , 197 , 58 , 234 , - 9 , - 37 , 0 , - 2 , 9 , 103 , 9 , 101 , - 1 , - 2 , 132 , 132 , 132 , 10 . 951136806 , 13 . 007949302 , - 2 . 056812497 , - 0 . 111179054 , 5 . 7257212741 , 5 . 6145422202 <nl> + 050 , 3 , 6 , 47 , 051 , Tennessee , Franklin County , 41052 , 41052 , 40990 , 40917 , - 62 , - 73 , 94 , 379 , 118 , 433 , - 24 , - 54 , 10 , 36 , - 47 , - 51 , - 37 , - 15 , - 1 , - 4 , 1776 , 1776 , 1776 , 9 . 254398281 , 10 . 572966901 , - 1 . 318568621 , 0 . 879045747 , - 1 . 245314808 , - 0 . 366269061 <nl> + 050 , 3 , 6 , 47 , 053 , Tennessee , Gibson County , 49683 , 49683 , 49701 , 49935 , 18 , 234 , 144 , 595 , 150 , 650 , - 6 , - 55 , 3 , 11 , 22 , 277 , 25 , 288 , - 1 , 1 , 991 , 991 , 991 , 11 . 943474246 , 13 . 047492874 , - 1 . 104018628 , 0 . 2208037256 , 5 . 5602392709 , 5 . 7810429965 <nl> + 050 , 3 , 6 , 47 , 055 , Tennessee , Giles County , 29485 , 29485 , 29399 , 29387 , - 86 , - 12 , 83 , 340 , 78 , 340 , 5 , 0 , 6 , 21 , - 98 , - 31 , - 92 , - 10 , 1 , - 2 , 678 , 678 , 678 , 11 . 567379988 , 11 . 567379988 , 0 , 0 . 7144558228 , - 1 . 054672881 , - 0 . 340217058 <nl> + 050 , 3 , 6 , 47 , 057 , Tennessee , Grainger County , 22657 , 22657 , 22723 , 22766 , 66 , 43 , 64 , 249 , 76 , 253 , - 12 , - 4 , 5 , 24 , 73 , 25 , 78 , 49 , 0 , - 2 , 151 , 151 , 151 , 10 . 947701642 , 11 . 123568335 , - 0 . 175866693 , 1 . 0552001583 , 1 . 0991668315 , 2 . 1543669898 <nl> + 050 , 3 , 6 , 47 , 059 , Tennessee , Greene County , 68831 , 68831 , 68835 , 69339 , 4 , 504 , 176 , 699 , 193 , 799 , - 17 , - 100 , 7 , 40 , 19 , 561 , 26 , 601 , - 5 , 3 , 1752 , 1752 , 1752 , 10 . 117677711 , 11 . 565128027 , - 1 . 447450316 , 0 . 5789801265 , 8 . 1201962743 , 8 . 6991764008 <nl> + 050 , 3 , 6 , 47 , 061 , Tennessee , Grundy County , 13703 , 13703 , 13709 , 13545 , 6 , - 164 , 40 , 156 , 38 , 173 , 2 , - 17 , 2 , 5 , 2 , - 152 , 4 , - 147 , 0 , 0 , 180 , 180 , 180 , 11 . 447860864 , 12 . 695384164 , - 1 . 247523299 , 0 . 3669186175 , - 11 . 15432597 , - 10 . 78740735 <nl> + 050 , 3 , 6 , 47 , 063 , Tennessee , Hamblen County , 62544 , 62544 , 62629 , 63062 , 85 , 433 , 197 , 784 , 169 , 640 , 28 , 144 , 35 , 158 , 24 , 133 , 59 , 291 , - 2 , - 2 , 918 , 918 , 918 , 12 . 47503799 , 10 . 183704482 , 2 . 2913335084 , 2 . 5141020439 , 2 . 1163010876 , 4 . 6304031315 <nl> + 050 , 3 , 6 , 47 , 065 , Tennessee , Hamilton County , 336463 , 336463 , 337307 , 340855 , 844 , 3548 , 1051 , 4174 , 806 , 3208 , 245 , 966 , 91 , 249 , 506 , 2318 , 597 , 2567 , 2 , 15 , 9778 , 9778 , 9778 , 12 . 3097431 , 9 . 4608662827 , 2 . 848876817 , 0 . 7343378131 , 6 . 8361247018 , 7 . 5704625149 <nl> + 050 , 3 , 6 , 47 , 067 , Tennessee , Hancock County , 6819 , 6819 , 6836 , 6737 , 17 , - 99 , 18 , 82 , 13 , 100 , 5 , - 18 , 0 , 0 , 12 , - 81 , 12 , - 81 , 0 , 0 , 149 , 149 , 149 , 12 . 082811464 , 14 . 735135932 , - 2 . 652324468 , 0 , - 11 . 9354601 , - 11 . 9354601 <nl> + 050 , 3 , 6 , 47 , 069 , Tennessee , Hardeman County , 27253 , 27253 , 27175 , 26834 , - 78 , - 341 , 70 , 304 , 62 , 281 , 8 , 23 , 1 , 4 , - 88 , - 371 , - 87 , - 367 , 1 , 3 , 3825 , 3825 , 3825 , 11 . 257383029 , 10 . 405673129 , 0 . 8517099002 , 0 . 1481234609 , - 13 . 738451 , - 13 . 59032754 <nl> + 050 , 3 , 6 , 47 , 071 , Tennessee , Hardin County , 26026 , 26026 , 26028 , 25874 , 2 , - 154 , 63 , 271 , 88 , 328 , - 25 , - 57 , 0 , 7 , 29 , - 104 , 29 , - 97 , - 2 , 0 , 371 , 371 , 371 , 10 . 442757505 , 12 . 639204655 , - 2 . 19644715 , 0 . 2697391237 , - 4 . 007552695 , - 3 . 737813572 <nl> + 050 , 3 , 6 , 47 , 073 , Tennessee , Hawkins County , 56833 , 56833 , 56867 , 56671 , 34 , - 196 , 140 , 569 , 155 , 650 , - 15 , - 81 , 6 , 27 , 46 , - 141 , 52 , - 114 , - 3 , - 1 , 456 , 456 , 456 , 10 . 023075975 , 11 . 449911043 , - 1 . 426835068 , 0 . 4756116895 , - 2 . 483749934 , - 2 . 008138244 <nl> + 050 , 3 , 6 , 47 , 075 , Tennessee , Haywood County , 18787 , 18787 , 18769 , 18470 , - 18 , - 299 , 55 , 235 , 30 , 222 , 25 , 13 , 0 , 3 , - 43 , - 319 , - 43 , - 316 , 0 , 4 , 174 , 174 , 174 , 12 . 621176723 , 11 . 922983968 , 0 . 6981927549 , 0 . 161121405 , - 17 . 13257606 , - 16 . 97145466 <nl> + 050 , 3 , 6 , 47 , 077 , Tennessee , Henderson County , 27769 , 27769 , 27745 , 27912 , - 24 , 167 , 80 , 322 , 89 , 287 , - 9 , 35 , 0 , 4 , - 14 , 127 , - 14 , 131 , - 1 , 1 , 218 , 218 , 218 , 11 . 570871588 , 10 . 313168155 , 1 . 2577034335 , 0 . 1437375353 , 4 . 5636667445 , 4 . 7074042798 <nl> + 050 , 3 , 6 , 47 , 079 , Tennessee , Henry County , 32330 , 32330 , 32340 , 32352 , 10 , 12 , 87 , 360 , 112 , 469 , - 25 , - 109 , 4 , 16 , 33 , 106 , 37 , 122 , - 2 , - 1 , 491 , 491 , 491 , 11 . 129660545 , 14 . 499474433 , - 3 . 369813887 , 0 . 4946515798 , 3 . 2770667161 , 3 . 7717182959 <nl> + 050 , 3 , 6 , 47 , 081 , Tennessee , Hickman County , 24690 , 24690 , 24665 , 24406 , - 25 , - 259 , 65 , 249 , 74 , 250 , - 9 , - 1 , 2 , 8 , - 18 , - 269 , - 16 , - 261 , 0 , 3 , 1513 , 1513 , 1513 , 10 . 148560249 , 10 . 18931752 , - 0 . 04075727 , 0 . 3260581606 , - 10 . 96370565 , - 10 . 63764749 <nl> + 050 , 3 , 6 , 47 , 083 , Tennessee , Houston County , 8426 , 8426 , 8441 , 8333 , 15 , - 108 , 24 , 97 , 16 , 102 , 8 , - 5 , 0 , 0 , 7 , - 104 , 7 , - 104 , 0 , 1 , 177 , 177 , 177 , 11 . 565518064 , 12 . 161678789 , - 0 . 596160725 , 0 , - 12 . 40014308 , - 12 . 40014308 <nl> + 050 , 3 , 6 , 47 , 085 , Tennessee , Humphreys County , 18538 , 18538 , 18585 , 18470 , 47 , - 115 , 52 , 210 , 56 , 223 , - 4 , - 13 , 1 , 6 , 51 , - 109 , 52 , - 103 , - 1 , 1 , 205 , 205 , 205 , 11 . 334502766 , 12 . 036162461 , - 0 . 701659695 , 0 . 3238429362 , - 5 . 883146674 , - 5 . 559303738 <nl> + 050 , 3 , 6 , 47 , 087 , Tennessee , Jackson County , 11638 , 11638 , 11650 , 11371 , 12 , - 279 , 23 , 96 , 39 , 162 , - 16 , - 66 , 0 , 0 , 28 , - 213 , 28 , - 213 , 0 , 0 , 177 , 177 , 177 , 8 . 3402111116 , 14 . 074106251 , - 5 . 733895139 , 0 , - 18 . 5048434 , - 18 . 5048434 <nl> + 050 , 3 , 6 , 47 , 089 , Tennessee , Jefferson County , 51407 , 51409 , 51437 , 51666 , 28 , 229 , 134 , 535 , 152 , 569 , - 18 , - 34 , 14 , 53 , 34 , 210 , 48 , 263 , - 2 , 0 , 1594 , 1594 , 1594 , 10 . 377971543 , 11 . 037506183 , - 0 . 65953464 , 1 . 0280981155 , 4 . 0735963066 , 5 . 1016944221 <nl> + 050 , 3 , 6 , 47 , 091 , Tennessee , Johnson County , 18244 , 18244 , 18271 , 18231 , 27 , - 40 , 39 , 156 , 58 , 206 , - 19 , - 50 , 2 , 7 , 45 , 5 , 47 , 12 , - 1 , - 2 , 1827 , 1827 , 1827 , 8 . 5474768506 , 11 . 287052764 , - 2 . 739575914 , 0 . 3835406279 , 0 . 2739575914 , 0 . 6574982193 <nl> + 050 , 3 , 6 , 47 , 093 , Tennessee , Knox County , 432226 , 432237 , 433110 , 436929 , 873 , 3819 , 1314 , 5222 , 958 , 3846 , 356 , 1376 , 144 , 398 , 374 , 2037 , 518 , 2435 , - 1 , 8 , 12348 , 12348 , 12348 , 12 . 004059588 , 8 . 8409829904 , 3 . 1630765977 , 0 . 9149015159 , 4 . 6825487133 , 5 . 5974502292 <nl> + 050 , 3 , 6 , 47 , 095 , Tennessee , Lake County , 7832 , 7832 , 7827 , 7779 , - 5 , - 48 , 14 , 66 , 16 , 100 , - 2 , - 34 , 0 , 1 , - 3 , - 14 , - 3 , - 13 , 0 , - 1 , 2506 , 2506 , 2506 , 8 . 4582852749 , 12 . 81558375 , - 4 . 357298475 , 0 . 1281558375 , - 1 . 794181725 , - 1 . 666025887 <nl> + 050 , 3 , 6 , 47 , 097 , Tennessee , Lauderdale County , 27815 , 27815 , 27788 , 27748 , - 27 , - 40 , 90 , 369 , 54 , 274 , 36 , 95 , 5 , 17 , - 69 , - 153 , - 64 , - 136 , 1 , 1 , 2734 , 2734 , 2734 , 13 . 288677615 , 9 . 8674733506 , 3 . 4212042639 , 0 . 6122154999 , - 5 . 509939499 , - 4 . 897723999 <nl> + 050 , 3 , 6 , 47 , 099 , Tennessee , Lawrence County , 41869 , 41869 , 42017 , 42115 , 148 , 98 , 136 , 538 , 120 , 476 , 16 , 62 , 1 , 9 , 129 , 31 , 130 , 40 , 2 , - 4 , 407 , 407 , 407 , 12 . 78942614 , 11 . 315551752 , 1 . 4738743879 , 0 . 2139495079 , 0 . 7369371939 , 0 . 9508867018 <nl> + 050 , 3 , 6 , 47 , 101 , Tennessee , Lewis County , 12161 , 12161 , 12163 , 12142 , 2 , - 21 , 35 , 137 , 20 , 129 , 15 , 8 , 0 , - 1 , - 11 , - 28 , - 11 , - 29 , - 2 , 0 , 217 , 217 , 217 , 11 . 273400535 , 10 . 615099774 , 0 . 6583007612 , - 0 . 082287595 , - 2 . 304052664 , - 2 . 386340259 <nl> + 050 , 3 , 6 , 47 , 103 , Tennessee , Lincoln County , 33361 , 33361 , 33433 , 33431 , 72 , - 2 , 91 , 386 , 92 , 377 , - 1 , 9 , 2 , 11 , 71 , - 20 , 73 , - 9 , 0 , - 2 , 283 , 283 , 283 , 11 . 54582436 , 11 . 276621201 , 0 . 2692031587 , 0 . 3290260828 , - 0 . 598229241 , - 0 . 269203159 <nl> + 050 , 3 , 6 , 47 , 105 , Tennessee , Loudon County , 48556 , 48556 , 48783 , 49237 , 227 , 454 , 135 , 537 , 130 , 501 , 5 , 36 , 12 , 53 , 210 , 366 , 222 , 419 , 0 , - 1 , 480 , 480 , 480 , 10 . 956947562 , 10 . 222403591 , 0 . 7345439706 , 1 . 0814119567 , 7 . 4678637013 , 8 . 549275658 <nl> + 050 , 3 , 6 , 47 , 107 , Tennessee , McMinn County , 52266 , 52266 , 52234 , 52508 , - 32 , 274 , 136 , 554 , 154 , 597 , - 18 , - 43 , 12 , 39 , - 23 , 280 , - 11 , 319 , - 3 , - 2 , 942 , 942 , 942 , 10 . 578373527 , 11 . 399438621 , - 0 . 821065093 , 0 . 7446869451 , 5 . 3464703748 , 6 . 0911573199 <nl> + 050 , 3 , 6 , 47 , 109 , Tennessee , McNairy County , 26075 , 26075 , 26095 , 26094 , 20 , - 1 , 71 , 288 , 79 , 337 , - 8 , - 49 , 1 , 6 , 28 , 43 , 29 , 49 , - 1 , - 1 , 313 , 313 , 313 , 11 . 036808523 , 12 . 914598862 , - 1 . 877790339 , 0 . 2299335109 , 1 . 6478568281 , 1 . 877790339 <nl> + 050 , 3 , 6 , 47 , 111 , Tennessee , Macon County , 22248 , 22248 , 22295 , 22485 , 47 , 190 , 79 , 310 , 71 , 267 , 8 , 43 , 18 , 76 , 21 , 72 , 39 , 148 , 0 , - 1 , 269 , 269 , 269 , 13 . 845466726 , 11 . 924966503 , 1 . 9205002233 , 3 . 3943724877 , 3 . 2157213042 , 6 . 6100937919 <nl> + 050 , 3 , 6 , 47 , 113 , Tennessee , Madison County , 98294 , 98294 , 98320 , 98255 , 26 , - 65 , 331 , 1343 , 224 , 869 , 107 , 474 , 18 , 91 , - 99 , - 633 , - 81 , - 542 , 0 , 3 , 4418 , 4418 , 4418 , 13 . 66399593 , 8 . 8414091314 , 4 . 8225867989 , 0 . 9258552715 , - 6 . 440289966 , - 5 . 514434694 <nl> + 050 , 3 , 6 , 47 , 115 , Tennessee , Marion County , 28237 , 28237 , 28290 , 28223 , 53 , - 67 , 86 , 337 , 75 , 310 , 11 , 27 , 0 , 2 , 43 , - 95 , 43 , - 93 , - 1 , - 1 , 250 , 250 , 250 , 11 . 926459399 , 10 . 970927043 , 0 . 9555323554 , 0 . 0707801745 , - 3 . 362058287 , - 3 . 291278113 <nl> + 050 , 3 , 6 , 47 , 117 , Tennessee , Marshall County , 30617 , 30617 , 30664 , 30881 , 47 , 217 , 88 , 346 , 88 , 303 , 0 , 43 , 9 , 33 , 40 , 142 , 49 , 175 , - 2 , - 1 , 359 , 359 , 359 , 11 . 243805346 , 9 . 8464538143 , 1 . 3973515314 , 1 . 072386059 , 4 . 6145097083 , 5 . 6868957673 <nl> + 050 , 3 , 6 , 47 , 119 , Tennessee , Maury County , 80956 , 80956 , 81166 , 81509 , 210 , 343 , 280 , 1114 , 184 , 805 , 96 , 309 , 35 , 150 , 82 , - 113 , 117 , 37 , - 3 , - 3 , 1009 , 1009 , 1009 , 13 . 696019671 , 9 . 8970339634 , 3 . 7989857077 , 1 . 8441678193 , - 1 . 389273091 , 0 . 4548947288 <nl> + 050 , 3 , 6 , 47 , 121 , Tennessee , Meigs County , 11753 , 11753 , 11773 , 11737 , 20 , - 36 , 29 , 120 , 29 , 131 , 0 , - 11 , 0 , - 1 , 21 , - 24 , 21 , - 25 , - 1 , 0 , 128 , 128 , 128 , 10 . 208421948 , 11 . 14419396 , - 0 . 935772012 , - 0 . 085070183 , - 2 . 04168439 , - 2 . 126754573 <nl> + 050 , 3 , 6 , 47 , 123 , Tennessee , Monroe County , 44519 , 44519 , 44584 , 44882 , 65 , 298 , 120 , 491 , 133 , 465 , - 13 , 26 , 8 , 33 , 71 , 238 , 79 , 271 , - 1 , 1 , 500 , 500 , 500 , 10 . 976236783 , 10 . 395010395 , 0 . 5812263877 , 0 . 7377104151 , 5 . 3204569334 , 6 . 0581673485 <nl> + 050 , 3 , 6 , 47 , 125 , Tennessee , Montgomery County , 172331 , 172336 , 173304 , 176619 , 968 , 3315 , 762 , 3019 , 273 , 1068 , 489 , 1951 , 198 , 223 , 271 , 1129 , 469 , 1352 , 10 , 12 , 3416 , 3416 , 3416 , 17 . 255224721 , 6 . 1042000669 , 11 . 151024654 , 1 . 2745661188 , 6 . 452848198 , 7 . 7274143169 <nl> + 050 , 3 , 6 , 47 , 127 , Tennessee , Moore County , 6362 , 6362 , 6360 , 6411 , - 2 , 51 , 10 , 45 , 5 , 54 , 5 , - 9 , 0 , 0 , - 7 , 61 , - 7 , 61 , 0 , - 1 , 104 , 104 , 104 , 7 . 0472163495 , 8 . 4566596195 , - 1 . 40944327 , 0 , 9 . 5528932738 , 9 . 5528932738 <nl> + 050 , 3 , 6 , 47 , 129 , Tennessee , Morgan County , 21987 , 21987 , 21975 , 21838 , - 12 , - 137 , 45 , 182 , 61 , 216 , - 16 , - 34 , 0 , 1 , 5 , - 102 , 5 , - 101 , - 1 , - 2 , 2527 , 2527 , 2527 , 8 . 3080364275 , 9 . 8600871887 , - 1 . 552050761 , 0 . 0456485518 , - 4 . 656152284 , - 4 . 610503732 <nl> + 050 , 3 , 6 , 47 , 131 , Tennessee , Obion County , 31807 , 31807 , 31824 , 31790 , 17 , - 34 , 86 , 347 , 96 , 407 , - 10 , - 60 , 11 , 41 , 19 , - 13 , 30 , 28 , - 3 , - 2 , 461 , 461 , 461 , 10 . 909548213 , 12 . 795925425 , - 1 . 886377213 , 1 . 2890244286 , - 0 . 408715063 , 0 . 8803093659 <nl> + 050 , 3 , 6 , 47 , 133 , Tennessee , Overton County , 22083 , 22083 , 22104 , 22169 , 21 , 65 , 56 , 231 , 72 , 289 , - 16 , - 58 , 1 , 3 , 38 , 120 , 39 , 123 , - 2 , 0 , 286 , 286 , 286 , 10 . 435253992 , 13 . 055361055 , - 2 . 620107063 , 0 . 1355227791 , 5 . 4209111648 , 5 . 5564339439 <nl> + 050 , 3 , 6 , 47 , 135 , Tennessee , Perry County , 7915 , 7915 , 7935 , 7898 , 20 , - 37 , 23 , 104 , 17 , 96 , 6 , 8 , 0 , 0 , 15 , - 46 , 15 , - 46 , - 1 , 1 , 123 , 123 , 123 , 13 . 137118676 , 12 . 126571086 , 1 . 0105475905 , 0 , - 5 . 810648645 , - 5 . 810648645 <nl> + 050 , 3 , 6 , 47 , 137 , Tennessee , Pickett County , 5077 , 5077 , 5074 , 5122 , - 3 , 48 , 10 , 37 , 4 , 50 , 6 , - 13 , 1 , 4 , - 9 , 56 , - 8 , 60 , - 1 , 1 , 74 , 74 , 74 , 7 . 2577481365 , 9 . 8077677521 , - 2 . 550019616 , 0 . 7846214202 , 10 . 984699882 , 11 . 769321302 <nl> + 050 , 3 , 6 , 47 , 139 , Tennessee , Polk County , 16825 , 16825 , 16832 , 16779 , 7 , - 53 , 43 , 173 , 59 , 210 , - 16 , - 37 , 2 , 8 , 21 , - 21 , 23 , - 13 , 0 , - 3 , 244 , 244 , 244 , 10 . 294248907 , 12 . 495909077 , - 2 . 201660171 , 0 . 4760346315 , - 1 . 249590908 , - 0 . 773556276 <nl> + 050 , 3 , 6 , 47 , 141 , Tennessee , Putnam County , 72321 , 72321 , 72567 , 72958 , 246 , 391 , 241 , 943 , 174 , 674 , 67 , 269 , 50 , 167 , 129 , - 41 , 179 , 126 , 0 , - 4 , 2715 , 2715 , 2715 , 12 . 959972513 , 9 . 263013228 , 3 . 6969592853 , 2 . 2951382924 , - 0 . 563477066 , 1 . 7316612266 <nl> + 050 , 3 , 6 , 47 , 143 , Tennessee , Rhea County , 31809 , 31809 , 31846 , 32079 , 37 , 233 , 90 , 378 , 90 , 348 , 0 , 30 , 2 , 12 , 37 , 192 , 39 , 204 , - 2 , - 1 , 924 , 924 , 924 , 11 . 826359014 , 10 . 887759093 , 0 . 9385999218 , 0 . 3754399687 , 6 . 0070394994 , 6 . 3824794681 <nl> + 050 , 3 , 6 , 47 , 145 , Tennessee , Roane County , 54181 , 54181 , 54100 , 53838 , - 81 , - 262 , 119 , 466 , 170 , 668 , - 51 , - 202 , 4 , 16 , - 31 , - 73 , - 27 , - 57 , - 3 , - 3 , 646 , 646 , 646 , 8 . 6345865219 , 12 . 377475958 , - 3 . 742889437 , 0 . 29646649 , - 1 . 352628361 , - 1 . 056161871 <nl> + 050 , 3 , 6 , 47 , 147 , Tennessee , Robertson County , 66283 , 66283 , 66490 , 67106 , 207 , 616 , 246 , 988 , 133 , 549 , 113 , 439 , 33 , 123 , 62 , 58 , 95 , 181 , - 1 , - 4 , 703 , 703 , 703 , 14 . 790862002 , 8 . 2188089464 , 6 . 5720530555 , 1 . 8413724962 , 0 . 8682894697 , 2 . 7096619659 <nl> + 050 , 3 , 6 , 47 , 149 , Tennessee , Rutherford County , 262604 , 262604 , 263769 , 268921 , 1165 , 5152 , 908 , 3628 , 341 , 1452 , 567 , 2176 , 102 , 298 , 484 , 2652 , 586 , 2950 , 12 , 26 , 5109 , 5109 , 5109 , 13 . 621430851 , 5 . 4515759635 , 8 . 1698548875 , 1 . 1188496123 , 9 . 9570106441 , 11 . 075860256 <nl> + 050 , 3 , 6 , 47 , 151 , Tennessee , Scott County , 22228 , 22228 , 22227 , 22160 , - 1 , - 67 , 66 , 262 , 73 , 269 , - 7 , - 7 , 0 , 1 , 7 , - 61 , 7 , - 60 , - 1 , 0 , 264 , 264 , 264 , 11 . 805258296 , 12 . 120665961 , - 0 . 315407664 , 0 . 0450582378 , - 2 . 748552504 , - 2 . 703494266 <nl> + 050 , 3 , 6 , 47 , 153 , Tennessee , Sequatchie County , 14112 , 14112 , 14127 , 14346 , 15 , 219 , 39 , 150 , 35 , 152 , 4 , - 2 , 2 , 7 , 10 , 216 , 12 , 223 , - 1 , - 2 , 188 , 188 , 188 , 10 . 536297545 , 10 . 676781512 , - 0 . 140483967 , 0 . 4916938854 , 15 . 172268465 , 15 . 66396235 <nl> + 050 , 3 , 6 , 47 , 155 , Tennessee , Sevier County , 89889 , 89887 , 90150 , 91466 , 263 , 1316 , 270 , 1092 , 208 , 850 , 62 , 242 , 28 , 102 , 176 , 967 , 204 , 1069 , - 3 , 5 , 982 , 982 , 982 , 12 . 025372214 , 9 . 3604087746 , 2 . 6649634393 , 1 . 1232490529 , 10 . 648841512 , 11 . 772090565 <nl> + 050 , 3 , 6 , 47 , 157 , Tennessee , Shelby County , 927644 , 927644 , 928930 , 935088 , 1286 , 6158 , 3543 , 14217 , 1843 , 7535 , 1700 , 6682 , 424 , 1581 , - 844 , - 2076 , - 420 , - 495 , 6 , - 29 , 18329 , 18329 , 18328 , 15 . 254144542 , 8 . 0846858775 , 7 . 169458664 , 1 . 6963355504 , - 2 . 227446301 , - 0 . 531110751 <nl> + 050 , 3 , 6 , 47 , 159 , Tennessee , Smith County , 19166 , 19166 , 19150 , 19150 , - 16 , 0 , 49 , 194 , 49 , 210 , 0 , - 16 , 2 , 7 , - 17 , 9 , - 15 , 16 , - 1 , 0 , 159 , 159 , 159 , 10 . 130548303 , 10 . 966057441 , - 0 . 835509138 , 0 . 365535248 , 0 . 4699738903 , 0 . 8355091384 <nl> + 050 , 3 , 6 , 47 , 161 , Tennessee , Stewart County , 13324 , 13324 , 13343 , 13186 , 19 , - 157 , 31 , 126 , 39 , 169 , - 8 , - 43 , 2 , - 1 , 24 , - 113 , 26 , - 114 , 1 , 0 , 92 , 92 , 92 , 9 . 4990387877 , 12 . 740774247 , - 3 . 241735459 , - 0 . 075389197 , - 8 . 51897923 , - 8 . 594368427 <nl> + 050 , 3 , 6 , 47 , 163 , Tennessee , Sullivan County , 156823 , 156823 , 156855 , 157419 , 32 , 564 , 388 , 1558 , 438 , 1731 , - 50 , - 173 , 14 , 39 , 78 , 703 , 92 , 742 , - 10 , - 5 , 2631 , 2631 , 2631 , 9 . 9149150105 , 11 . 015865137 , - 1 . 100950126 , 0 . 2481910689 , 4 . 4738031145 , 4 . 7219941834 <nl> + 050 , 3 , 6 , 47 , 165 , Tennessee , Sumner County , 160645 , 160645 , 161316 , 163686 , 671 , 2370 , 487 , 1964 , 327 , 1314 , 160 , 650 , 35 , 126 , 472 , 1590 , 507 , 1716 , 4 , 4 , 1252 , 1252 , 1252 , 12 . 08607947 , 8 . 0861040855 , 3 . 9999753848 , 0 . 7753798438 , 9 . 784555172 , 10 . 559935016 <nl> + 050 , 3 , 6 , 47 , 167 , Tennessee , Tipton County , 61081 , 61081 , 61157 , 61293 , 76 , 136 , 191 , 775 , 119 , 531 , 72 , 244 , 8 , 15 , - 3 , - 121 , 5 , - 106 , - 1 , - 2 , 962 , 962 , 962 , 12 . 658227848 , 8 . 6729277256 , 3 . 9853001225 , 0 . 2449979584 , - 1 . 976316864 , - 1 . 731318906 <nl> + 050 , 3 , 6 , 47 , 169 , Tennessee , Trousdale County , 7870 , 7870 , 7870 , 7816 , 0 , - 54 , 21 , 88 , 10 , 80 , 11 , 8 , 0 , 0 , - 10 , - 62 , - 10 , - 62 , - 1 , 0 , 130 , 130 , 130 , 11 . 220196353 , 10 . 200178503 , 1 . 0200178503 , 0 , - 7 . 90513834 , - 7 . 90513834 <nl> + 050 , 3 , 6 , 47 , 171 , Tennessee , Unicoi County , 18313 , 18313 , 18274 , 18280 , - 39 , 6 , 38 , 157 , 68 , 265 , - 30 , - 108 , 6 , 28 , - 14 , 87 , - 8 , 115 , - 1 , - 1 , 405 , 405 , 405 , 8 . 5900311867 , 14 . 499097226 , - 5 . 909066039 , 1 . 5319800843 , 4 . 7600809761 , 6 . 2920610603 <nl> + 050 , 3 , 6 , 47 , 173 , Tennessee , Union County , 19109 , 19109 , 19088 , 19200 , - 21 , 112 , 51 , 205 , 52 , 188 , - 1 , 17 , 1 , 6 , - 21 , 88 , - 20 , 94 , 0 , 1 , 152 , 152 , 152 , 10 . 708315921 , 9 . 8203092353 , 0 . 8880066862 , 0 . 3134141245 , 4 . 5967404931 , 4 . 9101546176 <nl> + 050 , 3 , 6 , 47 , 175 , Tennessee , Van Buren County , 5548 , 5548 , 5545 , 5483 , - 3 , - 62 , 10 , 49 , 6 , 33 , 4 , 16 , 0 , 0 , - 6 , - 78 , - 6 , - 78 , - 1 , 0 , 94 , 94 , 94 , 8 . 8864708016 , 5 . 9847660501 , 2 . 9017047515 , 0 , - 14 . 14581066 , - 14 . 14581066 <nl> + 050 , 3 , 6 , 47 , 177 , Tennessee , Warren County , 39839 , 39839 , 39857 , 39927 , 18 , 70 , 119 , 483 , 118 , 427 , 1 , 56 , 10 , 38 , 9 , - 22 , 19 , 16 , - 2 , - 2 , 580 , 580 , 580 , 12 . 107690765 , 10 . 703900531 , 1 . 4037902336 , 0 . 9525719442 , - 0 . 55148902 , 0 . 4010829239 <nl> + 050 , 3 , 6 , 47 , 179 , Tennessee , Washington County , 122979 , 122979 , 123358 , 124353 , 379 , 995 , 343 , 1340 , 293 , 1169 , 50 , 171 , 26 , 96 , 302 , 730 , 328 , 826 , 1 , - 2 , 4649 , 4649 , 4649 , 10 . 819059307 , 9 . 4384181566 , 1 . 3806411504 , 0 . 7750967862 , 5 . 8939651449 , 6 . 669061931 <nl> + 050 , 3 , 6 , 47 , 181 , Tennessee , Wayne County , 17021 , 17021 , 17001 , 16951 , - 20 , - 50 , 35 , 143 , 54 , 199 , - 19 , - 56 , 2 , 10 , - 1 , - 3 , 1 , 7 , - 2 , - 1 , 2140 , 2140 , 2140 , 8 . 4236569274 , 11 . 722431668 , - 3 . 298774741 , 0 . 589066918 , - 0 . 176720075 , 0 . 4123468426 <nl> + 050 , 3 , 6 , 47 , 183 , Tennessee , Weakley County , 35021 , 35021 , 35008 , 34980 , - 13 , - 28 , 98 , 400 , 103 , 357 , - 5 , 43 , 3 , 13 , - 10 , - 84 , - 7 , - 71 , - 1 , 0 , 2244 , 2244 , 2244 , 11 . 430530948 , 10 . 201748871 , 1 . 2287820769 , 0 . 3714922558 , - 2 . 400411499 , - 2 . 028919243 <nl> + 050 , 3 , 6 , 47 , 185 , Tennessee , White County , 25841 , 25841 , 25862 , 26149 , 21 , 287 , 64 , 264 , 78 , 306 , - 14 , - 42 , 6 , 29 , 32 , 299 , 38 , 328 , - 3 , 1 , 382 , 382 , 382 , 10 . 151698679 , 11 . 766741651 , - 1 . 615042972 , 1 . 1151487185 , 11 . 497567822 , 12 . 612716541 <nl> + 050 , 3 , 6 , 47 , 187 , Tennessee , Williamson County , 183182 , 183182 , 184080 , 188560 , 898 , 4480 , 507 , 2019 , 210 , 848 , 297 , 1171 , 71 , 243 , 520 , 3032 , 591 , 3275 , 10 , 34 , 1153 , 1153 , 1153 , 10 . 836195792 , 4 . 5513095749 , 6 . 2848862173 , 1 . 3042078145 , 16 . 273078574 , 17 . 577286389 <nl> + 050 , 3 , 6 , 47 , 189 , Tennessee , Wilson County , 113993 , 113993 , 114559 , 116617 , 566 , 2058 , 325 , 1299 , 205 , 841 , 120 , 458 , 20 , 77 , 418 , 1512 , 438 , 1589 , 8 , 11 , 1232 , 1232 , 1232 , 11 . 238190816 , 7 . 2758417829 , 3 . 9623490328 , 0 . 6661591169 , 13 . 080942658 , 13 . 747101775 <nl> + 040 , 3 , 7 , 48 , 000 , Texas , Texas , 25145561 , 25145561 , 25253466 , 25674681 , 107905 , 421215 , 97517 , 396133 , 39836 , 165335 , 57681 , 230798 , 19258 , 74383 , 30169 , 115146 , 49427 , 189529 , 797 , 888 , 581139 , 581090 , 581193 , 15 . 556544792 , 6 . 4928731846 , 9 . 0636716078 , 2 . 9210958726 , 4 . 5219002372 , 7 . 4429961098 <nl> + 050 , 3 , 7 , 48 , 001 , Texas , Anderson County , 58458 , 58458 , 58411 , 58308 , - 47 , - 103 , 145 , 611 , 140 , 647 , 5 , - 36 , 2 , 17 , - 53 , - 83 , - 51 , - 66 , - 1 , - 1 , 14217 , 14191 , 14186 , 10 . 469589356 , 11 . 086455504 , - 0 . 616866149 , 0 . 2912979035 , - 1 . 422219176 , - 1 . 130921272 <nl> + 050 , 3 , 7 , 48 , 003 , Texas , Andrews County , 14786 , 14786 , 14841 , 15445 , 55 , 604 , 59 , 258 , 18 , 101 , 41 , 157 , 9 , 33 , 6 , 408 , 15 , 441 , - 1 , 6 , 82 , 82 , 82 , 17 . 037575117 , 6 . 6697483986 , 10 . 367826719 , 2 . 1792247243 , 26 . 943142046 , 29 . 12236677 <nl> + 050 , 3 , 7 , 48 , 005 , Texas , Angelina County , 86771 , 86771 , 86986 , 87669 , 215 , 683 , 320 , 1287 , 193 , 863 , 127 , 424 , 40 , 127 , 50 , 139 , 90 , 266 , - 2 , - 7 , 2953 , 2953 , 2953 , 14 . 737625605 , 9 . 8823394692 , 4 . 8552861355 , 1 . 4542956113 , 1 . 5917093699 , 3 . 0460049812 <nl> + 050 , 3 , 7 , 48 , 007 , Texas , Aransas County , 23158 , 23156 , 23151 , 23374 , - 5 , 223 , 63 , 266 , 81 , 327 , - 18 , - 61 , 6 , 24 , 10 , 259 , 16 , 283 , - 3 , 1 , 459 , 459 , 459 , 11 . 43471252 , 14 . 056958624 , - 2 . 622246104 , 1 . 0317033853 , 11 . 133799033 , 12 . 165502418 <nl> + 050 , 3 , 7 , 48 , 009 , Texas , Archer County , 9054 , 9054 , 9070 , 8842 , 16 , - 228 , 21 , 92 , 8 , 58 , 13 , 34 , 1 , 16 , 3 , - 282 , 4 , - 266 , - 1 , 4 , 56 , 56 , 56 , 10 . 272443055 , 6 . 4761054042 , 3 . 7963376507 , 1 . 7865118356 , - 31 . 4872711 , - 29 . 70075927 <nl> + 050 , 3 , 7 , 48 , 011 , Texas , Armstrong County , 1901 , 1901 , 1901 , 1928 , 0 , 27 , 6 , 22 , 3 , 25 , 3 , - 3 , 0 , 0 , - 4 , 30 , - 4 , 30 , 1 , 0 , 54 , 54 , 54 , 11 . 491250979 , 13 . 058239749 , - 1 . 56698877 , 0 , 15 . 669887699 , 15 . 669887699 <nl> + 050 , 3 , 7 , 48 , 013 , Texas , Atascosa County , 44911 , 44911 , 45004 , 45579 , 93 , 575 , 162 , 654 , 93 , 382 , 69 , 272 , 6 , 21 , 19 , 281 , 25 , 302 , - 1 , 1 , 384 , 384 , 384 , 14 . 439795547 , 8 . 4342536679 , 6 . 0055418787 , 0 . 4636631598 , 6 . 2042546615 , 6 . 6679178212 <nl> + 050 , 3 , 7 , 48 , 015 , Texas , Austin County , 28417 , 28424 , 28441 , 28665 , 17 , 224 , 92 , 372 , 78 , 273 , 14 , 99 , 13 , 55 , - 9 , 70 , 4 , 125 , - 1 , 0 , 212 , 212 , 212 , 13 . 02840332 , 9 . 5611669527 , 3 . 4672363675 , 1 . 9262424264 , 2 . 4515812699 , 4 . 3778236963 <nl> + 050 , 3 , 7 , 48 , 017 , Texas , Bailey County , 7165 , 7165 , 7191 , 7247 , 26 , 56 , 40 , 168 , 8 , 47 , 32 , 121 , 4 , 11 , - 11 , - 76 , - 7 , - 65 , 1 , 0 , 106 , 106 , 106 , 23 . 271921319 , 6 . 5105970356 , 16 . 761324283 , 1 . 523756753 , - 10 . 52777393 , - 9 . 004017177 <nl> + 050 , 3 , 7 , 48 , 019 , Texas , Bandera County , 20485 , 20485 , 20554 , 20538 , 69 , - 16 , 40 , 153 , 43 , 178 , - 3 , - 25 , 2 , 7 , 69 , 4 , 71 , 11 , 1 , - 2 , 320 , 320 , 320 , 7 . 4467049547 , 8 . 6634868101 , - 1 . 216781855 , 0 . 3406989195 , 0 . 1946850969 , 0 . 5353840164 <nl> + 050 , 3 , 7 , 48 , 021 , Texas , Bastrop County , 74171 , 74169 , 74401 , 75115 , 232 , 714 , 219 , 887 , 122 , 580 , 97 , 307 , 7 , 20 , 125 , 386 , 132 , 406 , 3 , 1 , 2337 , 2337 , 2337 , 11 . 864950908 , 7 . 7583669975 , 4 . 1065839108 , 0 . 2675298965 , 5 . 1633270018 , 5 . 4308568983 <nl> + 050 , 3 , 7 , 48 , 023 , Texas , Baylor County , 3726 , 3726 , 3730 , 3741 , 4 , 11 , 10 , 43 , 6 , 51 , 4 , - 8 , 0 , 0 , 0 , 20 , 0 , 20 , 0 , - 1 , 65 , 65 , 65 , 11 . 511176549 , 13 . 652790791 , - 2 . 141614242 , 0 , 5 . 3540356043 , 5 . 3540356043 <nl> + 050 , 3 , 7 , 48 , 025 , Texas , Bee County , 31861 , 31861 , 31873 , 32095 , 12 , 222 , 83 , 332 , 46 , 215 , 37 , 117 , 2 , 4 , - 25 , 101 , - 23 , 105 , - 2 , 0 , 7499 , 7499 , 7499 , 10 . 380190095 , 6 . 7221110555 , 3 . 6580790395 , 0 . 1250625313 , 3 . 1578289145 , 3 . 2828914457 <nl> + 050 , 3 , 7 , 48 , 027 , Texas , Bell County , 310235 , 310235 , 312859 , 315196 , 2624 , 2337 , 1500 , 6055 , 464 , 1817 , 1036 , 4238 , 473 , 610 , 1080 , - 2538 , 1553 , - 1928 , 35 , 27 , 8079 , 8079 , 8079 , 19 . 281750802 , 5 . 7861174579 , 13 . 495633344 , 1 . 9425050354 , - 8 . 082094721 , - 6 . 139589686 <nl> + 050 , 3 , 7 , 48 , 029 , Texas , Bexar County , 1714773 , 1714777 , 1723561 , 1756153 , 8784 , 32592 , 6631 , 26726 , 2762 , 11060 , 3869 , 15666 , 1101 , 3504 , 3715 , 13285 , 4816 , 16789 , 99 , 137 , 42001 , 42005 , 42002 , 15 . 361032545 , 6 . 3568442694 , 9 . 0041882752 , 2 . 0139586184 , 7 . 6356850017 , 9 . 6496436201 <nl> + 050 , 3 , 7 , 48 , 031 , Texas , Blanco County , 10497 , 10497 , 10525 , 10600 , 28 , 75 , 20 , 84 , 25 , 110 , - 5 , - 26 , 9 , 37 , 23 , 64 , 32 , 101 , 1 , 0 , 106 , 106 , 106 , 7 . 9526627219 , 10 . 414201183 , - 2 . 461538462 , 3 . 5029585799 , 6 . 0591715976 , 9 . 5621301775 <nl> + 050 , 3 , 7 , 48 , 033 , Texas , Borden County , 641 , 641 , 646 , 626 , 5 , - 20 , 2 , 9 , 1 , 7 , 1 , 2 , 0 , 0 , 4 , - 22 , 4 , - 22 , 0 , 0 , 0 , 0 , 0 , 14 . 150943396 , 11 . 006289308 , 3 . 1446540881 , 0 , - 34 . 59119497 , - 34 . 59119497 <nl> + 050 , 3 , 7 , 48 , 035 , Texas , Bosque County , 18212 , 18212 , 18262 , 18306 , 50 , 44 , 40 , 184 , 60 , 233 , - 20 , - 49 , 4 , 22 , 66 , 72 , 70 , 94 , 0 , - 1 , 329 , 329 , 329 , 10 . 063443448 , 12 . 743382192 , - 2 . 679938744 , 1 . 2032378035 , 3 . 9378691752 , 5 . 1411069788 <nl> + 050 , 3 , 7 , 48 , 037 , Texas , Bowie County , 92565 , 92565 , 92684 , 92793 , 119 , 109 , 290 , 1160 , 237 , 951 , 53 , 209 , 18 , 85 , 49 , - 182 , 67 , - 97 , - 1 , - 3 , 6206 , 6206 , 6206 , 12 . 508289438 , 10 . 254640737 , 2 . 2536487004 , 0 . 9165556915 , - 1 . 962507481 , - 1 . 045951789 <nl> + 050 , 3 , 7 , 48 , 039 , Texas , Brazoria County , 313166 , 313166 , 314635 , 319973 , 1469 , 5338 , 1219 , 4946 , 487 , 1958 , 732 , 2988 , 137 , 416 , 594 , 1931 , 731 , 2347 , 6 , 3 , 10559 , 10559 , 10558 , 15 . 587575322 , 6 . 1707384716 , 9 . 4168368505 , 1 . 3110455588 , 6 . 0856465724 , 7 . 3966921312 <nl> + 050 , 3 , 7 , 48 , 041 , Texas , Brazos County , 194851 , 194851 , 195655 , 197632 , 804 , 1977 , 672 , 2682 , 190 , 879 , 482 , 1803 , 231 , 847 , 86 , - 674 , 317 , 173 , 5 , 1 , 13512 , 13512 , 13512 , 13 . 638894751 , 4 . 4700180784 , 9 . 1688766728 , 4 . 3072870448 , - 3 . 427522395 , 0 . 8797646502 <nl> + 050 , 3 , 7 , 48 , 043 , Texas , Brewster County , 9232 , 9232 , 9287 , 9386 , 55 , 99 , 26 , 113 , 5 , 66 , 21 , 47 , 1 , 5 , 33 , 47 , 34 , 52 , 0 , 0 , 75 , 75 , 75 , 12 . 10303647 , 7 . 0690301505 , 5 . 0340063193 , 0 . 5355325872 , 5 . 0340063193 , 5 . 5695389064 <nl> + 050 , 3 , 7 , 48 , 045 , Texas , Briscoe County , 1637 , 1637 , 1630 , 1651 , - 7 , 21 , 6 , 27 , 2 , 11 , 4 , 16 , 0 , 0 , - 11 , 5 , - 11 , 5 , 0 , 0 , 0 , 0 , 0 , 16 . 45839683 , 6 . 7052727827 , 9 . 7531240475 , 0 , 3 . 0478512649 , 3 . 0478512649 <nl> + 050 , 3 , 7 , 48 , 047 , Texas , Brooks County , 7223 , 7223 , 7210 , 7222 , - 13 , 12 , 34 , 147 , 7 , 80 , 27 , 67 , 3 , 16 , - 42 , - 73 , - 39 , - 57 , - 1 , 2 , 67 , 67 , 67 , 20 . 371396896 , 11 . 086474501 , 9 . 2849223947 , 2 . 2172949002 , - 10 . 11640798 , - 7 . 899113082 <nl> + 050 , 3 , 7 , 48 , 049 , Texas , Brown County , 38106 , 38106 , 38136 , 38186 , 30 , 50 , 114 , 460 , 112 , 435 , 2 , 25 , 10 , 29 , 19 , - 1 , 29 , 28 , - 1 , - 3 , 1668 , 1668 , 1668 , 12 . 054191452 , 11 . 399072351 , 0 . 6551191007 , 0 . 7599381568 , - 0 . 026204764 , 0 . 7337333927 <nl> + 050 , 3 , 7 , 48 , 051 , Texas , Burleson County , 17187 , 17187 , 17212 , 17251 , 25 , 39 , 45 , 191 , 46 , 187 , - 1 , 4 , 7 , 18 , 20 , 19 , 27 , 37 , - 1 , - 2 , 163 , 163 , 163 , 11 . 084351333 , 10 . 852218321 , 0 . 2321330122 , 1 . 044598555 , 1 . 102631808 , 2 . 147230363 <nl> + 050 , 3 , 7 , 48 , 053 , Texas , Burnet County , 42750 , 42750 , 42799 , 43117 , 49 , 318 , 117 , 477 , 104 , 401 , 13 , 76 , 8 , 37 , 30 , 206 , 38 , 243 , - 2 , - 1 , 1059 , 1059 , 1059 , 11 . 103868895 , 9 . 3346990083 , 1 . 7691698869 , 0 . 8613063923 , 4 . 7953815355 , 5 . 6566879277 <nl> + 050 , 3 , 7 , 48 , 055 , Texas , Caldwell County , 38066 , 38066 , 38126 , 38442 , 60 , 316 , 120 , 487 , 73 , 291 , 47 , 196 , 10 , 47 , 4 , 73 , 14 , 120 , - 1 , 0 , 3376 , 3376 , 3376 , 12 . 720718838 , 7 . 6010866158 , 5 . 1196322223 , 1 . 2276669105 , 1 . 9068017971 , 3 . 1344687076 <nl> + 050 , 3 , 7 , 48 , 057 , Texas , Calhoun County , 21381 , 21381 , 21357 , 21442 , - 24 , 85 , 69 , 284 , 46 , 210 , 23 , 74 , 14 , 49 , - 62 , - 38 , - 48 , 11 , 1 , 0 , 249 , 249 , 249 , 13 . 271338115 , 9 . 8133133952 , 3 . 4580247202 , 2 . 2897731255 , - 1 . 775742424 , 0 . 5140307017 <nl> + 050 , 3 , 7 , 48 , 059 , Texas , Callahan County , 13544 , 13544 , 13532 , 13515 , - 12 , - 17 , 36 , 141 , 50 , 175 , - 14 , - 34 , 1 , 3 , 1 , 15 , 2 , 18 , 0 , - 1 , 75 , 75 , 75 , 10 . 426294968 , 12 . 940437017 , - 2 . 514142049 , 0 . 2218360631 , 1 . 1091803157 , 1 . 3310163789 <nl> + 050 , 3 , 7 , 48 , 061 , Texas , Cameron County , 406220 , 406220 , 407928 , 414123 , 1708 , 6195 , 1897 , 7924 , 597 , 2296 , 1300 , 5628 , 260 , 1192 , 151 , - 613 , 411 , 579 , - 3 , - 12 , 3730 , 3730 , 3730 , 19 . 278609235 , 5 . 5860281175 , 13 . 692581117 , 2 . 9000633781 , - 1 . 491391653 , 1 . 4086717247 <nl> + 050 , 3 , 7 , 48 , 063 , Texas , Camp County , 12401 , 12401 , 12412 , 12407 , 11 , - 5 , 38 , 159 , 24 , 133 , 14 , 26 , 9 , 30 , - 12 , - 60 , - 3 , - 30 , 0 , - 1 , 67 , 67 , 67 , 12 . 812764414 , 10 . 717595391 , 2 . 0951690237 , 2 . 4175027197 , - 4 . 835005439 , - 2 . 41750272 <nl> + 050 , 3 , 7 , 48 , 065 , Texas , Carson County , 6182 , 6182 , 6172 , 6259 , - 10 , 87 , 14 , 48 , 6 , 81 , 8 , - 33 , 0 , 2 , - 18 , 117 , - 18 , 119 , 0 , 1 , 71 , 71 , 71 , 7 . 7226289116 , 13 . 031936288 , - 5 . 309307377 , 0 . 3217762046 , 18 . 823907972 , 19 . 145684177 <nl> + 050 , 3 , 7 , 48 , 067 , Texas , Cass County , 30464 , 30464 , 30475 , 30256 , 11 , - 219 , 76 , 333 , 109 , 415 , - 33 , - 82 , 1 , 17 , 44 , - 155 , 45 , - 138 , - 1 , 1 , 354 , 354 , 354 , 10 . 966392781 , 13 . 666825839 , - 2 . 700433057 , 0 . 5598458777 , - 5 . 10447712 , - 4 . 544631243 <nl> + 050 , 3 , 7 , 48 , 069 , Texas , Castro County , 8062 , 8062 , 8127 , 8116 , 65 , - 11 , 37 , 154 , 3 , 59 , 34 , 95 , 11 , 42 , 20 , - 150 , 31 , - 108 , 0 , 2 , 64 , 64 , 64 , 18 . 962014406 , 7 . 2646678569 , 11 . 697346549 , 5 . 1714584744 , - 18 . 46949455 , - 13 . 29803608 <nl> + 050 , 3 , 7 , 48 , 071 , Texas , Chambers County , 35096 , 35096 , 35315 , 35552 , 219 , 237 , 119 , 499 , 62 , 216 , 57 , 283 , 5 , 23 , 152 , - 68 , 157 , - 45 , 5 , - 1 , 229 , 229 , 229 , 14 . 082718332 , 6 . 0959261716 , 7 . 98679216 , 0 . 6491032497 , - 1 . 919087869 , - 1 . 269984619 <nl> + 050 , 3 , 7 , 48 , 073 , Texas , Cherokee County , 50845 , 50845 , 50905 , 51140 , 60 , 235 , 186 , 784 , 120 , 498 , 66 , 286 , 15 , 56 , - 19 , - 104 , - 4 , - 48 , - 2 , - 3 , 2851 , 2851 , 2851 , 15 . 365770003 , 9 . 7603998236 , 5 . 6053701798 , 1 . 0975550002 , - 2 . 038316429 , - 0 . 940761429 <nl> + 050 , 3 , 7 , 48 , 075 , Texas , Childress County , 7041 , 7041 , 7059 , 6984 , 18 , - 75 , 21 , 87 , 11 , 81 , 10 , 6 , 0 , 1 , 9 , - 82 , 9 , - 81 , - 1 , 0 , 1418 , 1418 , 1418 , 12 . 390514847 , 11 . 535996582 , 0 . 8545182653 , 0 . 1424197109 , - 11 . 67841629 , - 11 . 53599658 <nl> + 050 , 3 , 7 , 48 , 077 , Texas , Clay County , 10752 , 10752 , 10746 , 10721 , - 6 , - 25 , 28 , 117 , 21 , 122 , 7 , - 5 , 1 , 0 , - 13 , - 20 , - 12 , - 20 , - 1 , 0 , 70 , 70 , 70 , 10 . 900451856 , 11 . 366283132 , - 0 . 465831276 , 0 , - 1 . 863325104 , - 1 . 863325104 <nl> + 050 , 3 , 7 , 48 , 079 , Texas , Cochran County , 3127 , 3127 , 3144 , 3109 , 17 , - 35 , 14 , 65 , 2 , 21 , 12 , 44 , 2 , 22 , 3 , - 102 , 5 , - 80 , 0 , 1 , 78 , 78 , 78 , 20 . 79002079 , 6 . 7167759475 , 14 . 073244842 , 7 . 0366224212 , - 32 . 62434032 , - 25 . 5877179 <nl> + 050 , 3 , 7 , 48 , 081 , Texas , Coke County , 3320 , 3320 , 3325 , 3305 , 5 , - 20 , 8 , 35 , 9 , 62 , - 1 , - 27 , 0 , 4 , 7 , 2 , 7 , 6 , - 1 , 1 , 35 , 35 , 35 , 10 . 558069382 , 18 . 702865762 , - 8 . 14479638 , 1 . 2066365008 , 0 . 6033182504 , 1 . 8099547511 <nl> + 050 , 3 , 7 , 48 , 083 , Texas , Coleman County , 8895 , 8895 , 8895 , 8763 , 0 , - 132 , 18 , 94 , 30 , 118 , - 12 , - 24 , 0 , 3 , 12 , - 112 , 12 , - 109 , 0 , 1 , 40 , 40 , 40 , 10 . 646732359 , 13 . 365047004 , - 2 . 718314645 , 0 . 3397893306 , - 12 . 68546834 , - 12 . 34567901 <nl> + 050 , 3 , 7 , 48 , 085 , Texas , Collin County , 782341 , 782341 , 788511 , 812226 , 6170 , 23715 , 2638 , 10433 , 758 , 3056 , 1880 , 7377 , 628 , 2790 , 3566 , 13393 , 4194 , 16183 , 96 , 155 , 3914 , 3914 , 3914 , 13 . 03524564 , 3 . 8182412226 , 9 . 2170044173 , 3 . 4858943099 , 16 . 733542112 , 20 . 219436422 <nl> + 050 , 3 , 7 , 48 , 087 , Texas , Collingsworth County , 3057 , 3057 , 3057 , 3092 , 0 , 35 , 10 , 46 , 6 , 34 , 4 , 12 , 0 , 4 , - 4 , 19 , - 4 , 23 , 0 , 0 , 52 , 52 , 52 , 14 . 961782404 , 11 . 058708733 , 3 . 9030736705 , 1 . 3010245568 , 6 . 179866645 , 7 . 4808912018 <nl> + 050 , 3 , 7 , 48 , 089 , Texas , Colorado County , 20874 , 20874 , 20893 , 20816 , 19 , - 77 , 64 , 277 , 63 , 252 , 1 , 25 , 13 , 42 , 6 , - 144 , 19 , - 102 , - 1 , 0 , 328 , 328 , 328 , 13 . 282504975 , 12 . 083722937 , 1 . 1987820374 , 2 . 0139538229 , - 6 . 904984536 , - 4 . 891030713 <nl> + 050 , 3 , 7 , 48 , 091 , Texas , Comal County , 108472 , 108472 , 109428 , 111963 , 956 , 2535 , 310 , 1264 , 200 , 854 , 110 , 410 , 37 , 127 , 798 , 1986 , 835 , 2113 , 11 , 12 , 1060 , 1060 , 1060 , 11 . 418711691 , 7 . 7148574242 , 3 . 7038542669 , 1 . 1472914436 , 17 . 941108717 , 19 . 088400161 <nl> + 050 , 3 , 7 , 48 , 093 , Texas , Comanche County , 13974 , 13974 , 13980 , 13891 , 6 , - 89 , 41 , 176 , 54 , 179 , - 13 , - 3 , 8 , 46 , 13 , - 133 , 21 , - 87 , - 2 , 1 , 161 , 161 , 161 , 12 . 629615012 , 12 . 844892541 , - 0 . 215277529 , 3 . 3009221054 , - 9 . 543970435 , - 6 . 24304833 <nl> + 050 , 3 , 7 , 48 , 095 , Texas , Concho County , 4087 , 4087 , 4085 , 4081 , - 2 , - 4 , 8 , 31 , 2 , 35 , 6 , - 4 , 0 , 0 , - 7 , 0 , - 7 , 0 , - 1 , 0 , 1588 , 1588 , 1588 , 7 . 5924565271 , 8 . 572128337 , - 0 . 97967181 , 0 , 0 , 0 <nl> + 050 , 3 , 7 , 48 , 097 , Texas , Cooke County , 38437 , 38437 , 38438 , 38396 , 1 , - 42 , 127 , 510 , 109 , 408 , 18 , 102 , 19 , 75 , - 35 , - 219 , - 16 , - 144 , - 1 , 0 , 686 , 686 , 686 , 13 . 275372882 , 10 . 620298305 , 2 . 6550745764 , 1 . 9522607179 , - 5 . 700601296 , - 3 . 748340578 <nl> + 050 , 3 , 7 , 48 , 099 , Texas , Coryell County , 75388 , 75402 , 75683 , 76508 , 281 , 825 , 246 , 978 , 88 , 383 , 158 , 595 , 197 , 128 , - 76 , 103 , 121 , 231 , 2 , - 1 , 11444 , 11474 , 11563 , 12 . 852271159 , 5 . 033149135 , 7 . 8191220243 , 1 . 6820968388 , 1 . 3535623 , 3 . 0356591388 <nl> + 050 , 3 , 7 , 48 , 101 , Texas , Cottle County , 1505 , 1505 , 1502 , 1499 , - 3 , - 3 , 2 , 12 , 2 , 14 , 0 , - 2 , 0 , 0 , - 3 , 1 , - 3 , 1 , 0 , - 2 , 0 , 0 , 0 , 7 . 9973342219 , 9 . 3302232589 , - 1 . 332889037 , 0 , 0 . 6664445185 , 0 . 6664445185 <nl> + 050 , 3 , 7 , 48 , 103 , Texas , Crane County , 4375 , 4375 , 4379 , 4383 , 4 , 4 , 16 , 69 , 3 , 30 , 13 , 39 , 0 , 1 , - 9 , - 36 , - 9 , - 35 , 0 , 0 , 86 , 86 , 86 , 15 . 749828806 , 6 . 8477516549 , 8 . 9020771513 , 0 . 2282583885 , - 8 . 217301986 , - 7 . 989043597 <nl> + 050 , 3 , 7 , 48 , 105 , Texas , Crockett County , 3719 , 3719 , 3718 , 3722 , - 1 , 4 , 14 , 61 , 3 , 24 , 11 , 37 , 4 , 12 , - 16 , - 46 , - 12 , - 34 , 0 , 1 , 49 , 49 , 49 , 16 . 397849462 , 6 . 4516129032 , 9 . 9462365591 , 3 . 2258064516 , - 12 . 3655914 , - 9 . 139784946 <nl> + 050 , 3 , 7 , 48 , 107 , Texas , Crosby County , 6059 , 6059 , 6061 , 6092 , 2 , 31 , 27 , 110 , 11 , 77 , 16 , 33 , 0 , 1 , - 14 , - 2 , - 14 , - 1 , 0 , - 1 , 62 , 62 , 62 , 18 . 102526125 , 12 . 671768288 , 5 . 4307578376 , 0 . 1645684193 , - 0 . 329136839 , - 0 . 164568419 <nl> + 050 , 3 , 7 , 48 , 109 , Texas , Culberson County , 2398 , 2398 , 2399 , 2383 , 1 , - 16 , 5 , 26 , 0 , 11 , 5 , 15 , 0 , 1 , - 4 , - 32 , - 4 , - 31 , 0 , 0 , 12 , 12 , 12 , 10 . 874111251 , 4 . 6005855291 , 6 . 2735257215 , 0 . 4182350481 , - 13 . 38352154 , - 12 . 96528649 <nl> + 050 , 3 , 7 , 48 , 111 , Texas , Dallam County , 6703 , 6703 , 6747 , 6866 , 44 , 119 , 30 , 128 , 1 , 44 , 29 , 84 , 3 , 14 , 12 , 21 , 15 , 35 , 0 , 0 , 39 , 39 , 39 , 18 . 805553515 , 6 . 4644090208 , 12 . 341144494 , 2 . 0568574157 , 3 . 0852861236 , 5 . 1421435393 <nl> + 050 , 3 , 7 , 48 , 113 , Texas , Dallas County , 2368139 , 2368139 , 2375207 , 2416014 , 7068 , 40807 , 10282 , 41569 , 3493 , 14149 , 6789 , 27420 , 2854 , 12349 , - 2647 , 1136 , 207 , 13485 , 72 , - 98 , 30398 , 30398 , 30398 , 17 . 352153032 , 5 . 9062188949 , 11 . 445934137 , 5 . 1548446628 , 0 . 4742006265 , 5 . 6290452893 <nl> + 050 , 3 , 7 , 48 , 115 , Texas , Dawson County , 13833 , 13833 , 13862 , 13751 , 29 , - 111 , 49 , 208 , 21 , 139 , 28 , 69 , 4 , 12 , - 2 , - 195 , 2 , - 183 , - 1 , 3 , 2146 , 2146 , 2146 , 15 . 065367762 , 10 . 067721725 , 4 . 9976460363 , 0 . 8691558324 , - 14 . 12378228 , - 13 . 25462644 <nl> + 050 , 3 , 7 , 48 , 117 , Texas , Deaf Smith County , 19372 , 19372 , 19477 , 19595 , 105 , 118 , 97 , 392 , 26 , 187 , 71 , 205 , 25 , 83 , 9 , - 172 , 34 , - 89 , 0 , 2 , 371 , 371 , 371 , 20 . 065520066 , 9 . 5720720721 , 10 . 493447993 , 4 . 2485667486 , - 8 . 804258804 , - 4 . 555692056 <nl> + 050 , 3 , 7 , 48 , 119 , Texas , Delta County , 5231 , 5231 , 5256 , 5212 , 25 , - 44 , 13 , 60 , 7 , 62 , 6 , - 2 , 3 , 8 , 16 , - 51 , 19 , - 43 , 0 , 1 , 69 , 69 , 69 , 11 . 463507833 , 11 . 845624761 , - 0 . 382116928 , 1 . 5284677111 , - 9 . 743981658 , - 8 . 215513947 <nl> + 050 , 3 , 7 , 48 , 121 , Texas , Denton County , 662614 , 662614 , 667138 , 686406 , 4524 , 19268 , 2315 , 9121 , 621 , 2724 , 1694 , 6397 , 460 , 1792 , 2312 , 10962 , 2772 , 12754 , 58 , 117 , 10344 , 10344 , 10344 , 13 . 477212414 , 4 . 0249892135 , 9 . 4522232007 , 2 . 6478636823 , 16 . 197478619 , 18 . 845342301 <nl> + 050 , 3 , 7 , 48 , 123 , Texas , DeWitt County , 20097 , 20097 , 20096 , 20255 , - 1 , 159 , 58 , 250 , 49 , 221 , 9 , 29 , 4 , 15 , - 13 , 116 , - 9 , 131 , - 1 , - 1 , 1790 , 1790 , 1790 , 12 . 391266635 , 10 . 953879706 , 1 . 4373869297 , 0 . 7434759981 , 5 . 7495477188 , 6 . 4930237169 <nl> + 050 , 3 , 7 , 48 , 125 , Texas , Dickens County , 2444 , 2444 , 2450 , 2402 , 6 , - 48 , 6 , 26 , 3 , 26 , 3 , 0 , 0 , 0 , 4 , - 48 , 4 , - 48 , - 1 , 0 , 315 , 315 , 315 , 10 . 717230008 , 10 . 717230008 , 0 , 0 , - 19 . 7856554 , - 19 . 7856554 <nl> + 050 , 3 , 7 , 48 , 127 , Texas , Dimmit County , 9996 , 9996 , 10042 , 10118 , 46 , 76 , 34 , 145 , 12 , 84 , 22 , 61 , 5 , 19 , 19 , - 2 , 24 , 17 , 0 , - 2 , 104 , 104 , 104 , 14 . 384920635 , 8 . 3333333333 , 6 . 0515873016 , 1 . 8849206349 , - 0 . 198412698 , 1 . 6865079365 <nl> + 050 , 3 , 7 , 48 , 129 , Texas , Donley County , 3677 , 3677 , 3682 , 3651 , 5 , - 31 , 6 , 33 , 5 , 48 , 1 , - 15 , 0 , 1 , 4 , - 17 , 4 , - 16 , 0 , 0 , 240 , 240 , 240 , 9 . 0004091095 , 13 . 091504159 , - 4 . 09109505 , 0 . 27273967 , - 4 . 63657439 , - 4 . 36383472 <nl> + 050 , 3 , 7 , 48 , 131 , Texas , Duval County , 11782 , 11782 , 11738 , 11669 , - 44 , - 69 , 43 , 178 , 28 , 145 , 15 , 33 , 2 , 3 , - 61 , - 104 , - 59 , - 101 , 0 , - 1 , 578 , 578 , 578 , 15 . 209125475 , 12 . 389456146 , 2 . 8196693297 , 0 . 2563335754 , - 8 . 886230615 , - 8 . 629897039 <nl> + 050 , 3 , 7 , 48 , 133 , Texas , Eastland County , 18583 , 18583 , 18601 , 18633 , 18 , 32 , 57 , 230 , 72 , 258 , - 15 , - 28 , 9 , 30 , 26 , 32 , 35 , 62 , - 2 , - 2 , 885 , 885 , 885 , 12 . 354299833 , 13 . 858301552 , - 1 . 504001719 , 1 . 6114304131 , 1 . 7188591073 , 3 . 3302895203 <nl> + 050 , 3 , 7 , 48 , 135 , Texas , Ector County , 137130 , 137130 , 137161 , 140111 , 31 , 2950 , 663 , 2677 , 286 , 1154 , 377 , 1523 , 31 , 76 , - 386 , 1335 , - 355 , 1411 , 9 , 16 , 2175 , 2175 , 2175 , 19 . 309558845 , 8 . 3239562596 , 10 . 985602585 , 0 . 5481981592 , 9 . 6295334545 , 10 . 177731614 <nl> + 050 , 3 , 7 , 48 , 137 , Texas , Edwards County , 2002 , 2002 , 1992 , 1966 , - 10 , - 26 , 4 , 16 , 2 , 13 , 2 , 3 , 0 , 3 , - 12 , - 32 , - 12 , - 29 , 0 , 0 , 5 , 5 , 5 , 8 . 0848913593 , 6 . 5689742294 , 1 . 5159171299 , 1 . 5159171299 , - 16 . 16978272 , - 14 . 65386559 <nl> + 050 , 3 , 7 , 48 , 139 , Texas , Ellis County , 149610 , 149610 , 150459 , 152753 , 849 , 2294 , 532 , 2127 , 234 , 1014 , 298 , 1113 , 43 , 172 , 497 , 1010 , 540 , 1182 , 11 , - 1 , 1610 , 1610 , 1610 , 14 . 029787739 , 6 . 6883896416 , 7 . 3413980977 , 1 . 134519742 , 6 . 6620054615 , 7 . 7965252035 <nl> + 050 , 3 , 7 , 48 , 141 , Texas , El Paso County , 800647 , 800647 , 803995 , 820790 , 3348 , 16795 , 3408 , 13862 , 1146 , 4572 , 2262 , 9290 , 591 , 2116 , 487 , 5339 , 1078 , 7455 , 8 , 50 , 15792 , 15792 , 15795 , 17 . 063180667 , 5 . 6278215272 , 11 . 43535914 , 2 . 6046523078 , 6 . 5719464421 , 9 . 17659875 <nl> + 050 , 3 , 7 , 48 , 143 , Texas , Erath County , 37890 , 37890 , 37950 , 38266 , 60 , 316 , 129 , 496 , 81 , 326 , 48 , 170 , 17 , 75 , - 4 , 74 , 13 , 149 , - 1 , - 3 , 1888 , 1888 , 1888 , 13 . 015639761 , 8 . 5546341975 , 4 . 4610055631 , 1 . 9680906896 , 1 . 9418494804 , 3 . 90994017 <nl> + 050 , 3 , 7 , 48 , 145 , Texas , Falls County , 17866 , 17866 , 17881 , 17944 , 15 , 63 , 54 , 212 , 34 , 175 , 20 , 37 , 0 , 6 , - 3 , 20 , - 3 , 26 , - 2 , 0 , 2068 , 2068 , 2068 , 11 . 835310537 , 9 . 769713887 , 2 . 0655966504 , 0 . 334961619 , 1 . 1165387299 , 1 . 4515003489 <nl> + 050 , 3 , 7 , 48 , 147 , Texas , Fannin County , 33915 , 33915 , 33926 , 33958 , 11 , 32 , 94 , 375 , 113 , 444 , - 19 , - 69 , 11 , 45 , 21 , 60 , 32 , 105 , - 2 , - 4 , 3145 , 3145 , 3145 , 11 . 048258794 , 13 . 081138413 , - 2 . 032879618 , 1 . 3257910553 , 1 . 7677214071 , 3 . 0935124624 <nl> + 050 , 3 , 7 , 48 , 149 , Texas , Fayette County , 24554 , 24554 , 24537 , 24732 , - 17 , 195 , 58 , 241 , 83 , 297 , - 25 , - 56 , 3 , 11 , 8 , 239 , 11 , 250 , - 3 , 1 , 455 , 455 , 455 , 9 . 7830278674 , 12 . 056262559 , - 2 . 273234691 , 0 . 4465282429 , 9 . 7018409142 , 10 . 148369157 <nl> + 050 , 3 , 7 , 48 , 151 , Texas , Fisher County , 3974 , 3974 , 3954 , 3914 , - 20 , - 40 , 6 , 35 , 7 , 65 , - 1 , - 30 , 2 , 4 , - 20 , - 14 , - 18 , - 10 , - 1 , 0 , 22 , 22 , 22 , 8 . 896797153 , 16 . 522623284 , - 7 . 625826131 , 1 . 0167768175 , - 3 . 558718861 , - 2 . 541942044 <nl> + 050 , 3 , 7 , 48 , 153 , Texas , Floyd County , 6446 , 6446 , 6423 , 6394 , - 23 , - 29 , 25 , 101 , 6 , 69 , 19 , 32 , 0 , 2 , - 41 , - 64 , - 41 , - 62 , - 1 , 1 , 35 , 35 , 35 , 15 . 760318327 , 10 . 766950144 , 4 . 9933681829 , 0 . 3120855114 , - 9 . 986736366 , - 9 . 674650854 <nl> + 050 , 3 , 7 , 48 , 155 , Texas , Foard County , 1336 , 1336 , 1339 , 1341 , 3 , 2 , 2 , 11 , 1 , 14 , 1 , - 3 , 0 , 0 , 2 , 5 , 2 , 5 , 0 , 0 , 30 , 30 , 30 , 8 . 2089552239 , 10 . 447761194 , - 2 . 23880597 , 0 , 3 . 7313432836 , 3 . 7313432836 <nl> + 050 , 3 , 7 , 48 , 157 , Texas , Fort Bend County , 585375 , 585377 , 590871 , 606953 , 5494 , 16082 , 1970 , 7952 , 612 , 2269 , 1358 , 5683 , 526 , 2071 , 3506 , 8232 , 4032 , 10303 , 104 , 96 , 5936 , 5936 , 5936 , 13 . 277409703 , 3 . 7885365463 , 9 . 4888731567 , 3 . 4579370592 , 13 . 744924129 , 17 . 202861188 <nl> + 050 , 3 , 7 , 48 , 159 , Texas , Franklin County , 10605 , 10605 , 10612 , 10551 , 7 , - 61 , 26 , 111 , 26 , 137 , 0 , - 26 , 13 , 49 , - 5 , - 83 , 8 , - 34 , - 1 , - 1 , 114 , 114 , 114 , 10 . 490006143 , 12 . 947124699 , - 2 . 457118556 , 4 . 6307234324 , - 7 . 843878467 , - 3 . 213155035 <nl> + 050 , 3 , 7 , 48 , 161 , Texas , Freestone County , 19816 , 19816 , 19828 , 19684 , 12 , - 144 , 53 , 207 , 45 , 185 , 8 , 22 , 8 , 39 , - 3 , - 208 , 5 , - 169 , - 1 , 3 , 1581 , 1581 , 1581 , 10 . 47782952 , 9 . 364243774 , 1 . 1135857461 , 1 . 9740838226 , - 10 . 52844705 , - 8 . 554363231 <nl> + 050 , 3 , 7 , 48 , 163 , Texas , Frio County , 17217 , 17217 , 17216 , 17400 , - 1 , 184 , 57 , 247 , 21 , 134 , 36 , 113 , 2 , 9 , - 39 , 61 , - 37 , 70 , 0 , 1 , 3271 , 3271 , 3272 , 14 . 270857407 , 7 . 7420845852 , 6 . 5287728218 , 0 . 5199907557 , 3 . 5243817888 , 4 . 0443725445 <nl> + 050 , 3 , 7 , 48 , 165 , Texas , Gaines County , 17526 , 17526 , 17621 , 18003 , 95 , 382 , 94 , 373 , 9 , 117 , 85 , 256 , 11 , 50 , - 1 , 75 , 10 , 125 , 0 , 1 , 87 , 87 , 87 , 20 . 940938693 , 6 . 5686054345 , 14 . 372333258 , 2 . 8070963395 , 4 . 2106445093 , 7 . 0177408489 <nl> + 050 , 3 , 7 , 48 , 167 , Texas , Galveston County , 291309 , 291309 , 292704 , 295747 , 1395 , 3043 , 1034 , 4137 , 567 , 2299 , 467 , 1838 , 158 , 462 , 751 , 746 , 909 , 1208 , 19 , - 3 , 4297 , 4297 , 4297 , 14 . 060643962 , 7 . 8137347035 , 6 . 2469092584 , 1 . 5702241988 , 2 . 5354702431 , 4 . 1056944418 <nl> + 050 , 3 , 7 , 48 , 169 , Texas , Garza County , 6461 , 6461 , 6457 , 6562 , - 4 , 105 , 20 , 82 , 5 , 45 , 15 , 37 , 0 , 0 , - 19 , 68 , - 19 , 68 , 0 , 0 , 2109 , 2109 , 2109 , 12 . 596973654 , 6 . 9129733466 , 5 . 6840003072 , 0 , 10 . 446270835 , 10 . 446270835 <nl> + 050 , 3 , 7 , 48 , 171 , Texas , Gillespie County , 24837 , 24841 , 24904 , 25114 , 63 , 210 , 61 , 258 , 79 , 347 , - 18 , - 89 , 8 , 44 , 75 , 255 , 83 , 299 , - 2 , 0 , 390 , 390 , 390 , 10 . 316286137 , 13 . 875004998 , - 3 . 558718861 , 1 . 759366628 , 10 . 196329321 , 11 . 955695949 <nl> + 050 , 3 , 7 , 48 , 173 , Texas , Glasscock County , 1226 , 1226 , 1229 , 1251 , 3 , 22 , 4 , 14 , 2 , 6 , 2 , 8 , 0 , 1 , 1 , 13 , 1 , 14 , 0 , 0 , 0 , 0 , 0 , 11 . 290322581 , 4 . 8387096774 , 6 . 4516129032 , 0 . 8064516129 , 10 . 483870968 , 11 . 290322581 <nl> + 050 , 3 , 7 , 48 , 175 , Texas , Goliad County , 7210 , 7210 , 7232 , 7243 , 22 , 11 , 16 , 72 , 8 , 64 , 8 , 8 , 0 , 1 , 15 , 2 , 15 , 3 , - 1 , 0 , 93 , 93 , 93 , 9 . 9481865285 , 8 . 8428324698 , 1 . 1053540587 , 0 . 1381692573 , 0 . 2763385147 , 0 . 414507772 <nl> + 050 , 3 , 7 , 48 , 177 , Texas , Gonzales County , 19807 , 19807 , 19850 , 19904 , 43 , 54 , 75 , 298 , 35 , 196 , 40 , 102 , 19 , 67 , - 14 , - 115 , 5 , - 48 , - 2 , 0 , 311 , 311 , 311 , 14 . 992202043 , 9 . 8606429542 , 5 . 1315590884 , 3 . 3707299894 , - 5 . 785581325 , - 2 . 414851336 <nl> + 050 , 3 , 7 , 48 , 179 , Texas , Gray County , 22535 , 22535 , 22455 , 22755 , - 80 , 300 , 78 , 309 , 66 , 268 , 12 , 41 , 5 , 31 , - 99 , 226 , - 94 , 257 , 2 , 2 , 1610 , 1610 , 1610 , 13 . 669542137 , 11 . 855784119 , 1 . 8137580181 , 1 . 3713780137 , 9 . 9977881 , 11 . 369166114 <nl> + 050 , 3 , 7 , 48 , 181 , Texas , Grayson County , 120877 , 120877 , 121094 , 121419 , 217 , 325 , 381 , 1542 , 299 , 1224 , 82 , 318 , 42 , 157 , 96 , - 144 , 138 , 13 , - 3 , - 6 , 2214 , 2214 , 2214 , 12 . 716844045 , 10 . 094304223 , 2 . 6225398226 , 1 . 2947759502 , - 1 . 187565203 , 0 . 1072107475 <nl> + 050 , 3 , 7 , 48 , 183 , Texas , Gregg County , 121730 , 121730 , 121906 , 123081 , 176 , 1175 , 473 , 1943 , 307 , 1240 , 166 , 703 , 66 , 227 , - 52 , 252 , 14 , 479 , - 4 , - 7 , 4414 , 4414 , 4414 , 15 . 86206615 , 10 . 122986118 , 5 . 7390800328 , 1 . 8531595554 , 2 . 0572520175 , 3 . 9104115729 <nl> + 050 , 3 , 7 , 48 , 185 , Texas , Grimes County , 26604 , 26572 , 26647 , 26887 , 75 , 240 , 70 , 291 , 47 , 195 , 23 , 96 , 12 , 47 , 40 , 97 , 52 , 144 , 0 , 0 , 3012 , 3012 , 3012 , 10 . 871595621 , 7 . 2850898494 , 3 . 586505772 , 1 . 7558934509 , 3 . 6238652072 , 5 . 379758658 <nl> + 050 , 3 , 7 , 48 , 187 , Texas , Guadalupe County , 131533 , 131533 , 132409 , 135757 , 876 , 3348 , 416 , 1688 , 198 , 837 , 218 , 851 , 34 , 85 , 607 , 2378 , 641 , 2463 , 17 , 34 , 1888 , 1888 , 1888 , 12 . 589217127 , 6 . 2424020942 , 6 . 3468150325 , 0 . 6339356965 , 17 . 735283369 , 18 . 369219066 <nl> + 050 , 3 , 7 , 48 , 189 , Texas , Hale County , 36273 , 36273 , 36375 , 36498 , 102 , 123 , 160 , 636 , 71 , 342 , 89 , 294 , 14 , 51 , 0 , - 224 , 14 , - 173 , - 1 , 2 , 2802 , 2802 , 2802 , 17 . 455024495 , 9 . 3861924169 , 8 . 0688320777 , 1 . 3996953604 , - 6 . 147681583 , - 4 . 747986223 <nl> + 050 , 3 , 7 , 48 , 191 , Texas , Hall County , 3353 , 3353 , 3367 , 3377 , 14 , 10 , 13 , 49 , 5 , 39 , 8 , 10 , 5 , 32 , 1 , - 32 , 6 , 0 , 0 , 0 , 44 , 44 , 44 , 14 . 53143535 , 11 . 565836299 , 2 . 965599051 , 9 . 4899169632 , - 9 . 489916963 , 0 <nl> + 050 , 3 , 7 , 48 , 193 , Texas , Hamilton County , 8517 , 8517 , 8505 , 8472 , - 12 , - 33 , 18 , 87 , 18 , 129 , 0 , - 42 , 0 , 1 , - 12 , 8 , - 12 , 9 , 0 , 0 , 254 , 254 , 254 , 10 . 249160629 , 15 . 197031278 , - 4 . 947870649 , 0 . 117806444 , 0 . 9424515521 , 1 . 0602579961 <nl> + 050 , 3 , 7 , 48 , 195 , Texas , Hansford County , 5613 , 5613 , 5609 , 5577 , - 4 , - 32 , 20 , 80 , 5 , 45 , 15 , 35 , 2 , 18 , - 21 , - 86 , - 19 , - 68 , 0 , 1 , 60 , 60 , 60 , 14 . 303593778 , 8 . 0457715001 , 6 . 2578222778 , 3 . 2183086 , - 15 . 37636331 , - 12 . 15805471 <nl> + 050 , 3 , 7 , 48 , 197 , Texas , Hardeman County , 4139 , 4139 , 4160 , 4176 , 21 , 16 , 16 , 63 , 2 , 45 , 14 , 18 , 0 , 0 , 7 , - 2 , 7 , - 2 , 0 , 0 , 21 , 21 , 21 , 15 . 115163148 , 10 . 796545106 , 4 . 3186180422 , 0 , - 0 . 479846449 , - 0 . 479846449 <nl> + 050 , 3 , 7 , 48 , 199 , Texas , Hardin County , 54635 , 54635 , 54793 , 55246 , 158 , 453 , 175 , 723 , 120 , 485 , 55 , 238 , 3 , 18 , 100 , 199 , 103 , 217 , 0 , - 2 , 380 , 380 , 380 , 13 . 140795536 , 8 . 81505648 , 4 . 3257390562 , 0 . 3271567353 , 3 . 6168994629 , 3 . 9440561983 <nl> + 050 , 3 , 7 , 48 , 201 , Texas , Harris County , 4092459 , 4092442 , 4109362 , 4180894 , 16920 , 71532 , 17515 , 71460 , 5431 , 22304 , 12084 , 49156 , 4629 , 19558 , 191 , 2965 , 4820 , 22523 , 16 , - 147 , 44524 , 44543 , 44547 , 17 . 239515885 , 5 . 3807747312 , 11 . 858741153 , 4 . 7183102669 , 0 . 7152975734 , 5 . 4336078403 <nl> + 050 , 3 , 7 , 48 , 203 , Texas , Harrison County , 65631 , 65631 , 65746 , 66296 , 115 , 550 , 216 , 896 , 139 , 605 , 77 , 291 , 40 , 144 , 2 , 118 , 42 , 262 , - 4 , - 3 , 1363 , 1363 , 1363 , 13 . 57143939 , 9 . 1637509277 , 4 . 4076884628 , 2 . 1811241878 , 1 . 7873100983 , 3 . 9684342861 <nl> + 050 , 3 , 7 , 48 , 205 , Texas , Hartley County , 6062 , 6062 , 6064 , 5971 , 2 , - 93 , 15 , 59 , 4 , 25 , 11 , 34 , 0 , 5 , - 9 , - 132 , - 9 , - 127 , 0 , 0 , 1406 , 1406 , 1406 , 9 . 8047361861 , 4 . 1545492314 , 5 . 6501869547 , 0 . 8309098463 , - 21 . 93601994 , - 21 . 1051101 <nl> + 050 , 3 , 7 , 48 , 207 , Texas , Haskell County , 5899 , 5899 , 5893 , 5989 , - 6 , 96 , 13 , 57 , 8 , 73 , 5 , - 16 , 0 , 0 , - 10 , 111 , - 10 , 111 , - 1 , 1 , 544 , 544 , 544 , 9 . 5943443865 , 12 . 287493688 , - 2 . 693149301 , 0 , 18 . 683723279 , 18 . 683723279 <nl> + 050 , 3 , 7 , 48 , 209 , Texas , Hays County , 157107 , 157103 , 158311 , 164050 , 1208 , 5739 , 518 , 2079 , 192 , 749 , 326 , 1330 , 22 , 108 , 841 , 4246 , 863 , 4354 , 19 , 55 , 7017 , 7017 , 7017 , 12 . 898582645 , 4 . 6469641179 , 8 . 2516185271 , 0 . 6700562413 , 26 . 343137042 , 27 . 013193283 <nl> + 050 , 3 , 7 , 48 , 211 , Texas , Hemphill County , 3807 , 3807 , 3802 , 3970 , - 5 , 168 , 14 , 56 , 3 , 34 , 11 , 22 , 4 , 11 , - 21 , 134 , - 17 , 145 , 1 , 1 , 40 , 40 , 40 , 14 . 410705095 , 8 . 749356665 , 5 . 6613484303 , 2 . 8306742151 , 34 . 482758621 , 37 . 313432836 <nl> + 050 , 3 , 7 , 48 , 213 , Texas , Henderson County , 78532 , 78531 , 78702 , 78826 , 171 , 124 , 223 , 897 , 235 , 977 , - 12 , - 80 , 32 , 99 , 152 , 110 , 184 , 209 , - 1 , - 5 , 1242 , 1242 , 1242 , 11 . 388451577 , 12 . 404144025 , - 1 . 015692448 , 1 . 2569194048 , 1 . 3965771164 , 2 . 6534965213 <nl> + 050 , 3 , 7 , 48 , 215 , Texas , Hidalgo County , 774769 , 774769 , 780030 , 797810 , 5261 , 17780 , 4025 , 16884 , 921 , 3641 , 3104 , 13243 , 818 , 3452 , 1308 , 1116 , 2126 , 4568 , 31 , - 31 , 6982 , 6982 , 6982 , 21 . 401409522 , 4 . 615170106 , 16 . 786239416 , 4 . 3756020889 , 1 . 4145921006 , 5 . 7901941895 <nl> + 050 , 3 , 7 , 48 , 217 , Texas , Hill County , 35089 , 35089 , 35122 , 35392 , 33 , 270 , 110 , 454 , 107 , 374 , 3 , 80 , 16 , 64 , 17 , 128 , 33 , 192 , - 3 , - 2 , 829 , 829 , 829 , 12 . 876875514 , 10 . 60782256 , 2 . 269052954 , 1 . 8152423632 , 3 . 6304847264 , 5 . 4457270897 <nl> + 050 , 3 , 7 , 48 , 219 , Texas , Hockley County , 22935 , 22935 , 22864 , 22892 , - 71 , 28 , 80 , 319 , 43 , 212 , 37 , 107 , 3 , 17 , - 114 , - 94 , - 111 , - 77 , 3 , - 2 , 641 , 641 , 641 , 13 . 943526532 , 9 . 2665442783 , 4 . 6769822537 , 0 . 7430719468 , - 4 . 108750765 , - 3 . 365678818 <nl> + 050 , 3 , 7 , 48 , 221 , Texas , Hood County , 51182 , 51182 , 51353 , 51670 , 171 , 317 , 140 , 560 , 136 , 539 , 4 , 21 , 13 , 51 , 158 , 251 , 171 , 302 , - 4 , - 6 , 701 , 701 , 701 , 10 . 871358823 , 10 . 463682867 , 0 . 4076759559 , 0 . 9900701785 , 4 . 8726983295 , 5 . 862768508 <nl> + 050 , 3 , 7 , 48 , 223 , Texas , Hopkins County , 35161 , 35161 , 35250 , 35371 , 89 , 121 , 113 , 468 , 89 , 354 , 24 , 114 , 13 , 58 , 53 , - 50 , 66 , 8 , - 1 , - 1 , 431 , 431 , 431 , 13 . 253848006 , 10 . 025346568 , 3 . 2285014372 , 1 . 6425709067 , - 1 . 416009402 , 0 . 2265615044 <nl> + 050 , 3 , 7 , 48 , 225 , Texas , Houston County , 23732 , 23732 , 23720 , 23484 , - 12 , - 236 , 62 , 258 , 69 , 312 , - 7 , - 54 , 5 , 21 , - 8 , - 202 , - 3 , - 181 , - 2 , - 1 , 2908 , 2908 , 2908 , 10 . 93127701 , 13 . 21921871 , - 2 . 2879417 , 0 . 8897551055 , - 8 . 558596729 , - 7 . 668841624 <nl> + 050 , 3 , 7 , 48 , 227 , Texas , Howard County , 35012 , 35012 , 35012 , 35122 , 0 , 110 , 119 , 470 , 79 , 336 , 40 , 134 , 2 , 5 , - 42 , - 28 , - 40 , - 23 , 0 , - 1 , 6080 , 6083 , 6089 , 13 . 402914421 , 9 . 581657969 , 3 . 8212564519 , 0 . 142584196 , - 0 . 798471497 , - 0 . 655887301 <nl> + 050 , 3 , 7 , 48 , 229 , Texas , Hudspeth County , 3476 , 3476 , 3482 , 3423 , 6 , - 59 , 12 , 48 , 0 , 4 , 12 , 44 , 0 , 9 , - 5 , - 114 , - 5 , - 105 , - 1 , 2 , 86 , 86 , 86 , 13 . 902968863 , 1 . 1585807386 , 12 . 744388125 , 2 . 6068066618 , - 33 . 01955105 , - 30 . 41274439 <nl> + 050 , 3 , 7 , 48 , 231 , Texas , Hunt County , 86129 , 86129 , 86359 , 86531 , 230 , 172 , 265 , 1084 , 201 , 844 , 64 , 240 , 28 , 103 , 138 , - 168 , 166 , - 65 , 0 , - 3 , 1869 , 1869 , 1869 , 12 . 539765169 , 9 . 763433397 , 2 . 7763317716 , 1 . 191509052 , - 1 . 94343224 , - 0 . 751923188 <nl> + 050 , 3 , 7 , 48 , 233 , Texas , Hutchinson County , 22150 , 22150 , 22133 , 22132 , - 17 , - 1 , 88 , 330 , 66 , 229 , 22 , 101 , 6 , 20 , - 46 , - 122 , - 40 , - 102 , 1 , 0 , 161 , 161 , 161 , 14 . 910199932 , 10 . 346775104 , 4 . 5634248277 , 0 . 9036484807 , - 5 . 512255733 , - 4 . 608607252 <nl> + 050 , 3 , 7 , 48 , 235 , Texas , Irion County , 1599 , 1599 , 1609 , 1620 , 10 , 11 , 4 , 10 , 1 , 14 , 3 , - 4 , 0 , 0 , 7 , 14 , 7 , 14 , 0 , 1 , 0 , 0 , 0 , 6 . 1938680706 , 8 . 6714152989 , - 2 . 477547228 , 0 , 8 . 6714152989 , 8 . 6714152989 <nl> + 050 , 3 , 7 , 48 , 237 , Texas , Jack County , 9044 , 9044 , 9032 , 9035 , - 12 , 3 , 22 , 93 , 8 , 76 , 14 , 17 , 3 , 18 , - 29 , - 31 , - 26 , - 13 , 0 , - 1 , 1140 , 1140 , 1140 , 10 . 295013007 , 8 . 4131289091 , 1 . 8818840981 , 1 . 9925831627 , - 3 . 431671002 , - 1 . 43908784 <nl> + 050 , 3 , 7 , 48 , 239 , Texas , Jackson County , 14075 , 14075 , 14074 , 14032 , - 1 , - 42 , 46 , 194 , 9 , 122 , 37 , 72 , 0 , 1 , - 37 , - 114 , - 37 , - 113 , - 1 , - 1 , 217 , 217 , 217 , 13 . 80488152 , 8 . 6814203373 , 5 . 1234611827 , 0 . 0711591831 , - 8 . 112146873 , - 8 . 040987689 <nl> + 050 , 3 , 7 , 48 , 241 , Texas , Jasper County , 35710 , 35710 , 35823 , 36296 , 113 , 473 , 116 , 492 , 103 , 388 , 13 , 104 , 1 , 5 , 97 , 360 , 98 , 365 , 2 , 4 , 941 , 941 , 941 , 13 . 644115975 , 10 . 759993899 , 2 . 884122076 , 0 . 1386597152 , 9 . 9834994939 , 10 . 122159209 <nl> + 050 , 3 , 7 , 48 , 243 , Texas , Jeff Davis County , 2342 , 2342 , 2346 , 2288 , 4 , - 58 , 4 , 16 , 2 , 18 , 2 , - 2 , 1 , 2 , 2 , - 59 , 3 , - 57 , - 1 , 1 , 88 , 88 , 88 , 6 . 9054812257 , 7 . 7686663789 , - 0 . 863185153 , 0 . 8631851532 , - 25 . 46396202 , - 24 . 60077687 <nl> + 050 , 3 , 7 , 48 , 245 , Texas , Jefferson County , 252273 , 252273 , 252377 , 252802 , 104 , 425 , 855 , 3554 , 605 , 2470 , 250 , 1084 , 132 , 468 , - 273 , - 1120 , - 141 , - 652 , - 5 , - 7 , 15983 , 15983 , 15983 , 14 . 070260244 , 9 . 7787121001 , 4 . 2915481443 , 1 . 8528086084 , - 4 . 434071883 , - 2 . 581263275 <nl> + 050 , 3 , 7 , 48 , 247 , Texas , Jim Hogg County , 5300 , 5300 , 5300 , 5265 , 0 , - 35 , 20 , 86 , 7 , 63 , 13 , 23 , 3 , 8 , - 15 , - 66 , - 12 , - 58 , - 1 , 0 , 16 , 16 , 16 , 16 . 280170374 , 11 . 92617132 , 4 . 3539990535 , 1 . 5144344534 , - 12 . 49408424 , - 10 . 97964979 <nl> + 050 , 3 , 7 , 48 , 249 , Texas , Jim Wells County , 40838 , 40839 , 40926 , 41339 , 87 , 413 , 169 , 697 , 104 , 363 , 65 , 334 , 3 , 20 , 21 , 60 , 24 , 80 , - 2 , - 1 , 357 , 357 , 357 , 16 . 945237951 , 8 . 8251382727 , 8 . 1200996779 , 0 . 4862335136 , 1 . 4587005409 , 1 . 9449340546 <nl> + 050 , 3 , 7 , 48 , 251 , Texas , Johnson County , 150934 , 150934 , 151330 , 152734 , 396 , 1404 , 538 , 2151 , 269 , 1124 , 269 , 1027 , 53 , 209 , 77 , 179 , 130 , 388 , - 3 , - 11 , 2644 , 2644 , 2644 , 14 . 148337192 , 7 . 3931803831 , 6 . 7551568091 , 1 . 3747105872 , 1 . 1773837087 , 2 . 5520942959 <nl> + 050 , 3 , 7 , 48 , 253 , Texas , Jones County , 20202 , 20202 , 20229 , 20146 , 27 , - 83 , 41 , 172 , 31 , 180 , 10 , - 8 , 2 , 7 , 15 , - 82 , 17 , - 75 , 0 , 0 , 5007 , 5007 , 5007 , 8 . 520123839 , 8 . 9164086687 , - 0 . 39628483 , 0 . 346749226 , - 4 . 061919505 , - 3 . 715170279 <nl> + 050 , 3 , 7 , 48 , 255 , Texas , Karnes County , 14824 , 14824 , 14849 , 14946 , 25 , 97 , 37 , 162 , 21 , 161 , 16 , 1 , 1 , 5 , 9 , 91 , 10 , 96 , - 1 , 0 , 3336 , 3336 , 3336 , 10 . 87430777 , 10 . 807182413 , 0 . 0671253566 , 0 . 335626783 , 6 . 1084074509 , 6 . 4440342339 <nl> + 050 , 3 , 7 , 48 , 257 , Texas , Kaufman County , 103350 , 103351 , 103940 , 105358 , 589 , 1418 , 363 , 1488 , 191 , 813 , 172 , 675 , 35 , 121 , 371 , 617 , 406 , 738 , 11 , 5 , 1336 , 1336 , 1336 , 14 . 218960525 , 7 . 7688272224 , 6 . 4501333028 , 1 . 156246118 , 5 . 8958996264 , 7 . 0521457443 <nl> + 050 , 3 , 7 , 48 , 259 , Texas , Kendall County , 33410 , 33410 , 33691 , 34781 , 281 , 1090 , 88 , 357 , 71 , 308 , 17 , 49 , 10 , 33 , 252 , 1001 , 262 , 1034 , 2 , 7 , 519 , 519 , 519 , 10 . 427620049 , 8 . 9963780816 , 1 . 4312419675 , 0 . 9638976516 , 29 . 238228765 , 30 . 202126417 <nl> + 050 , 3 , 7 , 48 , 261 , Texas , Kenedy County , 416 , 416 , 419 , 437 , 3 , 18 , 1 , 7 , 0 , 0 , 1 , 7 , 0 , 0 , 2 , 12 , 2 , 12 , 0 , - 1 , 0 , 0 , 0 , 16 . 355140187 , 0 , 16 . 355140187 , 0 , 28 . 037383178 , 28 . 037383178 <nl> + 050 , 3 , 7 , 48 , 263 , Texas , Kent County , 808 , 808 , 813 , 825 , 5 , 12 , 2 , 6 , 2 , 14 , 0 , - 8 , 0 , 0 , 5 , 20 , 5 , 20 , 0 , 0 , 52 , 52 , 52 , 7 . 326007326 , 17 . 094017094 , - 9 . 768009768 , 0 , 24 . 42002442 , 24 . 42002442 <nl> + 050 , 3 , 7 , 48 , 265 , Texas , Kerr County , 49625 , 49621 , 49666 , 49783 , 45 , 117 , 146 , 573 , 154 , 684 , - 8 , - 111 , 13 , 47 , 45 , 185 , 58 , 232 , - 5 , - 4 , 1910 , 1910 , 1910 , 11 . 523494454 , 13 . 755794427 , - 2 . 232299973 , 0 . 9452080966 , 3 . 7204999548 , 4 . 6657080514 <nl> + 050 , 3 , 7 , 48 , 267 , Texas , Kimble County , 4607 , 4607 , 4595 , 4632 , - 12 , 37 , 12 , 52 , 4 , 53 , 8 , - 1 , 0 , 9 , - 19 , 29 , - 19 , 38 , - 1 , 0 , 43 , 43 , 43 , 11 . 271269102 , 11 . 488024277 , - 0 . 216755175 , 1 . 9507965753 , 6 . 2859000759 , 8 . 2366966511 <nl> + 050 , 3 , 7 , 48 , 269 , Texas , King County , 286 , 286 , 287 , 255 , 1 , - 32 , 0 , 2 , 0 , 0 , 0 , 2 , 0 , 1 , 1 , - 35 , 1 , - 34 , 0 , 0 , 0 , 0 , 0 , 7 . 3800738007 , 0 , 7 . 3800738007 , 3 . 6900369004 , - 129 . 1512915 , - 125 . 4612546 <nl> + 050 , 3 , 7 , 48 , 271 , Texas , Kinney County , 3598 , 3598 , 3601 , 3630 , 3 , 29 , 10 , 46 , 4 , 35 , 6 , 11 , 0 , 3 , - 2 , 14 , - 2 , 17 , - 1 , 1 , 332 , 332 , 332 , 12 . 722998202 , 9 . 6805421104 , 3 . 0424560918 , 0 . 8297607523 , 3 . 8722168441 , 4 . 7019775965 <nl> + 050 , 3 , 7 , 48 , 273 , Texas , Kleberg County , 32061 , 32061 , 32119 , 32196 , 58 , 77 , 135 , 539 , 61 , 254 , 74 , 285 , 28 , 85 , - 45 , - 296 , - 17 , - 211 , 1 , 3 , 1974 , 1974 , 1974 , 16 . 761253207 , 7 . 8986239602 , 8 . 8626292467 , 2 . 6432403016 , - 9 . 204695639 , - 6 . 561455337 <nl> + 050 , 3 , 7 , 48 , 275 , Texas , Knox County , 3719 , 3719 , 3737 , 3758 , 18 , 21 , 12 , 57 , 5 , 51 , 7 , 6 , 0 , 7 , 12 , 9 , 12 , 16 , - 1 , - 1 , 104 , 104 , 104 , 15 . 210140093 , 13 . 609072715 , 1 . 6010673783 , 1 . 8679119413 , 2 . 4016010674 , 4 . 2695130087 <nl> + 050 , 3 , 7 , 48 , 277 , Texas , Lamar County , 49793 , 49789 , 49875 , 50074 , 86 , 199 , 156 , 633 , 149 , 622 , 7 , 11 , 26 , 95 , 56 , 98 , 82 , 193 , - 3 , - 5 , 713 , 713 , 713 , 12 . 666459895 , 12 . 446347637 , 0 . 2201122573 , 1 . 9009694944 , 1 . 9610001101 , 3 . 8619696045 <nl> + 050 , 3 , 7 , 48 , 279 , Texas , Lamb County , 13977 , 13977 , 14049 , 14167 , 72 , 118 , 64 , 246 , 19 , 150 , 45 , 96 , 10 , 52 , 18 , - 29 , 28 , 23 , - 1 , - 1 , 184 , 184 , 184 , 17 . 436915225 , 10 . 632265381 , 6 . 8046498441 , 3 . 6858519989 , - 2 . 055571307 , 1 . 6302806918 <nl> + 050 , 3 , 7 , 48 , 281 , Texas , Lampasas County , 19677 , 19663 , 19725 , 19891 , 62 , 166 , 52 , 217 , 31 , 175 , 21 , 42 , 9 , 24 , 32 , 100 , 41 , 124 , 0 , 0 , 222 , 222 , 222 , 10 . 955169628 , 8 . 8348142165 , 2 . 120355412 , 1 . 211631664 , 5 . 0484652666 , 6 . 2600969305 <nl> + 050 , 3 , 7 , 48 , 283 , Texas , La Salle County , 6886 , 6886 , 6899 , 7001 , 13 , 102 , 23 , 101 , 3 , 33 , 20 , 68 , 2 , 11 , - 8 , 23 , - 6 , 34 , - 1 , 0 , 1583 , 1583 , 1583 , 14 . 532374101 , 4 . 7482014388 , 9 . 7841726619 , 1 . 5827338129 , 3 . 309352518 , 4 . 8920863309 <nl> + 050 , 3 , 7 , 48 , 285 , Texas , Lavaca County , 19263 , 19263 , 19267 , 19347 , 4 , 80 , 54 , 226 , 57 , 246 , - 3 , - 20 , 9 , 41 , - 1 , 60 , 8 , 101 , - 1 , - 1 , 409 , 409 , 409 , 11 . 705599006 , 12 . 741492723 , - 1 . 035893717 , 2 . 1235821205 , 3 . 1076811519 , 5 . 2312632724 <nl> + 050 , 3 , 7 , 48 , 287 , Texas , Lee County , 16612 , 16612 , 16625 , 16666 , 13 , 41 , 47 , 194 , 24 , 136 , 23 , 58 , 4 , 16 , - 13 , - 32 , - 9 , - 16 , - 1 , - 1 , 525 , 525 , 525 , 11 . 654801598 , 8 . 170376378 , 3 . 48442522 , 0 . 9612207504 , - 1 . 922441501 , - 0 . 96122075 <nl> + 050 , 3 , 7 , 48 , 289 , Texas , Leon County , 16801 , 16801 , 16786 , 16916 , - 15 , 130 , 52 , 215 , 63 , 213 , - 11 , 2 , 5 , 20 , - 8 , 108 , - 3 , 128 , - 1 , 0 , 104 , 104 , 104 , 12 . 758886713 , 12 . 640199395 , 0 . 1186873183 , 1 . 1868731826 , 6 . 409115186 , 7 . 5959883686 <nl> + 050 , 3 , 7 , 48 , 291 , Texas , Liberty County , 75643 , 75643 , 75907 , 76206 , 264 , 299 , 276 , 1126 , 159 , 710 , 117 , 416 , 40 , 136 , 105 , - 252 , 145 , - 116 , 2 , - 1 , 5144 , 5144 , 5144 , 14 . 804783286 , 9 . 3351653047 , 5 . 4696179814 , 1 . 7881443401 , - 3 . 313326277 , - 1 . 525181937 <nl> + 050 , 3 , 7 , 48 , 293 , Texas , Limestone County , 23384 , 23384 , 23446 , 23634 , 62 , 188 , 85 , 351 , 65 , 260 , 20 , 91 , 6 , 18 , 37 , 79 , 43 , 97 , - 1 , 0 , 1592 , 1592 , 1592 , 14 . 910790144 , 11 . 045029737 , 3 . 8657604078 , 0 . 7646559048 , 3 . 3559898046 , 4 . 1206457094 <nl> + 050 , 3 , 7 , 48 , 295 , Texas , Lipscomb County , 3302 , 3302 , 3285 , 3327 , - 17 , 42 , 12 , 50 , 3 , 39 , 9 , 11 , 1 , 14 , - 28 , 18 , - 27 , 32 , 1 , - 1 , 37 , 37 , 37 , 15 . 124016939 , 11 . 796733212 , 3 . 3272837266 , 4 . 2347247429 , 5 . 444646098 , 9 . 6793708409 <nl> + 050 , 3 , 7 , 48 , 297 , Texas , Live Oak County , 11531 , 11530 , 11547 , 11447 , 17 , - 100 , 21 , 92 , 14 , 111 , 7 , - 19 , 3 , 9 , 9 , - 89 , 12 , - 80 , - 2 , - 1 , 1164 , 1164 , 1164 , 8 . 0020875011 , 9 . 6546925285 , - 1 . 652605027 , 0 . 7828129077 , - 7 . 741149865 , - 6 . 958336957 <nl> + 050 , 3 , 7 , 48 , 299 , Texas , Llano County , 19301 , 19301 , 19341 , 19181 , 40 , - 160 , 34 , 153 , 68 , 278 , - 34 , - 125 , 3 , 5 , 74 , - 39 , 77 , - 34 , - 3 , - 1 , 184 , 184 , 184 , 7 . 9435127979 , 14 . 433310835 , - 6 . 489798037 , 0 . 2595919215 , - 2 . 024816988 , - 1 . 765225066 <nl> + 050 , 3 , 7 , 48 , 301 , Texas , Loving County , 82 , 82 , 83 , 94 , 1 , 11 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 11 , 1 , 11 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 124 . 29378531 , 124 . 29378531 <nl> + 050 , 3 , 7 , 48 , 303 , Texas , Lubbock County , 278831 , 278831 , 280221 , 283910 , 1390 , 3689 , 1068 , 4232 , 566 , 2258 , 502 , 1974 , 90 , 296 , 782 , 1417 , 872 , 1713 , 16 , 2 , 11037 , 11037 , 11037 , 15 . 003607318 , 8 . 0052328271 , 6 . 998374491 , 1 . 0494016461 , 5 . 023655853 , 6 . 0730574991 <nl> + 050 , 3 , 7 , 48 , 305 , Texas , Lynn County , 5915 , 5915 , 5900 , 5888 , - 15 , - 12 , 16 , 63 , 3 , 46 , 13 , 17 , 1 , 17 , - 29 , - 46 , - 28 , - 29 , 0 , 0 , 42 , 42 , 42 , 10 . 688836105 , 7 . 8045469969 , 2 . 8842891076 , 2 . 8842891076 , - 7 . 804546997 , - 4 . 920257889 <nl> + 050 , 3 , 7 , 48 , 307 , Texas , McCulloch County , 8283 , 8283 , 8245 , 8290 , - 38 , 45 , 27 , 122 , 24 , 118 , 3 , 4 , 3 , 14 , - 43 , 26 , - 40 , 40 , - 1 , 1 , 109 , 109 , 109 , 14 . 756576958 , 14 . 272754763 , 0 . 4838221953 , 1 . 6933776837 , 3 . 1448442697 , 4 . 8382219534 <nl> + 050 , 3 , 7 , 48 , 309 , Texas , McLennan County , 234906 , 234906 , 235959 , 238564 , 1053 , 2605 , 835 , 3362 , 475 , 1930 , 360 , 1432 , 114 , 363 , 567 , 811 , 681 , 1174 , 12 , - 1 , 9085 , 9085 , 9085 , 14 . 170019156 , 8 . 1344845245 , 6 . 0355346316 , 1 . 529957452 , 3 . 4181694038 , 4 . 9481268558 <nl> + 050 , 3 , 7 , 48 , 311 , Texas , McMullen County , 707 , 707 , 711 , 690 , 4 , - 21 , 0 , 4 , 0 , 9 , 0 , - 5 , 0 , 0 , 4 , - 16 , 4 , - 16 , 0 , 0 , 0 , 0 , 0 , 5 . 710206995 , 12 . 847965739 , - 7 . 137758744 , 0 , - 22 . 84082798 , - 22 . 84082798 <nl> + 050 , 3 , 7 , 48 , 313 , Texas , Madison County , 13664 , 13664 , 13744 , 13747 , 80 , 3 , 41 , 163 , 22 , 130 , 19 , 33 , 5 , 19 , 55 , - 50 , 60 , - 31 , 1 , 1 , 2554 , 2554 , 2554 , 11 . 858426394 , 9 . 4576406824 , 2 . 4007857117 , 1 . 3822705613 , - 3 . 637554109 , - 2 . 255283547 <nl> + 050 , 3 , 7 , 48 , 315 , Texas , Marion County , 10546 , 10537 , 10517 , 10507 , - 20 , - 10 , 20 , 92 , 28 , 149 , - 8 , - 57 , 0 , - 1 , - 11 , 47 , - 11 , 46 , - 1 , 1 , 167 , 167 , 167 , 8 . 7519025875 , 14 . 174277017 , - 5 . 422374429 , - 0 . 095129376 , 4 . 4710806697 , 4 . 3759512938 <nl> + 050 , 3 , 7 , 48 , 317 , Texas , Martin County , 4799 , 4799 , 4822 , 4934 , 23 , 112 , 21 , 91 , 4 , 39 , 17 , 52 , 1 , 11 , 4 , 48 , 5 , 59 , 1 , 1 , 48 , 48 , 48 , 18 . 655186552 , 7 . 9950799508 , 10 . 660106601 , 2 . 2550225502 , 9 . 840098401 , 12 . 095120951 <nl> + 050 , 3 , 7 , 48 , 319 , Texas , Mason County , 4012 , 4012 , 4013 , 3984 , 1 , - 29 , 6 , 26 , 3 , 46 , 3 , - 20 , 0 , 0 , - 1 , - 8 , - 1 , - 8 , - 1 , - 1 , 3 , 3 , 3 , 6 . 5024384144 , 11 . 504314118 , - 5 . 001875703 , 0 , - 2 . 000750281 , - 2 . 000750281 <nl> + 050 , 3 , 7 , 48 , 321 , Texas , Matagorda County , 36702 , 36702 , 36763 , 36809 , 61 , 46 , 128 , 515 , 75 , 363 , 53 , 152 , 28 , 95 , - 18 , - 201 , 10 , - 106 , - 2 , 0 , 400 , 400 , 400 , 13 . 999891263 , 9 . 8678845213 , 4 . 1320067417 , 2 . 5825042136 , - 5 . 464035231 , - 2 . 881531017 <nl> + 050 , 3 , 7 , 48 , 323 , Texas , Maverick County , 54258 , 54258 , 54551 , 55405 , 293 , 854 , 252 , 1058 , 86 , 328 , 166 , 730 , 55 , 108 , 71 , 19 , 126 , 127 , 1 , - 3 , 969 , 969 , 969 , 19 . 244061261 , 5 . 9660227727 , 13 . 278038488 , 1 . 9644221325 , 0 . 3455927826 , 2 . 3100149151 <nl> + 050 , 3 , 7 , 48 , 325 , Texas , Medina County , 46006 , 46006 , 46116 , 46367 , 110 , 251 , 128 , 531 , 91 , 378 , 37 , 153 , 8 , 22 , 65 , 77 , 73 , 99 , 0 , - 1 , 2309 , 2309 , 2308 , 11 . 483191505 , 8 . 174475309 , 3 . 3087161965 , 0 . 4757631132 , 1 . 6651708963 , 2 . 1409340095 <nl> + 050 , 3 , 7 , 48 , 327 , Texas , Menard County , 2242 , 2242 , 2244 , 2264 , 2 , 20 , 4 , 16 , 2 , 21 , 2 , - 5 , 0 , 5 , 1 , 19 , 1 , 24 , - 1 , 1 , 38 , 38 , 38 , 7 . 0984915705 , 9 . 3167701863 , - 2 . 218278616 , 2 . 2182786158 , 8 . 42945874 , 10 . 647737356 <nl> + 050 , 3 , 7 , 48 , 329 , Texas , Midland County , 136872 , 136872 , 137006 , 140308 , 134 , 3302 , 558 , 2216 , 227 , 990 , 331 , 1226 , 31 , 77 , - 231 , 1972 , - 200 , 2049 , 3 , 27 , 1678 , 1678 , 1678 , 15 . 981883352 , 7 . 1399208118 , 8 . 8419625407 , 0 . 5553271743 , 14 . 222145294 , 14 . 777472468 <nl> + 050 , 3 , 7 , 48 , 331 , Texas , Milam County , 24757 , 24757 , 24729 , 24699 , - 28 , - 30 , 88 , 341 , 61 , 262 , 27 , 79 , 4 , 15 , - 60 , - 123 , - 56 , - 108 , 1 , - 1 , 405 , 405 , 405 , 13 . 797847374 , 10 . 601278627 , 3 . 1965687465 , 0 . 6069434329 , - 4 . 97693615 , - 4 . 369992717 <nl> + 050 , 3 , 7 , 48 , 333 , Texas , Mills County , 4936 , 4936 , 4947 , 4848 , 11 , - 99 , 8 , 37 , 7 , 76 , 1 , - 39 , 1 , 3 , 9 , - 63 , 10 , - 60 , 0 , 0 , 151 , 151 , 151 , 7 . 5548749362 , 15 . 518121491 , - 7 . 963246554 , 0 . 6125574273 , - 12 . 86370597 , - 12 . 25114855 <nl> + 050 , 3 , 7 , 48 , 335 , Texas , Mitchell County , 9403 , 9403 , 9411 , 9426 , 8 , 15 , 26 , 104 , 10 , 85 , 16 , 19 , 0 , 0 , - 7 , - 4 , - 7 , - 4 , - 1 , 0 , 2406 , 2406 , 2406 , 11 . 042097999 , 9 . 0247916335 , 2 . 0173063651 , 0 , - 0 . 424696077 , - 0 . 424696077 <nl> + 050 , 3 , 7 , 48 , 337 , Texas , Montague County , 19719 , 19719 , 19684 , 19710 , - 35 , 26 , 59 , 244 , 86 , 280 , - 27 , - 36 , 3 , 14 , - 10 , 50 , - 7 , 64 , - 1 , - 2 , 266 , 266 , 266 , 12 . 38767325 , 14 . 215362746 , - 1 . 827689496 , 0 . 7107681373 , 2 . 5384576331 , 3 . 2492257704 <nl> + 050 , 3 , 7 , 48 , 339 , Texas , Montgomery County , 455746 , 455761 , 459305 , 471734 , 3544 , 12429 , 1555 , 6385 , 708 , 2901 , 847 , 3484 , 357 , 1199 , 2289 , 7673 , 2646 , 8872 , 51 , 73 , 3224 , 3224 , 3224 , 13 . 715859379 , 6 . 2317475423 , 7 . 4841118363 , 2 . 5756171331 , 16 . 482660769 , 19 . 058277902 <nl> + 050 , 3 , 7 , 48 , 341 , Texas , Moore County , 21904 , 21904 , 21980 , 21954 , 76 , - 26 , 105 , 409 , 27 , 146 , 78 , 263 , 15 , 78 , - 16 , - 372 , - 1 , - 294 , - 1 , 5 , 154 , 154 , 154 , 18 . 618837347 , 6 . 6463331361 , 11 . 972504211 , 3 . 5507807165 , - 16 . 93449265 , - 13 . 38371193 <nl> + 050 , 3 , 7 , 48 , 343 , Texas , Morris County , 12934 , 12934 , 12941 , 12848 , 7 , - 93 , 43 , 173 , 30 , 154 , 13 , 19 , 0 , 1 , - 5 , - 114 , - 5 , - 113 , - 1 , 1 , 145 , 145 , 145 , 13 . 416572957 , 11 . 943076505 , 1 . 473496452 , 0 . 0775524448 , - 8 . 840978712 , - 8 . 763426267 <nl> + 050 , 3 , 7 , 48 , 345 , Texas , Motley County , 1210 , 1210 , 1212 , 1230 , 2 , 18 , 2 , 11 , 2 , 11 , 0 , 0 , 0 , 1 , 2 , 16 , 2 , 17 , 0 , 1 , 0 , 0 , 0 , 9 . 009009009 , 9 . 009009009 , 0 , 0 . 819000819 , 13 . 104013104 , 13 . 923013923 <nl> + 050 , 3 , 7 , 48 , 347 , Texas , Nacogdoches County , 64524 , 64524 , 64651 , 65466 , 127 , 815 , 227 , 938 , 125 , 553 , 102 , 385 , 31 , 122 , - 4 , 307 , 27 , 429 , - 2 , 1 , 5144 , 5144 , 5144 , 14 . 417793217 , 8 . 5000422696 , 5 . 9177509472 , 1 . 8752353651 , 4 . 7188299761 , 6 . 5940653412 <nl> + 050 , 3 , 7 , 48 , 349 , Texas , Navarro County , 47735 , 47735 , 47788 , 48054 , 53 , 266 , 170 , 698 , 122 , 513 , 48 , 185 , 12 , 60 , - 6 , 24 , 6 , 84 , - 1 , - 3 , 736 , 736 , 736 , 14 . 565639281 , 10 . 705118841 , 3 . 8605204399 , 1 . 2520606832 , 0 . 5008242733 , 1 . 7528849565 <nl> + 050 , 3 , 7 , 48 , 351 , Texas , Newton County , 14445 , 14445 , 14426 , 14454 , - 19 , 28 , 34 , 143 , 37 , 174 , - 3 , - 31 , 0 , 0 , - 15 , 59 , - 15 , 59 , - 1 , 0 , 724 , 724 , 724 , 9 . 9030470914 , 12 . 049861496 , - 2 . 146814404 , 0 , 4 . 0858725762 , 4 . 0858725762 <nl> + 050 , 3 , 7 , 48 , 353 , Texas , Nolan County , 15216 , 15216 , 15250 , 15269 , 34 , 19 , 53 , 215 , 33 , 185 , 20 , 30 , 3 , 12 , 11 , - 21 , 14 , - 9 , 0 , - 2 , 410 , 410 , 410 , 14 . 089583538 , 12 . 123595137 , 1 . 9659884007 , 0 . 7863953603 , - 1 . 37619188 , - 0 . 58979652 <nl> + 050 , 3 , 7 , 48 , 355 , Texas , Nueces County , 340223 , 340223 , 340373 , 343281 , 150 , 2908 , 1171 , 4741 , 634 , 2597 , 537 , 2144 , 144 , 298 , - 535 , 479 , - 391 , 777 , 4 , - 13 , 5792 , 5792 , 5792 , 13 . 869589003 , 7 . 597410386 , 6 . 2721786167 , 0 . 8717860204 , 1 . 4012936368 , 2 . 2730796573 <nl> + 050 , 3 , 7 , 48 , 357 , Texas , Ochiltree County , 10223 , 10223 , 10205 , 10530 , - 18 , 325 , 46 , 198 , 12 , 85 , 34 , 113 , 11 , 45 , - 64 , 166 , - 53 , 211 , 1 , 1 , 54 , 54 , 54 , 19 . 098143236 , 8 . 1986978539 , 10 . 899445382 , 4 . 3404870991 , 16 . 011574632 , 20 . 352061731 <nl> + 050 , 3 , 7 , 48 , 359 , Texas , Oldham County , 2052 , 2052 , 2050 , 2074 , - 2 , 24 , 4 , 15 , 1 , 6 , 3 , 9 , 0 , 1 , - 5 , 13 , - 5 , 14 , 0 , 1 , 282 , 282 , 282 , 7 . 2744907856 , 2 . 9097963143 , 4 . 3646944714 , 0 . 4849660524 , 6 . 3045586809 , 6 . 7895247333 <nl> + 050 , 3 , 7 , 48 , 361 , Texas , Orange County , 81837 , 81837 , 81978 , 82487 , 141 , 509 , 263 , 1067 , 213 , 850 , 50 , 217 , 8 , 32 , 83 , 260 , 91 , 292 , 0 , 0 , 639 , 639 , 639 , 12 . 975405101 , 10 . 33654577 , 2 . 6388593318 , 0 . 3891405466 , 3 . 1617669413 , 3 . 5509074879 <nl> + 050 , 3 , 7 , 48 , 363 , Texas , Palo Pinto County , 28111 , 28111 , 28105 , 28115 , - 6 , 10 , 94 , 384 , 85 , 326 , 9 , 58 , 13 , 53 , - 28 , - 99 , - 15 , - 46 , 0 , - 2 , 263 , 263 , 263 , 13 . 660618997 , 11 . 597296336 , 2 . 063322661 , 1 . 8854500178 , - 3 . 521878335 , - 1 . 636428317 <nl> + 050 , 3 , 7 , 48 , 365 , Texas , Panola County , 23796 , 23796 , 23826 , 24058 , 30 , 232 , 70 , 286 , 65 , 251 , 5 , 35 , 7 , 28 , 18 , 168 , 25 , 196 , 0 , 1 , 358 , 358 , 358 , 11 . 945535043 , 10 . 483668866 , 1 . 4618661766 , 1 . 1694929413 , 7 . 0169576476 , 8 . 1864505889 <nl> + 050 , 3 , 7 , 48 , 367 , Texas , Parker County , 116927 , 116927 , 117321 , 118376 , 394 , 1055 , 330 , 1340 , 208 , 876 , 122 , 464 , 20 , 69 , 251 , 525 , 271 , 594 , 1 , - 3 , 3121 , 3121 , 3121 , 11 . 370530809 , 7 . 4332723794 , 3 . 9372584293 , 0 . 5854974819 , 4 . 4548721452 , 5 . 0403696271 <nl> + 050 , 3 , 7 , 48 , 369 , Texas , Parmer County , 10269 , 10269 , 10302 , 10332 , 33 , 30 , 34 , 142 , 5 , 45 , 29 , 97 , 9 , 40 , - 5 , - 107 , 4 , - 67 , 0 , 0 , 73 , 73 , 73 , 13 . 763690995 , 4 . 3617330619 , 9 . 4019579335 , 3 . 8770960551 , - 10 . 37123195 , - 6 . 494135892 <nl> + 050 , 3 , 7 , 48 , 371 , Texas , Pecos County , 15507 , 15507 , 15549 , 15716 , 42 , 167 , 58 , 246 , 11 , 91 , 47 , 155 , 2 , 13 , - 6 , - 1 , - 4 , 12 , - 1 , 0 , 2025 , 2025 , 2025 , 15 . 736446506 , 5 . 8212058212 , 9 . 9152406845 , 0 . 8316008316 , - 0 . 063969295 , 0 . 7676315369 <nl> + 050 , 3 , 7 , 48 , 373 , Texas , Polk County , 45413 , 45413 , 45481 , 45725 , 68 , 244 , 129 , 536 , 146 , 627 , - 17 , - 91 , 13 , 40 , 73 , 295 , 86 , 335 , - 1 , 0 , 4241 , 4241 , 4241 , 11 . 753612701 , 13 . 749095454 , - 1 . 995482753 , 0 . 8771352762 , 6 . 4688726619 , 7 . 3460079381 <nl> + 050 , 3 , 7 , 48 , 375 , Texas , Potter County , 121073 , 121073 , 121448 , 122285 , 375 , 837 , 559 , 2248 , 236 , 1112 , 323 , 1136 , 90 , 331 , - 35 , - 634 , 55 , - 303 , - 3 , 4 , 6919 , 6919 , 6919 , 18 . 446414724 , 9 . 1247389562 , 9 . 3216757682 , 2 . 7160868655 , - 5 . 202414117 , - 2 . 486327252 <nl> + 050 , 3 , 7 , 48 , 377 , Texas , Presidio County , 7818 , 7818 , 7885 , 7761 , 67 , - 124 , 33 , 140 , 4 , 49 , 29 , 91 , 8 , 28 , 29 , - 245 , 37 , - 217 , 1 , 2 , 0 , 0 , 0 , 17 . 895947846 , 6 . 2635817461 , 11 . 6323661 , 3 . 5791895692 , - 31 . 31790873 , - 27 . 73871916 <nl> + 050 , 3 , 7 , 48 , 379 , Texas , Rains County , 10914 , 10914 , 10938 , 11059 , 24 , 121 , 23 , 104 , 21 , 111 , 2 , - 7 , 0 , 0 , 23 , 129 , 23 , 129 , - 1 , - 1 , 66 , 66 , 66 , 9 . 4558348866 , 10 . 092285312 , - 0 . 636450425 , 0 , 11 . 728872119 , 11 . 728872119 <nl> + 050 , 3 , 7 , 48 , 381 , Texas , Randall County , 120725 , 120725 , 121233 , 123351 , 508 , 2118 , 393 , 1566 , 215 , 913 , 178 , 653 , 26 , 97 , 297 , 1351 , 323 , 1448 , 7 , 17 , 2000 , 2000 , 2000 , 12 . 805416544 , 7 . 4657377425 , 5 . 3396788016 , 0 . 7931835279 , 11 . 047329343 , 11 . 840512871 <nl> + 050 , 3 , 7 , 48 , 383 , Texas , Reagan County , 3367 , 3367 , 3348 , 3390 , - 19 , 42 , 12 , 48 , 3 , 13 , 9 , 35 , 1 , 9 , - 28 , - 2 , - 27 , 7 , - 1 , 0 , 27 , 27 , 27 , 14 . 247551202 , 3 . 8587117839 , 10 . 388839418 , 2 . 6714158504 , - 0 . 593647967 , 2 . 0777678836 <nl> + 050 , 3 , 7 , 48 , 385 , Texas , Real County , 3309 , 3309 , 3319 , 3426 , 10 , 107 , 7 , 36 , 5 , 57 , 2 , - 21 , 0 , 4 , 8 , 122 , 8 , 126 , 0 , 2 , 70 , 70 , 70 , 10 . 674573758 , 16 . 901408451 , - 6 . 226834692 , 1 . 1860637509 , 36 . 174944403 , 37 . 361008154 <nl> + 050 , 3 , 7 , 48 , 387 , Texas , Red River County , 12860 , 12864 , 12862 , 12703 , - 2 , - 159 , 32 , 137 , 47 , 182 , - 15 , - 45 , 0 , 0 , 14 , - 115 , 14 , - 115 , - 1 , 1 , 189 , 189 , 189 , 10 . 717778212 , 14 . 238216311 , - 3 . 520438099 , 0 , - 8 . 996675142 , - 8 . 996675142 <nl> + 050 , 3 , 7 , 48 , 389 , Texas , Reeves County , 13783 , 13783 , 13806 , 13757 , 23 , - 49 , 43 , 184 , 7 , 106 , 36 , 78 , 4 , 9 , - 16 , - 137 , - 12 , - 128 , - 1 , 1 , 3110 , 3110 , 3110 , 13 . 351231724 , 7 . 6914704495 , 5 . 6597612742 , 0 . 6530493778 , - 9 . 940862751 , - 9 . 287813373 <nl> + 050 , 3 , 7 , 48 , 391 , Texas , Refugio County , 7383 , 7383 , 7362 , 7291 , - 21 , - 71 , 20 , 86 , 4 , 60 , 16 , 26 , 1 , 2 , - 37 , - 98 , - 36 , - 96 , - 1 , - 1 , 129 , 129 , 129 , 11 . 738210605 , 8 . 1894492595 , 3 . 5487613458 , 0 . 272981642 , - 13 . 37610046 , - 13 . 10311882 <nl> + 050 , 3 , 7 , 48 , 393 , Texas , Roberts County , 929 , 929 , 924 , 816 , - 5 , - 108 , 2 , 8 , 1 , 9 , 1 , - 1 , 0 , 0 , - 6 , - 108 , - 6 , - 108 , 0 , 1 , 0 , 0 , 0 , 9 . 1954022989 , 10 . 344827586 , - 1 . 149425287 , 0 , - 124 . 137931 , - 124 . 137931 <nl> + 050 , 3 , 7 , 48 , 395 , Texas , Robertson County , 16622 , 16622 , 16606 , 16740 , - 16 , 134 , 50 , 205 , 31 , 161 , 19 , 44 , 7 , 34 , - 41 , 57 , - 34 , 91 , - 1 , - 1 , 193 , 193 , 193 , 12 . 295327775 , 9 . 6563305944 , 2 . 6389971811 , 2 . 0392250945 , 3 . 4187008937 , 5 . 4579259881 <nl> + 050 , 3 , 7 , 48 , 397 , Texas , Rockwall County , 78337 , 78337 , 79020 , 81290 , 683 , 2270 , 253 , 980 , 98 , 384 , 155 , 596 , 36 , 149 , 483 , 1512 , 519 , 1661 , 9 , 13 , 659 , 659 , 659 , 12 . 226311521 , 4 . 7907179839 , 7 . 4355935375 , 1 . 8588983844 , 18 . 863452062 , 20 . 722350446 <nl> + 050 , 3 , 7 , 48 , 399 , Texas , Runnels County , 10501 , 10501 , 10529 , 10524 , 28 , - 5 , 26 , 124 , 20 , 132 , 6 , - 8 , 2 , 7 , 21 , - 4 , 23 , 3 , - 1 , 0 , 194 , 194 , 194 , 11 . 779793854 , 12 . 539780554 , - 0 . 7599867 , 0 . 6649883627 , - 0 . 37999335 , 0 . 2849950126 <nl> + 050 , 3 , 7 , 48 , 401 , Texas , Rusk County , 53330 , 53330 , 53394 , 53759 , 64 , 365 , 174 , 708 , 120 , 536 , 54 , 172 , 8 , 44 , 5 , 149 , 13 , 193 , - 3 , 0 , 5210 , 5210 , 5210 , 13 . 214749004 , 10 . 004386251 , 3 . 2103627523 , 0 . 8212555878 , 2 . 7810700587 , 3 . 6023256465 <nl> + 050 , 3 , 7 , 48 , 403 , Texas , Sabine County , 10834 , 10834 , 10864 , 10740 , 30 , - 124 , 24 , 98 , 27 , 142 , - 3 , - 44 , 1 , 8 , 34 , - 86 , 35 , - 78 , - 2 , - 2 , 79 , 79 , 79 , 9 . 0723940011 , 13 . 145713757 , - 4 . 073319756 , 0 . 7406035919 , - 7 . 961488613 , - 7 . 220885021 <nl> + 050 , 3 , 7 , 48 , 405 , Texas , San Augustine County , 8865 , 8865 , 8846 , 8874 , - 19 , 28 , 22 , 95 , 27 , 137 , - 5 , - 42 , 0 , 2 , - 13 , 67 , - 13 , 69 , - 1 , 1 , 223 , 223 , 223 , 10 . 72234763 , 15 . 46275395 , - 4 . 740406321 , 0 . 2257336343 , 7 . 5620767494 , 7 . 7878103837 <nl> + 050 , 3 , 7 , 48 , 407 , Texas , San Jacinto County , 26384 , 26384 , 26466 , 26801 , 82 , 335 , 70 , 289 , 60 , 232 , 10 , 57 , 4 , 17 , 67 , 259 , 71 , 276 , 1 , 2 , 128 , 128 , 128 , 10 . 850995926 , 8 . 7108340999 , 2 . 1401618263 , 0 . 638293878 , 9 . 724594965 , 10 . 362888843 <nl> + 050 , 3 , 7 , 48 , 409 , Texas , San Patricio County , 64804 , 64806 , 64621 , 64726 , - 185 , 105 , 251 , 1009 , 149 , 526 , 102 , 483 , 44 , 43 , - 339 , - 424 , - 295 , - 381 , 8 , 3 , 680 , 680 , 680 , 15 . 601444177 , 8 . 1331611866 , 7 . 4682829907 , 0 . 6648781959 , - 6 . 556008257 , - 5 . 891130061 <nl> + 050 , 3 , 7 , 48 , 411 , Texas , San Saba County , 6131 , 6131 , 6140 , 6023 , 9 , - 117 , 15 , 66 , 10 , 73 , 5 , - 7 , 0 , - 1 , 4 , - 110 , 4 , - 111 , 0 , 1 , 684 , 684 , 684 , 10 . 852585711 , 12 . 003617529 , - 1 . 151031818 , - 0 . 164433117 , - 18 . 08764285 , - 18 . 25207597 <nl> + 050 , 3 , 7 , 48 , 413 , Texas , Schleicher County , 3461 , 3461 , 3505 , 3309 , 44 , - 196 , 12 , 48 , 3 , 24 , 9 , 24 , 0 , 3 , 34 , - 227 , 34 , - 224 , 1 , 4 , 0 , 0 , 0 , 14 . 088641033 , 7 . 0443205166 , 7 . 0443205166 , 0 . 8805400646 , - 66 . 62753155 , - 65 . 74699149 <nl> + 050 , 3 , 7 , 48 , 415 , Texas , Scurry County , 16921 , 16921 , 16950 , 16919 , 29 , - 31 , 55 , 239 , 36 , 174 , 19 , 65 , 2 , 5 , 8 , - 102 , 10 , - 97 , 0 , 1 , 1724 , 1724 , 1724 , 14 . 113200862 , 10 . 274882636 , 3 . 8383182261 , 0 . 2952552482 , - 6 . 023207063 , - 5 . 727951814 <nl> + 050 , 3 , 7 , 48 , 417 , Texas , Shackelford County , 3378 , 3378 , 3373 , 3318 , - 5 , - 55 , 10 , 34 , 4 , 37 , 6 , - 3 , 1 , 2 , - 12 , - 54 , - 11 , - 52 , 0 , 0 , 36 , 36 , 36 , 10 . 162905395 , 11 . 059632342 , - 0 . 896726947 , 0 . 5978179644 , - 16 . 14108504 , - 15 . 54326708 <nl> + 050 , 3 , 7 , 48 , 419 , Texas , Shelby County , 25448 , 25448 , 25458 , 25772 , 10 , 314 , 108 , 441 , 77 , 302 , 31 , 139 , 4 , 15 , - 25 , 159 , - 21 , 174 , 0 , 1 , 172 , 172 , 172 , 17 . 216474722 , 11 . 789966816 , 5 . 4265079055 , 0 . 5855943783 , 6 . 2073004099 , 6 . 7928947882 <nl> + 050 , 3 , 7 , 48 , 421 , Texas , Sherman County , 3034 , 3034 , 3033 , 3040 , - 1 , 7 , 6 , 30 , 1 , 18 , 5 , 12 , 1 , 9 , - 6 , - 14 , - 5 , - 5 , - 1 , 0 , 31 , 31 , 31 , 9 . 8797958176 , 5 . 9278774905 , 3 . 951918327 , 2 . 9639387453 , - 4 . 610571382 , - 1 . 646632636 <nl> + 050 , 3 , 7 , 48 , 423 , Texas , Smith County , 209714 , 209714 , 210489 , 213381 , 775 , 2892 , 759 , 3086 , 489 , 1824 , 270 , 1262 , 69 , 256 , 437 , 1374 , 506 , 1630 , - 1 , 0 , 4127 , 4127 , 4127 , 14 . 561068252 , 8 . 6064123434 , 5 . 9546559087 , 1 . 2079175219 , 6 . 4831198245 , 7 . 6910373464 <nl> + 050 , 3 , 7 , 48 , 425 , Texas , Somervell County , 8490 , 8490 , 8506 , 8451 , 16 , - 55 , 20 , 85 , 14 , 95 , 6 , - 10 , 2 , 3 , 10 , - 48 , 12 , - 45 , - 2 , 0 , 287 , 287 , 287 , 10 . 025358259 , 11 . 204812172 , - 1 . 179453913 , 0 . 3538361739 , - 5 . 661378782 , - 5 . 307542608 <nl> + 050 , 3 , 7 , 48 , 427 , Texas , Starr County , 60968 , 60968 , 61234 , 61715 , 266 , 481 , 334 , 1406 , 86 , 341 , 248 , 1065 , 45 , 88 , - 27 , - 679 , 18 , - 591 , 0 , 7 , 810 , 810 , 810 , 22 . 871271828 , 5 . 5470154292 , 17 . 324256399 , 1 . 4314878527 , - 11 . 04523014 , - 9 . 613742283 <nl> + 050 , 3 , 7 , 48 , 429 , Texas , Stephens County , 9630 , 9630 , 9601 , 9548 , - 29 , - 53 , 26 , 107 , 13 , 111 , 13 , - 4 , 0 , 0 , - 41 , - 49 , - 41 , - 49 , - 1 , 0 , 591 , 591 , 591 , 11 . 175518304 , 11 . 593294689 , - 0 . 417776385 , 0 , - 5 . 117760719 , - 5 . 117760719 <nl> + 050 , 3 , 7 , 48 , 431 , Texas , Sterling County , 1143 , 1143 , 1140 , 1158 , - 3 , 18 , 4 , 12 , 4 , 31 , 0 , - 19 , 0 , 2 , - 3 , 36 , - 3 , 38 , 0 , - 1 , 35 , 35 , 35 , 10 . 44386423 , 26 . 979982594 , - 16 . 53611836 , 1 . 7406440383 , 31 . 331592689 , 33 . 072236728 <nl> + 050 , 3 , 7 , 48 , 433 , Texas , Stonewall County , 1490 , 1490 , 1502 , 1472 , 12 , - 30 , 2 , 6 , 3 , 12 , - 1 , - 6 , 0 , 0 , 13 , - 24 , 13 , - 24 , 0 , 0 , 27 , 27 , 27 , 4 . 0349697377 , 8 . 0699394755 , - 4 . 034969738 , 0 , - 16 . 13987895 , - 16 . 13987895 <nl> + 050 , 3 , 7 , 48 , 435 , Texas , Sutton County , 4128 , 4128 , 4078 , 4007 , - 50 , - 71 , 14 , 55 , 2 , 28 , 12 , 27 , 1 , 2 , - 65 , - 100 , - 64 , - 98 , 2 , 0 , 13 , 13 , 13 , 13 . 605442177 , 6 . 9264069264 , 6 . 6790352505 , 0 . 4947433519 , - 24 . 73716759 , - 24 . 24242424 <nl> + 050 , 3 , 7 , 48 , 437 , Texas , Swisher County , 7854 , 7854 , 7900 , 7801 , 46 , - 99 , 28 , 130 , 14 , 75 , 14 , 55 , 0 , 0 , 32 , - 156 , 32 , - 156 , 0 , 2 , 645 , 645 , 645 , 16 . 559454812 , 9 . 5535316222 , 7 . 0059231896 , 0 , - 19 . 87134577 , - 19 . 87134577 <nl> + 050 , 3 , 7 , 48 , 439 , Texas , Tarrant County , 1809034 , 1809039 , 1816850 , 1849815 , 7811 , 32965 , 7111 , 28624 , 2667 , 10693 , 4444 , 17931 , 1268 , 5490 , 2055 , 9501 , 3323 , 14991 , 44 , 43 , 20634 , 20634 , 20634 , 15 . 613098006 , 5 . 8325481057 , 9 . 7805499002 , 2 . 9945468157 , 5 . 182365992 , 8 . 1769128077 <nl> + 050 , 3 , 7 , 48 , 441 , Texas , Taylor County , 131506 , 131506 , 131908 , 132755 , 402 , 847 , 532 , 2111 , 300 , 1303 , 232 , 808 , 74 , 89 , 97 , - 43 , 171 , 46 , - 1 , - 7 , 5287 , 5287 , 5287 , 15 . 95236206 , 9 . 8464840193 , 6 . 1058780411 , 0 . 6725533981 , - 0 . 324941529 , 0 . 3476118687 <nl> + 050 , 3 , 7 , 48 , 443 , Texas , Terrell County , 984 , 984 , 1005 , 960 , 21 , - 45 , 2 , 8 , 2 , 9 , 0 , - 1 , 0 , 4 , 20 , - 47 , 20 , - 43 , 1 , - 1 , 0 , 0 , 0 , 8 . 1424936387 , 9 . 1603053435 , - 1 . 017811705 , 4 . 0712468193 , - 47 . 83715013 , - 43 . 76590331 <nl> + 050 , 3 , 7 , 48 , 445 , Texas , Terry County , 12651 , 12651 , 12672 , 12675 , 21 , 3 , 47 , 204 , 13 , 141 , 34 , 63 , 5 , 37 , - 17 , - 97 , - 12 , - 60 , - 1 , 0 , 1166 , 1166 , 1166 , 16 . 096579477 , 11 . 125576991 , 4 . 9710024855 , 2 . 9194776502 , - 7 . 653765732 , - 4 . 734288081 <nl> + 050 , 3 , 7 , 48 , 447 , Texas , Throckmorton County , 1641 , 1641 , 1632 , 1609 , - 9 , - 23 , 2 , 10 , 2 , 20 , 0 , - 10 , 0 , 0 , - 9 , - 13 , - 9 , - 13 , 0 , 0 , 13 , 13 , 13 , 6 . 1709348966 , 12 . 341869793 , - 6 . 170934897 , 0 , - 8 . 022215366 , - 8 . 022215366 <nl> + 050 , 3 , 7 , 48 , 449 , Texas , Titus County , 32334 , 32334 , 32464 , 32596 , 130 , 132 , 143 , 599 , 60 , 225 , 83 , 374 , 21 , 83 , 26 , - 328 , 47 , - 245 , 0 , 3 , 357 , 357 , 357 , 18 . 413771903 , 6 . 916692284 , 11 . 497079619 , 2 . 5514909314 , - 10 . 08300031 , - 7 . 531509376 <nl> + 050 , 3 , 7 , 48 , 451 , Texas , Tom Green County , 110224 , 110224 , 110655 , 111823 , 431 , 1168 , 392 , 1563 , 231 , 938 , 161 , 625 , 59 , 91 , 208 , 452 , 267 , 543 , 3 , 0 , 5165 , 5165 , 5165 , 14 . 050827498 , 8 . 4322944291 , 5 . 6185330684 , 0 . 8180584148 , 4 . 0633231151 , 4 . 8813815299 <nl> + 050 , 3 , 7 , 48 , 453 , Texas , Travis County , 1024266 , 1024272 , 1030588 , 1063130 , 6316 , 32542 , 4033 , 16240 , 1153 , 4455 , 2880 , 11785 , 1255 , 5206 , 2112 , 15341 , 3367 , 20547 , 69 , 210 , 23046 , 23046 , 23046 , 15 . 513072916 , 4 . 2555874287 , 11 . 257485488 , 4 . 9729715272 , 14 . 654313523 , 19 . 62728505 <nl> + 050 , 3 , 7 , 48 , 455 , Texas , Trinity County , 14585 , 14585 , 14619 , 14659 , 34 , 40 , 41 , 156 , 60 , 198 , - 19 , - 42 , 10 , 38 , 44 , 44 , 54 , 82 , - 1 , 0 , 48 , 48 , 48 , 10 . 656465606 , 13 . 525514038 , - 2 . 869048432 , 2 . 5958057244 , 3 . 0056697862 , 5 . 6014755106 <nl> + 050 , 3 , 7 , 48 , 457 , Texas , Tyler County , 21766 , 21766 , 21748 , 21666 , - 18 , - 82 , 57 , 240 , 69 , 227 , - 12 , 13 , 0 , - 1 , - 4 , - 92 , - 4 , - 93 , - 2 , - 2 , 2448 , 2448 , 2448 , 11 . 056341272 , 10 . 45745612 , 0 . 5988851523 , - 0 . 046068089 , - 4 . 238264154 , - 4 . 284332243 <nl> + 050 , 3 , 7 , 48 , 459 , Texas , Upshur County , 39309 , 39318 , 39387 , 39826 , 69 , 439 , 121 , 485 , 95 , 367 , 26 , 118 , 9 , 33 , 34 , 285 , 43 , 318 , 0 , 3 , 516 , 516 , 516 , 12 . 24546476 , 9 . 2661558078 , 2 . 9793089518 , 0 . 8331965713 , 7 . 1957885701 , 8 . 0289851413 <nl> + 050 , 3 , 7 , 48 , 461 , Texas , Upton County , 3355 , 3355 , 3364 , 3346 , 9 , - 18 , 16 , 56 , 3 , 21 , 13 , 35 , 1 , 4 , - 5 , - 58 , - 4 , - 54 , 0 , 1 , 61 , 61 , 61 , 16 . 691505216 , 6 . 259314456 , 10 . 43219076 , 1 . 1922503726 , - 17 . 2876304 , - 16 . 09538003 <nl> + 050 , 3 , 7 , 48 , 463 , Texas , Uvalde County , 26405 , 26405 , 26468 , 26535 , 63 , 67 , 105 , 439 , 60 , 268 , 45 , 171 , 2 , 15 , 18 , - 120 , 20 , - 105 , - 2 , 1 , 564 , 564 , 564 , 16 . 565100089 , 10 . 112635134 , 6 . 4524649548 , 0 . 5660056978 , - 4 . 528045582 , - 3 . 962039885 <nl> + 050 , 3 , 7 , 48 , 465 , Texas , Val Verde County , 48879 , 48879 , 49041 , 49106 , 162 , 65 , 214 , 886 , 94 , 361 , 120 , 525 , 52 , 87 , - 9 , - 554 , 43 , - 467 , - 1 , 7 , 1945 , 1945 , 1945 , 18 . 054550827 , 7 . 3563124701 , 10 . 698238357 , 1 . 7728509277 , - 11 . 28918867 , - 9 . 516337738 <nl> + 050 , 3 , 7 , 48 , 467 , Texas , Van Zandt County , 52579 , 52579 , 52661 , 52776 , 82 , 115 , 160 , 636 , 165 , 620 , - 5 , 16 , 10 , 38 , 78 , 64 , 88 , 102 , - 1 , - 3 , 667 , 667 , 667 , 12 . 064076178 , 11 . 760577406 , 0 . 3034987718 , 0 . 720809583 , 1 . 2139950871 , 1 . 9348046701 <nl> + 050 , 3 , 7 , 48 , 469 , Texas , Victoria County , 86793 , 86793 , 86846 , 87545 , 53 , 699 , 330 , 1350 , 191 , 722 , 139 , 628 , 35 , 144 , - 120 , - 65 , - 85 , 79 , - 1 , - 8 , 1508 , 1508 , 1508 , 15 . 482450356 , 8 . 2802438199 , 7 . 2022065359 , 1 . 6514613713 , - 0 . 745451313 , 0 . 9060100579 <nl> + 050 , 3 , 7 , 48 , 471 , Texas , Walker County , 67861 , 67861 , 68088 , 68087 , 227 , - 1 , 172 , 704 , 128 , 524 , 44 , 180 , 14 , 54 , 164 , - 235 , 178 , - 181 , 5 , 0 , 16708 , 16629 , 16639 , 10 . 339636497 , 7 . 6959794382 , 2 . 6436570589 , 0 . 7930971177 , - 3 . 45144116 , - 2 . 658344043 <nl> + 050 , 3 , 7 , 48 , 473 , Texas , Waller County , 43205 , 43237 , 43464 , 44013 , 227 , 549 , 149 , 629 , 65 , 270 , 84 , 359 , 42 , 168 , 98 , 24 , 140 , 192 , 3 , - 2 , 3703 , 3703 , 3703 , 14 . 380922985 , 6 . 173051202 , 8 . 2078717834 , 3 . 8410096368 , 0 . 5487156624 , 4 . 3897252992 <nl> + 050 , 3 , 7 , 48 , 475 , Texas , Ward County , 10658 , 10658 , 10619 , 10716 , - 39 , 97 , 35 , 144 , 11 , 95 , 24 , 49 , 0 , 1 , - 63 , 46 , - 63 , 47 , 0 , 1 , 125 , 125 , 125 , 13 . 498945395 , 8 . 9055542536 , 4 . 5933911413 , 0 . 0937426764 , 4 . 3121631123 , 4 . 4059057886 <nl> + 050 , 3 , 7 , 48 , 477 , Texas , Washington County , 33718 , 33711 , 33752 , 33791 , 41 , 39 , 99 , 401 , 85 , 350 , 14 , 51 , 15 , 55 , 14 , - 66 , 29 , - 11 , - 2 , - 1 , 1816 , 1816 , 1816 , 11 . 873917356 , 10 . 363768266 , 1 . 5101490902 , 1 . 6285921561 , - 1 . 954310587 , - 0 . 325718431 <nl> + 050 , 3 , 7 , 48 , 479 , Texas , Webb County , 250304 , 250304 , 251527 , 256496 , 1223 , 4969 , 1343 , 5698 , 289 , 1112 , 1054 , 4586 , 219 , 999 , - 53 , - 614 , 166 , 385 , 3 , - 2 , 3479 , 3479 , 3479 , 22 . 432055242 , 4 . 3777545505 , 18 . 054300691 , 3 . 9328928021 , - 2 . 417213394 , 1 . 5156794082 <nl> + 050 , 3 , 7 , 48 , 481 , Texas , Wharton County , 41280 , 41280 , 41364 , 41314 , 84 , - 50 , 148 , 613 , 90 , 384 , 58 , 229 , 14 , 47 , 14 , - 328 , 28 , - 281 , - 2 , 2 , 449 , 449 , 449 , 14 . 828612206 , 9 . 289049082 , 5 . 5395631244 , 1 . 1369409033 , - 7 . 934396091 , - 6 . 797455188 <nl> + 050 , 3 , 7 , 48 , 483 , Texas , Wheeler County , 5410 , 5410 , 5404 , 5465 , - 6 , 61 , 14 , 66 , 7 , 71 , 7 , - 5 , 1 , 13 , - 13 , 53 , - 12 , 66 , - 1 , 0 , 46 , 46 , 46 , 12 . 144631521 , 13 . 064679363 , - 0 . 920047842 , 2 . 3921243905 , 9 . 7525071304 , 12 . 144631521 <nl> + 050 , 3 , 7 , 48 , 485 , Texas , Wichita County , 131500 , 131500 , 131662 , 130698 , 162 , - 964 , 450 , 1804 , 287 , 1264 , 163 , 540 , 150 , 218 , - 151 , - 1744 , - 1 , - 1526 , 0 , 22 , 12017 , 12017 , 12017 , 13 . 752096356 , 9 . 6356151852 , 4 . 1164811709 , 1 . 6618386949 , - 13 . 29470956 , - 11 . 63287086 <nl> + 050 , 3 , 7 , 48 , 487 , Texas , Wilbarger County , 13535 , 13535 , 13510 , 13404 , - 25 , - 106 , 43 , 179 , 25 , 149 , 18 , 30 , 3 , 9 , - 45 , - 145 , - 42 , - 136 , - 1 , 0 , 615 , 615 , 615 , 13 . 301627406 , 11 . 072304377 , 2 . 2293230289 , 0 . 6687969087 , - 10 . 77506131 , - 10 . 1062644 <nl> + 050 , 3 , 7 , 48 , 489 , Texas , Willacy County , 22134 , 22134 , 22174 , 22095 , 40 , - 79 , 82 , 352 , 32 , 174 , 50 , 178 , 1 , 6 , - 10 , - 266 , - 9 , - 260 , - 1 , 3 , 3254 , 3254 , 3254 , 15 . 902776209 , 7 . 8610314215 , 8 . 0417447875 , 0 . 271070049 , - 12 . 01743884 , - 11 . 74636879 <nl> + 050 , 3 , 7 , 48 , 491 , Texas , Williamson County , 422679 , 422679 , 426821 , 442782 , 4142 , 15961 , 1584 , 6280 , 443 , 1813 , 1141 , 4467 , 240 , 753 , 2698 , 10623 , 2938 , 11376 , 63 , 118 , 5097 , 5097 , 5097 , 14 . 443372435 , 4 . 1697188257 , 10 . 27365361 , 1 . 7318247522 , 24 . 431838437 , 26 . 163663189 <nl> + 050 , 3 , 7 , 48 , 493 , Texas , Wilson County , 42918 , 42914 , 43128 , 43789 , 214 , 661 , 112 , 439 , 74 , 329 , 38 , 110 , 11 , 42 , 163 , 503 , 174 , 545 , 2 , 6 , 551 , 551 , 551 , 10 . 101591173 , 7 . 5704407653 , 2 . 5311504079 , 0 . 9664392466 , 11 . 574260501 , 12 . 540699748 <nl> + 050 , 3 , 7 , 48 , 495 , Texas , Winkler County , 7110 , 7110 , 7089 , 7178 , - 21 , 89 , 26 , 118 , 2 , 48 , 24 , 70 , 0 , 0 , - 46 , 19 , - 46 , 19 , 1 , 0 , 97 , 97 , 97 , 16 . 541669587 , 6 . 7288147473 , 9 . 8128548398 , 0 , 2 . 6634891708 , 2 . 6634891708 <nl> + 050 , 3 , 7 , 48 , 497 , Texas , Wise County , 59127 , 59122 , 59120 , 59833 , - 2 , 713 , 189 , 756 , 122 , 490 , 67 , 266 , 13 , 39 , - 83 , 405 , - 70 , 444 , 1 , 3 , 980 , 980 , 980 , 12 . 710902625 , 8 . 2385479979 , 4 . 4723546275 , 0 . 6557211672 , 6 . 8094121208 , 7 . 4651332879 <nl> + 050 , 3 , 7 , 48 , 499 , Texas , Wood County , 41964 , 41964 , 42030 , 42164 , 66 , 134 , 97 , 418 , 142 , 575 , - 45 , - 157 , 4 , 10 , 111 , 285 , 115 , 295 , - 4 , - 4 , 1103 , 1103 , 1103 , 9 . 9294486543 , 13 . 658930565 , - 3 . 729481911 , 0 . 2375466185 , 6 . 7700786279 , 7 . 0076252465 <nl> + 050 , 3 , 7 , 48 , 501 , Texas , Yoakum County , 7879 , 7879 , 7861 , 8005 , - 18 , 144 , 33 , 149 , 6 , 46 , 27 , 103 , 3 , 10 , - 48 , 30 , - 45 , 40 , 0 , 1 , 53 , 53 , 53 , 18 . 782301777 , 5 . 7985629648 , 12 . 983738813 , 1 . 2605571663 , 3 . 7816714988 , 5 . 0422286651 <nl> + 050 , 3 , 7 , 48 , 503 , Texas , Young County , 18550 , 18550 , 18565 , 18484 , 15 , - 81 , 57 , 247 , 66 , 246 , - 9 , 1 , 2 , 4 , 24 , - 85 , 26 , - 81 , - 2 , - 1 , 279 , 279 , 279 , 13 . 333693217 , 13 . 279710653 , 0 . 0539825636 , 0 . 2159302545 , - 4 . 588517909 , - 4 . 372587654 <nl> + 050 , 3 , 7 , 48 , 505 , Texas , Zapata County , 14018 , 14018 , 14081 , 14282 , 63 , 201 , 78 , 336 , 13 , 108 , 65 , 228 , 19 , 82 , - 21 , - 108 , - 2 , - 26 , 0 , - 1 , 30 , 30 , 30 , 23 . 692839262 , 7 . 6155554772 , 16 . 077283785 , 5 . 7821810105 , - 7 . 615555477 , - 1 . 833374467 <nl> + 050 , 3 , 7 , 48 , 507 , Texas , Zavala County , 11677 , 11677 , 11726 , 11849 , 49 , 123 , 55 , 237 , 8 , 82 , 47 , 155 , 2 , 7 , 0 , - 36 , 2 , - 29 , 0 , - 3 , 409 , 409 , 409 , 20 . 106044539 , 6 . 9565217391 , 13 . 1495228 , 0 . 5938494168 , - 3 . 054082715 , - 2 . 460233298 <nl> + 040 , 4 , 8 , 49 , 000 , Utah , Utah , 2763885 , 2763885 , 2775479 , 2817222 , 11594 , 41743 , 13153 , 52003 , 3420 , 14314 , 9733 , 37689 , 1402 , 5336 , 423 , - 1249 , 1825 , 4087 , 36 , - 33 , 46152 , 46152 , 46153 , 18 . 596738857 , 5 . 1188146836 , 13 . 477924173 , 1 . 9082014218 , - 0 . 446653594 , 1 . 4615478281 <nl> + 050 , 4 , 8 , 49 , 001 , Utah , Beaver County , 6629 , 6629 , 6650 , 6594 , 21 , - 56 , 35 , 130 , 8 , 68 , 27 , 62 , 4 , 17 , - 10 , - 136 , - 6 , - 119 , 0 , 1 , 24 , 24 , 24 , 19 . 631531259 , 10 . 268800966 , 9 . 362730293 , 2 . 5672002416 , - 20 . 53760193 , - 17 . 97040169 <nl> + 050 , 4 , 8 , 49 , 003 , Utah , Box Elder County , 49975 , 49975 , 50175 , 50290 , 200 , 115 , 219 , 907 , 61 , 310 , 158 , 597 , 14 , 57 , 28 , - 545 , 42 , - 488 , 0 , 6 , 339 , 339 , 339 , 18 . 056039417 , 6 . 171303439 , 11 . 884735978 , 1 . 1347235356 , - 10 . 84954959 , - 9 . 714826059 <nl> + 050 , 4 , 8 , 49 , 005 , Utah , Cache County , 112656 , 112656 , 113324 , 114699 , 668 , 1375 , 621 , 2434 , 115 , 466 , 506 , 1968 , 45 , 156 , 116 , - 756 , 161 , - 600 , 1 , 7 , 3594 , 3594 , 3594 , 21 . 348723594 , 4 . 0873069822 , 17 . 261416611 , 1 . 3682830241 , - 6 . 63091004 , - 5 . 262627016 <nl> + 050 , 4 , 8 , 49 , 007 , Utah , Carbon County , 21403 , 21403 , 21443 , 21318 , 40 , - 125 , 80 , 310 , 34 , 189 , 46 , 121 , 0 , 2 , - 5 , - 247 , - 5 , - 245 , - 1 , - 1 , 544 , 544 , 544 , 14 . 49919319 , 8 . 8398306868 , 5 . 6593625032 , 0 . 0935431819 , - 11 . 55258296 , - 11 . 45903978 <nl> + 050 , 4 , 8 , 49 , 009 , Utah , Daggett County , 1059 , 1059 , 1066 , 1156 , 7 , 90 , 4 , 14 , 0 , 3 , 4 , 11 , 0 , 0 , 4 , 77 , 4 , 77 , - 1 , 2 , 63 , 63 , 63 , 12 . 601260126 , 2 . 700270027 , 9 . 900990099 , 0 , 69 . 306930693 , 69 . 306930693 <nl> + 050 , 4 , 8 , 49 , 011 , Utah , Davis County , 306479 , 306479 , 307806 , 311811 , 1327 , 4005 , 1469 , 5812 , 359 , 1379 , 1110 , 4433 , 94 , 89 , 121 , - 510 , 215 , - 421 , 2 , - 7 , 3293 , 3293 , 3293 , 18 . 759975921 , 4 . 4511367506 , 14 . 30883917 , 0 . 2872742355 , - 1 . 646178204 , - 1 . 358903968 <nl> + 050 , 4 , 8 , 49 , 013 , Utah , Duchesne County , 18607 , 18607 , 18640 , 18888 , 33 , 248 , 102 , 407 , 11 , 109 , 91 , 298 , 3 , 13 , - 61 , - 64 , - 58 , - 51 , 0 , 1 , 297 , 297 , 297 , 21 . 690471115 , 5 . 8089959497 , 15 . 881475165 , 0 . 6928160307 , - 3 . 410786613 , - 2 . 717970582 <nl> + 050 , 4 , 8 , 49 , 015 , Utah , Emery County , 10976 , 10976 , 10990 , 10944 , 14 , - 46 , 42 , 173 , 10 , 85 , 32 , 88 , 2 , 7 , - 19 , - 142 , - 17 , - 135 , - 1 , 1 , 43 , 43 , 43 , 15 . 774596517 , 7 . 7505243002 , 8 . 0240722166 , 0 . 6382784718 , - 12 . 94793471 , - 12 . 30965624 <nl> + 050 , 4 , 8 , 49 , 017 , Utah , Garfield County , 5172 , 5172 , 5186 , 5144 , 14 , - 42 , 12 , 59 , 3 , 28 , 9 , 31 , 1 , 4 , 5 , - 76 , 6 , - 72 , - 1 , - 1 , 171 , 171 , 171 , 11 . 42303969 , 5 . 4211035818 , 6 . 0019361084 , 0 . 7744433688 , - 14 . 71442401 , - 13 . 93998064 <nl> + 050 , 4 , 8 , 49 , 019 , Utah , Grand County , 9225 , 9225 , 9303 , 9325 , 78 , 22 , 35 , 136 , 8 , 80 , 27 , 56 , 4 , 18 , 45 , - 52 , 49 , - 34 , 2 , 0 , 143 , 143 , 143 , 14 . 601674898 , 8 . 5892205282 , 6 . 0124543698 , 1 . 9325746189 , - 5 . 582993343 , - 3 . 650418725 <nl> + 050 , 4 , 8 , 49 , 021 , Utah , Iron County , 46163 , 46163 , 46291 , 46740 , 128 , 449 , 231 , 882 , 68 , 260 , 163 , 622 , 29 , 120 , - 65 , - 296 , - 36 , - 176 , 1 , 3 , 1050 , 1050 , 1050 , 18 . 961421462 , 5 . 5895346712 , 13 . 37188679 , 2 . 5797852329 , - 6 . 363470241 , - 3 . 783685008 <nl> + 050 , 4 , 8 , 49 , 023 , Utah , Juab County , 10246 , 10246 , 10268 , 10335 , 22 , 67 , 47 , 191 , 12 , 82 , 35 , 109 , 1 , 3 , - 15 , - 45 , - 14 , - 42 , 1 , 0 , 122 , 122 , 122 , 18 . 540989176 , 7 . 9600058244 , 10 . 580983352 , 0 . 2912197253 , - 4 . 368295879 , - 4 . 077076154 <nl> + 050 , 4 , 8 , 49 , 025 , Utah , Kane County , 7125 , 7125 , 7153 , 7257 , 28 , 104 , 18 , 80 , 4 , 68 , 14 , 12 , 0 , 0 , 14 , 92 , 14 , 92 , 0 , 0 , 100 , 100 , 100 , 11 . 103400416 , 9 . 4378903539 , 1 . 6655100625 , 0 , 12 . 768910479 , 12 . 768910479 <nl> + 050 , 4 , 8 , 49 , 027 , Utah , Millard County , 12503 , 12503 , 12540 , 12645 , 37 , 105 , 47 , 203 , 16 , 88 , 31 , 115 , 7 , 37 , 0 , - 48 , 7 , - 11 , - 1 , 1 , 122 , 122 , 122 , 16 . 12070677 , 6 . 9882866786 , 9 . 1324200913 , 2 . 9382568989 , - 3 . 811792734 , - 0 . 873535835 <nl> + 050 , 4 , 8 , 49 , 029 , Utah , Morgan County , 9469 , 9469 , 9524 , 9685 , 55 , 161 , 39 , 160 , 4 , 35 , 35 , 125 , 1 , 4 , 19 , 33 , 20 , 37 , 0 , - 1 , 0 , 0 , 0 , 16 . 658857827 , 3 . 6441251497 , 13 . 014732677 , 0 . 4164714457 , 3 . 4358894268 , 3 . 8523608725 <nl> + 050 , 4 , 8 , 49 , 031 , Utah , Piute County , 1556 , 1556 , 1562 , 1497 , 6 , - 65 , 4 , 16 , 1 , 12 , 3 , 4 , 0 , 0 , 3 , - 70 , 3 , - 70 , 0 , 1 , 37 , 37 , 37 , 10 . 460934946 , 7 . 8457012095 , 2 . 6152337365 , 0 , - 45 . 76659039 , - 45 . 76659039 <nl> + 050 , 4 , 8 , 49 , 033 , Utah , Rich County , 2264 , 2264 , 2262 , 2303 , - 2 , 41 , 10 , 37 , 0 , 11 , 10 , 26 , 0 , 0 , - 12 , 15 , - 12 , 15 , 0 , 0 , 1 , 1 , 1 , 16 . 210295728 , 4 . 8192771084 , 11 . 39101862 , 0 , 6 . 5717415115 , 6 . 5717415115 <nl> + 050 , 4 , 8 , 49 , 035 , Utah , Salt Lake County , 1029655 , 1029655 , 1033223 , 1048985 , 3568 , 15762 , 4582 , 18109 , 1367 , 5548 , 3215 , 12561 , 679 , 2882 , - 334 , 368 , 345 , 3250 , 8 , - 49 , 14006 , 14006 , 14007 , 17 . 394035562 , 5 . 3289584902 , 12 . 065077072 , 2 . 7682152792 , 0 . 3534709309 , 3 . 12168621 <nl> + 050 , 4 , 8 , 49 , 037 , Utah , San Juan County , 14746 , 14746 , 14826 , 14825 , 80 , - 1 , 55 , 241 , 5 , 83 , 50 , 158 , 0 , - 1 , 29 , - 160 , 29 , - 161 , 1 , 2 , 289 , 289 , 289 , 16 . 255775522 , 5 . 5984621092 , 10 . 657313413 , - 0 . 067451351 , - 10 . 79221611 , - 10 . 85966746 <nl> + 050 , 4 , 8 , 49 , 039 , Utah , Sanpete County , 27822 , 27822 , 27891 , 27988 , 69 , 97 , 109 , 397 , 48 , 166 , 61 , 231 , 8 , 31 , 0 , - 166 , 8 , - 135 , 0 , 1 , 2417 , 2417 , 2417 , 14 . 209273609 , 5 . 9414091161 , 8 . 2678644929 , 1 . 1095402566 , - 5 . 941409116 , - 4 . 831868859 <nl> + 050 , 4 , 8 , 49 , 041 , Utah , Sevier County , 20802 , 20802 , 20833 , 20971 , 31 , 138 , 85 , 345 , 47 , 187 , 38 , 158 , 1 , 6 , - 8 , - 25 , - 7 , - 19 , 0 , - 1 , 301 , 301 , 301 , 16 . 50559755 , 8 . 9465122955 , 7 . 559085255 , 0 . 2870538704 , - 1 . 196057794 , - 0 . 909003923 <nl> + 050 , 4 , 8 , 49 , 043 , Utah , Summit County , 36324 , 36324 , 36533 , 37594 , 209 , 1061 , 111 , 500 , 15 , 128 , 96 , 372 , 46 , 176 , 65 , 505 , 111 , 681 , 2 , 8 , 116 , 116 , 116 , 13 . 490361137 , 3 . 4535324511 , 10 . 036828686 , 4 . 7486071202 , 13 . 625264748 , 18 . 373871869 <nl> + 050 , 4 , 8 , 49 , 045 , Utah , Tooele County , 58218 , 58218 , 58513 , 59326 , 295 , 813 , 252 , 1022 , 87 , 281 , 165 , 741 , 5 , 32 , 121 , 42 , 126 , 74 , 4 , - 2 , 355 , 355 , 355 , 17 . 34570049 , 4 . 7692190192 , 12 . 57648147 , 0 . 5431139097 , 0 . 7128370064 , 1 . 2559509161 <nl> + 050 , 4 , 8 , 49 , 047 , Utah , Uintah County , 32588 , 32588 , 32435 , 33163 , - 153 , 728 , 146 , 630 , 48 , 200 , 98 , 430 , 2 , 4 , - 260 , 291 , - 258 , 295 , 7 , 3 , 192 , 192 , 192 , 19 . 20790268 , 6 . 0977468825 , 13 . 110155797 , 0 . 1219549377 , 8 . 8722217141 , 8 . 9941766517 <nl> + 050 , 4 , 8 , 49 , 049 , Utah , Utah County , 516564 , 516564 , 519837 , 530499 , 3273 , 10662 , 3055 , 11909 , 466 , 1881 , 2589 , 10028 , 247 , 1033 , 423 , - 381 , 670 , 652 , 14 , - 18 , 13912 , 13912 , 13912 , 22 . 676553027 , 3 . 5817109953 , 19 . 094842032 , 1 . 9669896109 , - 0 . 725482131 , 1 . 2415074795 <nl> + 050 , 4 , 8 , 49 , 051 , Utah , Wasatch County , 23530 , 23530 , 23702 , 24417 , 172 , 715 , 95 , 379 , 15 , 105 , 80 , 274 , 12 , 48 , 78 , 387 , 90 , 435 , 2 , 6 , 250 , 250 , 250 , 15 . 752613313 , 4 . 3641804693 , 11 . 388432844 , 1 . 9950539288 , 16 . 085122301 , 18 . 08017623 <nl> + 050 , 4 , 8 , 49 , 053 , Utah , Washington County , 138115 , 138115 , 138516 , 141666 , 401 , 3150 , 621 , 2408 , 242 , 980 , 379 , 1428 , 59 , 187 , - 28 , 1532 , 31 , 1719 , - 9 , 3 , 1853 , 1853 , 1853 , 17 . 188827262 , 6 . 9954529556 , 10 . 193374307 , 1 . 3348466354 , 10 . 935748906 , 12 . 270595541 <nl> + 050 , 4 , 8 , 49 , 055 , Utah , Wayne County , 2778 , 2778 , 2771 , 2737 , - 7 , - 34 , 10 , 29 , 4 , 29 , 6 , 0 , 2 , 7 , - 15 , - 41 , - 13 , - 34 , 0 , 0 , 9 , 9 , 9 , 10 . 530137981 , 10 . 530137981 , 0 , 2 . 5417574437 , - 14 . 88743646 , - 12 . 34567901 <nl> + 050 , 4 , 8 , 49 , 057 , Utah , Weber County , 231236 , 231236 , 232216 , 234420 , 980 , 2204 , 1017 , 4083 , 362 , 1453 , 655 , 2630 , 136 , 404 , 184 , - 831 , 320 , - 427 , 5 , 1 , 2509 , 2509 , 2509 , 17 . 49972141 , 6 . 2275520963 , 11 . 272169314 , 1 . 7315423585 , - 3 . 561662624 , - 1 . 830120265 <nl> + 040 , 1 , 1 , 50 , 000 , Vermont , Vermont , 625741 , 625741 , 625909 , 626431 , 168 , 522 , 1530 , 5955 , 1305 , 5102 , 225 , 853 , 96 , 406 , - 132 , - 709 , - 36 , - 303 , - 21 , - 28 , 25329 , 25329 , 25329 , 9 . 5101969114 , 8 . 1479470431 , 1 . 3622498682 , 0 . 648386221 , - 1 . 132280371 , - 0 . 48389415 <nl> + 050 , 1 , 1 , 50 , 001 , Vermont , Addison County , 36821 , 36820 , 36797 , 36742 , - 23 , - 55 , 77 , 305 , 79 , 302 , - 2 , 3 , 4 , 19 , - 25 , - 74 , - 21 , - 55 , 0 , - 3 , 2852 , 2852 , 2852 , 8 . 2949183426 , 8 . 2133289819 , 0 . 0815893607 , 0 . 5167326181 , - 2 . 012537565 , - 1 . 495804947 <nl> + 050 , 1 , 1 , 50 , 003 , Vermont , Bennington County , 37125 , 37125 , 37099 , 36970 , - 26 , - 129 , 90 , 361 , 112 , 436 , - 22 , - 75 , 2 , 16 , - 3 , - 68 , - 1 , - 52 , - 3 , - 2 , 1475 , 1475 , 1475 , 9 . 7476677152 , 11 . 772806437 , - 2 . 025138722 , 0 . 432029594 , - 1 . 836125775 , - 1 . 404096181 <nl> + 050 , 1 , 1 , 50 , 005 , Vermont , Caledonia County , 31227 , 31227 , 31208 , 31166 , - 19 , - 42 , 82 , 308 , 75 , 273 , 7 , 35 , 3 , 9 , - 29 , - 83 , - 26 , - 74 , 0 , - 3 , 1345 , 1345 , 1345 , 9 . 8759098342 , 8 . 7536473531 , 1 . 1222624812 , 0 . 2885817809 , - 2 . 661365312 , - 2 . 372783532 <nl> + 050 , 1 , 1 , 50 , 007 , Vermont , Chittenden County , 156545 , 156546 , 156760 , 157491 , 214 , 731 , 379 , 1463 , 240 , 940 , 139 , 523 , 53 , 175 , 25 , 43 , 78 , 218 , - 3 , - 10 , 9795 , 9795 , 9795 , 9 . 3110284454 , 5 . 9824789738 , 3 . 3285494716 , 1 . 1137593834 , 0 . 2736665914 , 1 . 3874259748 <nl> + 050 , 1 , 1 , 50 , 009 , Vermont , Essex County , 6306 , 6306 , 6305 , 6291 , - 1 , - 14 , 14 , 57 , 8 , 60 , 6 , - 3 , 0 , 0 , - 7 , - 11 , - 7 , - 11 , 0 , 0 , 16 , 16 , 16 , 9 . 0504922198 , 9 . 5268339155 , - 0 . 476341696 , 0 , - 1 . 746586218 , - 1 . 746586218 <nl> + 050 , 1 , 1 , 50 , 011 , Vermont , Franklin County , 47746 , 47746 , 47783 , 48113 , 37 , 330 , 137 , 535 , 87 , 326 , 50 , 209 , 11 , 35 , - 23 , 87 , - 12 , 122 , - 1 , - 1 , 529 , 529 , 529 , 11 . 157921081 , 6 . 799032285 , 4 . 3588887962 , 0 . 7299574539 , 1 . 8144656711 , 2 . 5444231251 <nl> + 050 , 1 , 1 , 50 , 013 , Vermont , Grand Isle County , 6970 , 6970 , 6964 , 6931 , - 6 , - 33 , 15 , 55 , 5 , 55 , 10 , 0 , 1 , 3 , - 16 , - 35 , - 15 , - 32 , - 1 , - 1 , 0 , 0 , 0 , 7 . 9165167326 , 7 . 9165167326 , 0 , 0 . 4318100036 , - 5 . 037783375 , - 4 . 605973372 <nl> + 050 , 1 , 1 , 50 , 015 , Vermont , Lamoille County , 24475 , 24475 , 24526 , 24701 , 51 , 175 , 69 , 274 , 39 , 181 , 30 , 93 , 1 , 12 , 21 , 71 , 22 , 83 , - 1 , - 1 , 694 , 694 , 694 , 11 . 132102302 , 7 . 3536880167 , 3 . 7784142848 , 0 . 4875373271 , 2 . 8845958519 , 3 . 3721331789 <nl> + 050 , 1 , 1 , 50 , 017 , Vermont , Orange County , 28936 , 28936 , 28954 , 29006 , 18 , 52 , 63 , 247 , 60 , 241 , 3 , 6 , 2 , 16 , 15 , 32 , 17 , 48 , - 2 , - 2 , 715 , 715 , 715 , 8 . 5231193927 , 8 . 3160800552 , 0 . 2070393375 , 0 . 5521048999 , 1 . 1042097999 , 1 . 6563146998 <nl> + 050 , 1 , 1 , 50 , 019 , Vermont , Orleans County , 27231 , 27231 , 27227 , 27173 , - 4 , - 54 , 71 , 286 , 80 , 268 , - 9 , 18 , 0 , 7 , 8 , - 79 , 8 , - 72 , - 3 , 0 , 818 , 818 , 818 , 10 . 514705882 , 9 . 8529411765 , 0 . 6617647059 , 0 . 2573529412 , - 2 . 904411765 , - 2 . 647058824 <nl> + 050 , 1 , 1 , 50 , 021 , Vermont , Rutland County , 61642 , 61642 , 61560 , 61289 , - 82 , - 271 , 140 , 546 , 150 , 607 , - 10 , - 61 , 2 , 20 , - 73 , - 230 , - 71 , - 210 , - 1 , 0 , 2318 , 2318 , 2318 , 8 . 8889612451 , 9 . 8820503219 , - 0 . 993089077 , 0 . 325602976 , - 3 . 744434224 , - 3 . 418831248 <nl> + 050 , 1 , 1 , 50 , 023 , Vermont , Washington County , 59534 , 59534 , 59596 , 59626 , 62 , 30 , 159 , 615 , 129 , 490 , 30 , 125 , 8 , 45 , 25 , - 137 , 33 , - 92 , - 1 , - 3 , 2410 , 2410 , 2410 , 10 . 316887823 , 8 . 2199594035 , 2 . 0969284193 , 0 . 7548942309 , - 2 . 298233547 , - 1 . 543339317 <nl> + 050 , 1 , 1 , 50 , 025 , Vermont , Windham County , 44513 , 44513 , 44487 , 44266 , - 26 , - 221 , 106 , 411 , 116 , 411 , - 10 , 0 , 3 , 16 , - 17 , - 238 , - 14 , - 222 , - 2 , 1 , 1464 , 1464 , 1464 , 9 . 2616587608 , 9 . 2616587608 , 0 , 0 . 3605511926 , - 5 . 36319899 , - 5 . 002647798 <nl> + 050 , 1 , 1 , 50 , 027 , Vermont , Windsor County , 56670 , 56670 , 56643 , 56666 , - 27 , 23 , 128 , 492 , 125 , 512 , 3 , - 20 , 6 , 33 , - 33 , 13 , - 27 , 46 , - 3 , - 3 , 898 , 898 , 898 , 8 . 6842174938 , 9 . 037234465 , - 0 . 353016971 , 0 . 5824780026 , 0 . 2294610313 , 0 . 811939034 <nl> + 040 , 3 , 5 , 51 , 000 , Virginia , Virginia , 8001024 , 8001030 , 8023953 , 8096604 , 22923 , 72651 , 25179 , 101935 , 13937 , 58943 , 11242 , 42992 , 6379 , 19239 , 5205 , 10333 , 11584 , 29572 , 97 , 87 , 239834 , 239839 , 239789 , 12 . 646585351 , 7 . 3127746144 , 5 . 3338107362 , 2 . 3868902297 , 1 . 2819656294 , 3 . 668855859 <nl> + 050 , 3 , 5 , 51 , 001 , Virginia , Accomack County , 33164 , 33164 , 33232 , 33336 , 68 , 104 , 101 , 420 , 103 , 455 , - 2 , - 35 , 27 , 104 , 44 , 37 , 71 , 141 , - 1 , - 2 , 428 , 428 , 428 , 12 . 61867564 , 13 . 670231943 , - 1 . 051556303 , 3 . 1246244442 , 1 . 1116452349 , 4 . 2362696791 <nl> + 050 , 3 , 5 , 51 , 003 , Virginia , Albemarle County , 98970 , 98970 , 99174 , 100553 , 204 , 1379 , 272 , 1065 , 168 , 709 , 104 , 356 , 88 , 296 , 16 , 724 , 104 , 1020 , - 4 , 3 , 6864 , 6864 , 6864 , 10 . 66455712 , 7 . 0996910783 , 3 . 5648660421 , 2 . 9640459227 , 7 . 2498961082 , 10 . 213942031 <nl> + 050 , 3 , 5 , 51 , 005 , Virginia , Alleghany County , 16250 , 16250 , 16216 , 16175 , - 34 , - 41 , 39 , 163 , 73 , 248 , - 34 , - 85 , 1 , 5 , 1 , 41 , 2 , 46 , - 2 , - 2 , 281 , 281 , 281 , 10 . 064524096 , 15 . 312895557 , - 5 . 248371461 , 0 . 308727733 , 2 . 5315674107 , 2 . 8402951437 <nl> + 050 , 3 , 5 , 51 , 007 , Virginia , Amelia County , 12690 , 12690 , 12747 , 12805 , 57 , 58 , 40 , 152 , 8 , 106 , 32 , 46 , 7 , 19 , 18 , - 7 , 25 , 12 , 0 , 0 , 128 , 128 , 128 , 11 . 897307451 , 8 . 2968065122 , 3 . 6005009393 , 1 . 4871634314 , - 0 . 547902317 , 0 . 9392611146 <nl> + 050 , 3 , 5 , 51 , 009 , Virginia , Amherst County , 32353 , 32353 , 32367 , 32167 , 14 , - 200 , 81 , 317 , 79 , 343 , 2 , - 26 , 2 , 6 , 13 , - 181 , 15 , - 175 , - 3 , 1 , 1538 , 1538 , 1538 , 9 . 8242786748 , 10 . 630055475 , - 0 . 8057768 , 0 . 1859484923 , - 5 . 609446183 , - 5 . 423497691 <nl> + 050 , 3 , 5 , 51 , 011 , Virginia , Appomattox County , 14973 , 14977 , 15026 , 15041 , 49 , 15 , 41 , 162 , 27 , 146 , 14 , 16 , 0 , 1 , 35 , - 1 , 35 , 0 , 0 , - 1 , 56 , 56 , 56 , 10 . 775933748 , 9 . 7116439951 , 1 . 0642897529 , 0 . 0665181096 , - 0 . 06651811 , 0 <nl> + 050 , 3 , 5 , 51 , 013 , Virginia , Arlington County , 207627 , 207628 , 209291 , 216004 , 1663 , 6713 , 773 , 2988 , 202 , 967 , 571 , 2021 , 478 , 1632 , 596 , 3020 , 1074 , 4652 , 18 , 40 , 2892 , 2892 , 2892 , 14 . 05142313 , 4 . 5474317826 , 9 . 5039913472 , 7 . 6746728741 , 14 . 201906912 , 21 . 876579786 <nl> + 050 , 3 , 5 , 51 , 015 , Virginia , Augusta County , 73750 , 73750 , 73642 , 73549 , - 108 , - 93 , 140 , 614 , 168 , 642 , - 28 , - 28 , 4 , 15 , - 81 , - 74 , - 77 , - 59 , - 3 , - 6 , 2708 , 2708 , 2708 , 8 . 3429014002 , 8 . 7233594445 , - 0 . 380458044 , 0 . 2038168095 , - 1 . 00549626 , - 0 . 801679451 <nl> + 050 , 3 , 5 , 51 , 017 , Virginia , Bath County , 4731 , 4731 , 4724 , 4657 , - 7 , - 67 , 9 , 31 , 5 , 57 , 4 , - 26 , 0 , - 1 , - 10 , - 39 , - 10 , - 40 , - 1 , - 1 , 53 , 53 , 53 , 6 . 6091035071 , 12 . 152222578 , - 5 . 54311907 , - 0 . 213196887 , - 8 . 314678606 , - 8 . 527875493 <nl> + 050 , 3 , 5 , 51 , 019 , Virginia , Bedford County , 68676 , 68676 , 68745 , 69246 , 69 , 501 , 155 , 607 , 150 , 603 , 5 , 4 , 5 , 17 , 61 , 477 , 66 , 494 , - 2 , 3 , 287 , 287 , 287 , 8 . 7976752107 , 8 . 7397004152 , 0 . 0579747955 , 0 . 2463928807 , 6 . 9134943583 , 7 . 159887239 <nl> + 050 , 3 , 5 , 51 , 021 , Virginia , Bland County , 6824 , 6824 , 6820 , 6818 , - 4 , - 2 , 10 , 41 , 10 , 84 , 0 , - 43 , 1 , 2 , - 5 , 40 , - 4 , 42 , 0 , - 1 , 686 , 686 , 686 , 6 . 0126118199 , 12 . 318521777 , - 6 . 305909957 , 0 . 2932981376 , 5 . 8659627511 , 6 . 1592608887 <nl> + 050 , 3 , 5 , 51 , 023 , Virginia , Botetourt County , 33148 , 33148 , 33176 , 32928 , 28 , - 248 , 57 , 242 , 68 , 301 , - 11 , - 59 , 3 , 12 , 37 , - 202 , 40 , - 190 , - 1 , 1 , 275 , 275 , 275 , 7 . 3217959579 , 9 . 1068619146 , - 1 . 785065957 , 0 . 3630642624 , - 6 . 11158175 , - 5 . 748517488 <nl> + 050 , 3 , 5 , 51 , 025 , Virginia , Brunswick County , 17434 , 17432 , 17438 , 17204 , 6 , - 234 , 39 , 157 , 33 , 222 , 6 , - 65 , 0 , 0 , 1 , - 171 , 1 , - 171 , - 1 , 2 , 2184 , 2184 , 2184 , 9 . 0641417932 , 12 . 816811962 , - 3 . 752670169 , 0 , - 9 . 872409214 , - 9 . 872409214 <nl> + 050 , 3 , 5 , 51 , 027 , Virginia , Buchanan County , 24098 , 24103 , 24011 , 23581 , - 92 , - 430 , 49 , 205 , 85 , 290 , - 36 , - 85 , 0 , 0 , - 54 , - 346 , - 54 , - 346 , - 2 , 1 , 1173 , 1173 , 1173 , 8 . 6148932594 , 12 . 186922172 , - 3 . 572028912 , 0 , - 14 . 54025887 , - 14 . 54025887 <nl> + 050 , 3 , 5 , 51 , 029 , Virginia , Buckingham County , 17146 , 17146 , 17124 , 17278 , - 22 , 154 , 39 , 170 , 24 , 147 , 15 , 23 , 0 , 0 , - 38 , 131 , - 38 , 131 , 1 , 0 , 2326 , 2326 , 2326 , 9 . 8831463287 , 8 . 5460147666 , 1 . 3371315621 , 0 , 7 . 6158362886 , 7 . 6158362886 <nl> + 050 , 3 , 5 , 51 , 031 , Virginia , Campbell County , 54842 , 54842 , 54919 , 55032 , 77 , 113 , 120 , 488 , 101 , 474 , 19 , 14 , 12 , 53 , 48 , 49 , 60 , 102 , - 2 , - 3 , 468 , 468 , 468 , 8 . 8766814308 , 8 . 6220225373 , 0 . 2546588935 , 0 . 9640658111 , 0 . 8913061273 , 1 . 8553719384 <nl> + 050 , 3 , 5 , 51 , 033 , Virginia , Caroline County , 28545 , 28545 , 28630 , 28674 , 85 , 44 , 84 , 372 , 46 , 251 , 38 , 121 , 6 , 16 , 40 , - 94 , 46 , - 78 , 1 , 1 , 513 , 513 , 513 , 12 . 983386849 , 8 . 7602959654 , 4 . 2230908837 , 0 . 5584252408 , - 3 . 28074829 , - 2 . 722323049 <nl> + 050 , 3 , 5 , 51 , 035 , Virginia , Carroll County , 30042 , 30042 , 30028 , 29981 , - 14 , - 47 , 50 , 250 , 94 , 372 , - 44 , - 122 , 3 , 11 , 27 , 65 , 30 , 76 , 0 , - 1 , 337 , 337 , 337 , 8 . 3320835208 , 12 . 398140279 , - 4 . 066056758 , 0 . 3666116749 , 2 . 1663417154 , 2 . 5329533903 <nl> + 050 , 3 , 5 , 51 , 036 , Virginia , Charles City County , 7256 , 7256 , 7276 , 7241 , 20 , - 35 , 14 , 49 , 7 , 91 , 7 , - 42 , 0 , 0 , 14 , 7 , 14 , 7 , - 1 , 0 , 0 , 0 , 0 , 6 . 7507060687 , 12 . 537025556 , - 5 . 786319487 , 0 , 0 . 9643865812 , 0 . 9643865812 <nl> + 050 , 3 , 5 , 51 , 037 , Virginia , Charlotte County , 12586 , 12586 , 12580 , 12505 , - 6 , - 75 , 24 , 114 , 23 , 154 , 1 , - 40 , 0 , 3 , - 6 , - 38 , - 6 , - 35 , - 1 , 0 , 175 , 175 , 175 , 9 . 08909707 , 12 . 278253937 , - 3 . 189156867 , 0 . 239186765 , - 3 . 029699023 , - 2 . 790512258 <nl> + 050 , 3 , 5 , 51 , 041 , Virginia , Chesterfield County , 316236 , 316236 , 317159 , 320277 , 923 , 3118 , 906 , 3629 , 482 , 1885 , 424 , 1744 , 130 , 343 , 369 , 1046 , 499 , 1389 , 0 , - 15 , 4651 , 4651 , 4651 , 11 . 386241129 , 5 . 9143192415 , 5 . 4719218871 , 1 . 0761864721 , 3 . 2818981043 , 4 . 3580845763 <nl> + 050 , 3 , 5 , 51 , 043 , Virginia , Clarke County , 14034 , 14034 , 14072 , 14258 , 38 , 186 , 34 , 126 , 26 , 145 , 8 , - 19 , 2 , 18 , 29 , 185 , 31 , 203 , - 1 , 2 , 255 , 255 , 255 , 8 . 895164137 , 10 . 236498412 , - 1 . 341334275 , 1 . 2707377339 , 13 . 060360042 , 14 . 331097776 <nl> + 050 , 3 , 5 , 51 , 045 , Virginia , Craig County , 5190 , 5190 , 5193 , 5099 , 3 , - 94 , 8 , 41 , 3 , 67 , 5 , - 26 , 0 , 1 , - 1 , - 68 , - 1 , - 67 , - 1 , - 1 , 9 , 9 , 9 , 7 . 9673532841 , 13 . 01982122 , - 5 . 052467936 , 0 . 1943256899 , - 13 . 21414691 , - 13 . 01982122 <nl> + 050 , 3 , 5 , 51 , 047 , Virginia , Culpeper County , 46689 , 46689 , 46842 , 47476 , 153 , 634 , 150 , 626 , 88 , 345 , 62 , 281 , 20 , 75 , 70 , 278 , 90 , 353 , 1 , 0 , 1761 , 1761 , 1761 , 13 . 274242456 , 7 . 3156767531 , 5 . 9585657033 , 1 . 5903645115 , 5 . 8949511228 , 7 . 4853156343 <nl> + 050 , 3 , 5 , 51 , 049 , Virginia , Cumberland County , 10052 , 10052 , 10049 , 9969 , - 3 , - 80 , 24 , 106 , 7 , 93 , 17 , 13 , 0 , - 2 , - 19 , - 91 , - 19 , - 93 , - 1 , 0 , 37 , 37 , 37 , 10 . 590468578 , 9 . 2916375262 , 1 . 2988310521 , - 0 . 199820162 , - 9 . 091817364 , - 9 . 291637526 <nl> + 050 , 3 , 5 , 51 , 051 , Virginia , Dickenson County , 15903 , 15904 , 15900 , 15741 , - 4 , - 159 , 39 , 162 , 61 , 199 , - 22 , - 37 , 0 , 0 , 18 , - 121 , 18 , - 121 , 0 , - 1 , 335 , 335 , 335 , 10 . 239878638 , 12 . 578616352 , - 2 . 338737714 , 0 , - 7 . 648304415 , - 7 . 648304415 <nl> + 050 , 3 , 5 , 51 , 053 , Virginia , Dinwiddie County , 28001 , 28001 , 27992 , 27918 , - 9 , - 74 , 53 , 226 , 46 , 251 , 7 , - 25 , 4 , 18 , - 18 , - 65 , - 14 , - 47 , - 2 , - 2 , 919 , 919 , 919 , 8 . 0844213915 , 8 . 9787157932 , - 0 . 894294402 , 0 . 6438919692 , - 2 . 325165444 , - 1 . 681273475 <nl> + 050 , 3 , 5 , 51 , 057 , Virginia , Essex County , 11151 , 11151 , 11178 , 11205 , 27 , 27 , 34 , 141 , 9 , 107 , 25 , 34 , 1 , 2 , 2 , - 9 , 3 , - 7 , - 1 , 0 , 190 , 190 , 190 , 12 . 598847339 , 9 . 5608274137 , 3 . 0380199258 , 0 . 1787070545 , - 0 . 804181745 , - 0 . 625474691 <nl> + 050 , 3 , 5 , 51 , 059 , Virginia , Fairfax County , 1081726 , 1081725 , 1085934 , 1100692 , 4209 , 14758 , 3723 , 14966 , 1156 , 4631 , 2567 , 10335 , 1461 , 5944 , 193 , - 1437 , 1654 , 4507 , - 12 , - 84 , 9290 , 9290 , 9289 , 13 . 68866921 , 4 . 2357495063 , 9 . 4529197037 , 5 . 436686475 , - 1 . 314353712 , 4 . 1223327629 <nl> + 050 , 3 , 5 , 51 , 061 , Virginia , Fauquier County , 65203 , 65203 , 65384 , 66071 , 181 , 687 , 179 , 729 , 112 , 503 , 67 , 226 , 13 , 50 , 100 , 411 , 113 , 461 , 1 , 0 , 389 , 389 , 389 , 11 . 091247956 , 7 . 652808946 , 3 . 4384390095 , 0 . 760716595 , 6 . 2530904112 , 7 . 0138070062 <nl> + 050 , 3 , 5 , 51 , 063 , Virginia , Floyd County , 15279 , 15279 , 15329 , 15378 , 50 , 49 , 41 , 155 , 31 , 142 , 10 , 13 , 0 , 1 , 40 , 36 , 40 , 37 , 0 , - 1 , 85 , 85 , 85 , 10 . 095417983 , 9 . 2487055069 , 0 . 846712476 , 0 . 0651317289 , 2 . 3447422412 , 2 . 4098739701 <nl> + 050 , 3 , 5 , 51 , 065 , Virginia , Fluvanna County , 25691 , 25693 , 25762 , 26061 , 69 , 299 , 72 , 288 , 36 , 171 , 36 , 117 , 2 , 7 , 32 , 175 , 34 , 182 , - 1 , 0 , 1272 , 1272 , 1272 , 11 . 114755996 , 6 . 5993863728 , 4 . 5153696235 , 0 . 2701503194 , 6 . 7537579839 , 7 . 0239083033 <nl> + 050 , 3 , 5 , 51 , 067 , Virginia , Franklin County , 56159 , 56159 , 56225 , 56419 , 66 , 194 , 125 , 543 , 126 , 538 , - 1 , 5 , 8 , 35 , 60 , 157 , 68 , 192 , - 1 , - 3 , 1472 , 1472 , 1472 , 9 . 6409928625 , 9 . 5522176059 , 0 . 0887752566 , 0 . 6214267959 , 2 . 787543056 , 3 . 4089698519 <nl> + 050 , 3 , 5 , 51 , 069 , Virginia , Frederick County , 78305 , 78305 , 78512 , 79666 , 207 , 1154 , 228 , 909 , 144 , 527 , 84 , 382 , 15 , 49 , 107 , 717 , 122 , 766 , 1 , 6 , 967 , 967 , 967 , 11 . 493380875 , 6 . 663379231 , 4 . 8300016437 , 0 . 6195551847 , 9 . 0657360695 , 9 . 6852912542 <nl> + 050 , 3 , 5 , 51 , 071 , Virginia , Giles County , 17286 , 17286 , 17289 , 17124 , 3 , - 165 , 46 , 178 , 53 , 205 , - 7 , - 27 , 0 , 2 , 11 , - 141 , 11 , - 139 , - 1 , 1 , 136 , 136 , 136 , 10 . 344927789 , 11 . 914102229 , - 1 . 56917444 , 0 . 1162351437 , - 8 . 194577631 , - 8 . 078342487 <nl> + 050 , 3 , 5 , 51 , 073 , Virginia , Gloucester County , 36858 , 36858 , 36920 , 36901 , 62 , - 19 , 85 , 349 , 93 , 367 , - 8 , - 18 , 10 , 19 , 61 , - 18 , 71 , 1 , - 1 , - 2 , 368 , 368 , 368 , 9 . 4553040463 , 9 . 9429701575 , - 0 . 487666111 , 0 . 514758673 , - 0 . 487666111 , 0 . 0270925617 <nl> + 050 , 3 , 5 , 51 , 075 , Virginia , Goochland County , 21717 , 21717 , 21765 , 21883 , 48 , 118 , 41 , 166 , 24 , 144 , 17 , 22 , 4 , 17 , 27 , 80 , 31 , 97 , 0 , - 1 , 1405 , 1405 , 1405 , 7 . 6063049853 , 6 . 5982404692 , 1 . 0080645161 , 0 . 7789589443 , 3 . 6656891496 , 4 . 4446480938 <nl> + 050 , 3 , 5 , 51 , 077 , Virginia , Grayson County , 15533 , 15533 , 15484 , 15328 , - 49 , - 156 , 31 , 125 , 43 , 185 , - 12 , - 60 , 0 , 0 , - 35 , - 95 , - 35 , - 95 , - 2 , - 1 , 178 , 178 , 178 , 8 . 1137219265 , 12 . 008308451 , - 3 . 894586525 , 0 , - 6 . 166428664 , - 6 . 166428664 <nl> + 050 , 3 , 5 , 51 , 079 , Virginia , Greene County , 18403 , 18401 , 18454 , 18660 , 53 , 206 , 53 , 234 , 21 , 128 , 32 , 106 , 0 , 0 , 21 , 101 , 21 , 101 , 0 , - 1 , 137 , 137 , 137 , 12 . 609796842 , 6 . 8976666487 , 5 . 7121301935 , 0 , 5 . 44269009 , 5 . 44269009 <nl> + 050 , 3 , 5 , 51 , 081 , Virginia , Greensville County , 12243 , 12243 , 12233 , 12112 , - 10 , - 121 , 33 , 122 , 8 , 107 , 25 , 15 , 0 , 4 , - 35 , - 141 , - 35 , - 137 , 0 , 1 , 3527 , 3527 , 3527 , 10 . 022591908 , 8 . 7903060177 , 1 . 2322858903 , 0 . 3286095708 , - 11 . 58348737 , - 11 . 2548778 <nl> + 050 , 3 , 5 , 51 , 083 , Virginia , Halifax County , 36241 , 36241 , 36206 , 36056 , - 35 , - 150 , 90 , 368 , 113 , 482 , - 23 , - 114 , 3 , 17 , - 14 , - 51 , - 11 , - 34 , - 1 , - 2 , 738 , 738 , 738 , 10 . 185159558 , 13 . 340344856 , - 3 . 155185298 , 0 . 4705100883 , - 1 . 411530265 , - 0 . 941020177 <nl> + 050 , 3 , 5 , 51 , 085 , Virginia , Hanover County , 99863 , 99863 , 99961 , 100342 , 98 , 381 , 238 , 918 , 161 , 686 , 77 , 232 , 7 , 33 , 18 , 122 , 25 , 155 , - 4 , - 6 , 1980 , 1980 , 1980 , 9 . 1661133383 , 6 . 8496228214 , 2 . 3164905169 , 0 . 3295008063 , 1 . 2181544959 , 1 . 5476553022 <nl> + 050 , 3 , 5 , 51 , 087 , Virginia , Henrico County , 306935 , 306935 , 307411 , 310445 , 476 , 3034 , 963 , 3895 , 575 , 2375 , 388 , 1520 , 270 , 874 , - 180 , 657 , 90 , 1531 , - 2 , - 17 , 2494 , 2494 , 2494 , 12 . 608115807 , 7 . 687875492 , 4 . 9202403149 , 2 . 8291381811 , 2 . 1267091361 , 4 . 9558473172 <nl> + 050 , 3 , 5 , 51 , 089 , Virginia , Henry County , 54151 , 54154 , 54122 , 53741 , - 32 , - 381 , 118 , 515 , 155 , 666 , - 37 , - 151 , 28 , 107 , - 19 , - 338 , 9 , - 231 , - 4 , 1 , 561 , 561 , 561 , 9 . 549150311 , 12 . 348998266 , - 2 . 799847955 , 1 . 98399822 , - 6 . 26720933 , - 4 . 28321111 <nl> + 050 , 3 , 5 , 51 , 091 , Virginia , Highland County , 2321 , 2319 , 2311 , 2267 , - 8 , - 44 , 4 , 14 , 3 , 24 , 1 , - 10 , 0 , 0 , - 9 , - 35 , - 9 , - 35 , 0 , 1 , 0 , 0 , 0 , 6 . 1162079511 , 10 . 484927916 , - 4 . 368719965 , 0 , - 15 . 29051988 , - 15 . 29051988 <nl> + 050 , 3 , 5 , 51 , 093 , Virginia , Isle of Wight County , 35270 , 35270 , 35299 , 35356 , 29 , 57 , 80 , 347 , 75 , 318 , 5 , 29 , 4 , 7 , 22 , 25 , 26 , 32 , - 2 , - 4 , 310 , 310 , 310 , 9 . 8223763357 , 9 . 0014860944 , 0 . 8208902413 , 0 . 1981459203 , 0 . 7076640011 , 0 . 9058099214 <nl> + 050 , 3 , 5 , 51 , 095 , Virginia , James City County , 67009 , 67009 , 67328 , 68200 , 319 , 872 , 180 , 666 , 122 , 533 , 58 , 133 , 40 , 121 , 224 , 622 , 264 , 743 , - 3 , - 4 , 1100 , 1100 , 1100 , 9 . 8282273774 , 7 . 8655333215 , 1 . 9626940558 , 1 . 7856088779 , 9 . 1789150581 , 10 . 964523936 <nl> + 050 , 3 , 5 , 51 , 097 , Virginia , King and Queen County , 6945 , 6945 , 6974 , 6997 , 29 , 23 , 14 , 55 , 5 , 71 , 9 , - 16 , 0 , 3 , 19 , 37 , 19 , 40 , 1 , - 1 , 0 , 0 , 0 , 7 . 8734521509 , 10 . 163910958 , - 2 . 290458808 , 0 . 4294610264 , 5 . 2966859924 , 5 . 7261470188 <nl> + 050 , 3 , 5 , 51 , 099 , Virginia , King George County , 23584 , 23584 , 23668 , 24161 , 84 , 493 , 74 , 285 , 15 , 126 , 59 , 159 , 5 , 5 , 20 , 324 , 25 , 329 , 0 , 5 , 301 , 301 , 301 , 11 . 917455937 , 5 . 2687699931 , 6 . 6486859437 , 0 . 2090781743 , 13 . 548265697 , 13 . 757343871 <nl> + 050 , 3 , 5 , 51 , 101 , Virginia , King William County , 15935 , 15935 , 15990 , 15981 , 55 , - 9 , 44 , 203 , 13 , 129 , 31 , 74 , 1 , 7 , 23 , - 88 , 24 , - 81 , 0 , - 2 , 72 , 72 , 72 , 12 . 699008476 , 8 . 0698132683 , 4 . 6291952082 , 0 . 437896844 , - 5 . 504988896 , - 5 . 067092052 <nl> + 050 , 3 , 5 , 51 , 103 , Virginia , Lancaster County , 11391 , 11391 , 11383 , 11282 , - 8 , - 101 , 21 , 86 , 45 , 196 , - 24 , - 110 , 3 , 14 , 14 , - 4 , 17 , 10 , - 1 , - 1 , 183 , 183 , 183 , 7 . 5887932936 , 17 . 295389367 , - 9 . 706596073 , 1 . 2353849548 , - 0 . 35296713 , 0 . 8824178248 <nl> + 050 , 3 , 5 , 51 , 105 , Virginia , Lee County , 25587 , 25587 , 25517 , 25146 , - 70 , - 371 , 58 , 251 , 82 , 309 , - 24 , - 58 , 0 , 0 , - 41 , - 307 , - 41 , - 307 , - 5 , - 6 , 1706 , 1706 , 1706 , 9 . 9086118074 , 12 . 198251189 , - 2 . 289639382 , 0 , - 12 . 11929811 , - 12 . 11929811 <nl> + 050 , 3 , 5 , 51 , 107 , Virginia , Loudoun County , 312311 , 312311 , 315305 , 325405 , 2994 , 10100 , 1251 , 4943 , 214 , 971 , 1037 , 3972 , 297 , 925 , 1614 , 5146 , 1911 , 6071 , 46 , 57 , 1172 , 1172 , 1172 , 15 . 429757613 , 3 . 0310124705 , 12 . 398745142 , 2 . 8874217665 , 16 . 063429633 , 18 . 950851399 <nl> + 050 , 3 , 5 , 51 , 109 , Virginia , Louisa County , 33153 , 33153 , 33271 , 33395 , 118 , 124 , 91 , 373 , 70 , 281 , 21 , 92 , 5 , 11 , 91 , 22 , 96 , 33 , 1 , - 1 , 211 , 211 , 211 , 11 . 190111901 , 8 . 4300843008 , 2 . 7600276003 , 0 . 3300033 , 0 . 6600066001 , 0 . 9900099001 <nl> + 050 , 3 , 5 , 51 , 111 , Virginia , Lunenburg County , 12914 , 12914 , 12921 , 12874 , 7 , - 47 , 25 , 116 , 24 , 163 , 1 , - 47 , 5 , 22 , 2 , - 21 , 7 , 1 , - 1 , - 1 , 1203 , 1203 , 1203 , 8 . 9939910835 , 12 . 63810816 , - 3 . 644117077 , 1 . 7057569296 , - 1 . 628222524 , 0 . 0775344059 <nl> + 050 , 3 , 5 , 51 , 113 , Virginia , Madison County , 13308 , 13308 , 13297 , 13169 , - 11 , - 128 , 35 , 137 , 20 , 113 , 15 , 24 , 0 , 0 , - 25 , - 154 , - 25 , - 154 , - 1 , 2 , 193 , 193 , 193 , 10 . 352905615 , 8 . 5392579158 , 1 . 8136476989 , 0 , - 11 . 63757273 , - 11 . 63757273 <nl> + 050 , 3 , 5 , 51 , 115 , Virginia , Mathews County , 8978 , 8978 , 8974 , 8962 , - 4 , - 12 , 14 , 63 , 20 , 115 , - 6 , - 52 , 4 , 8 , 0 , 32 , 4 , 40 , - 2 , 0 , 94 , 94 , 94 , 7 . 0249776985 , 12 . 823371989 , - 5 . 798394291 , 0 . 8920606601 , 3 . 5682426405 , 4 . 4603033006 <nl> + 050 , 3 , 5 , 51 , 117 , Virginia , Mecklenburg County , 32727 , 32727 , 32710 , 32622 , - 17 , - 88 , 72 , 298 , 99 , 448 , - 27 , - 150 , 5 , 26 , 8 , 40 , 13 , 66 , - 3 , - 4 , 1740 , 1740 , 1740 , 9 . 1226351558 , 13 . 714565603 , - 4 . 591930448 , 0 . 7959346109 , 1 . 224514786 , 2 . 0204493969 <nl> + 050 , 3 , 5 , 51 , 119 , Virginia , Middlesex County , 10959 , 10959 , 10977 , 10854 , 18 , - 123 , 18 , 81 , 35 , 138 , - 17 , - 57 , 0 , 0 , 36 , - 67 , 36 , - 67 , - 1 , 1 , 393 , 393 , 393 , 7 . 4206403738 , 12 . 642572489 , - 5 . 221932115 , 0 , - 6 . 138060556 , - 6 . 138060556 <nl> + 050 , 3 , 5 , 51 , 121 , Virginia , Montgomery County , 94392 , 94392 , 94510 , 94342 , 118 , - 168 , 213 , 845 , 148 , 542 , 65 , 303 , 58 , 206 , - 3 , - 684 , 55 , - 478 , - 2 , 7 , 9237 , 9237 , 9237 , 8 . 9488064728 , 5 . 7399445068 , 3 . 208861966 , 2 . 1816025247 , - 7 . 243767606 , - 5 . 062165082 <nl> + 050 , 3 , 5 , 51 , 125 , Virginia , Nelson County , 15020 , 15020 , 15016 , 15097 , - 4 , 81 , 36 , 138 , 37 , 139 , - 1 , - 1 , 3 , 10 , - 5 , 72 , - 2 , 82 , - 1 , 0 , 102 , 102 , 102 , 9 . 1654767044 , 9 . 2318932023 , - 0 . 066416498 , 0 . 6641649786 , 4 . 7819878458 , 5 . 4461528244 <nl> + 050 , 3 , 5 , 51 , 127 , Virginia , New Kent County , 18429 , 18429 , 18567 , 18822 , 138 , 255 , 44 , 178 , 22 , 100 , 22 , 78 , 1 , 4 , 111 , 173 , 112 , 177 , 4 , 0 , 551 , 551 , 551 , 9 . 5215170237 , 5 . 3491668673 , 4 . 1723501565 , 0 . 2139666747 , 9 . 2540586804 , 9 . 4680253551 <nl> + 050 , 3 , 5 , 51 , 131 , Virginia , Northampton County , 12389 , 12389 , 12394 , 12377 , 5 , - 17 , 35 , 138 , 40 , 215 , - 5 , - 77 , 8 , 32 , 3 , 29 , 11 , 61 , - 1 , - 1 , 326 , 326 , 326 , 11 . 142061281 , 17 . 359008518 , - 6 . 216947237 , 2 . 5836663841 , 2 . 3414476606 , 4 . 9251140446 <nl> + 050 , 3 , 5 , 51 , 133 , Virginia , Northumberland County , 12330 , 12330 , 12354 , 12461 , 24 , 107 , 24 , 104 , 35 , 158 , - 11 , - 54 , 1 , 2 , 36 , 159 , 37 , 161 , - 2 , 0 , 0 , 0 , 0 , 8 . 3820269998 , 12 . 734233327 , - 4 . 352206327 , 0 . 1611928269 , 12 . 81482974 , 12 . 976022567 <nl> + 050 , 3 , 5 , 51 , 135 , Virginia , Nottoway County , 15853 , 15853 , 15844 , 15840 , - 9 , - 4 , 38 , 166 , 31 , 216 , 7 , - 50 , 7 , 22 , - 22 , 24 , - 15 , 46 , - 1 , 0 , 1836 , 1836 , 1836 , 10 . 47847494 , 13 . 634642091 , - 3 . 156167151 , 1 . 3887135463 , 1 . 5149602323 , 2 . 9036737786 <nl> + 050 , 3 , 5 , 51 , 137 , Virginia , Orange County , 33481 , 33481 , 33559 , 33938 , 78 , 379 , 92 , 358 , 77 , 273 , 15 , 85 , 9 , 23 , 54 , 269 , 63 , 292 , 0 , 2 , 601 , 601 , 601 , 10 . 607878869 , 8 . 089248411 , 2 . 5186304576 , 0 . 6815117709 , 7 . 9707246248 , 8 . 6522363957 <nl> + 050 , 3 , 5 , 51 , 139 , Virginia , Page County , 24042 , 24042 , 24042 , 23958 , 0 , - 84 , 59 , 228 , 64 , 277 , - 5 , - 49 , 3 , 13 , 3 , - 47 , 6 , - 34 , - 1 , - 1 , 194 , 194 , 194 , 9 . 5 , 11 . 541666667 , - 2 . 041666667 , 0 . 5416666667 , - 1 . 958333333 , - 1 . 416666667 <nl> + 050 , 3 , 5 , 51 , 141 , Virginia , Patrick County , 18490 , 18490 , 18490 , 18390 , 0 , - 100 , 39 , 151 , 60 , 230 , - 21 , - 79 , 6 , 16 , 16 , - 36 , 22 , - 20 , - 1 , - 1 , 203 , 203 , 203 , 8 . 1887201735 , 12 . 472885033 , - 4 . 284164859 , 0 . 8676789588 , - 1 . 952277657 , - 1 . 084598698 <nl> + 050 , 3 , 5 , 51 , 143 , Virginia , Pittsylvania County , 63506 , 63506 , 63464 , 62844 , - 42 , - 620 , 123 , 535 , 162 , 659 , - 39 , - 124 , 7 , 36 , - 6 , - 533 , 1 , - 497 , - 4 , 1 , 839 , 839 , 839 , 8 . 4713557336 , 10 . 434810147 , - 1 . 963454413 , 0 . 5700351522 , - 8 . 439687114 , - 7 . 869651962 <nl> + 050 , 3 , 5 , 51 , 145 , Virginia , Powhatan County , 28046 , 28046 , 28098 , 28110 , 52 , 12 , 56 , 224 , 49 , 191 , 7 , 33 , 2 , 9 , 44 , - 28 , 46 , - 19 , - 1 , - 2 , 2395 , 2395 , 2395 , 7 . 9703956732 , 6 . 7961855964 , 1 . 1742100769 , 0 . 3202391119 , - 0 . 996299459 , - 0 . 676060347 <nl> + 050 , 3 , 5 , 51 , 147 , Virginia , Prince Edward County , 23368 , 23364 , 23393 , 23343 , 29 , - 50 , 51 , 209 , 41 , 221 , 10 , - 12 , 4 , 14 , 17 , - 52 , 21 , - 38 , - 2 , 0 , 4318 , 4318 , 4318 , 8 . 9438548442 , 9 . 4573776104 , - 0 . 513522766 , 0 . 5991098939 , - 2 . 22526532 , - 1 . 626155426 <nl> + 050 , 3 , 5 , 51 , 149 , Virginia , Prince George County , 35725 , 35725 , 35692 , 36555 , - 33 , 863 , 83 , 364 , 42 , 216 , 41 , 148 , 49 , 38 , - 125 , 666 , - 76 , 704 , 2 , 11 , 4772 , 4772 , 4772 , 10 . 076542971 , 5 . 9794870375 , 4 . 0970559331 , 1 . 0519467936 , 18 . 436751699 , 19 . 488698493 <nl> + 050 , 3 , 5 , 51 , 153 , Virginia , Prince William County , 402002 , 402002 , 406395 , 419006 , 4393 , 12611 , 1609 , 6554 , 342 , 1424 , 1267 , 5130 , 455 , 1311 , 2589 , 6094 , 3044 , 7405 , 82 , 76 , 2520 , 2520 , 2520 , 15 . 880765834 , 3 . 4504440872 , 12 . 430321747 , 3 . 1766377797 , 14 . 766156087 , 17 . 942793866 <nl> + 050 , 3 , 5 , 51 , 155 , Virginia , Pulaski County , 34872 , 34872 , 34796 , 34607 , - 76 , - 189 , 66 , 291 , 115 , 393 , - 49 , - 102 , 1 , 0 , - 26 , - 83 , - 25 , - 83 , - 2 , - 4 , 960 , 960 , 960 , 8 . 3858046482 , 11 . 325158855 , - 2 . 939354207 , 0 , - 2 . 391827443 , - 2 . 391827443 <nl> + 050 , 3 , 5 , 51 , 157 , Virginia , Rappahannock County , 7373 , 7506 , 7512 , 7444 , 6 , - 68 , 17 , 63 , 10 , 70 , 7 , - 7 , 0 , 3 , - 1 , - 63 , - 1 , - 60 , 0 , - 1 , 35 , 35 , 35 , 8 . 42471249 , 9 . 3607916555 , - 0 . 936079166 , 0 . 4011767852 , - 8 . 42471249 , - 8 . 023535705 <nl> + 050 , 3 , 5 , 51 , 159 , Virginia , Richmond County , 9254 , 9254 , 9266 , 9220 , 12 , - 46 , 16 , 71 , 14 , 98 , 2 , - 27 , 4 , 17 , 7 , - 37 , 11 , - 20 , - 1 , 1 , 1792 , 1792 , 1792 , 7 . 6814886941 , 10 . 602618198 , - 2 . 921129503 , 1 . 8392296873 , - 4 . 003029319 , - 2 . 163799632 <nl> + 050 , 3 , 5 , 51 , 161 , Virginia , Roanoke County , 92376 , 92376 , 92335 , 92740 , - 41 , 405 , 199 , 828 , 221 , 860 , - 22 , - 32 , 26 , 105 , - 41 , 333 , - 15 , 438 , - 4 , - 1 , 2328 , 2328 , 2328 , 8 . 9477238957 , 9 . 2935296501 , - 0 . 345805754 , 1 . 1346751317 , 3 . 598541132 , 4 . 7332162637 <nl> + 050 , 3 , 5 , 51 , 163 , Virginia , Rockbridge County , 22307 , 22307 , 22287 , 22375 , - 20 , 88 , 41 , 189 , 51 , 203 , - 10 , - 14 , 1 , 5 , - 9 , 97 , - 8 , 102 , - 2 , 0 , 175 , 175 , 175 , 8 . 4635708208 , 9 . 0905019927 , - 0 . 626931172 , 0 . 22390399 , 4 . 3437374054 , 4 . 5676413954 <nl> + 050 , 3 , 5 , 51 , 165 , Virginia , Rockingham County , 76314 , 76314 , 76375 , 76589 , 61 , 214 , 216 , 856 , 170 , 640 , 46 , 216 , 9 , 59 , 10 , - 55 , 19 , 4 , - 4 , - 6 , 1471 , 1471 , 1471 , 11 . 192175937 , 8 . 3679820088 , 2 . 824193928 , 0 . 7714233414 , - 0 . 719123454 , 0 . 0522998876 <nl> + 050 , 3 , 5 , 51 , 167 , Virginia , Russell County , 28897 , 28891 , 28869 , 28749 , - 22 , - 120 , 67 , 285 , 87 , 347 , - 20 , - 62 , 1 , 2 , - 2 , - 58 , - 1 , - 56 , - 1 , - 2 , 434 , 434 , 434 , 9 . 8927418515 , 12 . 044847096 , - 2 . 152105245 , 0 . 0694227498 , - 2 . 013259745 , - 1 . 943836995 <nl> + 050 , 3 , 5 , 51 , 169 , Virginia , Scott County , 23177 , 23177 , 23171 , 23126 , - 6 , - 45 , 55 , 212 , 77 , 305 , - 22 , - 93 , 3 , 15 , 16 , 35 , 19 , 50 , - 3 , - 2 , 652 , 652 , 652 , 9 . 1582607944 , 13 . 175799728 , - 4 . 017538933 , 0 . 6479901505 , 1 . 5119770179 , 2 . 1599671685 <nl> + 050 , 3 , 5 , 51 , 171 , Virginia , Shenandoah County , 41993 , 41993 , 42068 , 42289 , 75 , 221 , 117 , 457 , 105 , 436 , 12 , 21 , 16 , 72 , 47 , 130 , 63 , 202 , 0 , - 2 , 427 , 427 , 427 , 10 . 834904039 , 10 . 337020046 , 0 . 497883993 , 1 . 7070308332 , 3 . 0821390045 , 4 . 7891698377 <nl> + 050 , 3 , 5 , 51 , 173 , Virginia , Smyth County , 32208 , 32208 , 32194 , 32029 , - 14 , - 165 , 76 , 308 , 110 , 436 , - 34 , - 128 , 6 , 16 , 16 , - 51 , 22 , - 35 , - 2 , - 2 , 774 , 774 , 774 , 9 . 5915793407 , 13 . 577690236 , - 3 . 986110895 , 0 . 4982638619 , - 1 . 58821606 , - 1 . 089952198 <nl> + 050 , 3 , 5 , 51 , 175 , Virginia , Southampton County , 18570 , 18570 , 18575 , 18408 , 5 , - 167 , 37 , 150 , 28 , 207 , 9 , - 57 , 3 , 4 , - 6 , - 115 , - 3 , - 111 , - 1 , 1 , 1567 , 1567 , 1567 , 8 . 1118351675 , 11 . 194332531 , - 3 . 082497364 , 0 . 2163156045 , - 6 . 219073628 , - 6 . 002758024 <nl> + 050 , 3 , 5 , 51 , 177 , Virginia , Spotsylvania County , 122397 , 122397 , 122895 , 124327 , 498 , 1432 , 391 , 1542 , 155 , 729 , 236 , 813 , 46 , 148 , 211 , 471 , 257 , 619 , 5 , 0 , 524 , 524 , 524 , 12 . 474617955 , 5 . 897533391 , 6 . 5770845637 , 1 . 197304447 , 3 . 8103405037 , 5 . 0076449507 <nl> + 050 , 3 , 5 , 51 , 179 , Virginia , Stafford County , 128961 , 128961 , 129772 , 132133 , 811 , 2361 , 408 , 1654 , 128 , 564 , 280 , 1090 , 79 , 172 , 438 , 1087 , 517 , 1259 , 14 , 12 , 3593 , 3593 , 3593 , 12 . 630533972 , 4 . 3069051755 , 8 . 3236287967 , 1 . 3134533514 , 8 . 3007197266 , 9 . 614173078 <nl> + 050 , 3 , 5 , 51 , 181 , Virginia , Surry County , 7058 , 7058 , 7061 , 6931 , 3 , - 130 , 14 , 66 , 4 , 56 , 10 , 10 , 0 , 0 , - 5 , - 141 , - 5 , - 141 , - 2 , 1 , 0 , 0 , 0 , 9 . 4339622642 , 8 . 0045740423 , 1 . 4293882218 , 0 , - 20 . 15437393 , - 20 . 15437393 <nl> + 050 , 3 , 5 , 51 , 183 , Virginia , Sussex County , 12087 , 12087 , 12068 , 12087 , - 19 , 19 , 22 , 102 , 13 , 144 , 9 , - 42 , 3 , 7 , - 30 , 54 , - 27 , 61 , - 1 , 0 , 2593 , 2593 , 2593 , 8 . 4454564272 , 11 . 922997309 , - 3 . 477540882 , 0 . 579590147 , 4 . 4711239909 , 5 . 0507141379 <nl> + 050 , 3 , 5 , 51 , 185 , Virginia , Tazewell County , 45078 , 45078 , 45060 , 44715 , - 18 , - 345 , 118 , 470 , 162 , 635 , - 44 , - 165 , 3 , 9 , 24 , - 188 , 27 , - 179 , - 1 , - 1 , 1645 , 1645 , 1645 , 10 . 470620997 , 14 . 146477304 , - 3 . 675856307 , 0 . 2005012531 , - 4 . 188248399 , - 3 . 987747146 <nl> + 050 , 3 , 5 , 51 , 187 , Virginia , Warren County , 37575 , 37442 , 37555 , 37749 , 113 , 194 , 106 , 430 , 89 , 330 , 17 , 100 , 13 , 52 , 82 , 45 , 95 , 97 , 1 , - 3 , 725 , 725 , 725 , 11 . 420376076 , 8 . 7644746627 , 2 . 6559014129 , 1 . 3810687347 , 1 . 1951556358 , 2 . 5762243706 <nl> + 050 , 3 , 5 , 51 , 191 , Virginia , Washington County , 54876 , 54876 , 54901 , 54827 , 25 , - 74 , 121 , 555 , 147 , 583 , - 26 , - 28 , 5 , 22 , 47 , - 64 , 52 , - 42 , - 1 , - 4 , 1627 , 1627 , 1627 , 10 . 11592301 , 10 . 626275882 , - 0 . 510352873 , 0 . 4009915427 , - 1 . 166520852 , - 0 . 765529309 <nl> + 050 , 3 , 5 , 51 , 193 , Virginia , Westmoreland County , 17454 , 17454 , 17455 , 17595 , 1 , 140 , 42 , 185 , 31 , 191 , 11 , - 6 , 4 , 15 , - 12 , 130 , - 8 , 145 , - 2 , 1 , 70 , 70 , 70 , 10 . 556348074 , 10 . 89871612 , - 0 . 342368046 , 0 . 8559201141 , 7 . 4179743224 , 8 . 2738944365 <nl> + 050 , 3 , 5 , 51 , 195 , Virginia , Wise County , 41452 , 41452 , 41476 , 41565 , 24 , 89 , 111 , 479 , 121 , 473 , - 10 , 6 , 3 , 12 , 34 , 75 , 37 , 87 , - 3 , - 4 , 3131 , 3131 , 3131 , 11 . 536469937 , 11 . 391963006 , 0 . 1445069303 , 0 . 2890138606 , 1 . 8063366289 , 2 . 0953504895 <nl> + 050 , 3 , 5 , 51 , 197 , Virginia , Wythe County , 29235 , 29235 , 29211 , 29204 , - 24 , - 7 , 66 , 272 , 89 , 353 , - 23 , - 81 , 1 , 4 , 0 , 72 , 1 , 76 , - 2 , - 2 , 260 , 260 , 260 , 9 . 3126765386 , 12 . 085936831 , - 2 . 773260293 , 0 . 1369511256 , 2 . 4651202602 , 2 . 6020713858 <nl> + 050 , 3 , 5 , 51 , 199 , Virginia , York County , 65464 , 65464 , 65459 , 66134 , - 5 , 675 , 147 , 590 , 99 , 392 , 48 , 198 , 59 , 93 , - 114 , 381 , - 55 , 474 , 2 , 3 , 648 , 648 , 648 , 8 . 9670423199 , 5 . 9577637108 , 3 . 009278609 , 1 . 4134490436 , 5 . 7905815659 , 7 . 2040306095 <nl> + 050 , 3 , 5 , 51 , 510 , Virginia , Alexandria city , 139966 , 139966 , 140894 , 144301 , 928 , 3407 , 669 , 2630 , 155 , 700 , 514 , 1930 , 402 , 1413 , 13 , 71 , 415 , 1484 , - 1 , - 7 , 1827 , 1829 , 1829 , 18 . 4435211 , 4 . 9089219657 , 13 . 534599134 , 9 . 909009625 , 0 . 4979049422 , 10 . 406914567 <nl> + 050 , 3 , 5 , 51 , 515 , Virginia , Bedford city , 6222 , 6222 , 6248 , 6181 , 26 , - 67 , 8 , 49 , 11 , 84 , - 3 , - 35 , 0 , 0 , 28 , - 32 , 28 , - 32 , 1 , 0 , 368 , 368 , 368 , 7 . 8847855821 , 13 . 516775284 , - 5 . 631989702 , 0 , - 5 . 149247727 , - 5 . 149247727 <nl> + 050 , 3 , 5 , 51 , 520 , Virginia , Bristol city , 17835 , 17835 , 17825 , 17750 , - 10 , - 75 , 51 , 152 , 61 , 260 , - 10 , - 108 , 0 , 1 , 1 , 33 , 1 , 34 , - 1 , - 1 , 431 , 431 , 431 , 8 . 5453267744 , 14 . 617006325 , - 6 . 07167955 , 0 . 0562192551 , 1 . 8552354181 , 1 . 9114546732 <nl> + 050 , 3 , 5 , 51 , 530 , Virginia , Buena Vista city , 6650 , 6650 , 6640 , 6636 , - 10 , - 4 , 21 , 67 , 11 , 86 , 10 , - 19 , 0 , 0 , - 19 , 15 , - 19 , 15 , - 1 , 0 , 400 , 400 , 400 , 10 . 093401627 , 12 . 955709551 , - 2 . 862307924 , 0 , 2 . 2597167822 , 2 . 2597167822 <nl> + 050 , 3 , 5 , 51 , 540 , Virginia , Charlottesville city , 43475 , 43475 , 43559 , 43511 , 84 , - 48 , 135 , 554 , 55 , 270 , 80 , 284 , 58 , 239 , - 55 , - 579 , 3 , - 340 , 1 , 8 , 2438 , 2438 , 2438 , 12 . 725393362 , 6 . 201906512 , 6 . 5234868497 , 5 . 4898357643 , - 13 . 29964396 , - 7 . 8098082 <nl> + 050 , 3 , 5 , 51 , 550 , Virginia , Chesapeake city , 222209 , 222209 , 223052 , 225050 , 843 , 1998 , 700 , 2757 , 384 , 1544 , 316 , 1213 , 121 , 204 , 399 , 588 , 520 , 792 , 7 , - 7 , 3721 , 3721 , 3721 , 12 . 305234076 , 6 . 8912881442 , 5 . 413945932 , 0 . 9105069828 , 2 . 6244024798 , 3 . 5349094626 <nl> + 050 , 3 , 5 , 51 , 570 , Virginia , Colonial Heights city , 17411 , 17411 , 17383 , 17440 , - 28 , 57 , 57 , 239 , 48 , 201 , 9 , 38 , 3 , 8 , - 39 , 12 , - 36 , 20 , - 1 , - 1 , 171 , 171 , 171 , 13 . 726560032 , 11 . 54409442 , 2 . 1824656118 , 0 . 4594664446 , 0 . 6891996669 , 1 . 1486661115 <nl> + 050 , 3 , 5 , 51 , 580 , Virginia , Covington city , 5961 , 5961 , 5976 , 5939 , 15 , - 37 , 15 , 48 , 5 , 76 , 10 , - 28 , 0 , 0 , 5 , - 7 , 5 , - 7 , 0 , - 2 , 87 , 87 , 87 , 8 . 057070919 , 12 . 757028955 , - 4 . 699958036 , 0 , - 1 . 174989509 , - 1 . 174989509 <nl> + 050 , 3 , 5 , 51 , 590 , Virginia , Danville city , 43055 , 43055 , 42890 , 42852 , - 165 , - 38 , 131 , 568 , 176 , 677 , - 45 , - 109 , 1 , 6 , - 122 , 67 , - 121 , 73 , 1 , - 2 , 1483 , 1483 , 1483 , 13 . 249049474 , 15 . 791560729 , - 2 . 542511255 , 0 . 139954748 , 1 . 5628280189 , 1 . 7027827669 <nl> + 050 , 3 , 5 , 51 , 595 , Virginia , Emporia city , 5927 , 5927 , 5940 , 5871 , 13 , - 69 , 11 , 37 , 8 , 83 , 3 , - 46 , 2 , 9 , 8 , - 31 , 10 , - 22 , 0 , - 1 , 246 , 246 , 246 , 6 . 265345864 , 14 . 054694776 , - 7 . 789348912 , 1 . 524003048 , - 5 . 249343832 , - 3 . 725340784 <nl> + 050 , 3 , 5 , 51 , 600 , Virginia , Fairfax city , 22565 , 22565 , 22624 , 22549 , 59 , - 75 , 83 , 396 , 49 , 194 , 34 , 202 , 39 , 147 , - 12 , - 425 , 27 , - 278 , - 2 , 1 , 521 , 521 , 521 , 17 . 532596905 , 8 . 5892015142 , 8 . 9433953911 , 6 . 5083124875 , - 18 . 81654971 , - 12 . 30823722 <nl> + 050 , 3 , 5 , 51 , 610 , Virginia , Falls Church city , 12332 , 12332 , 12496 , 12751 , 164 , 255 , 28 , 175 , 6 , 76 , 22 , 99 , 20 , 85 , 119 , 71 , 139 , 156 , 3 , 0 , 42 , 42 , 42 , 13 . 863033232 , 6 . 0205172892 , 7 . 8425159425 , 6 . 733473284 , 5 . 6244306254 , 12 . 357903909 <nl> + 050 , 3 , 5 , 51 , 620 , Virginia , Franklin city , 8582 , 8582 , 8626 , 8588 , 44 , - 38 , 36 , 138 , 10 , 93 , 26 , 45 , 0 , 0 , 18 , - 83 , 18 , - 83 , 0 , 0 , 129 , 129 , 129 , 16 . 033461136 , 10 . 805158592 , 5 . 2283025444 , 0 , - 9 . 643313582 , - 9 . 643313582 <nl> + 050 , 3 , 5 , 51 , 630 , Virginia , Fredericksburg city , 24286 , 24286 , 24432 , 25691 , 146 , 1259 , 95 , 396 , 47 , 202 , 48 , 194 , 22 , 93 , 75 , 958 , 97 , 1051 , 1 , 14 , 2596 , 2596 , 2596 , 15 . 801129222 , 8 . 0601719769 , 7 . 7409572452 , 3 . 7108712567 , 38 . 225964128 , 41 . 936835385 <nl> + 050 , 3 , 5 , 51 , 640 , Virginia , Galax city , 7042 , 7042 , 7079 , 6983 , 37 , - 96 , 32 , 118 , 17 , 108 , 15 , 10 , - 2 , - 3 , 25 , - 104 , 23 , - 107 , - 1 , 1 , 377 , 377 , 377 , 16 . 782818945 , 15 . 360546153 , 1 . 4222727919 , - 0 . 426681838 , - 14 . 79163704 , - 15 . 21831887 <nl> + 050 , 3 , 5 , 51 , 650 , Virginia , Hampton city , 137436 , 137436 , 137328 , 136401 , - 108 , - 927 , 442 , 1826 , 281 , 1149 , 161 , 677 , 115 , 173 , - 389 , - 1795 , - 274 , - 1622 , 5 , 18 , 4454 , 4454 , 4454 , 13 . 341662739 , 8 . 3951645606 , 4 . 9464981789 , 1 . 2640239069 , - 13 . 11516135 , - 11 . 85113744 <nl> + 050 , 3 , 5 , 51 , 660 , Virginia , Harrisonburg city , 48914 , 48914 , 49045 , 49973 , 131 , 928 , 139 , 517 , 54 , 241 , 85 , 276 , 52 , 200 , - 6 , 453 , 46 , 653 , 0 , - 1 , 7583 , 7583 , 7583 , 10 . 4425458 , 4 . 8678018138 , 5 . 5747439859 , 4 . 039669555 , 9 . 1498515421 , 13 . 189521097 <nl> + 050 , 3 , 5 , 51 , 670 , Virginia , Hopewell city , 22591 , 22591 , 22651 , 22580 , 60 , - 71 , 90 , 391 , 58 , 273 , 32 , 118 , 7 , 24 , 21 , - 215 , 28 , - 191 , 0 , 2 , 237 , 237 , 237 , 17 . 289027437 , 12 . 071366983 , 5 . 2176604541 , 1 . 0612190754 , - 9 . 506754217 , - 8 . 445535142 <nl> + 050 , 3 , 5 , 51 , 678 , Virginia , Lexington city , 7042 , 7042 , 7070 , 6995 , 28 , - 75 , 17 , 43 , 8 , 50 , 9 , - 7 , 2 , 6 , 18 , - 75 , 20 , - 69 , - 1 , 1 , 2567 , 2567 , 2567 , 6 . 1144685389 , 7 . 1098471383 , - 0 . 995378599 , 0 . 8531816566 , - 10 . 66477071 , - 9 . 811589051 <nl> + 050 , 3 , 5 , 51 , 680 , Virginia , Lynchburg city , 75568 , 75568 , 75716 , 76504 , 148 , 788 , 277 , 1056 , 163 , 693 , 114 , 363 , 38 , 155 , - 1 , 275 , 37 , 430 , - 3 , - 5 , 10198 , 10198 , 10198 , 13 . 874655104 , 9 . 1052424123 , 4 . 7694126922 , 2 . 0365260807 , 3 . 6131914335 , 5 . 6497175141 <nl> + 050 , 3 , 5 , 51 , 683 , Virginia , Manassas city , 37821 , 37821 , 38254 , 39300 , 433 , 1046 , 158 , 638 , 26 , 155 , 132 , 483 , 82 , 300 , 213 , 261 , 295 , 561 , 6 , 2 , 46 , 46 , 46 , 16 . 453052067 , 3 . 9972148439 , 12 . 455837223 , 7 . 7365448591 , 6 . 7307940274 , 14 . 467338886 <nl> + 050 , 3 , 5 , 51 , 685 , Virginia , Manassas Park city , 14273 , 14273 , 14431 , 15332 , 158 , 901 , 63 , 233 , 4 , 34 , 59 , 199 , 20 , 71 , 77 , 621 , 97 , 692 , 2 , 10 , 6 , 6 , 6 , 15 . 657023822 , 2 . 2847159225 , 13 . 372307899 , 4 . 7710244263 , 41 . 729664348 , 46 . 500688775 <nl> + 050 , 3 , 5 , 51 , 690 , Virginia , Martinsville city , 13821 , 13821 , 13755 , 13559 , - 66 , - 196 , 52 , 203 , 36 , 212 , 16 , - 9 , 2 , 8 , - 83 , - 193 , - 81 , - 185 , - 1 , - 2 , 377 , 377 , 377 , 14 . 864172219 , 15 . 523174929 , - 0 . 659002709 , 0 . 585780186 , - 14 . 13194699 , - 13 . 5461668 <nl> + 050 , 3 , 5 , 51 , 700 , Virginia , Newport News city , 180719 , 180719 , 180618 , 179611 , - 101 , - 1007 , 731 , 3033 , 343 , 1379 , 388 , 1654 , 203 , 377 , - 710 , - 3076 , - 507 , - 2699 , 18 , 38 , 7499 , 7499 , 7499 , 16 . 839288342 , 7 . 6562408912 , 9 . 1830474504 , 2 . 093112992 , - 17 . 07802537 , - 14 . 98491238 <nl> + 050 , 3 , 5 , 51 , 710 , Virginia , Norfolk city , 242803 , 242803 , 242915 , 242628 , 112 , - 287 , 936 , 3793 , 492 , 1977 , 444 , 1816 , 396 , 431 , - 744 , - 2555 , - 348 , - 2124 , 16 , 21 , 32780 , 32783 , 32733 , 15 . 623744962 , 8 . 1434600025 , 7 . 4802849593 , 1 . 7753319479 , - 10 . 5242996 , - 8 . 748967651 <nl> + 050 , 3 , 5 , 51 , 720 , Virginia , Norton city , 3958 , 3958 , 3983 , 4054 , 25 , 71 , 21 , 59 , 3 , 37 , 18 , 22 , 0 , 0 , 8 , 49 , 8 , 49 , - 1 , 0 , 68 , 68 , 68 , 14 . 682095309 , 9 . 2074157024 , 5 . 4746796068 , 0 , 12 . 193604579 , 12 . 193604579 <nl> + 050 , 3 , 5 , 51 , 730 , Virginia , Petersburg city , 32420 , 32420 , 32553 , 32326 , 133 , - 227 , 166 , 664 , 123 , 453 , 43 , 211 , 15 , 52 , 77 , - 496 , 92 , - 444 , - 2 , 6 , 1058 , 1058 , 1058 , 20 . 468872825 , 13 . 964456912 , 6 . 5044159127 , 1 . 6029840164 , - 15 . 29000139 , - 13 . 68701737 <nl> + 050 , 3 , 5 , 51 , 735 , Virginia , Poquoson city , 12150 , 12150 , 12140 , 12000 , - 10 , - 140 , 18 , 78 , 12 , 94 , 6 , - 16 , 2 , - 1 , - 16 , - 124 , - 14 , - 125 , - 2 , 1 , 51 , 51 , 51 , 6 . 4623032312 , 7 . 787903894 , - 1 . 325600663 , - 0 . 082850041 , - 10 . 27340514 , - 10 . 35625518 <nl> + 050 , 3 , 5 , 51 , 740 , Virginia , Portsmouth city , 95535 , 95535 , 95627 , 95684 , 92 , 57 , 382 , 1568 , 260 , 1048 , 122 , 520 , 58 , 48 , - 84 , - 510 , - 26 , - 462 , - 4 , - 1 , 3416 , 3416 , 3416 , 16 . 392157273 , 10 . 955982667 , 5 . 4361746057 , 0 . 5018007328 , - 5 . 331632786 , - 4 . 829832054 <nl> + 050 , 3 , 5 , 51 , 750 , Virginia , Radford city , 16408 , 16408 , 16448 , 16414 , 40 , - 34 , 35 , 135 , 8 , 76 , 27 , 59 , 14 , 54 , - 1 , - 149 , 13 , - 95 , 0 , 2 , 2652 , 2652 , 2652 , 8 . 2161767391 , 4 . 6254032013 , 3 . 5907735378 , 3 . 2864706956 , - 9 . 068224697 , - 5 . 781754002 <nl> + 050 , 3 , 5 , 51 , 760 , Virginia , Richmond city , 204214 , 204214 , 204159 , 205533 , - 55 , 1374 , 720 , 3034 , 478 , 1880 , 242 , 1154 , 136 , 484 , - 434 , - 246 , - 298 , 238 , 1 , - 18 , 12725 , 12725 , 12725 , 14 . 811126407 , 9 . 1776261191 , 5 . 633500288 , 2 . 3627505541 , - 1 . 200902141 , 1 . 161848413 <nl> + 050 , 3 , 5 , 51 , 770 , Virginia , Roanoke city , 97032 , 97032 , 96856 , 96714 , - 176 , - 142 , 348 , 1454 , 301 , 1137 , 47 , 317 , 20 , 82 , - 246 , - 544 , - 226 , - 462 , 3 , 3 , 2126 , 2126 , 2126 , 15 . 0229891 , 11 . 747688175 , 3 . 2753009247 , 0 . 847238725 , - 5 . 620705688 , - 4 . 773466963 <nl> + 050 , 3 , 5 , 51 , 775 , Virginia , Salem city , 24802 , 24802 , 24866 , 24961 , 64 , 95 , 65 , 262 , 84 , 298 , - 19 , - 36 , 3 , 16 , 81 , 119 , 84 , 135 , - 1 , - 4 , 1718 , 1718 , 1718 , 10 . 516386698 , 11 . 961386397 , - 1 . 444999699 , 0 . 6422220884 , 4 . 7765267827 , 5 . 4187488711 <nl> + 050 , 3 , 5 , 51 , 790 , Virginia , Staunton city , 23746 , 23746 , 23779 , 23769 , 33 , - 10 , 74 , 297 , 80 , 298 , - 6 , - 1 , 3 , 13 , 39 , - 20 , 42 , - 7 , - 3 , - 2 , 1185 , 1185 , 1185 , 12 . 492639017 , 12 . 534701775 , - 0 . 042062758 , 0 . 5468158492 , - 0 . 841255153 , - 0 . 294439303 <nl> + 050 , 3 , 5 , 51 , 800 , Virginia , Suffolk city , 84585 , 84592 , 84872 , 84930 , 280 , 58 , 270 , 1114 , 191 , 686 , 79 , 428 , 25 , 54 , 173 , - 426 , 198 , - 372 , 3 , 2 , 1128 , 1128 , 1128 , 13 . 121164651 , 8 . 0799990577 , 5 . 0411655929 , 0 . 6360349112 , - 5 . 017608744 , - 4 . 381573833 <nl> + 050 , 3 , 5 , 51 , 810 , Virginia , Virginia Beach city , 437994 , 437994 , 439122 , 442707 , 1128 , 3585 , 1506 , 6101 , 686 , 2710 , 820 , 3391 , 590 , 796 , - 284 , - 582 , 306 , 214 , 2 , - 20 , 9253 , 9253 , 9254 , 13 . 837149833 , 6 . 1463163493 , 7 . 6908334836 , 1 . 8053386768 , - 1 . 319983806 , 0 . 4853548704 <nl> + 050 , 3 , 5 , 51 , 820 , Virginia , Waynesboro city , 21006 , 21006 , 21065 , 21311 , 59 , 246 , 77 , 309 , 61 , 225 , 16 , 84 , 12 , 44 , 34 , 119 , 46 , 163 , - 3 , - 1 , 192 , 192 , 192 , 14 . 583726638 , 10 . 619218426 , 3 . 9645082122 , 2 . 0766471588 , 5 . 6163866339 , 7 . 6930337927 <nl> + 050 , 3 , 5 , 51 , 830 , Virginia , Williamsburg city , 14068 , 14068 , 14135 , 14444 , 67 , 309 , 22 , 112 , 10 , 93 , 12 , 19 , 7 , 29 , 48 , 257 , 55 , 286 , 0 , 4 , 4171 , 4171 , 4171 , 7 . 8379229504 , 6 . 508275307 , 1 . 3296476434 , 2 . 0294621925 , 17 . 985233913 , 20 . 014696106 <nl> + 050 , 3 , 5 , 51 , 840 , Virginia , Winchester city , 26203 , 26203 , 26255 , 26587 , 52 , 332 , 111 , 402 , 67 , 239 , 44 , 163 , 28 , 99 , - 20 , 70 , 8 , 169 , 0 , 0 , 976 , 976 , 976 , 15 . 215169751 , 9 . 0458347527 , 6 . 1693349987 , 3 . 7470194164 , 2 . 6494076681 , 6 . 3964270845 <nl> + 040 , 4 , 9 , 53 , 000 , Washington , Washington , 6724540 , 6724540 , 6742950 , 6830038 , 18410 , 87088 , 21833 , 86767 , 11764 , 48434 , 10069 , 38333 , 4744 , 17144 , 3626 , 31540 , 8370 , 48684 , - 29 , 71 , 139375 , 139375 , 145118 , 12 . 785246697 , 7 . 1368220468 , 5 . 6484246505 , 2 . 5261939375 , 4 . 6474659817 , 7 . 1736599192 <nl> + 050 , 4 , 9 , 53 , 001 , Washington , Adams County , 18728 , 18728 , 18818 , 19027 , 90 , 209 , 119 , 458 , 18 , 128 , 101 , 330 , 21 , 74 , - 32 , - 197 , - 11 , - 123 , 0 , 2 , 162 , 162 , 162 , 24 . 203989959 , 6 . 764433875 , 17 . 439556084 , 3 . 910688334 , - 10 . 41088651 , - 6 . 500198177 <nl> + 050 , 4 , 9 , 53 , 003 , Washington , Asotin County , 21623 , 21623 , 21703 , 21933 , 80 , 230 , 59 , 236 , 63 , 235 , - 4 , 1 , 3 , 9 , 81 , 219 , 84 , 228 , 0 , 1 , 174 , 174 , 174 , 10 . 816756806 , 10 . 770923091 , 0 . 0458337153 , 0 . 4125034375 , 10 . 037583647 , 10 . 450087084 <nl> + 050 , 4 , 9 , 53 , 005 , Washington , Benton County , 175177 , 175177 , 176472 , 180678 , 1295 , 4206 , 629 , 2504 , 290 , 1199 , 339 , 1305 , 66 , 222 , 869 , 2650 , 935 , 2872 , 21 , 29 , 1426 , 1426 , 1426 , 14 . 022119558 , 6 . 7142657147 , 7 . 3078538429 , 1 . 2431751365 , 14 . 839703206 , 16 . 082878342 <nl> + 050 , 4 , 9 , 53 , 007 , Washington , Chelan County , 72453 , 72453 , 72754 , 73477 , 301 , 723 , 256 , 1017 , 154 , 624 , 102 , 393 , 34 , 107 , 166 , 226 , 200 , 333 , - 1 , - 3 , 928 , 928 , 928 , 13 . 909499354 , 8 . 5344420814 , 5 . 3750572724 , 1 . 4634379851 , 3 . 0909998564 , 4 . 5544378415 <nl> + 050 , 4 , 9 , 53 , 009 , Washington , Clallam County , 71404 , 71404 , 71513 , 71838 , 109 , 325 , 169 , 657 , 226 , 900 , - 57 , - 243 , 20 , 82 , 150 , 485 , 170 , 567 , - 4 , 1 , 1899 , 1899 , 1899 , 9 . 1663120592 , 12 . 556591862 , - 3 . 390279803 , 1 . 1440450363 , 6 . 7666078367 , 7 . 910652873 <nl> + 050 , 4 , 9 , 53 , 011 , Washington , Clark County , 425363 , 425363 , 427014 , 433418 , 1651 , 6404 , 1392 , 5454 , 692 , 2864 , 700 , 2590 , 280 , 784 , 673 , 3027 , 953 , 3811 , - 2 , 3 , 3210 , 3210 , 3463 , 12 . 677352772 , 6 . 6571210741 , 6 . 0202316976 , 1 . 8223404057 , 7 . 0360005207 , 8 . 8583409264 <nl> + 050 , 4 , 9 , 53 , 013 , Washington , Columbia County , 4078 , 4078 , 4114 , 4050 , 36 , - 64 , 9 , 33 , 5 , 45 , 4 , - 12 , 0 , 1 , 32 , - 53 , 32 , - 52 , 0 , 0 , 75 , 75 , 75 , 8 . 0842724155 , 11 . 024007839 , - 2 . 939735424 , 0 . 244977952 , - 12 . 98383146 , - 12 . 7388535 <nl> + 050 , 4 , 9 , 53 , 015 , Washington , Cowlitz County , 102410 , 102410 , 102469 , 102478 , 59 , 9 , 299 , 1234 , 236 , 971 , 63 , 263 , 23 , 85 , - 23 , - 338 , 0 , - 253 , - 4 , - 1 , 1207 , 1207 , 1207 , 12 . 042137723 , 9 . 4756205263 , 2 . 5665171971 , 0 . 8294827443 , - 3 . 298413736 , - 2 . 468930992 <nl> + 050 , 4 , 9 , 53 , 017 , Washington , Douglas County , 38431 , 38431 , 38587 , 38971 , 156 , 384 , 133 , 529 , 69 , 294 , 64 , 235 , 33 , 119 , 60 , 34 , 93 , 153 , - 1 , - 4 , 190 , 190 , 190 , 13 . 641403853 , 7 . 5814229351 , 6 . 0599809175 , 3 . 068671188 , 0 . 8767631966 , 3 . 9454343846 <nl> + 050 , 4 , 9 , 53 , 019 , Washington , Ferry County , 7551 , 7551 , 7556 , 7689 , 5 , 133 , 16 , 61 , 8 , 71 , 8 , - 10 , 2 , 10 , - 4 , 130 , - 2 , 140 , - 1 , 3 , 252 , 252 , 252 , 8 . 0026238111 , 9 . 3145293539 , - 1 . 311905543 , 1 . 3119055428 , 17 . 054772056 , 18 . 366677599 <nl> + 050 , 4 , 9 , 53 , 021 , Washington , Franklin County , 78163 , 78163 , 79215 , 83455 , 1052 , 4240 , 419 , 1690 , 84 , 383 , 335 , 1307 , 72 , 241 , 628 , 2655 , 700 , 2896 , 17 , 37 , 1846 , 1846 , 2762 , 20 . 778262741 , 4 . 7089198992 , 16 . 069342841 , 2 . 9630540358 , 32 . 642773714 , 35 . 605827749 <nl> + 050 , 4 , 9 , 53 , 023 , Washington , Garfield County , 2266 , 2266 , 2274 , 2262 , 8 , - 12 , 6 , 17 , 5 , 25 , 1 , - 8 , 0 , 5 , 7 , - 10 , 7 , - 5 , 0 , 1 , 36 , 36 , 36 , 7 . 4955908289 , 11 . 02292769 , - 3 . 527336861 , 2 . 2045855379 , - 4 . 409171076 , - 2 . 204585538 <nl> + 050 , 4 , 9 , 53 , 025 , Washington , Grant County , 89120 , 89120 , 89701 , 91265 , 581 , 1564 , 411 , 1628 , 139 , 623 , 272 , 1005 , 84 , 337 , 220 , 224 , 304 , 561 , 5 , - 2 , 1245 , 1245 , 1245 , 17 . 992330051 , 6 . 8852712664 , 11 . 107058785 , 3 . 7244565277 , 2 . 475603152 , 6 . 2000596797 <nl> + 050 , 4 , 9 , 53 , 027 , Washington , Grays Harbor County , 72797 , 72797 , 72870 , 72546 , 73 , - 324 , 215 , 823 , 184 , 743 , 31 , 80 , 20 , 76 , 25 , - 484 , 45 , - 408 , - 3 , 4 , 2731 , 2731 , 2731 , 11 . 319249601 , 10 . 218958024 , 1 . 1002915773 , 1 . 0452769984 , - 6 . 656764042 , - 5 . 611487044 <nl> + 050 , 4 , 9 , 53 , 029 , Washington , Island County , 78506 , 78506 , 78676 , 78971 , 170 , 295 , 234 , 895 , 149 , 588 , 85 , 307 , 74 , 66 , 16 , - 72 , 90 , - 6 , - 5 , - 6 , 1466 , 1466 , 1466 , 11 . 354481849 , 7 . 459704276 , 3 . 8947775727 , 0 . 8373137453 , - 0 . 913433177 , - 0 . 076119431 <nl> + 050 , 4 , 9 , 53 , 031 , Washington , Jefferson County , 29872 , 29872 , 29912 , 29924 , 40 , 12 , 49 , 197 , 88 , 321 , - 39 , - 124 , 2 , 4 , 79 , 133 , 81 , 137 , - 2 , - 1 , 631 , 631 , 631 , 6 . 5846647503 , 10 . 729326827 , - 4 . 144662076 , 0 . 1336987767 , 4 . 4454843238 , 4 . 5791831005 <nl> + 050 , 4 , 9 , 53 , 033 , Washington , King County , 1931249 , 1931249 , 1937157 , 1969722 , 5908 , 32565 , 6197 , 24464 , 2886 , 11781 , 3311 , 12683 , 2167 , 9388 , 461 , 10450 , 2628 , 19838 , - 31 , 44 , 37131 , 37131 , 37510 , 12 . 523551408 , 6 . 0309008802 , 6 . 4926505274 , 4 . 8058821376 , 5 . 3495385959 , 10 . 155420734 <nl> + 050 , 4 , 9 , 53 , 035 , Washington , Kitsap County , 251133 , 251133 , 251738 , 254633 , 605 , 2895 , 729 , 2886 , 464 , 1952 , 265 , 934 , 152 , 68 , 192 , 1882 , 344 , 1950 , - 4 , 11 , 8722 , 8722 , 9691 , 11 . 398757038 , 7 . 7097622099 , 3 . 6889948279 , 0 . 2685777819 , 7 . 4332850815 , 7 . 7018628634 <nl> + 050 , 4 , 9 , 53 , 037 , Washington , Kittitas County , 40915 , 40915 , 41039 , 41629 , 124 , 590 , 104 , 426 , 70 , 258 , 34 , 168 , 14 , 66 , 76 , 353 , 90 , 419 , 0 , 3 , 2417 , 2417 , 2417 , 10 . 306285382 , 6 . 2418348091 , 4 . 0644505734 , 1 . 5967484395 , 8 . 5401848357 , 10 . 136933275 <nl> + 050 , 4 , 9 , 53 , 039 , Washington , Klickitat County , 20318 , 20318 , 20400 , 20697 , 82 , 297 , 59 , 227 , 40 , 190 , 19 , 37 , 5 , 24 , 57 , 234 , 62 , 258 , 1 , 2 , 198 , 198 , 198 , 11 . 047035063 , 9 . 2464170134 , 1 . 80061805 , 1 . 1679684649 , 11 . 387692532 , 12 . 555660997 <nl> + 050 , 4 , 9 , 53 , 041 , Washington , Lewis County , 75455 , 75455 , 75492 , 75901 , 37 , 409 , 235 , 945 , 197 , 786 , 38 , 159 , 14 , 74 , - 10 , 183 , 4 , 257 , - 5 , - 7 , 941 , 941 , 941 , 12 . 484064653 , 10 . 383571235 , 2 . 1004934178 , 0 . 9775881316 , 2 . 417549028 , 3 . 3951371596 <nl> + 050 , 4 , 9 , 53 , 043 , Washington , Lincoln County , 10570 , 10570 , 10565 , 10476 , - 5 , - 89 , 22 , 90 , 28 , 127 , - 6 , - 37 , 0 , 3 , 2 , - 55 , 2 , - 52 , - 1 , 0 , 94 , 94 , 94 , 8 . 5547264864 , 12 . 071669597 , - 3 . 516943111 , 0 . 2851575495 , - 5 . 227888408 , - 4 . 942730859 <nl> + 050 , 4 , 9 , 53 , 045 , Washington , Mason County , 60699 , 60699 , 60762 , 61019 , 63 , 257 , 156 , 657 , 140 , 569 , 16 , 88 , 10 , 35 , 39 , 136 , 49 , 171 , - 2 , - 2 , 2332 , 2332 , 2454 , 10 . 789860487 , 9 . 3446432531 , 1 . 4452172342 , 0 . 5748023091 , 2 . 2335175438 , 2 . 8083198529 <nl> + 050 , 4 , 9 , 53 , 047 , Washington , Okanogan County , 41120 , 41120 , 41256 , 41411 , 136 , 155 , 141 , 572 , 109 , 397 , 32 , 175 , 14 , 47 , 90 , - 64 , 104 , - 17 , 0 , - 3 , 640 , 640 , 640 , 13 . 838653876 , 9 . 6047999806 , 4 . 2338538958 , 1 . 1370921891 , - 1 . 548380853 , - 0 . 411288664 <nl> + 050 , 4 , 9 , 53 , 049 , Washington , Pacific County , 20920 , 20920 , 20902 , 20930 , - 18 , 28 , 53 , 182 , 95 , 333 , - 42 , - 151 , 4 , 23 , 22 , 156 , 26 , 179 , - 2 , 0 , 292 , 292 , 292 , 8 . 7014725569 , 15 . 920826162 , - 7 . 219353605 , 1 . 0996366418 , 7 . 4584050488 , 8 . 5580416906 <nl> + 050 , 4 , 9 , 53 , 051 , Washington , Pend Oreille County , 13001 , 13001 , 12970 , 12936 , - 31 , - 34 , 27 , 134 , 32 , 146 , - 5 , - 12 , 0 , 1 , - 27 , - 21 , - 27 , - 20 , 1 , - 2 , 98 , 98 , 98 , 10 . 345093801 , 11 . 271520111 , - 0 . 926426311 , 0 . 0772021925 , - 1 . 621246043 , - 1 . 544043851 <nl> + 050 , 4 , 9 , 53 , 053 , Washington , Pierce County , 795225 , 795225 , 795371 , 807904 , 146 , 12533 , 2705 , 10957 , 1426 , 5836 , 1279 , 5121 , 426 , 1133 , - 1594 , 6232 , - 1168 , 7365 , 35 , 47 , 17945 , 17945 , 21382 , 13 . 668272754 , 7 . 2800985483 , 6 . 3881742059 , 1 . 4133570348 , 7 . 7740874148 , 9 . 1874444496 <nl> + 050 , 4 , 9 , 53 , 055 , Washington , San Juan County , 15769 , 15769 , 15759 , 15844 , - 10 , 85 , 23 , 97 , 23 , 117 , 0 , - 20 , 2 , 21 , - 10 , 83 , - 8 , 104 , - 2 , 1 , 187 , 187 , 187 , 6 . 1386577224 , 7 . 4043603455 , - 1 . 265702623 , 1 . 3289877543 , 5 . 2526658862 , 6 . 5816536405 <nl> + 050 , 4 , 9 , 53 , 057 , Washington , Skagit County , 116901 , 116901 , 117096 , 118109 , 195 , 1013 , 369 , 1479 , 270 , 1085 , 99 , 394 , 110 , 365 , - 8 , 262 , 102 , 627 , - 6 , - 8 , 1624 , 1624 , 1624 , 12 . 57626326 , 9 . 2259943454 , 3 . 3502689144 , 3 . 1036755171 , 2 . 2278437958 , 5 . 3315193129 <nl> + 050 , 4 , 9 , 53 , 059 , Washington , Skamania County , 11066 , 11066 , 11097 , 11137 , 31 , 40 , 21 , 102 , 11 , 86 , 10 , 16 , 0 , 3 , 21 , 21 , 21 , 24 , 0 , 0 , 25 , 25 , 25 , 9 . 1751371773 , 7 . 735899973 , 1 . 4392372043 , 0 . 2698569758 , 1 . 8889988306 , 2 . 1588558064 <nl> + 050 , 4 , 9 , 53 , 061 , Washington , Snohomish County , 713335 , 713335 , 715358 , 722400 , 2023 , 7042 , 2274 , 8995 , 1082 , 4519 , 1192 , 4476 , 430 , 1707 , 414 , 916 , 844 , 2623 , - 13 , - 57 , 10397 , 10397 , 10397 , 12 . 51253688 , 6 . 2861761159 , 6 . 2263607645 , 2 . 3745303452 , 1 . 2742060903 , 3 . 6487364355 <nl> + 050 , 4 , 9 , 53 , 063 , Washington , Spokane County , 471221 , 471221 , 472078 , 473761 , 857 , 1683 , 1463 , 5873 , 963 , 3964 , 500 , 1909 , 185 , 402 , 187 , - 608 , 372 , - 206 , - 15 , - 20 , 14692 , 14692 , 14546 , 12 . 418604012 , 8 . 3819762137 , 4 . 0366277982 , 0 . 8500389601 , - 1 . 285631064 , - 0 . 435592104 <nl> + 050 , 4 , 9 , 53 , 065 , Washington , Stevens County , 43531 , 43531 , 43504 , 43496 , - 27 , - 8 , 111 , 417 , 105 , 398 , 6 , 19 , 3 , 8 , - 34 , - 32 , - 31 , - 24 , - 2 , - 3 , 266 , 266 , 266 , 9 . 5862068966 , 9 . 1494252874 , 0 . 4367816092 , 0 . 183908046 , - 0 . 735632184 , - 0 . 551724138 <nl> + 050 , 4 , 9 , 53 , 067 , Washington , Thurston County , 252264 , 252264 , 253005 , 256591 , 741 , 3586 , 748 , 3015 , 444 , 1815 , 304 , 1200 , 106 , 215 , 332 , 2158 , 438 , 2373 , - 1 , 13 , 4222 , 4222 , 4222 , 11 . 832902927 , 7 . 1232898217 , 4 . 7096131053 , 0 . 8438056814 , 8 . 4694542343 , 9 . 3132599157 <nl> + 050 , 4 , 9 , 53 , 069 , Washington , Wahkiakum County , 3978 , 3978 , 3978 , 3991 , 0 , 13 , 8 , 29 , 3 , 43 , 5 , - 14 , 0 , 2 , - 4 , 25 , - 4 , 27 , - 1 , 0 , 48 , 48 , 48 , 7 . 2782030368 , 10 . 791818296 , - 3 . 513615259 , 0 . 501945037 , 6 . 2743129627 , 6 . 7762579997 <nl> + 050 , 4 , 9 , 53 , 071 , Washington , Walla Walla County , 58781 , 58781 , 58923 , 59588 , 142 , 665 , 169 , 662 , 147 , 580 , 22 , 82 , 31 , 98 , 92 , 485 , 123 , 583 , - 3 , 0 , 4489 , 4489 , 4489 , 11 . 171958721 , 9 . 7881209339 , 1 . 3838377872 , 1 . 6538549164 , 8 . 1848942292 , 9 . 8387491456 <nl> + 050 , 4 , 9 , 53 , 073 , Washington , Whatcom County , 201140 , 201140 , 201614 , 203663 , 474 , 2049 , 585 , 2270 , 335 , 1366 , 250 , 904 , 130 , 369 , 101 , 785 , 231 , 1154 , - 7 , - 9 , 5704 , 5704 , 5704 , 11 . 202214781 , 6 . 7410684544 , 4 . 4611463271 , 1 . 820976764 , 3 . 8738936579 , 5 . 694870422 <nl> + 050 , 4 , 9 , 53 , 075 , Washington , Whitman County , 44776 , 44776 , 44810 , 45077 , 34 , 267 , 110 , 428 , 51 , 224 , 59 , 204 , 62 , 244 , - 89 , - 183 , - 27 , 61 , 2 , 2 , 5948 , 5948 , 5761 , 9 . 5230678519 , 4 . 9840355113 , 4 . 5390323406 , 5 . 4290386819 , - 4 . 071779011 , 1 . 3572596705 <nl> + 050 , 4 , 9 , 53 , 077 , Washington , Yakima County , 243231 , 243231 , 244428 , 247141 , 1197 , 2713 , 1109 , 4427 , 433 , 1848 , 676 , 2579 , 145 , 626 , 369 , - 487 , 514 , 139 , 7 , - 5 , 3485 , 3485 , 3485 , 18 . 011713513 , 7 . 518781697 , 10 . 492931816 , 2 . 5469466138 , - 1 . 981410545 , 0 . 5655360692 <nl> + 040 , 3 , 5 , 54 , 000 , West Virginia , West Virginia , 1852994 , 1852996 , 1854368 , 1855364 , 1372 , 996 , 5127 , 20642 , 5380 , 21640 , - 253 , - 998 , 199 , 715 , 1481 , 1333 , 1680 , 2048 , - 55 , - 54 , 49382 , 49382 , 49382 , 11 . 1285667 , 11 . 666610957 , - 0 . 538044258 , 0 . 3854725894 , 0 . 718650296 , 1 . 1041228854 <nl> + 050 , 3 , 5 , 54 , 001 , West Virginia , Barbour County , 16589 , 16589 , 16590 , 16520 , 1 , - 70 , 44 , 170 , 55 , 197 , - 11 , - 27 , 0 , 1 , 12 , - 42 , 12 , - 41 , 0 , - 2 , 469 , 469 , 469 , 10 . 268800966 , 11 . 899728179 , - 1 . 630927212 , 0 . 0604047116 , - 2 . 536997886 , - 2 . 476593174 <nl> + 050 , 3 , 5 , 54 , 003 , West Virginia , Berkeley County , 104169 , 104169 , 104664 , 105750 , 495 , 1086 , 324 , 1300 , 213 , 844 , 111 , 456 , 21 , 81 , 355 , 548 , 376 , 629 , 8 , 1 , 910 , 910 , 910 , 12 . 356592242 , 8 . 0222798863 , 4 . 3343123556 , 0 . 7699107474 , 5 . 2087788835 , 5 . 9786896309 <nl> + 050 , 3 , 5 , 54 , 005 , West Virginia , Boone County , 24629 , 24627 , 24610 , 24444 , - 17 , - 166 , 78 , 313 , 75 , 300 , 3 , 13 , 0 , 0 , - 19 , - 179 , - 19 , - 179 , - 1 , 0 , 131 , 131 , 131 , 12 . 761446569 , 12 . 231418437 , 0 . 5300281323 , 0 , - 7 . 298079667 , - 7 . 298079667 <nl> + 050 , 3 , 5 , 54 , 007 , West Virginia , Braxton County , 14523 , 14529 , 14536 , 14485 , 7 , - 51 , 37 , 156 , 51 , 177 , - 14 , - 21 , 1 , 3 , 21 , - 32 , 22 , - 29 , - 1 , - 1 , 335 , 335 , 335 , 10 . 750835602 , 12 . 198063471 , - 1 . 447227869 , 0 . 2067468385 , - 2 . 205299611 , - 1 . 998552772 <nl> + 050 , 3 , 5 , 54 , 009 , West Virginia , Brooke County , 24069 , 24069 , 24006 , 23844 , - 63 , - 162 , 48 , 196 , 85 , 314 , - 37 , - 118 , 1 , 1 , - 26 , - 41 , - 25 , - 40 , - 1 , - 4 , 872 , 872 , 872 , 8 . 1922675026 , 13 . 124346917 , - 4 . 932079415 , 0 . 0417972832 , - 1 . 71368861 , - 1 . 671891327 <nl> + 050 , 3 , 5 , 54 , 011 , West Virginia , Cabell County , 96319 , 96317 , 96389 , 96653 , 72 , 264 , 308 , 1239 , 256 , 1075 , 52 , 164 , 18 , 73 , 6 , 34 , 24 , 107 , - 4 , - 7 , 3936 , 3936 , 3936 , 12 . 836584785 , 11 . 137472674 , 1 . 6991121103 , 0 . 7563120979 , 0 . 3522549497 , 1 . 1085670476 <nl> + 050 , 3 , 5 , 54 , 013 , West Virginia , Calhoun County , 7627 , 7627 , 7658 , 7652 , 31 , - 6 , 21 , 90 , 10 , 89 , 11 , 1 , 0 , 0 , 20 , - 6 , 20 , - 6 , 0 , - 1 , 22 , 22 , 22 , 11 . 757021555 , 11 . 626387982 , 0 . 1306335728 , 0 , - 0 . 783801437 , - 0 . 783801437 <nl> + 050 , 3 , 5 , 54 , 015 , West Virginia , Clay County , 9386 , 9386 , 9380 , 9357 , - 6 , - 23 , 31 , 127 , 13 , 111 , 18 , 16 , 0 , 0 , - 24 , - 40 , - 24 , - 40 , 0 , 1 , 74 , 74 , 74 , 13 . 556065539 , 11 . 848214762 , 1 . 7078507765 , 0 , - 4 . 269626941 , - 4 . 269626941 <nl> + 050 , 3 , 5 , 54 , 017 , West Virginia , Doddridge County , 8202 , 8202 , 8188 , 8171 , - 14 , - 17 , 17 , 73 , 14 , 77 , 3 , - 4 , 0 , 0 , - 16 , - 11 , - 16 , - 11 , - 1 , - 2 , 722 , 722 , 722 , 8 . 9247509016 , 9 . 4137783483 , - 0 . 489027447 , 0 , - 1 . 344825478 , - 1 . 344825478 <nl> + 050 , 3 , 5 , 54 , 019 , West Virginia , Fayette County , 46039 , 46039 , 46008 , 45699 , - 31 , - 309 , 144 , 581 , 161 , 672 , - 17 , - 91 , 4 , 12 , - 14 , - 224 , - 10 , - 212 , - 4 , - 6 , 1840 , 1840 , 1840 , 12 . 670788489 , 14 . 655369819 , - 1 . 98458133 , 0 . 2617030325 , - 4 . 885123273 , - 4 . 623420241 <nl> + 050 , 3 , 5 , 54 , 021 , West Virginia , Gilmer County , 8693 , 8693 , 8718 , 8705 , 25 , - 13 , 17 , 73 , 8 , 84 , 9 , - 11 , 1 , 5 , 15 , - 7 , 16 , - 2 , 0 , 0 , 2239 , 2239 , 2239 , 8 . 3797279458 , 9 . 6424266774 , - 1 . 262698732 , 0 . 5739539689 , - 0 . 803535556 , - 0 . 229581588 <nl> + 050 , 3 , 5 , 54 , 023 , West Virginia , Grant County , 11937 , 11937 , 11930 , 11891 , - 7 , - 39 , 31 , 120 , 18 , 117 , 13 , 3 , 0 , 0 , - 19 , - 42 , - 19 , - 42 , - 1 , 0 , 126 , 126 , 126 , 10 . 075143781 , 9 . 8232651862 , 0 . 2518785945 , 0 , - 3 . 526300323 , - 3 . 526300323 <nl> + 050 , 3 , 5 , 54 , 025 , West Virginia , Greenbrier County , 35480 , 35480 , 35529 , 35800 , 49 , 271 , 95 , 388 , 119 , 477 , - 24 , - 89 , 0 , 0 , 74 , 356 , 74 , 356 , - 1 , 4 , 616 , 616 , 616 , 10 . 879165557 , 13 . 374644254 , - 2 . 495478697 , 0 , 9 . 9819147892 , 9 . 9819147892 <nl> + 050 , 3 , 5 , 54 , 027 , West Virginia , Hampshire County , 23964 , 23964 , 23963 , 23812 , - 1 , - 151 , 55 , 222 , 70 , 232 , - 15 , - 10 , 0 , 0 , 15 , - 141 , 15 , - 141 , - 1 , 0 , 508 , 508 , 508 , 9 . 2935635793 , 9 . 7121925693 , - 0 . 41862899 , 0 , - 5 . 90266876 , - 5 . 90266876 <nl> + 050 , 3 , 5 , 54 , 029 , West Virginia , Hancock County , 30676 , 30676 , 30651 , 30571 , - 25 , - 80 , 70 , 281 , 113 , 435 , - 43 , - 154 , 0 , 1 , 22 , 76 , 22 , 77 , - 4 , - 3 , 226 , 226 , 226 , 9 . 1797066414 , 14 . 210577897 , - 5 . 030871255 , 0 . 0326679952 , 2 . 4827676326 , 2 . 5154356277 <nl> + 050 , 3 , 5 , 54 , 031 , West Virginia , Hardy County , 14025 , 14025 , 14069 , 13912 , 44 , - 157 , 41 , 155 , 37 , 158 , 4 , - 3 , 5 , 21 , 35 , - 176 , 40 , - 155 , 0 , 1 , 58 , 58 , 58 , 11 . 078946428 , 11 . 293377649 , - 0 . 214431221 , 1 . 5010185483 , - 12 . 57996498 , - 11 . 07894643 <nl> + 050 , 3 , 5 , 54 , 033 , West Virginia , Harrison County , 69099 , 69099 , 69212 , 69436 , 113 , 224 , 201 , 804 , 223 , 879 , - 22 , - 75 , 2 , 5 , 134 , 298 , 136 , 303 , - 1 , - 4 , 885 , 885 , 885 , 11 . 597715077 , 12 . 679591483 , - 1 . 081876406 , 0 . 0721250938 , 4 . 2986555883 , 4 . 370780682 <nl> + 050 , 3 , 5 , 54 , 035 , West Virginia , Jackson County , 29211 , 29211 , 29221 , 29241 , 10 , 20 , 78 , 316 , 91 , 343 , - 13 , - 27 , 0 , 4 , 24 , 45 , 24 , 49 , - 1 , - 2 , 180 , 180 , 180 , 10 . 81044097 , 11 . 734117889 , - 0 . 923676918 , 0 . 1368410249 , 1 . 5394615306 , 1 . 6763025555 <nl> + 050 , 3 , 5 , 54 , 037 , West Virginia , Jefferson County , 53498 , 53498 , 53643 , 54225 , 145 , 582 , 151 , 598 , 108 , 408 , 43 , 190 , 17 , 53 , 83 , 336 , 100 , 389 , 2 , 3 , 1391 , 1391 , 1391 , 11 . 087625616 , 7 . 564801424 , 3 . 5228241925 , 0 . 9826825379 , 6 . 2298364668 , 7 . 2125190047 <nl> + 050 , 3 , 5 , 54 , 039 , West Virginia , Kanawha County , 193063 , 193063 , 192989 , 192315 , - 74 , - 674 , 573 , 2271 , 598 , 2440 , - 25 , - 169 , 21 , 42 , - 56 , - 535 , - 35 , - 493 , - 14 , - 12 , 3163 , 3163 , 3163 , 11 . 788094595 , 12 . 665324004 , - 0 . 877229408 , 0 . 2180096755 , - 2 . 777028009 , - 2 . 559018334 <nl> + 050 , 3 , 5 , 54 , 041 , West Virginia , Lewis County , 16372 , 16368 , 16379 , 16416 , 11 , 37 , 45 , 185 , 67 , 238 , - 22 , - 53 , 1 , 0 , 34 , 91 , 35 , 91 , - 2 , - 1 , 248 , 248 , 248 , 11 . 282207654 , 14 . 514407684 , - 3 . 23220003 , 0 , 5 . 5496264674 , 5 . 5496264674 <nl> + 050 , 3 , 5 , 54 , 043 , West Virginia , Lincoln County , 21720 , 21720 , 21709 , 21550 , - 11 , - 159 , 61 , 246 , 70 , 278 , - 9 , - 32 , 0 , 0 , - 1 , - 126 , - 1 , - 126 , - 1 , - 1 , 65 , 65 , 65 , 11 . 373355833 , 12 . 852816755 , - 1 . 479460921 , 0 , - 5 . 825377378 , - 5 . 825377378 <nl> + 050 , 3 , 5 , 54 , 045 , West Virginia , Logan County , 36743 , 36745 , 36727 , 36457 , - 18 , - 270 , 101 , 408 , 138 , 509 , - 37 , - 101 , 0 , 3 , 21 , - 172 , 21 , - 169 , - 2 , 0 , 464 , 464 , 464 , 11 . 149978137 , 13 . 910144294 , - 2 . 760166157 , 0 . 0819851334 , - 4 . 700480979 , - 4 . 618495846 <nl> + 050 , 3 , 5 , 54 , 047 , West Virginia , McDowell County , 22113 , 22113 , 22064 , 21729 , - 49 , - 335 , 67 , 285 , 92 , 358 , - 25 , - 73 , 0 , 0 , - 22 , - 262 , - 22 , - 262 , - 2 , 0 , 471 , 471 , 471 , 13 . 015778777 , 16 . 34964492 , - 3 . 333866143 , 0 , - 11 . 9653826 , - 11 . 9653826 <nl> + 050 , 3 , 5 , 54 , 049 , West Virginia , Marion County , 56418 , 56418 , 56481 , 56586 , 63 , 105 , 158 , 633 , 176 , 673 , - 18 , - 40 , 8 , 30 , 74 , 117 , 82 , 147 , - 1 , - 2 , 1340 , 1340 , 1340 , 11 . 196900953 , 11 . 904446036 , - 0 . 707545084 , 0 . 5306588129 , 2 . 0695693704 , 2 . 6002281833 <nl> + 050 , 3 , 5 , 54 , 051 , West Virginia , Marshall County , 33107 , 33107 , 33068 , 32800 , - 39 , - 268 , 80 , 314 , 103 , 397 , - 23 , - 83 , 1 , 3 , - 14 , - 183 , - 13 , - 180 , - 3 , - 5 , 447 , 447 , 447 , 9 . 5342199551 , 12 . 054411854 , - 2 . 520191899 , 0 . 0910912735 , - 5 . 556567681 , - 5 . 465476407 <nl> + 050 , 3 , 5 , 54 , 053 , West Virginia , Mason County , 27324 , 27326 , 27319 , 27298 , - 7 , - 21 , 67 , 270 , 89 , 331 , - 22 , - 61 , 0 , 2 , 16 , 40 , 16 , 42 , - 1 , - 2 , 635 , 635 , 635 , 9 . 8870315103 , 12 . 120768259 , - 2 . 233736749 , 0 . 0732372704 , 1 . 4647454089 , 1 . 5379826794 <nl> + 050 , 3 , 5 , 54 , 055 , West Virginia , Mercer County , 62264 , 62264 , 62278 , 62465 , 14 , 187 , 197 , 805 , 214 , 890 , - 17 , - 85 , 3 , 16 , 31 , 257 , 34 , 273 , - 3 , - 1 , 1188 , 1188 , 1188 , 12 . 906535838 , 14 . 269337758 , - 1 . 362801921 , 0 . 2565274204 , 4 . 1204716898 , 4 . 3769991102 <nl> + 050 , 3 , 5 , 54 , 057 , West Virginia , Mineral County , 28212 , 28212 , 28224 , 28192 , 12 , - 32 , 74 , 308 , 95 , 340 , - 21 , - 32 , 0 , 0 , 35 , 2 , 35 , 2 , - 2 , - 2 , 646 , 646 , 646 , 10 . 918888259 , 12 . 053318208 , - 1 . 134429949 , 0 , 0 . 0709018718 , 0 . 0709018718 <nl> + 050 , 3 , 5 , 54 , 059 , West Virginia , Mingo County , 26839 , 26834 , 26792 , 26563 , - 42 , - 229 , 88 , 348 , 100 , 364 , - 12 , - 16 , 1 , 5 , - 31 , - 220 , - 30 , - 215 , 0 , 2 , 85 , 85 , 85 , 13 . 04470059 , 13 . 644456939 , - 0 . 599756349 , 0 . 1874238591 , - 8 . 246649799 , - 8 . 059225939 <nl> + 050 , 3 , 5 , 54 , 061 , West Virginia , Monongalia County , 96189 , 96189 , 96788 , 98528 , 599 , 1740 , 237 , 938 , 157 , 607 , 80 , 331 , 59 , 229 , 446 , 1166 , 505 , 1395 , 14 , 14 , 7262 , 7262 , 7262 , 9 . 6049478793 , 6 . 215568617 , 3 . 3893792623 , 2 . 3449179791 , 11 . 939626042 , 14 . 284544021 <nl> + 050 , 3 , 5 , 54 , 063 , West Virginia , Monroe County , 13502 , 13502 , 13493 , 13534 , - 9 , 41 , 31 , 121 , 36 , 155 , - 5 , - 34 , 0 , 0 , - 4 , 76 , - 4 , 76 , 0 , - 1 , 57 , 57 , 57 , 8 . 954008954 , 11 . 47001147 , - 2 . 516002516 , 0 , 5 . 624005624 , 5 . 624005624 <nl> + 050 , 3 , 5 , 54 , 065 , West Virginia , Morgan County , 17541 , 17541 , 17519 , 17535 , - 22 , 16 , 37 , 156 , 48 , 202 , - 11 , - 46 , 0 , 0 , - 9 , 64 , - 9 , 64 , - 2 , - 2 , 123 , 123 , 123 , 8 . 9005534318 , 11 . 525075598 , - 2 . 624522166 , 0 , 3 . 6515091002 , 3 . 6515091002 <nl> + 050 , 3 , 5 , 54 , 067 , West Virginia , Nicholas County , 26233 , 26231 , 26250 , 26268 , 19 , 18 , 80 , 326 , 89 , 342 , - 9 , - 16 , 0 , 0 , 30 , 37 , 30 , 37 , - 2 , - 3 , 162 , 162 , 162 , 12 . 414791119 , 13 . 024106021 , - 0 . 609314902 , 0 , 1 . 4090407099 , 1 . 4090407099 <nl> + 050 , 3 , 5 , 54 , 069 , West Virginia , Ohio County , 44443 , 44443 , 44478 , 44246 , 35 , - 232 , 128 , 502 , 150 , 598 , - 22 , - 96 , 7 , 20 , 52 , - 156 , 59 , - 136 , - 2 , 0 , 2618 , 2618 , 2618 , 11 . 315991164 , 13 . 48000541 , - 2 . 164014246 , 0 . 4508363013 , - 3 . 51652315 , - 3 . 065686849 <nl> + 050 , 3 , 5 , 54 , 071 , West Virginia , Pendleton County , 7695 , 7695 , 7699 , 7673 , 4 , - 26 , 21 , 93 , 6 , 74 , 15 , 19 , 2 , 0 , - 12 , - 45 , - 10 , - 45 , - 1 , 0 , 196 , 196 , 196 , 12 . 099921936 , 9 . 6278948738 , 2 . 4720270622 , 0 , - 5 . 854800937 , - 5 . 854800937 <nl> + 050 , 3 , 5 , 54 , 073 , West Virginia , Pleasants County , 7605 , 7605 , 7581 , 7611 , - 24 , 30 , 13 , 61 , 10 , 79 , 3 , - 18 , 0 , 0 , - 26 , 47 , - 26 , 47 , - 1 , 1 , 623 , 623 , 623 , 8 . 0305423907 , 10 . 400210637 , - 2 . 369668246 , 0 , 6 . 1874670879 , 6 . 1874670879 <nl> + 050 , 3 , 5 , 54 , 075 , West Virginia , Pocahontas County , 8719 , 8721 , 8712 , 8786 , - 9 , 74 , 20 , 100 , 22 , 119 , - 2 , - 19 , 0 , 0 , - 6 , 93 , - 6 , 93 , - 1 , 0 , 318 , 318 , 318 , 11 . 4298777 , 13 . 601554463 , - 2 . 171676763 , 0 , 10 . 629786261 , 10 . 629786261 <nl> + 050 , 3 , 5 , 54 , 077 , West Virginia , Preston County , 33520 , 33520 , 33537 , 33723 , 17 , 186 , 82 , 322 , 84 , 325 , - 2 , - 3 , 1 , 6 , 20 , 185 , 21 , 191 , - 2 , - 2 , 2378 , 2378 , 2378 , 9 . 5747844187 , 9 . 6639904847 , - 0 . 089206066 , 0 . 178412132 , 5 . 5010407374 , 5 . 6794528695 <nl> + 050 , 3 , 5 , 54 , 079 , West Virginia , Putnam County , 55486 , 55486 , 55617 , 56008 , 131 , 391 , 145 , 583 , 136 , 519 , 9 , 64 , 9 , 34 , 113 , 294 , 122 , 328 , 0 , - 1 , 225 , 225 , 225 , 10 . 44568869 , 9 . 2989921613 , 1 . 1466965286 , 0 . 6091825308 , 5 . 2676371781 , 5 . 8768197088 <nl> + 050 , 3 , 5 , 54 , 081 , West Virginia , Raleigh County , 78859 , 78859 , 78896 , 79127 , 37 , 231 , 235 , 943 , 241 , 1003 , - 6 , - 60 , 7 , 23 , 39 , 268 , 46 , 291 , - 3 , 0 , 3857 , 3857 , 3857 , 11 . 934971491 , 12 . 694354619 , - 0 . 759383128 , 0 . 2910968656 , 3 . 3919113041 , 3 . 6830081697 <nl> + 050 , 3 , 5 , 54 , 083 , West Virginia , Randolph County , 29405 , 29405 , 29386 , 29465 , - 19 , 79 , 67 , 277 , 88 , 367 , - 21 , - 90 , 1 , 7 , 2 , 164 , 3 , 171 , - 1 , - 2 , 2273 , 2273 , 2273 , 9 . 413603847 , 12 . 472175494 , - 3 . 058571647 , 0 . 2378889059 , 5 . 5733972235 , 5 . 8112861294 <nl> + 050 , 3 , 5 , 54 , 085 , West Virginia , Ritchie County , 10449 , 10449 , 10439 , 10295 , - 10 , - 144 , 24 , 98 , 27 , 146 , - 3 , - 48 , 0 , 1 , - 7 , - 97 , - 7 , - 96 , 0 , 0 , 106 , 106 , 106 , 9 . 4530722485 , 14 . 083148452 , - 4 . 630076203 , 0 . 0964599209 , - 9 . 356612328 , - 9 . 260152407 <nl> + 050 , 3 , 5 , 54 , 087 , West Virginia , Roane County , 14926 , 14926 , 14933 , 14858 , 7 , - 75 , 33 , 139 , 45 , 187 , - 12 , - 48 , 1 , 5 , 19 , - 32 , 20 , - 27 , - 1 , 0 , 98 , 98 , 98 , 9 . 3316773522 , 12 . 554127085 , - 3 . 222449733 , 0 . 3356718472 , - 2 . 148299822 , - 1 . 812627975 <nl> + 050 , 3 , 5 , 54 , 089 , West Virginia , Summers County , 13927 , 13927 , 13934 , 13867 , 7 , - 67 , 31 , 121 , 38 , 157 , - 7 , - 36 , 0 , 2 , 13 , - 31 , 13 , - 29 , 1 , - 2 , 1329 , 1329 , 1329 , 8 . 7047228517 , 11 . 29455775 , - 2 . 589834898 , 0 . 1438797166 , - 2 . 230135607 , - 2 . 08625589 <nl> + 050 , 3 , 5 , 54 , 091 , West Virginia , Taylor County , 16895 , 16895 , 16898 , 16916 , 3 , 18 , 47 , 190 , 57 , 189 , - 10 , 1 , 0 , 1 , 14 , 16 , 14 , 17 , - 1 , 0 , 511 , 511 , 511 , 11 . 237948779 , 11 . 17880168 , 0 . 0591470988 , 0 . 0591470988 , 0 . 9463535814 , 1 . 0055006802 <nl> + 050 , 3 , 5 , 54 , 093 , West Virginia , Tucker County , 7141 , 7141 , 7123 , 7021 , - 18 , - 102 , 17 , 68 , 19 , 119 , - 2 , - 51 , 0 , 0 , - 16 , - 50 , - 16 , - 50 , 0 , - 1 , 142 , 142 , 142 , 9 . 6153846154 , 16 . 826923077 , - 7 . 211538462 , 0 , - 7 . 070135747 , - 7 . 070135747 <nl> + 050 , 3 , 5 , 54 , 095 , West Virginia , Tyler County , 9208 , 9211 , 9193 , 9121 , - 18 , - 72 , 23 , 90 , 21 , 116 , 2 , - 26 , 0 , 0 , - 19 , - 45 , - 19 , - 45 , - 1 , - 1 , 67 , 67 , 67 , 9 . 8285464672 , 12 . 667904335 , - 2 . 839357868 , 0 , - 4 . 914273234 , - 4 . 914273234 <nl> + 050 , 3 , 5 , 54 , 097 , West Virginia , Upshur County , 24254 , 24254 , 24256 , 24322 , 2 , 66 , 64 , 263 , 71 , 270 , - 7 , - 7 , 0 , 0 , 10 , 73 , 10 , 73 , - 1 , 0 , 1215 , 1215 , 1215 , 10 . 827946807 , 11 . 11614311 , - 0 . 288196303 , 0 , 3 . 0054757298 , 3 . 0054757298 <nl> + 050 , 3 , 5 , 54 , 099 , West Virginia , Wayne County , 42481 , 42481 , 42410 , 42126 , - 71 , - 284 , 96 , 386 , 124 , 485 , - 28 , - 99 , 1 , 4 , - 42 , - 188 , - 41 , - 184 , - 2 , - 1 , 246 , 246 , 246 , 9 . 1322040314 , 11 . 474401438 , - 2 . 342197407 , 0 . 0946342387 , - 4 . 447809217 , - 4 . 353174979 <nl> + 050 , 3 , 5 , 54 , 101 , West Virginia , Webster County , 9154 , 9154 , 9179 , 9143 , 25 , - 36 , 31 , 129 , 22 , 128 , 9 , 1 , 0 , 0 , 16 , - 36 , 16 , - 36 , 0 , - 1 , 58 , 58 , 58 , 14 . 081432158 , 13 . 972273769 , 0 . 1091583888 , 0 , - 3 . 929701998 , - 3 . 929701998 <nl> + 050 , 3 , 5 , 54 , 103 , West Virginia , Wetzel County , 16583 , 16580 , 16558 , 16351 , - 22 , - 207 , 39 , 167 , 71 , 241 , - 32 , - 74 , 1 , 5 , 10 , - 139 , 11 , - 134 , - 1 , 1 , 124 , 124 , 124 , 10 . 149199307 , 14 . 6464493 , - 4 . 497249992 , 0 . 3038682427 , - 8 . 447537148 , - 8 . 143668905 <nl> + 050 , 3 , 5 , 54 , 105 , West Virginia , Wirt County , 5717 , 5717 , 5731 , 5762 , 14 , 31 , 10 , 39 , 5 , 46 , 5 , - 7 , 1 , 4 , 8 , 34 , 9 , 38 , 0 , 0 , 0 , 0 , 0 , 6 . 7867397546 , 8 . 0048725311 , - 1 . 218132776 , 0 . 6960758723 , 5 . 9166449143 , 6 . 6127207866 <nl> + 050 , 3 , 5 , 54 , 107 , West Virginia , Wood County , 86956 , 86956 , 87025 , 87120 , 69 , 95 , 252 , 1001 , 257 , 1011 , - 5 , - 10 , 4 , 13 , 74 , 99 , 78 , 112 , - 4 , - 7 , 1046 , 1046 , 1046 , 11 . 496166987 , 11 . 61101381 , - 0 . 114846823 , 0 . 14930087 , 1 . 1369835482 , 1 . 2862844182 <nl> + 050 , 3 , 5 , 54 , 109 , West Virginia , Wyoming County , 23796 , 23801 , 23738 , 23419 , - 63 , - 319 , 62 , 254 , 94 , 348 , - 32 , - 94 , 0 , 0 , - 29 , - 225 , - 29 , - 225 , - 2 , 0 , 56 , 56 , 56 , 10 . 772525818 , 14 . 759208601 , - 3 . 986682783 , 0 , - 9 . 542591768 , - 9 . 542591768 <nl> + 040 , 2 , 3 , 55 , 000 , Wisconsin , Wisconsin , 5686986 , 5686986 , 5691659 , 5711767 , 4673 , 20108 , 17577 , 69346 , 11376 , 46070 , 6201 , 23276 , 1400 , 5158 , - 2807 , - 8183 , - 1407 , - 3025 , - 121 , - 143 , 150214 , 150726 , 151236 , 12 . 162309818 , 8 . 0800278793 , 4 . 0822819388 , 0 . 9046404125 , - 1 . 435182725 , - 0 . 530542312 <nl> + 050 , 2 , 3 , 55 , 001 , Wisconsin , Adams County , 20875 , 20875 , 20859 , 20733 , - 16 , - 126 , 39 , 166 , 64 , 232 , - 25 , - 66 , 0 , 3 , 11 , - 59 , 11 , - 56 , - 2 , - 4 , 1432 , 1432 , 1432 , 7 . 9823042893 , 11 . 155991537 , - 3 . 173687248 , 0 . 1442585113 , - 2 . 837084055 , - 2 . 692825543 <nl> + 050 , 2 , 3 , 55 , 003 , Wisconsin , Ashland County , 16157 , 16157 , 16185 , 16142 , 28 , - 43 , 49 , 202 , 39 , 176 , 10 , 26 , 0 , 3 , 19 , - 73 , 19 , - 70 , - 1 , 1 , 623 , 623 , 623 , 12 . 497293284 , 10 . 888730782 , 1 . 6085625019 , 0 . 1856033656 , - 4 . 516348563 , - 4 . 330745198 <nl> + 050 , 2 , 3 , 55 , 005 , Wisconsin , Barron County , 45870 , 45870 , 45835 , 45883 , - 35 , 48 , 125 , 490 , 114 , 468 , 11 , 22 , 6 , 26 , - 50 , 2 , - 44 , 28 , - 2 , - 2 , 681 , 681 , 681 , 10 . 684925533 , 10 . 205194182 , 0 . 4797313504 , 0 . 5669552323 , 0 . 0436119409 , 0 . 6105671733 <nl> + 050 , 2 , 3 , 55 , 007 , Wisconsin , Bayfield County , 15014 , 15012 , 15028 , 15099 , 16 , 71 , 33 , 127 , 47 , 185 , - 14 , - 58 , 1 , 8 , 30 , 120 , 31 , 128 , - 1 , 1 , 126 , 126 , 126 , 8 . 4309755369 , 12 . 281342318 , - 3 . 850366781 , 0 . 5310850732 , 7 . 9662760979 , 8 . 497361171 <nl> + 050 , 2 , 3 , 55 , 009 , Wisconsin , Brown County , 248007 , 248007 , 248833 , 251412 , 826 , 2579 , 858 , 3376 , 382 , 1567 , 476 , 1809 , 122 , 331 , 226 , 447 , 348 , 778 , 2 , - 8 , 6629 , 6912 , 7195 , 13 . 497386281 , 6 . 2649301842 , 7 . 2324560965 , 1 . 3233515577 , 1 . 7871243091 , 3 . 1104758668 <nl> + 050 , 2 , 3 , 55 , 011 , Wisconsin , Buffalo County , 13587 , 13587 , 13579 , 13539 , - 8 , - 40 , 35 , 141 , 24 , 126 , 11 , 15 , 0 , 3 , - 19 , - 58 , - 19 , - 55 , 0 , 0 , 107 , 107 , 107 , 10 . 398996976 , 9 . 2927207021 , 1 . 1062762741 , 0 . 2212552548 , - 4 . 277601593 , - 4 . 056346338 <nl> + 050 , 2 , 3 , 55 , 013 , Wisconsin , Burnett County , 15457 , 15457 , 15447 , 15504 , - 10 , 57 , 34 , 140 , 34 , 152 , 0 , - 12 , 0 , 0 , - 9 , 70 , - 9 , 70 , - 1 , - 1 , 139 , 139 , 139 , 9 . 0465574618 , 9 . 8219766728 , - 0 . 775419211 , 0 , 4 . 5232787309 , 4 . 5232787309 <nl> + 050 , 2 , 3 , 55 , 015 , Wisconsin , Calumet County , 48971 , 48971 , 49019 , 49490 , 48 , 471 , 142 , 566 , 85 , 317 , 57 , 249 , 1 , 24 , - 10 , 198 , - 9 , 222 , 0 , 0 , 198 , 198 , 198 , 11 . 491335817 , 6 . 4359601661 , 5 . 055375651 , 0 . 487265123 , 4 . 0199372646 , 4 . 5072023876 <nl> + 050 , 2 , 3 , 55 , 017 , Wisconsin , Chippewa County , 62415 , 62415 , 62522 , 62778 , 107 , 256 , 187 , 738 , 138 , 522 , 49 , 216 , 3 , 25 , 55 , 18 , 58 , 43 , 0 , - 3 , 2542 , 2542 , 2542 , 11 . 779728651 , 8 . 3320031923 , 3 . 4477254589 , 0 . 3990422985 , 0 . 2873104549 , 0 . 6863527534 <nl> + 050 , 2 , 3 , 55 , 019 , Wisconsin , Clark County , 34690 , 34690 , 34713 , 34742 , 23 , 29 , 142 , 565 , 78 , 333 , 64 , 232 , 0 , 12 , - 40 , - 216 , - 40 , - 204 , - 1 , 1 , 536 , 536 , 536 , 16 . 269527032 , 9 . 5889424807 , 6 . 6805845511 , 0 . 3455474768 , - 6 . 219854582 , - 5 . 874307105 <nl> + 050 , 2 , 3 , 55 , 021 , Wisconsin , Columbia County , 56833 , 56833 , 56910 , 56909 , 77 , - 1 , 166 , 642 , 130 , 491 , 36 , 151 , 8 , 40 , 34 , - 192 , 42 , - 152 , - 1 , 0 , 1526 , 1526 , 1526 , 11 . 281069066 , 8 . 6277335067 , 2 . 6533355591 , 0 . 7028703468 , - 3 . 373777665 , - 2 . 670907318 <nl> + 050 , 2 , 3 , 55 , 023 , Wisconsin , Crawford County , 16644 , 16644 , 16638 , 16714 , - 6 , 76 , 45 , 175 , 36 , 175 , 9 , 0 , 0 , 0 , - 14 , 76 , - 14 , 76 , - 1 , 0 , 785 , 785 , 785 , 10 . 494123291 , 10 . 494123291 , 0 , 0 , 4 . 5574478292 , 4 . 5574478292 <nl> + 050 , 2 , 3 , 55 , 025 , Wisconsin , Dane County , 488073 , 488073 , 489190 , 495959 , 1117 , 6769 , 1540 , 6032 , 665 , 2747 , 875 , 3285 , 273 , 973 , - 28 , 2496 , 245 , 3469 , - 3 , 15 , 12775 , 12775 , 12775 , 12 . 245863316 , 5 . 5768213742 , 6 . 6690419419 , 1 . 9753357106 , 5 . 067253786 , 7 . 0425894966 <nl> + 050 , 2 , 3 , 55 , 027 , Wisconsin , Dodge County , 88759 , 88759 , 88749 , 88661 , - 10 , - 88 , 217 , 865 , 215 , 852 , 2 , 13 , 4 , 41 , - 12 , - 139 , - 8 , - 98 , - 4 , - 3 , 6192 , 6192 , 6192 , 9 . 7514232569 , 9 . 604870075 , 0 . 1465531819 , 0 . 4622061891 , - 1 . 566991714 , - 1 . 104785525 <nl> + 050 , 2 , 3 , 55 , 029 , Wisconsin , Door County , 27785 , 27785 , 27747 , 27820 , - 38 , 73 , 64 , 266 , 87 , 329 , - 23 , - 63 , 4 , 17 , - 17 , 120 , - 13 , 137 , - 2 , - 1 , 348 , 348 , 348 , 9 . 5740277503 , 11 . 841560639 , - 2 . 267532888 , 0 . 611873954 , 4 . 3191102633 , 4 . 9309842173 <nl> + 050 , 2 , 3 , 55 , 031 , Wisconsin , Douglas County , 44159 , 44159 , 44179 , 44105 , 20 , - 74 , 123 , 474 , 99 , 396 , 24 , 78 , 1 , 7 , - 3 , - 159 , - 2 , - 152 , - 2 , 0 , 1372 , 1372 , 1372 , 10 . 738072584 , 8 . 9710479815 , 1 . 7670246024 , 0 . 158579131 , - 3 . 60201169 , - 3 . 443432559 <nl> + 050 , 2 , 3 , 55 , 033 , Wisconsin , Dunn County , 43857 , 43857 , 43915 , 43971 , 58 , 56 , 113 , 449 , 68 , 288 , 45 , 161 , 1 , 10 , 13 , - 114 , 14 , - 104 , - 1 , - 1 , 3415 , 3415 , 3415 , 10 . 217782127 , 6 . 5539448831 , 3 . 6638372437 , 0 . 2275675307 , - 2 . 59426985 , - 2 . 366702319 <nl> + 050 , 2 , 3 , 55 , 035 , Wisconsin , Eau Claire County , 98736 , 98736 , 98877 , 99879 , 141 , 1002 , 296 , 1145 , 176 , 704 , 120 , 441 , 15 , 66 , 9 , 495 , 24 , 561 , - 3 , 0 , 4796 , 4796 , 4796 , 11 . 521664755 , 7 . 0840628711 , 4 . 4376018837 , 0 . 6641308942 , 4 . 9809817062 , 5 . 6451126004 <nl> + 050 , 2 , 3 , 55 , 037 , Wisconsin , Florence County , 4423 , 4423 , 4411 , 4440 , - 12 , 29 , 8 , 35 , 5 , 52 , 3 , - 17 , 0 , 2 , - 15 , 43 , - 15 , 45 , 0 , 1 , 59 , 59 , 59 , 7 . 9087108801 , 11 . 750084736 , - 3 . 841373856 , 0 . 451926336 , 9 . 7164162242 , 10 . 16834256 <nl> + 050 , 2 , 3 , 55 , 039 , Wisconsin , Fond du Lac County , 101633 , 101633 , 101666 , 102079 , 33 , 413 , 292 , 1154 , 219 , 860 , 73 , 294 , 33 , 113 , - 70 , 13 , - 37 , 126 , - 3 , - 7 , 3589 , 3589 , 3589 , 11 . 327885347 , 8 . 4419249552 , 2 . 8859603917 , 1 . 1092296743 , 0 . 1276104935 , 1 . 2368401679 <nl> + 050 , 2 , 3 , 55 , 041 , Wisconsin , Forest County , 9304 , 9304 , 9302 , 9236 , - 2 , - 66 , 26 , 103 , 20 , 105 , 6 , - 2 , 0 , 0 , - 7 , - 63 , - 7 , - 63 , - 1 , - 1 , 379 , 379 , 379 , 11 . 11230985 , 11 . 328082857 , - 0 . 215773007 , 0 , - 6 . 796849714 , - 6 . 796849714 <nl> + 050 , 2 , 3 , 55 , 043 , Wisconsin , Grant County , 51208 , 51208 , 51215 , 51210 , 7 , - 5 , 139 , 559 , 112 , 470 , 27 , 89 , 3 , 13 , - 19 , - 102 , - 16 , - 89 , - 4 , - 5 , 3897 , 3897 , 3897 , 10 . 915303881 , 9 . 1774469124 , 1 . 7378569685 , 0 . 2538442763 , - 1 . 991701245 , - 1 . 737856969 <nl> + 050 , 2 , 3 , 55 , 045 , Wisconsin , Green County , 36842 , 36842 , 36872 , 36891 , 30 , 19 , 103 , 422 , 86 , 348 , 17 , 74 , 3 , 15 , 12 , - 69 , 15 , - 54 , - 2 , - 1 , 405 , 405 , 405 , 11 . 442050893 , 9 . 4356249068 , 2 . 0064259859 , 0 . 4067079701 , - 1 . 870856663 , - 1 . 464148692 <nl> + 050 , 2 , 3 , 55 , 047 , Wisconsin , Green Lake County , 19051 , 19051 , 19048 , 19094 , - 3 , 46 , 49 , 201 , 53 , 235 , - 4 , - 34 , 0 , 4 , 3 , 79 , 3 , 83 , - 2 , - 3 , 212 , 212 , 212 , 10 . 539562687 , 12 . 322374286 , - 1 . 782811599 , 0 . 209742541 , 4 . 1424151854 , 4 . 3521577264 <nl> + 050 , 2 , 3 , 55 , 049 , Wisconsin , Iowa County , 23687 , 23687 , 23700 , 23599 , 13 , - 101 , 75 , 300 , 44 , 173 , 31 , 127 , 0 , 7 , - 17 , - 235 , - 17 , - 228 , - 1 , 0 , 214 , 214 , 214 , 12 . 685257616 , 7 . 3151652255 , 5 . 370092391 , 0 . 2959893444 , - 9 . 936785133 , - 9 . 640795788 <nl> + 050 , 2 , 3 , 55 , 051 , Wisconsin , Iron County , 5916 , 5916 , 5907 , 5894 , - 9 , - 13 , 8 , 35 , 13 , 94 , - 5 , - 59 , 0 , 1 , - 4 , 45 , - 4 , 46 , 0 , 0 , 96 , 96 , 96 , 5 . 9317007033 , 15 . 930853318 , - 9 . 999152614 , 0 . 169477163 , 7 . 6264723329 , 7 . 7959494958 <nl> + 050 , 2 , 3 , 55 , 053 , Wisconsin , Jackson County , 20449 , 20449 , 20462 , 20565 , 13 , 103 , 62 , 254 , 41 , 172 , 21 , 82 , 0 , 1 , - 7 , 20 , - 7 , 21 , - 1 , 0 , 1333 , 1333 , 1333 , 12 . 382089843 , 8 . 3847222561 , 3 . 9973675872 , 0 . 0487483852 , 0 . 9749677042 , 1 . 0237160894 <nl> + 050 , 2 , 3 , 55 , 055 , Wisconsin , Jefferson County , 83686 , 83686 , 83700 , 83943 , 14 , 243 , 248 , 985 , 159 , 630 , 89 , 355 , 22 , 85 , - 95 , - 190 , - 73 , - 105 , - 2 , - 7 , 3678 , 3678 , 3678 , 11 . 751161695 , 7 . 5159714393 , 4 . 2351902555 , 1 . 0140596386 , - 2 . 266721545 , - 1 . 252661907 <nl> + 050 , 2 , 3 , 55 , 057 , Wisconsin , Juneau County , 26664 , 26664 , 26673 , 26722 , 9 , 49 , 68 , 271 , 69 , 253 , - 1 , 18 , 2 , 7 , 9 , 27 , 11 , 34 , - 1 , - 3 , 1651 , 1651 , 1651 , 10 . 15076318 , 9 . 4765427474 , 0 . 6742204326 , 0 . 2621968349 , 1 . 0113306489 , 1 . 2735274838 <nl> + 050 , 2 , 3 , 55 , 059 , Wisconsin , Kenosha County , 166426 , 166426 , 166683 , 167293 , 257 , 610 , 542 , 2126 , 288 , 1189 , 254 , 937 , 46 , 163 , - 40 , - 487 , 6 , - 324 , - 3 , - 3 , 4601 , 4601 , 4601 , 12 . 731453757 , 7 . 1202721154 , 5 . 6111816418 , 0 . 9761180444 , - 2 . 916377225 , - 1 . 94025918 <nl> + 050 , 2 , 3 , 55 , 061 , Wisconsin , Kewaunee County , 20574 , 20574 , 20591 , 20589 , 17 , - 2 , 56 , 221 , 41 , 186 , 15 , 35 , 0 , 10 , 3 , - 48 , 3 , - 38 , - 1 , 1 , 178 , 178 , 178 , 10 . 733365712 , 9 . 0335114133 , 1 . 6998542982 , 0 . 4856726566 , - 2 . 331228752 , - 1 . 845556095 <nl> + 050 , 2 , 3 , 55 , 063 , Wisconsin , La Crosse County , 114638 , 114638 , 114871 , 115572 , 233 , 701 , 336 , 1353 , 234 , 914 , 102 , 439 , 21 , 84 , 113 , 186 , 134 , 270 , - 3 , - 8 , 5195 , 5195 , 5195 , 11 . 742600122 , 7 . 932547311 , 3 . 8100528113 , 0 . 7290306063 , 1 . 6142820567 , 2 . 343312663 <nl> + 050 , 2 , 3 , 55 , 065 , Wisconsin , Lafayette County , 16836 , 16836 , 16813 , 16815 , - 23 , 2 , 51 , 201 , 24 , 147 , 27 , 54 , 0 , 7 , - 50 , - 57 , - 50 , - 50 , 0 , - 2 , 120 , 120 , 120 , 11 . 954323778 , 8 . 7427144047 , 3 . 2116093731 , 0 . 4163197336 , - 3 . 390032116 , - 2 . 973712383 <nl> + 050 , 2 , 3 , 55 , 067 , Wisconsin , Langlade County , 19977 , 19977 , 19953 , 19786 , - 24 , - 167 , 45 , 173 , 73 , 230 , - 28 , - 57 , 0 , 3 , 6 , - 114 , 6 , - 111 , - 2 , 1 , 281 , 281 , 281 , 8 . 706811948 , 11 . 575530335 , - 2 . 868718387 , 0 . 1509851783 , - 5 . 737436775 , - 5 . 586451597 <nl> + 050 , 2 , 3 , 55 , 069 , Wisconsin , Lincoln County , 28743 , 28743 , 28771 , 28602 , 28 , - 169 , 80 , 306 , 66 , 294 , 14 , 12 , 3 , 10 , 12 , - 192 , 15 , - 182 , - 1 , 1 , 560 , 560 , 560 , 10 . 667038502 , 10 . 248723267 , 0 . 4183152354 , 0 . 3485960295 , - 6 . 693043766 , - 6 . 344447737 <nl> + 050 , 2 , 3 , 55 , 071 , Wisconsin , Manitowoc County , 81442 , 81442 , 81334 , 80976 , - 108 , - 358 , 201 , 791 , 190 , 794 , 11 , - 3 , 8 , 46 , - 125 , - 400 , - 117 , - 354 , - 2 , - 1 , 1100 , 1100 , 1100 , 9 . 7467808515 , 9 . 7837471505 , - 0 . 036966299 , 0 . 5668165855 , - 4 . 928839874 , - 4 . 362023289 <nl> + 050 , 2 , 3 , 55 , 073 , Wisconsin , Marathon County , 134063 , 134063 , 134099 , 134400 , 36 , 301 , 413 , 1618 , 265 , 1032 , 148 , 586 , 29 , 137 , - 140 , - 421 , - 111 , - 284 , - 1 , - 1 , 1655 , 1655 , 1655 , 12 . 052186414 , 7 . 6871794681 , 4 . 365006946 , 1 . 020487972 , - 3 . 135952089 , - 2 . 115464117 <nl> + 050 , 2 , 3 , 55 , 075 , Wisconsin , Marinette County , 41749 , 41749 , 41731 , 41656 , - 18 , - 75 , 97 , 374 , 115 , 472 , - 18 , - 98 , 1 , 4 , 4 , 24 , 5 , 28 , - 5 , - 5 , 1073 , 1073 , 1073 , 8 . 9702231763 , 11 . 320709463 , - 2 . 350486287 , 0 . 0959382158 , 0 . 5756292947 , 0 . 6715675105 <nl> + 050 , 2 , 3 , 55 , 077 , Wisconsin , Marquette County , 15404 , 15404 , 15405 , 15439 , 1 , 34 , 35 , 151 , 41 , 167 , - 6 , - 16 , 0 , 4 , 9 , 47 , 9 , 51 , - 2 , - 1 , 153 , 153 , 153 , 9 . 7912073661 , 10 . 828686292 , - 1 . 037478926 , 0 . 2593697316 , 3 . 0475943457 , 3 . 3069640773 <nl> + 050 , 2 , 3 , 55 , 078 , Wisconsin , Menominee County , 4232 , 4232 , 4262 , 4348 , 30 , 86 , 26 , 96 , 1 , 36 , 25 , 60 , 0 , 0 , 4 , 26 , 4 , 26 , 1 , 0 , 59 , 59 , 59 , 22 . 299651568 , 8 . 362369338 , 13 . 93728223 , 0 , 6 . 0394889663 , 6 . 0394889663 <nl> + 050 , 2 , 3 , 55 , 079 , Wisconsin , Milwaukee County , 947735 , 947735 , 948623 , 952532 , 888 , 3909 , 3792 , 15010 , 1938 , 7852 , 1854 , 7158 , 437 , 1606 , - 1399 , - 4834 , - 962 , - 3228 , - 4 , - 21 , 24490 , 24543 , 24596 , 15 . 790401098 , 8 . 2602418004 , 7 . 5301592979 , 1 . 6894992781 , - 5 . 085329707 , - 3 . 395830429 <nl> + 050 , 2 , 3 , 55 , 081 , Wisconsin , Monroe County , 44673 , 44673 , 44760 , 45050 , 87 , 290 , 156 , 620 , 106 , 411 , 50 , 209 , 9 , 28 , 29 , 54 , 38 , 82 , - 1 , - 1 , 859 , 859 , 859 , 13 . 806925732 , 9 . 1526556063 , 4 . 6542701258 , 0 . 6235385814 , 1 . 2025386928 , 1 . 8260772742 <nl> + 050 , 2 , 3 , 55 , 083 , Wisconsin , Oconto County , 37660 , 37660 , 37672 , 37468 , 12 , - 204 , 104 , 399 , 86 , 361 , 18 , 38 , 0 , 5 , - 2 , - 244 , - 2 , - 239 , - 4 , - 3 , 281 , 281 , 281 , 10 . 620175672 , 9 . 60873037 , 1 . 0114453021 , 0 . 1330849082 , - 6 . 494543519 , - 6 . 361458611 <nl> + 050 , 2 , 3 , 55 , 085 , Wisconsin , Oneida County , 35998 , 35998 , 35942 , 35801 , - 56 , - 141 , 74 , 305 , 106 , 431 , - 32 , - 126 , 1 , 5 , - 22 , - 18 , - 21 , - 13 , - 3 , - 2 , 610 , 610 , 610 , 8 . 5025716795 , 12 . 015109488 , - 3 . 512537809 , 0 . 139386421 , - 0 . 501791116 , - 0 . 362404695 <nl> + 050 , 2 , 3 , 55 , 087 , Wisconsin , Outagamie County , 176695 , 176695 , 176965 , 177913 , 270 , 948 , 562 , 2184 , 283 , 1147 , 279 , 1037 , 36 , 104 , - 43 , - 186 , - 7 , - 82 , - 2 , - 7 , 3039 , 3107 , 3175 , 12 . 3084553 , 6 . 4641933284 , 5 . 8442619717 , 0 . 5861169191 , - 1 . 048247567 , - 0 . 462130648 <nl> + 050 , 2 , 3 , 55 , 089 , Wisconsin , Ozaukee County , 86395 , 86395 , 86332 , 86568 , - 63 , 236 , 191 , 765 , 173 , 706 , 18 , 59 , 9 , 32 , - 88 , 148 , - 79 , 180 , - 2 , - 3 , 1804 , 1804 , 1804 , 8 . 8490456912 , 8 . 1665702718 , 0 . 6824754193 , 0 . 3701561596 , 1 . 7119722383 , 2 . 0821283979 <nl> + 050 , 2 , 3 , 55 , 091 , Wisconsin , Pepin County , 7469 , 7469 , 7462 , 7412 , - 7 , - 50 , 25 , 96 , 9 , 88 , 16 , 8 , 0 , 1 , - 23 , - 60 , - 23 , - 59 , 0 , 1 , 136 , 136 , 136 , 12 . 908430819 , 11 . 832728251 , 1 . 0757025682 , 0 . 134462821 , - 8 . 067769262 , - 7 . 933306441 <nl> + 050 , 2 , 3 , 55 , 093 , Wisconsin , Pierce County , 41019 , 41019 , 41042 , 40862 , 23 , - 180 , 107 , 413 , 73 , 253 , 34 , 160 , 2 , 9 , - 13 , - 353 , - 11 , - 344 , 0 , 4 , 2766 , 2703 , 2639 , 10 . 084977535 , 6 . 1779644462 , 3 . 9070130885 , 0 . 2197694862 , - 8 . 619847626 , - 8 . 40007814 <nl> + 050 , 2 , 3 , 55 , 095 , Wisconsin , Polk County , 44205 , 44205 , 44178 , 44040 , - 27 , - 138 , 123 , 491 , 104 , 421 , 19 , 70 , 0 , 9 , - 46 , - 218 , - 46 , - 209 , 0 , 1 , 461 , 461 , 461 , 11 . 13151511 , 9 . 544537396 , 1 . 5869777143 , 0 . 2040399918 , - 4 . 942302025 , - 4 . 738262033 <nl> + 050 , 2 , 3 , 55 , 097 , Wisconsin , Portage County , 70019 , 70019 , 70038 , 70084 , 19 , 46 , 205 , 789 , 118 , 458 , 87 , 331 , 8 , 40 , - 75 , - 322 , - 67 , - 282 , - 1 , - 3 , 3509 , 3509 , 3509 , 11 . 261614878 , 6 . 5371604744 , 4 . 724454404 , 0 . 5709310458 , - 4 . 595994919 , - 4 . 025063873 <nl> + 050 , 2 , 3 , 55 , 099 , Wisconsin , Price County , 14159 , 14159 , 14117 , 13994 , - 42 , - 123 , 27 , 105 , 27 , 159 , 0 , - 54 , 1 , 7 , - 43 , - 76 , - 42 , - 69 , 0 , 0 , 204 , 204 , 204 , 7 . 4703852584 , 11 . 312297677 , - 3 . 841912419 , 0 . 4980256839 , - 5 . 407135997 , - 4 . 909110313 <nl> + 050 , 2 , 3 , 55 , 101 , Wisconsin , Racine County , 195408 , 195408 , 195502 , 195388 , 94 , - 114 , 645 , 2535 , 367 , 1537 , 278 , 998 , 49 , 136 , - 233 , - 1253 , - 184 , - 1117 , 0 , 5 , 4995 , 4995 , 4995 , 12 . 97040088 , 7 . 8641049912 , 5 . 1062958889 , 0 . 6958479368 , - 6 . 41101077 , - 5 . 715162834 <nl> + 050 , 2 , 3 , 55 , 103 , Wisconsin , Richland County , 18021 , 18021 , 17994 , 17983 , - 27 , - 11 , 54 , 217 , 44 , 183 , 10 , 34 , 0 , 6 , - 36 , - 50 , - 36 , - 44 , - 1 , - 1 , 336 , 336 , 336 , 12 . 06326264 , 10 . 17316619 , 1 . 8900964505 , 0 . 3335464324 , - 2 . 779553604 , - 2 . 446007171 <nl> + 050 , 2 , 3 , 55 , 105 , Wisconsin , Rock County , 160331 , 160331 , 160288 , 160092 , - 43 , - 196 , 491 , 1937 , 318 , 1308 , 173 , 629 , 44 , 168 , - 261 , - 996 , - 217 , - 828 , 1 , 3 , 2934 , 2934 , 2934 , 12 . 09189088 , 8 . 1653037019 , 3 . 9265871777 , 1 . 0487546039 , - 6 . 21761658 , - 5 . 168861976 <nl> + 050 , 2 , 3 , 55 , 107 , Wisconsin , Rusk County , 14755 , 14755 , 14719 , 14621 , - 36 , - 98 , 39 , 167 , 39 , 159 , 0 , 8 , 0 , 2 , - 35 , - 107 , - 35 , - 105 , - 1 , - 1 , 174 , 174 , 174 , 11 . 383776414 , 10 . 838445808 , 0 . 5453306067 , 0 . 1363326517 , - 7 . 293796864 , - 7 . 157464213 <nl> + 050 , 2 , 3 , 55 , 109 , Wisconsin , St . Croix County , 84345 , 84345 , 84406 , 84922 , 61 , 516 , 282 , 1097 , 135 , 522 , 147 , 575 , 5 , 36 , - 92 , - 92 , - 87 , - 56 , 1 , - 3 , 850 , 850 , 850 , 12 . 957101011 , 6 . 1655485212 , 6 . 7915524898 , 0 . 4252102428 , - 1 . 086648398 , - 0 . 661438156 <nl> + 050 , 2 , 3 , 55 , 111 , Wisconsin , Sauk County , 61976 , 61976 , 62048 , 62290 , 72 , 242 , 195 , 777 , 133 , 573 , 62 , 204 , 16 , 65 , - 4 , - 23 , 12 , 42 , - 2 , - 4 , 858 , 858 , 858 , 12 . 498190416 , 9 . 2168122376 , 3 . 2813781788 , 1 . 0455371648 , - 0 . 369959304 , 0 . 6755778603 <nl> + 050 , 2 , 3 , 55 , 113 , Wisconsin , Sawyer County , 16557 , 16559 , 16573 , 16596 , 14 , 23 , 46 , 193 , 46 , 184 , 0 , 9 , 0 , 0 , 15 , 15 , 15 , 15 , - 1 , - 1 , 325 , 325 , 325 , 11 . 637372245 , 11 . 094696855 , 0 . 5426753897 , 0 , 0 . 9044589828 , 0 . 9044589828 <nl> + 050 , 2 , 3 , 55 , 115 , Wisconsin , Shawano County , 41949 , 41949 , 41963 , 41754 , 14 , - 209 , 110 , 426 , 103 , 373 , 7 , 53 , 0 , 12 , 9 , - 274 , 9 , - 262 , - 2 , 0 , 794 , 794 , 794 , 10 . 177144427 , 8 . 9109738763 , 1 . 2661705508 , 0 . 2866801247 , - 6 . 545862847 , - 6 . 259182723 <nl> + 050 , 2 , 3 , 55 , 117 , Wisconsin , Sheboygan County , 115507 , 115507 , 115464 , 115149 , - 43 , - 315 , 336 , 1316 , 252 , 1014 , 84 , 302 , 26 , 101 , - 153 , - 721 , - 127 , - 620 , 0 , 3 , 3023 , 3023 , 3023 , 11 . 413059975 , 8 . 7939535065 , 2 . 6191064684 , 0 . 8759263355 , - 6 . 25289988 , - 5 . 376973544 <nl> + 050 , 2 , 3 , 55 , 119 , Wisconsin , Taylor County , 20689 , 20689 , 20669 , 20661 , - 20 , - 8 , 56 , 240 , 54 , 193 , 2 , 47 , 2 , 15 , - 24 , - 69 , - 22 , - 54 , 0 , - 1 , 231 , 231 , 231 , 11 . 613839826 , 9 . 3394628599 , 2 . 2743769659 , 0 . 7258649891 , - 3 . 33897895 , - 2 . 613113961 <nl> + 050 , 2 , 3 , 55 , 121 , Wisconsin , Trempealeau County , 28816 , 28816 , 28863 , 29001 , 47 , 138 , 96 , 381 , 72 , 277 , 24 , 104 , 0 , 9 , 24 , 27 , 24 , 36 , - 1 , - 2 , 512 , 512 , 512 , 13 . 168809623 , 9 . 5741739251 , 3 . 5946356975 , 0 . 3110742431 , 0 . 9332227292 , 1 . 2442969722 <nl> + 050 , 2 , 3 , 55 , 123 , Wisconsin , Vernon County , 29773 , 29773 , 29793 , 29954 , 20 , 161 , 104 , 431 , 86 , 307 , 18 , 124 , 0 , 7 , 3 , 33 , 3 , 40 , - 1 , - 3 , 390 , 390 , 390 , 14 . 427502636 , 10 . 276666611 , 4 . 1508360252 , 0 . 2343213885 , 1 . 1046579745 , 1 . 338979363 <nl> + 050 , 2 , 3 , 55 , 125 , Wisconsin , Vilas County , 21430 , 21430 , 21457 , 21442 , 27 , - 15 , 47 , 199 , 65 , 286 , - 18 , - 87 , 0 , 1 , 47 , 71 , 47 , 72 , - 2 , 0 , 190 , 190 , 190 , 9 . 2776055386 , 13 . 333644141 , - 4 . 056038602 , 0 . 0466211334 , 3 . 3101004685 , 3 . 3567216019 <nl> + 050 , 2 , 3 , 55 , 127 , Wisconsin , Walworth County , 102228 , 102228 , 102363 , 102931 , 135 , 568 , 281 , 1111 , 214 , 850 , 67 , 261 , 39 , 136 , 31 , 174 , 70 , 310 , - 2 , - 3 , 2709 , 2880 , 3050 , 10 . 823501905 , 8 . 2808070377 , 2 . 5426948669 , 1 . 324929126 , 1 . 6951299112 , 3 . 0200590373 <nl> + 050 , 2 , 3 , 55 , 129 , Wisconsin , Washburn County , 15911 , 15911 , 15921 , 15912 , 10 , - 9 , 37 , 155 , 49 , 203 , - 12 , - 48 , 0 , 2 , 24 , 39 , 24 , 41 , - 2 , - 2 , 205 , 205 , 205 , 9 . 7383218672 , 12 . 754060252 , - 3 . 015738385 , 0 . 125655766 , 2 . 4502874376 , 2 . 5759432036 <nl> + 050 , 2 , 3 , 55 , 131 , Wisconsin , Washington County , 131887 , 131887 , 131989 , 132386 , 102 , 397 , 357 , 1399 , 243 , 970 , 114 , 429 , 13 , 34 , - 20 , - 59 , - 7 , - 25 , - 5 , - 7 , 1143 , 1143 , 1143 , 10 . 583451537 , 7 . 3380614657 , 3 . 2453900709 , 0 . 2572104019 , - 0 . 446335697 , - 0 . 189125296 <nl> + 050 , 2 , 3 , 55 , 133 , Wisconsin , Waukesha County , 389891 , 389891 , 390009 , 390730 , 118 , 721 , 936 , 3665 , 727 , 2927 , 209 , 738 , 61 , 124 , - 141 , - 117 , - 80 , 7 , - 11 , - 24 , 5650 , 5650 , 5650 , 9 . 3885408568 , 7 . 4980243077 , 1 . 8905165491 , 0 . 3176477671 , - 0 . 299716038 , 0 . 0179317288 <nl> + 050 , 2 , 3 , 55 , 135 , Wisconsin , Waupaca County , 52410 , 52410 , 52418 , 52682 , 8 , 264 , 144 , 568 , 188 , 708 , - 44 , - 140 , 4 , 16 , 54 , 396 , 58 , 412 , - 6 , - 8 , 1635 , 1635 , 1635 , 10 . 808753568 , 13 . 472882969 , - 2 . 664129401 , 0 . 3044719315 , 7 . 5356803045 , 7 . 840152236 <nl> + 050 , 2 , 3 , 55 , 137 , Wisconsin , Waushara County , 24496 , 24496 , 24496 , 24576 , 0 , 80 , 58 , 228 , 69 , 229 , - 11 , - 1 , 1 , 15 , 12 , 66 , 13 , 81 , - 2 , 0 , 1261 , 1261 , 1261 , 9 . 29246821 , 9 . 3332246495 , - 0 . 04075644 , 0 . 6113465928 , 2 . 6899250082 , 3 . 3012716009 <nl> + 050 , 2 , 3 , 55 , 139 , Wisconsin , Winnebago County , 166994 , 166994 , 167092 , 167699 , 98 , 607 , 492 , 1911 , 332 , 1364 , 160 , 547 , 22 , 95 , - 79 , - 24 , - 57 , 71 , - 5 , - 11 , 8239 , 8239 , 8239 , 11 . 416077493 , 8 . 1483671903 , 3 . 2677103028 , 0 . 5675182427 , - 0 . 14337303 , 0 . 424145213 <nl> + 050 , 2 , 3 , 55 , 141 , Wisconsin , Wood County , 74749 , 74749 , 74807 , 74785 , 58 , - 22 , 237 , 928 , 177 , 703 , 60 , 225 , 5 , 27 , - 4 , - 274 , 1 , - 247 , - 3 , 0 , 891 , 891 , 891 , 12 . 407080593 , 9 . 3988983368 , 3 . 0081822557 , 0 . 3609818707 , - 3 . 663297503 , - 3 . 302315632 <nl> + 040 , 4 , 8 , 56 , 000 , Wyoming , Wyoming , 563626 , 563626 , 564554 , 568158 , 928 , 3604 , 1855 , 7555 , 922 , 4433 , 933 , 3122 , 150 , 460 , - 174 , 25 , - 24 , 485 , 19 , - 3 , 13712 , 13815 , 13815 , 13 . 339666217 , 7 . 8272323415 , 5 . 5124338755 , 0 . 8122099881 , 0 . 0441418472 , 0 . 8563518352 <nl> + 050 , 4 , 8 , 56 , 001 , Wyoming , Albany County , 36299 , 36299 , 36444 , 36889 , 145 , 445 , 108 , 424 , 38 , 176 , 70 , 248 , 23 , 95 , 51 , 102 , 74 , 197 , 1 , 0 , 2248 , 2248 , 2248 , 11 . 563688926 , 4 . 8000218183 , 6 . 7636671076 , 2 . 5909208678 , 2 . 7818308265 , 5 . 3727516943 <nl> + 050 , 4 , 8 , 56 , 003 , Wyoming , Big Horn County , 11668 , 11668 , 11696 , 11759 , 28 , 63 , 27 , 133 , 23 , 121 , 4 , 12 , 3 , 14 , 22 , 37 , 25 , 51 , - 1 , 0 , 183 , 183 , 183 , 11 . 340865487 , 10 . 317629503 , 1 . 0232359838 , 1 . 1937753144 , 3 . 1549776167 , 4 . 3487529311 <nl> + 050 , 4 , 8 , 56 , 005 , Wyoming , Campbell County , 46133 , 46133 , 46228 , 46618 , 95 , 390 , 187 , 776 , 77 , 283 , 110 , 493 , 2 , 8 , - 18 , - 111 , - 16 , - 103 , 1 , 0 , 422 , 422 , 422 , 16 . 715852056 , 6 . 0961161493 , 10 . 619735907 , 0 . 1723283717 , - 2 . 391056158 , - 2 . 218727786 <nl> + 050 , 4 , 8 , 56 , 007 , Wyoming , Carbon County , 15885 , 15885 , 15834 , 15786 , - 51 , - 48 , 44 , 206 , 29 , 153 , 15 , 53 , 0 , - 1 , - 67 , - 99 , - 67 , - 100 , 1 , - 1 , 780 , 780 , 780 , 13 . 02972802 , 9 . 6774193548 , 3 . 3523086654 , - 0 . 063251107 , - 6 . 261859583 , - 6 . 325110689 <nl> + 050 , 4 , 8 , 56 , 009 , Wyoming , Converse County , 13833 , 13833 , 13830 , 13755 , - 3 , - 75 , 44 , 178 , 8 , 117 , 36 , 61 , 1 , 2 , - 40 , - 138 , - 39 , - 136 , 0 , 0 , 103 , 103 , 103 , 12 . 905564618 , 8 . 4828711256 , 4 . 4226934928 , 0 . 145006344 , - 10 . 00543774 , - 9 . 860431394 <nl> + 050 , 4 , 8 , 56 , 011 , Wyoming , Crook County , 7083 , 7083 , 7115 , 7111 , 32 , - 4 , 25 , 95 , 6 , 63 , 19 , 32 , 0 , 0 , 13 , - 35 , 13 , - 35 , 0 , - 1 , 34 , 34 , 34 , 13 . 355827358 , 8 . 8570223534 , 4 . 4988050049 , 0 , - 4 . 920567974 , - 4 . 920567974 <nl> + 050 , 4 , 8 , 56 , 013 , Wyoming , Fremont County , 40123 , 40123 , 40273 , 40579 , 150 , 306 , 154 , 609 , 79 , 391 , 75 , 218 , 2 , 13 , 72 , 77 , 74 , 90 , 1 , - 2 , 864 , 864 , 864 , 15 . 06456241 , 9 . 6719932717 , 5 . 3925691387 , 0 . 3215752239 , 1 . 9047147875 , 2 . 2262900114 <nl> + 050 , 4 , 8 , 56 , 015 , Wyoming , Goshen County , 13249 , 13249 , 13423 , 13536 , 174 , 113 , 31 , 134 , 23 , 139 , 8 , - 5 , 0 , 1 , 161 , 116 , 161 , 117 , 5 , 1 , 1070 , 1173 , 1173 , 9 . 9410215512 , 10 . 311955191 , - 0 . 37093364 , 0 . 074186728 , 8 . 6056604473 , 8 . 6798471753 <nl> + 050 , 4 , 8 , 56 , 017 , Wyoming , Hot Springs County , 4812 , 4812 , 4809 , 4799 , - 3 , - 10 , 10 , 45 , 5 , 76 , 5 , - 31 , 0 , 0 , - 7 , 21 , - 7 , 21 , - 1 , 0 , 86 , 86 , 86 , 9 . 367194005 , 15 . 820149875 , - 6 . 45295587 , 0 , 4 . 3713572023 , 4 . 3713572023 <nl> + 050 , 4 , 8 , 56 , 019 , Wyoming , Johnson County , 8569 , 8569 , 8577 , 8642 , 8 , 65 , 25 , 102 , 14 , 86 , 11 , 16 , 1 , 3 , - 4 , 46 , - 3 , 49 , 0 , 0 , 71 , 71 , 71 , 11 . 847377897 , 9 . 9889656774 , 1 . 8584122191 , 0 . 3484522911 , 5 . 3429351298 , 5 . 6913874209 <nl> + 050 , 4 , 8 , 56 , 021 , Wyoming , Laramie County , 91738 , 91738 , 92130 , 92680 , 392 , 550 , 318 , 1264 , 160 , 720 , 158 , 544 , 45 , 43 , 186 , - 32 , 231 , 11 , 3 , - 5 , 1644 , 1644 , 1644 , 13 . 678913479 , 7 . 7917861588 , 5 . 88712732 , 0 . 4653427845 , - 0 . 346301607 , 0 . 1190411774 <nl> + 050 , 4 , 8 , 56 , 023 , Wyoming , Lincoln County , 18106 , 18106 , 18100 , 18071 , - 6 , - 29 , 69 , 262 , 12 , 115 , 57 , 147 , 3 , 10 , - 66 , - 187 , - 63 , - 177 , 0 , 1 , 71 , 71 , 71 , 14 . 486743524 , 6 . 3586851345 , 8 . 1280583893 , 0 . 5529291421 , - 10 . 33977496 , - 9 . 786845816 <nl> + 050 , 4 , 8 , 56 , 025 , Wyoming , Natrona County , 75450 , 75450 , 75474 , 76366 , 24 , 892 , 253 , 1033 , 167 , 667 , 86 , 366 , 5 , 22 , - 67 , 501 , - 62 , 523 , 0 , 3 , 1645 , 1645 , 1645 , 13 . 606427819 , 8 . 7855637513 , 4 . 8208640674 , 0 . 2897787144 , 6 . 5990516333 , 6 . 8888303477 <nl> + 050 , 4 , 8 , 56 , 027 , Wyoming , Niobrara County , 2484 , 2484 , 2490 , 2491 , 6 , 1 , 5 , 18 , 3 , 21 , 2 , - 3 , 0 , 0 , 4 , 5 , 4 , 5 , 0 , - 1 , 214 , 214 , 214 , 7 . 2274643646 , 8 . 4320417587 , - 1 . 204577394 , 0 , 2 . 0076289902 , 2 . 0076289902 <nl> + 050 , 4 , 8 , 56 , 029 , Wyoming , Park County , 28205 , 28205 , 28269 , 28592 , 64 , 323 , 69 , 290 , 68 , 239 , 1 , 51 , 3 , 12 , 61 , 257 , 64 , 269 , - 1 , 3 , 942 , 942 , 942 , 10 . 200313044 , 8 . 4064648881 , 1 . 793848156 , 0 . 4220819191 , 9 . 0395877667 , 9 . 4616696857 <nl> + 050 , 4 , 8 , 56 , 031 , Wyoming , Platte County , 8667 , 8667 , 8695 , 8796 , 28 , 101 , 17 , 64 , 9 , 89 , 8 , - 25 , 0 , - 1 , 20 , 127 , 20 , 126 , 0 , 0 , 103 , 103 , 103 , 7 . 3180492825 , 10 . 176662283 , - 2 . 858613001 , - 0 . 11434452 , 14 . 521754045 , 14 . 407409525 <nl> + 050 , 4 , 8 , 56 , 033 , Wyoming , Sheridan County , 29116 , 29116 , 29147 , 29239 , 31 , 92 , 88 , 349 , 79 , 299 , 9 , 50 , 4 , 19 , 19 , 25 , 23 , 44 , - 1 , - 2 , 1009 , 1009 , 1009 , 11 . 9549207 , 10 . 242181345 , 1 . 7127393553 , 0 . 650840955 , 0 . 8563696777 , 1 . 5072106327 <nl> + 050 , 4 , 8 , 56 , 035 , Wyoming , Sublette County , 10247 , 10247 , 10237 , 10146 , - 10 , - 91 , 32 , 129 , 9 , 52 , 23 , 77 , 3 , 15 , - 36 , - 183 , - 33 , - 168 , 0 , 0 , 550 , 550 , 550 , 12 . 657606829 , 5 . 102291125 , 7 . 5553157043 , 1 . 4718147476 , - 17 . 95613992 , - 16 . 48432517 <nl> + 050 , 4 , 8 , 56 , 037 , Wyoming , Sweetwater County , 43806 , 43806 , 43623 , 44175 , - 183 , 552 , 160 , 664 , 66 , 249 , 94 , 415 , 26 , 85 , - 312 , 53 , - 286 , 138 , 9 , - 1 , 679 , 679 , 679 , 15 . 125629285 , 5 . 672110982 , 9 . 4535183034 , 1 . 936262785 , 1 . 2073167954 , 3 . 1435795804 <nl> + 050 , 4 , 8 , 56 , 039 , Wyoming , Teton County , 21294 , 21294 , 21313 , 21548 , 19 , 235 , 73 , 266 , 8 , 78 , 65 , 188 , 20 , 84 , - 67 , - 36 , - 47 , 48 , 1 , - 1 , 271 , 271 , 271 , 12 . 412216234 , 3 . 6396724295 , 8 . 7725438044 , 3 . 9196472317 , - 1 . 679848814 , 2 . 2397984181 <nl> + 050 , 4 , 8 , 56 , 041 , Wyoming , Uinta County , 21118 , 21118 , 21117 , 20985 , - 1 , - 132 , 75 , 332 , 20 , 140 , 55 , 192 , 8 , 29 , - 65 , - 357 , - 57 , - 328 , 1 , 4 , 270 , 270 , 270 , 15 . 77122227 , 6 . 6505154149 , 9 . 1207068548 , 1 . 3776067645 , - 16 . 95881431 , - 15 . 58120754 <nl> + 050 , 4 , 8 , 56 , 043 , Wyoming , Washakie County , 8533 , 8533 , 8552 , 8487 , 19 , - 65 , 24 , 98 , 8 , 88 , 16 , 10 , 0 , 2 , 3 , - 77 , 3 , - 75 , 0 , 0 , 140 , 140 , 140 , 11 . 503022478 , 10 . 329244674 , 1 . 1737778039 , 0 . 2347555608 , - 9 . 03808909 , - 8 . 803333529 <nl> + 050 , 4 , 8 , 56 , 045 , Wyoming , Weston County , 7208 , 7208 , 7178 , 7108 , - 30 , - 70 , 17 , 84 , 11 , 71 , 6 , 13 , 1 , 5 , - 37 , - 87 , - 36 , - 82 , 0 , - 1 , 313 , 313 , 313 , 11 . 759764805 , 9 . 939801204 , 1 . 8199636007 , 0 . 6999860003 , - 12 . 1797564 , - 11 . 4797704 <nl> new file mode 100644 <nl> index 00000000000 . . 608146e0a33 <nl> mmm / dev / null <nl> ppp b / demos / election / election . py <nl> <nl> + from rethinkdb import * <nl> + import pprint <nl> + p = pprint . PrettyPrinter ( indent = 4 ) <nl> + pp = p . pprint <nl> + <nl> + # connect to the server . <nl> + connect ( " localhost " , 12346 + 14850 ) <nl> + <nl> + # The tables I have to work with . <nl> + pop = db ( " test " ) . table ( " pop " ) <nl> + poll = db ( " test " ) . table ( " polls " ) <nl> + <nl> + # Join the two tables together . <nl> + pop_with_poll = pop . equi_join ( ' Stname ' , poll ) . zip ( ) <nl> + <nl> + # States in which one party is within 12 points of the other party . <nl> + gop_is_close = pop_with_poll . filter ( lambda x : ( x [ " DEM " ] - x [ " GOP " ] < 12 ) & ( x [ " DEM " ] > x [ " GOP " ] ) ) <nl> + dem_is_close = pop_with_poll . filter ( lambda x : ( x [ " GOP " ] - x [ " DEM " ] < 12 ) & ( x [ " GOP " ] > x [ " DEM " ] ) ) <nl> + <nl> + # Swing states <nl> + swing_states_gop = gop_is_close . map ( lambda x : x [ " Stname " ] ) . distinct ( ) <nl> + swing_states_dem = dem_is_close . map ( lambda x : x [ " Stname " ] ) . distinct ( ) <nl> + <nl> + # How man voters either party would need to turn to win the states . <nl> + needed_to_win_gop = gop_is_close . grouped_map_reduce ( lambda x : x [ " Stname " ] , lambda x : x [ ' POPESTIMATE2010 ' ] * ( ( x [ " DEM " ] - x [ " GOP " ] ) / 100 ) , 0 , lambda x , y : x + y ) <nl> + needed_to_win_dem = dem_is_close . grouped_map_reduce ( lambda x : x [ " Stname " ] , lambda x : x [ ' POPESTIMATE2010 ' ] * ( ( x [ " GOP " ] - x [ " DEM " ] ) / 100 ) , 0 , lambda x , y : x + y ) <nl> + <nl> + # Finally : for each voter turned how many electoral votes could one hope to gain . <nl> + return_on_investment_gop = needed_to_win_gop . equi_join ( " group " , poll ) . zip ( ) . map ( lambda x : { " State " : x [ " id " ] , " ev_per_person " : x [ " EV " ] / x [ " reduction " ] } ) <nl> + return_on_investment_dem = needed_to_win_dem . equi_join ( " group " , poll ) . zip ( ) . map ( lambda x : { " State " : x [ " id " ] , " ev_per_person " : x [ " EV " ] / x [ " reduction " ] } ) <nl> new file mode 100644 <nl> index 00000000000 . . eb449d58e35 <nl> mmm / dev / null <nl> ppp b / demos / election / pres_polls . csv <nl> <nl> + Day , Len , id , EV , Dem , GOP , Ind , Date , , , , , , , , Pollster <nl> + 226 . 5 , 4 , Alabama , 9 , 36 , 54 , , Aug 16 , , , , , , , , Capital Survey - 4 <nl> + 177 . 0 , 3 , Alabama , 9 , 36 , 51 , , Jun 27 , , , , , , , , Capital Survey - 3 <nl> + 1 . 0 , 1 , Alabama , 9 , 39 , 60 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Alaska , 3 , 38 , 62 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 275 . 0 , 3 , Arizona , 11 , 44 , 53 , , Oct 03 , , , , , , , , PPP - 3 <nl> + 268 . 5 , 2 , Arizona , 11 , 42 , 46 , , Sep 26 , , , , , , , , Moore Consulting - 2 <nl> + 268 . 0 , 1 , Arizona , 11 , 42 , 52 , , Sep 25 , , , , , , , , Rasmussen - 1 <nl> + 260 . 0 , 5 , Arizona , 11 , 45 , 48 , , Sep 19 , , , , , , , , Purple Strategies - 5 <nl> + 251 . 0 , 3 , Arizona , 11 , 44 , 53 , , Sep 09 , , , , , , , , PPP - 3 <nl> + 205 . 0 , 3 , Arizona , 11 , 41 , 52 , , Jul 25 , , , , , , , , PPP - 3 <nl> + 177 . 0 , 1 , Arizona , 11 , 41 , 54 , , Jun 26 , , , , , , , , Rasmussen - 1 <nl> + 155 . 5 , 2 , Arizona , 11 , 46 , 49 , , Jun 05 , , , , , , , , PPP - 2 <nl> + 138 . 5 , 4 , Arizona , 11 , 43 , 50 , , May 20 , , , , , , , , PPP - 4 <nl> + 105 . 0 , 11 , Arizona , 11 , 40 , 42 , , Apr 20 , , , , , , , , Arizona State U . - 11 <nl> + 103 . 0 , 9 , Arizona , 11 , 42 , 40 , , Apr 17 , , , , , , , , Rocky Mtn Poll - 9 <nl> + 102 . 0 , 1 , Arizona , 11 , 40 , 42 , , Apr 12 , , , , , , , , Arizona State U . - 1 <nl> + 72 . 0 , 1 , Arizona , 11 , 40 , 51 , , Mar 13 , , , , , , , , Rasmussen - 1 <nl> + 50 . 5 , 2 , Arizona , 11 , 40 , 45 , , Feb 20 , , , , , , , , Marist Coll . - 2 <nl> + 49 . 0 , 3 , Arizona , 11 , 47 , 47 , , Feb 19 , , , , , , , , PPP - 3 <nl> + 7 . 0 , 5 , Arizona , 11 , 37 , 43 , , Jan 09 , , , , , , , , Rocky Mtn Poll - 5 <nl> + 1 . 0 , 1 , Arizona , 11 , 45 , 54 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 260 . 0 , 1 , Arkansas , 6 , 35 , 56 , , Sep 17 , , , , , , , , Hendrix Coll . - 1 <nl> + 1 . 0 , 1 , Arkansas , 6 , 39 , 59 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 255 . 5 , 8 , California , 55 , 53 , 39 , , Sep 16 , , , , , , , , Public Policy Inst . of Calif . - 8 <nl> + 254 . 0 , 13 , California , 55 , 58 , 34 , , Sep 17 , , , , , , , , Field Poll - 13 <nl> + 253 . 5 , 4 , California , 55 , 55 , 33 , , Sep 12 , , , , , , , , Pepperdine U . - 4 <nl> + 253 . 0 , 3 , California , 55 , 57 , 35 , , Sep 11 , , , , , , , , SurveyUSA - 3 <nl> + 217 . 0 , 5 , California , 55 , 56 , 33 , , Aug 07 , , , , , , , , Tulchin Research - 5 <nl> + 198 . 0 , 15 , California , 55 , 51 , 40 , , Jul 24 , , , , , , , , Public Policy Inst . of Calif . - 15 <nl> + 197 . 5 , 2 , California , 55 , 52 , 33 , , Jul 17 , , , , , , , , Pepperdine U . - 2 <nl> + 177 . 5 , 12 , California , 55 , 55 , 37 , , Jul 02 , , , , , , , , Field Poll - 12 <nl> + 148 . 0 , 3 , California , 55 , 57 , 36 , , May 29 , , , , , , , , SurveyUSA - 3 <nl> + 145 . 0 , 9 , California , 55 , 48 , 32 , , May 29 , , , , , , , , Field Poll - 9 <nl> + 139 . 0 , 5 , California , 55 , 56 , 37 , , May 21 , , , , , , , , Los Angeles Times - 5 <nl> + 137 . 0 , 7 , California , 55 , 50 , 39 , , May 20 , , , , , , , , Public Policy Inst . of Calif . - 7 <nl> + 90 . 0 , 5 , California , 55 , 62 , 31 , , Apr 02 , , , , , , , , SurveyUSA - 5 <nl> + 75 . 5 , 6 , California , 55 , 57 , 36 , , Mar 19 , , , , , , , , Los Angeles Times - 6 <nl> + 43 . 0 , 9 , California , 55 , 57 , 35 , , Feb 16 , , , , , , , , Rasmussen - 9 <nl> + 41 . 0 , 17 , California , 55 , 55 , 35 , , Feb 18 , , , , , , , , Field Poll - 17 <nl> + 39 . 5 , 2 , California , 55 , 60 , 31 , , Feb 09 , , , , , , , , SurveyUSA - 2 <nl> + 32 . 0 , 3 , California , 55 , 52 , 30 , , Feb 02 , , , , , , , , PPP - 3 <nl> + 1 . 0 , 1 , California , 55 , 61 , 37 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 264 . 5 , 4 , Colorado , 9 , 51 , 45 , , Sep 23 , , , , , , , , PPP - 4 <nl> + 260 . 0 , 1 , Colorado , 9 , 45 , 47 , , Sep 17 , , , , , , , , Rasmussen - 1 <nl> + 260 . 0 , 3 , Colorado , 9 , 50 , 45 , , Sep 18 , , , , , , , , Marist Coll . - 3 <nl> + 260 . 0 , 5 , Colorado , 9 , 48 , 45 , , Sep 19 , , , , , , , , Purple Strategies - 5 <nl> + 257 . 0 , 7 , Colorado , 9 , 48 , 47 , , Sep 17 , , , , , , , , Quinnipiac U . - 7 <nl> + 254 . 0 , 3 , Colorado , 9 , 49 , 47 , , Sep 12 , , , , , , , , ARG - 3 <nl> + 253 . 5 , 4 , Colorado , 9 , 47 , 46 , , Sep 12 , , , , , , , , SurveyUSA - 4 <nl> + 244 . 0 , 3 , Colorado , 9 , 49 , 46 , , Sep 02 , , , , , , , , PPP - 3 <nl> + 225 . 5 , 2 , Colorado , 9 , 49 , 46 , , Aug 14 , , , , , , , , Purple Strategies - 2 <nl> + 218 . 0 , 1 , Colorado , 9 , 47 , 47 , , Aug 06 , , , , , , , , Rasmussen - 1 <nl> + 215 . 5 , 4 , Colorado , 9 , 49 , 43 , , Aug 05 , , , , , , , , PPP - 4 <nl> + 215 . 0 , 7 , Colorado , 9 , 45 , 50 , , Aug 06 , , , , , , , , Quinnipiac U . - 7 <nl> + 192 . 0 , 5 , Colorado , 9 , 45 , 44 , , Jul 13 , , , , , , , , Purple Strategies - 5 <nl> + 166 . 5 , 4 , Colorado , 9 , 49 , 42 , , Jun 17 , , , , , , , , PPP - 4 <nl> + 157 . 0 , 1 , Colorado , 9 , 45 , 45 , , Jun 06 , , , , , , , , Rasmussen - 1 <nl> + 153 . 5 , 6 , Colorado , 9 , 48 , 46 , , Jun 05 , , , , , , , , Purple Strategies - 6 <nl> + 143 . 0 , 3 , Colorado , 9 , 46 , 45 , , May 24 , , , , , , , , Marist Coll . - 3 <nl> + 111 . 0 , 5 , Colorado , 9 , 47 , 47 , , Apr 23 , , , , , , , , Purple Strategies - 5 <nl> + 96 . 0 , 3 , Colorado , 9 , 53 , 40 , , Apr 07 , , , , , , , , PPP - 3 <nl> + 61 . 5 , 4 , Colorado , 9 , 55 , 44 , , Mar 04 , , , , , , , , Quinnipiac U . - 4 <nl> + 1 . 0 , 1 , Colorado , 9 , 54 , 45 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 268 . 0 , 3 , Connecticut , 7 , 54 , 41 , , Sep 26 , , , , , , , , PPP - 3 <nl> + 256 . 5 , 6 , Connecticut , 7 , 53 , 32 , , Sep 16 , , , , , , , , U . of Connecticut - 6 <nl> + 236 . 0 , 5 , Connecticut , 7 , 52 , 45 , , Aug 26 , , , , , , , , Quinnipiac U . - 5 <nl> + 234 . 5 , 2 , Connecticut , 7 , 53 , 40 , , Aug 23 , , , , , , , , PPP - 2 <nl> + 233 . 0 , 1 , Connecticut , 7 , 51 , 43 , , Aug 21 , , , , , , , , Rasmussen - 1 <nl> + 208 . 5 , 4 , Connecticut , 7 , 51 , 43 , , Jul 29 , , , , , , , , PPP - 4 <nl> + 151 . 5 , 6 , Connecticut , 7 , 50 , 38 , , Jun 03 , , , , , , , , Quinnipiac U . - 6 <nl> + 75 . 5 , 6 , Connecticut , 7 , 53 , 37 , , Mar 19 , , , , , , , , Quinnipiac U . - 6 <nl> + 32 . 5 , 2 , Connecticut , 7 , 50 , 37 , , Feb 02 , , , , , , , , Pulse Opinion Research - 2 <nl> + 1 . 0 , 1 , Connecticut , 7 , 61 , 38 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , D . C . , 3 , 92 , 7 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Delaware , 3 , 62 , 37 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 273 . 5 , 2 , Florida , 29 , 47 , 46 , , Oct 01 , , , , , , , , Marist Coll . - 2 <nl> + 271 . 5 , 4 , Florida , 29 , 46 , 43 , , Sep 30 , , , , , , , , Suffolk U . - 4 <nl> + 264 . 5 , 4 , Florida , 29 , 50 , 46 , , Sep 23 , , , , , , , , PPP - 4 <nl> + 264 . 0 , 3 , Florida , 29 , 50 , 45 , , Sep 22 , , , , , , , , ARG - 3 <nl> + 264 . 0 , 5 , Florida , 29 , 51 , 47 , , Sep 23 , , , , , , , , Washington Post - 5 <nl> + 264 . 0 , 7 , Florida , 29 , 53 , 44 , , Sep 24 , , , , , , , , Quinnipiac U . - 7 <nl> + 261 . 0 , 3 , Florida , 29 , 48 , 47 , , Sep 19 , , , , , , , , Mason Dixon - 3 <nl> + 260 . 0 , 3 , Florida , 29 , 49 , 44 , , Sep 18 , , , , , , , , Fox News - 3 <nl> + 260 . 0 , 5 , Florida , 29 , 47 , 48 , , Sep 19 , , , , , , , , Purple Strategies - 5 <nl> + 255 . 0 , 1 , Florida , 29 , 48 , 46 , , Sep 12 , , , , , , , , Rasmussen - 1 <nl> + 253 . 0 , 3 , Florida , 29 , 49 , 44 , , Sep 11 , , , , , , , , Marist Coll . - 3 <nl> + 251 . 0 , 3 , Florida , 29 , 48 , 44 , , Sep 09 , , , , , , , , SurveyUSA - 3 <nl> + 244 . 0 , 3 , Florida , 29 , 48 , 47 , , Sep 02 , , , , , , , , PPP - 3 <nl> + 236 . 0 , 5 , Florida , 29 , 50 , 46 , , Aug 26 , , , , , , , , ORC International - 5 <nl> + 230 . 0 , 7 , Florida , 29 , 49 , 46 , , Aug 21 , , , , , , , , Quinnipiac U . - 7 <nl> + 227 . 0 , 1 , Florida , 29 , 43 , 45 , , Aug 15 , , , , , , , , Rasmussen - 1 <nl> + 225 . 5 , 2 , Florida , 29 , 47 , 48 , , Aug 14 , , , , , , , , Purple Strategies - 2 <nl> + 208 . 5 , 4 , Florida , 29 , 48 , 47 , , Jul 29 , , , , , , , , PPP - 4 <nl> + 208 . 0 , 7 , Florida , 29 , 51 , 45 , , Jul 30 , , , , , , , , Quinnipiac U . - 7 <nl> + 199 . 0 , 3 , Florida , 29 , 48 , 43 , , Jul 19 , , , , , , , , SurveyUSA - 3 <nl> + 192 . 0 , 5 , Florida , 29 , 45 , 48 , , Jul 13 , , , , , , , , Purple Strategies - 5 <nl> + 191 . 0 , 3 , Florida , 29 , 46 , 45 , , Jul 11 , , , , , , , , Mason Dixon - 3 <nl> + 190 . 0 , 1 , Florida , 29 , 45 , 46 , , Jul 09 , , , , , , , , Rasmussen - 1 <nl> + 173 . 0 , 7 , Florida , 29 , 45 , 41 , , Jun 25 , , , , , , , , Quinnipiac U . - 7 <nl> + 166 . 0 , 7 , Florida , 29 , 46 , 42 , , Jun 18 , , , , , , , , Quinnipiac U . - 7 <nl> + 153 . 5 , 6 , Florida , 29 , 45 , 49 , , Jun 05 , , , , , , , , Purple Strategies - 6 <nl> + 152 . 5 , 4 , Florida , 29 , 50 , 46 , , Jun 03 , , , , , , , , PPP - 4 <nl> + 138 . 5 , 4 , Florida , 29 , 48 , 44 , , May 20 , , , , , , , , Marist Coll . - 4 <nl> + 138 . 0 , 7 , Florida , 29 , 41 , 47 , , May 21 , , , , , , , , Quinnipiac U . - 7 <nl> + 127 . 0 , 3 , Florida , 29 , 46 , 45 , , May 08 , , , , , , , , Suffolk U . - 3 <nl> + 118 . 0 , 7 , Florida , 29 , 43 , 44 , , May 01 , , , , , , , , Quinnipiac U . - 7 <nl> + 115 . 0 , 1 , Florida , 29 , 45 , 46 , , Apr 25 , , , , , , , , Rasmussen - 1 <nl> + 111 . 0 , 5 , Florida , 29 , 45 , 47 , , Apr 23 , , , , , , , , Purple Strategies - 5 <nl> + 106 . 0 , 3 , Florida , 29 , 45 , 43 , , Apr 17 , , , , , , , , Fox News - 3 <nl> + 103 . 5 , 4 , Florida , 29 , 50 , 45 , , Apr 15 , , , , , , , , PPP - 4 <nl> + 82 . 0 , 7 , Florida , 29 , 49 , 42 , , Mar 26 , , , , , , , , Quinnipiac U . - 7 <nl> + 72 . 0 , 1 , Florida , 29 , 46 , 43 , , Mar 13 , , , , , , , , Rasmussen - 1 <nl> + 40 . 0 , 1 , Florida , 29 , 47 , 44 , , Feb 09 , , , , , , , , Rasmussen - 1 <nl> + 26 . 0 , 3 , Florida , 29 , 49 , 41 , , Jan 27 , , , , , , , , Marist Coll . - 3 <nl> + 25 . 0 , 3 , Florida , 29 , 44 , 48 , , Jan 26 , , , , , , , , Mason Dixon - 3 <nl> + 23 . 0 , 3 , Florida , 29 , 42 , 47 , , Jan 24 , , , , , , , , Suffolk U . - 3 <nl> + 21 . 0 , 5 , Florida , 29 , 45 , 45 , , Jan 23 , , , , , , , , Quinnipiac U . - 5 <nl> + 6 . 0 , 5 , Florida , 29 , 43 , 46 , , Jan 08 , , , , , , , , Quinnipiac U . - 5 <nl> + 1 . 0 , 1 , Florida , 29 , 51 , 48 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 262 . 0 , 1 , Georgia , 16 , 35 , 56 , , Sep 19 , , , , , , , , Insider Advantage - 1 <nl> + 204 . 0 , 1 , Georgia , 16 , 41 , 50 , , Jul 23 , , , , , , , , Insider Advantage - 1 <nl> + 142 . 0 , 1 , Georgia , 16 , 40 , 52 , , May 22 , , , , , , , , Insider Advantage - 1 <nl> + 57 . 0 , 7 , Georgia , 16 , 42 , 49 , , Feb 29 , , , , , , , , SurveyUSA - 7 <nl> + 32 . 5 , 2 , Georgia , 16 , 43 , 51 , , Feb 02 , , , , , , , , SurveyUSA - 2 <nl> + 1 . 0 , 1 , Georgia , 16 , 47 , 52 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Hawaii , 4 , 72 , 27 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Idaho , 4 , 36 , 62 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 250 . 0 , 7 , Illinois , 20 , 47 , 34 , , Sep 10 , , , , , , , , Southern Illinois U . - 7 <nl> + 250 . 0 , 7 , Illinois , 20 , 47 , 34 , , Sep 10 , , , , , , , , Southern Illinois University - 7 <nl> + 232 . 0 , 7 , Illinois , 20 , 55 , 29 , , Aug 23 , , , , , , , , IPSOS - 7 <nl> + 200 . 0 , 7 , Illinois , 20 , 51 , 31 , , Jul 22 , , , , , , , , IPSOS - 7 <nl> + 35 . 0 , 5 , Illinois , 20 , 56 , 35 , , Feb 06 , , , , , , , , Market Shares - 5 <nl> + 1 . 0 , 1 , Illinois , 20 , 62 , 37 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 264 . 0 , 5 , Indiana , 11 , 40 , 52 , , Sep 23 , , , , , , , , Howey - DePauw - 5 <nl> + 254 . 0 , 3 , Indiana , 11 , 41 , 47 , , Sep 12 , , , , , , , , Global Strategy - 3 <nl> + 212 . 5 , 2 , Indiana , 11 , 35 , 51 , , Aug 01 , , , , , , , , Rasmussen - 2 <nl> + 143 . 5 , 2 , Indiana , 11 , 42 , 48 , , May 24 , , , , , , , , Rasmussen - 2 <nl> + 85 . 5 , 2 , Indiana , 11 , 40 , 49 , , Mar 27 , , , , , , , , Howey - DePauw - 2 <nl> + 1 . 0 , 1 , Indiana , 11 , 50 , 49 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 268 . 0 , 3 , Iowa , 6 , 51 , 44 , , Sep 26 , , , , , , , , PPP - 3 <nl> + 267 . 5 , 4 , Iowa , 6 , 49 , 45 , , Sep 26 , , , , , , , , Selzer - 4 <nl> + 264 . 5 , 4 , Iowa , 6 , 51 , 44 , , Sep 23 , , , , , , , , ARG - 4 <nl> + 262 . 0 , 1 , Iowa , 6 , 44 , 47 , , Sep 19 , , , , , , , , Rasmussen - 1 <nl> + 260 . 0 , 3 , Iowa , 6 , 50 , 42 , , Sep 18 , , , , , , , , Marist Coll . - 3 <nl> + 236 . 5 , 4 , Iowa , 6 , 47 , 45 , , Aug 26 , , , , , , , , PPP - 4 <nl> + 220 . 0 , 1 , Iowa , 6 , 44 , 46 , , Aug 08 , , , , , , , , Rasmussen - 1 <nl> + 194 . 5 , 4 , Iowa , 6 , 48 , 43 , , Jul 15 , , , , , , , , PPP - 4 <nl> + 162 . 0 , 1 , Iowa , 6 , 46 , 47 , , Jun 11 , , , , , , , , Rasmussen - 1 <nl> + 143 . 0 , 3 , Iowa , 6 , 44 , 44 , , May 24 , , , , , , , , Marist Coll . - 3 <nl> + 124 . 5 , 4 , Iowa , 6 , 51 , 41 , , May 06 , , , , , , , , PPP - 4 <nl> + 44 . 5 , 4 , Iowa , 6 , 44 , 46 , , Feb 15 , , , , , , , , Selzer - 4 <nl> + 1 . 0 , 1 , Iowa , 6 , 54 , 44 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Kansas , 6 , 42 , 57 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 255 . 0 , 3 , Kentucky , 8 , 39 , 53 , , Sep 13 , , , , , , , , SurveyUSA - 3 <nl> + 1 . 0 , 1 , Kentucky , 8 , 41 , 57 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 272 . 5 , 2 , Louisiana , 8 , 37 , 50 , , Sep 30 , , , , , , , , Zogby - 2 <nl> + 258 . 5 , 10 , Louisiana , 8 , 39 , 45 , , Sep 20 , , , , , , , , Southern Media + Opinion Research - 10 <nl> + 1 . 0 , 1 , Louisiana , 8 , 40 , 59 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 268 . 0 , 1 , Maine , 4 , 52 , 40 , , Sep 25 , , , , , , , , Rasmussen - 1 <nl> + 260 . 5 , 2 , Maine , 4 , 55 , 39 , , Sep 18 , , , , , , , , PPP - 2 <nl> + 259 . 0 , 3 , Maine , 4 , 54 , 37 , , Sep 17 , , , , , , , , Maine Peoples Res . Ctr . - 3 <nl> + 257 . 0 , 5 , Maine , 4 , 52 , 36 , , Sep 16 , , , , , , , , Critical Insights - 5 <nl> + 217 . 5 , 2 , Maine , 4 , 52 , 37 , , Aug 06 , , , , , , , , Moore Consulting - 2 <nl> + 173 . 5 , 6 , Maine , 4 , 49 , 35 , , Jun 25 , , , , , , , , Critical Insights - 6 <nl> + 164 . 5 , 2 , Maine , 4 , 48 , 34 , , Jun 14 , , , , , , , , MassINC - 2 <nl> + 124 . 5 , 6 , Maine , 4 , 50 , 42 , , May 07 , , , , , , , , Critical Insights - 6 <nl> + 91 . 0 , 3 , Maine , 4 , 55 , 37 , , Apr 02 , , , , , , , , Maine People Res . Ctr . - 3 <nl> + 91 . 0 , 3 , Maine , 4 , 55 , 37 , , Apr 02 , , , , , , , , Maine Peoples Res . Ctr . - 3 <nl> + 62 . 0 , 3 , Maine , 4 , 58 , 35 , , Mar 04 , , , , , , , , PPP - 3 <nl> + 1 . 0 , 1 , Maine , 4 , 58 , 40 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 269 . 0 , 3 , Maryland , 10 , 57 , 34 , , Sep 27 , , , , , , , , OpinionWorks - 3 <nl> + 263 . 0 , 7 , Maryland , 10 , 55 , 36 , , Sep 23 , , , , , , , , Gonzales Research - 7 <nl> + 137 . 5 , 8 , Maryland , 10 , 58 , 35 , , May 21 , , , , , , , , PPP - 8 <nl> + 1 . 0 , 1 , Maryland , 10 , 62 , 36 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 270 . 0 , 3 , Massachusetts , 11 , 60 , 32 , , Sep 28 , , , , , , , , MassINC - 3 <nl> + 267 . 0 , 1 , Massachusetts , 11 , 55 , 40 , , Sep 24 , , , , , , , , Rasmussen - 1 <nl> + 267 . 0 , 7 , Massachusetts , 11 , 57 , 30 , , Sep 27 , , , , , , , , U . of New Hampshire - 7 <nl> + 259 . 0 , 3 , Massachusetts , 11 , 59 , 31 , , Sep 17 , , , , , , , , MassINC - 3 <nl> + 258 . 0 , 5 , Massachusetts , 11 , 59 , 36 , , Sep 17 , , , , , , , , U . of Mass . - 5 <nl> + 257 . 5 , 4 , Massachusetts , 11 , 57 , 39 , , Sep 16 , , , , , , , , PPP - 4 <nl> + 257 . 5 , 4 , Massachusetts , 11 , 64 , 31 , , Sep 16 , , , , , , , , Suffolk U . - 4 <nl> + 229 . 5 , 4 , Massachusetts , 11 , 55 , 39 , , Aug 19 , , , , , , , , PPP - 4 <nl> + 174 . 0 , 3 , Massachusetts , 11 , 55 , 39 , , Jun 24 , , , , , , , , PPP - 3 <nl> + 150 . 0 , 3 , Massachusetts , 11 , 56 , 34 , , May 31 , , , , , , , , Western New England U . - 3 <nl> + 148 . 0 , 7 , Massachusetts , 11 , 46 , 34 , , May 31 , , , , , , , , U . of New Hampshire - 7 <nl> + 141 . 0 , 3 , Massachusetts , 11 , 59 , 34 , , May 22 , , , , , , , , Suffolk U . - 3 <nl> + 127 . 0 , 1 , Massachusetts , 11 , 56 , 35 , , May 07 , , , , , , , , Rasmussen - 1 <nl> + 99 . 0 , 1 , Massachusetts , 11 , 51 , 40 , , Apr 09 , , , , , , , , Rasmussen - 1 <nl> + 83 . 0 , 7 , Massachusetts , 11 , 49 , 33 , , Mar 27 , , , , , , , , U . of New Hampshire - 7 <nl> + 76 . 0 , 3 , Massachusetts , 11 , 58 , 35 , , Mar 18 , , , , , , , , PPP - 3 <nl> + 60 . 0 , 1 , Massachusetts , 11 , 55 , 38 , , Feb 29 , , , , , , , , Rasmussen - 1 <nl> + 57 . 0 , 7 , Massachusetts , 11 , 60 , 36 , , Mar 01 , , , , , , , , Western New England U . - 7 <nl> + 44 . 0 , 5 , Massachusetts , 11 , 53 , 39 , , Feb 15 , , , , , , , , Suffolk U . - 5 <nl> + 1 . 0 , 1 , Massachusetts , 11 , 62 , 36 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 263 . 0 , 1 , Michigan , 16 , 54 , 42 , , Sep 20 , , , , , , , , Rasmussen - 1 <nl> + 261 . 0 , 3 , Michigan , 16 , 51 , 42 , , Sep 19 , , , , , , , , PPP - 3 <nl> + 259 . 0 , 5 , Michigan , 16 , 52 , 44 , , Sep 18 , , , , , , , , ORC International - 5 <nl> + 255 . 5 , 6 , Michigan , 16 , 48 , 42 , , Sep 15 , , , , , , , , Marketing Resource Grp . - 6 <nl> + 252 . 5 , 4 , Michigan , 16 , 47 , 37 , , Sep 11 , , , , , , , , EPIC MRA - 4 <nl> + 244 . 0 , 3 , Michigan , 16 , 51 , 44 , , Sep 02 , , , , , , , , PPP - 3 <nl> + 240 . 0 , 1 , Michigan , 16 , 49 , 46 , , Aug 28 , , , , , , , , EPIC MRA - 1 <nl> + 235 . 0 , 1 , Michigan , 16 , 47 , 47 , , Aug 23 , , , , , , , , Mitchell Research - 1 <nl> + 231 . 0 , 3 , Michigan , 16 , 48 , 42 , , Aug 20 , , , , , , , , Glengariff Group - 3 <nl> + 225 . 0 , 1 , Michigan , 16 , 49 , 44 , , Aug 13 , , , , , , , , Mitchell Research - 1 <nl> + 208 . 5 , 8 , Michigan , 16 , 48 , 42 , , Jul 31 , , , , , , , , EPIC MRA - 8 <nl> + 204 . 0 , 1 , Michigan , 16 , 44 , 45 , , Jul 23 , , , , , , , , Mitchell Research - 1 <nl> + 204 . 0 , 1 , Michigan , 16 , 48 , 42 , , Jul 23 , , , , , , , , Rasmussen - 1 <nl> + 203 . 0 , 3 , Michigan , 16 , 53 , 39 , , Jul 23 , , , , , , , , PPP - 3 <nl> + 175 . 5 , 2 , Michigan , 16 , 47 , 43 , , Jun 25 , , , , , , , , Marist Coll . - 2 <nl> + 169 . 0 , 1 , Michigan , 16 , 47 , 46 , , Jun 18 , , , , , , , , Mitchell Research - 1 <nl> + 165 . 5 , 2 , Michigan , 16 , 40 , 40 , , Jun 15 , , , , , , , , Denno Research - 2 <nl> + 165 . 0 , 1 , Michigan , 16 , 50 , 42 , , Jun 14 , , , , , , , , Rasmussen - 1 <nl> + 154 . 5 , 4 , Michigan , 16 , 45 , 46 , , Jun 05 , , , , , , , , EPIC MRA - 4 <nl> + 145 . 5 , 4 , Michigan , 16 , 53 , 39 , , May 27 , , , , , , , , PPP - 4 <nl> + 91 . 5 , 4 , Michigan , 16 , 47 , 43 , , Apr 03 , , , , , , , , EPIC MRA - 4 <nl> + 50 . 5 , 2 , Michigan , 16 , 51 , 33 , , Feb 20 , , , , , , , , Marist Coll . - 2 <nl> + 42 . 0 , 3 , Michigan , 16 , 54 , 38 , , Feb 12 , , , , , , , , PPP - 3 <nl> + 23 . 0 , 5 , Michigan , 16 , 48 , 40 , , Jan 25 , , , , , , , , EPIC MRA - 5 <nl> + 1 . 0 , 1 , Michigan , 16 , 57 , 41 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 261 . 0 , 3 , Minnesota , 10 , 48 , 40 , , Sep 19 , , , , , , , , Mason Dixon - 3 <nl> + 261 . 0 , 3 , Minnesota , 10 , 48 , 40 , , Sep 19 , , , , , , , , Star Tribune - 3 <nl> + 253 . 5 , 2 , Minnesota , 10 , 51 , 44 , , Sep 11 , , , , , , , , PPP - 2 <nl> + 250 . 5 , 4 , Minnesota , 10 , 50 , 40 , , Sep 09 , , , , , , , , SurveyUSA - 4 <nl> + 199 . 0 , 3 , Minnesota , 10 , 46 , 40 , , Jul 19 , , , , , , , , SurveyUSA - 3 <nl> + 152 . 5 , 4 , Minnesota , 10 , 54 , 39 , , Jun 03 , , , , , , , , PPP - 4 <nl> + 129 . 5 , 2 , Minnesota , 10 , 52 , 38 , , May 10 , , , , , , , , SurveyUSA - 2 <nl> + 32 . 0 , 3 , Minnesota , 10 , 49 , 36 , , Feb 02 , , , , , , , , SurveyUSA - 3 <nl> + 21 . 5 , 2 , Minnesota , 10 , 51 , 41 , , Jan 22 , , , , , , , , PPP - 2 <nl> + 1 . 0 , 1 , Minnesota , 10 , 54 , 44 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Mississippi , 6 , 43 , 56 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 275 . 0 , 3 , Missouri , 10 , 45 , 51 , , Oct 03 , , , , , , , , PPP - 3 <nl> + 263 . 0 , 1 , Missouri , 10 , 44 , 50 , , Sep 20 , , , , , , , , Chilenski Strategies - 1 <nl> + 254 . 0 , 1 , Missouri , 10 , 45 , 48 , , Sep 11 , , , , , , , , Rasmussen - 1 <nl> + 240 . 5 , 2 , Missouri , 10 , 41 , 53 , , Aug 29 , , , , , , , , PPP - 2 <nl> + 234 . 5 , 2 , Missouri , 10 , 43 , 50 , , Aug 23 , , , , , , , , Mason Dixon - 2 <nl> + 234 . 0 , 1 , Missouri , 10 , 47 , 46 , , Aug 22 , , , , , , , , Rasmussen - 1 <nl> + 232 . 0 , 1 , Missouri , 10 , 42 , 52 , , Aug 20 , , , , , , , , PPP - 1 <nl> + 222 . 5 , 4 , Missouri , 10 , 44 , 45 , , Aug 12 , , , , , , , , SurveyUSA - 4 <nl> + 220 . 0 , 1 , Missouri , 10 , 47 , 48 , , Aug 08 , , , , , , , , Chilenski Strategies - 1 <nl> + 211 . 0 , 1 , Missouri , 10 , 44 , 50 , , Jul 30 , , , , , , , , Rasmussen - 1 <nl> + 205 . 0 , 3 , Missouri , 10 , 42 , 51 , , Jul 25 , , , , , , , , Mason Dixon - 3 <nl> + 158 . 0 , 1 , Missouri , 10 , 42 , 49 , , Jun 07 , , , , , , , , Rasmussen - 1 <nl> + 145 . 5 , 4 , Missouri , 10 , 45 , 44 , , May 27 , , , , , , , , PPP - 4 <nl> + 107 . 0 , 1 , Missouri , 10 , 45 , 48 , , Apr 17 , , , , , , , , Rasmussen - 1 <nl> + 73 . 0 , 1 , Missouri , 10 , 41 , 50 , , Mar 14 , , , , , , , , Rasmussen - 1 <nl> + 28 . 0 , 3 , Missouri , 10 , 45 , 45 , , Jan 29 , , , , , , , , PPP - 3 <nl> + 1 . 0 , 1 , Missouri , 10 , 48 , 49 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 261 . 0 , 3 , Montana , 3 , 42 , 51 , , Sep 19 , , , , , , , , Mason Dixon - 3 <nl> + 253 . 5 , 2 , Montana , 3 , 45 , 50 , , Sep 11 , , , , , , , , PPP - 2 <nl> + 232 . 0 , 1 , Montana , 3 , 38 , 55 , , Aug 20 , , , , , , , , Rasmussen - 1 <nl> + 169 . 0 , 1 , Montana , 3 , 42 , 51 , , Jun 18 , , , , , , , , Rasmussen - 1 <nl> + 122 . 0 , 1 , Montana , 3 , 44 , 51 , , May 02 , , , , , , , , Rasmussen - 1 <nl> + 117 . 5 , 4 , Montana , 3 , 43 , 48 , , Apr 29 , , , , , , , , PPP - 4 <nl> + 92 . 0 , 1 , Montana , 3 , 40 , 49 , , Apr 02 , , , , , , , , Rasmussen - 1 <nl> + 53 . 0 , 1 , Montana , 3 , 41 , 48 , , Feb 22 , , , , , , , , Rasmussen - 1 <nl> + 1 . 0 , 1 , Montana , 3 , 47 , 50 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 261 . 5 , 4 , Nebraska , 5 , 40 , 51 , , Sep 20 , , , , , , , , Wiese Research Assoc . - 4 <nl> + 136 . 0 , 1 , Nebraska , 5 , 39 , 53 , , May 16 , , , , , , , , Rasmussen - 1 <nl> + 82 . 5 , 4 , Nebraska , 5 , 39 , 51 , , Mar 25 , , , , , , , , PPP - 4 <nl> + 64 . 0 , 1 , Nebraska , 5 , 35 , 52 , , Mar 05 , , , , , , , , Rasmussen - 1 <nl> + 23 . 5 , 4 , Nebraska , 5 , 39 , 51 , , Jan 25 , , , , , , , , PPP - 4 <nl> + 1 . 0 , 1 , Nebraska , 5 , 42 , 57 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 267 . 0 , 3 , Nevada , 6 , 49 , 47 , , Sep 25 , , , , , , , , Marist Coll . - 3 <nl> + 264 . 5 , 4 , Nevada , 6 , 51 , 44 , , Sep 23 , , , , , , , , ARG - 4 <nl> + 262 . 0 , 3 , Nevada , 6 , 52 , 43 , , Sep 20 , , , , , , , , PPP - 3 <nl> + 261 . 0 , 1 , Nevada , 6 , 47 , 45 , , Sep 18 , , , , , , , , Rasmussen - 1 <nl> + 259 . 0 , 5 , Nevada , 6 , 49 , 46 , , Sep 18 , , , , , , , , ORC International - 5 <nl> + 236 . 5 , 4 , Nevada , 6 , 50 , 47 , , Aug 26 , , , , , , , , PPP - 4 <nl> + 230 . 5 , 6 , Nevada , 6 , 47 , 45 , , Aug 21 , , , , , , , , SurveyUSA - 6 <nl> + 205 . 0 , 1 , Nevada , 6 , 50 , 45 , , Jul 24 , , , , , , , , Rasmussen - 1 <nl> + 159 . 5 , 4 , Nevada , 6 , 48 , 42 , , Jun 10 , , , , , , , , PPP - 4 <nl> + 143 . 0 , 3 , Nevada , 6 , 48 , 46 , , May 24 , , , , , , , , Marist Coll . - 3 <nl> + 120 . 0 , 1 , Nevada , 6 , 52 , 44 , , Apr 30 , , , , , , , , Rasmussen - 1 <nl> + 89 . 5 , 4 , Nevada , 6 , 51 , 43 , , Apr 01 , , , , , , , , PPP - 4 <nl> + 78 . 0 , 1 , Nevada , 6 , 50 , 44 , , Mar 19 , , , , , , , , Rasmussen - 1 <nl> + 32 . 0 , 1 , Nevada , 6 , 53 , 44 , , Feb 01 , , , , , , , , Rasmussen - 1 <nl> + 1 . 0 , 1 , Nevada , 6 , 55 , 43 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 271 . 5 , 4 , New Hampshire , 4 , 54 , 39 , , Sep 30 , , , , , , , , U . of New Hampshire - 4 <nl> + 269 . 0 , 3 , New Hampshire , 4 , 50 , 45 , , Sep 27 , , , , , , , , ARG - 3 <nl> + 267 . 5 , 2 , New Hampshire , 4 , 51 , 44 , , Sep 25 , , , , , , , , PPP - 2 <nl> + 267 . 0 , 3 , New Hampshire , 4 , 51 , 44 , , Sep 25 , , , , , , , , Marist Coll . - 3 <nl> + 261 . 0 , 1 , New Hampshire , 4 , 45 , 48 , , Sep 18 , , , , , , , , Rasmussen - 1 <nl> + 259 . 0 , 3 , New Hampshire , 4 , 48 , 46 , , Sep 17 , , , , , , , , ARG - 3 <nl> + 250 . 0 , 7 , New Hampshire , 4 , 45 , 40 , , Sep 10 , , , , , , , , U . of New Hampshire - 7 <nl> + 222 . 5 , 4 , New Hampshire , 4 , 51 , 45 , , Aug 12 , , , , , , , , PPP - 4 <nl> + 219 . 5 , 2 , New Hampshire , 4 , 50 , 44 , , Aug 08 , , , , , , , , PPP - 2 <nl> + 218 . 5 , 12 , New Hampshire , 4 , 49 , 46 , , Aug 12 , , , , , , , , U . of New Hampshire - 12 <nl> + 191 . 0 , 11 , New Hampshire , 4 , 49 , 45 , , Jul 15 , , , , , , , , U . of New Hampshire - 11 <nl> + 175 . 5 , 2 , New Hampshire , 4 , 45 , 45 , , Jun 25 , , , , , , , , Marist Coll . - 2 <nl> + 173 . 5 , 4 , New Hampshire , 4 , 51 , 43 , , Jun 24 , , , , , , , , ARG - 4 <nl> + 171 . 0 , 1 , New Hampshire , 4 , 48 , 43 , , Jun 20 , , , , , , , , Rasmussen - 1 <nl> + 131 . 5 , 4 , New Hampshire , 4 , 53 , 41 , , May 13 , , , , , , , , PPP - 4 <nl> + 104 . 5 , 12 , New Hampshire , 4 , 51 , 42 , , Apr 20 , , , , , , , , U . of New Hampshire - 12 <nl> + 93 . 5 , 4 , New Hampshire , 4 , 42 , 44 , , Apr 05 , , , , , , , , Dartmouth College - 4 <nl> + 75 . 5 , 4 , New Hampshire , 4 , 48 , 41 , , Mar 18 , , , , , , , , ARG - 4 <nl> + 29 . 0 , 9 , New Hampshire , 4 , 50 , 40 , , Feb 02 , , , , , , , , U . of New Hampshire - 9 <nl> + 1 . 0 , 1 , New Hampshire , 4 , 54 , 45 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 271 . 5 , 4 , New Jersey , 14 , 56 , 39 , , Sep 30 , , , , , , , , Rutgers - Eagleton - 4 <nl> + 264 . 0 , 5 , New Jersey , 14 , 52 , 37 , , Sep 23 , , , , , , , , Monmouth U . - 5 <nl> + 253 . 5 , 4 , New Jersey , 14 , 51 , 37 , , Sep 12 , , , , , , , , Global Strategy - 4 <nl> + 252 . 0 , 7 , New Jersey , 14 , 52 , 38 , , Sep 12 , , , , , , , , Fairleigh Dickinson U . - 7 <nl> + 242 . 0 , 7 , New Jersey , 14 , 51 , 44 , , Sep 02 , , , , , , , , Quinnipiac U . - 7 <nl> + 236 . 0 , 3 , New Jersey , 14 , 51 , 37 , , Aug 25 , , , , , , , , Rutgers - Eagleton - 3 <nl> + 207 . 0 , 7 , New Jersey , 14 , 49 , 36 , , Jul 29 , , , , , , , , Fairleigh Dickinson U . - 7 <nl> + 201 . 0 , 5 , New Jersey , 14 , 50 , 42 , , Jul 22 , , , , , , , , Monmouth U . - 5 <nl> + 193 . 0 , 7 , New Jersey , 14 , 49 , 38 , , Jul 15 , , , , , , , , Quinnipiac U . - 7 <nl> + 153 . 0 , 5 , New Jersey , 14 , 56 , 33 , , Jun 04 , , , , , , , , Rutgers - Eagleton - 5 <nl> + 131 . 5 , 6 , New Jersey , 14 , 49 , 39 , , May 14 , , , , , , , , Quinnipiac U . - 6 <nl> + 123 . 0 , 7 , New Jersey , 14 , 50 , 36 , , May 06 , , , , , , , , Fairleigh Dickinson U . - 7 <nl> + 96 . 0 , 7 , New Jersey , 14 , 49 , 40 , , Apr 09 , , , , , , , , Quinnipiac U . - 7 <nl> + 67 . 0 , 7 , New Jersey , 14 , 50 , 37 , , Mar 11 , , , , , , , , Fairleigh Dickinson U . - 7 <nl> + 56 . 0 , 3 , New Jersey , 14 , 52 , 38 , , Feb 26 , , , , , , , , SurveyUSA - 3 <nl> + 55 . 0 , 7 , New Jersey , 14 , 49 , 39 , , Feb 27 , , , , , , , , Quinnipiac U . - 7 <nl> + 41 . 0 , 3 , New Jersey , 14 , 56 , 31 , , Feb 11 , , , , , , , , Rutgers - Eagleton - 3 <nl> + 13 . 0 , 7 , New Jersey , 14 , 48 , 38 , , Jan 16 , , , , , , , , Quinnipiac U . - 7 <nl> + 7 . 5 , 4 , New Jersey , 14 , 52 , 37 , , Jan 09 , , , , , , , , PPP - 4 <nl> + 1 . 0 , 1 , New Jersey , 14 , 57 , 42 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 270 . 0 , 1 , New Mexico , 5 , 51 , 40 , , Sep 27 , , , , , , , , Rasmussen - 1 <nl> + 251 . 0 , 3 , New Mexico , 5 , 53 , 42 , , Sep 09 , , , , , , , , PPP - 3 <nl> + 247 . 5 , 4 , New Mexico , 5 , 45 , 40 , , Sep 06 , , , , , , , , Research and Polling - 4 <nl> + 233 . 0 , 1 , New Mexico , 5 , 52 , 38 , , Aug 21 , , , , , , , , Rasmussen - 1 <nl> + 195 . 5 , 4 , New Mexico , 5 , 49 , 44 , , Jul 16 , , , , , , , , PPP - 4 <nl> + 110 . 5 , 4 , New Mexico , 5 , 54 , 40 , , Apr 22 , , , , , , , , PPP - 4 <nl> + 93 . 0 , 1 , New Mexico , 5 , 52 , 36 , , Apr 03 , , , , , , , , Rasmussen - 1 <nl> + 45 . 0 , 1 , New Mexico , 5 , 55 , 36 , , Feb 14 , , , , , , , , Rasmussen - 1 <nl> + 1 . 0 , 1 , New Mexico , 5 , 57 , 42 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 249 . 5 , 6 , New York , 29 , 62 , 34 , , Sep 09 , , , , , , , , Quinnipiac U . - 6 <nl> + 228 . 5 , 6 , New York , 29 , 62 , 33 , , Aug 19 , , , , , , , , Siena Coll . - 6 <nl> + 201 . 0 , 7 , New York , 29 , 55 , 32 , , Jul 23 , , , , , , , , Quinnipiac U . - 7 <nl> + 193 . 5 , 6 , New York , 29 , 61 , 34 , , Jul 15 , , , , , , , , Siena Coll . - 6 <nl> + 155 . 5 , 4 , New York , 29 , 59 , 35 , , Jun 06 , , , , , , , , Siena Coll . - 4 <nl> + 145 . 0 , 7 , New York , 29 , 56 , 31 , , May 28 , , , , , , , , Quinnipiac U . - 7 <nl> + 128 . 0 , 5 , New York , 29 , 57 , 37 , , May 10 , , , , , , , , Siena Coll . - 5 <nl> + 101 . 0 , 3 , New York , 29 , 57 , 35 , , Apr 12 , , , , , , , , Marist Coll . - 3 <nl> + 92 . 5 , 4 , New York , 29 , 60 , 35 , , Apr 04 , , , , , , , , Siena Coll . - 4 <nl> + 89 . 5 , 6 , New York , 29 , 56 , 33 , , Apr 02 , , , , , , , , Quinnipiac U . - 6 <nl> + 58 . 5 , 4 , New York , 29 , 60 , 34 , , Feb 29 , , , , , , , , Siena Coll . - 4 <nl> + 56 . 0 , 3 , New York , 29 , 60 , 30 , , Feb 26 , , , , , , , , SurveyUSA - 3 <nl> + 41 . 5 , 6 , New York , 29 , 52 , 35 , , Feb 13 , , , , , , , , Quinnipiac U . - 6 <nl> + 30 . 5 , 4 , New York , 29 , 63 , 31 , , Feb 01 , , , , , , , , Siena Coll . - 4 <nl> + 18 . 5 , 2 , New York , 29 , 58 , 35 , , Jan 19 , , , , , , , , Marist Coll . - 2 <nl> + 1 . 0 , 1 , New York , 29 , 63 , 36 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 275 . 0 , 1 , North Carolina , 15 , 47 , 51 , , Oct 02 , , , , , , , , Rasmussen - 1 <nl> + 273 . 0 , 3 , North Carolina , 15 , 49 , 47 , , Oct 01 , , , , , , , , SurveyUSA - 3 <nl> + 272 . 0 , 3 , North Carolina , 15 , 46 , 50 , , Sep 30 , , , , , , , , ARG - 3 <nl> + 271 . 5 , 4 , North Carolina , 15 , 48 , 48 , , Sep 30 , , , , , , , , PPP - 4 <nl> + 267 . 0 , 3 , North Carolina , 15 , 48 , 46 , , Sep 25 , , , , , , , , Marist Coll . - 3 <nl> + 260 . 0 , 5 , North Carolina , 15 , 48 , 46 , , Sep 19 , , , , , , , , Purple Strategies - 5 <nl> + 256 . 0 , 1 , North Carolina , 15 , 45 , 51 , , Sep 13 , , , , , , , , Rasmussen - 1 <nl> + 256 . 0 , 11 , North Carolina , 15 , 46 , 43 , , Sep 18 , , , , , , , , High Point University - 11 <nl> + 251 . 0 , 3 , North Carolina , 15 , 49 , 48 , , Sep 09 , , , , , , , , PPP - 3 <nl> + 248 . 0 , 3 , North Carolina , 15 , 43 , 53 , , Sep 06 , , , , , , , , SurveyUSA - 3 <nl> + 244 . 0 , 3 , North Carolina , 15 , 48 , 48 , , Sep 02 , , , , , , , , PPP - 3 <nl> + 240 . 0 , 5 , North Carolina , 15 , 43 , 46 , , Aug 30 , , , , , , , , SurveyUSA - 5 <nl> + 239 . 5 , 6 , North Carolina , 15 , 43 , 47 , , Aug 30 , , , , , , , , Elon U . - 6 <nl> + 236 . 0 , 5 , North Carolina , 15 , 47 , 48 , , Aug 26 , , , , , , , , ORC International - 5 <nl> + 232 . 5 , 6 , North Carolina , 15 , 43 , 43 , , Aug 23 , , , , , , , , SurveyUSA - 6 <nl> + 215 . 5 , 4 , North Carolina , 15 , 49 , 46 , , Aug 05 , , , , , , , , PPP - 4 <nl> + 213 . 0 , 1 , North Carolina , 15 , 44 , 49 , , Aug 01 , , , , , , , , Rasmussen - 1 <nl> + 187 . 5 , 4 , North Carolina , 15 , 47 , 46 , , Jul 08 , , , , , , , , PPP - 4 <nl> + 185 . 5 , 8 , North Carolina , 15 , 48 , 49 , , Jul 08 , , , , , , , , Project New America - 8 <nl> + 181 . 0 , 3 , North Carolina , 15 , 45 , 50 , , Jul 01 , , , , , , , , SurveyUSA - 3 <nl> + 176 . 0 , 1 , North Carolina , 15 , 44 , 47 , , Jun 25 , , , , , , , , Rasmussen - 1 <nl> + 175 . 5 , 2 , North Carolina , 15 , 46 , 44 , , Jun 25 , , , , , , , , Marist Coll . - 2 <nl> + 159 . 5 , 4 , North Carolina , 15 , 46 , 48 , , Jun 10 , , , , , , , , PPP - 4 <nl> + 139 . 5 , 4 , North Carolina , 15 , 44 , 45 , , May 21 , , , , , , , , SurveyUSA - 4 <nl> + 134 . 0 , 1 , North Carolina , 15 , 43 , 51 , , May 14 , , , , , , , , Rasmussen - 1 <nl> + 131 . 5 , 4 , North Carolina , 15 , 48 , 47 , , May 13 , , , , , , , , PPP - 4 <nl> + 118 . 0 , 5 , North Carolina , 15 , 47 , 43 , , Apr 30 , , , , , , , , SurveyUSA - 5 <nl> + 100 . 0 , 1 , North Carolina , 15 , 44 , 46 , , Apr 10 , , , , , , , , Rasmussen - 1 <nl> + 95 . 5 , 4 , North Carolina , 15 , 49 , 44 , , Apr 07 , , , , , , , , PPP - 4 <nl> + 93 . 5 , 4 , North Carolina , 15 , 47 , 47 , , Apr 05 , , , , , , , , Marist Coll . - 4 <nl> + 68 . 5 , 4 , North Carolina , 15 , 49 , 46 , , Mar 11 , , , , , , , , PPP - 4 <nl> + 35 . 0 , 3 , North Carolina , 15 , 47 , 46 , , Feb 05 , , , , , , , , PPP - 3 <nl> + 6 . 5 , 4 , North Carolina , 15 , 46 , 45 , , Jan 08 , , , , , , , , PPP - 4 <nl> + 1 . 0 , 1 , North Carolina , 15 , 50 , 49 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 191 . 5 , 2 , North Dakota , 3 , 36 , 51 , , Jul 11 , , , , , , , , Rasmussen - 2 <nl> + 156 . 0 , 3 , North Dakota , 3 , 39 , 52 , , Jun 06 , , , , , , , , Mason Dixon - 3 <nl> + 1 . 0 , 1 , North Dakota , 3 , 45 , 53 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 273 . 5 , 2 , Ohio , 18 , 51 , 43 , , Oct 01 , , , , , , , , Marist Coll . - 2 <nl> + 271 . 5 , 4 , Ohio , 18 , 49 , 45 , , Sep 30 , , , , , , , , PPP - 4 <nl> + 267 . 0 , 11 , Ohio , 18 , 51 , 42 , , Sep 29 , , , , , , , , Columbus Dispatch - 11 <nl> + 264 . 0 , 5 , Ohio , 18 , 52 , 44 , , Sep 23 , , , , , , , , Washington Post - 5 <nl> + 264 . 0 , 7 , Ohio , 18 , 53 , 43 , , Sep 24 , , , , , , , , Quinnipiac U . - 7 <nl> + 260 . 0 , 3 , Ohio , 18 , 49 , 42 , , Sep 18 , , , , , , , , Fox News - 3 <nl> + 260 . 0 , 5 , Ohio , 18 , 48 , 44 , , Sep 19 , , , , , , , , Purple Strategies - 5 <nl> + 258 . 5 , 6 , Ohio , 18 , 51 , 46 , , Sep 18 , , , , , , , , U . of Cincinnati - 6 <nl> + 255 . 0 , 1 , Ohio , 18 , 47 , 46 , , Sep 12 , , , , , , , , Rasmussen - 1 <nl> + 254 . 0 , 3 , Ohio , 18 , 48 , 47 , , Sep 12 , , , , , , , , ARG - 3 <nl> + 253 . 0 , 3 , Ohio , 18 , 50 , 43 , , Sep 11 , , , , , , , , Marist Coll . - 3 <nl> + 251 . 0 , 3 , Ohio , 18 , 50 , 45 , , Sep 09 , , , , , , , , PPP - 3 <nl> + 232 . 0 , 11 , Ohio , 18 , 45 , 45 , , Aug 25 , , , , , , , , Columbus Dispatch - 11 <nl> + 230 . 5 , 6 , Ohio , 18 , 49 , 46 , , Aug 21 , , , , , , , , U . of Cincinnati - 6 <nl> + 230 . 0 , 7 , Ohio , 18 , 50 , 44 , , Aug 21 , , , , , , , , Quinnipiac U . - 7 <nl> + 225 . 5 , 2 , Ohio , 18 , 44 , 46 , , Aug 14 , , , , , , , , Purple Strategies - 2 <nl> + 225 . 0 , 1 , Ohio , 18 , 45 , 45 , , Aug 13 , , , , , , , , Rasmussen - 1 <nl> + 222 . 5 , 4 , Ohio , 18 , 48 , 45 , , Aug 12 , , , , , , , , PPP - 4 <nl> + 208 . 0 , 7 , Ohio , 18 , 50 , 44 , , Jul 30 , , , , , , , , Quinnipiac U . - 7 <nl> + 199 . 0 , 1 , Ohio , 18 , 47 , 45 , , Jul 18 , , , , , , , , Rasmussen - 1 <nl> + 192 . 0 , 5 , Ohio , 18 , 48 , 45 , , Jul 13 , , , , , , , , Purple Strategies - 5 <nl> + 173 . 5 , 4 , Ohio , 18 , 47 , 44 , , Jun 24 , , , , , , , , PPP - 4 <nl> + 173 . 0 , 7 , Ohio , 18 , 47 , 38 , , Jun 25 , , , , , , , , Quinnipiac U . - 7 <nl> + 153 . 5 , 6 , Ohio , 18 , 45 , 48 , , Jun 05 , , , , , , , , Purple Strategies - 6 <nl> + 149 . 0 , 1 , Ohio , 18 , 44 , 46 , , May 29 , , , , , , , , Rasmussen - 1 <nl> + 138 . 5 , 4 , Ohio , 18 , 48 , 42 , , May 20 , , , , , , , , Marist Coll . - 4 <nl> + 124 . 5 , 4 , Ohio , 18 , 50 , 43 , , May 06 , , , , , , , , PPP - 4 <nl> + 124 . 5 , 6 , Ohio , 18 , 45 , 44 , , May 07 , , , , , , , , Quinnipiac U . - 6 <nl> + 118 . 0 , 7 , Ohio , 18 , 44 , 42 , , May 01 , , , , , , , , Quinnipiac U . - 7 <nl> + 111 . 0 , 5 , Ohio , 18 , 49 , 44 , , Apr 23 , , , , , , , , Purple Strategies - 5 <nl> + 108 . 0 , 1 , Ohio , 18 , 46 , 42 , , Apr 18 , , , , , , , , Rasmussen - 1 <nl> + 106 . 0 , 3 , Ohio , 18 , 45 , 39 , , Apr 17 , , , , , , , , Fox News - 3 <nl> + 85 . 0 , 1 , Ohio , 18 , 48 , 40 , , Mar 26 , , , , , , , , Rasmussen - 1 <nl> + 82 . 0 , 7 , Ohio , 18 , 47 , 41 , , Mar 26 , , , , , , , , Quinnipiac U . - 7 <nl> + 60 . 5 , 2 , Ohio , 18 , 50 , 38 , , Mar 02 , , , , , , , , Marist Coll . - 2 <nl> + 43 . 0 , 3 , Ohio , 18 , 38 , 44 , , Feb 13 , , , , , , , , Fox News - 3 <nl> + 40 . 5 , 6 , Ohio , 18 , 49 , 46 , , Feb 12 , , , , , , , , Quinnipiac U . - 6 <nl> + 39 . 0 , 1 , Ohio , 18 , 46 , 42 , , Feb 08 , , , , , , , , Rasmussen - 1 <nl> + 28 . 5 , 2 , Ohio , 18 , 49 , 42 , , Jan 29 , , , , , , , , PPP - 2 <nl> + 12 . 5 , 8 , Ohio , 18 , 44 , 42 , , Jan 16 , , , , , , , , Quinnipiac U . - 8 <nl> + 1 . 0 , 1 , Ohio , 18 , 51 , 47 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 216 . 5 , 20 , Oklahoma , 7 , 29 , 58 , , Aug 14 , , , , , , , , Sooner Poll - 20 <nl> + 128 . 5 , 4 , Oklahoma , 7 , 27 , 62 , , May 10 , , , , , , , , Sooner Poll - 4 <nl> + 1 . 0 , 1 , Oklahoma , 7 , 34 , 66 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 254 . 5 , 4 , Oregon , 7 , 50 , 41 , , Sep 13 , , , , , , , , SurveyUSA - 4 <nl> + 173 . 5 , 4 , Oregon , 7 , 50 , 42 , , Jun 24 , , , , , , , , PPP - 4 <nl> + 128 . 5 , 4 , Oregon , 7 , 47 , 43 , , May 10 , , , , , , , , SurveyUSA - 4 <nl> + 75 . 5 , 6 , Oregon , 7 , 50 , 39 , , Mar 19 , , , , , , , , SurveyUSA - 6 <nl> + 1 . 0 , 1 , Oregon , 7 , 57 , 40 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 267 . 0 , 5 , Pennsylvania , 20 , 49 , 42 , , Sep 26 , , , , , , , , Muhlenberg Coll . - 5 <nl> + 264 . 0 , 7 , Pennsylvania , 20 , 54 , 42 , , Sep 24 , , , , , , , , Quinnipiac U . - 7 <nl> + 263 . 5 , 6 , Pennsylvania , 20 , 52 , 43 , , Sep 23 , , , , , , , , Franklin + Marshall Coll . - 6 <nl> + 262 . 0 , 1 , Pennsylvania , 20 , 51 , 39 , , Sep 19 , , , , , , , , Rasmussen - 1 <nl> + 261 . 0 , 3 , Pennsylvania , 20 , 52 , 40 , , Sep 19 , , , , , , , , PPP - 3 <nl> + 259 . 0 , 9 , Pennsylvania , 20 , 48 , 40 , , Sep 20 , , , , , , , , Mercyhurst University - 9 <nl> + 256 . 0 , 7 , Pennsylvania , 20 , 50 , 41 , , Sep 16 , , , , , , , , Muhlenberg Coll . - 7 <nl> + 253 . 5 , 4 , Pennsylvania , 20 , 50 , 39 , , Sep 12 , , , , , , , , Global Strategy - 4 <nl> + 234 . 0 , 3 , Pennsylvania , 20 , 51 , 42 , , Aug 23 , , , , , , , , Global Strategy - 3 <nl> + 233 . 0 , 3 , Pennsylvania , 20 , 49 , 40 , , Aug 22 , , , , , , , , Muhlenberg Coll . - 3 <nl> + 221 . 5 , 6 , Pennsylvania , 20 , 47 , 42 , , Aug 12 , , , , , , , , Franklin + Marshall Coll . - 6 <nl> + 208 . 0 , 7 , Pennsylvania , 20 , 53 , 42 , , Jul 30 , , , , , , , , Quinnipiac U . - 7 <nl> + 203 . 0 , 3 , Pennsylvania , 20 , 49 , 43 , , Jul 23 , , , , , , , , PPP - 3 <nl> + 199 . 0 , 1 , Pennsylvania , 20 , 48 , 44 , , Jul 18 , , , , , , , , Rasmussen - 1 <nl> + 173 . 0 , 7 , Pennsylvania , 20 , 45 , 39 , , Jun 25 , , , , , , , , Quinnipiac U . - 7 <nl> + 158 . 5 , 6 , Pennsylvania , 20 , 46 , 40 , , Jun 10 , , , , , , , , Quinnipiac U . - 6 <nl> + 152 . 0 , 7 , Pennsylvania , 20 , 48 , 36 , , Jun 04 , , , , , , , , Franklin + Marshall Coll . - 7 <nl> + 141 . 0 , 1 , Pennsylvania , 20 , 47 , 41 , , May 21 , , , , , , , , Rasmussen - 1 <nl> + 138 . 5 , 4 , Pennsylvania , 20 , 50 , 42 , , May 20 , , , , , , , , PPP - 4 <nl> + 118 . 0 , 7 , Pennsylvania , 20 , 47 , 39 , , May 01 , , , , , , , , Quinnipiac U . - 7 <nl> + 86 . 5 , 10 , Pennsylvania , 20 , 45 , 40 , , Apr 01 , , , , , , , , Muhlenberg Coll . - 10 <nl> + 82 . 0 , 7 , Pennsylvania , 20 , 45 , 42 , , Mar 26 , , , , , , , , Quinnipiac U . - 7 <nl> + 68 . 5 , 4 , Pennsylvania , 20 , 49 , 42 , , Mar 11 , , , , , , , , PPP - 4 <nl> + 68 . 5 , 6 , Pennsylvania , 20 , 46 , 40 , , Mar 12 , , , , , , , , Quinnipiac U . - 6 <nl> + 49 . 0 , 7 , Pennsylvania , 20 , 48 , 37 , , Feb 21 , , , , , , , , Muhlenberg Coll . - 7 <nl> + 48 . 5 , 8 , Pennsylvania , 20 , 41 , 33 , , Feb 21 , , , , , , , , Franklin + Marshall Coll . - 8 <nl> + 46 . 5 , 16 , Pennsylvania , 20 , 45 , 44 , , Feb 23 , , , , , , , , Rasmussen - 16 <nl> + 19 . 5 , 6 , Pennsylvania , 20 , 41 , 30 , , Jan 22 , , , , , , , , Franklin + Marshall Coll . - 6 <nl> + 1 . 0 , 1 , Pennsylvania , 20 , 55 , 44 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 270 . 5 , 4 , Rhode Island , 4 , 57 , 33 , , Sep 29 , , , , , , , , Fleming and Assocs . - 4 <nl> + 50 . 0 , 7 , Rhode Island , 4 , 54 , 37 , , Feb 22 , , , , , , , , PPP - 7 <nl> + 1 . 0 , 1 , Rhode Island , 4 , 63 , 35 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 11 . 5 , 4 , South Carolina , 9 , 40 , 46 , , Jan 13 , , , , , , , , IPSOS - 4 <nl> + 1 . 0 , 1 , South Carolina , 9 , 45 , 54 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 245 . 0 , 9 , South Dakota , 3 , 39 , 54 , , Sep 06 , , , , , , , , Nielson Bros . - 9 <nl> + 202 . 0 , 5 , South Dakota , 3 , 43 , 49 , , Jul 23 , , , , , , , , Nielson Bros . - 5 <nl> + 47 . 0 , 3 , South Dakota , 3 , 35 , 44 , , Feb 17 , , , , , , , , Nielson Bros . - 3 <nl> + 29 . 0 , 3 , South Dakota , 3 , 40 , 46 , , Jan 30 , , , , , , , , PPP - 3 <nl> + 1 . 0 , 1 , South Dakota , 3 , 45 , 53 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 125 . 5 , 8 , Tennessee , 11 , 40 , 47 , , May 09 , , , , , , , , Princeton Survey - 8 <nl> + 50 . 0 , 7 , Tennessee , 11 , 39 , 42 , , Feb 22 , , , , , , , , Princeton Survey - 7 <nl> + 50 . 0 , 13 , Tennessee , 11 , 41 , 47 , , Feb 25 , , , , , , , , Middle Tenn . State U . - 13 <nl> + 1 . 0 , 1 , Tennessee , 11 , 42 , 57 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 261 . 0 , 17 , Texas , 38 , 39 , 58 , , Sep 26 , , , , , , , , Texas Lyceum - 17 <nl> + 130 . 0 , 7 , Texas , 38 , 35 , 55 , , May 13 , , , , , , , , U . of Texas - 7 <nl> + 110 . 5 , 4 , Texas , 38 , 43 , 50 , , Apr 22 , , , , , , , , PPP - 4 <nl> + 42 . 5 , 8 , Texas , 38 , 36 , 49 , , Feb 15 , , , , , , , , U . of Texas - 8 <nl> + 13 . 5 , 4 , Texas , 38 , 42 , 49 , , Jan 15 , , , , , , , , PPP - 4 <nl> + 1 . 0 , 1 , Texas , 38 , 44 , 55 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 169 . 0 , 7 , Utah , 6 , 26 , 68 , , Jun 21 , , , , , , , , Dan Jones - 7 <nl> + 1 . 0 , 1 , Utah , 6 , 34 , 63 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 228 . 0 , 11 , Vermont , 3 , 62 , 25 , , Aug 21 , , , , , , , , Castleton State Coll . - 11 <nl> + 47 . 5 , 12 , Vermont , 3 , 58 , 33 , , Feb 22 , , , , , , , , Castleton State Coll . - 12 <nl> + 1 . 0 , 1 , Vermont , 3 , 67 , 30 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 273 . 5 , 2 , Virginia , 13 , 48 , 46 , , Oct 01 , , , , , , , , Marist Coll . - 2 <nl> + 268 . 5 , 4 , Virginia , 13 , 49 , 47 , , Sep 27 , , , , , , , , ARG - 4 <nl> + 268 . 0 , 3 , Virginia , 13 , 46 , 44 , , Sep 26 , , , , , , , , Suffolk U . - 3 <nl> + 266 . 5 , 10 , Virginia , 13 , 47 , 39 , , Sep 28 , , , , , , , , Roanoke Coll . - 10 <nl> + 261 . 0 , 3 , Virginia , 13 , 49 , 43 , , Sep 19 , , , , , , , , PPP - 3 <nl> + 260 . 0 , 3 , Virginia , 13 , 50 , 43 , , Sep 18 , , , , , , , , Fox News - 3 <nl> + 260 . 0 , 5 , Virginia , 13 , 46 , 43 , , Sep 19 , , , , , , , , Purple Strategies - 5 <nl> + 257 . 5 , 4 , Virginia , 13 , 51 , 46 , , Sep 16 , , , , , , , , PPP - 4 <nl> + 257 . 0 , 5 , Virginia , 13 , 52 , 44 , , Sep 16 , , , , , , , , Washington Post - 5 <nl> + 257 . 0 , 7 , Virginia , 13 , 50 , 46 , , Sep 17 , , , , , , , , Quinnipiac U . - 7 <nl> + 256 . 0 , 1 , Virginia , 13 , 49 , 48 , , Sep 13 , , , , , , , , Rasmussen - 1 <nl> + 253 . 0 , 3 , Virginia , 13 , 49 , 44 , , Sep 11 , , , , , , , , Marist Coll . - 3 <nl> + 235 . 0 , 1 , Virginia , 13 , 47 , 47 , , Aug 23 , , , , , , , , Rasmussen - 1 <nl> + 229 . 5 , 4 , Virginia , 13 , 50 , 45 , , Aug 19 , , , , , , , , PPP - 4 <nl> + 225 . 5 , 2 , Virginia , 13 , 45 , 48 , , Aug 14 , , , , , , , , Purple Strategies - 2 <nl> + 219 . 0 , 1 , Virginia , 13 , 48 , 46 , , Aug 07 , , , , , , , , Rasmussen - 1 <nl> + 215 . 0 , 7 , Virginia , 13 , 49 , 45 , , Aug 06 , , , , , , , , Quinnipiac U . - 7 <nl> + 197 . 5 , 2 , Virginia , 13 , 47 , 46 , , Jul 17 , , , , , , , , Rasmussen - 2 <nl> + 194 . 0 , 7 , Virginia , 13 , 44 , 44 , , Jul 16 , , , , , , , , Quinnipiac U . - 7 <nl> + 192 . 0 , 5 , Virginia , 13 , 46 , 44 , , Jul 13 , , , , , , , , Purple Strategies - 5 <nl> + 187 . 5 , 4 , Virginia , 13 , 50 , 42 , , Jul 08 , , , , , , , , PPP - 4 <nl> + 154 . 0 , 1 , Virginia , 13 , 47 , 47 , , Jun 03 , , , , , , , , Rasmussen - 1 <nl> + 153 . 5 , 6 , Virginia , 13 , 49 , 46 , , Jun 05 , , , , , , , , Purple Strategies - 6 <nl> + 152 . 5 , 6 , Virginia , 13 , 47 , 42 , , Jun 04 , , , , , , , , Quinnipiac U . - 6 <nl> + 151 . 0 , 31 , Virginia , 13 , 49 , 42 , , Jun 15 , , , , , , , , Old Dominion Univ . - 31 <nl> + 138 . 5 , 4 , Virginia , 13 , 48 , 44 , , May 20 , , , , , , , , Marist Coll . - 4 <nl> + 120 . 0 , 5 , Virginia , 13 , 51 , 44 , , May 02 , , , , , , , , Washington Post - 5 <nl> + 117 . 5 , 4 , Virginia , 13 , 51 , 43 , , Apr 29 , , , , , , , , PPP - 4 <nl> + 113 . 0 , 1 , Virginia , 13 , 44 , 45 , , Apr 23 , , , , , , , , Rasmussen - 1 <nl> + 111 . 0 , 5 , Virginia , 13 , 48 , 46 , , Apr 23 , , , , , , , , Purple Strategies - 5 <nl> + 90 . 0 , 11 , Virginia , 13 , 40 , 46 , , Apr 05 , , , , , , , , Roanoke Coll . - 11 <nl> + 79 . 0 , 1 , Virginia , 13 , 51 , 42 , , Mar 20 , , , , , , , , Rasmussen - 1 <nl> + 74 . 5 , 6 , Virginia , 13 , 50 , 42 , , Mar 18 , , , , , , , , Quinnipiac U . - 6 <nl> + 60 . 5 , 2 , Virginia , 13 , 52 , 35 , , Mar 02 , , , , , , , , Marist Coll . - 2 <nl> + 52 . 0 , 1 , Virginia , 13 , 49 , 43 , , Feb 21 , , , , , , , , Rasmussen - 1 <nl> + 50 . 5 , 14 , Virginia , 13 , 42 , 43 , , Feb 26 , , , , , , , , Roanoke Coll . - 14 <nl> + 34 . 5 , 6 , Virginia , 13 , 47 , 43 , , Feb 06 , , , , , , , , Quinnipiac U . - 6 <nl> + 17 . 0 , 3 , Virginia , 13 , 45 , 44 , , Jan 18 , , , , , , , , Mason Dixon - 3 <nl> + 1 . 0 , 1 , Virginia , 13 , 53 , 46 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 272 . 0 , 3 , Washington , 12 , 56 , 36 , , Sep 30 , , , , , , , , SurveyUSA - 3 <nl> + 269 . 0 , 1 , Washington , 12 , 52 , 41 , , Sep 26 , , , , , , , , Rasmussen - 1 <nl> + 253 . 5 , 4 , Washington , 12 , 53 , 36 , , Sep 12 , , , , , , , , Elway Poll - 4 <nl> + 251 . 0 , 3 , Washington , 12 , 53 , 42 , , Sep 09 , , , , , , , , PPP - 3 <nl> + 251 . 0 , 3 , Washington , 12 , 54 , 38 , , Sep 09 , , , , , , , , SurveyUSA - 3 <nl> + 213 . 5 , 2 , Washington , 12 , 54 , 37 , , Aug 02 , , , , , , , , SurveyUSA - 2 <nl> + 198 . 0 , 3 , Washington , 12 , 46 , 37 , , Jul 18 , , , , , , , , SurveyUSA - 3 <nl> + 166 . 5 , 4 , Washington , 12 , 54 , 41 , , Jun 17 , , , , , , , , PPP - 4 <nl> + 165 . 5 , 4 , Washington , 12 , 49 , 41 , , Jun 16 , , , , , , , , Elway Poll - 4 <nl> + 128 . 5 , 2 , Washington , 12 , 50 , 36 , , May 09 , , , , , , , , SurveyUSA - 2 <nl> + 48 . 5 , 4 , Washington , 12 , 53 , 38 , , Feb 19 , , , , , , , , PPP - 4 <nl> + 45 . 0 , 3 , Washington , 12 , 50 , 39 , , Feb 15 , , , , , , , , SurveyUSA - 3 <nl> + 39 . 0 , 3 , Washington , 12 , 49 , 38 , , Feb 09 , , , , , , , , Elway Poll - 3 <nl> + 14 . 0 , 5 , Washington , 12 , 50 , 39 , , Jan 16 , , , , , , , , SurveyUSA - 5 <nl> + 1 . 0 , 1 , Washington , 12 , 58 , 40 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 235 . 5 , 4 , West Virginia , 5 , 38 , 52 , , Aug 25 , , , , , , , , R . L . Repass - 4 <nl> + 116 . 5 , 4 , West Virginia , 5 , 37 , 54 , , Apr 28 , , , , , , , , R . L . Repass - 4 <nl> + 1 . 0 , 1 , West Virginia , 5 , 43 , 56 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 272 . 5 , 2 , Wisconsin , 10 , 49 , 39 , , Sep 30 , , , , , , , , Zogby - 2 <nl> + 271 . 5 , 4 , Wisconsin , 10 , 53 , 42 , , Sep 30 , , , , , , , , Marquette Law School - 4 <nl> + 261 . 5 , 2 , Wisconsin , 10 , 52 , 45 , , Sep 19 , , , , , , , , PPP - 2 <nl> + 260 . 0 , 1 , Wisconsin , 10 , 49 , 46 , , Sep 17 , , , , , , , , Rasmussen - 1 <nl> + 260 . 0 , 3 , Wisconsin , 10 , 50 , 45 , , Sep 18 , , , , , , , , Marist Coll . - 3 <nl> + 257 . 5 , 4 , Wisconsin , 10 , 54 , 40 , , Sep 16 , , , , , , , , Marquette Law School - 4 <nl> + 257 . 0 , 7 , Wisconsin , 10 , 51 , 45 , , Sep 17 , , , , , , , , Quinnipiac U . - 7 <nl> + 255 . 5 , 2 , Wisconsin , 10 , 49 , 48 , , Sep 13 , , , , , , , , PPP - 2 <nl> + 230 . 0 , 7 , Wisconsin , 10 , 49 , 47 , , Aug 21 , , , , , , , , Quinnipiac U . - 7 <nl> + 229 . 5 , 4 , Wisconsin , 10 , 47 , 48 , , Aug 19 , , , , , , , , PPP - 4 <nl> + 229 . 5 , 4 , Wisconsin , 10 , 49 , 46 , , Aug 19 , , , , , , , , Marquette Law School - 4 <nl> + 227 . 0 , 1 , Wisconsin , 10 , 47 , 48 , , Aug 15 , , , , , , , , Rasmussen - 1 <nl> + 225 . 5 , 2 , Wisconsin , 10 , 49 , 45 , , Aug 14 , , , , , , , , ORC International - 2 <nl> + 215 . 5 , 4 , Wisconsin , 10 , 50 , 45 , , Aug 05 , , , , , , , , Marquette Law School - 4 <nl> + 215 . 0 , 7 , Wisconsin , 10 , 51 , 45 , , Aug 06 , , , , , , , , Quinnipiac U . - 7 <nl> + 206 . 0 , 1 , Wisconsin , 10 , 49 , 46 , , Jul 25 , , , , , , , , Rasmussen - 1 <nl> + 187 . 5 , 4 , Wisconsin , 10 , 50 , 44 , , Jul 08 , , , , , , , , PPP - 4 <nl> + 187 . 5 , 4 , Wisconsin , 10 , 51 , 43 , , Jul 08 , , , , , , , , Marquette Law School - 4 <nl> + 165 . 5 , 4 , Wisconsin , 10 , 49 , 43 , , Jun 16 , , , , , , , , Marquette Law School - 4 <nl> + 163 . 0 , 1 , Wisconsin , 10 , 44 , 47 , , Jun 12 , , , , , , , , Rasmussen - 1 <nl> + 144 . 5 , 4 , Wisconsin , 10 , 51 , 43 , , May 26 , , , , , , , , Marquette Law School - 4 <nl> + 139 . 5 , 6 , Wisconsin , 10 , 49 , 43 , , May 22 , , , , , , , , St . Norbert Coll . - 6 <nl> + 132 . 0 , 3 , Wisconsin , 10 , 47 , 46 , , May 13 , , , , , , , , PPP - 3 <nl> + 130 . 5 , 4 , Wisconsin , 10 , 46 , 46 , , May 12 , , , , , , , , Marquette Law School - 4 <nl> + 129 . 0 , 1 , Wisconsin , 10 , 49 , 45 , , May 09 , , , , , , , , Rasmussen - 1 <nl> + 117 . 5 , 4 , Wisconsin , 10 , 51 , 42 , , Apr 29 , , , , , , , , Marquette Law School - 4 <nl> + 104 . 0 , 3 , Wisconsin , 10 , 50 , 44 , , Apr 15 , , , , , , , , PPP - 3 <nl> + 86 . 0 , 1 , Wisconsin , 10 , 52 , 41 , , Mar 27 , , , , , , , , Rasmussen - 1 <nl> + 85 . 5 , 2 , Wisconsin , 10 , 52 , 35 , , Mar 27 , , , , , , , , Marist Coll . - 2 <nl> + 82 . 5 , 4 , Wisconsin , 10 , 48 , 43 , , Mar 25 , , , , , , , , Marquette Law School - 4 <nl> + 58 . 0 , 1 , Wisconsin , 10 , 47 , 42 , , Feb 27 , , , , , , , , Rasmussen - 1 <nl> + 55 . 5 , 4 , Wisconsin , 10 , 53 , 39 , , Feb 26 , , , , , , , , PPP - 4 <nl> + 48 . 5 , 4 , Wisconsin , 10 , 53 , 38 , , Feb 19 , , , , , , , , Marquette Law School - 4 <nl> + 20 . 5 , 4 , Wisconsin , 10 , 48 , 40 , , Jan 22 , , , , , , , , Marquette Law School - 4 <nl> + 1 . 0 , 1 , Wisconsin , 10 , 56 , 42 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl> + 1 . 0 , 1 , Wyoming , 3 , 33 , 65 , , Jan 01 , , , , , , , , Election 2008 - 1 <nl>
Adds an election demo .
rethinkdb/rethinkdb
cdfbbc4f8c3e6e94d0d86da3c7b58ced023dfe2a
2012-10-05T23:17:09Z
mmm a / contrib / poco <nl> ppp b / contrib / poco <nl> @ @ - 1 + 1 @ @ <nl> - Subproject commit 297fc905e166392156f83b96aaa5f44e8a6a35c4 <nl> + Subproject commit 757d947235b307675cff964f29b19d388140a9eb <nl>
Suppress clang - tidy diagnostics
ClickHouse/ClickHouse
218a947e05eeb021e3ff07320a8bd4f67d688661
2020-09-29T22:20:53Z
mmm a / tensorflow / python / kernel_tests / signal / BUILD <nl> ppp b / tensorflow / python / kernel_tests / signal / BUILD <nl> cuda_py_tests ( <nl> name = " mfcc_ops_test " , <nl> srcs = [ " mfcc_ops_test . py " ] , <nl> additional_deps = [ <nl> + " @ absl_py / / absl / testing : parameterized " , <nl> " / / third_party / py / numpy " , <nl> " / / tensorflow / python : client_testlib " , <nl> " / / tensorflow / python : framework " , <nl> mmm a / tensorflow / python / kernel_tests / signal / mfcc_ops_test . py <nl> ppp b / tensorflow / python / kernel_tests / signal / mfcc_ops_test . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> + from absl . testing import parameterized <nl> + <nl> + from tensorflow . python . compat import compat <nl> from tensorflow . python . eager import context <nl> from tensorflow . python . framework import dtypes <nl> from tensorflow . python . framework import tensor_shape <nl> <nl> # at Google , this code is tested against a reference implementation that follows <nl> # HTK conventions . <nl> @ test_util . run_all_in_graph_and_eager_modes <nl> - class MFCCTest ( test . TestCase ) : <nl> + class MFCCTest ( test . TestCase , parameterized . TestCase ) : <nl> <nl> def test_error ( self ) : <nl> # num_mel_bins must be positive . <nl> def test_error ( self ) : <nl> signal = array_ops . zeros ( ( 2 , 3 , 0 ) ) <nl> mfcc_ops . mfccs_from_log_mel_spectrograms ( signal ) <nl> <nl> - # signal must be float32 <nl> - with self . assertRaises ( ValueError ) : <nl> - signal = array_ops . zeros ( ( 2 , 3 , 5 ) , dtype = dtypes . float64 ) <nl> - mfcc_ops . mfccs_from_log_mel_spectrograms ( signal ) <nl> - <nl> - def test_basic ( self ) : <nl> + @ parameterized . parameters ( dtypes . float32 , dtypes . float64 ) <nl> + def test_basic ( self , dtype ) : <nl> " " " A basic test that the op runs on random input . " " " <nl> - signal = random_ops . random_normal ( ( 2 , 3 , 5 ) ) <nl> - self . evaluate ( mfcc_ops . mfccs_from_log_mel_spectrograms ( signal ) ) <nl> + with compat . forward_compatibility_horizon ( 2019 , 10 , 13 ) : <nl> + signal = random_ops . random_normal ( ( 2 , 3 , 5 ) , dtype = dtype ) <nl> + self . evaluate ( mfcc_ops . mfccs_from_log_mel_spectrograms ( signal ) ) <nl> <nl> def test_unknown_shape ( self ) : <nl> " " " A test that the op runs when shape and rank are unknown . " " " <nl> mmm a / tensorflow / python / ops / signal / mfcc_ops . py <nl> ppp b / tensorflow / python / ops / signal / mfcc_ops . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> - from tensorflow . python . framework import dtypes <nl> from tensorflow . python . framework import ops <nl> from tensorflow . python . ops import array_ops <nl> from tensorflow . python . ops import math_ops <nl> def mfccs_from_log_mel_spectrograms ( log_mel_spectrograms , name = None ) : <nl> For example : <nl> <nl> ` ` ` python <nl> - sample_rate = 16000 . 0 <nl> + batch_size , num_samples , sample_rate = 32 , 32000 , 16000 . 0 <nl> # A Tensor of [ batch_size , num_samples ] mono PCM samples in the range [ - 1 , 1 ] . <nl> - pcm = tf . compat . v1 . placeholder ( tf . float32 , [ None , None ] ) <nl> + pcm = tf . random . normal ( [ batch_size , num_samples ] , dtype = tf . float32 ) <nl> <nl> # A 1024 - point STFT with frames of 64 ms and 75 % overlap . <nl> stfts = tf . signal . stft ( pcm , frame_length = 1024 , frame_step = 256 , <nl> def mfccs_from_log_mel_spectrograms ( log_mel_spectrograms , name = None ) : <nl> ` ` ` <nl> <nl> Args : <nl> - log_mel_spectrograms : A ` [ . . . , num_mel_bins ] ` ` float32 ` ` Tensor ` of <nl> - log - magnitude mel - scale spectrograms . <nl> + log_mel_spectrograms : A ` [ . . . , num_mel_bins ] ` ` float32 ` / ` float64 ` ` Tensor ` <nl> + of log - magnitude mel - scale spectrograms . <nl> name : An optional name for the operation . <nl> Returns : <nl> - A ` [ . . . , num_mel_bins ] ` ` float32 ` ` Tensor ` of the MFCCs of <nl> + A ` [ . . . , num_mel_bins ] ` ` float32 ` / ` float64 ` ` Tensor ` of the MFCCs of <nl> ` log_mel_spectrograms ` . <nl> <nl> Raises : <nl> def mfccs_from_log_mel_spectrograms ( log_mel_spectrograms , name = None ) : <nl> # the true orthogonal DCT ( as implemented by scipy ) scales by sqrt ( 1 / N ) . For <nl> # this reason , we don ' t apply orthogonal normalization and scale the DCT by <nl> # ` 0 . 5 * sqrt ( 2 / N ) ` manually . <nl> - log_mel_spectrograms = ops . convert_to_tensor ( log_mel_spectrograms , <nl> - dtype = dtypes . float32 ) <nl> + log_mel_spectrograms = ops . convert_to_tensor ( log_mel_spectrograms ) <nl> if ( log_mel_spectrograms . shape . ndims and <nl> log_mel_spectrograms . shape . dims [ - 1 ] . value is not None ) : <nl> num_mel_bins = log_mel_spectrograms . shape . dims [ - 1 ] . value <nl> def mfccs_from_log_mel_spectrograms ( log_mel_spectrograms , name = None ) : <nl> <nl> dct2 = dct_ops . dct ( log_mel_spectrograms , type = 2 ) <nl> return dct2 * math_ops . rsqrt ( <nl> - math_ops . cast ( num_mel_bins , dtypes . float32 ) * 2 . 0 ) <nl> + math_ops . cast ( num_mel_bins , dct2 . dtype ) * 2 . 0 ) <nl>
Support tf . float64 inputs in tf . signal . mfccs_from_log_mel_spectrograms .
tensorflow/tensorflow
3d8914bb88b666b813d2ce025ee10cc59fd39422
2019-09-20T16:53:37Z
mmm a / fdbserver / KeyValueStoreSQLite . actor . cpp <nl> ppp b / fdbserver / KeyValueStoreSQLite . actor . cpp <nl> <nl> <nl> <nl> # define SQLITE_THREADSAFE 0 / / also in sqlite3 . amalgamation . c ! <nl> + # include " fdbrpc / crc32c . h " <nl> # include " fdbserver / IKeyValueStore . h " <nl> # include " fdbserver / CoroFlow . h " <nl> # include " fdbserver / Knobs . h " <nl> struct PageChecksumCodec { <nl> <nl> char * pData = ( char * ) data ; <nl> int dataLen = pageLen - sizeof ( SumType ) ; <nl> - SumType sum ; <nl> SumType * pSumInPage = ( SumType * ) ( pData + dataLen ) ; <nl> <nl> - / / Write sum directly to page or to sum variable based on mode <nl> - SumType * sumOut = write ? pSumInPage : & sum ; <nl> - sumOut - > part1 = pageNumber ; / / DO NOT CHANGE <nl> - sumOut - > part2 = 0x5ca1ab1e ; <nl> - hashlittle2 ( pData , dataLen , & sumOut - > part1 , & sumOut - > part2 ) ; <nl> - <nl> - / / Verify if not in write mode <nl> - if ( ! write & & sum ! = * pSumInPage ) { <nl> - if ( ! silent ) <nl> - TraceEvent ( SevError , " SQLitePageChecksumFailure " ) <nl> - . error ( checksum_failed ( ) ) <nl> - . detail ( " CodecPageSize " , pageSize ) <nl> - . detail ( " CodecReserveSize " , reserveSize ) <nl> - . detail ( " Filename " , filename ) <nl> - . detail ( " PageNumber " , pageNumber ) <nl> - . detail ( " PageSize " , pageLen ) <nl> - . detail ( " ChecksumInPage " , pSumInPage - > toString ( ) ) <nl> - . detail ( " ChecksumCalculated " , sum . toString ( ) ) ; <nl> - <nl> - return false ; <nl> + if ( write ) { <nl> + / / Always write a hashlittle2 checksum for new pages <nl> + pSumInPage - > part1 = pageNumber ; / / DO NOT CHANGE <nl> + pSumInPage - > part2 = 0x5ca1ab1e ; <nl> + hashlittle2 ( pData , dataLen , & pSumInPage - > part1 , & pSumInPage - > part2 ) ; <nl> + return true ; <nl> + } <nl> + <nl> + SumType sum ; <nl> + if ( pSumInPage - > part1 = = 0 ) { <nl> + / / part1 being 0 indicates with high probability that a CRC32 checksum <nl> + / / was used , so check that first . If this checksum fails , there is still <nl> + / / some chance the page was written with hashlittle2 , so fall back to checking <nl> + / / hashlittle2 <nl> + sum . part1 = 0 ; <nl> + sum . part2 = crc32c_append ( 0xfdbeefdb , static_cast < uint8_t * > ( data ) , dataLen ) ; <nl> + if ( sum = = * pSumInPage ) return true ; <nl> } <nl> <nl> - return true ; <nl> + SumType hashLittle2Sum ; <nl> + hashLittle2Sum . part1 = pageNumber ; / / DO NOT CHANGE <nl> + hashLittle2Sum . part2 = 0x5ca1ab1e ; <nl> + hashlittle2 ( pData , dataLen , & hashLittle2Sum . part1 , & hashLittle2Sum . part2 ) ; <nl> + if ( hashLittle2Sum = = * pSumInPage ) return true ; <nl> + <nl> + TraceEvent tr ( SevError , " SQLitePageChecksumFailure " ) ; <nl> + tr . error ( checksum_failed ( ) ) <nl> + . detail ( " CodecPageSize " , pageSize ) <nl> + . detail ( " CodecReserveSize " , reserveSize ) <nl> + . detail ( " Filename " , filename ) <nl> + . detail ( " PageNumber " , pageNumber ) <nl> + . detail ( " PageSize " , pageLen ) <nl> + . detail ( " ChecksumInPage " , pSumInPage - > toString ( ) ) <nl> + . detail ( " ChecksumCalculatedHL2 " , hashLittle2Sum . toString ( ) ) ; <nl> + if ( pSumInPage - > part1 = = 0 ) tr . detail ( " ChecksumCalculatedCRC " , sum . toString ( ) ) ; <nl> + return false ; <nl> } <nl> <nl> static void * codec ( void * vpSelf , void * data , Pgno pageNumber , int op ) { <nl>
Allow sqlite pages to be checked for CRC32 checksum
apple/foundationdb
20e93c67ea933f4605d8d63cba7419b2ad8b34a1
2019-05-17T08:05:06Z
mmm a / generic / THCTensorMathMagma . cu <nl> ppp b / generic / THCTensorMathMagma . cu <nl> <nl> <nl> # if defined ( THC_REAL_IS_FLOAT ) | | defined ( THC_REAL_IS_DOUBLE ) <nl> <nl> + # ifdef USE_MAGMA <nl> + <nl> + static void THCTensor_ ( copyArray1d ) ( THCState * state , THCTensor * self , real * src , int k ) <nl> + { <nl> + long size [ 1 ] = { k } ; <nl> + long stride [ 1 ] = { 1 } ; <nl> + THCTensor_ ( rawResize ) ( state , self , 1 , size , stride ) ; <nl> + size_t len = k * sizeof ( real ) ; <nl> + THCudaCheck ( cudaMemcpy ( self - > storage - > data + self - > storageOffset , src , len , cudaMemcpyHostToDevice ) ) ; <nl> + } <nl> + <nl> + static void THCTensor_ ( copyArray2d ) ( THCState * state , THCTensor * self , real * src , int m , int n ) <nl> + { <nl> + long size [ 2 ] = { m , n } ; <nl> + long stride [ 2 ] = { 1 , m } ; <nl> + THCTensor_ ( rawResize ) ( state , self , 2 , size , stride ) ; <nl> + size_t len = m * n * sizeof ( real ) ; <nl> + THCudaCheck ( cudaMemcpy ( self - > storage - > data + self - > storageOffset , src , len , cudaMemcpyHostToDevice ) ) ; <nl> + } <nl> + <nl> + static void THCTensor_ ( copyTensor2d ) ( THCState * state , real * dst , THCTensor * self ) <nl> + { <nl> + THAssert ( self - > nDimension = = 2 ) ; <nl> + size_t len = THCTensor_ ( nElement ) ( state , self ) * sizeof ( real ) ; <nl> + THCTensor * temp = THCTensor_ ( newTranspose ) ( state , self , 0 , 1 ) ; <nl> + THCTensor * selfc = THCTensor_ ( newContiguous ) ( state , temp ) ; <nl> + THCudaCheck ( cudaMemcpy ( dst , selfc - > storage - > data + selfc - > storageOffset , len , cudaMemcpyDeviceToHost ) ) ; <nl> + THCTensor_ ( free ) ( state , temp ) ; <nl> + THCTensor_ ( free ) ( state , selfc ) ; <nl> + } <nl> + <nl> + # endif / / USE_MAGMA <nl> + <nl> + static THCTensor * THCTensor_ ( newColumnMajor ) ( THCState * state , THCTensor * self , THCTensor * src ) <nl> + { <nl> + THAssert ( src - > nDimension = = 2 ) ; <nl> + if ( self = = src & & self - > stride [ 0 ] = = 1 & & self - > stride [ 1 ] = = self - > size [ 0 ] ) <nl> + { <nl> + THCTensor_ ( retain ) ( state , self ) ; <nl> + return self ; <nl> + } <nl> + <nl> + if ( self = = src ) <nl> + self = THCTensor_ ( new ) ( state ) ; <nl> + else <nl> + THCTensor_ ( retain ) ( state , self ) ; <nl> + <nl> + long size [ 2 ] = { src - > size [ 0 ] , src - > size [ 1 ] } ; <nl> + long stride [ 2 ] = { 1 , src - > size [ 0 ] } ; <nl> + <nl> + THCTensor_ ( rawResize ) ( state , self , 2 , size , stride ) ; <nl> + THCTensor_ ( copy ) ( state , self , src ) ; <nl> + return self ; <nl> + } <nl> + <nl> + <nl> THC_API void THCTensor_ ( gesv ) ( THCState * state , THCTensor * rb_ , THCTensor * ra_ , THCTensor * b_ , THCTensor * a_ ) <nl> { <nl> # ifdef USE_MAGMA <nl> mmm a / generic / THCTensorMathMagma . h <nl> ppp b / generic / THCTensorMathMagma . h <nl> <nl> <nl> # if defined ( THC_REAL_IS_FLOAT ) | | defined ( THC_REAL_IS_DOUBLE ) <nl> <nl> - # ifdef USE_MAGMA <nl> - <nl> - static void THCTensor_ ( copyArray1d ) ( THCState * state , THCTensor * self , real * src , int k ) <nl> - { <nl> - long size [ 1 ] = { k } ; <nl> - long stride [ 1 ] = { 1 } ; <nl> - THCTensor_ ( rawResize ) ( state , self , 1 , size , stride ) ; <nl> - size_t len = k * sizeof ( real ) ; <nl> - THCudaCheck ( cudaMemcpy ( self - > storage - > data + self - > storageOffset , src , len , cudaMemcpyHostToDevice ) ) ; <nl> - } <nl> - <nl> - static void THCTensor_ ( copyArray2d ) ( THCState * state , THCTensor * self , real * src , int m , int n ) <nl> - { <nl> - long size [ 2 ] = { m , n } ; <nl> - long stride [ 2 ] = { 1 , m } ; <nl> - THCTensor_ ( rawResize ) ( state , self , 2 , size , stride ) ; <nl> - size_t len = m * n * sizeof ( real ) ; <nl> - THCudaCheck ( cudaMemcpy ( self - > storage - > data + self - > storageOffset , src , len , cudaMemcpyHostToDevice ) ) ; <nl> - } <nl> - <nl> - static void THCTensor_ ( copyTensor2d ) ( THCState * state , real * dst , THCTensor * self ) <nl> - { <nl> - THAssert ( self - > nDimension = = 2 ) ; <nl> - size_t len = THCTensor_ ( nElement ) ( state , self ) * sizeof ( real ) ; <nl> - THCTensor * temp = THCTensor_ ( newTranspose ) ( state , self , 0 , 1 ) ; <nl> - THCTensor * selfc = THCTensor_ ( newContiguous ) ( state , temp ) ; <nl> - THCudaCheck ( cudaMemcpy ( dst , selfc - > storage - > data + selfc - > storageOffset , len , cudaMemcpyDeviceToHost ) ) ; <nl> - THCTensor_ ( free ) ( state , temp ) ; <nl> - THCTensor_ ( free ) ( state , selfc ) ; <nl> - } <nl> - <nl> - # endif / / USE_MAGMA <nl> - <nl> - static THCTensor * THCTensor_ ( newColumnMajor ) ( THCState * state , THCTensor * self , THCTensor * src ) <nl> - { <nl> - THAssert ( src - > nDimension = = 2 ) ; <nl> - if ( self = = src & & self - > stride [ 0 ] = = 1 & & self - > stride [ 1 ] = = self - > size [ 0 ] ) <nl> - { <nl> - THCTensor_ ( retain ) ( state , self ) ; <nl> - return self ; <nl> - } <nl> - <nl> - if ( self = = src ) <nl> - self = THCTensor_ ( new ) ( state ) ; <nl> - else <nl> - THCTensor_ ( retain ) ( state , self ) ; <nl> - <nl> - long size [ 2 ] = { src - > size [ 0 ] , src - > size [ 1 ] } ; <nl> - long stride [ 2 ] = { 1 , src - > size [ 0 ] } ; <nl> - <nl> - THCTensor_ ( rawResize ) ( state , self , 2 , size , stride ) ; <nl> - THCTensor_ ( copy ) ( state , self , src ) ; <nl> - return self ; <nl> - } <nl> - <nl> / / MAGMA ( i . e . CUDA implementation of LAPACK functions ) <nl> THC_API void THCTensor_ ( gesv ) ( THCState * state , THCTensor * rb_ , THCTensor * ra_ , THCTensor * b_ , THCTensor * a_ ) ; <nl> THC_API void THCTensor_ ( gels ) ( THCState * state , THCTensor * rb_ , THCTensor * ra_ , THCTensor * b_ , THCTensor * a_ ) ; <nl>
[ cutorch mag2gen ] some cleanup
pytorch/pytorch
2034396a3c8024ef564183c563a8ef12991aec38
2016-11-15T21:31:57Z
mmm a / benchmark / distinctuseridcompetition . cpp <nl> ppp b / benchmark / distinctuseridcompetition . cpp <nl> void print_vec ( const std : : vector < int64_t > & v ) { <nl> std : : cout < < std : : endl ; <nl> } <nl> <nl> - void simdjson_scan ( std : : vector < int64_t > & answer , simdjson : : ParsedJson : : Iterator i ) { <nl> - while ( i . move_forward ( ) ) { <nl> - if ( i . get_scope_type ( ) = = ' { ' ) { <nl> - bool found_user = ( i . get_string_length ( ) = = 4 ) & & <nl> - ( memcmp ( i . get_string ( ) , " user " , 4 ) = = 0 ) ; <nl> - i . move_to_value ( ) ; <nl> - if ( found_user ) { <nl> - if ( i . is_object ( ) & & i . move_to_key ( " id " , 2 ) ) { <nl> - if ( i . is_integer ( ) ) { <nl> - answer . push_back ( i . get_integer ( ) ) ; <nl> + / / clang - format off <nl> + <nl> + / / simdjson_recurse below come be implemented like so but it is slow : <nl> + / * void simdjson_recurse ( std : : vector < int64_t > & v , simdjson : : document : : element element ) { <nl> + if ( element . is_array ( ) ) { <nl> + auto [ array , array_error ] = element . as_array ( ) ; <nl> + for ( auto child : array ) { <nl> + if ( child . is_array ( ) | | child . is_object ( ) ) { <nl> + simdjson_recurse ( v , child ) ; <nl> + } <nl> + } <nl> + } else if ( element . is_object ( ) ) { <nl> + auto [ object , error ] = element . as_object ( ) ; <nl> + int64_t id ; <nl> + object [ " user " ] [ " id " ] . as_int64_t ( ) . tie ( id , error ) ; <nl> + if ( ! error ) { <nl> + v . push_back ( id ) ; <nl> + } <nl> + for ( auto [ key , value ] : object ) { <nl> + if ( value . is_array ( ) | | value . is_object ( ) ) { <nl> + simdjson_recurse ( v , value ) ; <nl> + } <nl> + } <nl> + } <nl> + } * / <nl> + / / clang - format on <nl> + <nl> + <nl> + void simdjson_recurse ( std : : vector < int64_t > & v , simdjson : : document : : element element ) { <nl> + if ( element . is_array ( ) ) { <nl> + auto array = element . as_array ( ) ; <nl> + for ( auto child : array ) { <nl> + if ( child . is_array ( ) | | child . is_object ( ) ) { <nl> + simdjson_recurse ( v , child ) ; <nl> + } <nl> + } <nl> + } else if ( element . is_object ( ) ) { <nl> + auto object = element . as_object ( ) ; <nl> + for ( auto [ key , value ] : object ) { <nl> + if ( ( key . size ( ) = = 4 ) & & ( memcmp ( key . data ( ) , " user " , 4 ) = = 0 ) ) { <nl> + / / we are in an object under the key " user " <nl> + if ( value . is_object ( ) ) { <nl> + auto child_object = value . as_object ( ) ; <nl> + for ( auto [ child_key , child_value ] : child_object ) { <nl> + if ( ( child_key . size ( ) = = 2 ) & & ( memcmp ( child_key . data ( ) , " id " , 2 ) = = 0 ) ) { <nl> + if ( child_value . is_integer ( ) ) { <nl> + v . push_back ( child_value . as_int64_t ( ) ) ; <nl> + } <nl> + } <nl> + if ( child_value . is_array ( ) | | child_value . is_object ( ) ) { <nl> + simdjson_recurse ( v , child_value ) ; <nl> + } <nl> } <nl> - i . up ( ) ; <nl> + } else if ( value . is_array ( ) ) { <nl> + simdjson_recurse ( v , value ) ; <nl> } <nl> + / / end of : we are in an object under the key " user " <nl> + } else if ( value . is_array ( ) | | value . is_object ( ) ) { <nl> + simdjson_recurse ( v , value ) ; <nl> } <nl> } <nl> } <nl> } <nl> <nl> __attribute__ ( ( noinline ) ) std : : vector < int64_t > <nl> - simdjson_just_dom ( simdjson : : ParsedJson & pj ) { <nl> + simdjson_just_dom ( simdjson : : document & doc ) { <nl> std : : vector < int64_t > answer ; <nl> - simdjson_scan ( answer , pj ) ; <nl> + simdjson_recurse ( answer , doc . root ( ) ) ; <nl> remove_duplicates ( answer ) ; <nl> return answer ; <nl> } <nl> simdjson_just_dom ( simdjson : : ParsedJson & pj ) { <nl> __attribute__ ( ( noinline ) ) std : : vector < int64_t > <nl> simdjson_compute_stats ( const simdjson : : padded_string & p ) { <nl> std : : vector < int64_t > answer ; <nl> - ParsedJson pj = simdjson : : build_parsed_json ( p ) ; <nl> - simdjson_scan ( answer , pj ) ; <nl> + simdjson : : document : : parser parser ; <nl> + simdjson : : document & doc = parser . parse ( p ) ; <nl> + simdjson_recurse ( answer , doc . root ( ) ) ; <nl> remove_duplicates ( answer ) ; <nl> return answer ; <nl> } <nl> <nl> __attribute__ ( ( noinline ) ) bool <nl> simdjson_just_parse ( const simdjson : : padded_string & p ) { <nl> - return simdjson : : document : : parse ( p ) . error ( ) ! = simdjson : : SUCCESS ; <nl> + return simdjson : : document : : parse ( p ) . error ( ) = = simdjson : : SUCCESS ; <nl> } <nl> <nl> void sajson_traverse ( std : : vector < int64_t > & answer , const sajson : : value & node ) { <nl> int main ( int argc , char * argv [ ] ) { <nl> printf ( <nl> " name cycles_per_byte cycles_per_byte_err gb_per_s gb_per_s_err \ n " ) ; <nl> } <nl> - BEST_TIME ( " simdjson " , simdjson_compute_stats ( p ) . size ( ) , size , , repeat , <nl> + BEST_TIME ( " simdjson " , simdjson_compute_stats ( p ) . size ( ) , size , , repeat , <nl> volume , ! just_data ) ; <nl> BEST_TIME ( " rapid " , rapid_compute_stats ( p ) . size ( ) , size , , repeat , volume , <nl> ! just_data ) ; <nl> int main ( int argc , char * argv [ ] ) { <nl> volume , ! just_data ) ; <nl> BEST_TIME ( " sasjon ( just parse ) " , sasjon_just_parse ( p ) , false , , repeat , <nl> volume , ! just_data ) ; <nl> - ParsedJson dsimdjson = build_parsed_json ( p ) ; <nl> - BEST_TIME ( " simdjson ( just dom ) " , simdjson_just_dom ( dsimdjson ) . size ( ) , size , <nl> + simdjson : : document : : parser parser ; <nl> + simdjson : : document & doc = parser . parse ( p ) ; <nl> + BEST_TIME ( " simdjson ( just dom ) " , simdjson_just_dom ( doc ) . size ( ) , size , <nl> , repeat , volume , ! just_data ) ; <nl> - char * buffer = ( char * ) malloc ( p . size ( ) ) ; <nl> + char * buffer = ( char * ) malloc ( p . size ( ) + 1 ) ; <nl> + buffer [ p . size ( ) ] = ' \ 0 ' ; <nl> memcpy ( buffer , p . data ( ) , p . size ( ) ) ; <nl> rapidjson : : Document drapid ; <nl> drapid . ParseInsitu < kParseValidateEncodingFlag > ( buffer ) ; <nl>
Trying to migrate distinctuseridcompetition to new API . ( )
simdjson/simdjson
ab0e22a3169a038333a3ca9ae922571dbb18f5b1
2020-03-26T16:06:28Z
mmm a / lib / Sema / CSGen . cpp <nl> ppp b / lib / Sema / CSGen . cpp <nl> namespace { <nl> <nl> void associateArgumentLabels ( Expr * fn , State labels , <nl> bool labelsArePermanent ) { <nl> - / / Dig out the function , looking through , parentheses , ? , and ! . <nl> - do { <nl> - fn = fn - > getSemanticsProvidingExpr ( ) ; <nl> - <nl> - if ( auto force = dyn_cast < ForceValueExpr > ( fn ) ) { <nl> - fn = force - > getSubExpr ( ) ; <nl> - continue ; <nl> - } <nl> - <nl> - if ( auto bind = dyn_cast < BindOptionalExpr > ( fn ) ) { <nl> - fn = bind - > getSubExpr ( ) ; <nl> - continue ; <nl> - } <nl> - <nl> - break ; <nl> - } while ( true ) ; <nl> + fn = getArgumentLabelTargetExpr ( fn ) ; <nl> <nl> / / Record the labels . <nl> if ( ! labelsArePermanent ) <nl> mmm a / lib / Sema / CSSimplify . cpp <nl> ppp b / lib / Sema / CSSimplify . cpp <nl> bool constraints : : areConservativelyCompatibleArgumentLabels ( <nl> decl , hasCurriedSelf , labels , hasTrailingClosure ) ; <nl> } <nl> <nl> + Expr * constraints : : getArgumentLabelTargetExpr ( Expr * fn ) { <nl> + / / Dig out the function , looking through , parentheses , ? , and ! . <nl> + do { <nl> + fn = fn - > getSemanticsProvidingExpr ( ) ; <nl> + <nl> + if ( auto force = dyn_cast < ForceValueExpr > ( fn ) ) { <nl> + fn = force - > getSubExpr ( ) ; <nl> + continue ; <nl> + } <nl> + <nl> + if ( auto bind = dyn_cast < BindOptionalExpr > ( fn ) ) { <nl> + fn = bind - > getSubExpr ( ) ; <nl> + continue ; <nl> + } <nl> + <nl> + return fn ; <nl> + } while ( true ) ; <nl> + } <nl> + <nl> bool constraints : : <nl> areConservativelyCompatibleArgumentLabels ( ValueDecl * decl , <nl> bool hasCurriedSelf , <nl> getArgumentLabels ( ConstraintSystem & cs , ConstraintLocatorBuilder locator ) { <nl> } <nl> <nl> if ( parts . back ( ) . getKind ( ) = = ConstraintLocator : : ConstructorMember ) { <nl> - / / FIXME : Workaround for strange anchor on ConstructorMember locators . <nl> - <nl> - if ( auto optionalWrapper = dyn_cast < BindOptionalExpr > ( anchor ) ) <nl> - anchor = optionalWrapper - > getSubExpr ( ) ; <nl> - else if ( auto forceWrapper = dyn_cast < ForceValueExpr > ( anchor ) ) <nl> - anchor = forceWrapper - > getSubExpr ( ) ; <nl> - <nl> parts . pop_back ( ) ; <nl> continue ; <nl> } <nl> getArgumentLabels ( ConstraintSystem & cs , ConstraintLocatorBuilder locator ) { <nl> if ( ! parts . empty ( ) ) <nl> return None ; <nl> <nl> + anchor = getArgumentLabelTargetExpr ( anchor ) ; <nl> auto known = cs . ArgumentLabels . find ( cs . getConstraintLocator ( anchor ) ) ; <nl> if ( known = = cs . ArgumentLabels . end ( ) ) <nl> return None ; <nl> mmm a / lib / Sema / ConstraintSystem . h <nl> ppp b / lib / Sema / ConstraintSystem . h <nl> matchCallArguments ( ConstraintSystem & cs , <nl> ArrayRef < AnyFunctionType : : Param > params , <nl> ConstraintLocatorBuilder locator ) ; <nl> <nl> + / / / Given an expression that is the target of argument labels ( for a call , <nl> + / / / subscript , etc . ) , find the underlying target expression . <nl> + Expr * getArgumentLabelTargetExpr ( Expr * fn ) ; <nl> + <nl> / / / Attempt to prove that arguments with the given labels at the <nl> / / / given parameter depth cannot be used with the given value . <nl> / / / If this cannot be proven , conservatively returns true . <nl> new file mode 100644 <nl> index 000000000000 . . 6115bd9b2471 <nl> mmm / dev / null <nl> ppp b / test / Constraints / overload_filtering_objc . swift <nl> <nl> + / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - typecheck - verify % s - debug - constraints 2 > % t . err <nl> + / / RUN : % FileCheck % s < % t . err <nl> + <nl> + / / REQUIRES : objc_interop <nl> + <nl> + / / This test ensures that we are filtering out overloads based on argument <nl> + / / labels , arity , etc . , before those terms are visited . <nl> + <nl> + import Foundation <nl> + <nl> + @ objc protocol P { <nl> + func foo ( _ i : Int ) - > Int <nl> + func foo ( _ d : Double ) - > Int <nl> + <nl> + @ objc optional func opt ( _ i : Int ) - > Int <nl> + @ objc optional func opt ( double : Double ) - > Int <nl> + <nl> + subscript ( i : Int ) - > String { get } <nl> + } <nl> + <nl> + func testOptional ( obj : P ) { <nl> + / / FIXME : When we remove argument - label filtering from member name lookup , <nl> + / / this will start failing and need to be replaced with " disabled disjunction <nl> + / / term " . <nl> + / / <nl> + / / CHECK - NOT : disjunction <nl> + _ = obj . opt ? ( 1 ) <nl> + } <nl>
[ Constraint solver ] Synchronize argument label setting / retrievable .
apple/swift
603d5d6f2091fa567806e1a6f28a693c1c12f02c
2019-03-02T05:45:39Z
mmm a / folly / experimental / symbolizer / Elf - inl . h <nl> ppp b / folly / experimental / symbolizer / Elf - inl . h <nl> <nl> namespace folly { <nl> namespace symbolizer { <nl> <nl> + template < class Fn > <nl> + const ElfPhdr * ElfFile : : iterateProgramHeaders ( Fn fn ) const { <nl> + const ElfPhdr * ptr = & at < ElfPhdr > ( elfHeader ( ) . e_phoff ) ; <nl> + for ( size_t i = 0 ; i < elfHeader ( ) . e_phnum ; i + + , ptr + + ) { <nl> + if ( fn ( * ptr ) ) { <nl> + return ptr ; <nl> + } <nl> + } <nl> + <nl> + return nullptr ; <nl> + } <nl> + <nl> template < class Fn > <nl> const ElfShdr * ElfFile : : iterateSections ( Fn fn ) const { <nl> const ElfShdr * ptr = & at < ElfShdr > ( elfHeader ( ) . e_shoff ) ; <nl> mmm a / folly / experimental / symbolizer / Elf . cpp <nl> ppp b / folly / experimental / symbolizer / Elf . cpp <nl> bool ElfFile : : init ( const char * * msg ) { <nl> } <nl> } <nl> <nl> - const ElfPhdr * programHeader = & at < ElfPhdr > ( elfHeader . e_phoff ) ; <nl> - bool foundBase = false ; <nl> - for ( size_t i = 0 ; i < elfHeader . e_phnum ; programHeader + + , i + + ) { <nl> - / / Program headers are sorted by load address , so the first PT_LOAD <nl> - / / header gives us the base address . <nl> - if ( programHeader - > p_type = = PT_LOAD ) { <nl> - baseAddress_ = programHeader - > p_vaddr ; <nl> - foundBase = true ; <nl> - break ; <nl> - } <nl> - } <nl> + / / Program headers are sorted by load address , so the first PT_LOAD <nl> + / / header gives us the base address . <nl> + const ElfPhdr * programHeader = <nl> + iterateProgramHeaders ( [ ] ( auto & h ) { return h . p_type = = PT_LOAD ; } ) ; <nl> <nl> - if ( ! foundBase ) { <nl> + if ( ! programHeader ) { <nl> if ( msg ) { <nl> * msg = " could not find base address " ; <nl> } <nl> return false ; <nl> } <nl> + baseAddress_ = programHeader - > p_vaddr ; <nl> <nl> return true ; <nl> } <nl> mmm a / folly / experimental / symbolizer / Elf . h <nl> ppp b / folly / experimental / symbolizer / Elf . h <nl> class ElfFile { <nl> template < class Fn > <nl> const char * iterateStrings ( const ElfShdr & stringTable , Fn fn ) const ; <nl> <nl> + / * * <nl> + * Iterate over program headers as long as fn ( section ) returns false . <nl> + * Returns a pointer to the current ( " found " ) section when fn returned <nl> + * true , or nullptr if fn returned false for all sections . <nl> + * / <nl> + template < class Fn > <nl> + const ElfPhdr * iterateProgramHeaders ( Fn fn ) const ; <nl> + <nl> / * * <nl> * Iterate over all sections for as long as fn ( section ) returns false . <nl> * Returns a pointer to the current ( " found " ) section when fn returned <nl> mmm a / folly / experimental / symbolizer / test / ElfTests . cpp <nl> ppp b / folly / experimental / symbolizer / test / ElfTests . cpp <nl> TEST_F ( ElfTest , PointerValue ) { <nl> EXPECT_STREQ ( kStringValue , str ) ; <nl> } <nl> <nl> + TEST_F ( ElfTest , iterateProgramHeaders ) { <nl> + auto phdr = elfFile_ . iterateProgramHeaders ( <nl> + [ ] ( auto & h ) { return h . p_type = = PT_LOAD ; } ) ; <nl> + EXPECT_NE ( nullptr , phdr ) ; <nl> + EXPECT_GE ( phdr - > p_filesz , 0 ) ; <nl> + } <nl> + <nl> int main ( int argc , char * * argv ) { <nl> testing : : InitGoogleTest ( & argc , argv ) ; <nl> gflags : : ParseCommandLineFlags ( & argc , & argv , true ) ; <nl>
folly : : ElfFile - add support to iterate over program headers
facebook/folly
fbc0b24a622addf974413b5288479f2884e6bf9c
2017-08-16T04:10:04Z
mmm a / docker / test / fasttest / run . sh <nl> ppp b / docker / test / fasttest / run . sh <nl> mkdir build <nl> cd build <nl> CLICKHOUSE_BUILD_DIR = ` pwd ` <nl> cmake . . - DCMAKE_INSTALL_PREFIX = / usr - DCMAKE_CXX_COMPILER = clang + + - 10 - DCMAKE_C_COMPILER = clang - 10 $ CMAKE_LIBS_CONFIG | ts ' % Y - % m - % d % H : % M : % S ' | tee / test_output / cmake_log . txt <nl> - ninja | ts ' % Y - % m - % d % H : % M : % S ' | tee / test_output / build_log . txt <nl> + ninja clickhouse - bundle | ts ' % Y - % m - % d % H : % M : % S ' | tee / test_output / build_log . txt <nl> ninja install | ts ' % Y - % m - % d % H : % M : % S ' | tee / test_output / install_log . txt <nl> <nl> <nl>
Fix build
ClickHouse/ClickHouse
d69f925c30a4a1f54b5441ed9f12882a64ed6da6
2020-07-10T19:28:21Z
mmm a / CHANGELOG . md <nl> ppp b / CHANGELOG . md <nl> <nl> Latest <nl> mmmmmm <nl> + <nl> + * The " C - style for loop " , which is spelled ` for init ; comparison ; increment { } ` <nl> + has been deprecated and is slated for removal in Swift 3 . 0 . See <nl> + [ SE - 0007 ] ( https : / / github . com / apple / swift - evolution / blob / master / proposals / 0007 - remove - c - style - for - loops . md ) <nl> + for more information . <nl> + <nl> * Three new doc comment fields , namely ` - keyword : ` , ` - recommended : ` <nl> and ` - recommendedover : ` , allow Swift users to cooperate with code <nl> completion engine to deliver more effective code completion results . <nl> Latest <nl> allows you to use C enum pattern matching in switch statements with no <nl> additional code . * * ( 17287720 ) * * <nl> <nl> - * The ` NSNumberunsignedIntegerValue ` property now has the type ` UInt ` instead <nl> + * The ` NSNumber . unsignedIntegerValue ` property now has the type ` UInt ` instead <nl> of ` Int ` , as do other methods and properties that use the ` NSUInteger ` type <nl> in Objective - C and whose names contain ` unsigned . . ` . Most other uses of <nl> ` NSUInteger ` in system frameworks are imported as ` Int ` as they were in <nl> mmm a / CMakeLists . txt <nl> ppp b / CMakeLists . txt <nl> option ( SWIFT_BUILD_STATIC_STDLIB <nl> " Build static variants of the Swift standard library and SDK overlay " <nl> FALSE ) <nl> <nl> - option ( SWIFT_INCLUDE_BENCHMARKS <nl> - " Create targets for running swift benchmarks " <nl> - TRUE ) <nl> + option ( SWIFT_BUILD_PERF_TESTSUITE <nl> + " Create targets for swift performance benchmarks . " <nl> + FALSE ) <nl> <nl> option ( SWIFT_INCLUDE_TESTS " Create targets for building / running tests . " TRUE ) <nl> <nl> endif ( ) <nl> option ( SWIFT_BUILD_SOURCEKIT <nl> " Build SourceKit " <nl> $ { SWIFT_BUILD_SOURCEKIT_default } ) <nl> - # Force updating the cache , remove the following after a couple of weeks or so . <nl> - set ( SWIFT_BUILD_SOURCEKIT $ { SWIFT_BUILD_SOURCEKIT_default } <nl> - CACHE BOOL " Build SourceKit " FORCE ) <nl> <nl> # <nl> # Include CMake modules <nl> if ( SWIFT_BUILD_TOOLS ) <nl> endif ( ) <nl> add_subdirectory ( utils ) <nl> add_subdirectory ( stdlib ) <nl> - if ( SWIFT_INCLUDE_BENCHMARKS ) <nl> + if ( SWIFT_BUILD_PERF_TESTSUITE ) <nl> add_subdirectory ( benchmark ) <nl> endif ( ) <nl> if ( SWIFT_INCLUDE_TESTS ) <nl> mmm a / benchmark / CMakeLists . txt <nl> ppp b / benchmark / CMakeLists . txt <nl> <nl> - option ( SWIFT_INCLUDE_PERF_TESTSUITE " Create targets for swift performance benchmarks . " NO ) <nl> if ( CMAKE_SYSTEM_NAME STREQUAL " Darwin " ) <nl> # Performance test harness only builds on Darwin . <nl> - if ( SWIFT_INCLUDE_PERF_TESTSUITE ) <nl> - set ( PERF_TESTSUITE_DIR " $ { CMAKE_CURRENT_SOURCE_DIR } / PerfTestSuite " CACHE STRING " Path to swift performance testsuite repo . " ) <nl> - if ( EXISTS $ { PERF_TESTSUITE_DIR } / CMakeLists . txt ) <nl> - add_subdirectory ( $ { PERF_TESTSUITE_DIR } ) <nl> - else ( ) <nl> - message ( FATAL_ERROR " Can ' t find the Swift performance suite at $ { PERF_TESTSUITE_DIR } / . " ) <nl> - endif ( ) <nl> + set ( PERF_TESTSUITE_DIR " $ { CMAKE_CURRENT_SOURCE_DIR } / PerfTestSuite " CACHE STRING " Path to swift performance testsuite repo . " ) <nl> + if ( EXISTS $ { PERF_TESTSUITE_DIR } / CMakeLists . txt ) <nl> + add_subdirectory ( $ { PERF_TESTSUITE_DIR } ) <nl> + else ( ) <nl> + message ( FATAL_ERROR " Can ' t find the Swift performance suite at $ { PERF_TESTSUITE_DIR } / . " ) <nl> endif ( ) <nl> endif ( ) <nl> <nl> mmm a / docs / SIL . rst <nl> ppp b / docs / SIL . rst <nl> number of ways : <nl> - A SIL function type declares its conventional treatment of its <nl> context value : <nl> <nl> - - If it is ` ` @ thin ` ` , the function requires no context value . <nl> + - If it is ` ` @ convention ( thin ) ` ` , the function requires no context value . <nl> <nl> - If it is ` ` @ callee_owned ` ` , the context value is treated as an <nl> owned direct parameter . <nl> partial application level . For a curried function declaration : : <nl> The declaration references and types for the different uncurry levels are as <nl> follows : : <nl> <nl> - # example . foo ! 0 : $ @ thin ( x : A ) - > ( y : B ) - > ( z : C ) - > D <nl> - # example . foo ! 1 : $ @ thin ( ( y : B ) , ( x : A ) ) - > ( z : C ) - > D <nl> - # example . foo ! 2 : $ @ thin ( ( z : C ) , ( y : B ) , ( x : A ) ) - > D <nl> + # example . foo ! 0 : $ @ convention ( thin ) ( x : A ) - > ( y : B ) - > ( z : C ) - > D <nl> + # example . foo ! 1 : $ @ convention ( thin ) ( ( y : B ) , ( x : A ) ) - > ( z : C ) - > D <nl> + # example . foo ! 2 : $ @ convention ( thin ) ( ( z : C ) , ( y : B ) , ( x : A ) ) - > D <nl> <nl> The deepest uncurry level is referred to as the * * natural uncurry level * * . In <nl> this specific example , the reference at the natural uncurry level is <nl> ` ` # example . foo ! 2 ` ` . Note that the uncurried argument clauses are composed <nl> right - to - left , as specified in the ` calling convention ` _ . For uncurry levels <nl> - less than the uncurry level , the entry point itself is ` ` @ thin ` ` but returns a <nl> - thick function value carrying the partially applied arguments for its context . <nl> + less than the uncurry level , the entry point itself is ` ` @ convention ( thin ) ` ` but <nl> + returns a thick function value carrying the partially applied arguments for its <nl> + context . <nl> <nl> ` Dynamic dispatch ` _ instructions such as ` ` class method ` ` require their method <nl> declaration reference to be uncurried to at least uncurry level 1 ( which applies <nl> implements the method for that class : : <nl> func bas ( ) <nl> } <nl> <nl> - sil @ A_foo : $ @ thin ( @ owned A ) - > ( ) <nl> - sil @ A_bar : $ @ thin ( @ owned A ) - > ( ) <nl> - sil @ A_bas : $ @ thin ( @ owned A ) - > ( ) <nl> + sil @ A_foo : $ @ convention ( thin ) ( @ owned A ) - > ( ) <nl> + sil @ A_bar : $ @ convention ( thin ) ( @ owned A ) - > ( ) <nl> + sil @ A_bas : $ @ convention ( thin ) ( @ owned A ) - > ( ) <nl> <nl> sil_vtable A { <nl> # A . foo ! 1 : @ A_foo <nl> implements the method for that class : : <nl> func bar ( ) <nl> } <nl> <nl> - sil @ B_bar : $ @ thin ( @ owned B ) - > ( ) <nl> + sil @ B_bar : $ @ convention ( thin ) ( @ owned B ) - > ( ) <nl> <nl> sil_vtable B { <nl> # A . foo ! 1 : @ A_foo <nl> implements the method for that class : : <nl> func bas ( ) <nl> } <nl> <nl> - sil @ C_bas : $ @ thin ( @ owned C ) - > ( ) <nl> + sil @ C_bas : $ @ convention ( thin ) ( @ owned C ) - > ( ) <nl> <nl> sil_vtable C { <nl> # A . foo ! 1 : @ A_foo <nl> Calling Convention <nl> <nl> This section describes how Swift functions are emitted in SIL . <nl> <nl> - Swift Calling Convention @ cc ( swift ) <nl> - ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> + Swift Calling Convention @ convention ( swift ) <nl> + ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> <nl> The Swift calling convention is the one used by default for native Swift <nl> functions . <nl> gets lowered to SIL as : : <nl> return <nl> } <nl> <nl> - Swift Method Calling Convention @ cc ( method ) <nl> - ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> + Swift Method Calling Convention @ convention ( method ) <nl> + ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> <nl> The method calling convention is currently identical to the freestanding <nl> function convention . Methods are considered to be curried functions , taking <nl> passed last : : <nl> <nl> sil @ Foo_method_1 : $ ( ( x : Int ) , @ inout Foo ) - > Int { . . . } <nl> <nl> - Witness Method Calling Convention @ cc ( witness_method ) <nl> - ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> + Witness Method Calling Convention @ convention ( witness_method ) <nl> + ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> <nl> The witness method calling convention is used by protocol witness methods in <nl> ` witness tables ` _ . It is identical to the ` ` method ` ` calling convention <nl> witnesses must be polymorphically dispatchable on their ` ` Self ` ` type , <nl> the ` ` Self ` ` - related metadata for a witness must be passed in a maximally <nl> abstracted manner . <nl> <nl> - C Calling Convention @ cc ( cdecl ) <nl> - ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> + C Calling Convention @ convention ( c ) <nl> + ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> <nl> In Swift ' s C module importer , C types are always mapped to Swift types <nl> considered trivial by SIL . SIL does not concern itself with platform <nl> platform calling convention . <nl> <nl> SIL ( and therefore Swift ) cannot currently invoke variadic C functions . <nl> <nl> - Objective - C Calling Convention @ cc ( objc_method ) <nl> - ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> + Objective - C Calling Convention @ convention ( objc_method ) <nl> + ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> <nl> Reference Counts <nl> ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` <nl> return a class reference : : <nl> <nl> bb0 ( % 0 : $ MyClass ) : <nl> % 1 = class_method % 0 : $ MyClass , # MyClass . foo ! 1 <nl> - % 2 = apply % 1 ( % 0 ) : $ @ cc ( method ) @ thin ( @ guaranteed MyClass ) - > @ owned MyOtherClass <nl> + % 2 = apply % 1 ( % 0 ) : $ @ convention ( method ) ( @ guaranteed MyClass ) - > @ owned MyOtherClass <nl> / / use of % 2 goes here ; no use of % 1 <nl> strong_release % 2 : $ MyOtherClass <nl> strong_release % 1 : $ MyClass <nl> function_ref <nl> <nl> sil - instruction : : = ' function_ref ' sil - function - name ' : ' sil - type <nl> <nl> - % 1 = function_ref @ function : $ @ thin T - > U <nl> - / / $ @ thin T - > U must be a thin function type <nl> + % 1 = function_ref @ function : $ @ convention ( thin ) T - > U <nl> + / / $ @ convention ( thin ) T - > U must be a thin function type <nl> / / % 1 has type $ T - > U <nl> <nl> Creates a reference to a SIL function . <nl> class_method <nl> sil - instruction : : = ' class_method ' sil - method - attributes ? <nl> sil - operand ' , ' sil - decl - ref ' : ' sil - type <nl> <nl> - % 1 = class_method % 0 : $ T , # T . method ! 1 : $ @ thin U - > V <nl> + % 1 = class_method % 0 : $ T , # T . method ! 1 : $ @ convention ( thin ) U - > V <nl> / / % 0 must be of a class type or class metatype $ T <nl> / / # T . method ! 1 must be a reference to a dynamically - dispatched method of T or <nl> / / of one of its superclasses , at uncurry level > = 1 <nl> super_method <nl> sil - instruction : : = ' super_method ' sil - method - attributes ? <nl> sil - operand ' , ' sil - decl - ref ' : ' sil - type <nl> <nl> - % 1 = super_method % 0 : $ T , # Super . method ! 1 . foreign : $ @ thin U - > V <nl> + % 1 = super_method % 0 : $ T , # Super . method ! 1 . foreign : $ @ convention ( thin ) U - > V <nl> / / % 0 must be of a non - root class type or class metatype $ T <nl> / / # Super . method ! 1 . foreign must be a reference to an ObjC method of T ' s <nl> / / superclass or of one of its ancestor classes , at uncurry level > = 1 <nl> - / / % 1 will be of type $ @ thin U - > V <nl> + / / % 1 will be of type $ @ convention ( thin ) U - > V <nl> <nl> Looks up a method in the superclass of a class or class metatype instance . <nl> Note that for native Swift methods , ` ` super . method ` ` calls are statically <nl> witness_method <nl> sil - type ' , ' sil - decl - ref ' : ' sil - type <nl> <nl> % 1 = witness_method $ T , # Proto . method ! 1 \ <nl> - : $ @ thin @ cc ( witness_method ) < Self : Proto > U - > V <nl> + : $ @ convention ( witness_method ) < Self : Proto > U - > V <nl> / / $ T must be an archetype <nl> / / # Proto . method ! 1 must be a reference to a method of one of the protocol <nl> / / constraints on T <nl> / / < Self : Proto > U - > V must be the type of the referenced method , <nl> / / generic on Self <nl> - / / % 1 will be of type $ @ thin < Self : Proto > U - > V <nl> + / / % 1 will be of type $ @ convention ( thin ) < Self : Proto > U - > V <nl> <nl> Looks up the implementation of a protocol method for a generic type variable <nl> constrained by that protocol . The result will be generic on the ` ` Self ` ` <nl> dynamic_method <nl> sil - instruction : : = ' dynamic_method ' sil - method - attributes ? <nl> sil - operand ' , ' sil - decl - ref ' : ' sil - type <nl> <nl> - % 1 = dynamic_method % 0 : $ P , # X . method ! 1 : $ @ thin U - > V <nl> + % 1 = dynamic_method % 0 : $ P , # X . method ! 1 : $ @ convention ( thin ) U - > V <nl> / / % 0 must be of a protocol or protocol composition type $ P , <nl> / / where $ P contains the Swift . DynamicLookup protocol <nl> / / # X . method ! 1 must be a reference to an @ objc method of any class <nl> / / or protocol type <nl> / / <nl> - / / The " self " argument of the method type $ @ thin U - > V must be <nl> + / / The " self " argument of the method type $ @ convention ( thin ) U - > V must be <nl> / / Builtin . ObjCPointer <nl> <nl> Looks up the implementation of an Objective - C method with the same <nl> curried function in Swift : : <nl> emits curry thunks in SIL as follows ( retains and releases omitted for <nl> clarity ) : : <nl> <nl> - func @ foo : $ @ thin A - > B - > C - > D - > E { <nl> + func @ foo : $ @ convention ( thin ) A - > B - > C - > D - > E { <nl> entry ( % a : $ A ) : <nl> - % foo_1 = function_ref @ foo_1 : $ @ thin ( B , A ) - > C - > D - > E <nl> - % thunk = partial_apply % foo_1 ( % a ) : $ @ thin ( B , A ) - > C - > D - > E <nl> + % foo_1 = function_ref @ foo_1 : $ @ convention ( thin ) ( B , A ) - > C - > D - > E <nl> + % thunk = partial_apply % foo_1 ( % a ) : $ @ convention ( thin ) ( B , A ) - > C - > D - > E <nl> return % thunk : $ B - > C - > D - > E <nl> } <nl> <nl> - func @ foo_1 : $ @ thin ( B , A ) - > C - > D - > E { <nl> + func @ foo_1 : $ @ convention ( thin ) ( B , A ) - > C - > D - > E { <nl> entry ( % b : $ B , % a : $ A ) : <nl> - % foo_2 = function_ref @ foo_2 : $ @ thin ( C , B , A ) - > D - > E <nl> - % thunk = partial_apply % foo_2 ( % b , % a ) : $ @ thin ( C , B , A ) - > D - > E <nl> + % foo_2 = function_ref @ foo_2 : $ @ convention ( thin ) ( C , B , A ) - > D - > E <nl> + % thunk = partial_apply % foo_2 ( % b , % a ) \ <nl> + : $ @ convention ( thin ) ( C , B , A ) - > D - > E <nl> return % thunk : $ ( B , A ) - > C - > D - > E <nl> } <nl> <nl> - func @ foo_2 : $ @ thin ( C , B , A ) - > D - > E { <nl> + func @ foo_2 : $ @ convention ( thin ) ( C , B , A ) - > D - > E { <nl> entry ( % c : $ C , % b : $ B , % a : $ A ) : <nl> - % foo_3 = function_ref @ foo_3 : $ @ thin ( D , C , B , A ) - > E <nl> - % thunk = partial_apply % foo_3 ( % c , % b , % a ) : $ @ thin ( D , C , B , A ) - > E <nl> + % foo_3 = function_ref @ foo_3 : $ @ convention ( thin ) ( D , C , B , A ) - > E <nl> + % thunk = partial_apply % foo_3 ( % c , % b , % a ) \ <nl> + : $ @ convention ( thin ) ( D , C , B , A ) - > E <nl> return % thunk : $ ( C , B , A ) - > D - > E <nl> } <nl> <nl> - func @ foo_3 : $ @ thin ( D , C , B , A ) - > E { <nl> + func @ foo_3 : $ @ convention ( thin ) ( D , C , B , A ) - > E { <nl> entry ( % d : $ D , % c : $ C , % b : $ B , % a : $ A ) : <nl> / / . . . body of foo . . . <nl> } <nl> following example : : <nl> <nl> lowers to an uncurried entry point and is curried in the enclosing function : : <nl> <nl> - func @ bar : $ @ thin ( Int , @ box Int , * Int ) - > Int { <nl> + func @ bar : $ @ convention ( thin ) ( Int , @ box Int , * Int ) - > Int { <nl> entry ( % y : $ Int , % x_box : $ @ box Int , % x_address : $ * Int ) : <nl> / / . . . body of bar . . . <nl> } <nl> <nl> - func @ foo : $ @ thin Int - > Int { <nl> + func @ foo : $ @ convention ( thin ) Int - > Int { <nl> entry ( % x : $ Int ) : <nl> / / Create a box for the ' x ' variable <nl> % x_box = alloc_box $ Int <nl> mmm a / docs / conf . py <nl> ppp b / docs / conf . py <nl> <nl> # All configuration values have a default ; values that are commented out <nl> # serve to show the default . <nl> <nl> - import sys , os <nl> + import sys <nl> <nl> # If extensions ( or modules to document with autodoc ) are in another directory , <nl> # add these directories to sys . path here . If the directory is relative to the <nl> mmm a / docs / scripts / ns - html2rst <nl> ppp b / docs / scripts / ns - html2rst <nl> <nl> # ! / usr / bin / env python <nl> + from __future__ import print_function <nl> + <nl> import sys , re , subprocess <nl> <nl> def run ( ) : <nl> if len ( sys . argv ) > 1 : <nl> - print " " " <nl> + print ( " " " <nl> ns - html2rst - Convert Cocoa HTML documentation into ReST <nl> <nl> usage : nshtml2rst < NSString . html > NSString . rst <nl> - " " " <nl> + " " " ) <nl> exit ( 0 ) <nl> <nl> html = sys . stdin . read ( ) <nl> mmm a / include / swift / AST / Decl . h <nl> ppp b / include / swift / AST / Decl . h <nl> class ClassDecl : public NominalTypeDecl { <nl> return ClassDeclBits . Foreign ; <nl> } <nl> void setForeign ( bool isForeign = true ) { <nl> - ClassDeclBits . Foreign = true ; <nl> + ClassDeclBits . Foreign = isForeign ; <nl> } <nl> <nl> / / / Find a method of a class that overrides a given method . <nl> mmm a / include / swift / AST / DiagnosticsFrontend . def <nl> ppp b / include / swift / AST / DiagnosticsFrontend . def <nl> ERROR ( cannot_open_serialized_file , frontend , none , <nl> " cannot open file ' % 0 ' for diagnostics emission ( % 1 ) " , ( StringRef , StringRef ) ) <nl> ERROR ( error_open_input_file , frontend , none , <nl> " error opening input file ' % 0 ' ( % 1 ) " , ( StringRef , StringRef ) ) <nl> - ERROR ( error_clang_importer_not_linked_in , frontend , none , <nl> - " clang importer not available " , ( ) ) <nl> ERROR ( error_clang_importer_create_fail , frontend , none , <nl> " clang importer creation failed " , ( ) ) <nl> ERROR ( error_missing_arg_value , frontend , none , <nl> mmm a / include / swift / AST / DiagnosticsParse . def <nl> ppp b / include / swift / AST / DiagnosticsParse . def <nl> ERROR ( decl_inner_scope , decl_parsing , none , <nl> ERROR ( decl_not_static , decl_parsing , none , <nl> " declaration cannot be marked % 0 " , ( StaticSpellingKind ) ) <nl> <nl> - ERROR ( ownership_not_attribute , decl_parsing , none , <nl> - " ' @ % 0 ' is not an attribute , use the ' % 0 ' keyword instead " , <nl> - ( StringRef ) ) <nl> - <nl> ERROR ( cskeyword_not_attribute , decl_parsing , none , <nl> " ' % 0 ' is a declaration modifier , not an attribute " , ( StringRef ) ) <nl> <nl> - ERROR ( convenience_invalid , sema_tcd , none , <nl> - " ' convenience ' is not valid on this declaration " , ( ) ) <nl> - <nl> ERROR ( decl_already_static , decl_parsing , none , <nl> " % 0 specified twice " , ( StaticSpellingKind ) ) <nl> <nl> ERROR ( static_func_decl_global_scope , decl_parsing , none , <nl> ( StaticSpellingKind ) ) <nl> ERROR ( func_decl_expected_arrow , decl_parsing , none , <nl> " expected ' - > ' after function parameter tuple " , ( ) ) <nl> - ERROR ( func_static_not_allowed , decl_parsing , none , <nl> - " static functions are not allowed in this context , " <nl> - " use ' class ' to declare a class method " , ( ) ) <nl> - ERROR ( func_conversion , decl_parsing , none , <nl> - " ' __conversion ' functions are no longer allowed " , ( ) ) <nl> <nl> / / Enum <nl> ERROR ( expected_lbrace_enum , decl_parsing , PointsToFirstBadToken , <nl> ERROR ( sil_integer_literal_not_integer_type , decl_parsing , none , <nl> " integer_literal instruction requires a ' Builtin . Int < n > ' type " , ( ) ) <nl> ERROR ( sil_float_literal_not_float_type , decl_parsing , none , <nl> " float_literal instruction requires a ' Builtin . FP < n > ' type " , ( ) ) <nl> - ERROR ( sil_apply_archetype_not_found , decl_parsing , none , <nl> - " archetype name not found in polymorphic function type of apply instruction " , ( ) ) <nl> ERROR ( sil_substitutions_on_non_polymorphic_type , decl_parsing , none , <nl> " apply of non - polymorphic function cannot have substitutions " , ( ) ) <nl> ERROR ( sil_witness_method_not_protocol , decl_parsing , none , <nl> ERROR ( sil_basicblock_arg_rparen , decl_parsing , none , <nl> " expected ' ) ' in basic block argument list " , ( ) ) <nl> <nl> / / SIL Functions <nl> - ERROR ( expected_sil_linkage_or_function , decl_parsing , none , <nl> - " expected SIL linkage type or function name " , ( ) ) <nl> ERROR ( expected_sil_function_name , decl_parsing , none , <nl> " expected SIL function name " , ( ) ) <nl> ERROR ( expected_sil_rbrace , decl_parsing , none , <nl> ERROR ( expected_type_function_result , type_parsing , PointsToFirstBadToken , <nl> " expected type for function result " , ( ) ) <nl> ERROR ( generic_non_function , type_parsing , PointsToFirstBadToken , <nl> " only syntactic function types can be generic " , ( ) ) <nl> - ERROR ( throwing_non_function , type_parsing , PointsToFirstBadToken , <nl> - " only function types may throw " , ( ) ) <nl> ERROR ( rethrowing_function_type , type_parsing , PointsToFirstBadToken , <nl> " only function declarations may be marked ' rethrows ' " , ( ) ) <nl> ERROR ( throws_after_function_result , type_parsing , none , <nl> ERROR ( expected_expr_conditional_letbinding , stmt_parsing , none , <nl> ERROR ( expected_expr_conditional_letbinding_bool_conditions , stmt_parsing , none , <nl> " expected ' let ' or ' var ' in conditional ; " <nl> " use ' & & ' to join boolean conditions " , ( ) ) <nl> - ERROR ( expected_simple_identifier_pattern , stmt_parsing , none , <nl> - " expected simple identifier pattern in optional binding condition " , ( ) ) <nl> ERROR ( expected_expr_conditional_var , stmt_parsing , PointsToFirstBadToken , <nl> " expected expression after ' = ' in conditional binding " , ( ) ) <nl> ERROR ( expected_expr_conditional_where , stmt_parsing , PointsToFirstBadToken , <nl> ERROR ( expected_while_after_repeat_body , stmt_parsing , PointsToFirstBadToken , <nl> " expected ' while ' after body of ' repeat ' statement " , ( ) ) <nl> ERROR ( expected_expr_repeat_while , stmt_parsing , PointsToFirstBadToken , <nl> " expected expression in ' repeat - while ' condition " , ( ) ) <nl> - ERROR ( missing_condition_after_repeat_while , stmt_parsing , none , <nl> - " missing condition in a ' repeat - while ' statement " , ( ) ) <nl> <nl> ERROR ( do_while_now_repeat_while , stmt_parsing , none , <nl> " ' do - while ' statement is not allowed ; use ' repeat - while ' instead " , ( ) ) <nl> ERROR ( attr_availability_renamed , attribute_parsing , none , <nl> ERROR ( attr_autoclosure_expected_r_paren , attribute_parsing , PointsToFirstBadToken , <nl> " expected ' ) ' in @ autoclosure " , ( ) ) <nl> <nl> - / / cc <nl> - ERROR ( cc_attribute_expected_lparen , attribute_parsing , none , <nl> - " expected ' ( ' after ' cc ' attribute " , ( ) ) <nl> - ERROR ( cc_attribute_expected_name , attribute_parsing , none , <nl> - " expected calling convention name identifier in ' cc ' attribute " , ( ) ) <nl> - ERROR ( cc_attribute_expected_rparen , attribute_parsing , none , <nl> - " expected ' ) ' after calling convention name for ' cc ' attribute " , ( ) ) <nl> - <nl> / / convention <nl> ERROR ( convention_attribute_expected_lparen , attribute_parsing , none , <nl> " expected ' ( ' after ' convention ' attribute " , ( ) ) <nl> WARNING ( unknown_build_config , parsing , none , <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> / / Availability query parsing diagnostics <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> - ERROR ( avail_query_not_enabled , parsing , Fatal , <nl> - " experimental availability checking not enabled " , ( ) ) <nl> - <nl> ERROR ( avail_query_expected_condition , parsing , PointsToFirstBadToken , <nl> " expected availability condition " , ( ) ) <nl> ERROR ( avail_query_expected_platform_name , parsing , PointsToFirstBadToken , <nl> mmm a / include / swift / AST / DiagnosticsSIL . def <nl> ppp b / include / swift / AST / DiagnosticsSIL . def <nl> <nl> - / / = = = - DiagnosticsSILAnalysis . def - Diagnostics Text mmmmmmmmmmmm * - C + + - * - = = = / / <nl> + / / = = = - DiagnosticsSIL . def - Diagnostics Text mmmmmmmmmmmmmmmmmm - - * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / AST / DiagnosticsSema . def <nl> ppp b / include / swift / AST / DiagnosticsSema . def <nl> ERROR ( serialization_target_too_new_repl , sema , none , <nl> " module file ' s minimum deployment target is % 0 v % 1 . % 2 % select { | . % 3 } 3 : % 4 " , <nl> ( StringRef , unsigned , unsigned , unsigned , StringRef ) ) <nl> <nl> - ERROR ( unknown_name_in_type , sema_nb , none , <nl> - " use of unknown scope % 0 in type reference " , ( Identifier ) ) <nl> - <nl> ERROR ( invalid_redecl , sema_nb , none , " invalid redeclaration of % 0 " , ( DeclName ) ) <nl> NOTE ( invalid_redecl_prev , sema_nb , none , <nl> " % 0 previously declared here " , ( DeclName ) ) <nl> ERROR ( downcast_same_type , sema_tcc , none , <nl> ( Type , Type , StringRef ) ) <nl> WARNING ( downcast_to_unrelated , sema_tcc , none , <nl> " cast from % 0 to unrelated type % 1 always fails " , ( Type , Type ) ) <nl> - ERROR ( downcast_from_existential_to_unrelated , sema_tcc , none , <nl> - " cannot cast from protocol type % 0 to non - conforming type % 1 " , <nl> - ( Type , Type ) ) <nl> ERROR ( downcast_to_more_optional , sema_tcc , none , <nl> " cannot downcast from % 0 to a more optional type % 1 " , <nl> ( Type , Type ) ) <nl> ERROR ( override_multiple_decls_base , sema_tcd , none , <nl> ERROR ( override_multiple_decls_arg_mismatch , sema_tcd , none , <nl> " declaration % 0 has different argument names from any potential " <nl> " overrides " , ( DeclName ) ) <nl> - ERROR ( override_multiple_decls_derived , sema_tcd , none , <nl> - " declaration cannot be overridden by more than one subclass " <nl> - " declaration " , ( ) ) <nl> NOTE ( overridden_near_match_here , sema_tcd , none , <nl> " potential overridden % select { method | initializer } 0 % 1 here " , <nl> ( bool , DeclName ) ) <nl> ERROR ( override_mutable_covariant_subscript , sema_tcd , none , <nl> ( Type , Type ) ) <nl> ERROR ( decl_already_final , sema_tcd , none , <nl> " static declarations are already final " , ( ) ) <nl> - ERROR ( decl_no_default_init , sema_tcd , none , <nl> - " cannot default - initialize variable of type % 0 " , ( Type ) ) <nl> - ERROR ( decl_no_default_init_ivar_hole , sema_tcd , none , <nl> - " cannot use initial value when one of the variables is ' _ ' " , ( ) ) <nl> NOTE ( decl_init_here , sema_tcd , none , <nl> " initial value is here " , ( ) ) <nl> <nl> ERROR ( override_rethrows_with_non_rethrows , sema_tcd , none , <nl> ERROR ( rethrows_without_throwing_parameter , sema_tcd , none , <nl> " ' rethrows ' function must take a throwing function argument " , ( ) ) <nl> <nl> - ERROR ( inconsistent_attribute_override , sema_tcd , none , <nl> - " @ % 0 must be consistent between a method and its override " , ( StringRef ) ) <nl> ERROR ( autoclosure_function_type , attribute_parsing , none , <nl> " @ autoclosure may only be applied to values of function type " , <nl> ( ) ) <nl> NOTE ( subscript_decl_here , sema_tca , none , <nl> " subscript operator declared here " , ( ) ) <nl> ERROR ( condition_broken_proto , sema_tce , none , <nl> " protocol ' Boolean ' is broken " , ( ) ) <nl> - ERROR ( option_type_broken , sema_tce , none , <nl> - " type ' Optional ' is broken " , ( ) ) <nl> <nl> ERROR ( broken_bool , sema_tce , none , " type ' Bool ' is broken " , ( ) ) <nl> - ERROR ( binding_explicit_downcast , sema_tce , none , <nl> - " operand of postfix ' ? ' is a forced downcast to type % 0 ; use ' as ? ' to " <nl> - " perform a conditional downcast " , ( Type ) ) <nl> <nl> WARNING ( inject_forced_downcast , sema_tce , none , <nl> " treating a forced downcast to % 0 as optional will never produce ' nil ' " , <nl> ERROR ( migrate_from_allZeros , sema_tce , none , <nl> ERROR ( migrate_to_raw_to_raw_value , sema_tce , none , <nl> " method ' fromRaw ' has been replaced with a property ' rawValue ' " , ( ) ) <nl> <nl> - ERROR ( new_array_bound_zero , sema_tce , none , <nl> - " array type cannot have zero length " , ( ) ) <nl> - ERROR ( non_constant_array , type_parsing , none , <nl> - " array has non - constant size " , ( ) ) <nl> - <nl> ERROR ( interpolation_missing_proto , sema_tce , none , <nl> " string interpolation requires the protocol ' StringInterpolationConvertible ' to be defined " , <nl> ( ) ) <nl> ERROR ( transitive_capture_before_declaration , tce_sema , none , <nl> NOTE ( transitive_capture_through_here , tce_sema , none , <nl> " % 0 , declared here , captures % 1 " , <nl> ( Identifier , Identifier ) ) <nl> - ERROR ( unsupported_local_function_reference , tce_sema , none , <nl> - " cannot reference a local function with captures from another local " <nl> - " function " , ( ) ) <nl> - ERROR ( unsupported_recursive_local_function , tce_sema , none , <nl> - " local functions cannot reference themselves " , ( ) ) <nl> <nl> WARNING ( recursive_accessor_reference , tce_sema , none , <nl> " attempting to % select { access | modify } 1 % 0 within its own " <nl> ERROR ( tuple_pattern_label_mismatch , sema_tcp , none , <nl> " tuple pattern element label % 0 must be % 1 " , ( Identifier , Identifier ) ) <nl> ERROR ( enum_element_pattern_member_not_found , sema_tcp , none , <nl> " enum case ' % 0 ' not found in type % 1 " , ( StringRef , Type ) ) <nl> - ERROR ( enum_element_pattern_not_enum , sema_tcp , none , <nl> - " enum case pattern cannot match values of the non - enum type % 0 " , ( Type ) ) <nl> ERROR ( optional_element_pattern_not_valid_type , sema_tcp , none , <nl> " ' ? ' pattern cannot match values of type % 0 " , ( Type ) ) <nl> ERROR ( condition_optional_element_pattern_not_valid_type , sema_tcp , none , <nl> NOTE ( overridden_required_initializer_here , sema_tcd , none , <nl> / / Functions <nl> ERROR ( attribute_requires_function_type , attribute_parsing , none , <nl> " attribute only applies to syntactic function types " , ( ) ) <nl> - ERROR ( first_class_generic_function , type_parsing , PointsToFirstBadToken , <nl> - " generic types cannot be used as first - class types " , ( ) ) <nl> ERROR ( objc_block_cannot_be_thin , attribute_parsing , none , <nl> " @ objc_block function type cannot be @ thin " , ( ) ) <nl> ERROR ( attribute_not_supported , attribute_parsing , none , <nl> ERROR ( sil_function_multiple_results , type_parsing , PointsToFirstBadToken , <nl> " SIL function types cannot have multiple results " , ( ) ) <nl> ERROR ( sil_function_multiple_error_results , type_parsing , PointsToFirstBadToken , <nl> " SIL function types cannot have multiple @ error results " , ( ) ) <nl> - ERROR ( unsupported_cc_representation_combo , type_parsing , none , <nl> - " cc unsupported with this sil representation " , ( ) ) <nl> ERROR ( unsupported_sil_convention , type_parsing , none , <nl> " convention ' % 0 ' not supported in SIL " , ( StringRef ) ) <nl> ERROR ( sil_deprecated_convention_attribute , type_parsing , none , <nl> mmm a / include / swift / AST / KnownDecls . def <nl> ppp b / include / swift / AST / KnownDecls . def <nl> <nl> - / / = = = - - KnownDecl . def - Compiler declaration metaprogramming mmm - * - C + + - * - = = = / / <nl> + / / = = = - - KnownDecls . def - Compiler declaration metaprogramming mmm * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / ASTSectionImporter / ASTSectionImporter . h <nl> ppp b / include / swift / ASTSectionImporter / ASTSectionImporter . h <nl> <nl> - / / = = = mmm ASTSectionImporter . cpp - Import AST Section Modules mmm * - C + + - * - - = = = / / <nl> + / / = = = mmm ASTSectionImporter . h - Import AST Section Modules mmm - - * - C + + - * - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / Basic / FileSystem . h <nl> ppp b / include / swift / Basic / FileSystem . h <nl> <nl> - / / = = = mmm FileSystem . cpp - Extra helpers for manipulating files - - * - C + + - * - = = = / / <nl> + / / = = = mmm FileSystem . h - Extra helpers for manipulating files mmm - * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / ClangImporter / ClangImporter . h <nl> ppp b / include / swift / ClangImporter / ClangImporter . h <nl> <nl> - / / = = = mmm ClangImporter . cpp - Import Clang Modules mmmmmmmmmmmm - - * - C + + - * - - = = = / / <nl> + / / = = = mmm ClangImporter . h - Import Clang Modules mmmmmmmmmmmmmmm - * - C + + - * - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> class ClangImporter final : public ClangModuleLoader { <nl> / / / \ brief Look for declarations associated with the given name . <nl> / / / <nl> / / / \ param name The name we ' re searching for . <nl> - void lookupValue ( Identifier name , VisibleDeclConsumer & consumer ) ; <nl> + void lookupValue ( DeclName name , VisibleDeclConsumer & consumer ) ; <nl> <nl> / / / \ brief Look for visible declarations in the Clang translation unit and <nl> / / / import them as Swift decls . <nl> mmm a / include / swift / Runtime / HeapObject . h <nl> ppp b / include / swift / Runtime / HeapObject . h <nl> <nl> - / / = = = mmm Alloc . h - Swift Language Allocation ABI mmmmmmmmmmmmmmm * - C + + - * - - = = = / / <nl> + / / = = = mmm HeapObject . h - Swift Language Allocation ABI mmmmmmmmm - * - C + + - * - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / SIL / DynamicCasts . h <nl> ppp b / include / swift / SIL / DynamicCasts . h <nl> <nl> - / / = = = mmm DynamicsCasts . h - SIL dynamic - cast utilities mmmmmmmmm - - * - C + + - * - = = = / / <nl> + / / = = = mmm DynamicCasts . h - SIL dynamic - cast utilities mmmmmmmmmmmm * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / SIL / Projection . h <nl> ppp b / include / swift / SIL / Projection . h <nl> class ProjectionPath { <nl> / / / We only allow for moves of ProjectionPath since we only want them to be <nl> / / / able to be constructed by calling our factory method or by going through <nl> / / / the append function . <nl> - ProjectionPath ( ProjectionPath & & Other ) : Path ( Other . Path ) { } <nl> + ProjectionPath ( ProjectionPath & & Other ) : Path ( std : : move ( Other . Path ) ) { } <nl> <nl> / / / Append the projection P onto this . <nl> ProjectionPath & append ( const Projection & P ) { <nl> class ProjectionPath { <nl> } <nl> <nl> ProjectionPath & operator = ( ProjectionPath & & O ) { <nl> - * this = std : : move ( O ) ; <nl> - O . Path . clear ( ) ; <nl> + std : : swap ( Path , O . Path ) ; <nl> return * this ; <nl> } <nl> <nl> deleted file mode 100644 <nl> index f8780e4c6a1c . . 000000000000 <nl> mmm a / include / swift / SIL / SILExternalSource . h <nl> ppp / dev / null <nl> <nl> - / / = = = mmm SILExternalSource . h - On - demand generation of SIL mmmmmm * - C + + - * - = = = / / <nl> - / / <nl> - / / This source file is part of the Swift . org open source project <nl> - / / <nl> - / / Copyright ( c ) 2014 - 2015 Apple Inc . and the Swift project authors <nl> - / / Licensed under Apache License v2 . 0 with Runtime Library Exception <nl> - / / <nl> - / / See http : / / swift . org / LICENSE . txt for license information <nl> - / / See http : / / swift . org / CONTRIBUTORS . txt for the list of Swift project authors <nl> - / / <nl> - / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> - / / <nl> - / / This file defines the abstract SILExternalSource class . <nl> - / / <nl> - / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> - <nl> - # ifndef SWIFT_SILEXTERNALSOURCE_H <nl> - # define SWIFT_SILEXTERNALSOURCE_H <nl> - <nl> - namespace swift { <nl> - <nl> - class SILFunction ; <nl> - <nl> - class SILExternalSource { <nl> - public : <nl> - SILExternalSource ( ) { } <nl> - virtual ~ SILExternalSource ( ) = default ; <nl> - <nl> - / / / SILExternalSource gets called for each external function <nl> - / / / that the SIL linker would try to load SIL for . In particular <nl> - / / / this means transparent functions . <nl> - / / / <nl> - / / / \ param callee is the ( usually empty ) called function . <nl> - virtual SILFunction * lookupSILFunction ( SILFunction * callee ) = 0 ; <nl> - <nl> - private : <nl> - virtual void anchor ( ) ; <nl> - } ; <nl> - <nl> - } / / namespace swift <nl> - <nl> - # endif <nl> mmm a / include / swift / SIL / SILModule . h <nl> ppp b / include / swift / SIL / SILModule . h <nl> namespace swift { <nl> class AnyFunctionType ; <nl> class ASTContext ; <nl> class FuncDecl ; <nl> - class SILExternalSource ; <nl> class SILTypeList ; <nl> class SILUndef ; <nl> class SourceFile ; <nl> class SILModule { <nl> / / / optimizations can assume that they see the whole module . <nl> bool wholeModule ; <nl> <nl> - / / / The external SIL source to use when linking this module . <nl> - SILExternalSource * ExternalSource = nullptr ; <nl> - <nl> / / / The options passed into this SILModule . <nl> SILOptions & Options ; <nl> <nl> class SILModule { <nl> Stage = s ; <nl> } <nl> <nl> - SILExternalSource * getExternalSource ( ) const { return ExternalSource ; } <nl> - void setExternalSource ( SILExternalSource * S ) { <nl> - assert ( ! ExternalSource & & " External source already set " ) ; <nl> - ExternalSource = S ; <nl> - } <nl> - <nl> / / / \ brief Run the SIL verifier to make sure that all Functions follow <nl> / / / invariants . <nl> void verify ( ) const ; <nl> mmm a / include / swift / SIL / TypeLowering . h <nl> ppp b / include / swift / SIL / TypeLowering . h <nl> class TypeConverter { <nl> SILType getSubstitutedStorageType ( AbstractStorageDecl * value , <nl> Type lvalueType ) ; <nl> <nl> - / / / Retrieve the set of archetypes open in the given context . <nl> - GenericParamList * getEffectiveGenericParamsForContext ( DeclContext * dc ) ; <nl> - <nl> / / / Retrieve the set of archetypes closed over by the given function . <nl> GenericParamList * getEffectiveGenericParams ( AnyFunctionRef fn , <nl> CaptureInfo captureInfo ) ; <nl> mmm a / include / swift / SILOptimizer / Analysis / ColdBlockInfo . h <nl> ppp b / include / swift / SILOptimizer / Analysis / ColdBlockInfo . h <nl> <nl> - / / = = = - - ColdBlocks . h - Fast / slow path analysis for the SIL CFG - * - C + + - * - - = = = / / <nl> + / / = = = - - ColdBlockInfo . h - Fast / slow path analysis for the SIL CFG - * - C + + - * - = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / include / swift / Sema / TypeCheckRequest . h <nl> ppp b / include / swift / Sema / TypeCheckRequest . h <nl> class TypeCheckRequest { <nl> } <nl> <nl> # include " swift / Sema / TypeCheckRequestPayloads . def " <nl> - <nl> + <nl> + TypeCheckRequest ( const TypeCheckRequest & T ) { * this = T ; } <nl> + <nl> + TypeCheckRequest & operator = ( const TypeCheckRequest & T ) { <nl> + TheKind = T . getKind ( ) ; <nl> + switch ( getPayloadKind ( TheKind ) ) { <nl> + case PayloadKind : : Class : <nl> + Payload . Class = T . Payload . Class ; <nl> + break ; <nl> + case PayloadKind : : Enum : <nl> + Payload . Enum = T . Payload . Enum ; <nl> + break ; <nl> + case PayloadKind : : InheritedClauseEntry : <nl> + new ( & Payload . InheritedClauseEntry ) <nl> + std : : pair < llvm : : PointerUnion < TypeDecl * , ExtensionDecl * > , unsigned > ( ) ; <nl> + Payload . InheritedClauseEntry = T . Payload . InheritedClauseEntry ; <nl> + break ; <nl> + case PayloadKind : : Protocol : <nl> + Payload . Protocol = T . Payload . Protocol ; <nl> + break ; <nl> + case PayloadKind : : DeclContextLookup : <nl> + new ( & Payload . DeclContextLookup ) DeclContextLookupInfo ( ) ; <nl> + Payload . DeclContextLookup = T . Payload . DeclContextLookup ; <nl> + break ; <nl> + case PayloadKind : : TypeResolution : <nl> + new ( & Payload . InheritedClauseEntry ) <nl> + std : : tuple < TypeRepr * , DeclContext * , unsigned > ( ) ; <nl> + Payload . TypeResolution = T . Payload . TypeResolution ; <nl> + break ; <nl> + case PayloadKind : : TypeDeclResolution : <nl> + Payload . TypeDeclResolution = T . Payload . TypeDeclResolution ; <nl> + break ; <nl> + } <nl> + return * this ; <nl> + } <nl> + <nl> / / / Determine the kind of type check request . <nl> Kind getKind ( ) const { return TheKind ; } <nl> <nl> mmm a / lib / AST / Availability . cpp <nl> ppp b / lib / AST / Availability . cpp <nl> AvailabilityInference : : annotatedAvailableRange ( const Decl * D , ASTContext & Ctx ) { <nl> <nl> for ( auto Attr : D - > getAttrs ( ) ) { <nl> auto * AvailAttr = dyn_cast < AvailableAttr > ( Attr ) ; <nl> - if ( AvailAttr = = NULL | | ! AvailAttr - > Introduced . hasValue ( ) | | <nl> + if ( AvailAttr = = nullptr | | ! AvailAttr - > Introduced . hasValue ( ) | | <nl> ! AvailAttr - > isActivePlatform ( Ctx ) ) { <nl> continue ; <nl> } <nl> mmm a / lib / AST / DiagnosticEngine . cpp <nl> ppp b / lib / AST / DiagnosticEngine . cpp <nl> <nl> - / / = = = - DiagnosticEngine . h - Diagnostic Display Engine mmmmmmmmm - - * - C + + - * - = = = / / <nl> + / / = = = - DiagnosticEngine . cpp - Diagnostic Display Engine mmmmmmmmm * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / AST / USRGeneration . cpp <nl> ppp b / lib / AST / USRGeneration . cpp <nl> <nl> - / / = = = mmm USRGeneration . h - Routines for USR generation mmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm USRGeneration . cpp - Routines for USR generation mmmmmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Basic / Cache . cpp <nl> ppp b / lib / Basic / Cache . cpp <nl> <nl> - / / = = = mmm Cache . h - Caching mechanism implementation mmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm Cache . cpp - Caching mechanism implementation mmmmmmmmmmmmmmmmmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Basic / Darwin / Cache - Mac . cpp <nl> ppp b / lib / Basic / Darwin / Cache - Mac . cpp <nl> <nl> - / / = = = mmm Cache . h - Caching mechanism implementation mmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm Cache - Mac . cpp - Caching mechanism implementation mmmmmmmmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Basic / ThreadSafeRefCounted . cpp <nl> ppp b / lib / Basic / ThreadSafeRefCounted . cpp <nl> <nl> - / / = = = mmm ThreadSafeRefCounted . h - Thread - safe Refcounting Base mmmmmmmmmmmm = = = / / <nl> + / / = = = mmm ThreadSafeRefCounted . cpp - Thread - safe Refcounting Base mmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Basic / UUID . cpp <nl> ppp b / lib / Basic / UUID . cpp <nl> <nl> - / / = = = mmm UUID . h - UUID generation mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm UUID . cpp - UUID generation mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / ClangImporter / ClangImporter . cpp <nl> ppp b / lib / ClangImporter / ClangImporter . cpp <nl> ClangImporter : : create ( ASTContext & ctx , <nl> ppOpts . addRemappedFile ( Implementation : : moduleImportBufferName , <nl> sourceBuffer . release ( ) ) ; <nl> <nl> - / / Build Swift lookup tables , if requested . <nl> - if ( importer - > Impl . UseSwiftLookupTables ) { <nl> - invocation - > getFrontendOpts ( ) . ModuleFileExtensions . push_back ( <nl> - <nl> - & importer - > Impl ) ; <nl> - } <nl> + / / Install a Clang module file extension to build Swift name lookup tables . <nl> + invocation - > getFrontendOpts ( ) . ModuleFileExtensions . push_back ( & importer - > Impl ) ; <nl> <nl> / / Create a compiler instance . <nl> auto PCHContainerOperations = <nl> ClangImporter : : create ( ASTContext & ctx , <nl> for ( auto * D : parsed . get ( ) ) { <nl> importer - > Impl . addBridgeHeaderTopLevelDecls ( D ) ; <nl> <nl> - if ( importer - > Impl . UseSwiftLookupTables ) { <nl> - if ( auto named = dyn_cast < clang : : NamedDecl > ( D ) ) { <nl> - importer - > Impl . addEntryToLookupTable ( <nl> - instance . getSema ( ) , <nl> - importer - > Impl . BridgingHeaderLookupTable , <nl> - named ) ; <nl> - } <nl> + if ( auto named = dyn_cast < clang : : NamedDecl > ( D ) ) { <nl> + importer - > Impl . addEntryToLookupTable ( <nl> + instance . getSema ( ) , <nl> + importer - > Impl . BridgingHeaderLookupTable , <nl> + named ) ; <nl> } <nl> } <nl> } <nl> bool ClangImporter : : Implementation : : importHeader ( <nl> <nl> clang : : Parser : : DeclGroupPtrTy parsed ; <nl> while ( ! Parser - > ParseTopLevelDecl ( parsed ) ) { <nl> - if ( parsed & & ( trackParsedSymbols | | UseSwiftLookupTables ) ) { <nl> - for ( auto * D : parsed . get ( ) ) { <nl> - if ( trackParsedSymbols ) <nl> - addBridgeHeaderTopLevelDecls ( D ) ; <nl> - <nl> - if ( UseSwiftLookupTables ) { <nl> - if ( auto named = dyn_cast < clang : : NamedDecl > ( D ) ) { <nl> - addEntryToLookupTable ( getClangSema ( ) , BridgingHeaderLookupTable , <nl> - named ) ; <nl> - } <nl> - } <nl> + if ( ! parsed ) continue ; <nl> + <nl> + for ( auto * D : parsed . get ( ) ) { <nl> + if ( trackParsedSymbols ) <nl> + addBridgeHeaderTopLevelDecls ( D ) ; <nl> + <nl> + if ( auto named = dyn_cast < clang : : NamedDecl > ( D ) ) { <nl> + addEntryToLookupTable ( getClangSema ( ) , BridgingHeaderLookupTable , <nl> + named ) ; <nl> } <nl> } <nl> } <nl> pp . EndSourceFile ( ) ; <nl> bumpGeneration ( ) ; <nl> <nl> - if ( UseSwiftLookupTables ) { <nl> - addMacrosToLookupTable ( getClangASTContext ( ) , getClangPreprocessor ( ) , <nl> - BridgingHeaderLookupTable ) ; <nl> - } <nl> + / / Add any defined macros to the bridging header lookup table . <nl> + addMacrosToLookupTable ( getClangASTContext ( ) , getClangPreprocessor ( ) , <nl> + BridgingHeaderLookupTable ) ; <nl> <nl> / / Wrap all Clang imports under a Swift import decl . <nl> for ( auto & Import : BridgeHeaderTopLevelImports ) { <nl> bool ClangImporter : : Implementation : : shouldImportAsInitializer ( <nl> } <nl> <nl> # pragma mark Name lookup <nl> - void ClangImporter : : lookupValue ( Identifier name , VisibleDeclConsumer & consumer ) { <nl> - auto & pp = Impl . Instance - > getPreprocessor ( ) ; <nl> - auto & sema = Impl . Instance - > getSema ( ) ; <nl> - <nl> - / / Map the name . If we can ' t represent the Swift name in Clang , bail out now . <nl> - auto clangName = Impl . exportName ( name ) ; <nl> - if ( ! clangName ) <nl> - return ; <nl> - <nl> - / / See if there ' s a preprocessor macro we can import by this name . <nl> - clang : : IdentifierInfo * clangID = clangName . getAsIdentifierInfo ( ) ; <nl> - if ( clangID & & clangID - > hasMacroDefinition ( ) ) { <nl> - if ( auto clangMacro = pp . getMacroInfo ( clangID ) ) { <nl> - if ( auto valueDecl = Impl . importMacro ( name , clangMacro ) ) { <nl> - consumer . foundDecl ( valueDecl , DeclVisibilityKind : : VisibleAtTopLevel ) ; <nl> - } <nl> - } <nl> - } <nl> - <nl> - bool FoundType = false ; <nl> - bool FoundAny = false ; <nl> - auto processResults = [ & ] ( clang : : LookupResult & result ) { <nl> - SmallVector < const clang : : NamedDecl * , 16 > sortedResults { result . begin ( ) , <nl> - result . end ( ) } ; <nl> - const clang : : SourceManager & srcMgr = pp . getSourceManager ( ) ; <nl> - std : : sort ( sortedResults . begin ( ) , sortedResults . end ( ) , <nl> - [ & ] ( const clang : : NamedDecl * lhs , <nl> - const clang : : NamedDecl * rhs ) - > bool { <nl> - clang : : SourceLocation lhsLoc = lhs - > getLocStart ( ) ; <nl> - clang : : SourceLocation lhsExpLoc = srcMgr . getExpansionLoc ( lhsLoc ) ; <nl> - clang : : SourceLocation rhsLoc = rhs - > getLocStart ( ) ; <nl> - clang : : SourceLocation rhsExpLoc = srcMgr . getExpansionLoc ( rhsLoc ) ; <nl> - if ( lhsExpLoc = = rhsExpLoc ) <nl> - return srcMgr . isBeforeInTranslationUnit ( srcMgr . getSpellingLoc ( lhsLoc ) , <nl> - srcMgr . getSpellingLoc ( rhsLoc ) ) ; <nl> - return srcMgr . isBeforeInTranslationUnit ( lhsExpLoc , rhsExpLoc ) ; <nl> - } ) ; <nl> - <nl> - / / FIXME : Filter based on access path ? C + + access control ? <nl> - for ( auto decl : result ) { <nl> - if ( auto swiftDecl = Impl . importDeclReal ( decl - > getUnderlyingDecl ( ) ) ) { <nl> - if ( auto valueDecl = dyn_cast < ValueDecl > ( swiftDecl ) ) { <nl> - / / If the importer gave us a declaration from the stdlib , make sure <nl> - / / it does not show up in the lookup results for the imported module . <nl> - if ( valueDecl - > getDeclContext ( ) - > isModuleScopeContext ( ) & & <nl> - valueDecl - > getModuleContext ( ) = = Impl . getStdlibModule ( ) ) <nl> - continue ; <nl> - / / Check that we didn ' t pick up something with a remapped name . <nl> - if ( valueDecl - > getName ( ) ! = name ) <nl> - continue ; <nl> - <nl> - consumer . foundDecl ( valueDecl , DeclVisibilityKind : : VisibleAtTopLevel ) ; <nl> - FoundType = FoundType | | isa < TypeDecl > ( valueDecl ) ; <nl> - FoundAny = true ; <nl> - } <nl> - } <nl> - } <nl> - } ; <nl> - <nl> - <nl> - / / Perform name lookup into the global scope . <nl> - / / FIXME : Map source locations over . <nl> - clang : : LookupResult lookupResult ( sema , / * name = * / { } , clang : : SourceLocation ( ) , <nl> - clang : : Sema : : LookupOrdinaryName ) ; <nl> - <nl> - auto lookupNameForSwift = [ & ] ( clang : : DeclarationName clangNameToLookup ) { <nl> - lookupResult . setLookupName ( clangNameToLookup ) ; <nl> - <nl> - lookupResult . clear ( clang : : Sema : : LookupOrdinaryName ) ; <nl> - if ( sema . LookupName ( lookupResult , / * Scope = * / nullptr ) ) <nl> - processResults ( lookupResult ) ; <nl> - <nl> - if ( ! FoundType ) { <nl> - / / Look up a tag name if we did not find a type with this name already . <nl> - / / We don ' t want to introduce multiple types with same name . <nl> - lookupResult . clear ( clang : : Sema : : LookupTagName ) ; <nl> - if ( sema . LookupName ( lookupResult , / * Scope = * / nullptr ) ) <nl> - processResults ( lookupResult ) ; <nl> - } <nl> - <nl> - const auto * clangIDToLookup = clangNameToLookup . getAsIdentifierInfo ( ) ; <nl> - <nl> - / / Look up protocol names as well . <nl> - lookupResult . clear ( clang : : Sema : : LookupObjCProtocolName ) ; <nl> - if ( sema . LookupName ( lookupResult , / * Scope = * / nullptr ) ) { <nl> - processResults ( lookupResult ) ; <nl> - <nl> - } else if ( ! FoundAny & & <nl> - clangIDToLookup - > getName ( ) . endswith ( SWIFT_PROTOCOL_SUFFIX ) ) { <nl> - StringRef noProtoNameStr = clangIDToLookup - > getName ( ) ; <nl> - noProtoNameStr = noProtoNameStr . drop_back ( strlen ( SWIFT_PROTOCOL_SUFFIX ) ) ; <nl> - auto protoIdent = & Impl . getClangASTContext ( ) . Idents . get ( noProtoNameStr ) ; <nl> - lookupResult . clear ( clang : : Sema : : LookupObjCProtocolName ) ; <nl> - lookupResult . setLookupName ( protoIdent ) ; <nl> - <nl> - if ( sema . LookupName ( lookupResult , / * Scope = * / nullptr ) ) <nl> - processResults ( lookupResult ) ; <nl> - } <nl> - <nl> - / / If we * still * haven ' t found anything , try looking for ' < name > Ref ' . <nl> - / / Eventually , this should be optimized by recognizing this case when <nl> - / / generating the Clang module . <nl> - if ( ! FoundAny & & clangIDToLookup ) { <nl> - llvm : : SmallString < 128 > buffer ; <nl> - buffer + = clangIDToLookup - > getName ( ) ; <nl> - buffer + = SWIFT_CFTYPE_SUFFIX ; <nl> - auto refIdent = & Impl . Instance - > getASTContext ( ) . Idents . get ( buffer . str ( ) ) ; <nl> - <nl> - lookupResult . clear ( clang : : Sema : : LookupOrdinaryName ) ; <nl> - lookupResult . setLookupName ( refIdent ) ; <nl> - if ( sema . LookupName ( lookupResult , / * Scope = * / 0 ) ) { <nl> - / / FIXME : Filter based on access path ? C + + access control ? <nl> - / / FIXME : Sort this list , even though there ' s probably only one result . <nl> - for ( auto decl : lookupResult ) { <nl> - auto swiftDecl = Impl . importDeclReal ( decl - > getUnderlyingDecl ( ) ) ; <nl> - auto alias = dyn_cast_or_null < TypeAliasDecl > ( swiftDecl ) ; <nl> - if ( ! alias ) <nl> - continue ; <nl> - <nl> - Type underlyingTy = alias - > getUnderlyingType ( ) ; <nl> - TypeDecl * underlying = nullptr ; <nl> - if ( auto anotherAlias = <nl> - dyn_cast < NameAliasType > ( underlyingTy . getPointer ( ) ) ) { <nl> - underlying = anotherAlias - > getDecl ( ) ; <nl> - } else if ( auto aliasedClass = underlyingTy - > getAs < ClassType > ( ) ) { <nl> - underlying = aliasedClass - > getDecl ( ) ; <nl> - } <nl> - <nl> - if ( ! underlying ) <nl> - continue ; <nl> - if ( underlying - > getName ( ) = = name ) { <nl> - consumer . foundDecl ( underlying , <nl> - DeclVisibilityKind : : VisibleAtTopLevel ) ; <nl> - } <nl> - } <nl> - } <nl> - } <nl> - } ; <nl> - <nl> - / / Actually do the lookup . <nl> - lookupNameForSwift ( clangName ) ; <nl> - <nl> - / / If we haven ' t found anything and the name starts with " __ " , maybe it ' s a <nl> - / / decl marked with the swift_private attribute . Try chopping off the prefix . <nl> - if ( ! FoundAny & & clangID & & clangID - > getName ( ) . startswith ( " __ " ) & & <nl> - clangID - > getName ( ) . size ( ) > 2 ) { <nl> - StringRef unprefixedName = clangID - > getName ( ) . drop_front ( 2 ) ; <nl> - auto unprefixedID = <nl> - & Impl . Instance - > getASTContext ( ) . Idents . get ( unprefixedName ) ; <nl> - lookupNameForSwift ( unprefixedID ) ; <nl> - } <nl> - } <nl> - <nl> const clang : : TypedefNameDecl * <nl> ClangImporter : : Implementation : : lookupTypedef ( clang : : DeclarationName name ) { <nl> clang : : Sema & sema = Instance - > getSema ( ) ; <nl> bool ClangImporter : : lookupDeclsFromHeader ( StringRef Filename , <nl> return true ; / / no info found about that header . <nl> } <nl> <nl> + void ClangImporter : : lookupValue ( DeclName name , VisibleDeclConsumer & consumer ) { <nl> + / / Look for values in the bridging header ' s lookup table . <nl> + Impl . lookupValue ( Impl . BridgingHeaderLookupTable , name , consumer ) ; <nl> + <nl> + / / Collect and sort the set of module names . <nl> + SmallVector < StringRef , 4 > moduleNames ; <nl> + for ( const auto & entry : Impl . LookupTables ) { <nl> + moduleNames . push_back ( entry . first ( ) ) ; <nl> + } <nl> + llvm : : array_pod_sort ( moduleNames . begin ( ) , moduleNames . end ( ) ) ; <nl> + <nl> + / / Look for values in the module lookup tables . <nl> + for ( auto moduleName : moduleNames ) { <nl> + Impl . lookupValue ( * Impl . LookupTables [ moduleName ] . get ( ) , name , consumer ) ; <nl> + } <nl> + } <nl> + <nl> void ClangImporter : : lookupVisibleDecls ( VisibleDeclConsumer & Consumer ) const { <nl> if ( Impl . CurrentCacheState ! = Implementation : : CacheState : : Valid ) { <nl> do { <nl> void ClangModuleUnit : : lookupVisibleDecls ( Module : : AccessPathTy accessPath , <nl> actualConsumer = & darwinBlacklistConsumer ; <nl> } <nl> <nl> - if ( owner . Impl . UseSwiftLookupTables ) { <nl> - / / Find the corresponding lookup table . <nl> - if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> - / / Search it . <nl> - owner . Impl . lookupVisibleDecls ( * lookupTable , * actualConsumer ) ; <nl> - } <nl> - <nl> - return ; <nl> + / / Find the corresponding lookup table . <nl> + if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> + / / Search it . <nl> + owner . Impl . lookupVisibleDecls ( * lookupTable , * actualConsumer ) ; <nl> } <nl> - <nl> - owner . lookupVisibleDecls ( * actualConsumer ) ; <nl> } <nl> <nl> namespace { <nl> void ClangModuleUnit : : lookupValue ( Module : : AccessPathTy accessPath , <nl> consumer = & darwinBlacklistConsumer ; <nl> } <nl> <nl> - if ( owner . Impl . UseSwiftLookupTables ) { <nl> - / / Find the corresponding lookup table . <nl> - if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> - / / Search it . <nl> - owner . Impl . lookupValue ( * lookupTable , name , * consumer ) ; <nl> - } <nl> - <nl> - return ; <nl> + / / Find the corresponding lookup table . <nl> + if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> + / / Search it . <nl> + owner . Impl . lookupValue ( * lookupTable , name , * consumer ) ; <nl> } <nl> - <nl> - / / There should be no multi - part top - level decls in a Clang module . <nl> - if ( ! name . isSimpleName ( ) ) <nl> - return ; <nl> - <nl> - owner . lookupValue ( name . getBaseName ( ) , * consumer ) ; <nl> } <nl> <nl> void ClangImporter : : loadExtensions ( NominalTypeDecl * nominal , <nl> void ClangImporter : : loadObjCMethods ( <nl> } <nl> } <nl> <nl> - / / FIXME : This should just be the implementation of <nl> - / / llvm : : array_pod_sort_comparator . The only difference is that it uses <nl> - / / std : : less instead of operator < . <nl> - / / FIXME : Copied from IRGenModule . cpp . <nl> - template < typename T > <nl> - static int pointerPODSortComparator ( T * const * lhs , T * const * rhs ) { <nl> - std : : less < T * > lt ; <nl> - if ( lt ( * lhs , * rhs ) ) <nl> - return - 1 ; <nl> - if ( lt ( * rhs , * lhs ) ) <nl> - return - 1 ; <nl> - return 0 ; <nl> - } <nl> - <nl> - static void lookupClassMembersImpl ( ClangImporter : : Implementation & Impl , <nl> - VisibleDeclConsumer & consumer , <nl> - DeclName name ) { <nl> - / / When looking for a subscript , we actually look for the getters <nl> - / / and setters . <nl> - bool isSubscript = name . isSimpleName ( Impl . SwiftContext . Id_subscript ) ; <nl> - <nl> - / / FIXME : Does not include methods from protocols . <nl> - auto importMethodsImpl = [ & ] ( const clang : : ObjCMethodList & start ) { <nl> - for ( auto * list = & start ; list ! = nullptr ; list = list - > getNext ( ) ) { <nl> - if ( list - > getMethod ( ) - > isUnavailable ( ) ) <nl> - continue ; <nl> - <nl> - / / If the method is a property accessor , we want the property . <nl> - const clang : : NamedDecl * searchForDecl = list - > getMethod ( ) ; <nl> - if ( list - > getMethod ( ) - > isPropertyAccessor ( ) & & <nl> - ! Impl . isAccessibilityDecl ( list - > getMethod ( ) ) ) { <nl> - if ( auto property = list - > getMethod ( ) - > findPropertyDecl ( ) ) { <nl> - / / . . . unless we are enumerating all decls . In this case , if we see <nl> - / / a getter , return a property . If we see a setter , we know that <nl> - / / there is a getter , and we will visit it and return a property at <nl> - / / that time . <nl> - if ( ! name & & list - > getMethod ( ) - > param_size ( ) ! = 0 ) <nl> - continue ; <nl> - searchForDecl = property ; <nl> - } <nl> - } <nl> - <nl> - auto VD = cast_or_null < ValueDecl > ( Impl . importDeclReal ( searchForDecl ) ) ; <nl> - if ( ! VD ) <nl> - continue ; <nl> - <nl> - if ( auto func = dyn_cast < FuncDecl > ( VD ) ) { <nl> - if ( auto storage = func - > getAccessorStorageDecl ( ) ) { <nl> - consumer . foundDecl ( storage , DeclVisibilityKind : : DynamicLookup ) ; <nl> - continue ; <nl> - } else if ( isSubscript | | ! name ) { <nl> - auto known = Impl . Subscripts . find ( { func , nullptr } ) ; <nl> - if ( known ! = Impl . Subscripts . end ( ) ) { <nl> - consumer . foundDecl ( known - > second , <nl> - DeclVisibilityKind : : DynamicLookup ) ; <nl> - } <nl> - <nl> - / / If we were looking only for subscripts , don ' t report the getter . <nl> - if ( isSubscript ) <nl> - continue ; <nl> - } <nl> - } <nl> - <nl> - consumer . foundDecl ( VD , DeclVisibilityKind : : DynamicLookup ) ; <nl> - } <nl> - } ; <nl> - <nl> - auto importMethods = [ = ] ( const clang : : Sema : : GlobalMethods & methodListPair ) { <nl> - if ( methodListPair . first . getMethod ( ) ) <nl> - importMethodsImpl ( methodListPair . first ) ; <nl> - if ( methodListPair . second . getMethod ( ) ) <nl> - importMethodsImpl ( methodListPair . second ) ; <nl> - } ; <nl> - <nl> - clang : : Sema & S = Impl . getClangSema ( ) ; <nl> - <nl> - if ( isSubscript ) { <nl> - clang : : Selector sels [ ] = { <nl> - Impl . objectAtIndexedSubscript , <nl> - Impl . setObjectAtIndexedSubscript , <nl> - Impl . objectForKeyedSubscript , <nl> - Impl . setObjectForKeyedSubscript <nl> - } ; <nl> - for ( auto sel : sels ) { <nl> - S . ReadMethodPool ( sel ) ; <nl> - importMethods ( S . MethodPool [ sel ] ) ; <nl> - } <nl> - <nl> - } else if ( name ) { <nl> - auto sel = Impl . exportSelector ( name ) ; <nl> - if ( ! sel . isNull ( ) ) { <nl> - S . ReadMethodPool ( sel ) ; <nl> - importMethods ( S . MethodPool [ sel ] ) ; <nl> - <nl> - / / If this is a simple name , we only checked nullary selectors . Check <nl> - / / unary ones as well . <nl> - / / Note : If this is ever used to look up init methods , we ' d need to do <nl> - / / the reverse as well . <nl> - if ( name . isSimpleName ( ) ) { <nl> - auto * II = Impl . exportName ( name . getBaseName ( ) ) . getAsIdentifierInfo ( ) ; <nl> - sel = Impl . getClangASTContext ( ) . Selectors . getUnarySelector ( II ) ; <nl> - assert ( ! sel . isNull ( ) ) ; <nl> - <nl> - S . ReadMethodPool ( sel ) ; <nl> - importMethods ( S . MethodPool [ sel ] ) ; <nl> - } <nl> - } <nl> - <nl> - } else { <nl> - / / Force load all external methods . <nl> - / / FIXME : Copied from Clang ' s SemaCodeComplete . <nl> - clang : : ExternalASTSource * source = S . getExternalSource ( ) ; <nl> - for ( uint32_t i = 0 , n = source - > GetNumExternalSelectors ( ) ; i ! = n ; + + i ) { <nl> - clang : : Selector sel = source - > GetExternalSelector ( i ) ; <nl> - if ( sel . isNull ( ) | | S . MethodPool . count ( sel ) ) <nl> - continue ; <nl> - <nl> - S . ReadMethodPool ( sel ) ; <nl> - } <nl> - <nl> - for ( auto entry : S . MethodPool ) <nl> - importMethods ( entry . second ) ; <nl> - } <nl> - } <nl> - <nl> void <nl> ClangModuleUnit : : lookupClassMember ( Module : : AccessPathTy accessPath , <nl> DeclName name , <nl> ClangModuleUnit : : lookupClassMember ( Module : : AccessPathTy accessPath , <nl> <nl> VectorDeclConsumer consumer ( results ) ; <nl> <nl> - / / If we have lookup tables , use them . <nl> - if ( owner . Impl . UseSwiftLookupTables ) { <nl> - / / Find the corresponding lookup table . <nl> - if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> - / / Search it . <nl> - owner . Impl . lookupObjCMembers ( * lookupTable , name , consumer ) ; <nl> - } <nl> - <nl> - return ; <nl> + / / Find the corresponding lookup table . <nl> + if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> + / / Search it . <nl> + owner . Impl . lookupObjCMembers ( * lookupTable , name , consumer ) ; <nl> } <nl> - <nl> - / / FIXME : Not limited by module . <nl> - lookupClassMembersImpl ( owner . Impl , consumer , name ) ; <nl> } <nl> <nl> void ClangModuleUnit : : lookupClassMembers ( Module : : AccessPathTy accessPath , <nl> void ClangModuleUnit : : lookupClassMembers ( Module : : AccessPathTy accessPath , <nl> if ( clangModule & & clangModule - > isSubModule ( ) ) <nl> return ; <nl> <nl> - if ( owner . Impl . UseSwiftLookupTables ) { <nl> - / / Find the corresponding lookup table . <nl> - if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> - / / Search it . <nl> - owner . Impl . lookupAllObjCMembers ( * lookupTable , consumer ) ; <nl> - } <nl> - <nl> - return ; <nl> + / / Find the corresponding lookup table . <nl> + if ( auto lookupTable = owner . Impl . findLookupTable ( clangModule ) ) { <nl> + / / Search it . <nl> + owner . Impl . lookupAllObjCMembers ( * lookupTable , consumer ) ; <nl> } <nl> - <nl> - / / FIXME : Not limited by module . <nl> - lookupClassMembersImpl ( owner . Impl , consumer , { } ) ; <nl> } <nl> <nl> void ClangModuleUnit : : collectLinkLibraries ( <nl> mmm a / lib / ClangImporter / MacroTable . def <nl> ppp b / lib / ClangImporter / MacroTable . def <nl> <nl> - / / = = = mmm SuppressedMacros . def - Macros suppressed during import - * - C + + - * - = = = / / <nl> + / / = = = mmm MacroTable . def - Macros suppressed during import mmmmmm - * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / IDE / Utils . cpp <nl> ppp b / lib / IDE / Utils . cpp <nl> ide : : isSourceInputComplete ( std : : unique_ptr < llvm : : MemoryBuffer > MemBuf ) { <nl> const char * SourceStart = Buffer . data ( ) ; <nl> const char * SourceEnd = Buffer . data ( ) + Buffer . size ( ) ; <nl> const char * LineStart = SourceStart ; <nl> - const char * LineSourceStart = NULL ; <nl> + const char * LineSourceStart = nullptr ; <nl> uint32_t LineIndent = 0 ; <nl> struct IndentInfo { <nl> StringRef Prefix ; <nl> ide : : isSourceInputComplete ( std : : unique_ptr < llvm : : MemoryBuffer > MemBuf ) { <nl> case ' \ r ' : <nl> case ' \ n ' : <nl> LineIndent = 0 ; <nl> - LineSourceStart = NULL ; <nl> + LineSourceStart = nullptr ; <nl> LineStart = p + 1 ; <nl> break ; <nl> <nl> ide : : isSourceInputComplete ( std : : unique_ptr < llvm : : MemoryBuffer > MemBuf ) { <nl> case ' ( ' : <nl> case ' [ ' : <nl> + + LineIndent ; <nl> - if ( LineSourceStart = = NULL ) <nl> + if ( LineSourceStart = = nullptr ) <nl> IndentInfos . push_back ( IndentInfo ( LineStart , <nl> p - LineStart , <nl> LineIndent ) ) ; <nl> ide : : isSourceInputComplete ( std : : unique_ptr < llvm : : MemoryBuffer > MemBuf ) { <nl> break ; <nl> <nl> default : <nl> - if ( LineSourceStart = = NULL & & ! isspace ( * p ) ) <nl> + if ( LineSourceStart = = nullptr & & ! isspace ( * p ) ) <nl> LineSourceStart = p ; <nl> break ; <nl> } <nl> mmm a / lib / IRGen / ClassMetadataLayout . h <nl> ppp b / lib / IRGen / ClassMetadataLayout . h <nl> template < class Impl > class ClassMetadataLayout : public MetadataLayout < Impl > { <nl> / / consistent metadata layout between generic superclasses and concrete <nl> / / subclasses . <nl> if ( Type superclass = theClass - > getSuperclass ( ) ) { <nl> - addClassMembers ( superclass - > getClassOrBoundGenericClass ( ) ) ; <nl> + / / Skip superclass fields if superclass is resilient . <nl> + / / FIXME : Needs runtime support to ensure the field offset vector is <nl> + / / populated correctly . <nl> + if ( ! IGM . isResilient ( superclass - > getClassOrBoundGenericClass ( ) , <nl> + ResilienceScope : : Component ) ) { <nl> + addClassMembers ( superclass - > getClassOrBoundGenericClass ( ) ) ; <nl> + } <nl> } <nl> <nl> / / Add a reference to the parent class , if applicable . <nl> mmm a / lib / IRGen / DebugTypeInfo . cpp <nl> ppp b / lib / IRGen / DebugTypeInfo . cpp <nl> <nl> - / / = = = mmm DebugTypeInfo . h - Type Info for Debugging mmmmmmmmmmmm - - * - C + + - * - = = = / / <nl> + / / = = = mmm DebugTypeInfo . cpp - Type Info for Debugging mmmmmmmmmmmm * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / IRGen / GenClass . cpp <nl> ppp b / lib / IRGen / GenClass . cpp <nl> enum class FieldAccess : uint8_t { <nl> } ; <nl> <nl> namespace { <nl> - class FieldEntry { <nl> - llvm : : PointerIntPair < VarDecl * , 2 , FieldAccess > VarAndAccess ; <nl> - public : <nl> - FieldEntry ( VarDecl * var , FieldAccess access ) <nl> - : VarAndAccess ( var , access ) { } <nl> - <nl> - VarDecl * getVar ( ) const { <nl> - return VarAndAccess . getPointer ( ) ; <nl> - } <nl> - FieldAccess getAccess ( ) const { <nl> - return VarAndAccess . getInt ( ) ; <nl> - } <nl> - } ; <nl> - <nl> / / / Layout information for class types . <nl> class ClassTypeInfo : public HeapTypeInfo < ClassTypeInfo > { <nl> ClassDecl * TheClass ; <nl> namespace { <nl> / / / Lazily - initialized array of all fragile stored properties inherited from <nl> / / / superclasses . <nl> mutable ArrayRef < VarDecl * > InheritedStoredProperties ; <nl> + / / / Lazily - initialized array of all field access methods . <nl> + mutable ArrayRef < FieldAccess > AllFieldAccesses ; <nl> <nl> / / / Can we use swift reference - counting , or do we have to use <nl> / / / objc_retain / release ? <nl> namespace { <nl> const StructLayout & getLayout ( IRGenModule & IGM ) const ; <nl> ArrayRef < VarDecl * > getAllStoredProperties ( IRGenModule & IGM ) const ; <nl> ArrayRef < VarDecl * > getInheritedStoredProperties ( IRGenModule & IGM ) const ; <nl> + FieldAccess getFieldAccess ( IRGenModule & IGM , unsigned index ) const ; <nl> <nl> Alignment getHeapAlignment ( IRGenModule & IGM ) const { <nl> return getLayout ( IGM ) . getAlignment ( ) ; <nl> namespace { <nl> return getLayout ( IGM ) . getElements ( ) ; <nl> } <nl> } ; <nl> - <nl> - / / / A class for computing properties of the instance - variable layout <nl> - / / / of a class . TODO : cache the results ! <nl> - class LayoutClass { <nl> - IRGenModule & IGM ; <nl> - <nl> - ClassDecl * Root ; <nl> - SmallVector < FieldEntry , 8 > Fields ; <nl> - <nl> - bool IsMetadataResilient = false ; <nl> - bool IsObjectResilient = false ; <nl> - bool IsObjectGenericallyArranged = false ; <nl> - <nl> - ResilienceScope Resilience ; <nl> - <nl> - public : <nl> - LayoutClass ( IRGenModule & IGM , ResilienceScope resilience , <nl> - ClassDecl * theClass , SILType type ) <nl> - : IGM ( IGM ) , Resilience ( resilience ) { <nl> - layout ( theClass , type ) ; <nl> - } <nl> - <nl> - / / / The root class for purposes of metaclass objects . <nl> - ClassDecl * getRootClassForMetaclass ( ) const { <nl> - / / If the formal root class is imported from Objective - C , then <nl> - / / we should use that . For a class that ' s really implemented in <nl> - / / Objective - C , this is obviously right . For a class that ' s <nl> - / / really implemented in Swift , but that we ' re importing via an <nl> - / / Objective - C interface , this would be wrong mmm except such a <nl> - / / class can never be a formal root class , because a Swift class <nl> - / / without a formal superclass will actually be parented by <nl> - / / SwiftObject ( or maybe eventually something else like it ) , <nl> - / / which will be visible in the Objective - C type system . <nl> - if ( Root - > hasClangNode ( ) ) return Root ; <nl> - <nl> - / / FIXME : If the root class specifies its own runtime ObjC base class , <nl> - / / assume that that base class ultimately inherits NSObject . <nl> - if ( Root - > getAttrs ( ) . hasAttribute < SwiftNativeObjCRuntimeBaseAttr > ( ) ) <nl> - return IGM . getObjCRuntimeBaseClass ( IGM . Context . Id_NSObject ) ; <nl> - <nl> - return IGM . getObjCRuntimeBaseClass ( IGM . Context . Id_SwiftObject ) ; <nl> - } <nl> - <nl> - const FieldEntry & getFieldEntry ( VarDecl * field ) const { <nl> - for ( auto & entry : Fields ) <nl> - if ( entry . getVar ( ) = = field ) <nl> - return entry ; <nl> - llvm_unreachable ( " no entry for field ! " ) ; <nl> - } <nl> - <nl> - private : <nl> - void layout ( ClassDecl * theClass , SILType type ) { <nl> - / / First , collect information about the superclass . <nl> - if ( theClass - > hasSuperclass ( ) ) { <nl> - SILType superclassType = type . getSuperclass ( nullptr ) ; <nl> - auto superclass = superclassType . getClassOrBoundGenericClass ( ) ; <nl> - assert ( superclass ) ; <nl> - layout ( superclass , superclassType ) ; <nl> - } else { <nl> - Root = theClass ; <nl> - } <nl> - <nl> - / / If the class is resilient ( which includes classes imported <nl> - / / from Objective - C ) , then it may have fields we can ' t see , <nl> - / / and all subsequent fields are * at least * resilient . <nl> - bool isClassResilient = IGM . isResilient ( theClass , Resilience ) ; <nl> - if ( isClassResilient ) { <nl> - IsMetadataResilient = true ; <nl> - IsObjectResilient = true ; <nl> - } <nl> - <nl> - / / Okay , make entries for all the physical fields we know about . <nl> - for ( auto member : theClass - > getMembers ( ) ) { <nl> - auto var = dyn_cast < VarDecl > ( member ) ; <nl> - if ( ! var ) continue ; <nl> - <nl> - / / Skip properties that we have to access logically . <nl> - if ( ! var - > hasStorage ( ) ) <nl> - continue ; <nl> - <nl> - / / Adjust based on the type of this field . <nl> - / / FIXME : this algorithm is assuming that fields are laid out <nl> - / / in declaration order . <nl> - adjustAccessAfterField ( var , type ) ; <nl> - <nl> - Fields . push_back ( FieldEntry ( var , getCurFieldAccess ( ) ) ) ; <nl> - } <nl> - } <nl> - <nl> - FieldAccess getCurFieldAccess ( ) const { <nl> - if ( IsObjectGenericallyArranged ) { <nl> - if ( IsMetadataResilient ) { <nl> - return FieldAccess : : NonConstantIndirect ; <nl> - } else { <nl> - return FieldAccess : : ConstantIndirect ; <nl> - } <nl> - } else { <nl> - if ( IsObjectResilient ) { <nl> - return FieldAccess : : NonConstantDirect ; <nl> - } else { <nl> - return FieldAccess : : ConstantDirect ; <nl> - } <nl> - } <nl> - } <nl> - <nl> - void adjustAccessAfterField ( VarDecl * var , SILType classType ) { <nl> - if ( ! var - > hasStorage ( ) ) return ; <nl> - <nl> - SILType fieldType = classType . getFieldType ( var , * IGM . SILMod ) ; <nl> - auto & fieldTI = IGM . getTypeInfo ( fieldType ) ; <nl> - if ( fieldTI . isFixedSize ( ) ) <nl> - return ; <nl> - <nl> - / / If the field type is not fixed - size , the size either depends <nl> - / / on generic parameters , or resilient types . In the former case , <nl> - / / we store field offsets in type metadata . <nl> - if ( fieldType . hasArchetype ( ) ) <nl> - IsObjectGenericallyArranged = true ; <nl> - <nl> - IsObjectResilient = true ; <nl> - } <nl> - } ; <nl> } / / end anonymous namespace . <nl> <nl> / / / Return the lowered type for the class ' s ' self ' type within its context . <nl> static unsigned getFieldIndex ( IRGenModule & IGM , <nl> ClassDecl * base , VarDecl * target ) { <nl> / / FIXME : This is algorithmically terrible . <nl> auto & ti = getSelfTypeInfo ( IGM , base ) ; <nl> - <nl> + <nl> auto props = ti . getAllStoredProperties ( IGM ) ; <nl> auto found = std : : find ( props . begin ( ) , props . end ( ) , target ) ; <nl> assert ( found ! = props . end ( ) & & " didn ' t find field in type ? ! " ) ; <nl> namespace { <nl> class ClassLayoutBuilder : public StructLayoutBuilder { <nl> SmallVector < ElementLayout , 8 > Elements ; <nl> SmallVector < VarDecl * , 8 > AllStoredProperties ; <nl> + SmallVector < FieldAccess , 8 > AllFieldAccesses ; <nl> unsigned NumInherited = 0 ; <nl> + <nl> + / / Does the superclass have a fixed number of stored properties ? <nl> + / / If not , and the class has generally - dependent layout , we have to <nl> + / / access stored properties through an indirect offset into the field <nl> + / / offset vector . <nl> + bool ClassHasFixedFieldCount = true ; <nl> + <nl> + / / Does the class have a fixed size up until the current point ? <nl> + / / If not , we have to access stored properties either ivar offset globals , <nl> + / / or through the field offset vector , based on whether the layout has <nl> + / / dependent layout . <nl> + bool ClassHasFixedSize = true ; <nl> + <nl> + / / Does the class have identical layout under all generic substitutions ? <nl> + / / If not , we can have to access stored properties through the field <nl> + / / offset vector in the instantiated type metadata . <nl> + bool ClassHasConcreteLayout = true ; <nl> + <nl> public : <nl> ClassLayoutBuilder ( IRGenModule & IGM , ClassDecl * theClass ) <nl> : StructLayoutBuilder ( IGM ) <nl> namespace { <nl> ArrayRef < VarDecl * > getAllStoredProperties ( ) const { <nl> return AllStoredProperties ; <nl> } <nl> + <nl> + / / / Return the full list of field access specifiers . <nl> + ArrayRef < FieldAccess > getAllFieldAccesses ( ) const { <nl> + return AllFieldAccesses ; <nl> + } <nl> <nl> / / / Return the inherited stored property count . <nl> unsigned getNumInherited ( ) const { <nl> namespace { <nl> auto superclass = superclassType . getClassOrBoundGenericClass ( ) ; <nl> assert ( superclass ) ; <nl> <nl> - / / Recur . <nl> - addFieldsForClass ( superclass , superclassType ) ; <nl> - / / Count the fields we got from the superclass . <nl> - NumInherited = Elements . size ( ) ; <nl> + if ( superclass - > hasClangNode ( ) ) { <nl> + / / As a special case , assume NSObject has a fixed layout . <nl> + if ( superclass - > getName ( ) ! = IGM . Context . Id_NSObject ) { <nl> + / / If the superclass was imported from Objective - C , its size is <nl> + / / not known at compile time . However , since the field offset <nl> + / / vector only stores offsets of stored properties defined in <nl> + / / Swift , we don ' t have to worry about indirect indexing of <nl> + / / the field offset vector . <nl> + ClassHasFixedSize = false ; <nl> + } <nl> + } else if ( IGM . isResilient ( superclass , ResilienceScope : : Component ) ) { <nl> + / / If the superclass is resilient , the number of stored properties <nl> + / / is not known at compile time . <nl> + ClassHasFixedFieldCount = false ; <nl> + ClassHasFixedSize = false ; <nl> + <nl> + / / If the superclass is in a generic context , conservatively <nl> + / / assume the layout depends on generic parameters , since we <nl> + / / can ' t look at stored properties . <nl> + if ( superclass - > isGenericContext ( ) ) <nl> + ClassHasConcreteLayout = false ; <nl> + } else { <nl> + / / Otherwise , we have total knowledge of the class and its <nl> + / / fields , so walk them to compute the layout . <nl> + addFieldsForClass ( superclass , superclassType ) ; <nl> + / / Count the fields we got from the superclass . <nl> + NumInherited = Elements . size ( ) ; <nl> + } <nl> } <nl> <nl> / / Collect fields from this class and add them to the layout as a chunk . <nl> namespace { <nl> for ( VarDecl * var : theClass - > getStoredProperties ( ) ) { <nl> SILType type = classType . getFieldType ( var , * IGM . SILMod ) ; <nl> auto & eltType = IGM . getTypeInfo ( type ) ; <nl> + <nl> + if ( ! eltType . isFixedSize ( ) ) { <nl> + if ( type . hasArchetype ( ) ) <nl> + ClassHasConcreteLayout = false ; <nl> + <nl> + ClassHasFixedSize = false ; <nl> + } <nl> + <nl> Elements . push_back ( ElementLayout : : getIncomplete ( eltType ) ) ; <nl> AllStoredProperties . push_back ( var ) ; <nl> + AllFieldAccesses . push_back ( getCurFieldAccess ( ) ) ; <nl> + } <nl> + } <nl> + <nl> + FieldAccess getCurFieldAccess ( ) const { <nl> + if ( ClassHasConcreteLayout ) { <nl> + if ( ClassHasFixedSize ) { <nl> + / / No generic parameter dependencies , fixed size . The field offset <nl> + / / is known at compile time . <nl> + return FieldAccess : : ConstantDirect ; <nl> + } else { <nl> + / / No generic parameter dependencies , but some stored properties <nl> + / / have unknown size . The field offset is stored in a global constant <nl> + / / and set up by the Objective - C or Swift runtime , depending on the <nl> + / / class ' s heritage . <nl> + return FieldAccess : : NonConstantDirect ; <nl> + } <nl> + } else { <nl> + if ( ClassHasFixedFieldCount ) { <nl> + / / Layout depends on generic parameters , but the number of fields <nl> + / / is known . The field offset is loaded from a fixed offset in the <nl> + / / field offset vector in type metadata . <nl> + return FieldAccess : : ConstantIndirect ; <nl> + } else { <nl> + / / Layout depends on generic parameters , and the number of fields <nl> + / / is not known at compile time either . The field index is loaded <nl> + / / from a global variable set up by the runtime , and then this <nl> + / / index is used to load the offset from the field offset vector . <nl> + return FieldAccess : : NonConstantIndirect ; <nl> + } <nl> } <nl> } <nl> } ; <nl> void ClassTypeInfo : : generateLayout ( IRGenModule & IGM ) const { <nl> = IGM . Context . AllocateCopy ( builder . getAllStoredProperties ( ) ) ; <nl> InheritedStoredProperties <nl> = AllStoredProperties . slice ( 0 , builder . getNumInherited ( ) ) ; <nl> + AllFieldAccesses <nl> + = IGM . Context . AllocateCopy ( builder . getAllFieldAccesses ( ) ) ; <nl> } <nl> <nl> const StructLayout & ClassTypeInfo : : getLayout ( IRGenModule & IGM ) const { <nl> ClassTypeInfo : : getInheritedStoredProperties ( IRGenModule & IGM ) const { <nl> return InheritedStoredProperties ; <nl> } <nl> <nl> + FieldAccess <nl> + ClassTypeInfo : : getFieldAccess ( IRGenModule & IGM , unsigned index ) const { <nl> + / / Return the cached layout if available . <nl> + if ( Layout ) <nl> + return AllFieldAccesses [ index ] ; <nl> + <nl> + generateLayout ( IGM ) ; <nl> + return AllFieldAccesses [ index ] ; <nl> + } <nl> + <nl> / / / Cast the base to i8 * , apply the given inbounds offset ( in bytes , <nl> / / / as a size_t ) , and cast to a pointer to the given type . <nl> llvm : : Value * IRGenFunction : : emitByteOffsetGEP ( llvm : : Value * base , <nl> OwnedAddress irgen : : projectPhysicalClassMemberAddress ( IRGenFunction & IGF , <nl> <nl> auto & baseClassTI = IGF . getTypeInfo ( baseType ) . as < ClassTypeInfo > ( ) ; <nl> ClassDecl * baseClass = baseType . getClassOrBoundGenericClass ( ) ; <nl> - <nl> + <nl> / / TODO : Lay out the class based on the substituted baseType rather than <nl> / / the generic type . Doing this requires that we also handle <nl> / / specialized layout in ClassTypeInfo . <nl> - LayoutClass layout ( IGF . IGM , ResilienceScope : : Component , baseClass , <nl> - getSelfType ( baseClass ) / * TODO : should be baseType * / ) ; <nl> - <nl> - auto & entry = layout . getFieldEntry ( field ) ; <nl> - switch ( entry . getAccess ( ) ) { <nl> + <nl> + unsigned fieldIndex = getFieldIndex ( IGF . IGM , baseClass , field ) ; <nl> + switch ( baseClassTI . getFieldAccess ( IGF . IGM , fieldIndex ) ) { <nl> case FieldAccess : : ConstantDirect : { <nl> / / FIXME : This field index computation is an ugly hack . <nl> - unsigned fieldIndex = getFieldIndex ( IGF . IGM , baseClass , field ) ; <nl> - <nl> Address baseAddr ( base , baseClassTI . getHeapAlignment ( IGF . IGM ) ) ; <nl> auto & element = baseClassTI . getElements ( IGF . IGM ) [ fieldIndex ] ; <nl> Address memberAddr = element . project ( IGF , baseAddr , None ) ; <nl> namespace { <nl> IRGenModule & IGM ; <nl> PointerUnion < ClassDecl * , ProtocolDecl * > TheEntity ; <nl> ExtensionDecl * TheExtension ; <nl> - const LayoutClass * Layout ; <nl> const StructLayout * FieldLayout ; <nl> <nl> ClassDecl * getClass ( ) const { <nl> namespace { <nl> unsigned NextFieldIndex ; <nl> public : <nl> ClassDataBuilder ( IRGenModule & IGM , ClassDecl * theClass , <nl> - const LayoutClass & layout , <nl> const StructLayout & fieldLayout , <nl> unsigned firstField ) <nl> : IGM ( IGM ) , TheEntity ( theClass ) , TheExtension ( nullptr ) , <nl> - Layout ( & layout ) , FieldLayout ( & fieldLayout ) , <nl> + FieldLayout ( & fieldLayout ) , <nl> Generic ( theClass - > isGenericContext ( ) ) , <nl> FirstFieldIndex ( firstField ) , <nl> NextFieldIndex ( firstField ) <nl> namespace { <nl> ClassDataBuilder ( IRGenModule & IGM , ClassDecl * theClass , <nl> ExtensionDecl * theExtension ) <nl> : IGM ( IGM ) , TheEntity ( theClass ) , TheExtension ( theExtension ) , <nl> - Layout ( nullptr ) , FieldLayout ( nullptr ) , <nl> + FieldLayout ( nullptr ) , <nl> Generic ( theClass - > isGenericContext ( ) ) <nl> { <nl> buildCategoryName ( CategoryName ) ; <nl> namespace { <nl> } <nl> <nl> void buildMetaclassStub ( ) { <nl> - assert ( Layout & & " can ' t build a metaclass from a category " ) ; <nl> + assert ( FieldLayout & & " can ' t build a metaclass from a category " ) ; <nl> / / The isa is the metaclass pointer for the root class . <nl> - auto rootClass = Layout - > getRootClassForMetaclass ( ) ; <nl> + auto rootClass = getRootClassForMetaclass ( IGM , TheEntity . get < ClassDecl * > ( ) ) ; <nl> auto rootPtr = IGM . getAddrOfMetaclassObject ( rootClass , NotForDefinition ) ; <nl> <nl> / / The superclass of the metaclass is the metaclass of the <nl> namespace { <nl> } <nl> <nl> llvm : : Constant * emitRODataFields ( ForMetaClass_t forMeta ) { <nl> - assert ( Layout & & FieldLayout & & " can ' t emit rodata for a category " ) ; <nl> + assert ( FieldLayout & & " can ' t emit rodata for a category " ) ; <nl> SmallVector < llvm : : Constant * , 11 > fields ; <nl> / / struct _class_ro_t { <nl> / / uint32_t flags ; <nl> namespace { <nl> / / / affect flags . <nl> void visitStoredVar ( VarDecl * var ) { <nl> / / FIXME : how to handle ivar extensions in categories ? <nl> - if ( ! Layout & & ! FieldLayout ) <nl> + if ( ! FieldLayout ) <nl> return ; <nl> <nl> / / For now , we never try to emit specialized versions of the <nl> namespace { <nl> / / / uint32_t size ; <nl> / / / } ; <nl> llvm : : Constant * buildIvar ( VarDecl * ivar , SILType loweredType ) { <nl> - assert ( Layout & & FieldLayout & & " can ' t build ivar for category " ) ; <nl> + assert ( FieldLayout & & " can ' t build ivar for category " ) ; <nl> / / FIXME : this is not always the right thing to do ! <nl> auto & elt = FieldLayout - > getElement ( NextFieldIndex + + ) ; <nl> auto & ivarTI = IGM . getTypeInfo ( loweredType ) ; <nl> llvm : : Constant * irgen : : emitClassPrivateData ( IRGenModule & IGM , <nl> SILType selfType = getSelfType ( cls ) ; <nl> auto & classTI = IGM . getTypeInfo ( selfType ) . as < ClassTypeInfo > ( ) ; <nl> auto & fieldLayout = classTI . getLayout ( IGM ) ; <nl> - LayoutClass layout ( IGM , ResilienceScope : : Universal , cls , selfType ) ; <nl> - ClassDataBuilder builder ( IGM , cls , layout , fieldLayout , <nl> + ClassDataBuilder builder ( IGM , cls , fieldLayout , <nl> classTI . getInheritedStoredProperties ( IGM ) . size ( ) ) ; <nl> <nl> / / First , build the metaclass object . <nl> irgen : : emitClassPrivateDataFields ( IRGenModule & IGM , ClassDecl * cls ) { <nl> SILType selfType = getSelfType ( cls ) ; <nl> auto & classTI = IGM . getTypeInfo ( selfType ) . as < ClassTypeInfo > ( ) ; <nl> auto & fieldLayout = classTI . getLayout ( IGM ) ; <nl> - LayoutClass layout ( IGM , ResilienceScope : : Universal , cls , selfType ) ; <nl> - ClassDataBuilder builder ( IGM , cls , layout , fieldLayout , <nl> + ClassDataBuilder builder ( IGM , cls , fieldLayout , <nl> classTI . getInheritedStoredProperties ( IGM ) . size ( ) ) ; <nl> <nl> auto classFields = builder . emitRODataFields ( ForClass ) ; <nl> IRGenModule : : getObjCRuntimeBaseForSwiftRootClass ( ClassDecl * theClass ) { <nl> } <nl> <nl> ClassDecl * irgen : : getRootClassForMetaclass ( IRGenModule & IGM , ClassDecl * C ) { <nl> - LayoutClass layout ( IGM , ResilienceScope : : Component , C , getSelfType ( C ) ) ; <nl> - <nl> - return layout . getRootClassForMetaclass ( ) ; <nl> + while ( auto superclass = C - > getSuperclass ( ) ) <nl> + C = superclass - > getClassOrBoundGenericClass ( ) ; <nl> + <nl> + / / If the formal root class is imported from Objective - C , then <nl> + / / we should use that . For a class that ' s really implemented in <nl> + / / Objective - C , this is obviously right . For a class that ' s <nl> + / / really implemented in Swift , but that we ' re importing via an <nl> + / / Objective - C interface , this would be wrong mmm except such a <nl> + / / class can never be a formal root class , because a Swift class <nl> + / / without a formal superclass will actually be parented by <nl> + / / SwiftObject ( or maybe eventually something else like it ) , <nl> + / / which will be visible in the Objective - C type system . <nl> + if ( C - > hasClangNode ( ) ) return C ; <nl> + <nl> + / / FIXME : If the root class specifies its own runtime ObjC base class , <nl> + / / assume that that base class ultimately inherits NSObject . <nl> + if ( C - > getAttrs ( ) . hasAttribute < SwiftNativeObjCRuntimeBaseAttr > ( ) ) <nl> + return IGM . getObjCRuntimeBaseClass ( IGM . Context . Id_NSObject ) ; <nl> + <nl> + return IGM . getObjCRuntimeBaseClass ( IGM . Context . Id_SwiftObject ) ; <nl> } <nl> mmm a / lib / IRGen / GenClass . h <nl> ppp b / lib / IRGen / GenClass . h <nl> <nl> - / / = = = mmm GenStruct . h - Swift IR generation for classes mmmmmmmmmmmm * - C + + - * - = = = / / <nl> + / / = = = mmm GenClass . h - Swift IR generation for classes mmmmmmmmm - - * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / IRGen / GenEnum . cpp <nl> ppp b / lib / IRGen / GenEnum . cpp <nl> llvm : : Constant * EnumImplStrategy : : emitCaseNames ( ) const { <nl> return IGM . getAddrOfGlobalString ( fieldNames ) ; <nl> } <nl> <nl> + unsigned EnumImplStrategy : : getPayloadSizeForMetadata ( ) const { <nl> + llvm_unreachable ( " don ' t need payload size for this enum kind " ) ; <nl> + } <nl> + <nl> llvm : : Value * irgen : : EnumImplStrategy : : <nl> loadRefcountedPtr ( IRGenFunction & IGF , SourceLoc loc , Address addr ) const { <nl> IGF . IGM . error ( loc , " Can only load from an address of an optional " <nl> namespace { <nl> / / The number of tag values used for no - payload cases . <nl> unsigned NumEmptyElementTags = ~ 0u ; <nl> <nl> + / / The payload size in bytes . This might need to be written to metadata <nl> + / / if it depends on resilient types . <nl> + unsigned PayloadSize ; <nl> + <nl> / / / More efficient value semantics implementations for certain enum layouts . <nl> enum CopyDestroyStrategy { <nl> / / / No special behavior . <nl> namespace { <nl> / / the payload area size from all of the cases , so cache it in the <nl> / / metadata . For fixed - layout cases this isn ' t necessary ( except for <nl> / / reflection , but it ' s OK if reflection is a little slow ) . <nl> - return TIK < Fixed ; <nl> + / / <nl> + / / Note that even if from within our module the enum has a fixed layout , <nl> + / / we might need the payload size if from another module the enum has <nl> + / / a dynamic size , which can happen if the enum contains a resilient <nl> + / / payload . <nl> + return ! AlwaysFixedSize ; <nl> + } <nl> + <nl> + unsigned getPayloadSizeForMetadata ( ) const override { <nl> + assert ( TIK > = Fixed ) ; <nl> + return PayloadSize ; <nl> } <nl> <nl> TypeInfo * completeEnumTypeLayout ( TypeConverter & TC , <nl> EnumImplStrategy * EnumImplStrategy : : get ( TypeConverter & TC , <nl> std : : vector < Element > elementsWithPayload ; <nl> std : : vector < Element > elementsWithNoPayload ; <nl> <nl> + / / The most general resilience scope that can have knowledge of this <nl> + / / enum ' s layout . If all payload types have a fixed size in this <nl> + / / resilience scope , we can make further assumptions to optimize <nl> + / / layout . <nl> + ResilienceScope scope = ResilienceScope : : Universal ; <nl> + <nl> + / / TODO : Replace this with ' public or internal with @ availability ' check <nl> + / / once that is in place <nl> + if ( theEnum - > getFormalAccess ( ) ! = Accessibility : : Public | | <nl> + TC . IGM . isResilient ( theEnum , ResilienceScope : : Universal ) ) <nl> + scope = ResilienceScope : : Component ; <nl> + <nl> for ( auto elt : theEnum - > getAllElements ( ) ) { <nl> numElements + + ; <nl> <nl> EnumImplStrategy * EnumImplStrategy : : get ( TypeConverter & TC , <nl> / / If the unsubstituted argument contains a generic parameter type , or if <nl> / / the substituted argument is not universally fixed - size , we need to <nl> / / constrain our layout optimizations to what the runtime can reproduce . <nl> - if ( ! origArgTI - > isFixedSize ( ResilienceScope : : Universal ) ) <nl> + if ( ! origArgTI - > isFixedSize ( scope ) ) <nl> alwaysFixedSize = IsNotFixedSize ; <nl> <nl> auto loadableOrigArgTI = dyn_cast < LoadableTypeInfo > ( origArgTI ) ; <nl> EnumImplStrategy * EnumImplStrategy : : get ( TypeConverter & TC , <nl> / / If the substituted argument contains a type that is not universally <nl> / / fixed - size , we need to constrain our layout optimizations to what <nl> / / the runtime can reproduce . <nl> - if ( ! substArgTI - > isFixedSize ( ResilienceScope : : Universal ) ) <nl> + if ( ! substArgTI - > isFixedSize ( scope ) ) <nl> alwaysFixedSize = IsNotFixedSize ; <nl> } <nl> } <nl> MultiPayloadEnumImplStrategy : : completeFixedLayout ( TypeConverter & TC , <nl> Alignment worstAlignment ( 1 ) ; <nl> IsPOD_t isPOD = IsPOD ; <nl> IsBitwiseTakable_t isBT = IsBitwiseTakable ; <nl> + PayloadSize = 0 ; <nl> for ( auto & elt : ElementsWithPayload ) { <nl> auto & fixedPayloadTI = cast < FixedTypeInfo > ( * elt . ti ) ; <nl> if ( fixedPayloadTI . getFixedAlignment ( ) > worstAlignment ) <nl> MultiPayloadEnumImplStrategy : : completeFixedLayout ( TypeConverter & TC , <nl> if ( ! fixedPayloadTI . isBitwiseTakable ( ResilienceScope : : Component ) ) <nl> isBT = IsNotBitwiseTakable ; <nl> <nl> + unsigned payloadBytes = fixedPayloadTI . getFixedSize ( ) . getValue ( ) ; <nl> unsigned payloadBits = fixedPayloadTI . getFixedSize ( ) . getValueInBits ( ) ; <nl> - <nl> + <nl> + if ( payloadBytes > PayloadSize ) <nl> + PayloadSize = payloadBytes ; <nl> + <nl> / / See what spare bits from the payload we can use for layout optimization . <nl> <nl> / / The runtime currently does not track spare bits , so we can ' t use them <nl> mmm a / lib / IRGen / GenEnum . h <nl> ppp b / lib / IRGen / GenEnum . h <nl> class EnumImplStrategy { <nl> unsigned offset ) const = 0 ; <nl> <nl> virtual bool needsPayloadSizeInMetadata ( ) const = 0 ; <nl> + virtual unsigned getPayloadSizeForMetadata ( ) const ; <nl> <nl> virtual llvm : : Value * loadRefcountedPtr ( IRGenFunction & IGF , SourceLoc loc , <nl> Address addr ) const ; <nl> mmm a / lib / IRGen / GenMeta . cpp <nl> ppp b / lib / IRGen / GenMeta . cpp <nl> class EnumMetadataBuilder <nl> } <nl> <nl> void addPayloadSize ( ) { <nl> - llvm_unreachable ( " nongeneric enums shouldn ' t need payload size in metadata " ) ; <nl> + auto enumTy = Target - > getDeclaredTypeInContext ( ) - > getCanonicalType ( ) ; <nl> + auto & enumTI = IGM . getTypeInfoForLowered ( enumTy ) ; <nl> + <nl> + assert ( enumTI . isFixedSize ( ResilienceScope : : Component ) & & <nl> + " emitting constant enum metadata for resilient - sized type ? " ) ; <nl> + assert ( ! enumTI . isFixedSize ( ResilienceScope : : Universal ) & & <nl> + " non - generic , non - resilient enums don ' t need payload size in metadata " ) ; <nl> + <nl> + auto & strategy = getEnumImplStrategy ( IGM , enumTy ) ; <nl> + addConstantWord ( strategy . getPayloadSizeForMetadata ( ) ) ; <nl> } <nl> } ; <nl> <nl> class GenericEnumMetadataBuilder <nl> void addPayloadSize ( ) { <nl> / / In all cases where a payload size is demanded in the metadata , it ' s <nl> / / runtime - dependent , so fill in a zero here . <nl> + auto enumTy = Target - > getDeclaredTypeInContext ( ) - > getCanonicalType ( ) ; <nl> + auto & enumTI = IGM . getTypeInfoForLowered ( enumTy ) ; <nl> + assert ( ! enumTI . isFixedSize ( ResilienceScope : : Universal ) & & <nl> + " non - generic , non - resilient enums don ' t need payload size in metadata " ) ; <nl> addConstantWord ( 0 ) ; <nl> } <nl> <nl> class GenericEnumMetadataBuilder <nl> llvm : : Value * vwtable ) { <nl> / / Nominal types are always preserved through SIL lowering . <nl> auto enumTy = Target - > getDeclaredTypeInContext ( ) - > getCanonicalType ( ) ; <nl> - IGM . getTypeInfoForLowered ( CanType ( Target - > getDeclaredTypeInContext ( ) ) ) <nl> + IGM . getTypeInfoForLowered ( enumTy ) <nl> . initializeMetadata ( IGF , metadata , vwtable , <nl> SILType : : getPrimitiveAddressType ( enumTy ) ) ; <nl> } <nl> mmm a / lib / IRGen / GenType . cpp <nl> ppp b / lib / IRGen / GenType . cpp <nl> <nl> - / / = = = mmm GenTypes . cpp - Swift IR Generation For Types mmmmmmmmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm GenType . cpp - Swift IR Generation For Types mmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / IRGen / IRGenDebugInfo . cpp <nl> ppp b / lib / IRGen / IRGenDebugInfo . cpp <nl> <nl> - / / = = = mmm IRGenDebugInfo . h - Debug Info Supportmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm IRGenDebugInfo . cpp - Debug Info Supportmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / IRGen / IRGenModule . cpp <nl> ppp b / lib / IRGen / IRGenModule . cpp <nl> void IRGenModule : : addLinkLibrary ( const LinkLibrary & linkLib ) { <nl> } <nl> } <nl> <nl> - / / FIXME : This should just be the implementation of <nl> - / / llvm : : array_pod_sort_comparator . The only difference is that it uses <nl> - / / std : : less instead of operator < . <nl> - template < typename T > <nl> - static int pointerPODSortComparator ( T * const * lhs , T * const * rhs ) { <nl> - std : : less < T * > lt ; <nl> - if ( lt ( * lhs , * rhs ) ) <nl> - return - 1 ; <nl> - if ( lt ( * rhs , * lhs ) ) <nl> - return - 1 ; <nl> - return 0 ; <nl> - } <nl> - <nl> static bool replaceModuleFlagsEntry ( llvm : : LLVMContext & Ctx , <nl> llvm : : Module & Module , StringRef EntryName , <nl> llvm : : Module : : ModFlagBehavior Behavior , <nl> mmm a / lib / IRGen / IRGenSIL . cpp <nl> ppp b / lib / IRGen / IRGenSIL . cpp <nl> static void emitEntryPointArgumentsCOrObjC ( IRGenSILFunction & IGF , <nl> / / all the value parameters . <nl> if ( hasPolymorphicParameters ( funcTy ) ) { <nl> emitPolymorphicParameters ( IGF , * IGF . CurSILFn , params , <nl> - NULL , <nl> + nullptr , <nl> [ & ] ( unsigned paramIndex ) - > llvm : : Value * { <nl> SILValue parameter = entry - > getBBArgs ( ) [ paramIndex ] ; <nl> return IGF . getLoweredSingletonExplosion ( parameter ) ; <nl> mmm a / lib / LLVMPasses / LLVMARCOpts . cpp <nl> ppp b / lib / LLVMPasses / LLVMARCOpts . cpp <nl> <nl> - / / = = = mmm Passes . cpp - LLVM Reference Counting Optimizations mmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm LLVMARCOpts . cpp - LLVM Reference Counting Optimizations mmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Markup / LineList . cpp <nl> ppp b / lib / Markup / LineList . cpp <nl> <nl> - / / = = = mmm LineList . h - Data structures for Markup parsing mmmmmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm LineList . cpp - Data structures for Markup parsing mmmmmmmmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Markup / Markup . cpp <nl> ppp b / lib / Markup / Markup . cpp <nl> <nl> - / / = = = mmm Markup . h - Markup mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm Markup . cpp - Markup mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Parse / ParseSIL . cpp <nl> ppp b / lib / Parse / ParseSIL . cpp <nl> bool SILParser : : parseSILInstruction ( SILBasicBlock * BB ) { <nl> <nl> if ( intTy ) { <nl> / / If it is a switch on an integer type , check that all case values <nl> - / / are integer literals . <nl> - auto * IL = dyn_cast < IntegerLiteralInst > ( CaseVal ) ; <nl> - if ( ! IL ) { <nl> - P . diagnose ( P . Tok , diag : : sil_integer_literal_not_integer_type ) ; <nl> - return true ; <nl> - } <nl> - APInt CaseValue = IL - > getValue ( ) ; <nl> + / / are integer literals or undef . <nl> + if ( ! isa < SILUndef > ( CaseVal ) ) { <nl> + auto * IL = dyn_cast < IntegerLiteralInst > ( CaseVal ) ; <nl> + if ( ! IL ) { <nl> + P . diagnose ( P . Tok , diag : : sil_integer_literal_not_integer_type ) ; <nl> + return true ; <nl> + } <nl> + APInt CaseValue = IL - > getValue ( ) ; <nl> <nl> - if ( CaseValue . getBitWidth ( ) ! = intTy - > getGreatestWidth ( ) ) <nl> - CaseVal = B . createIntegerLiteral ( <nl> - IL - > getLoc ( ) , Val . getType ( ) , <nl> - CaseValue . zextOrTrunc ( intTy - > getGreatestWidth ( ) ) ) ; <nl> + if ( CaseValue . getBitWidth ( ) ! = intTy - > getGreatestWidth ( ) ) <nl> + CaseVal = B . createIntegerLiteral ( <nl> + IL - > getLoc ( ) , Val . getType ( ) , <nl> + CaseValue . zextOrTrunc ( intTy - > getGreatestWidth ( ) ) ) ; <nl> + } <nl> } <nl> <nl> if ( functionTy ) { <nl> / / If it is a switch on a function type , check that all case values <nl> - / / are function references . <nl> - auto * FR = dyn_cast < FunctionRefInst > ( CaseVal ) ; <nl> - if ( ! FR ) { <nl> - if ( auto * CF = dyn_cast < ConvertFunctionInst > ( CaseVal ) ) { <nl> - FR = dyn_cast < FunctionRefInst > ( CF - > getOperand ( ) ) ; <nl> + / / are function references or undef . <nl> + if ( ! isa < SILUndef > ( CaseVal ) ) { <nl> + auto * FR = dyn_cast < FunctionRefInst > ( CaseVal ) ; <nl> + if ( ! FR ) { <nl> + if ( auto * CF = dyn_cast < ConvertFunctionInst > ( CaseVal ) ) { <nl> + FR = dyn_cast < FunctionRefInst > ( CF - > getOperand ( ) ) ; <nl> + } <nl> + } <nl> + if ( ! FR ) { <nl> + P . diagnose ( P . Tok , diag : : sil_integer_literal_not_integer_type ) ; <nl> + return true ; <nl> } <nl> - } <nl> - if ( ! FR ) { <nl> - P . diagnose ( P . Tok , diag : : sil_integer_literal_not_integer_type ) ; <nl> - return true ; <nl> } <nl> } <nl> <nl> mmm a / lib / SIL / Linker . cpp <nl> ppp b / lib / SIL / Linker . cpp <nl> bool SILLinkerVisitor : : process ( ) { <nl> if ( ! shouldImportFunction ( F ) ) <nl> continue ; <nl> <nl> - / / The ExternalSource may wish to rewrite non - empty bodies . <nl> - if ( ! F - > isExternalDeclaration ( ) & & ExternalSource ) { <nl> - if ( auto * NewFn = ExternalSource - > lookupSILFunction ( F ) ) { <nl> - if ( NewFn - > isExternalDeclaration ( ) ) <nl> - continue ; <nl> - <nl> - NewFn - > verify ( ) ; <nl> - Worklist . push_back ( NewFn ) ; <nl> - <nl> - + + NumFuncLinked ; <nl> - Result = true ; <nl> - continue ; <nl> - } <nl> - } <nl> - <nl> DEBUG ( llvm : : dbgs ( ) < < " Imported function : " <nl> < < F - > getName ( ) < < " \ n " ) ; <nl> F - > setBare ( IsBare ) ; <nl> mmm a / lib / SIL / Linker . h <nl> ppp b / lib / SIL / Linker . h <nl> <nl> # define SWIFT_SIL_LINKER_H <nl> <nl> # include " swift / SIL / SILDebugScope . h " <nl> - # include " swift / SIL / SILExternalSource . h " <nl> # include " swift / SIL / SILVisitor . h " <nl> # include " swift / SIL / SILModule . h " <nl> # include " swift / Serialization / SerializedSILLoader . h " <nl> class SILLinkerVisitor : public SILInstructionVisitor < SILLinkerVisitor , bool > { <nl> / / / The SILLoader that this visitor is using to link . <nl> SerializedSILLoader * Loader ; <nl> <nl> - / / / The external SIL source to use when linking this module . <nl> - SILExternalSource * ExternalSource = nullptr ; <nl> - <nl> / / / Worklist of SILFunctions we are processing . <nl> llvm : : SmallVector < SILFunction * , 128 > Worklist ; <nl> <nl> class SILLinkerVisitor : public SILInstructionVisitor < SILLinkerVisitor , bool > { <nl> <nl> public : <nl> SILLinkerVisitor ( SILModule & M , SerializedSILLoader * L , <nl> - SILModule : : LinkingMode LinkingMode , <nl> - SILExternalSource * E = nullptr ) <nl> - : Mod ( M ) , Loader ( L ) , ExternalSource ( E ) , Worklist ( ) , <nl> - FunctionDeserializationWorklist ( ) , Mode ( LinkingMode ) { } <nl> + SILModule : : LinkingMode LinkingMode ) <nl> + : Mod ( M ) , Loader ( L ) , Worklist ( ) , FunctionDeserializationWorklist ( ) , <nl> + Mode ( LinkingMode ) { } <nl> <nl> / / / Process F , recursively deserializing any thing F may reference . <nl> bool processFunction ( SILFunction * F ) ; <nl> mmm a / lib / SIL / Projection . cpp <nl> ppp b / lib / SIL / Projection . cpp <nl> ProjectionPath : : expandTypeIntoNodeProjectionPaths ( SILType B , SILModule * Mod , <nl> continue ; <nl> } <nl> <nl> - / / Keep the intermediate nodes as well . <nl> - Paths . push_back ( std : : move ( PP . getValue ( ) ) ) ; <nl> + / / Keep the intermediate nodes as well . <nl> + / / <nl> + / / std : : move clears the passed ProjectionPath . Give it a temporarily <nl> + / / created ProjectionPath for now . <nl> + / / <nl> + / / TODO : this can be simplified once we reduce the size of the projection <nl> + / / path and make them copyable . <nl> + ProjectionPath T ; <nl> + T . append ( PP . getValue ( ) ) ; <nl> + Paths . push_back ( std : : move ( T ) ) ; <nl> <nl> / / Keep expanding the location . <nl> for ( auto & P : Projections ) { <nl> mmm a / lib / SIL / SILInstructions . cpp <nl> ppp b / lib / SIL / SILInstructions . cpp <nl> <nl> - / / = = = mmm SILInstruction . cpp - Instructions for SIL code mmmmmmmmmmmmmmmmmm - = = = / / <nl> + / / = = = mmm SILInstructions . cpp - Instructions for SIL code mmmmmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> SwitchValueInst : : SwitchValueInst ( SILDebugLocation * Loc , SILValue Operand , <nl> } <nl> <nl> for ( unsigned i = 0 , size = Cases . size ( ) ; i < size ; + + i ) { <nl> + / / If we have undef , just add the case and continue . <nl> + if ( isa < SILUndef > ( Cases [ i ] ) ) { <nl> + : : new ( succs + i ) SILSuccessor ( this , BBs [ i ] ) ; <nl> + continue ; <nl> + } <nl> + <nl> if ( OperandBitWidth ) { <nl> auto * IL = dyn_cast < IntegerLiteralInst > ( Cases [ i ] ) ; <nl> assert ( IL & & " switch_value case value should be of an integer type " ) ; <nl> mmm a / lib / SIL / SILModule . cpp <nl> ppp b / lib / SIL / SILModule . cpp <nl> <nl> # include " swift / SIL / SILModule . h " <nl> # include " Linker . h " <nl> # include " swift / SIL / SILDebugScope . h " <nl> - # include " swift / SIL / SILExternalSource . h " <nl> # include " swift / SIL / SILVisitor . h " <nl> # include " swift / Serialization / SerializedSILLoader . h " <nl> # include " swift / SIL / SILValue . h " <nl> namespace swift { <nl> } ; <nl> } / / end namespace swift . <nl> <nl> - void SILExternalSource : : anchor ( ) { <nl> - } <nl> - <nl> / / / SILTypeListUniquingType - This is the type of the folding set maintained by <nl> / / / SILModule that these things are uniqued into . <nl> typedef llvm : : FoldingSet < SILTypeList > SILTypeListUniquingType ; <nl> SILFunction * SILModule : : lookUpFunction ( SILDeclRef fnRef ) { <nl> } <nl> <nl> bool SILModule : : linkFunction ( SILFunction * Fun , SILModule : : LinkingMode Mode ) { <nl> - return SILLinkerVisitor ( * this , getSILLoader ( ) , Mode , ExternalSource ) <nl> - . processFunction ( Fun ) ; <nl> + return SILLinkerVisitor ( * this , getSILLoader ( ) , Mode ) . processFunction ( Fun ) ; <nl> } <nl> <nl> bool SILModule : : linkFunction ( SILDeclRef Decl , SILModule : : LinkingMode Mode ) { <nl> - return SILLinkerVisitor ( * this , getSILLoader ( ) , Mode , ExternalSource ) <nl> - . processDeclRef ( Decl ) ; <nl> + return SILLinkerVisitor ( * this , getSILLoader ( ) , Mode ) . processDeclRef ( Decl ) ; <nl> } <nl> <nl> bool SILModule : : linkFunction ( StringRef Name , SILModule : : LinkingMode Mode ) { <nl> - return SILLinkerVisitor ( * this , getSILLoader ( ) , Mode , ExternalSource ) <nl> - . processFunction ( Name ) ; <nl> + return SILLinkerVisitor ( * this , getSILLoader ( ) , Mode ) . processFunction ( Name ) ; <nl> } <nl> <nl> void SILModule : : linkAllWitnessTables ( ) { <nl> SILVTable * SILModule : : lookUpVTable ( const ClassDecl * C ) { <nl> <nl> / / If that fails , try to deserialize it . If that fails , return nullptr . <nl> SILVTable * Vtbl = <nl> - SILLinkerVisitor ( * this , getSILLoader ( ) , SILModule : : LinkingMode : : LinkAll , <nl> - ExternalSource ) <nl> + SILLinkerVisitor ( * this , getSILLoader ( ) , SILModule : : LinkingMode : : LinkAll ) <nl> . processClassDecl ( C ) ; <nl> if ( ! Vtbl ) <nl> return nullptr ; <nl> mmm a / lib / SIL / SILPrinter . cpp <nl> ppp b / lib / SIL / SILPrinter . cpp <nl> class SILPrinter : public SILVisitor < SILPrinter > { <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> / / SILInstruction Printing Logic <nl> <nl> + / / / Print out the users of the SILValue \ p V . Return true if we printed out <nl> + / / / either an id or a use list . Return false otherwise . <nl> + bool printUsersOfSILValue ( SILValue V ) { <nl> + if ( ! V - > hasValue ( ) ) { <nl> + PrintState . OS . PadToColumn ( 50 ) ; <nl> + * this < < " / / id : " < < getID ( V ) ; <nl> + return true ; <nl> + } <nl> + <nl> + if ( V - > use_empty ( ) ) <nl> + return false ; <nl> + <nl> + PrintState . OS . PadToColumn ( 50 ) ; <nl> + * this < < " / / user " ; <nl> + if ( std : : next ( V - > use_begin ( ) ) ! = V - > use_end ( ) ) <nl> + * this < < ' s ' ; <nl> + * this < < " : " ; <nl> + <nl> + / / Display the user ids sorted to give a stable use order in the printer ' s <nl> + / / output . This makes diffing large sections of SIL significantly easier . <nl> + llvm : : SmallVector < ID , 32 > UserIDs ; <nl> + for ( auto * Op : V - > getUses ( ) ) <nl> + UserIDs . push_back ( getID ( Op - > getUser ( ) ) ) ; <nl> + std : : sort ( UserIDs . begin ( ) , UserIDs . end ( ) ) ; <nl> + <nl> + interleave ( UserIDs . begin ( ) , UserIDs . end ( ) , [ & ] ( ID id ) { * this < < id ; } , <nl> + [ & ] { * this < < " , " ; } ) ; <nl> + return true ; <nl> + } <nl> + <nl> + void printSILLocation ( SILLocation L , SILModule & M , const SILDebugScope * DS , <nl> + bool printedSlashes ) { <nl> + if ( ! L . isNull ( ) ) { <nl> + if ( ! printedSlashes ) { <nl> + PrintState . OS . PadToColumn ( 50 ) ; <nl> + * this < < " / / " ; <nl> + } <nl> + * this < < " " ; <nl> + <nl> + / / To minimize output , only print the line and column number for <nl> + / / everything but the first instruction . <nl> + L . getSourceLoc ( ) . printLineAndColumn ( PrintState . OS , <nl> + M . getASTContext ( ) . SourceMgr ) ; <nl> + <nl> + / / Print the type of location . <nl> + switch ( L . getKind ( ) ) { <nl> + case SILLocation : : NoneKind : <nl> + assert ( L . isAutoGenerated ( ) & & " This kind shouldn ' t be printed . " ) ; <nl> + break ; <nl> + case SILLocation : : RegularKind : <nl> + break ; <nl> + case SILLocation : : ReturnKind : <nl> + * this < < " : return " ; <nl> + break ; <nl> + case SILLocation : : ImplicitReturnKind : <nl> + * this < < " : imp_return " ; <nl> + break ; <nl> + case SILLocation : : InlinedKind : <nl> + * this < < " : inlined " ; <nl> + break ; <nl> + case SILLocation : : MandatoryInlinedKind : <nl> + * this < < " : minlined " ; <nl> + break ; <nl> + case SILLocation : : CleanupKind : <nl> + * this < < " : cleanup " ; <nl> + break ; <nl> + case SILLocation : : ArtificialUnreachableKind : <nl> + * this < < " : art_unreach " ; <nl> + break ; <nl> + case SILLocation : : SILFileKind : <nl> + * this < < " : sil " ; <nl> + break ; <nl> + } <nl> + if ( L . isAutoGenerated ( ) ) <nl> + * this < < " : auto_gen " ; <nl> + if ( L . isInPrologue ( ) ) <nl> + * this < < " : in_prologue " ; <nl> + } <nl> + if ( L . isNull ( ) ) { <nl> + if ( ! printedSlashes ) { <nl> + PrintState . OS . PadToColumn ( 50 ) ; <nl> + * this < < " / / " ; <nl> + } <nl> + if ( L . isInTopLevel ( ) ) <nl> + * this < < " top_level " ; <nl> + else if ( L . isAutoGenerated ( ) ) <nl> + * this < < " auto_gen " ; <nl> + else <nl> + * this < < " no_loc " ; <nl> + if ( L . isInPrologue ( ) ) <nl> + * this < < " : in_prologue " ; <nl> + } <nl> + <nl> + / / Print inlined - at location , if any . <nl> + if ( DS ) { <nl> + while ( DS - > InlinedCallSite ) { <nl> + * this < < " : perf_inlined_at " ; <nl> + auto CallSite = DS - > InlinedCallSite - > Loc ; <nl> + if ( ! CallSite . isNull ( ) ) <nl> + CallSite . getSourceLoc ( ) . print ( <nl> + PrintState . OS , M . getASTContext ( ) . SourceMgr , LastBufferID ) ; <nl> + else <nl> + * this < < " ? " ; <nl> + DS = DS - > InlinedCallSite ; <nl> + } <nl> + } <nl> + } <nl> + <nl> void print ( SILValue V ) { <nl> if ( auto * FRI = dyn_cast < FunctionRefInst > ( V ) ) <nl> * this < < " / / function_ref " <nl> - < < demangleSymbolAsString ( FRI - > getReferencedFunction ( ) - > getName ( ) ) <nl> - < < " \ n " ; <nl> + < < demangleSymbolAsString ( FRI - > getReferencedFunction ( ) - > getName ( ) ) <nl> + < < " \ n " ; <nl> <nl> * this < < " " ; <nl> <nl> / / Print result . <nl> if ( V - > hasValue ( ) ) { <nl> ID Name = getID ( V ) ; <nl> - Name . ResultNumber = - 1 ; / / Don ' t print subresult number . <nl> + Name . ResultNumber = - 1 ; / / Don ' t print subresult number . <nl> * this < < Name < < " = " ; <nl> } <nl> <nl> class SILPrinter : public SILVisitor < SILPrinter > { <nl> visit ( V ) ; <nl> <nl> / / Print users , or id for valueless instructions . <nl> - bool printedSlashes = false ; <nl> - <nl> - if ( ! V - > hasValue ( ) ) { <nl> - PrintState . OS . PadToColumn ( 50 ) ; <nl> - * this < < " / / id : " < < getID ( V ) ; <nl> - printedSlashes = true ; <nl> - } else if ( ! V - > use_empty ( ) ) { <nl> - PrintState . OS . PadToColumn ( 50 ) ; <nl> - * this < < " / / user " ; <nl> - if ( std : : next ( V - > use_begin ( ) ) ! = V - > use_end ( ) ) <nl> - * this < < ' s ' ; <nl> - * this < < " : " ; <nl> - <nl> - / / Display the user ids sorted to give a stable use order in the printer ' s <nl> - / / output . This makes diffing large sections of SIL significantly easier . <nl> - llvm : : SmallVector < ID , 32 > UserIDs ; <nl> - for ( auto * Op : V - > getUses ( ) ) <nl> - UserIDs . push_back ( getID ( Op - > getUser ( ) ) ) ; <nl> - std : : sort ( UserIDs . begin ( ) , UserIDs . end ( ) ) ; <nl> - <nl> - interleave ( UserIDs . begin ( ) , UserIDs . end ( ) , <nl> - [ & ] ( ID id ) { * this < < id ; } , <nl> - [ & ] { * this < < " , " ; } ) ; <nl> - printedSlashes = true ; <nl> - } <nl> + bool printedSlashes = printUsersOfSILValue ( V ) ; <nl> <nl> / / Print SIL location . <nl> if ( Verbose ) { <nl> - if ( SILInstruction * I = dyn_cast < SILInstruction > ( V ) ) { <nl> - SILLocation L = I - > getLoc ( ) ; <nl> - SILModule & M = I - > getModule ( ) ; <nl> - if ( ! L . isNull ( ) ) { <nl> - if ( ! printedSlashes ) { <nl> - PrintState . OS . PadToColumn ( 50 ) ; <nl> - * this < < " / / " ; <nl> - } <nl> - * this < < " " ; <nl> - <nl> - / / To minimize output , only print the line and column number for <nl> - / / everything but the first instruction . <nl> - L . getSourceLoc ( ) . printLineAndColumn ( PrintState . OS , <nl> - M . getASTContext ( ) . SourceMgr ) ; <nl> - <nl> - / / Print the type of location . <nl> - switch ( L . getKind ( ) ) { <nl> - case SILLocation : : NoneKind : <nl> - assert ( L . isAutoGenerated ( ) & & " This kind shouldn ' t be printed . " ) ; <nl> - break ; <nl> - case SILLocation : : RegularKind : <nl> - break ; <nl> - case SILLocation : : ReturnKind : <nl> - * this < < " : return " ; break ; <nl> - case SILLocation : : ImplicitReturnKind : <nl> - * this < < " : imp_return " ; break ; <nl> - case SILLocation : : InlinedKind : <nl> - * this < < " : inlined " ; break ; <nl> - case SILLocation : : MandatoryInlinedKind : <nl> - * this < < " : minlined " ; break ; <nl> - case SILLocation : : CleanupKind : <nl> - * this < < " : cleanup " ; break ; <nl> - case SILLocation : : ArtificialUnreachableKind : <nl> - * this < < " : art_unreach " ; break ; <nl> - case SILLocation : : SILFileKind : <nl> - * this < < " : sil " ; break ; <nl> - } <nl> - if ( L . isAutoGenerated ( ) ) <nl> - * this < < " : auto_gen " ; <nl> - if ( L . isInPrologue ( ) ) <nl> - * this < < " : in_prologue " ; <nl> - } <nl> - if ( L . isNull ( ) ) { <nl> - if ( ! printedSlashes ) { <nl> - PrintState . OS . PadToColumn ( 50 ) ; <nl> - * this < < " / / " ; <nl> - } <nl> - if ( L . isInTopLevel ( ) ) <nl> - * this < < " top_level " ; <nl> - else if ( L . isAutoGenerated ( ) ) <nl> - * this < < " auto_gen " ; <nl> - else <nl> - * this < < " no_loc " ; <nl> - if ( L . isInPrologue ( ) ) <nl> - * this < < " : in_prologue " ; <nl> - } <nl> - <nl> - / / Print inlined - at location , if any . <nl> - if ( auto DS = I - > getDebugScope ( ) ) <nl> - while ( DS - > InlinedCallSite ) { <nl> - * this < < " : perf_inlined_at " ; <nl> - auto CallSite = DS - > InlinedCallSite - > Loc ; <nl> - if ( ! CallSite . isNull ( ) ) <nl> - CallSite . getSourceLoc ( ) . <nl> - print ( PrintState . OS , M . getASTContext ( ) . SourceMgr , LastBufferID ) ; <nl> - else <nl> - * this < < " ? " ; <nl> - DS = DS - > InlinedCallSite ; <nl> - } <nl> + if ( auto * I = dyn_cast < SILInstruction > ( V ) ) { <nl> + printSILLocation ( I - > getLoc ( ) , I - > getModule ( ) , I - > getDebugScope ( ) , <nl> + printedSlashes ) ; <nl> } <nl> } <nl> <nl> mmm a / lib / SIL / SILWitnessTable . cpp <nl> ppp b / lib / SIL / SILWitnessTable . cpp <nl> <nl> - / / = = = mmm SILWitnessTable . h - Defines the SILWitnessTable class mmmmmmmmmmmm = = = / / <nl> + / / = = = mmm SILWitnessTable . cpp - Defines the SILWitnessTable class mmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SIL / TypeLowering . cpp <nl> ppp b / lib / SIL / TypeLowering . cpp <nl> static CanAnyFunctionType getIVarInitDestroyerInterfaceType ( ClassDecl * cd , <nl> return CanFunctionType : : get ( classType , resultType , extInfo ) ; <nl> } <nl> <nl> - GenericParamList * <nl> - TypeConverter : : getEffectiveGenericParamsForContext ( DeclContext * dc ) { <nl> - <nl> - / / FIXME : This is a clunky way of uncurrying nested type parameters from <nl> - / / a function context . <nl> - if ( auto func = dyn_cast < AbstractFunctionDecl > ( dc ) ) { <nl> - return getConstantInfo ( SILDeclRef ( func ) ) . ContextGenericParams ; <nl> - } <nl> - <nl> - if ( auto closure = dyn_cast < AbstractClosureExpr > ( dc ) ) { <nl> - return getConstantInfo ( SILDeclRef ( closure ) ) . ContextGenericParams ; <nl> - } <nl> - <nl> - return dc - > getGenericParamsOfContext ( ) ; <nl> - } <nl> - <nl> GenericParamList * <nl> TypeConverter : : getEffectiveGenericParams ( AnyFunctionRef fn , <nl> CaptureInfo captureInfo ) { <nl> TypeConverter : : getEffectiveGenericParams ( AnyFunctionRef fn , <nl> ! captureInfo . hasGenericParamCaptures ( ) ) { <nl> return nullptr ; <nl> } <nl> - <nl> - return getEffectiveGenericParamsForContext ( dc ) ; <nl> + <nl> + return dc - > getGenericParamsOfContext ( ) ; <nl> } <nl> <nl> CanGenericSignature <nl> mmm a / lib / SILGen / ManagedValue . h <nl> ppp b / lib / SILGen / ManagedValue . h <nl> <nl> - / / = = = mmm RValue . h - Exploded RValue Representation mmmmmmmmmmmm - - * - C + + - * - = = = / / <nl> + / / = = = mmm ManagedValue . h - Exploded RValue Representation mmmmmm - - * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILGen / SILGenForeignError . cpp <nl> ppp b / lib / SILGen / SILGenForeignError . cpp <nl> <nl> - / / = = = mmm SILGenError . cpp - Error - handling code emission mmmmmmmmmmmmmmmmmm - = = = / / <nl> + / / = = = mmm SILGenForeignError . cpp - Error - handling code emission mmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILGen / SILGenLValue . cpp <nl> ppp b / lib / SILGen / SILGenLValue . cpp <nl> static ArrayRef < Substitution > <nl> getNonMemberVarDeclSubstitutions ( SILGenFunction & gen , VarDecl * var ) { <nl> ArrayRef < Substitution > substitutions ; <nl> if ( auto genericParams <nl> - = gen . SGM . Types . getEffectiveGenericParamsForContext ( <nl> - var - > getDeclContext ( ) ) ) <nl> + = var - > getDeclContext ( ) - > getGenericParamsOfContext ( ) ) <nl> substitutions = <nl> genericParams - > getForwardingSubstitutions ( gen . getASTContext ( ) ) ; <nl> return substitutions ; <nl> mmm a / lib / SILOptimizer / Analysis / AliasAnalysis . cpp <nl> ppp b / lib / SILOptimizer / Analysis / AliasAnalysis . cpp <nl> static bool isIdentifiedFunctionLocal ( SILValue V ) { <nl> return isa < AllocationInst > ( * V ) | | isNoAliasArgument ( V ) | | isLocalLiteral ( V ) ; <nl> } <nl> <nl> + / / / Returns true if V is a function argument that is not an address implying <nl> + / / / that we do not have the guarantee that it will not alias anything inside the <nl> + / / / function . <nl> + static bool isAliasingFunctionArgument ( SILValue V ) { <nl> + return isFunctionArgument ( V ) & & ! V . getType ( ) . isAddress ( ) ; <nl> + } <nl> + <nl> + / / / Returns true if V is an apply inst that may read or write to memory . <nl> + static bool isReadWriteApplyInst ( SILValue V ) { <nl> + / / See if this is a normal function application . <nl> + if ( auto * AI = dyn_cast < ApplyInst > ( V ) ) { <nl> + return AI - > mayReadOrWriteMemory ( ) ; <nl> + } <nl> + <nl> + / / Next , see if this is a builtin . <nl> + if ( auto * BI = dyn_cast < BuiltinInst > ( V ) ) { <nl> + return BI - > mayReadOrWriteMemory ( ) ; <nl> + } <nl> + <nl> + / / If we fail , bail . . . <nl> + return false ; <nl> + } <nl> + <nl> + / / / Return true if the pointer is one which would have been considered an escape <nl> + / / / by isNonEscapingLocalObject . <nl> + static bool isEscapeSource ( SILValue V ) { <nl> + if ( isReadWriteApplyInst ( V ) ) <nl> + return true ; <nl> + <nl> + if ( isAliasingFunctionArgument ( V ) ) <nl> + return true ; <nl> + <nl> + / / The LoadInst case works since valueMayBeCaptured always assumes stores are <nl> + / / escapes . <nl> + if ( isa < LoadInst > ( * V ) ) <nl> + return true ; <nl> + <nl> + / / We could not prove anything , be conservative and return false . <nl> + return false ; <nl> + } <nl> + <nl> / / / Returns true if we can prove that the two input SILValues which do not equal <nl> / / / can not alias . <nl> static bool aliasUnequalObjects ( SILValue O1 , SILValue O2 ) { <nl> static bool aliasUnequalObjects ( SILValue O1 , SILValue O2 ) { <nl> return true ; <nl> } <nl> <nl> + / / If one pointer is the result of an apply or load and the other is a <nl> + / / non - escaping local object within the same function , then we know the object <nl> + / / couldn ' t escape to a point where the call could return it . <nl> + if ( ( isEscapeSource ( O1 ) & & isNonEscapingLocalObject ( O2 ) ) | | <nl> + ( isEscapeSource ( O2 ) & & isNonEscapingLocalObject ( O1 ) ) ) { <nl> + DEBUG ( llvm : : dbgs ( ) < < " Found unequal escape source and non " <nl> + " escaping local object ! \ n " ) ; <nl> + return true ; <nl> + } <nl> + <nl> / / We failed to prove that the two objects are different . <nl> return false ; <nl> } <nl> AliasResult AliasAnalysis : : aliasInner ( SILValue V1 , SILValue V2 , <nl> if ( O1 ! = O2 & & aliasUnequalObjects ( O1 , O2 ) ) <nl> return AliasResult : : NoAlias ; <nl> <nl> - / / Ask escape analysis . This catches cases where we compare e . g . a <nl> - / / non - escaping pointer with another pointer . <nl> - if ( ! EA - > canPointToSameMemory ( V1 , V2 ) ) { <nl> - DEBUG ( llvm : : dbgs ( ) < < " Found not - aliased objects based on " <nl> - " escape analysis \ n " ) ; <nl> - return AliasResult : : NoAlias ; <nl> - } <nl> - <nl> / / Ok , either O1 , O2 are the same or we could not prove anything based off of <nl> / / their inequality . Now we climb up use - def chains and attempt to do tricks <nl> / / based off of GEPs . <nl> mmm a / lib / SILOptimizer / Analysis / ColdBlockInfo . cpp <nl> ppp b / lib / SILOptimizer / Analysis / ColdBlockInfo . cpp <nl> <nl> - / / = = = mmm - - ColdBlocks . cpp - Fast / slow path analysis for the SIL CFG mmmmmm - = = = / / <nl> + / / = = = mmm - - ColdBlockInfo . cpp - Fast / slow path analysis for the SIL CFG mmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / Analysis / ValueTracking . cpp <nl> ppp b / lib / SILOptimizer / Analysis / ValueTracking . cpp <nl> <nl> - / / = = = - - ValueTracking . h - SIL Value Tracking Analysis mmmmmmmmm - * - C + + - * - - = = = / / <nl> + / / = = = - - ValueTracking . cpp - SIL Value Tracking Analysis mmmmmm - - * - C + + - * - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / IPO / ExternalDefsToDecls . cpp <nl> ppp b / lib / SILOptimizer / IPO / ExternalDefsToDecls . cpp <nl> <nl> - / / = = = mmm ExternalDefinitionsToDeclarations . cpp - external defs to decls mmm = = = / / <nl> + / / = = = mmm ExternalDefsToDecls . cpp - external defs to decls mmmmmmmmmmmmmmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / IPO / LetPropertiesOpts . cpp <nl> ppp b / lib / SILOptimizer / IPO / LetPropertiesOpts . cpp <nl> <nl> - / / = = = mmmmmmmmm - LetPropertiesOpt . cpp - Optimize let properties mmmmmmmmmmmm = = = / / <nl> + / / = = = mmmmmmmmm - LetPropertiesOpts . cpp - Optimize let properties mmmmmmmmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / LoopTransforms / LoopRotate . cpp <nl> ppp b / lib / SILOptimizer / LoopTransforms / LoopRotate . cpp <nl> <nl> - / / = = = mmmmmmmmm LoopSimplify . cpp - Loop structure simplify - * - C + + - * mmmmmm - = = = / / <nl> + / / = = = mmmmmmmmm LoopRotate . cpp - Loop structure simplify - * - C + + - * mmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / Transforms / DeadObjectElimination . cpp <nl> ppp b / lib / SILOptimizer / Transforms / DeadObjectElimination . cpp <nl> <nl> - / / = = = - - DeadObjectElimination . h - Remove unused objects mmmmmmmmmmmmmmmmmm = = = / / <nl> + / / = = = - - DeadObjectElimination . cpp - Remove unused objects mmmmmmmmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / Transforms / DeadStoreElimination . cpp <nl> ppp b / lib / SILOptimizer / Transforms / DeadStoreElimination . cpp <nl> using namespace swift ; <nl> using swift : : LSLocation ; <nl> <nl> static llvm : : cl : : opt < bool > DisableLocalStoreDSE ( " disable - local - store - dse " , <nl> - llvm : : cl : : init ( true ) ) ; <nl> + llvm : : cl : : init ( true ) ) ; <nl> <nl> STATISTIC ( NumDeadStores , " Number of dead stores removed " ) ; <nl> STATISTIC ( NumPartialDeadStores , " Number of partial dead stores removed " ) ; <nl> <nl> - / / / Are we building the gen / kill sets or actually performing the DSE . <nl> - enum class DSEComputeKind : unsigned { <nl> - ComputeMaxStoreSet = 0 , <nl> - BuildGenKillSet = 1 , <nl> - PerformDSE = 2 , <nl> + / / / ComputeMaxStoreSet - If we ignore all reads , what is the max store set that <nl> + / / / can reach the beginning of a basic block . This helps generating the genset <nl> + / / / and killset . i . e . if there is no upward visible store that can reach the <nl> + / / / beginning of a basic block , then we know that the genset and killset for <nl> + / / / the stored location need not be set . <nl> + / / / <nl> + / / / BuildGenKillSet - Build the genset and killset of the basic block . <nl> + / / / <nl> + / / / PerformDSE - Perform the actual dead store elimination . <nl> + enum class DSEKind : unsigned { <nl> + ComputeMaxStoreSet = 0 , <nl> + BuildGenKillSet = 1 , <nl> + PerformDSE = 2 , <nl> } ; <nl> <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> / / Utility Functions <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> <nl> - static inline bool isComputeMaxStoreSet ( DSEComputeKind Kind ) { <nl> - return Kind = = DSEComputeKind : : ComputeMaxStoreSet ; <nl> + static inline bool isComputeMaxStoreSet ( DSEKind Kind ) { <nl> + return Kind = = DSEKind : : ComputeMaxStoreSet ; <nl> + } <nl> + <nl> + static inline bool isBuildingGenKillSet ( DSEKind Kind ) { <nl> + return Kind = = DSEKind : : BuildGenKillSet ; <nl> } <nl> <nl> - static inline bool isBuildingGenKillSet ( DSEComputeKind Kind ) { <nl> - return Kind = = DSEComputeKind : : BuildGenKillSet ; <nl> + static inline bool isPerformingDSE ( DSEKind Kind ) { <nl> + return Kind = = DSEKind : : PerformDSE ; <nl> } <nl> <nl> / / / Returns true if this is an instruction that may have side effects in a <nl> constexpr unsigned MaxPartialDeadStoreCountLimit = 1 ; <nl> <nl> / / / BlockState summarizes how LSLocations are used in a basic block . <nl> / / / <nl> - / / / Initially the WriteSetOut is empty . Before a basic block is processed , it is <nl> - / / / initialized to the intersection of WriteSetIns of all successors of the <nl> + / / / Initially the BBWriteSetOut is empty . Before a basic block is processed , it <nl> + / / / is <nl> + / / / initialized to the intersection of BBWriteSetIns of all successors of the <nl> / / / basic block . <nl> / / / <nl> - / / / Initially WriteSetIn is set to true . After the basic block is processed , if <nl> - / / / its WriteSetOut is different from WriteSetIn , WriteSetIn is initialized to <nl> - / / / the value of WriteSetOut and the data flow is rerun . <nl> + / / / Initially BBWriteSetIn is set to true . After the basic block is processed , <nl> + / / / if <nl> + / / / its BBWriteSetOut is different from BBWriteSetIn , BBWriteSetIn is <nl> + / / / initialized to <nl> + / / / the value of BBWriteSetOut and the data flow is rerun . <nl> / / / <nl> / / / Instructions in each basic block are processed in post - order as follows : <nl> / / / <nl> / / / 1 . When a store instruction is encountered , the stored location is tracked . <nl> / / / <nl> / / / 2 . When a load instruction is encountered , remove the loaded location and <nl> - / / / any location it may alias with from the WriteSetOut . <nl> + / / / any location it may alias with from the BBWriteSetOut . <nl> / / / <nl> - / / / 3 . When an instruction reads from memory in an unknown way , the WriteSetOut <nl> + / / / 3 . When an instruction reads from memory in an unknown way , the <nl> + / / / BBWriteSetOut <nl> / / / bit is cleared if the instruction can read the corresponding LSLocation . <nl> / / / <nl> class BlockState { <nl> class BlockState { <nl> SILBasicBlock * BB ; <nl> <nl> / / / Keep the number of LSLocations in the LocationVault . <nl> - unsigned LSLocationNum ; <nl> + unsigned LocationNum ; <nl> <nl> / / / A bit vector for which the ith bit represents the ith LSLocation in <nl> - / / / LSLocationVault . If the bit is set , then the location currently has an <nl> + / / / LocationVault . If the bit is set , then the location currently has an <nl> / / / upward visible store . <nl> - llvm : : BitVector WriteSetOut ; <nl> + llvm : : BitVector BBWriteSetOut ; <nl> <nl> - / / / If WriteSetIn changes while processing a basicblock , then all its <nl> - / / / predecessors needs to be rerun . <nl> - llvm : : BitVector WriteSetIn ; <nl> + / / / A bit vector for which the ith bit represents the ith LSLocation in <nl> + / / / LocationVault . If a bit in the vector is set , then the location has an <nl> + / / / upward visible store at the beginning of the basic block . <nl> + llvm : : BitVector BBWriteSetIn ; <nl> <nl> / / / A bit vector for which the ith bit represents the ith LSLocation in <nl> - / / / LSLocationVault . If the bit is set , then the current basic block <nl> + / / / LocationVault . If the bit is set , then the current basic block <nl> / / / generates an upward visible store . <nl> llvm : : BitVector BBGenSet ; <nl> <nl> / / / A bit vector for which the ith bit represents the ith LSLocation in <nl> - / / / LSLocationVault . If the bit is set , then the current basic block <nl> + / / / LocationVault . If the bit is set , then the current basic block <nl> / / / kills an upward visible store . <nl> llvm : : BitVector BBKillSet ; <nl> <nl> / / / A bit vector to keep the maximum number of stores that can reach the <nl> - / / / beginning of the basic block . If a bit is set , that means there is <nl> + / / / beginning of the basic block . If a bit is set , that means there is <nl> / / / potentially a upward visible store to the location at the beginning <nl> / / / of the basic block . <nl> llvm : : BitVector BBMaxStoreSet ; <nl> class BlockState { <nl> SILBasicBlock * getBB ( ) const { return BB ; } <nl> <nl> void init ( unsigned lcnt ) { <nl> - LSLocationNum = lcnt ; <nl> - / / The initial state of WriteSetIn should be all 1 ' s . Otherwise the <nl> + LocationNum = lcnt ; <nl> + / / The initial state of BBWriteSetIn should be all 1 ' s . Otherwise the <nl> / / dataflow solution could be too conservative . <nl> / / <nl> / / consider this case , the dead store by var a = 10 before the loop will not <nl> - / / be eliminated if the WriteSetIn is set to 0 initially . <nl> + / / be eliminated if the BBWriteSetIn is set to 0 initially . <nl> / / <nl> / / var a = 10 <nl> / / for _ in 0 . . . 1024 { } <nl> class BlockState { <nl> / / However , by doing so , we can only eliminate the dead stores after the <nl> / / data flow stabilizes . <nl> / / <nl> - WriteSetIn . resize ( LSLocationNum , true ) ; <nl> - WriteSetOut . resize ( LSLocationNum , false ) ; <nl> + BBWriteSetIn . resize ( LocationNum , true ) ; <nl> + BBWriteSetOut . resize ( LocationNum , false ) ; <nl> <nl> / / GenSet and KillSet initially empty . <nl> - BBGenSet . resize ( LSLocationNum , false ) ; <nl> - BBKillSet . resize ( LSLocationNum , false ) ; <nl> + BBGenSet . resize ( LocationNum , false ) ; <nl> + BBKillSet . resize ( LocationNum , false ) ; <nl> <nl> / / MaxStoreSet is optimistically set to true initially . <nl> - BBMaxStoreSet . resize ( LSLocationNum , true ) ; <nl> + BBMaxStoreSet . resize ( LocationNum , true ) ; <nl> } <nl> <nl> - / / / Check whether the WriteSetIn has changed . If it does , we need to rerun <nl> - / / / the data flow to reach fixed point . <nl> - bool updateWriteSetIn ( ) ; <nl> + / / / Check whether the BBWriteSetIn has changed . If it does , we need to rerun <nl> + / / / the data flow on this block ' s predecessors to reach fixed point . <nl> + bool updateBBWriteSetIn ( ) ; <nl> <nl> / / / Functions to manipulate the write set . <nl> - void clearLSLocations ( ) ; <nl> - void startTrackingLSLocation ( unsigned bit ) ; <nl> - void stopTrackingLSLocation ( unsigned bit ) ; <nl> - bool isTrackingLSLocation ( unsigned bit ) ; <nl> - void initialize ( const BlockState & L ) ; <nl> - void intersect ( const BlockState & L ) ; <nl> + void startTrackingLocation ( llvm : : BitVector & BV , unsigned bit ) ; <nl> + void stopTrackingLocation ( llvm : : BitVector & BV , unsigned bit ) ; <nl> + bool isTrackingLSLocation ( llvm : : BitVector & BV , unsigned bit ) ; <nl> } ; <nl> <nl> } / / end anonymous namespace <nl> <nl> - bool BlockState : : updateWriteSetIn ( ) { <nl> - bool Changed = ( WriteSetIn ! = WriteSetOut ) ; <nl> - WriteSetIn = WriteSetOut ; <nl> + bool BlockState : : updateBBWriteSetIn ( ) { <nl> + bool Changed = ( BBWriteSetIn ! = BBWriteSetOut ) ; <nl> + if ( ! Changed ) <nl> + return Changed ; <nl> + BBWriteSetIn = BBWriteSetOut ; <nl> return Changed ; <nl> } <nl> <nl> - void BlockState : : clearLSLocations ( ) { WriteSetOut . reset ( ) ; } <nl> - <nl> - void BlockState : : startTrackingLSLocation ( unsigned bit ) { WriteSetOut . set ( bit ) ; } <nl> - <nl> - void BlockState : : stopTrackingLSLocation ( unsigned bit ) { <nl> - WriteSetOut . reset ( bit ) ; <nl> - } <nl> - <nl> - bool BlockState : : isTrackingLSLocation ( unsigned bit ) { <nl> - return WriteSetOut . test ( bit ) ; <nl> + void BlockState : : startTrackingLocation ( llvm : : BitVector & BV , unsigned i ) { <nl> + BV . set ( i ) ; <nl> } <nl> <nl> - void BlockState : : initialize ( const BlockState & Succ ) { <nl> - WriteSetOut = Succ . WriteSetIn ; <nl> + void BlockState : : stopTrackingLocation ( llvm : : BitVector & BV , unsigned i ) { <nl> + BV . reset ( i ) ; <nl> } <nl> <nl> - / / / Intersect is very frequently performed , so it is important to make it as <nl> - / / / cheap as possible . <nl> - / / / <nl> - / / / To do so , we canonicalize LSLocations , i . e . traced back to the underlying <nl> - / / / object . Therefore , no need to do a O ( N ^ 2 ) comparison to figure out what is <nl> - / / / dead along all successors . <nl> - / / / <nl> - / / / NOTE : Canonicalizing does not solve the problem entirely . i . e . it is still <nl> - / / / possible that 2 LSLocations with different bases that happen to be the <nl> - / / / same object and field . In such case , we would miss a dead store <nl> - / / / opportunity . But this happens less often with canonicalization . <nl> - void BlockState : : intersect ( const BlockState & Succ ) { <nl> - WriteSetOut & = Succ . WriteSetIn ; <nl> + bool BlockState : : isTrackingLSLocation ( llvm : : BitVector & BV , unsigned i ) { <nl> + return BV . test ( i ) ; <nl> } <nl> <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> class DSEContext { <nl> / / / Keeps all the locations for the current function . The BitVector in each <nl> / / / BlockState is then laid on top of it to keep track of which LSLocation <nl> / / / has an upward visible store . <nl> - std : : vector < LSLocation > LSLocationVault ; <nl> + std : : vector < LSLocation > LocationVault ; <nl> <nl> - / / / Contains a map between location to their index in the LSLocationVault . <nl> + / / / Contains a map between location to their index in the LocationVault . <nl> LSLocationIndexMap LocToBitIndex ; <nl> <nl> / / / Return the BlockState for the basic block this basic block belongs to . <nl> class DSEContext { <nl> } <nl> <nl> / / / LSLocation written has been extracted , expanded and mapped to the bit <nl> - / / / position in the bitvector . update the gen kill set using the bit <nl> + / / / position in the bitvector . update the max store set using the bit <nl> / / / position . <nl> void updateMaxStoreSetForWrite ( BlockState * S , unsigned bit ) ; <nl> <nl> class DSEContext { <nl> / / / There is a read to a location , expand the location into individual fields <nl> / / / before processing them . <nl> void processRead ( SILInstruction * Inst , BlockState * State , SILValue Mem , <nl> - DSEComputeKind Kind ) ; <nl> + DSEKind Kind ) ; <nl> <nl> / / / There is a write to a location , expand the location into individual fields <nl> / / / before processing them . <nl> void processWrite ( SILInstruction * Inst , BlockState * State , SILValue Val , <nl> - SILValue Mem , DSEComputeKind Kind ) ; <nl> + SILValue Mem , DSEKind Kind ) ; <nl> <nl> / / / Process Instructions . Extract LSLocations from SIL LoadInst . <nl> - void processLoadInst ( SILInstruction * Inst , DSEComputeKind Kind ) ; <nl> + void processLoadInst ( SILInstruction * Inst , DSEKind Kind ) ; <nl> <nl> / / / Process Instructions . Extract LSLocations from SIL StoreInst . <nl> - void processStoreInst ( SILInstruction * Inst , DSEComputeKind Kind ) ; <nl> + void processStoreInst ( SILInstruction * Inst , DSEKind Kind ) ; <nl> <nl> / / / Process Instructions . Extract LSLocations from SIL DebugValueAddrInst . <nl> - / / / DebugValueAddrInst operand maybe promoted to DebugValue , when this is <nl> - / / / done , DebugValueAddrInst is effectively a read on the LSLocation . <nl> - void processDebugValueAddrInst ( SILInstruction * I ) ; <nl> + / / / DebugValueAddrInst maybe promoted to DebugValue , when this is done , <nl> + / / / DebugValueAddrInst is effectively a read on the LSLocation . <nl> + void processDebugValueAddrInst ( SILInstruction * I , DSEKind Kind ) ; <nl> <nl> - / / / Process Instructions . Extract LSLocations from SIL Unknown Memory Inst . <nl> - void processUnknownReadMemInst ( SILInstruction * Inst , DSEComputeKind Kind ) ; <nl> + / / / Process Instructions . Extract LSLocations from unknown memory inst . <nl> + void processUnknownReadInst ( SILInstruction * Inst , DSEKind Kind ) ; <nl> <nl> / / / Check whether the instruction invalidate any LSLocations due to change in <nl> / / / its LSLocation Base . <nl> class DSEContext { <nl> / / / In this case , DSE can not remove the x . a = 13 inside the loop . <nl> / / / <nl> / / / To do this , when the algorithm reaches the beginning of the basic block in <nl> - / / / the loop it will need to invalidate the LSLocation in the WriteSetOut . <nl> + / / / the loop it will need to invalidate the LSLocation in the BBWriteSetOut . <nl> / / / i . e . <nl> / / / the base of the LSLocation is changed . <nl> / / / <nl> / / / If not , on the second iteration , the intersection of the successors of <nl> / / / the loop basic block will have store to x . a and therefore x . a = 13 can now <nl> / / / be considered dead . <nl> - / / / <nl> - void invalidateLSLocationBase ( SILInstruction * Inst , DSEComputeKind Kind ) ; <nl> + void invalidateLSLocationBase ( SILInstruction * Inst , DSEKind Kind ) ; <nl> <nl> - / / / Get the bit representing the location in the LSLocationVault . <nl> + / / / Get the bit representing the location in the LocationVault . <nl> / / / <nl> / / / NOTE : Adds the location to the location vault if necessary . <nl> - unsigned getLSLocationBit ( const LSLocation & L ) ; <nl> + unsigned getLocationBit ( const LSLocation & L ) ; <nl> <nl> public : <nl> / / / Constructor . <nl> class DSEContext { <nl> AliasAnalysis * AA , TypeExpansionAnalysis * TE ) <nl> : Mod ( M ) , F ( F ) , PM ( PM ) , AA ( AA ) , TE ( TE ) { } <nl> <nl> + / / / Entry point for dead store elimination . <nl> + bool run ( ) ; <nl> + <nl> / / / Compute the kill set for the basic block . return true if the store set <nl> / / / changes . <nl> - bool processBasicBlock ( SILBasicBlock * BB ) ; <nl> + bool processBasicBlockForDSE ( SILBasicBlock * BB ) ; <nl> <nl> / / / Compute the genset and killset for the current basic block . <nl> void processBasicBlockForGenKillSet ( SILBasicBlock * BB ) ; <nl> class DSEContext { <nl> / / / Compute the max store set for the current basic block . <nl> void processBasicBlockForMaxStoreSet ( SILBasicBlock * BB ) ; <nl> <nl> - / / / Compute the WriteSetOut and WriteSetIn for the current basic <nl> + / / / Compute the BBWriteSetOut and BBWriteSetIn for the current basic <nl> / / / block with the generated gen and kill set . <nl> bool processBasicBlockWithGenKillSet ( SILBasicBlock * BB ) ; <nl> <nl> class DSEContext { <nl> void mergeSuccessorStates ( SILBasicBlock * BB ) ; <nl> <nl> / / / Update the BlockState based on the given instruction . <nl> - void processInstruction ( SILInstruction * I , DSEComputeKind Kind ) ; <nl> - <nl> - / / / Entry point for global dead store elimination . <nl> - bool run ( ) ; <nl> + void processInstruction ( SILInstruction * I , DSEKind Kind ) ; <nl> } ; <nl> <nl> } / / end anonymous namespace <nl> <nl> - unsigned DSEContext : : getLSLocationBit ( const LSLocation & Loc ) { <nl> - / / Return the bit position of the given Loc in the LSLocationVault . The bit <nl> + unsigned DSEContext : : getLocationBit ( const LSLocation & Loc ) { <nl> + / / Return the bit position of the given Loc in the LocationVault . The bit <nl> / / position is then used to set / reset the bitvector kept by each BlockState . <nl> / / <nl> / / We should have the location populated by the enumerateLSLocation at this <nl> / / point . <nl> - / / <nl> auto Iter = LocToBitIndex . find ( Loc ) ; <nl> - assert ( Iter ! = LocToBitIndex . end ( ) & & <nl> - " LSLocation should have been enumerated " ) ; <nl> + assert ( Iter ! = LocToBitIndex . end ( ) & & " LSLocation should have been enum ' ed " ) ; <nl> return Iter - > second ; <nl> } <nl> <nl> void DSEContext : : processBasicBlockForGenKillSet ( SILBasicBlock * BB ) { <nl> for ( auto I = BB - > rbegin ( ) , E = BB - > rend ( ) ; I ! = E ; + + I ) { <nl> - processInstruction ( & ( * I ) , DSEComputeKind : : BuildGenKillSet ) ; <nl> + processInstruction ( & ( * I ) , DSEKind : : BuildGenKillSet ) ; <nl> } <nl> } <nl> <nl> void DSEContext : : processBasicBlockForMaxStoreSet ( SILBasicBlock * BB ) { <nl> / / Only process store insts . <nl> if ( ! isa < StoreInst > ( * I ) ) <nl> continue ; <nl> - processInstruction ( & ( * I ) , DSEComputeKind : : ComputeMaxStoreSet ) ; <nl> + processStoreInst ( & ( * I ) , DSEKind : : ComputeMaxStoreSet ) ; <nl> } <nl> } <nl> <nl> bool DSEContext : : processBasicBlockWithGenKillSet ( SILBasicBlock * BB ) { <nl> - / / Compute the WriteSetOut at the end of the basic block . <nl> + / / Compute the BBWriteSetOut at the end of the basic block . <nl> mergeSuccessorStates ( BB ) ; <nl> <nl> - / / Compute the WriteSetOut at the beginning of the basic block . <nl> + / / Compute the BBWriteSetOut at the beginning of the basic block . <nl> BlockState * S = getBlockState ( BB ) ; <nl> llvm : : BitVector T = S - > BBKillSet ; <nl> - S - > WriteSetOut & = T . flip ( ) ; <nl> - S - > WriteSetOut | = S - > BBGenSet ; <nl> + S - > BBWriteSetOut & = T . flip ( ) ; <nl> + S - > BBWriteSetOut | = S - > BBGenSet ; <nl> <nl> - / / If WriteSetIn changes , then keep iterating until reached a fixed <nl> - / / point . <nl> - return S - > updateWriteSetIn ( ) ; <nl> + / / If BBWriteSetIn changes , then keep iterating until reached a fixed point . <nl> + return S - > updateBBWriteSetIn ( ) ; <nl> } <nl> <nl> - bool DSEContext : : processBasicBlock ( SILBasicBlock * BB ) { <nl> - / / Intersect in the successor live - ins . A store is dead if it is not read from <nl> - / / any path to the end of the program . Thus an intersection . <nl> + bool DSEContext : : processBasicBlockForDSE ( SILBasicBlock * BB ) { <nl> + / / Intersect in the successor WriteSetIns . A store is dead if it is not read <nl> + / / from any path to the end of the program . Thus an intersection . <nl> mergeSuccessorStates ( BB ) ; <nl> <nl> / / Process instructions in post - order fashion . <nl> for ( auto I = BB - > rbegin ( ) , E = BB - > rend ( ) ; I ! = E ; + + I ) { <nl> - processInstruction ( & ( * I ) , DSEComputeKind : : PerformDSE ) ; <nl> + processInstruction ( & ( * I ) , DSEKind : : PerformDSE ) ; <nl> } <nl> <nl> - / / If WriteSetIn changes , then keep iterating until reached a fixed <nl> + / / If BBWriteSetIn changes , then keep iterating until reached a fixed <nl> / / point . <nl> - return getBlockState ( BB ) - > updateWriteSetIn ( ) ; <nl> + return getBlockState ( BB ) - > updateBBWriteSetIn ( ) ; <nl> } <nl> <nl> void DSEContext : : mergeSuccessorStates ( SILBasicBlock * BB ) { <nl> - / / First , clear the WriteSetOut for the current basicblock . <nl> + / / First , clear the BBWriteSetOut for the current basicblock . <nl> BlockState * C = getBlockState ( BB ) ; <nl> - C - > clearLSLocations ( ) ; <nl> + C - > BBWriteSetOut . reset ( ) ; <nl> <nl> / / If basic block has no successor , then all local writes can be considered <nl> / / dead for block with no successor . <nl> if ( BB - > succ_empty ( ) ) { <nl> if ( DisableLocalStoreDSE ) <nl> return ; <nl> - for ( unsigned i = 0 ; i < LSLocationVault . size ( ) ; + + i ) { <nl> - if ( ! LSLocationVault [ i ] . isNonEscapingLocalLSLocation ( ) ) <nl> + for ( unsigned i = 0 ; i < LocationVault . size ( ) ; + + i ) { <nl> + if ( ! LocationVault [ i ] . isNonEscapingLocalLSLocation ( ) ) <nl> continue ; <nl> - C - > startTrackingLSLocation ( i ) ; <nl> + C - > startTrackingLocation ( C - > BBWriteSetOut , i ) ; <nl> } <nl> return ; <nl> } <nl> <nl> / / Use the first successor as the base condition . <nl> auto Iter = BB - > succ_begin ( ) ; <nl> - C - > initialize ( * getBlockState ( * Iter ) ) ; <nl> + C - > BBWriteSetOut = getBlockState ( * Iter ) - > BBWriteSetIn ; <nl> + <nl> + / / / Merge / intersection is very frequently performed , so it is important to make <nl> + / / / it as cheap as possible . <nl> + / / / <nl> + / / / To do so , we canonicalize LSLocations , i . e . traced back to the underlying <nl> + / / / object . Therefore , no need to do a O ( N ^ 2 ) comparison to figure out what is <nl> + / / / dead along all successors . <nl> + / / / <nl> + / / / NOTE : Canonicalization does not solve the problem entirely . i . e . it is <nl> + / / / still possible that 2 LSLocations with different bases that happen to be <nl> + / / / the same object and field . In such case , we would miss a dead store <nl> + / / / opportunity . But this happens less often with canonicalization . <nl> Iter = std : : next ( Iter ) ; <nl> for ( auto EndIter = BB - > succ_end ( ) ; Iter ! = EndIter ; + + Iter ) { <nl> - C - > intersect ( * getBlockState ( * Iter ) ) ; <nl> + C - > BBWriteSetOut & = getBlockState ( * Iter ) - > BBWriteSetIn ; <nl> } <nl> } <nl> <nl> - void DSEContext : : invalidateLSLocationBase ( SILInstruction * I , <nl> - DSEComputeKind Kind ) { <nl> + void DSEContext : : invalidateLSLocationBase ( SILInstruction * I , DSEKind Kind ) { <nl> / / If this instruction defines the base of a location , then we need to <nl> / / invalidate any locations with the same base . <nl> BlockState * S = getBlockState ( I ) ; <nl> + <nl> + / / Are we building genset and killset . <nl> if ( isBuildingGenKillSet ( Kind ) ) { <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - if ( LSLocationVault [ i ] . getBase ( ) . getDef ( ) ! = I ) <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( LocationVault [ i ] . getBase ( ) . getDef ( ) ! = I ) <nl> continue ; <nl> - S - > BBGenSet . reset ( i ) ; <nl> - S - > BBKillSet . set ( i ) ; <nl> + S - > startTrackingLocation ( S - > BBKillSet , i ) ; <nl> + S - > stopTrackingLocation ( S - > BBGenSet , i ) ; <nl> } <nl> return ; <nl> } <nl> <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - if ( ! S - > WriteSetOut . test ( i ) ) <nl> - continue ; <nl> - if ( LSLocationVault [ i ] . getBase ( ) . getDef ( ) ! = I ) <nl> - continue ; <nl> - S - > stopTrackingLSLocation ( i ) ; <nl> + / / Are we performing dead store elimination . <nl> + if ( isPerformingDSE ( Kind ) ) { <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > BBWriteSetOut . test ( i ) ) <nl> + continue ; <nl> + if ( LocationVault [ i ] . getBase ( ) . getDef ( ) ! = I ) <nl> + continue ; <nl> + S - > stopTrackingLocation ( S - > BBWriteSetOut , i ) ; <nl> + } <nl> + return ; <nl> } <nl> + <nl> + llvm_unreachable ( " Unknown DSE compute kind " ) ; <nl> } <nl> <nl> void DSEContext : : updateWriteSetForRead ( BlockState * S , unsigned bit ) { <nl> / / Remove any may / must - aliasing stores to the LSLocation , as they cant be <nl> / / used to kill any upward visible stores due to the interfering load . <nl> - LSLocation & R = LSLocationVault [ bit ] ; <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - if ( ! S - > isTrackingLSLocation ( i ) ) <nl> - continue ; <nl> - LSLocation & L = LSLocationVault [ i ] ; <nl> - if ( ! L . isMayAliasLSLocation ( R , AA ) ) <nl> - continue ; <nl> - S - > stopTrackingLSLocation ( i ) ; <nl> - } <nl> - } <nl> - <nl> - void DSEContext : : updateGenKillSetForRead ( BlockState * S , unsigned bit ) { <nl> - / / Start tracking the read to this LSLocation in the killset and update <nl> - / / the genset accordingly . <nl> - / / <nl> - / / Even though , LSLocations are canonicalized , we still need to consult <nl> - / / alias analysis to determine whether 2 LSLocations are disjointed . <nl> - LSLocation & R = LSLocationVault [ bit ] ; <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - / / If BBMaxStoreSet is not turned on , then there is no reason to turn <nl> - / / on the kill set nor the gen set for this store for this basic block . <nl> - / / as there can NOT be a store that reaches the end of this basic block . <nl> - if ( ! S - > BBMaxStoreSet . test ( i ) ) <nl> + LSLocation & R = LocationVault [ bit ] ; <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > isTrackingLSLocation ( S - > BBWriteSetOut , i ) ) <nl> continue ; <nl> - LSLocation & L = LSLocationVault [ i ] ; <nl> + LSLocation & L = LocationVault [ i ] ; <nl> if ( ! L . isMayAliasLSLocation ( R , AA ) ) <nl> continue ; <nl> - S - > BBGenSet . reset ( i ) ; <nl> - / / Update the kill set , we need to be conservative about kill set . Kill set <nl> - / / kills any LSLocation that this currently LSLocation mayalias . <nl> - S - > BBKillSet . set ( i ) ; <nl> + S - > stopTrackingLocation ( S - > BBWriteSetOut , i ) ; <nl> } <nl> } <nl> <nl> bool DSEContext : : updateWriteSetForWrite ( BlockState * S , unsigned bit ) { <nl> / / If a tracked store must aliases with this store , then this store is dead . <nl> bool IsDead = false ; <nl> - LSLocation & R = LSLocationVault [ bit ] ; <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - if ( ! S - > isTrackingLSLocation ( i ) ) <nl> + LSLocation & R = LocationVault [ bit ] ; <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > isTrackingLSLocation ( S - > BBWriteSetOut , i ) ) <nl> continue ; <nl> / / If 2 locations may alias , we can still keep both stores . <nl> - LSLocation & L = LSLocationVault [ i ] ; <nl> + LSLocation & L = LocationVault [ i ] ; <nl> if ( ! L . isMustAliasLSLocation ( R , AA ) ) <nl> continue ; <nl> + / / There is a must alias store . No need to check further . <nl> IsDead = true ; <nl> - / / No need to check the rest of the upward visible stores as this store <nl> - / / is dead . <nl> break ; <nl> } <nl> <nl> / / Track this new store . <nl> - DEBUG ( llvm : : dbgs ( ) < < " Loc Insertion : " < < LSLocationVault [ bit ] . getBase ( ) <nl> - < < " \ n " ) ; <nl> - S - > startTrackingLSLocation ( bit ) ; <nl> + S - > startTrackingLocation ( S - > BBWriteSetOut , bit ) ; <nl> return IsDead ; <nl> } <nl> <nl> + void DSEContext : : updateGenKillSetForRead ( BlockState * S , unsigned bit ) { <nl> + / / Start tracking the read to this LSLocation in the killset and update <nl> + / / the genset accordingly . <nl> + / / <nl> + / / Even though , LSLocations are canonicalized , we still need to consult <nl> + / / alias analysis to determine whether 2 LSLocations are disjointed . <nl> + LSLocation & R = LocationVault [ bit ] ; <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > BBMaxStoreSet . test ( i ) ) <nl> + continue ; <nl> + / / Do nothing if the read location NoAlias with the current location . <nl> + LSLocation & L = LocationVault [ i ] ; <nl> + if ( ! L . isMayAliasLSLocation ( R , AA ) ) <nl> + continue ; <nl> + / / Update the genset and kill set . <nl> + S - > startTrackingLocation ( S - > BBKillSet , i ) ; <nl> + S - > stopTrackingLocation ( S - > BBGenSet , i ) ; <nl> + } <nl> + } <nl> + <nl> void DSEContext : : updateGenKillSetForWrite ( BlockState * S , unsigned bit ) { <nl> - S - > BBGenSet . set ( bit ) ; <nl> + S - > startTrackingLocation ( S - > BBGenSet , bit ) ; <nl> } <nl> <nl> void DSEContext : : updateMaxStoreSetForWrite ( BlockState * S , unsigned bit ) { <nl> - S - > BBMaxStoreSet . set ( bit ) ; <nl> + S - > startTrackingLocation ( S - > BBMaxStoreSet , bit ) ; <nl> } <nl> <nl> void DSEContext : : processRead ( SILInstruction * I , BlockState * S , SILValue Mem , <nl> - DSEComputeKind Kind ) { <nl> + DSEKind Kind ) { <nl> / / Construct a LSLocation to represent the memory read by this instruction . <nl> / / NOTE : The base will point to the actual object this inst is accessing , <nl> / / not this particular field . <nl> void DSEContext : : processRead ( SILInstruction * I , BlockState * S , SILValue Mem , <nl> / / If we cant figure out the Base or Projection Path for the read instruction , <nl> / / process it as an unknown memory instruction for now . <nl> if ( ! L . isValid ( ) ) { <nl> - processUnknownReadMemInst ( I , Kind ) ; <nl> + processUnknownReadInst ( I , Kind ) ; <nl> return ; <nl> } <nl> <nl> - # ifndef NDEBUG <nl> - / / Make sure that the LSLocation getType ( ) returns the same type as the <nl> - / / loaded type . <nl> - if ( auto * LI = dyn_cast < LoadInst > ( I ) ) { <nl> - assert ( LI - > getOperand ( ) . getType ( ) . getObjectType ( ) = = L . getType ( ) & & <nl> - " LSLocation returns different type " ) ; <nl> - } <nl> - # endif <nl> - <nl> - / / Expand the given Mem into individual fields and process them as <nl> - / / separate reads . <nl> + / / Expand the given Mem into individual fields and process them as separate <nl> + / / reads . <nl> LSLocationList Locs ; <nl> LSLocation : : expand ( L , & I - > getModule ( ) , Locs , TE ) ; <nl> + <nl> + / / Are we building the genset and killset . <nl> if ( isBuildingGenKillSet ( Kind ) ) { <nl> for ( auto & E : Locs ) { <nl> / / Only building the gen and kill sets for now . <nl> - updateGenKillSetForRead ( S , getLSLocationBit ( E ) ) ; <nl> + updateGenKillSetForRead ( S , getLocationBit ( E ) ) ; <nl> } <nl> - } else { <nl> + return ; <nl> + } <nl> + <nl> + / / Are we performing the actual DSE . <nl> + if ( isPerformingDSE ( Kind ) ) { <nl> for ( auto & E : Locs ) { <nl> - / / This is the last iteration , compute WriteSetOut and perform the dead <nl> - / / store elimination . <nl> - updateWriteSetForRead ( S , getLSLocationBit ( E ) ) ; <nl> + / / This is the last iteration , compute BBWriteSetOut and perform DSE . <nl> + updateWriteSetForRead ( S , getLocationBit ( E ) ) ; <nl> } <nl> + return ; <nl> } <nl> + <nl> + llvm_unreachable ( " Unknown DSE compute kind " ) ; <nl> } <nl> <nl> void DSEContext : : processWrite ( SILInstruction * I , BlockState * S , SILValue Val , <nl> - SILValue Mem , DSEComputeKind Kind ) { <nl> + SILValue Mem , DSEKind Kind ) { <nl> / / Construct a LSLocation to represent the memory read by this instruction . <nl> / / NOTE : The base will point to the actual object this inst is accessing , <nl> / / not this particular field . <nl> void DSEContext : : processWrite ( SILInstruction * I , BlockState * S , SILValue Val , <nl> LSLocation L ( Mem ) ; <nl> <nl> / / If we cant figure out the Base or Projection Path for the store <nl> - / / instruction , <nl> - / / simply ignore it for now . <nl> + / / instruction , simply ignore it . <nl> if ( ! L . isValid ( ) ) <nl> return ; <nl> <nl> void DSEContext : : processWrite ( SILInstruction * I , BlockState * S , SILValue Val , <nl> LSLocation : : expand ( L , Mod , Locs , TE ) ; <nl> llvm : : BitVector V ( Locs . size ( ) ) ; <nl> <nl> - if ( isComputeMaxStoreSet ( Kind ) ) { <nl> + / / Are we computing genset and killset . <nl> + if ( isBuildingGenKillSet ( Kind ) ) { <nl> for ( auto & E : Locs ) { <nl> - / / Update the max store set for the basic block . <nl> - updateMaxStoreSetForWrite ( S , getLSLocationBit ( E ) ) ; <nl> + / / Only building the gen and kill sets here . <nl> + updateGenKillSetForWrite ( S , getLocationBit ( E ) ) ; <nl> } <nl> + / / Data flow has not stabilized , do not perform the DSE just yet . <nl> return ; <nl> } <nl> <nl> - if ( isBuildingGenKillSet ( Kind ) ) { <nl> - for ( auto & E : Locs ) { <nl> - / / Only building the gen and kill sets here . <nl> - updateGenKillSetForWrite ( S , getLSLocationBit ( E ) ) ; <nl> - } <nl> - } else { <nl> - unsigned idx = 0 ; <nl> + / / Are we computing max store set . <nl> + if ( isComputeMaxStoreSet ( Kind ) ) { <nl> for ( auto & E : Locs ) { <nl> - / / This is the last iteration , compute WriteSetOut and perform the dead <nl> - / / store elimination . <nl> - if ( updateWriteSetForWrite ( S , getLSLocationBit ( E ) ) ) <nl> - V . set ( idx ) ; <nl> - Dead & = V . test ( idx ) ; <nl> - + + idx ; <nl> + / / Update the max store set for the basic block . <nl> + updateMaxStoreSetForWrite ( S , getLocationBit ( E ) ) ; <nl> } <nl> + return ; <nl> } <nl> <nl> - / / Data flow has not stabilized , do not perform the DSE just yet . <nl> - if ( isBuildingGenKillSet ( Kind ) ) <nl> - return ; <nl> + / / We are doing the actual DSE . <nl> + assert ( isPerformingDSE ( Kind ) & & " Invalid computation kind " ) ; <nl> + unsigned idx = 0 ; <nl> + for ( auto & E : Locs ) { <nl> + / / This is the last iteration , compute BBWriteSetOut and perform the dead <nl> + / / store elimination . <nl> + if ( updateWriteSetForWrite ( S , getLocationBit ( E ) ) ) <nl> + V . set ( idx ) ; <nl> + Dead & = V . test ( idx ) ; <nl> + + + idx ; <nl> + } <nl> <nl> / / Fully dead store - stores to all the components are dead , therefore this <nl> / / instruction is dead . <nl> void DSEContext : : processWrite ( SILInstruction * I , BlockState * S , SILValue Val , <nl> } <nl> } <nl> <nl> - void DSEContext : : processLoadInst ( SILInstruction * I , DSEComputeKind Kind ) { <nl> - SILValue Mem = cast < LoadInst > ( I ) - > getOperand ( ) ; <nl> - processRead ( I , getBlockState ( I ) , Mem , Kind ) ; <nl> + void DSEContext : : processLoadInst ( SILInstruction * I , DSEKind Kind ) { <nl> + processRead ( I , getBlockState ( I ) , cast < LoadInst > ( I ) - > getOperand ( ) , Kind ) ; <nl> } <nl> <nl> - void DSEContext : : processStoreInst ( SILInstruction * I , DSEComputeKind Kind ) { <nl> - SILValue Val = cast < StoreInst > ( I ) - > getSrc ( ) ; <nl> - SILValue Mem = cast < StoreInst > ( I ) - > getDest ( ) ; <nl> - processWrite ( I , getBlockState ( I ) , Val , Mem , Kind ) ; <nl> + void DSEContext : : processStoreInst ( SILInstruction * I , DSEKind Kind ) { <nl> + auto * SI = cast < StoreInst > ( I ) ; <nl> + processWrite ( I , getBlockState ( I ) , SI - > getSrc ( ) , SI - > getDest ( ) , Kind ) ; <nl> } <nl> <nl> - void DSEContext : : processDebugValueAddrInst ( SILInstruction * I ) { <nl> + void DSEContext : : processDebugValueAddrInst ( SILInstruction * I , DSEKind Kind ) { <nl> BlockState * S = getBlockState ( I ) ; <nl> SILValue Mem = cast < DebugValueAddrInst > ( I ) - > getOperand ( ) ; <nl> - for ( unsigned i = 0 ; i < S - > WriteSetOut . size ( ) ; + + i ) { <nl> - if ( ! S - > isTrackingLSLocation ( i ) ) <nl> - continue ; <nl> - if ( AA - > isNoAlias ( Mem , LSLocationVault [ i ] . getBase ( ) ) ) <nl> - continue ; <nl> - getBlockState ( I ) - > stopTrackingLSLocation ( i ) ; <nl> + / / Are we building genset and killset . <nl> + if ( isBuildingGenKillSet ( Kind ) ) { <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > BBMaxStoreSet . test ( i ) ) <nl> + continue ; <nl> + if ( AA - > isNoAlias ( Mem , LocationVault [ i ] . getBase ( ) ) ) <nl> + continue ; <nl> + S - > stopTrackingLocation ( S - > BBGenSet , i ) ; <nl> + S - > startTrackingLocation ( S - > BBKillSet , i ) ; <nl> + } <nl> + return ; <nl> + } <nl> + <nl> + / / Are we performing dead store elimination . <nl> + if ( isPerformingDSE ( Kind ) ) { <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > isTrackingLSLocation ( S - > BBWriteSetOut , i ) ) <nl> + continue ; <nl> + if ( AA - > isNoAlias ( Mem , LocationVault [ i ] . getBase ( ) ) ) <nl> + continue ; <nl> + S - > stopTrackingLocation ( S - > BBWriteSetOut , i ) ; <nl> + } <nl> + return ; <nl> } <nl> + <nl> + llvm_unreachable ( " Unknown DSE compute kind " ) ; <nl> } <nl> <nl> - void DSEContext : : processUnknownReadMemInst ( SILInstruction * I , <nl> - DSEComputeKind Kind ) { <nl> + void DSEContext : : processUnknownReadInst ( SILInstruction * I , DSEKind Kind ) { <nl> BlockState * S = getBlockState ( I ) ; <nl> - / / Update the gen kill set . <nl> + / / Are we building genset and killset . <nl> if ( isBuildingGenKillSet ( Kind ) ) { <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - / / If BBMaxStoreSet is not turned on , then there is no reason to turn <nl> - / / on the kill set nor the gen set for this location in this basic block . <nl> - / / as there can NOT be a store that reaches the end of this basic block . <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> if ( ! S - > BBMaxStoreSet . test ( i ) ) <nl> continue ; <nl> - if ( ! AA - > mayReadFromMemory ( I , LSLocationVault [ i ] . getBase ( ) ) ) <nl> + if ( ! AA - > mayReadFromMemory ( I , LocationVault [ i ] . getBase ( ) ) ) <nl> continue ; <nl> - S - > BBKillSet . set ( i ) ; <nl> - S - > BBGenSet . reset ( i ) ; <nl> + / / Update the genset and kill set . <nl> + S - > startTrackingLocation ( S - > BBKillSet , i ) ; <nl> + S - > stopTrackingLocation ( S - > BBGenSet , i ) ; <nl> } <nl> return ; <nl> } <nl> <nl> - / / We do not know what this instruction does or the memory that it * may * <nl> - / / touch . Hand it to alias analysis to see whether we need to invalidate <nl> - / / any LSLocation . <nl> - for ( unsigned i = 0 ; i < S - > LSLocationNum ; + + i ) { <nl> - if ( ! S - > isTrackingLSLocation ( i ) ) <nl> - continue ; <nl> - if ( ! AA - > mayReadFromMemory ( I , LSLocationVault [ i ] . getBase ( ) ) ) <nl> - continue ; <nl> - getBlockState ( I ) - > stopTrackingLSLocation ( i ) ; <nl> + / / Are we performing dead store elimination . <nl> + if ( isPerformingDSE ( Kind ) ) { <nl> + for ( unsigned i = 0 ; i < S - > LocationNum ; + + i ) { <nl> + if ( ! S - > isTrackingLSLocation ( S - > BBWriteSetOut , i ) ) <nl> + continue ; <nl> + if ( ! AA - > mayReadFromMemory ( I , LocationVault [ i ] . getBase ( ) ) ) <nl> + continue ; <nl> + S - > stopTrackingLocation ( S - > BBWriteSetOut , i ) ; <nl> + } <nl> + return ; <nl> } <nl> + <nl> + llvm_unreachable ( " Unknown DSE compute kind " ) ; <nl> } <nl> <nl> - void DSEContext : : processInstruction ( SILInstruction * I , DSEComputeKind Kind ) { <nl> + void DSEContext : : processInstruction ( SILInstruction * I , DSEKind Kind ) { <nl> / / If this instruction has side effects , but is inert from a store <nl> / / perspective , skip it . <nl> if ( isDeadStoreInertInstruction ( I ) ) <nl> return ; <nl> <nl> / / A set of ad - hoc rules to process instructions . <nl> - / / <nl> - / / TODO : process more instructions . <nl> - / / <nl> if ( isa < LoadInst > ( I ) ) { <nl> processLoadInst ( I , Kind ) ; <nl> } else if ( isa < StoreInst > ( I ) ) { <nl> processStoreInst ( I , Kind ) ; <nl> } else if ( isa < DebugValueAddrInst > ( I ) ) { <nl> - processDebugValueAddrInst ( I ) ; <nl> + processDebugValueAddrInst ( I , Kind ) ; <nl> } else if ( I - > mayReadFromMemory ( ) ) { <nl> - processUnknownReadMemInst ( I , Kind ) ; <nl> + processUnknownReadInst ( I , Kind ) ; <nl> } <nl> <nl> - / / Check whether this instruction will invalidate any other LSLocations . <nl> + / / Check whether this instruction will invalidate any other locations . <nl> invalidateLSLocationBase ( I , Kind ) ; <nl> } <nl> <nl> bool DSEContext : : run ( ) { <nl> / / Walk over the function and find all the locations accessed by <nl> / / this function . <nl> - LSLocation : : enumerateLSLocations ( * F , LSLocationVault , LocToBitIndex , TE ) ; <nl> + LSLocation : : enumerateLSLocations ( * F , LocationVault , LocToBitIndex , TE ) ; <nl> <nl> - / / For all basic blocks in the function , initialize a BB state . Since we <nl> - / / know all the locations accessed in this function , we can resize the bit <nl> - / / vector to the appropriate size . <nl> + / / For all basic blocks in the function , initialize a BB state . <nl> / / <nl> / / DenseMap has a minimum size of 64 , while many functions do not have more <nl> / / than 64 basic blocks . Therefore , allocate the BlockState in a vector and <nl> - / / use <nl> - / / pointer in BBToLocState to access them . <nl> + / / use pointer in BBToLocState to access them . <nl> for ( auto & B : * F ) { <nl> BlockStates . push_back ( BlockState ( & B ) ) ; <nl> - BlockStates . back ( ) . init ( LSLocationVault . size ( ) ) ; <nl> + / / Since we know all the locations accessed in this function , we can resize <nl> + / / the bit vector to the appropriate size . <nl> + BlockStates . back ( ) . init ( LocationVault . size ( ) ) ; <nl> } <nl> <nl> / / Initialize the BBToLocState mapping . <nl> bool DSEContext : : run ( ) { <nl> BBToLocState [ S . getBB ( ) ] = & S ; <nl> } <nl> <nl> + / / We perform dead store elimination in the following phases . <nl> + / / <nl> + / / Phase 1 . we compute the max store set at the beginning of the basic block . <nl> + / / <nl> + / / Phase 2 . we compute the genset and killset for every basic block . <nl> + / / <nl> + / / Phase 3 . we run the data flow with the genset and killset until <nl> + / / BBWriteSetIns stop changing . <nl> + / / <nl> + / / Phase 4 . we run the data flow for the last iteration and perform the DSE . <nl> + / / <nl> + / / Phase 5 . we remove the dead stores . <nl> + <nl> / / Compute the max store set at the beginning of the basic block . <nl> / / <nl> / / This helps generating the genset and killset . If there is no way a <nl> bool DSEContext : : run ( ) { <nl> processBasicBlockForMaxStoreSet ( B ) ; <nl> } <nl> <nl> - / / Generate the genset and killset for each basic block . <nl> + / / Generate the genset and killset for each basic block . We can process the <nl> + / / basic blocks in any order . <nl> for ( auto & B : * F ) { <nl> processBasicBlockForGenKillSet ( & B ) ; <nl> } <nl> <nl> / / Process each basic block with the gen and kill set . Every time the <nl> - / / WriteSetIn of a basic block changes , the optimization is rerun on its <nl> + / / BBWriteSetIn of a basic block changes , the optimization is rerun on its <nl> / / predecessors . <nl> llvm : : SmallVector < SILBasicBlock * , 16 > WorkList ; <nl> for ( SILBasicBlock * B : PO - > getPostOrder ( ) ) { <nl> WorkList . push_back ( B ) ; <nl> } <nl> - <nl> while ( ! WorkList . empty ( ) ) { <nl> SILBasicBlock * BB = WorkList . pop_back_val ( ) ; <nl> if ( processBasicBlockWithGenKillSet ( BB ) ) { <nl> bool DSEContext : : run ( ) { <nl> / / The data flow has stabilized , run one last iteration over all the basic <nl> / / blocks and try to remove dead stores . <nl> for ( SILBasicBlock & BB : * F ) { <nl> - processBasicBlock ( & BB ) ; <nl> + processBasicBlockForDSE ( & BB ) ; <nl> } <nl> <nl> / / Finally , delete the dead stores and create the live stores . <nl> bool DSEContext : : run ( ) { <nl> for ( SILBasicBlock & BB : * F ) { <nl> / / Create the stores that are alive due to partial dead stores . <nl> for ( auto & I : getBlockState ( & BB ) - > LiveStores ) { <nl> + Changed = true ; <nl> SILInstruction * IT = cast < SILInstruction > ( I . first ) - > getNextNode ( ) ; <nl> SILBuilderWithScope Builder ( IT ) ; <nl> Builder . createStore ( I . first . getLoc ( ) . getValue ( ) , I . second , I . first ) ; <nl> mmm a / lib / SILOptimizer / Transforms / RedundantLoadElimination . cpp <nl> ppp b / lib / SILOptimizer / Transforms / RedundantLoadElimination . cpp <nl> <nl> / / / This pass eliminates redundant loads . <nl> / / / <nl> / / / A load can be eliminated if its value has already been held somewhere , <nl> - / / / i . e . loaded by a previous load , LSLocation stored by a known <nl> - / / / value . <nl> + / / / i . e . generated by a previous load , LSLocation stored by a known value . <nl> / / / <nl> / / / In this case , one can replace the load instruction with the previous <nl> / / / results . <nl> / / / <nl> - / / / Redundant Load Elimination ( RLE ) eliminates such loads by : <nl> + / / / Redudant Load Elimination ( RLE ) eliminates such loads by : <nl> / / / <nl> / / / 1 . Introducing a notion of a LSLocation that is used to model object <nl> / / / fields . ( See below for more details ) . <nl> <nl> / / / LSValue , becomes the available value for the LSLocation . <nl> / / / <nl> / / / 4 . An optimistic iterative intersection - based dataflow is performed on the <nl> - / / / gen sets until convergence . <nl> + / / / gensets until convergence . <nl> / / / <nl> / / / At the core of RLE , there is the LSLocation class . A LSLocation is an <nl> / / / abstraction of an object field in program . It consists of a base and a <nl> <nl> / / / not be necessary . i . e . a store the struct followed by a load from the <nl> / / / struct . To solve this problem , when RLE detects that an load instruction <nl> / / / can be replaced by forwarded value , it will try to find minimum # of <nl> - / / / extraction necessary to form the forwarded value . It will group the <nl> - / / / available value ' s by the LSValue base , i . e . the LSValues come <nl> - / / / from the same instruction , and then use extraction to obtain the needed <nl> - / / / components of the base . <nl> + / / / extractions necessary to form the forwarded value . It will group the <nl> + / / / available value ' s by the LSValue base , i . e . the LSValues come from the <nl> + / / / same instruction , and then use extraction to obtain the needed components <nl> + / / / of the base . <nl> / / / <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> <nl> static bool isReachable ( SILBasicBlock * Block ) { <nl> return false ; <nl> } <nl> <nl> - static bool isForwardableEdge ( SILBasicBlock * BB ) { <nl> - if ( auto * TI = BB - > getTerminator ( ) ) { <nl> - if ( isa < CondBranchInst > ( TI ) | | isa < BranchInst > ( TI ) ) <nl> - return true ; <nl> - } <nl> - return false ; <nl> - } <nl> - <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> / / Basic Block Location State <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> namespace { <nl> <nl> + / / If there are too many locations in the function , we give up . <nl> + constexpr unsigned MaxLSLocationLimit = 2048 ; <nl> + <nl> / / / forward declaration . <nl> class RLEContext ; <nl> / / / State of the load store in one basic block which allows for forwarding from <nl> / / / loads , stores - > loads <nl> class BlockState { <nl> + public : <nl> + enum class ValueState : unsigned { <nl> + CoverValues = 0 , <nl> + ConcreteValues = 1 , <nl> + CoverAndConcreteValues = 2 , <nl> + } ; <nl> + <nl> + private : <nl> / / / The basic block that we are optimizing . <nl> SILBasicBlock * BB ; <nl> <nl> class BlockState { <nl> / / / Check whether the ForwardSetOut has changed . If it does , we need to <nl> / / / rerun the data flow to reach fixed point . <nl> bool updateForwardSetOut ( ) { <nl> - bool Changed = ( ForwardSetIn ! = ForwardSetOut ) ; <nl> - / / Reached the end of this basic block , update the end - of - block <nl> - / / ForwardSetOut and ForwardValOut ; <nl> + bool Changed = false ; <nl> + / / Check the available value bit vector for changes . <nl> + Changed | = ( ForwardSetIn ! = ForwardSetOut ) ; <nl> ForwardSetOut = ForwardSetIn ; <nl> ForwardValOut = ForwardValIn ; <nl> return Changed ; <nl> class BlockState { <nl> <nl> / / / BitVector manipulation functions . <nl> void clearLSLocations ( ) ; <nl> - void startTrackingLSLocation ( unsigned bit , unsigned VBit ) ; <nl> - void stopTrackingLSLocation ( unsigned bit ) ; <nl> - void updateTrackedLSLocation ( unsigned bit , unsigned VBit ) ; <nl> - bool isTrackingLSLocation ( unsigned bit ) ; <nl> + void startTrackingLSLocation ( unsigned LBit , unsigned VBit ) ; <nl> + void stopTrackingLSLocation ( unsigned LBit ) ; <nl> + void updateTrackedLSLocation ( unsigned LBit , unsigned VBit ) ; <nl> + bool isTrackingLSLocation ( unsigned LBit ) ; <nl> <nl> public : <nl> BlockState ( ) = default ; <nl> class BlockState { <nl> / / use ( a ) ; <nl> / / <nl> / / However , by doing so , we can only do the data forwarding after the <nl> - / / data flow stabilizes . <nl> + / / data flow stablizes . <nl> / / <nl> ForwardSetIn . resize ( bitcnt , false ) ; <nl> ForwardSetOut . resize ( bitcnt , reachable ) ; <nl> class BlockState { <nl> / / / block . <nl> llvm : : DenseMap < SILInstruction * , SILValue > & getRL ( ) { return RedundantLoads ; } <nl> <nl> + / / / Look into the value for the given LSLocation at end of the basic block , <nl> + / / / return one of the three ValueState type . <nl> + ValueState getValueStateAtEndOfBlock ( RLEContext & Ctx , LSLocation & L ) ; <nl> + <nl> + / / / Wrappers to query the value state of the location in this BlockState . <nl> + bool isCoverValues ( RLEContext & Ctx , LSLocation & L ) { <nl> + return getValueStateAtEndOfBlock ( Ctx , L ) = = ValueState : : CoverValues ; <nl> + } <nl> + bool isConcreteValues ( RLEContext & Ctx , LSLocation & L ) { <nl> + return getValueStateAtEndOfBlock ( Ctx , L ) = = ValueState : : ConcreteValues ; <nl> + } <nl> + <nl> bool optimize ( RLEContext & Ctx , bool PF ) ; <nl> <nl> / / / Set up the value for redundant load elimination . <nl> class BlockState { <nl> <nl> / / / Returns a * single * forwardable SILValue for the given LSLocation right <nl> / / / before the InsertPt instruction . <nl> - SILValue computeForwardingValues ( RLEContext & Ctx , LSLocation & L , <nl> - SILInstruction * InsertPt , <nl> - bool UseForwardValOut ) ; <nl> + SILValue reduceValuesAtEndOfBlock ( RLEContext & Ctx , LSLocation & L ) ; <nl> } ; <nl> <nl> } / / end anonymous namespace <nl> class BlockState { <nl> <nl> namespace { <nl> <nl> - / / / This class stores global state that we use when computing redundant load and <nl> + using BBValueMap = llvm : : DenseMap < SILBasicBlock * , SILValue > ; <nl> + <nl> + / / / This class stores global state that we use when computing redudant load and <nl> / / / their replacement in each basic block . <nl> class RLEContext { <nl> / / / Function currently processing . <nl> class RLEContext { <nl> / / / The type expansion analysis we will use during all computations . <nl> TypeExpansionAnalysis * TE ; <nl> <nl> + / / / The SSA updater we use to materialize covering values . <nl> + SILSSAUpdater Updater ; <nl> + <nl> / / / The range that we use to iterate over the reverse post order of the given <nl> / / / function . <nl> PostOrderFunctionInfo : : reverse_range ReversePostOrder ; <nl> class RLEContext { <nl> / / / Given the bit , get the LSValue from the LSValueVault . <nl> LSValue & getLSValue ( const unsigned index ) ; <nl> <nl> - / / / Go to the predecessors of the given basic block , compute the value <nl> - / / / for the given LSLocation . <nl> - SILValue computePredecessorCoveringValue ( SILBasicBlock * B , LSLocation & L ) ; <nl> - <nl> - / / / Return true if all the predecessors of the basic block can have <nl> - / / / BBArgument . <nl> - bool withTransistivelyForwardableEdges ( SILBasicBlock * BB ) ; <nl> - <nl> - / / / Given a LSLocation , try to collect all the LSValues for this <nl> - / / / LSLocation in the given basic block . If a LSValue is a covering <nl> - / / / value , collectForwardingValues also create a SILArgument for it . As a <nl> - / / / a result , collectForwardingValues may invalidate TerminatorInsts for <nl> - / / / basic blocks . <nl> - / / / <nl> - / / / UseForwardValOut tells whether to use the ForwardValOut or not . i . e . <nl> - / / / when materialize a covering value , we go to each predecessors and <nl> - / / / collect forwarding values from their ForwardValOuts . <nl> - bool gatherValues ( SILBasicBlock * B , LSLocation & L , LSLocationValueMap & Vs , <nl> - bool UseForwardValOut ) ; <nl> + / / / Transistively collect all the values that make up this location and <nl> + / / / create a SILArgument out of them . <nl> + SILValue computePredecessorLocationValue ( SILBasicBlock * BB , LSLocation & L ) ; <nl> + <nl> + / / / Given a LSLocation , try to collect all the LSValues for this LSLocation <nl> + / / / in the given basic block . <nl> + bool gatherLocationValues ( SILBasicBlock * B , LSLocation & L , <nl> + LSLocationValueMap & Vs , ValueTableMap & VM ) ; <nl> + <nl> } ; <nl> <nl> } / / end anonymous namespace <nl> void BlockState : : updateTrackedLSLocation ( unsigned bit , unsigned VBit ) { <nl> ForwardValIn [ bit ] = VBit ; <nl> } <nl> <nl> - SILValue BlockState : : computeForwardingValues ( RLEContext & Ctx , LSLocation & L , <nl> - SILInstruction * InsertPt , <nl> - bool UseForwardValOut ) { <nl> - SILBasicBlock * ParentBB = InsertPt - > getParent ( ) ; <nl> - bool IsTerminator = ( InsertPt = = ParentBB - > getTerminator ( ) ) ; <nl> - / / We do not have a SILValue for the current LSLocation , try to construct <nl> - / / one . <nl> - / / <nl> - / / Collect the locations and their corresponding values into a map . <nl> + SILValue BlockState : : reduceValuesAtEndOfBlock ( RLEContext & Ctx , LSLocation & L ) { <nl> / / First , collect current available locations and their corresponding values <nl> / / into a map . <nl> LSLocationValueMap Values ; <nl> - if ( ! Ctx . gatherValues ( ParentBB , L , Values , UseForwardValOut ) ) <nl> - return SILValue ( ) ; <nl> <nl> - / / If the InsertPt is the terminator instruction of the basic block , we <nl> - / / * refresh * it as terminator instruction could be deleted as a result <nl> - / / of adding new edge values to the terminator instruction . <nl> - if ( IsTerminator ) <nl> - InsertPt = ParentBB - > getTerminator ( ) ; <nl> + LSLocationList Locs ; <nl> + LSLocation : : expand ( L , & BB - > getModule ( ) , Locs , Ctx . getTE ( ) ) ; <nl> + <nl> + / / Find the values that this basic block defines and the locations which <nl> + / / we do not have a concrete value in the current basic block . <nl> + ValueTableMap & OTM = getForwardValOut ( ) ; <nl> + for ( unsigned i = 0 ; i < Locs . size ( ) ; + + i ) { <nl> + Values [ Locs [ i ] ] = Ctx . getLSValue ( OTM [ Ctx . getLSLocationBit ( Locs [ i ] ) ] ) ; <nl> + } <nl> <nl> / / Second , reduce the available values into a single SILValue we can use to <nl> / / forward . <nl> SILValue TheForwardingValue ; <nl> - TheForwardingValue = LSValue : : reduce ( L , & ParentBB - > getModule ( ) , Values , <nl> - InsertPt , Ctx . getTE ( ) ) ; <nl> + TheForwardingValue = LSValue : : reduce ( L , & BB - > getModule ( ) , Values , <nl> + BB - > getTerminator ( ) , Ctx . getTE ( ) ) ; <nl> / / / Return the forwarding value . <nl> return TheForwardingValue ; <nl> } <nl> bool BlockState : : setupRLE ( RLEContext & Ctx , SILInstruction * I , SILValue Mem ) { <nl> / / Collect the locations and their corresponding values into a map . <nl> LSLocation L ( Mem ) ; <nl> LSLocationValueMap Values ; <nl> - if ( ! Ctx . gatherValues ( I - > getParent ( ) , L , Values , false ) ) <nl> + / / Use the ForwardValIn as we are currently processing the basic block . <nl> + if ( ! Ctx . gatherLocationValues ( I - > getParent ( ) , L , Values , getForwardValIn ( ) ) ) <nl> return false ; <nl> <nl> / / Reduce the available values into a single SILValue we can use to forward . <nl> RLEContext : : RLEContext ( SILFunction * F , AliasAnalysis * AA , <nl> } <nl> } <nl> <nl> - bool RLEContext : : withTransistivelyForwardableEdges ( SILBasicBlock * BB ) { <nl> - / / Have we processed this basic block before ? <nl> - if ( ForwardableEdge . find ( BB ) ! = ForwardableEdge . end ( ) ) <nl> - return ForwardableEdge [ BB ] ; <nl> + BlockState : : ValueState BlockState : : getValueStateAtEndOfBlock ( RLEContext & Ctx , <nl> + LSLocation & L ) { <nl> + LSLocationList Locs ; <nl> + LSLocation : : expand ( L , & BB - > getModule ( ) , Locs , Ctx . getTE ( ) ) ; <nl> <nl> - / / Look at all predecessors whether have forwardable edges . <nl> - llvm : : DenseSet < SILBasicBlock * > Visited ; <nl> - llvm : : SmallVector < SILBasicBlock * , 16 > Worklist ; <nl> + / / Find number of covering value and concrete values for the locations <nl> + / / expanded from the given location . <nl> + unsigned CSCount = 0 , CTCount = 0 ; <nl> + ValueTableMap & OTM = getForwardValOut ( ) ; <nl> + for ( auto & X : Locs ) { <nl> + LSValue & V = Ctx . getLSValue ( OTM [ Ctx . getLSLocationBit ( X ) ] ) ; <nl> + if ( V . isCoveringValue ( ) ) { <nl> + + + CSCount ; <nl> + continue ; <nl> + } <nl> + + + CTCount ; <nl> + } <nl> + <nl> + if ( CSCount = = Locs . size ( ) ) <nl> + return ValueState : : CoverValues ; <nl> + if ( CTCount = = Locs . size ( ) ) <nl> + return ValueState : : ConcreteValues ; <nl> + return ValueState : : CoverAndConcreteValues ; <nl> + } <nl> + <nl> + SILValue RLEContext : : computePredecessorLocationValue ( SILBasicBlock * BB , <nl> + LSLocation & L ) { <nl> + BBValueMap Values ; <nl> + llvm : : DenseSet < SILBasicBlock * > HandledBBs ; <nl> + llvm : : SmallVector < SILBasicBlock * , 8 > WorkList ; <nl> + <nl> + / / Push in all the predecessors to get started . <nl> for ( auto Pred : BB - > getPreds ( ) ) { <nl> - Worklist . push_back ( Pred ) ; <nl> - Visited . insert ( Pred ) ; <nl> + WorkList . push_back ( Pred ) ; <nl> } <nl> <nl> - while ( ! Worklist . empty ( ) ) { <nl> - auto * CurBB = Worklist . back ( ) ; <nl> - Worklist . pop_back ( ) ; <nl> + while ( ! WorkList . empty ( ) ) { <nl> + auto * CurBB = WorkList . pop_back_val ( ) ; <nl> + BlockState & Forwarder = getBlockState ( CurBB ) ; <nl> <nl> - if ( ! isForwardableEdge ( CurBB ) ) { <nl> - ForwardableEdge [ BB ] = false ; <nl> - return false ; <nl> - } <nl> + / / Mark this basic block as processed . <nl> + HandledBBs . insert ( CurBB ) ; <nl> <nl> - for ( auto Pred : CurBB - > getPreds ( ) ) { <nl> - if ( Visited . find ( Pred ) = = Visited . end ( ) ) { <nl> - Visited . insert ( Pred ) ; <nl> - Worklist . push_back ( Pred ) ; <nl> - } <nl> + / / This BlockState contains concrete values for all the expanded locations , <nl> + / / collect and reduce them into a single value in the current block . <nl> + if ( Forwarder . isConcreteValues ( * this , L ) ) { <nl> + Values [ CurBB ] = Forwarder . reduceValuesAtEndOfBlock ( * this , L ) ; <nl> + continue ; <nl> } <nl> - } <nl> - ForwardableEdge [ BB ] = true ; <nl> - return true ; <nl> - } <nl> <nl> - SILValue RLEContext : : computePredecessorCoveringValue ( SILBasicBlock * BB , <nl> - LSLocation & L ) { <nl> - / / This is a covering value , need to go to each of the predecessors to <nl> - / / materialize them and create a SILArgument to merge them . <nl> - / / <nl> - / / If any of the predecessors can not forward an edge value , bail out <nl> - / / for now . <nl> - / / <nl> - / / * NOTE * This is a strong argument in favor of representing PHI nodes <nl> - / / separately from SILArguments . <nl> - / / <nl> - / / TODO : we can create a trampoline basic block if the predecessor has <nl> - / / a non - edgevalue terminator inst . <nl> - / / <nl> - if ( ! withTransistivelyForwardableEdges ( BB ) ) <nl> - return SILValue ( ) ; <nl> - <nl> - / / At this point , we know this LSLocation has available value and we also <nl> - / / know we can forward a SILValue from every predecessor . It is safe to <nl> - / / insert the basic block argument . <nl> - BlockState & Forwarder = getBlockState ( BB ) ; <nl> - SILValue TheForwardingValue = BB - > createBBArg ( L . getType ( ) ) ; <nl> - <nl> - / / For the given LSLocation , we just created a concrete value at the <nl> - / / beginning of this basic block . Update the ForwardValOut for the <nl> - / / current basic block . <nl> - / / <nl> - / / ForwardValOut keeps all the LSLocations and their forwarding values <nl> - / / at the end of the basic block . If a LSLocation has a covering value <nl> - / / at the end of the basic block , we can now replace the covering value with <nl> - / / this concrete SILArgument . <nl> - / / <nl> - / / However , if the LSLocation has a concrete value , we know there must <nl> - / / be an instruction that generated the concrete value between the current <nl> - / / instruction and the end of the basic block , we do not update the <nl> - / / ForwardValOut in this case . <nl> - / / <nl> - / / NOTE : This is necessary to prevent an infinite loop while materializing <nl> - / / the covering value . <nl> - / / <nl> - / / Imagine an empty selfloop block with 1 predecessor having a load [ A ] , to <nl> - / / materialize [ A ] ' s covering value , we go to its predecessors . However , <nl> - / / the backedge will carry a covering value as well in this case . <nl> - / / <nl> - LSLocationList Locs ; <nl> - LSValueList Vals ; <nl> - LSLocation : : expand ( L , & BB - > getModule ( ) , Locs , TE ) ; <nl> - LSValue : : expand ( TheForwardingValue , & BB - > getModule ( ) , Vals , TE ) ; <nl> - ValueTableMap & VTM = Forwarder . getForwardValOut ( ) ; <nl> - for ( unsigned i = 0 ; i < Locs . size ( ) ; + + i ) { <nl> - unsigned bit = getLSLocationBit ( Locs [ i ] ) ; <nl> - if ( ! getLSValue ( VTM [ bit ] ) . isCoveringValue ( ) ) <nl> + / / This BlockState does not contain concrete value for any of the expanded <nl> + / / locations , collect in this block ' s predecessors . <nl> + if ( Forwarder . isCoverValues ( * this , L ) ) { <nl> + for ( auto Pred : CurBB - > getPreds ( ) ) { <nl> + if ( HandledBBs . find ( Pred ) ! = HandledBBs . end ( ) ) <nl> + continue ; <nl> + WorkList . push_back ( Pred ) ; <nl> + } <nl> continue ; <nl> - VTM [ bit ] = getLSValueBit ( Vals [ i ] ) ; <nl> - } <nl> + } <nl> <nl> - / / Compute the SILArgument for the covering value . <nl> - llvm : : SmallVector < SILBasicBlock * , 4 > Preds ; <nl> - for ( auto Pred : BB - > getPreds ( ) ) { <nl> - Preds . push_back ( Pred ) ; <nl> - } <nl> + / / This BlockState contains concrete values for some but not all the <nl> + / / expanded locations , recursively call gatherLocationValues to materialize <nl> + / / the value that reaches this basic block . <nl> + LSLocationValueMap LSValues ; <nl> + if ( ! gatherLocationValues ( CurBB , L , LSValues , Forwarder . getForwardValOut ( ) ) ) <nl> + return SILValue ( ) ; <nl> <nl> - llvm : : DenseMap < SILBasicBlock * , SILValue > Args ; <nl> - for ( auto Pred : Preds ) { <nl> - BlockState & Forwarder = getBlockState ( Pred ) ; <nl> - / / Call computeForwardingValues with using ForwardValOut as we are <nl> - / / computing the LSLocation value at the end of each predecessor . <nl> - Args [ Pred ] = Forwarder . computeForwardingValues ( * this , L , <nl> - Pred - > getTerminator ( ) , true ) ; <nl> - assert ( Args [ Pred ] & & " Fail to create a forwarding value " ) ; <nl> + / / Reduce the available values into a single SILValue we can use to forward . <nl> + SILInstruction * IPt = CurBB - > getTerminator ( ) ; <nl> + Values [ CurBB ] = LSValue : : reduce ( L , & BB - > getModule ( ) , LSValues , IPt , TE ) ; <nl> } <nl> <nl> - / / Create the new SILArgument and set ForwardingValue to it . <nl> - for ( auto Pred : Preds ) { <nl> - / / Update all edges . We do not create new edges in between BBs so this <nl> - / / information should always be correct . <nl> - addNewEdgeValueToBranch ( Pred - > getTerminator ( ) , BB , Args [ Pred ] ) ; <nl> + / / Finally , collect all the values for the SILArgument , materialize it using <nl> + / / the SSAUpdater . <nl> + Updater . Initialize ( L . getType ( ) ) ; <nl> + for ( auto V : Values ) { <nl> + Updater . AddAvailableValue ( V . first , V . second ) ; <nl> } <nl> <nl> - return TheForwardingValue ; <nl> + return Updater . GetValueInMiddleOfBlock ( BB ) ; <nl> } <nl> <nl> LSLocation & RLEContext : : getLSLocation ( const unsigned index ) { <nl> unsigned RLEContext : : getLSLocationBit ( const LSLocation & Loc ) { <nl> / / <nl> / / We should have the location populated by the enumerateLSLocation at this <nl> / / point . <nl> - / / <nl> auto Iter = LocToBitIndex . find ( Loc ) ; <nl> - assert ( Iter ! = LocToBitIndex . end ( ) & & <nl> - " LSLocation should have been enumerated " ) ; <nl> + assert ( Iter ! = LocToBitIndex . end ( ) & & " LSLocation should have been enum ' ed " ) ; <nl> return Iter - > second ; <nl> } <nl> <nl> unsigned RLEContext : : getLSValueBit ( const LSValue & Val ) { <nl> return Iter - > second ; <nl> } <nl> <nl> - bool RLEContext : : gatherValues ( SILBasicBlock * BB , LSLocation & L , <nl> - LSLocationValueMap & Values , <nl> - bool UseForwardValOut ) { <nl> + bool RLEContext : : gatherLocationValues ( SILBasicBlock * BB , LSLocation & L , <nl> + LSLocationValueMap & Values , <nl> + ValueTableMap & VM ) { <nl> LSLocationSet CSLocs ; <nl> LSLocationList Locs ; <nl> LSLocation : : expand ( L , & BB - > getModule ( ) , Locs , TE ) ; <nl> - / / Are we using the ForwardVal at the end of the basic block or not . <nl> - / / If we are collecting values at the end of the basic block , we can <nl> - / / use its ForwardValOut . <nl> - / / <nl> - BlockState & Forwarder = getBlockState ( BB ) ; <nl> - ValueTableMap & OTM = UseForwardValOut ? Forwarder . getForwardValOut ( ) <nl> - : Forwarder . getForwardValIn ( ) ; <nl> + <nl> + auto * Mod = & BB - > getModule ( ) ; <nl> + / / Find the locations that this basic block defines and the locations which <nl> + / / we do not have a concrete value in the current basic block . <nl> for ( auto & X : Locs ) { <nl> - Values [ X ] = getLSValue ( OTM [ getLSLocationBit ( X ) ] ) ; <nl> + Values [ X ] = getLSValue ( VM [ getLSLocationBit ( X ) ] ) ; <nl> if ( ! Values [ X ] . isCoveringValue ( ) ) <nl> continue ; <nl> CSLocs . insert ( X ) ; <nl> } <nl> <nl> - / / Try to reduce it to the minimum # of locations possible , this will help <nl> - / / us to generate as few extractions as possible . <nl> - LSLocation : : reduce ( L , & BB - > getModule ( ) , CSLocs , TE ) ; <nl> + / / For locations which we do not have concrete values for in this basic <nl> + / / block , try to reduce it to the minimum # of locations possible , this <nl> + / / will help us to generate as few SILArguments as possible . <nl> + LSLocation : : reduce ( L , Mod , CSLocs , TE ) ; <nl> <nl> / / To handle covering value , we need to go to the predecessors and <nl> / / materialize them there . <nl> for ( auto & X : CSLocs ) { <nl> - SILValue V = computePredecessorCoveringValue ( BB , X ) ; <nl> + SILValue V = computePredecessorLocationValue ( BB , X ) ; <nl> if ( ! V ) <nl> return false ; <nl> + <nl> / / We ' ve constructed a concrete value for the covering value . Expand and <nl> / / collect the newly created forwardable values . <nl> LSLocationList Locs ; <nl> LSValueList Vals ; <nl> - LSLocation : : expand ( X , & BB - > getModule ( ) , Locs , TE ) ; <nl> - LSValue : : expand ( V , & BB - > getModule ( ) , Vals , TE ) ; <nl> + LSLocation : : expand ( X , Mod , Locs , TE ) ; <nl> + LSValue : : expand ( V , Mod , Vals , TE ) ; <nl> <nl> for ( unsigned i = 0 ; i < Locs . size ( ) ; + + i ) { <nl> Values [ Locs [ i ] ] = Vals [ i ] ; <nl> assert ( Values [ Locs [ i ] ] . isValid ( ) & & " Invalid load store value " ) ; <nl> } <nl> } <nl> - <nl> - / / Sanity check to make sure we have valid load store values for each <nl> - / / LSLocation . <nl> - # ifndef NDEBUG <nl> - for ( auto & X : Locs ) { <nl> - ( void ) X ; <nl> - assert ( Values [ X ] . isValid ( ) & & " Invalid load store value " ) ; <nl> - } <nl> - # endif <nl> return true ; <nl> } <nl> <nl> bool RLEContext : : run ( ) { <nl> + / / Data flow may take too long to converge . <nl> + if ( LSLocationVault . size ( ) > MaxLSLocationLimit ) <nl> + return false ; <nl> + <nl> / / Process basic blocks in RPO . After the data flow converges , run last <nl> / / iteration and perform load forwarding . <nl> bool LastIteration = false ; <nl> class RedundantLoadElimination : public SILFunctionTransform { <nl> <nl> / / / The entry point to the transformation . <nl> void run ( ) override { <nl> + <nl> SILFunction * F = getFunction ( ) ; <nl> DEBUG ( llvm : : dbgs ( ) < < " * * * * * Redundant Load Elimination on function : " <nl> < < F - > getName ( ) < < " * * * * * \ n " ) ; <nl> mmm a / lib / SILOptimizer / Transforms / SimplifyCFG . cpp <nl> ppp b / lib / SILOptimizer / Transforms / SimplifyCFG . cpp <nl> bool SimplifyCFG : : simplifyBranchOperands ( OperandValueArrayRef Operands ) { <nl> for ( auto O = Operands . begin ( ) , E = Operands . end ( ) ; O ! = E ; + + O ) <nl> if ( auto * I = dyn_cast < SILInstruction > ( * O ) ) <nl> if ( SILValue Result = simplifyInstruction ( I ) ) { <nl> - SILValue ( I , 0 ) . replaceAllUsesWith ( Result . getDef ( ) ) ; <nl> + SILValue ( I , 0 ) . replaceAllUsesWith ( Result ) ; <nl> if ( isInstructionTriviallyDead ( I ) ) { <nl> eraseFromParentWithDebugInsts ( I ) ; <nl> Simplified = true ; <nl> mmm a / lib / SILOptimizer / UtilityPasses / LoopInfoPrinter . cpp <nl> ppp b / lib / SILOptimizer / UtilityPasses / LoopInfoPrinter . cpp <nl> <nl> - / / = = = mmmmmmmmmmmm LoopInfoPrinter . h - Print SIL Loop Info - * - C + + - * mmmmmm - = = = / / <nl> + / / = = = mmmmmmmmmmmm LoopInfoPrinter . cpp - Print SIL Loop Info - * - C + + - * mmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / SILOptimizer / Utils / SILSSAUpdater . cpp <nl> ppp b / lib / SILOptimizer / Utils / SILSSAUpdater . cpp <nl> <nl> - / / = = = mmmmmm SILSSAUpdater . h - Unstructured SSA Update Tool mmmmmm * - C + + - * - = = = / / <nl> + / / = = = mmmmmm SILSSAUpdater . cpp - Unstructured SSA Update Tool mmm - * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Sema / CodeSynthesis . cpp <nl> ppp b / lib / Sema / CodeSynthesis . cpp <nl> <nl> - / / = = = mmm TypeCheckDecl . cpp - Type Checking for Declarations mmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm CodeSynthesis . cpp - Type Checking for Declarations mmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Sema / TypeCheckConstraints . cpp <nl> ppp b / lib / Sema / TypeCheckConstraints . cpp <nl> bool TypeChecker : : typeCheckStmtCondition ( StmtCondition & cond , DeclContext * dc , <nl> / / If the pattern didn ' t get a type , it ' s because we ran into some <nl> / / unknown types along the way . We ' ll need to check the initializer . <nl> auto init = elt . getInitializer ( ) ; <nl> - if ( typeCheckBinding ( pattern , init , dc ) ) { <nl> - hadError = true ; <nl> - continue ; <nl> - } <nl> + hadError | = typeCheckBinding ( pattern , init , dc ) ; <nl> elt . setPattern ( pattern ) ; <nl> elt . setInitializer ( init ) ; <nl> hadAnyFalsable | = pattern - > isRefutablePattern ( ) ; <nl> mmm a / lib / Sema / TypeCheckRequest . cpp <nl> ppp b / lib / Sema / TypeCheckRequest . cpp <nl> <nl> - / / = = = mmm TypeCheckRequest . h - Type Checking Request mmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm TypeCheckRequest . cpp - Type Checking Request mmmmmmmmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / lib / Sema / TypeCheckStmt . cpp <nl> ppp b / lib / Sema / TypeCheckStmt . cpp <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> RS - > isImplicit ( ) ) ; <nl> } <nl> <nl> - auto failed = TC . typeCheckExpression ( E , DC , ResultTy , CTP_ReturnStmt ) ; <nl> + auto hadTypeError = TC . typeCheckExpression ( E , DC , ResultTy , CTP_ReturnStmt ) ; <nl> RS - > setResult ( E ) ; <nl> <nl> - if ( failed ) { <nl> + if ( hadTypeError ) { <nl> tryDiagnoseUnnecessaryCastOverOptionSet ( TC . Context , E , ResultTy , <nl> DC - > getParentModule ( ) ) ; <nl> return nullptr ; <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> Type exnType = TC . getExceptionType ( DC , TS - > getThrowLoc ( ) ) ; <nl> if ( ! exnType ) return TS ; <nl> <nl> - auto failed = TC . typeCheckExpression ( E , DC , exnType , CTP_ThrowStmt ) ; <nl> + auto hadTypeError = TC . typeCheckExpression ( E , DC , exnType , CTP_ThrowStmt ) ; <nl> TS - > setSubExpr ( E ) ; <nl> - <nl> - if ( failed ) return nullptr ; <nl> <nl> - return TS ; <nl> + return hadTypeError ? nullptr : TS ; <nl> } <nl> <nl> Stmt * visitDeferStmt ( DeferStmt * DS ) { <nl> TC . typeCheckDecl ( DS - > getTempDecl ( ) , / * isFirstPass * / false ) ; <nl> <nl> Expr * theCall = DS - > getCallExpr ( ) ; <nl> - if ( ! TC . typeCheckExpression ( theCall , DC ) ) <nl> - return nullptr ; <nl> + auto hadTypeError = TC . typeCheckExpression ( theCall , DC ) ; <nl> DS - > setCallExpr ( theCall ) ; <nl> <nl> - return DS ; <nl> + return hadTypeError ? nullptr : DS ; <nl> } <nl> <nl> Stmt * visitIfStmt ( IfStmt * IS ) { <nl> - StmtCondition C = IS - > getCond ( ) ; <nl> + bool hadTypeError = false ; <nl> <nl> - if ( TC . typeCheckStmtCondition ( C , DC , diag : : if_always_true ) ) return 0 ; <nl> + StmtCondition C = IS - > getCond ( ) ; <nl> + hadTypeError | = TC . typeCheckStmtCondition ( C , DC , diag : : if_always_true ) ; <nl> IS - > setCond ( C ) ; <nl> <nl> AddLabeledStmt ifNest ( * this , IS ) ; <nl> <nl> Stmt * S = IS - > getThenStmt ( ) ; <nl> - if ( typeCheckStmt ( S ) ) return 0 ; <nl> + hadTypeError | = typeCheckStmt ( S ) ; <nl> IS - > setThenStmt ( S ) ; <nl> <nl> if ( ( S = IS - > getElseStmt ( ) ) ) { <nl> - if ( typeCheckStmt ( S ) ) return 0 ; <nl> + hadTypeError | = typeCheckStmt ( S ) ; <nl> IS - > setElseStmt ( S ) ; <nl> } <nl> <nl> - return IS ; <nl> + return hadTypeError ? nullptr : IS ; <nl> } <nl> <nl> Stmt * visitGuardStmt ( GuardStmt * GS ) { <nl> + bool hadTypeError = false ; <nl> StmtCondition C = GS - > getCond ( ) ; <nl> - if ( TC . typeCheckStmtCondition ( C , DC , diag : : guard_always_succeeds ) ) <nl> - return 0 ; <nl> + hadTypeError | = TC . typeCheckStmtCondition ( C , DC , diag : : guard_always_succeeds ) ; <nl> GS - > setCond ( C ) ; <nl> <nl> AddLabeledStmt ifNest ( * this , GS ) ; <nl> <nl> Stmt * S = GS - > getBody ( ) ; <nl> - if ( typeCheckStmt ( S ) ) return 0 ; <nl> + hadTypeError | = typeCheckStmt ( S ) ; <nl> GS - > setBody ( S ) ; <nl> - return GS ; <nl> + return hadTypeError ? nullptr : GS ; <nl> } <nl> <nl> Stmt * visitIfConfigStmt ( IfConfigStmt * ICS ) { <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> Stmt * visitDoStmt ( DoStmt * DS ) { <nl> AddLabeledStmt loopNest ( * this , DS ) ; <nl> Stmt * S = DS - > getBody ( ) ; <nl> - if ( typeCheckStmt ( S ) ) return 0 ; <nl> + bool hadTypeError = typeCheckStmt ( S ) ; <nl> DS - > setBody ( S ) ; <nl> - return DS ; <nl> + return hadTypeError ? nullptr : DS ; <nl> } <nl> <nl> Stmt * visitWhileStmt ( WhileStmt * WS ) { <nl> + bool hadTypeError = false ; <nl> StmtCondition C = WS - > getCond ( ) ; <nl> - if ( TC . typeCheckStmtCondition ( C , DC , diag : : while_always_true ) ) return 0 ; <nl> + hadTypeError | = TC . typeCheckStmtCondition ( C , DC , diag : : while_always_true ) ; <nl> WS - > setCond ( C ) ; <nl> <nl> AddLabeledStmt loopNest ( * this , WS ) ; <nl> Stmt * S = WS - > getBody ( ) ; <nl> - if ( typeCheckStmt ( S ) ) return 0 ; <nl> + hadTypeError | = typeCheckStmt ( S ) ; <nl> WS - > setBody ( S ) ; <nl> <nl> - return WS ; <nl> + return hadTypeError ? nullptr : WS ; <nl> } <nl> Stmt * visitRepeatWhileStmt ( RepeatWhileStmt * RWS ) { <nl> + bool hadTypeError = false ; <nl> { <nl> AddLabeledStmt loopNest ( * this , RWS ) ; <nl> Stmt * S = RWS - > getBody ( ) ; <nl> - if ( typeCheckStmt ( S ) ) return nullptr ; <nl> + hadTypeError | = typeCheckStmt ( S ) ; <nl> RWS - > setBody ( S ) ; <nl> } <nl> <nl> Expr * E = RWS - > getCond ( ) ; <nl> - if ( TC . typeCheckCondition ( E , DC ) ) return nullptr ; <nl> + hadTypeError | = TC . typeCheckCondition ( E , DC ) ; <nl> RWS - > setCond ( E ) ; <nl> - return RWS ; <nl> + return hadTypeError ? nullptr : RWS ; <nl> } <nl> Stmt * visitForStmt ( ForStmt * FS ) { <nl> + bool hadTypeError = false ; <nl> / / Type check any var decls in the initializer . <nl> for ( auto D : FS - > getInitializerVarDecls ( ) ) <nl> TC . typeCheckDecl ( D , / * isFirstPass * / false ) ; <nl> <nl> if ( auto * Initializer = FS - > getInitializer ( ) . getPtrOrNull ( ) ) { <nl> - if ( TC . typeCheckExpression ( Initializer , DC , Type ( ) , CTP_Unused , <nl> - TypeCheckExprFlags : : IsDiscarded ) ) <nl> - return nullptr ; <nl> + hadTypeError | = TC . typeCheckExpression ( Initializer , DC , Type ( ) , CTP_Unused , <nl> + TypeCheckExprFlags : : IsDiscarded ) ; <nl> FS - > setInitializer ( Initializer ) ; <nl> TC . checkIgnoredExpr ( Initializer ) ; <nl> } <nl> <nl> if ( auto * Cond = FS - > getCond ( ) . getPtrOrNull ( ) ) { <nl> - if ( TC . typeCheckCondition ( Cond , DC ) ) <nl> - return nullptr ; <nl> + hadTypeError | = TC . typeCheckCondition ( Cond , DC ) ; <nl> FS - > setCond ( Cond ) ; <nl> } <nl> <nl> if ( auto * Increment = FS - > getIncrement ( ) . getPtrOrNull ( ) ) { <nl> - if ( TC . typeCheckExpression ( Increment , DC , Type ( ) , CTP_Unused , <nl> - TypeCheckExprFlags : : IsDiscarded ) ) <nl> - return nullptr ; <nl> + hadTypeError | = TC . typeCheckExpression ( Increment , DC , Type ( ) , CTP_Unused , <nl> + TypeCheckExprFlags : : IsDiscarded ) ; <nl> FS - > setIncrement ( Increment ) ; <nl> TC . checkIgnoredExpr ( Increment ) ; <nl> } <nl> <nl> AddLabeledStmt loopNest ( * this , FS ) ; <nl> Stmt * S = FS - > getBody ( ) ; <nl> - if ( typeCheckStmt ( S ) ) return nullptr ; <nl> + hadTypeError | = typeCheckStmt ( S ) ; <nl> FS - > setBody ( S ) ; <nl> <nl> - return FS ; <nl> + return hadTypeError ? nullptr : FS ; <nl> } <nl> <nl> Stmt * visitForEachStmt ( ForEachStmt * S ) { <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> } <nl> <nl> Stmt * visitSwitchStmt ( SwitchStmt * S ) { <nl> + bool hadTypeError = false ; <nl> / / Type - check the subject expression . <nl> Expr * subjectExpr = S - > getSubjectExpr ( ) ; <nl> - bool hadTypeError = TC . typeCheckExpression ( subjectExpr , DC ) ; <nl> + hadTypeError | = TC . typeCheckExpression ( subjectExpr , DC ) ; <nl> subjectExpr = TC . coerceToMaterializable ( subjectExpr ) ; <nl> - <nl> - if ( ! subjectExpr ) <nl> - return nullptr ; <nl> - <nl> - S - > setSubjectExpr ( subjectExpr ) ; <nl> - Type subjectType = subjectExpr - > getType ( ) ; <nl> + if ( subjectExpr ) { <nl> + S - > setSubjectExpr ( subjectExpr ) ; <nl> + } <nl> + Type subjectType = S - > getSubjectExpr ( ) - > getType ( ) ; <nl> <nl> / / Type - check the case blocks . <nl> AddSwitchNest switchNest ( * this ) ; <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> if ( auto * newPattern = TC . resolvePattern ( pattern , DC , <nl> / * isStmtCondition * / false ) ) { <nl> pattern = newPattern ; <nl> + / / Coerce the pattern to the subject ' s type . <nl> + if ( TC . coercePatternToType ( pattern , DC , subjectType , <nl> + TR_InExpression ) ) { <nl> + / / If that failed , mark any variables binding pieces of the pattern <nl> + / / as invalid to silence follow - on errors . <nl> + pattern - > forEachVariable ( [ & ] ( VarDecl * VD ) { <nl> + VD - > overwriteType ( ErrorType : : get ( TC . Context ) ) ; <nl> + VD - > setInvalid ( ) ; <nl> + } ) ; <nl> + hadTypeError = true ; <nl> + } <nl> + labelItem . setPattern ( pattern ) ; <nl> } else { <nl> hadTypeError = true ; <nl> - continue ; <nl> } <nl> <nl> - / / Coerce the pattern to the subject ' s type . <nl> - if ( TC . coercePatternToType ( pattern , DC , subjectType , TR_InExpression ) ) { <nl> - / / If that failed , mark any variables binding pieces of the pattern <nl> - / / as invalid to silence follow - on errors . <nl> - pattern - > forEachVariable ( [ & ] ( VarDecl * VD ) { <nl> - VD - > overwriteType ( ErrorType : : get ( TC . Context ) ) ; <nl> - VD - > setInvalid ( ) ; <nl> - } ) ; <nl> - hadTypeError = true ; <nl> - } <nl> - labelItem . setPattern ( pattern ) ; <nl> - <nl> / / Check the guard expression , if present . <nl> if ( auto * guard = labelItem . getGuardExpr ( ) ) { <nl> - if ( TC . typeCheckCondition ( guard , DC ) ) <nl> - hadTypeError = true ; <nl> - else <nl> - labelItem . setGuardExpr ( guard ) ; <nl> + hadTypeError | = TC . typeCheckCondition ( guard , DC ) ; <nl> + labelItem . setGuardExpr ( guard ) ; <nl> } <nl> } <nl> <nl> / / Type - check the body statements . <nl> Stmt * body = caseBlock - > getBody ( ) ; <nl> - if ( typeCheckStmt ( body ) ) <nl> - hadTypeError = true ; <nl> + hadTypeError | = typeCheckStmt ( body ) ; <nl> caseBlock - > setBody ( body ) ; <nl> } <nl> <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> } <nl> <nl> bool checkCatchStmt ( CatchStmt * S ) { <nl> + bool hadTypeError = false ; <nl> / / Check the catch pattern . <nl> - bool hadTypeError = TC . typeCheckCatchPattern ( S , DC ) ; <nl> + hadTypeError | = TC . typeCheckCatchPattern ( S , DC ) ; <nl> <nl> / / Check the guard expression , if present . <nl> if ( Expr * guard = S - > getGuardExpr ( ) ) { <nl> class StmtChecker : public StmtVisitor < StmtChecker , Stmt * > { <nl> / / Type - check the ' do ' body . Type failures in here will generally <nl> / / not cause type failures in the ' catch ' clauses . <nl> Stmt * newBody = S - > getBody ( ) ; <nl> - if ( typeCheckStmt ( newBody ) ) { <nl> - hadTypeError = true ; <nl> - } else { <nl> - S - > setBody ( newBody ) ; <nl> - } <nl> + hadTypeError | = typeCheckStmt ( newBody ) ; <nl> + S - > setBody ( newBody ) ; <nl> <nl> / / Check all the catch clauses independently . <nl> for ( auto clause : S - > getCatches ( ) ) { <nl> mmm a / stdlib / private / StdlibUnittest / StdlibUnittest . swift . gyb <nl> ppp b / stdlib / private / StdlibUnittest / StdlibUnittest . swift . gyb <nl> public func runAllTests ( ) { <nl> } else { <nl> var runTestsInProcess : Bool = false <nl> var filter : String ? = nil <nl> - for var i = 0 ; i < Process . arguments . length ; { <nl> + var i = 0 <nl> + while i < Process . arguments . length { <nl> let arg = Process . arguments [ i ] <nl> if arg = = " - - stdlib - unittest - in - process " { <nl> runTestsInProcess = true <nl> mmm a / stdlib / private / SwiftPrivate / ShardedAtomicCounter . swift <nl> ppp b / stdlib / private / SwiftPrivate / ShardedAtomicCounter . swift <nl> public struct _stdlib_ShardedAtomicCounter { <nl> let hardwareConcurrency = _stdlib_getHardwareConcurrency ( ) <nl> let count = max ( 8 , hardwareConcurrency * hardwareConcurrency ) <nl> let shards = UnsafeMutablePointer < Int > ( allocatingCapacity : count ) <nl> - for var i = 0 ; i ! = count ; i + + { <nl> - ( shards + i ) . initializePointee ( 0 ) <nl> + for i in 0 . . < count { <nl> + ( shards + i ) . initialize ( 0 ) <nl> } <nl> self . _shardsPtr = shards <nl> self . _shardsCount = count <nl> public struct _stdlib_ShardedAtomicCounter { <nl> var result = 0 <nl> let shards = self . _shardsPtr <nl> let count = self . _shardsCount <nl> - for var i = 0 ; i ! = count ; i + + { <nl> + for i in 0 . . < count { <nl> result + = _swift_stdlib_atomicLoadInt ( object : shards + i ) <nl> } <nl> return result <nl> public struct _stdlib_ShardedAtomicCounter { <nl> <nl> public mutating func randomInt ( ) - > Int { <nl> var result = 0 <nl> - for var i = 0 ; i ! = Int . _sizeInBits ; + + i { <nl> + for _ in 0 . . < Int . _sizeInBits { <nl> result = ( result < < 1 ) | ( _state & 1 ) <nl> _state = ( _state > > 1 ) ^ ( - ( _state & 1 ) & Int ( bitPattern : 0xD0000001 ) ) <nl> } <nl> mmm a / stdlib / private / SwiftPrivate / SwiftPrivate . swift <nl> ppp b / stdlib / private / SwiftPrivate / SwiftPrivate . swift <nl> public func scan < <nl> <nl> public func randomShuffle < T > ( a : [ T ] ) - > [ T ] { <nl> var result = a <nl> - for var i = a . length - 1 ; i ! = 0 ; - - i { <nl> + for i in ( 1 . . < a . length ) . reverse ( ) { <nl> / / FIXME : 32 bits are not enough in general case ! <nl> let j = Int ( rand32 ( exclusiveUpperBound : UInt32 ( i + 1 ) ) ) <nl> if i ! = j { <nl> mmm a / stdlib / private / SwiftPrivateDarwinExtras / Subprocess . swift <nl> ppp b / stdlib / private / SwiftPrivateDarwinExtras / Subprocess . swift <nl> <nl> - / / = = = mmm DarwinExtras . swift mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm Subprocess . swift mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / stdlib / private / SwiftPrivateDarwinExtras / SwiftPrivateDarwinExtras . swift <nl> ppp b / stdlib / private / SwiftPrivateDarwinExtras / SwiftPrivateDarwinExtras . swift <nl> <nl> - / / = = = mmm DarwinExtras . swift mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> + / / = = = mmm SwiftPrivateDarwinExtras . swift mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / stdlib / public / common / MirrorCommon . py <nl> ppp b / stdlib / public / common / MirrorCommon . py <nl> <nl> # If you edit this , make sure to also accordingly tweak the actual template files . <nl> <nl> def getDisposition ( disp = None ) : <nl> - if disp = = None : <nl> + if disp is None : <nl> return ' . Aggregate ' <nl> if len ( disp ) = = 0 or disp [ 0 ] ! = ' . ' : <nl> disp = ' . ' + disp <nl> return disp <nl> <nl> - def _getGenericArgStrings ( genericArgs = None , genericConstraints = None ) : <nl> - if genericArgs = = None : <nl> + def _getGenericArgStrings ( genericArgs = None , genericConstraints = None ) : <nl> + if genericArgs is None : <nl> return ( ' ' , ' ' ) <nl> genericArgString = ' ' <nl> first = True <nl> for arg in genericArgs : <nl> if not first : <nl> - genericArgString = genericArgString + ' , ' <nl> + genericArgString = genericArgString + ' , ' <nl> first = False <nl> genericArgString = genericArgString + arg <nl> - if genericConstraints = = None : <nl> + if genericConstraints is None : <nl> genericConstraintString = genericArgString <nl> else : <nl> genericConstraintString = ' ' <nl> def _getGenericArgStrings ( genericArgs = None , genericConstraints = None ) : <nl> genericConstraintString = genericConstraintString + ' : ' + cons <nl> genericArgString = ' < ' + genericArgString + ' > ' <nl> genericConstraintString = ' < ' + genericConstraintString + ' > ' <nl> - return ( genericArgString , genericConstraintString ) <nl> + return ( genericArgString , genericConstraintString ) <nl> <nl> - def getGenericArgString ( genericArgs = None , genericConstraints = None ) : <nl> - return _getGenericArgStrings ( genericArgs , genericConstraints ) [ 0 ] <nl> + def getGenericArgString ( genericArgs = None , genericConstraints = None ) : <nl> + return _getGenericArgStrings ( genericArgs , genericConstraints ) [ 0 ] <nl> <nl> - def getGenericConstraintString ( genericArgs = None , genericConstraints = None ) : <nl> - return _getGenericArgStrings ( genericArgs , genericConstraints ) [ 1 ] <nl> + def getGenericConstraintString ( genericArgs = None , genericConstraints = None ) : <nl> + return _getGenericArgStrings ( genericArgs , genericConstraints ) [ 1 ] <nl> <nl> mmm a / stdlib / public / core / HashedCollections . swift . gyb <nl> ppp b / stdlib / public / core / HashedCollections . swift . gyb <nl> internal enum _Variant $ { Self } Storage < $ { TypeParametersDecl } > : _HashStorage { <nl> } <nl> } <nl> <nl> - internal mutating func nativeKeepCapacityRemoveAll ( ) { <nl> + internal mutating func nativeRemoveAll ( ) { <nl> + var nativeStorage = native <nl> + <nl> + / / FIXME ( performance ) : if the storage is non - uniquely referenced , we <nl> + / / shouldn ’ t be copying the elements into new storage and then immediately <nl> + / / deleting the elements . We should detect that the storage is not uniquely <nl> + / / referenced and allocate new empty storage of appropriate capacity . <nl> <nl> / / We have already checked for the empty dictionary case , so we will always <nl> / / mutating the dictionary storage . Request unique storage . <nl> + let ( reallocated , _ ) = ensureUniqueNativeStorage ( nativeStorage . capacity ) <nl> + if reallocated { <nl> + nativeStorage = native <nl> + } <nl> <nl> - if ! isUniquelyReferenced ( ) { <nl> - self = . Native ( NativeStorageOwner ( minimumCapacity : native . capacity ) ) <nl> - } else { <nl> - for b in 0 . . < native . capacity { <nl> - if native . isInitializedEntry ( b ) { <nl> - native . destroyEntryAt ( b ) <nl> - } <nl> + for var b = 0 ; b ! = nativeStorage . capacity ; + + b { <nl> + if nativeStorage . isInitializedEntry ( b ) { <nl> + nativeStorage . destroyEntryAt ( b ) <nl> } <nl> } <nl> - native . length = 0 <nl> + nativeStorage . length = 0 <nl> } <nl> <nl> internal mutating func removeAll ( keepingCapacity keepCapacity : Bool ) { <nl> internal enum _Variant $ { Self } Storage < $ { TypeParametersDecl } > : _HashStorage { <nl> } <nl> <nl> if _fastPath ( guaranteedNative ) { <nl> - nativeKeepCapacityRemoveAll ( ) <nl> + nativeRemoveAll ( ) <nl> return <nl> } <nl> <nl> switch self { <nl> case . Native : <nl> - nativeKeepCapacityRemoveAll ( ) <nl> + nativeRemoveAll ( ) <nl> case . Cocoa ( let cocoaStorage ) : <nl> # if _runtime ( _ObjC ) <nl> self = . Native ( NativeStorage . Owner ( minimumCapacity : cocoaStorage . length ) ) <nl> mmm a / stdlib / public / core / IntegerParsing . swift . gyb <nl> ppp b / stdlib / public / core / IntegerParsing . swift . gyb <nl> internal func _parseUnsignedAsciiAsUIntMax ( <nl> / / / non - negative number < = ` maximum ` , return that number . Otherwise , <nl> / / / return ` nil ` . <nl> / / / <nl> - / / / - Note : If ` text ` begins with ` " + " ` or ` " - " ` , even if the rest of <nl> - / / / the characters are ` " 0 " ` , the result is ` nil ` . <nl> + / / / - Note : For text matching the regular expression " - 0 + " , the result <nl> + / / / is ` 0 ` , not ` nil ` . <nl> internal func _parseAsciiAsUIntMax ( <nl> - u16 : String . UTF16View , _ radix : Int , _ maximum : UIntMax <nl> + utf16 : String . UTF16View , _ radix : Int , _ maximum : UIntMax <nl> ) - > UIntMax ? { <nl> - if u16 . isEmpty { return nil } <nl> - let c = u16 . first <nl> - if _fastPath ( c ! = _ascii16 ( " - " ) ) { <nl> - let unsignedText <nl> - = c = = _ascii16 ( " + " ) ? u16 . dropFirst ( ) : u16 <nl> - return _parseUnsignedAsciiAsUIntMax ( unsignedText , radix , maximum ) <nl> - } <nl> - else { <nl> - return _parseAsciiAsIntMax ( u16 , radix , 0 ) = = 0 ? 0 : nil <nl> - } <nl> + if utf16 . isEmpty { return nil } <nl> + / / Parse ( optional ) sign . <nl> + let ( digitsUTF16 , hasMinus ) = _parseOptionalAsciiSign ( utf16 ) <nl> + / / Parse digits . <nl> + guard let result = _parseUnsignedAsciiAsUIntMax ( digitsUTF16 , radix , maximum ) <nl> + else { return nil } <nl> + / / Disallow < 0 . <nl> + if hasMinus & & result ! = 0 { return nil } <nl> + / / Return . <nl> + return result <nl> } <nl> <nl> / / / If text is an ASCII representation in the given ` radix ` of a <nl> internal func _parseAsciiAsUIntMax ( <nl> / / / - Note : For text matching the regular expression " - 0 + " , the result <nl> / / / is ` 0 ` , not ` nil ` . <nl> internal func _parseAsciiAsIntMax ( <nl> - u16 : String . UTF16View , _ radix : Int , _ maximum : IntMax <nl> + utf16 : String . UTF16View , _ radix : Int , _ maximum : IntMax <nl> ) - > IntMax ? { <nl> _sanityCheck ( maximum > = 0 , " maximum should be non - negative " ) <nl> + if utf16 . isEmpty { return nil } <nl> + / / Parse ( optional ) sign . <nl> + let ( digitsUTF16 , hasMinus ) = _parseOptionalAsciiSign ( utf16 ) <nl> + / / Parse digits . + 1 for because e . g . Int8 ' s range is - 128 . . . 127 . <nl> + let absValueMax = UIntMax ( bitPattern : maximum ) + ( hasMinus ? 1 : 0 ) <nl> + guard let absValue = <nl> + _parseUnsignedAsciiAsUIntMax ( digitsUTF16 , radix , absValueMax ) <nl> + else { return nil } <nl> + / / Return signed result . <nl> + return IntMax ( bitPattern : hasMinus ? 0 & - absValue : absValue ) <nl> + } <nl> <nl> - if u16 . isEmpty { return nil } <nl> - <nl> - / / Drop any leading " - " <nl> - let negative = u16 . first = = _ascii16 ( " - " ) <nl> - let absResultText = negative ? u16 . dropFirst ( ) : u16 <nl> - <nl> - let absResultMax = UIntMax ( bitPattern : maximum ) + ( negative ? 1 : 0 ) <nl> - <nl> - / / Parse the result as unsigned <nl> - if let absResult = _parseAsciiAsUIntMax ( absResultText , radix , absResultMax ) { <nl> - return IntMax ( bitPattern : negative ? 0 & - absResult : absResult ) <nl> + / / / Strip an optional single leading ASCII plus / minus sign from ` utf16 ` . <nl> + private func _parseOptionalAsciiSign ( <nl> + utf16 : String . UTF16View <nl> + ) - > ( digitsUTF16 : String . UTF16View , isMinus : Bool ) { <nl> + switch utf16 . first { <nl> + case _ascii16 ( " - " ) ? : return ( utf16 . dropFirst ( ) , true ) <nl> + case _ascii16 ( " + " ) ? : return ( utf16 . dropFirst ( ) , false ) <nl> + default : return ( utf16 , false ) <nl> } <nl> - return nil <nl> } <nl> <nl> / / = = = mmm Loop over all integer types mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> mmm a / stdlib / public / core / UnicodeTrie . swift . gyb <nl> ppp b / stdlib / public / core / UnicodeTrie . swift . gyb <nl> SuppDataBytesOffset = 12817 <nl> import SwiftShims <nl> <nl> public / / @ testable <nl> - enum _GraphemeClusterBreakPropertyValue : Int , CustomStringConvertible { <nl> + enum _GraphemeClusterBreakPropertyValue : Int { <nl> case Other = 0 <nl> case CR = 1 <nl> case LF = 2 <nl> enum _GraphemeClusterBreakPropertyValue : Int , CustomStringConvertible { <nl> case T = 10 <nl> case LV = 11 <nl> case LVT = 12 <nl> - <nl> - / / / A textual representation of ` self ` . <nl> - public / / @ testable <nl> - var description : String { <nl> - switch self { <nl> - case Other : <nl> - return " Other " <nl> - case CR : <nl> - return " CR " <nl> - case LF : <nl> - return " LF " <nl> - case Control : <nl> - return " Control " <nl> - case Extend : <nl> - return " Extend " <nl> - case Regional_Indicator : <nl> - return " Regional_Indicator " <nl> - case Prepend : <nl> - return " Prepend " <nl> - case SpacingMark : <nl> - return " SpacingMark " <nl> - case L : <nl> - return " L " <nl> - case V : <nl> - return " V " <nl> - case T : <nl> - return " T " <nl> - case LV : <nl> - return " LV " <nl> - case LVT : <nl> - return " LVT " <nl> - } <nl> - } <nl> } <nl> <nl> / / It is expensive to convert a raw enum value to an enum , so we use this type <nl> mmm a / stdlib / public / runtime / HeapObject . cpp <nl> ppp b / stdlib / public / runtime / HeapObject . cpp <nl> <nl> - / / = = = mmm Alloc . cpp - Swift Language ABI Allocation Support mmmmmmmmmmmmmmm - = = = / / <nl> + / / = = = mmm HeapObject . cpp - Swift Language ABI Allocation Support mmmmmmmmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / stdlib / public / runtime / Reflection . mm <nl> ppp b / stdlib / public / runtime / Reflection . mm <nl> static void getEnumMirrorInfo ( const OpaqueValue * value , <nl> const OpaqueValue * value , <nl> const Metadata * type ) { <nl> if ( ! isEnumReflectable ( type ) ) <nl> - return NULL ; <nl> + return nullptr ; <nl> <nl> const auto Enum = static_cast < const EnumMetadata * > ( type ) ; <nl> const auto & Description = Enum - > Description - > Enum ; <nl> mmm a / stdlib / public / stubs / Stubs . cpp <nl> ppp b / stdlib / public / stubs / Stubs . cpp <nl> static const char * _swift_stdlib_strtoX_clocale_impl ( <nl> * outResult = result ; <nl> if ( result = = huge | | result = = - huge | | result = = 0 . 0 | | result = = - 0 . 0 ) { <nl> if ( errno = = ERANGE ) <nl> - EndPtr = NULL ; <nl> + EndPtr = nullptr ; <nl> } <nl> return EndPtr ; <nl> } <nl> mmm a / test / 1_stdlib / NSStringAPI . swift <nl> ppp b / test / 1_stdlib / NSStringAPI . swift <nl> NSStringAPIs . test ( " folding ( options : locale : ) " ) { <nl> <nl> func fwo ( <nl> s : String , _ options : NSStringCompareOptions <nl> - ) ( loc : NSLocale ? ) - > String { <nl> - return s . folding ( options : options , locale : loc ) <nl> + ) - > ( NSLocale ? ) - > String { <nl> + return { loc in s . stringByFoldingWithOptions ( options , locale : loc ) } <nl> } <nl> <nl> expectLocalizedEquality ( " abcd " , fwo ( " abCD " , . CaseInsensitiveSearch ) , " en " ) <nl> mmm a / test / 1_stdlib / NewArray . swift . gyb <nl> ppp b / test / 1_stdlib / NewArray . swift . gyb <nl> <nl> % # - * - mode : swift - * - <nl> - / / = = = mmm Array . swift mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm NewArray . swift mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / test / 1_stdlib / NumericParsing . swift . gyb <nl> ppp b / test / 1_stdlib / NumericParsing . swift . gyb <nl> tests . test ( " $ { Self } / success " ) { <nl> expectEqual ( nil , $ { Self } ( " $ { minValue - 1 } " ) ) <nl> expectEqual ( nil , $ { Self } ( " \ u { 1D7FF } " ) ) / / MATHEMATICAL MONOSPACE DIGIT NINE <nl> <nl> + / / Cases that should fail to parse <nl> + expectEqual ( nil , $ { Self } ( " - - 0 " ) ) / / Zero w / repeated plus <nl> + expectEqual ( nil , $ { Self } ( " - + 5 " ) ) / / Non - zero with - + <nl> + <nl> / / Do more exhaustive testing <nl> % for radix in radices_to_test : <nl> % for n in required_values + range ( <nl> mmm a / test / 1_stdlib / SceneKit . swift <nl> ppp b / test / 1_stdlib / SceneKit . swift <nl> if # available ( iOS 8 . 0 , OSX 10 . 10 , * ) { <nl> node . position . z = scn_float_from_cg <nl> expectTrue ( SCNVector3EqualToVector3 ( node . position , scn_vec3_ref ) ) <nl> <nl> - let f1 : SCNFloat = scn_vec3_ref . x ; <nl> - let f2 : SCNFloat = scn_vec4_ref . y ; <nl> + let f1 : SCNFloat = scn_vec3_ref . x <nl> + let f2 : SCNFloat = scn_vec4_ref . y <nl> expectEqual ( f1 , 1 . 0 ) ; <nl> expectEqual ( f2 , 2 . 0 ) ; <nl> } <nl> mmm a / test / BuildConfigurations / basicDeclarations . swift <nl> ppp b / test / BuildConfigurations / basicDeclarations . swift <nl> <nl> class A { } <nl> <nl> # if FOO <nl> - typealias A1 = A ; <nl> + typealias A1 = A <nl> # endif <nl> var a : A = A ( ) <nl> var a1 : A1 = A1 ( ) / / should not result in an error <nl> var c = C ( ) / / should not result in an error <nl> <nl> class D { <nl> # if FOO <nl> - var x : Int ; <nl> + var x : Int <nl> # endif <nl> <nl> init ( ) { <nl> # if ! BAR <nl> x = " BAR " ; / / should not result in an error <nl> # else <nl> - x = 1 ; <nl> + x = 1 <nl> # endif <nl> } <nl> } <nl> var i : Int = f1 ( ) <nl> <nl> protocol P1 { <nl> # if FOO <nl> - func fFOO ( ) - > Int ; <nl> + func fFOO ( ) - > Int <nl> # endif <nl> <nl> # if ! BAR <nl> - func fNotBAR ( ) - > Int ; <nl> + func fNotBAR ( ) - > Int <nl> # else <nl> - func fBAR ( ) - > Int ; <nl> + func fBAR ( ) - > Int <nl> # endif <nl> } <nl> <nl> mmm a / test / BuildConfigurations / module_top_level . swift <nl> ppp b / test / BuildConfigurations / module_top_level . swift <nl> <nl> class C { } <nl> <nl> func > ( lhs : C , rhs : C ) - > Bool { <nl> - return false ; <nl> + return false <nl> } <nl> # endif <nl> mmm a / test / BuildConfigurations / pound - if - inside - function - 4 . swift <nl> ppp b / test / BuildConfigurations / pound - if - inside - function - 4 . swift <nl> <nl> <nl> func foo ( ) { / / expected - note { { to match this opening ' { ' } } <nl> # if BLAH <nl> - _ = 123 ; <nl> + _ = 123 <nl> # elseif ! BLAH <nl> # else <nl> # else / / expected - error { { further conditions after # else are unreachable } } <nl> mmm a / test / ClangModules / attr - swift_name_renaming . swift <nl> ppp b / test / ClangModules / attr - swift_name_renaming . swift <nl> <nl> - / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - I % S / Inputs / custom - modules - Xcc - w - parse - verify - enable - swift - name - lookup - tables % s <nl> + / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - I % S / Inputs / custom - modules - Xcc - w - parse - verify % s <nl> <nl> import SwiftName <nl> <nl> mmm a / test / ClangModules / availability . swift <nl> ppp b / test / ClangModules / availability . swift <nl> <nl> / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - parse - verify - I % S / Inputs / custom - modules % s <nl> - / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - parse - verify - I % S / Inputs / custom - modules - enable - swift - name - lookup - tables % s <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> mmm a / test / ClangModules / cf . swift <nl> ppp b / test / ClangModules / cf . swift <nl> <nl> / / RUN : % target - swift - frontend - parse - verify - import - cf - types - I % S / Inputs / custom - modules % s <nl> - / / RUN : % target - swift - frontend - parse - verify - import - cf - types - enable - swift - name - lookup - tables - I % S / Inputs / custom - modules % s <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> mmm a / test / ClangModules / ctypes_parse_objc . swift <nl> ppp b / test / ClangModules / ctypes_parse_objc . swift <nl> <nl> / / RUN : % target - parse - verify - swift % clang - importer - sdk <nl> - / / RUN : % target - parse - verify - swift - enable - swift - name - lookup - tables % clang - importer - sdk <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> mmm a / test / ClangModules / no - sdk . swift <nl> ppp b / test / ClangModules / no - sdk . swift <nl> <nl> / / RUN : % target - swift - frontend - parse - sdk " " - I % S / Inputs / custom - modules % s <nl> <nl> / / Verify that we can still import modules even without an SDK . <nl> - import ExternIntX ; <nl> + import ExternIntX <nl> <nl> let y : CInt = ExternIntX . x <nl> mmm a / test / ClangModules / nullability_silgen . swift <nl> ppp b / test / ClangModules / nullability_silgen . swift <nl> <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> - import nullability ; <nl> + import nullability <nl> <nl> / / null_resettable properties . <nl> / / CHECK - LABEL : sil hidden @ _TF18nullability_silgen18testNullResettable <nl> mmm a / test / ClangModules / objc_dynamic_lookup . swift <nl> ppp b / test / ClangModules / objc_dynamic_lookup . swift <nl> <nl> - / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - parse - enable - swift - name - lookup - tables % s - verify <nl> + / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - parse % s - verify <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> mmm a / test / ClangModules / objc_parse . swift <nl> ppp b / test / ClangModules / objc_parse . swift <nl> <nl> / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - emit - sil - I % S / Inputs / custom - modules % s - verify <nl> - / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - emit - sil - enable - swift - name - lookup - tables - I % S / Inputs / custom - modules % s - verify <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> mmm a / test / ClangModules / objc_subscript . swift <nl> ppp b / test / ClangModules / objc_subscript . swift <nl> <nl> / / FIXME : END - enable - source - import hackaround <nl> <nl> / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk - nosource - I % t ) - emit - sil - I % S / Inputs / custom - modules % s - verify <nl> - / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk - nosource - I % t ) - emit - sil - enable - swift - name - lookup - tables - I % S / Inputs / custom - modules % s - verify <nl> <nl> / / REQUIRES : objc_interop <nl> <nl> mmm a / test / ClangModules / sdk - bridging - header . swift <nl> ppp b / test / ClangModules / sdk - bridging - header . swift <nl> <nl> / / RUN : % target - swift - frontend - parse - verify % s - import - objc - header % S / Inputs / sdk - bridging - header . h <nl> - / / RUN : % target - swift - frontend - parse - verify % s - enable - swift - name - lookup - tables - import - objc - header % S / Inputs / sdk - bridging - header . h <nl> / / RUN : not % target - swift - frontend - parse % s - import - objc - header % S / Inputs / bad - bridging - header . h 2 > & 1 | FileCheck - check - prefix = CHECK - FATAL % s <nl> <nl> / / RUN : % target - swift - frontend - parse - verify % s - Xcc - include - Xcc % S / Inputs / sdk - bridging - header . h - import - objc - header % S / . . / Inputs / empty . swift <nl> - / / RUN : % target - swift - frontend - parse - verify % s - Xcc - include - Xcc % S / Inputs / sdk - bridging - header . h - enable - swift - name - lookup - tables - import - objc - header % S / . . / Inputs / empty . swift <nl> <nl> / / RUN : not % target - swift - frontend - parse % s - Xcc - include - Xcc % S / Inputs / bad - bridging - header . h 2 > & 1 | FileCheck - check - prefix = CHECK - INCLUDE % s <nl> / / RUN : not % target - swift - frontend - parse % s - Xcc - include - Xcc % S / Inputs / bad - bridging - header . h - import - objc - header % S / . . / Inputs / empty . swift 2 > & 1 | FileCheck - check - prefix = CHECK - INCLUDE % s <nl> mmm a / test / Constraints / closures . swift <nl> ppp b / test / Constraints / closures . swift <nl> mySort ( strings , { x , y in x < y } ) <nl> <nl> / / Closures with inout arguments . <nl> func f0 < T , U > ( t : T , _ f : ( inout T ) - > U ) - > U { <nl> - var t2 = t ; <nl> + var t2 = t <nl> return f ( & t2 ) <nl> } <nl> <nl> mmm a / test / DebugInfo / argument . swift <nl> ppp b / test / DebugInfo / argument . swift <nl> func uncurry ( a : Int64 ) ( b : Int64 ) - > ( Int64 , Int64 ) { <nl> / / CHECK : ! DILocalVariable ( name : " x " , arg : 1 , { { . * } } line : [ [ @ LINE + 2 ] ] <nl> / / CHECK : ! DILocalVariable ( name : " y " , arg : 2 , { { . * } } line : [ [ @ LINE + 1 ] ] <nl> func tuple ( x : Int64 , y : ( Int64 , Float , String ) ) - > Int64 { <nl> - return x + y . 0 ; <nl> + return x + y . 0 <nl> } <nl> mmm a / test / DebugInfo / generic_args . swift <nl> ppp b / test / DebugInfo / generic_args . swift <nl> <nl> func markUsed < T > ( t : T ) { } <nl> <nl> protocol AProtocol { <nl> - func f ( ) - > String ; <nl> + func f ( ) - > String <nl> } <nl> class AClass : AProtocol { <nl> func f ( ) - > String { return " A " } <nl> mmm a / test / DebugInfo / linetable . swift <nl> ppp b / test / DebugInfo / linetable . swift <nl> class MyClass <nl> init ( input : Int64 ) { x = input } <nl> func do_something ( input : Int64 ) - > Int64 <nl> { <nl> - return x * input ; <nl> + return x * input <nl> } <nl> } <nl> <nl> mmm a / test / DebugInfo / patternmatching . swift <nl> ppp b / test / DebugInfo / patternmatching . swift <nl> func markUsed < T > ( t : T ) { } <nl> func classifyPoint2 ( p : ( Double , Double ) ) { <nl> func return_same ( input : Double ) - > Double { <nl> var input = input <nl> - return input ; <nl> + return input <nl> } <nl> <nl> switch p { <nl> mmm a / test / DebugInfo / protocol . swift <nl> ppp b / test / DebugInfo / protocol . swift <nl> class Point : PointUtils { <nl> var x : Float <nl> var y : Float <nl> init ( _x : Float , _y : Float ) { <nl> - x = _x ; <nl> - y = _y ; <nl> + x = _x <nl> + y = _y <nl> } <nl> <nl> func distanceFromOrigin ( ) - > Float { <nl> mmm a / test / DebugInfo / returnlocation . swift <nl> ppp b / test / DebugInfo / returnlocation . swift <nl> import Foundation <nl> public func none ( inout a : Int64 ) { <nl> / / CHECK_NONE : call void @ llvm . dbg { { . * } } , ! dbg <nl> / / CHECK_NONE : ! dbg ! [ [ NONE_INIT : . * ] ] <nl> - a - = 2 ; <nl> + a - = 2 <nl> / / CHECK_NONE : ret { { . * } } , ! dbg ! [ [ NONE_RET : . * ] ] <nl> / / CHECK_NONE : ! [ [ NONE_INIT ] ] = ! DILocation ( line : [ [ @ LINE - 2 ] ] , column : <nl> / / CHECK_NONE : ! [ [ NONE_RET ] ] = ! DILocation ( line : [ [ @ LINE + 1 ] ] , column : 1 , <nl> public func empty ( inout a : Int64 ) { <nl> return <nl> } <nl> <nl> - a - = 2 ; <nl> + a - = 2 <nl> / / CHECK - DAG_EMPTY : br { { . * } } , ! dbg ! [ [ EMPTY_RET2 : . * ] ] <nl> / / CHECK - DAG_EMPTY_RET2 : ! [ [ EMPTY_RET ] ] = ! DILocation ( line : [ [ @ LINE + 1 ] ] , column : 3 , <nl> return <nl> public func empty ( inout a : Int64 ) { <nl> / / CHECK_EMPTY_NONE : define { { . * } } empty_none <nl> public func empty_none ( inout a : Int64 ) { <nl> if a > 24 { <nl> - return ; <nl> + return <nl> } <nl> <nl> - a - = 2 ; <nl> + a - = 2 <nl> / / CHECK_EMPTY_NONE : ret { { . * } } , ! dbg ! [ [ EMPTY_NONE_RET : . * ] ] <nl> / / CHECK_EMPTY_NONE : ! [ [ EMPTY_NONE_RET ] ] = ! DILocation ( line : [ [ @ LINE + 1 ] ] , column : 1 , <nl> } <nl> public func empty_none ( inout a : Int64 ) { <nl> / / CHECK_SIMPLE_RET : define { { . * } } simple <nl> public func simple ( a : Int64 ) - > Int64 { <nl> if a > 24 { <nl> - return 0 ; <nl> + return 0 <nl> } <nl> return 1 <nl> / / CHECK_SIMPLE_RET : ret i { { . * } } , ! dbg ! [ [ SIMPLE_RET : . * ] ] <nl> public func cleanup_none ( inout a : NSString ) { <nl> / / CHECK_CLEANUP_EMPTY : define { { . * } } cleanup_empty <nl> public func cleanup_empty ( inout a : NSString ) { <nl> if a . length > 24 { <nl> - return ; <nl> + return <nl> } <nl> <nl> a = " empty " <nl> public func cleanup_empty ( inout a : NSString ) { <nl> / / CHECK_CLEANUP_EMPTY_NONE : define { { . * } } cleanup_empty_none <nl> public func cleanup_empty_none ( inout a : NSString ) { <nl> if a . length > 24 { <nl> - return ; <nl> + return <nl> } <nl> <nl> a = " empty " <nl> mmm a / test / DebugInfo / typearg . swift <nl> ppp b / test / DebugInfo / typearg . swift <nl> <nl> / / RUN : % target - swift - frontend % s - emit - ir - g - o - | FileCheck % s <nl> <nl> protocol AProtocol { <nl> - func f ( ) - > String ; <nl> + func f ( ) - > String <nl> } <nl> class AClass : AProtocol { <nl> func f ( ) - > String { return " A " } <nl> mmm a / test / DebugInfo / variables . swift <nl> ppp b / test / DebugInfo / variables . swift <nl> <nl> / / CHECK - DAG : ! [ [ TLC : . * ] ] = ! DIModule ( { { . * } } , name : " variables " <nl> <nl> / / Global variables . <nl> - var glob_i8 : Int8 = 8 ; <nl> + var glob_i8 : Int8 = 8 <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_i8 " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ I8 : [ ^ , ] + ] ] <nl> - var glob_i16 : Int16 = 16 ; <nl> + var glob_i16 : Int16 = 16 <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_i16 " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ I16 : [ ^ , ] + ] ] <nl> - var glob_i32 : Int32 = 32 ; <nl> + var glob_i32 : Int32 = 32 <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_i32 " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ I32 : [ ^ , ] + ] ] <nl> - var glob_i64 : Int64 = 64 ; <nl> + var glob_i64 : Int64 = 64 <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_i64 " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ I64 : [ ^ , ] + ] ] <nl> - var glob_f : Float = 2 . 89 ; <nl> + var glob_f : Float = 2 . 89 <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_f " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ F : [ ^ , ] + ] ] <nl> - var glob_d : Double = 3 . 14 ; <nl> + var glob_d : Double = 3 . 14 <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_d " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ D : [ ^ , ] + ] ] <nl> var glob_b : Bool = true <nl> / / CHECK - DAG : ! DIGlobalVariable ( name : " glob_b " , { { . * } } scope : ! [ [ TLC ] ] , { { . * } } line : [ [ @ LINE - 1 ] ] , { { . * } } type : ! [ [ B : [ ^ , ] + ] ] <nl> var unused : Int32 = - 1 <nl> func foo ( dt : Float ) - > Float { <nl> / / CHECK - DAG : call void @ llvm . dbg . declare <nl> / / CHECK - DAG : ! DILocalVariable ( name : " f " <nl> - var f : Float = 9 . 78 ; <nl> + var f : Float = 9 . 78 <nl> / / CHECK - DAG : ! DILocalVariable ( name : " r " <nl> - var r : Float = f * dt ; <nl> - return r ; <nl> + var r : Float = f * dt <nl> + return r <nl> } <nl> <nl> var g = foo ( 1 . 0 ) ; <nl> mmm a / test / Driver / Dependencies / Inputs / fake - build - for - bitcode . py <nl> ppp b / test / Driver / Dependencies / Inputs / fake - build - for - bitcode . py <nl> <nl> # Emulates the frontend of an - embed - bitcode job . That means we have to handle <nl> # - emit - bc and - c actions . <nl> <nl> + from __future__ import print_function <nl> + <nl> import os <nl> - import shutil <nl> import sys <nl> <nl> assert sys . argv [ 1 ] = = ' - frontend ' <nl> <nl> os . utime ( outputFile , None ) <nl> <nl> if ' - emit - bc ' in sys . argv : <nl> - print " Handled " , os . path . basename ( primaryFile ) <nl> + print ( " Handled " , os . path . basename ( primaryFile ) ) <nl> elif ' - c ' in sys . argv : <nl> - print " Produced " , os . path . basename ( outputFile ) <nl> + print ( " Produced " , os . path . basename ( outputFile ) ) <nl> else : <nl> assert False , " unknown action " <nl> mmm a / test / Driver / Dependencies / Inputs / fake - build - whole - module . py <nl> ppp b / test / Driver / Dependencies / Inputs / fake - build - whole - module . py <nl> <nl> <nl> # Emulates the frontend of a - whole - module - optimization compilation . <nl> <nl> + from __future__ import print_function <nl> + <nl> import os <nl> - import shutil <nl> import sys <nl> <nl> assert sys . argv [ 1 ] = = ' - frontend ' <nl> <nl> with open ( outputFile , ' a ' ) : <nl> os . utime ( outputFile , None ) <nl> <nl> - print " Produced " , os . path . basename ( outputFile ) <nl> + print ( " Produced " , os . path . basename ( outputFile ) ) <nl> mmm a / test / Driver / Dependencies / Inputs / modify - non - primary - files . py <nl> ppp b / test / Driver / Dependencies / Inputs / modify - non - primary - files . py <nl> <nl> # modify - non - primary - files . py simulates a build where the user is modifying the <nl> # source files during compilation . <nl> <nl> + from __future__ import print_function <nl> + <nl> import os <nl> - import shutil <nl> import sys <nl> <nl> assert sys . argv [ 1 ] = = ' - frontend ' <nl> <nl> os . utime ( outputFile , None ) <nl> <nl> if primaryFile : <nl> - print " Handled " , os . path . basename ( primaryFile ) <nl> + print ( " Handled " , os . path . basename ( primaryFile ) ) <nl> else : <nl> - print " Produced " , os . path . basename ( outputFile ) <nl> + print ( " Produced " , os . path . basename ( outputFile ) ) <nl> mmm a / test / Driver / Dependencies / Inputs / update - dependencies - bad . py <nl> ppp b / test / Driver / Dependencies / Inputs / update - dependencies - bad . py <nl> <nl> # Fails if the input file is named " bad . swift " ; otherwise dispatches to <nl> # update - dependencies . py . <nl> <nl> + from __future__ import print_function <nl> + <nl> import os <nl> import sys <nl> <nl> <nl> primaryFile = sys . argv [ sys . argv . index ( ' - primary - file ' ) + 1 ] <nl> <nl> if os . path . basename ( primaryFile ) = = ' bad . swift ' : <nl> - print " Handled " , os . path . basename ( primaryFile ) <nl> + print ( " Handled " , os . path . basename ( primaryFile ) ) <nl> exit ( 1 ) <nl> <nl> dir = os . path . dirname ( os . path . abspath ( __file__ ) ) <nl> mmm a / test / Driver / Dependencies / Inputs / update - dependencies . py <nl> ppp b / test / Driver / Dependencies / Inputs / update - dependencies . py <nl> <nl> # <nl> # If invoked in non - primary - file mode , it only creates the output file . <nl> <nl> + from __future__ import print_function <nl> + <nl> import os <nl> import shutil <nl> import sys <nl> <nl> os . utime ( outputFile , None ) <nl> <nl> if primaryFile : <nl> - print " Handled " , os . path . basename ( primaryFile ) <nl> + print ( " Handled " , os . path . basename ( primaryFile ) ) <nl> else : <nl> - print " Produced " , os . path . basename ( outputFile ) <nl> + print ( " Produced " , os . path . basename ( outputFile ) ) <nl> mmm a / test / Generics / associated_self_constraints . swift <nl> ppp b / test / Generics / associated_self_constraints . swift <nl> class Subject < T > : Observer , Observable { <nl> observer . onError ( error ) <nl> } <nl> <nl> - return self ; <nl> + return self <nl> } <nl> } <nl> <nl> mmm a / test / Generics / function_defs . swift <nl> ppp b / test / Generics / function_defs . swift <nl> protocol EqualComparable { <nl> func doCompare < T : EqualComparable , U : EqualComparable > ( t1 : T , t2 : T , u : U ) - > Bool { <nl> var b1 = t1 . isEqual ( t2 ) <nl> if b1 { <nl> - return true ; <nl> + return true <nl> } <nl> <nl> return t1 . isEqual ( u ) / / expected - error { { cannot invoke ' isEqual ' with an argument list of type ' ( U ) ' } } <nl> func conformanceViaRequires < T <nl> > ( t1 : T , t2 : T ) - > Bool { <nl> let b1 = t1 . isEqual ( t2 ) <nl> if b1 | | t1 . isLess ( t2 ) { <nl> - return true ; <nl> + return true <nl> } <nl> } <nl> <nl> mmm a / test / IDE / complete_dynamic_lookup . swift <nl> ppp b / test / IDE / complete_dynamic_lookup . swift <nl> <nl> / / RUN : FileCheck % s - check - prefix = DL_INSTANCE_DOT < % t . dl . txt <nl> / / RUN : FileCheck % s - check - prefix = GLOBAL_NEGATIVE < % t . dl . txt <nl> <nl> - / / FIXME : Redundant with above , except for - enable - swift - name - lookup - tables <nl> - / / RUN : % target - swift - ide - test - code - completion - source - filename % s - I % t - disable - objc - attr - requires - foundation - module - code - completion - token = DL_FUNC_PARAM_DOT_1 - enable - swift - name - lookup - tables > % t . dl . txt <nl> - / / RUN : FileCheck % s - check - prefix = DL_INSTANCE_DOT < % t . dl . txt <nl> - / / RUN : FileCheck % s - check - prefix = GLOBAL_NEGATIVE < % t . dl . txt <nl> - <nl> / / RUN : % target - swift - ide - test - code - completion - source - filename % s - I % t - disable - objc - attr - requires - foundation - module - code - completion - token = DL_VAR_NO_DOT_1 > % t . dl . txt <nl> / / RUN : FileCheck % s - check - prefix = DL_INSTANCE_NO_DOT < % t . dl . txt <nl> / / RUN : FileCheck % s - check - prefix = GLOBAL_NEGATIVE < % t . dl . txt <nl> mmm a / test / IDE / complete_from_clang_framework . swift <nl> ppp b / test / IDE / complete_from_clang_framework . swift <nl> <nl> / / RUN : FileCheck % s - check - prefix = CLANG_BAR < % t . compl . txt <nl> / / RUN : FileCheck % s - check - prefix = CLANG_BOTH_FOO_BAR < % t . compl . txt <nl> <nl> - / / FIXME : Same as above , but with Swift name lookup tables enabled . <nl> - / / RUN : % target - swift - ide - test - code - completion - source - filename % s - F % S / Inputs / mock - sdk - code - completion - token = FW_UNQUAL_1 - enable - swift - name - lookup - tables > % t . compl . txt <nl> - / / RUN : FileCheck % s - check - prefix = CLANG_FOO < % t . compl . txt <nl> - / / RUN : FileCheck % s - check - prefix = CLANG_FOO_SUB < % t . compl . txt <nl> - / / RUN : FileCheck % s - check - prefix = CLANG_FOO_HELPER < % t . compl . txt <nl> - / / RUN : FileCheck % s - check - prefix = CLANG_FOO_HELPER_SUB < % t . compl . txt <nl> - / / RUN : FileCheck % s - check - prefix = CLANG_BAR < % t . compl . txt <nl> - / / RUN : FileCheck % s - check - prefix = CLANG_BOTH_FOO_BAR < % t . compl . txt <nl> - <nl> / / RUN : % target - swift - ide - test - code - completion - source - filename % s - F % S / Inputs / mock - sdk - code - completion - token = CLANG_QUAL_FOO_1 > % t . compl . txt <nl> / / RUN : FileCheck % s - check - prefix = CLANG_FOO < % t . compl . txt <nl> / / RUN : FileCheck % s - check - prefix = CLANG_FOO_SUB < % t . compl . txt <nl> mmm a / test / IDE / complete_unresolved_members . swift <nl> ppp b / test / IDE / complete_unresolved_members . swift <nl> enum SomeEnum3 { <nl> } <nl> <nl> struct NotOptions1 { <nl> - static let NotSet = 1 ; <nl> + static let NotSet = 1 <nl> } <nl> <nl> struct SomeOptions1 : OptionSet { <nl> mmm a / test / IRGen / Inputs / report_dead_method_call / main . swift <nl> ppp b / test / IRGen / Inputs / report_dead_method_call / main . swift <nl> case 3 : <nl> callPublicClass ( ) <nl> <nl> default : <nl> - break ; <nl> + break <nl> } <nl> deleted file mode 100644 <nl> index 2ec20e4aaf64 . . 000000000000 <nl> mmm a / test / IRGen / NonConstantAddressFieldAccess . swift <nl> ppp / dev / null <nl> <nl> - / / RUN : % target - build - swift % S / Inputs / ObjcSuperClass . swift % s - module - name a - emit - ir 2 > & 1 | FileCheck % s <nl> - / / REQUIRES : executable_test <nl> - <nl> - / / REQUIRES : objc_interop <nl> - <nl> - / / CHECK : @ _TWvdvC1a12ObjCSubclass5fieldVs5Int32 = global i { { [ 0 - 9 ] + } } <nl> - / / CHECK : @ _TWvdvC1a12ObjCSubclass5fieldVs5Int32 = external global i { { [ 0 - 9 ] + } } <nl> - <nl> - func test ( o : ObjCSubclass ) { <nl> - o . field = 10 <nl> - } <nl> mmm a / test / IRGen / abitypes . swift <nl> ppp b / test / IRGen / abitypes . swift <nl> class Foo { <nl> / / Make sure the caller - side from Swift also uses indirect - byval for the argument <nl> / / x86_64 - macosx : define hidden float @ _TFC8abitypes3Foo25getXFromRectIndirectSwift { { . * } } ( % VSC6MyRect * noalias nocapture dereferenceable ( { { . * } } ) , % C8abitypes3Foo * ) { { . * } } { <nl> func getXFromRectIndirectSwift ( r : MyRect ) - > Float { <nl> - let f : Float = 1 . 0 ; <nl> + let f : Float = 1 . 0 <nl> / / x86_64 - macosx : [ [ TEMP : % . * ] ] = alloca [ [ TEMPTYPE : % . * ] ] , align 4 <nl> / / x86_64 - macosx : [ [ RESULT : % . * ] ] = call float bitcast ( void ( ) * @ objc_msgSend to float ( i8 * , i8 * , float , float , float , float , float , float , float , [ [ TEMPTYPE ] ] * ) * ) ( i8 * % { { . * } } , i8 * % { { . * } } , float 1 . 000000e + 00 , float 1 . 000000e + 00 , float 1 . 000000e + 00 , float 1 . 000000e + 00 , float 1 . 000000e + 00 , float 1 . 000000e + 00 , float 1 . 000000e + 00 , [ [ TEMPTYPE ] ] * byval align 4 [ [ TEMP ] ] ) <nl> / / x86_64 - macosx : ret float [ [ RESULT ] ] <nl> class Foo { <nl> / / Test that the makeOne ( ) that we generate somewhere below doesn ' t <nl> / / use arm_aapcscc for armv7 . <nl> func callInline ( ) - > Float { <nl> - return makeOne ( 3 , 5 ) . second ; <nl> + return makeOne ( 3 , 5 ) . second <nl> } <nl> } <nl> <nl> mmm a / test / IRGen / class_resilience . swift <nl> ppp b / test / IRGen / class_resilience . swift <nl> <nl> / / RUN : % target - swift - frontend - I % S / . . / Inputs - enable - source - import - emit - ir - enable - resilience % s | FileCheck % s <nl> / / RUN : % target - swift - frontend - I % S / . . / Inputs - enable - source - import - emit - ir - enable - resilience - O % s <nl> <nl> - / / CHECK : % Si = type < { [ [ INT : i32 | i64 ] ] } > <nl> + / / CHECK : % swift . type = type { [ [ INT : i32 | i64 ] ] } <nl> <nl> + import resilient_class <nl> import resilient_struct <nl> import resilient_enum <nl> <nl> import resilient_enum <nl> public class MyRectangle { <nl> public let p : Point <nl> public let s : Size <nl> - public let color : Int <nl> + public let color : Int32 <nl> <nl> - public init ( p : Point , s : Size , color : Int ) { <nl> + public init ( p : Point , s : Size , color : Int32 ) { <nl> self . p = p <nl> self . s = s <nl> self . color = color <nl> public class MyRectangle { <nl> <nl> public class ClassWithResilientLayout { <nl> public let r : Rectangle <nl> - public let color : Int <nl> + public let color : Int32 <nl> <nl> - public init ( r : Rectangle , color : Int ) { <nl> + public init ( r : Rectangle , color : Int32 ) { <nl> self . r = r <nl> self . color = color <nl> } <nl> public class ClassWithResilientLayout { <nl> <nl> public class ClassWithIndirectResilientEnum { <nl> public let s : FunnyShape <nl> - public let color : Int <nl> + public let color : Int32 <nl> <nl> - public init ( s : FunnyShape , color : Int ) { <nl> + public init ( s : FunnyShape , color : Int32 ) { <nl> self . s = s <nl> self . color = color <nl> } <nl> } <nl> <nl> + / / Superclass is resilient , so the number of fields and their <nl> + / / offsets is not known at compile time <nl> + <nl> + public class ResilientChild : ResilientOutsideParent { <nl> + public let field : Int32 = 0 <nl> + } <nl> + <nl> + / / Superclass is resilient , so the number of fields and their <nl> + / / offsets is not known at compile time <nl> + <nl> + public class ResilientGenericChild < T > : ResilientGenericOutsideParent < T > { <nl> + public let field : Int32 = 0 <nl> + } <nl> + <nl> + / / Superclass is resilient and has a resilient value type payload , <nl> + / / but everything is in one module <nl> + <nl> + public struct MyResilientStruct { } <nl> + <nl> + public class MyResilientParent { <nl> + public let s : MyResilientStruct = MyResilientStruct ( ) <nl> + } <nl> + <nl> + public class MyResilientChild : MyResilientParent { <nl> + public let field : Int32 = 0 <nl> + } <nl> + <nl> + <nl> / / FIXME : This is bogus since we don ' t emit code to initialize the <nl> / / global ivar offsets yet . <nl> <nl> <nl> - / / CHECK - LABEL : define { { i32 | i64 } } @ _TFC16class_resilience11MyRectangleg5colorSi ( % C16class_resilience11MyRectangle * ) <nl> - / / CHECK : [ [ OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvdvC16class_resilience11MyRectangle5colorSi <nl> + / / MyRectangle . color getter <nl> + <nl> + / / CHECK - LABEL : define i32 @ _TFC16class_resilience11MyRectangleg5colorVs5Int32 ( % C16class_resilience11MyRectangle * ) <nl> + / / CHECK : [ [ OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvdvC16class_resilience11MyRectangle5colorVs5Int32 <nl> / / CHECK - NEXT : [ [ PTR : % . * ] ] = bitcast % C16class_resilience11MyRectangle * % 0 to i8 * <nl> / / CHECK - NEXT : [ [ FIELD_ADDR : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ PTR ] ] , [ [ INT ] ] [ [ OFFSET ] ] <nl> - / / CHECK - NEXT : [ [ FIELD_PTR : % . * ] ] = bitcast i8 * [ [ FIELD_ADDR ] ] to % Si * <nl> - / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Si , % Si * [ [ FIELD_PTR ] ] , i32 0 , i32 0 <nl> - / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * [ [ FIELD_PAYLOAD ] ] <nl> - / / CHECK - NEXT : ret [ [ INT ] ] [ [ FIELD_VALUE ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_PTR : % . * ] ] = bitcast i8 * [ [ FIELD_ADDR ] ] to % Vs5Int32 * <nl> + / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_PTR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load i32 , i32 * [ [ FIELD_PAYLOAD ] ] <nl> + / / CHECK - NEXT : ret i32 [ [ FIELD_VALUE ] ] <nl> + <nl> <nl> + / / ClassWithResilientLayout . color getter <nl> <nl> - / / CHECK - LABEL : define { { i32 | i64 } } @ _TFC16class_resilience24ClassWithResilientLayoutg5colorSi ( % C16class_resilience24ClassWithResilientLayout * ) <nl> - / / CHECK : [ [ OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvdvC16class_resilience24ClassWithResilientLayout5colorSi <nl> + / / CHECK - LABEL : define i32 @ _TFC16class_resilience24ClassWithResilientLayoutg5colorVs5Int32 ( % C16class_resilience24ClassWithResilientLayout * ) <nl> + / / CHECK : [ [ OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvdvC16class_resilience24ClassWithResilientLayout5colorVs5Int32 <nl> / / CHECK - NEXT : [ [ PTR : % . * ] ] = bitcast % C16class_resilience24ClassWithResilientLayout * % 0 to i8 * <nl> / / CHECK - NEXT : [ [ FIELD_ADDR : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ PTR ] ] , [ [ INT ] ] [ [ OFFSET ] ] <nl> - / / CHECK - NEXT : [ [ FIELD_PTR : % . * ] ] = bitcast i8 * [ [ FIELD_ADDR ] ] to % Si * <nl> - / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Si , % Si * % . color , i32 0 , i32 0 <nl> - / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * [ [ FIELD_PAYLOAD ] ] <nl> - / / CHECK - NEXT : ret [ [ INT ] ] [ [ FIELD_VALUE ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_PTR : % . * ] ] = bitcast i8 * [ [ FIELD_ADDR ] ] to % Vs5Int32 * <nl> + / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_PTR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load i32 , i32 * [ [ FIELD_PAYLOAD ] ] <nl> + / / CHECK - NEXT : ret i32 [ [ FIELD_VALUE ] ] <nl> <nl> <nl> - / / CHECK - LABEL : define { { i32 | i64 } } @ _TFC16class_resilience30ClassWithIndirectResilientEnumg5colorSi ( % C16class_resilience30ClassWithIndirectResilientEnum * ) <nl> + / / ClassWithIndirectResilientEnum . color getter <nl> + <nl> + / / CHECK - LABEL : define i32 @ _TFC16class_resilience30ClassWithIndirectResilientEnumg5colorVs5Int32 ( % C16class_resilience30ClassWithIndirectResilientEnum * ) <nl> / / CHECK : [ [ FIELD_PTR : % . * ] ] = getelementptr inbounds % C16class_resilience30ClassWithIndirectResilientEnum , % C16class_resilience30ClassWithIndirectResilientEnum * % 0 , i32 0 , i32 2 <nl> - / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Si , % Si * [ [ FIELD_PTR ] ] , i32 0 , i32 0 <nl> - / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * [ [ FIELD_PAYLOAD ] ] <nl> - / / CHECK - NEXT : ret [ [ INT ] ] [ [ FIELD_VALUE ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_PTR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load i32 , i32 * [ [ FIELD_PAYLOAD ] ] <nl> + / / CHECK - NEXT : ret i32 [ [ FIELD_VALUE ] ] <nl> + <nl> + <nl> + / / ResilientChild . field getter <nl> + <nl> + / / CHECK - LABEL : define i32 @ _TFC16class_resilience14ResilientChildg5fieldVs5Int32 ( % C16class_resilience14ResilientChild * ) <nl> + / / CHECK : [ [ OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvdvC16class_resilience14ResilientChild5fieldVs5Int32 <nl> + / / CHECK - NEXT : [ [ PTR : % . * ] ] = bitcast % C16class_resilience14ResilientChild * % 0 to i8 * <nl> + / / CHECK - NEXT : [ [ FIELD_ADDR : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ PTR ] ] , [ [ INT ] ] [ [ OFFSET ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_PTR : % . * ] ] = bitcast i8 * [ [ FIELD_ADDR ] ] to % Vs5Int32 * <nl> + / / CHECK - NEXT : [ [ FIELD_PAYLOAD : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_PTR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ FIELD_VALUE : % . * ] ] = load i32 , i32 * [ [ FIELD_PAYLOAD ] ] <nl> + / / CHECK - NEXT : ret i32 [ [ FIELD_VALUE ] ] <nl> + <nl> + <nl> + / / ResilientGenericChild . field getter <nl> + <nl> + <nl> + / / CHECK - LABEL : define i32 @ _TFC16class_resilience21ResilientGenericChildg5fieldVs5Int32 ( % C16class_resilience21ResilientGenericChild * ) <nl> + <nl> + / / FIXME : we could eliminate the unnecessary isa load by lazily emitting <nl> + / / metadata sources in EmitPolymorphicParameters <nl> + <nl> + / / CHECK : [ [ T_BOX : % . * ] ] = alloca % swift . type * <nl> + / / CHECK : store { { . * } } , % swift . type * * [ [ T_BOX ] ] <nl> + <nl> + / / CHECK - NEXT : [ [ ADDR : % . * ] ] = getelementptr inbounds % C16class_resilience21ResilientGenericChild , % C16class_resilience21ResilientGenericChild * % 0 , i32 0 , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ ISA : % . * ] ] = load % swift . type * , % swift . type * * [ [ ADDR ] ] <nl> + / / CHECK - NEXT : [ [ INDIRECT_OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvivC16class_resilience21ResilientGenericChild5fieldVs5Int32 <nl> + / / CHECK - NEXT : [ [ ISA_ADDR : % . * ] ] = bitcast % swift . type * [ [ ISA ] ] to i8 * <nl> + / / CHECK - NEXT : [ [ FIELD_OFFSET_TMP : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ ISA_ADDR ] ] , [ [ INT ] ] [ [ INDIRECT_OFFSET ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_OFFSET_ADDR : % . * ] ] = bitcast i8 * [ [ FIELD_OFFSET_TMP ] ] to [ [ INT ] ] * <nl> + / / CHECK - NEXT : [ [ FIELD_OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * [ [ FIELD_OFFSET_ADDR : % . * ] ] <nl> + / / CHECK - NEXT : [ [ OBJECT : % . * ] ] = bitcast % C16class_resilience21ResilientGenericChild * % 0 to i8 * <nl> + / / CHECK - NEXT : [ [ ADDR : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ OBJECT ] ] , [ [ INT ] ] [ [ FIELD_OFFSET ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_ADDR : % . * ] ] = bitcast i8 * [ [ ADDR ] ] to % Vs5Int32 * <nl> + / / CHECK - NEXT : [ [ PAYLOAD_ADDR : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_ADDR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ RESULT : % . * ] ] = load i32 , i32 * [ [ PAYLOAD_ADDR ] ] <nl> + / / CHECK - NEXT : ret i32 [ [ RESULT ] ] <nl> + <nl> + <nl> + / / MyResilientChild . field getter <nl> + <nl> + / / CHECK - LABEL : define i32 @ _TFC16class_resilience16MyResilientChildg5fieldVs5Int32 ( % C16class_resilience16MyResilientChild * ) <nl> + / / CHECK : [ [ FIELD_ADDR : % . * ] ] = getelementptr inbounds % C16class_resilience16MyResilientChild , % C16class_resilience16MyResilientChild * % 0 , i32 0 , i32 1 <nl> + / / CHECK - NEXT : [ [ PAYLOAD_ADDR : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_ADDR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : [ [ RESULT : % . * ] ] = load i32 , i32 * [ [ PAYLOAD_ADDR ] ] <nl> + / / CHECK - NEXT : ret i32 [ [ RESULT ] ] <nl> new file mode 100644 <nl> index 000000000000 . . e7d887599001 <nl> mmm / dev / null <nl> ppp b / test / IRGen / class_resilience_objc . swift <nl> <nl> + / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - enable - source - import - emit - ir - o - - primary - file % s | FileCheck % s - - check - prefix = CHECK - - check - prefix = CHECK - % target - ptrsize <nl> + <nl> + / / REQUIRES : objc_interop <nl> + <nl> + / / CHECK : % swift . type = type { [ [ INT : i32 | i64 ] ] } <nl> + <nl> + import Foundation <nl> + <nl> + public class FixedLayoutObjCSubclass : NSObject { <nl> + / / This field uses constant direct access because NSObject has fixed layout . <nl> + public final var field : Int32 = 0 <nl> + } ; <nl> + <nl> + / / CHECK - LABEL : define hidden void @ _TF21class_resilience_objc29testConstantDirectFieldAccessFCS_23FixedLayoutObjCSubclassT_ ( % C21class_resilience_objc23FixedLayoutObjCSubclass * ) <nl> + / / CHECK : [ [ FIELD_ADDR : % . * ] ] = getelementptr inbounds % C21class_resilience_objc23FixedLayoutObjCSubclass , % C21class_resilience_objc23FixedLayoutObjCSubclass * % 0 , i32 0 , i32 1 <nl> + / / CHECK - NEXT : [ [ PAYLOAD_ADDR : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * % 1 , i32 0 , i32 0 <nl> + / / CHECK - NEXT : store i32 10 , i32 * [ [ PAYLOAD_ADDR ] ] <nl> + <nl> + func testConstantDirectFieldAccess ( o : FixedLayoutObjCSubclass ) { <nl> + o . field = 10 <nl> + } <nl> + <nl> + public class NonFixedLayoutObjCSubclass : NSCoder { <nl> + / / This field uses non - constant direct access because NSCoder has resilient <nl> + / / layout . <nl> + public final var field : Int32 = 0 <nl> + } <nl> + <nl> + / / CHECK - LABEL : define hidden void @ _TF21class_resilience_objc32testNonConstantDirectFieldAccessFCS_26NonFixedLayoutObjCSubclassT_ ( % C21class_resilience_objc26NonFixedLayoutObjCSubclass * ) <nl> + / / CHECK : [ [ OFFSET : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ _TWvdvC21class_resilience_objc26NonFixedLayoutObjCSubclass5fieldVs5Int32 <nl> + / / CHECK - NEXT : [ [ OBJECT : % . * ] ] = bitcast % C21class_resilience_objc26NonFixedLayoutObjCSubclass * % 0 to i8 * <nl> + / / CHECK - NEXT : [ [ ADDR : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ OBJECT ] ] , [ [ INT ] ] [ [ OFFSET ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_ADDR : % . * ] ] = bitcast i8 * [ [ ADDR ] ] to % Vs5Int32 * <nl> + / / CHECK - NEXT : [ [ PAYLOAD_ADDR : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_ADDR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : store i32 10 , i32 * [ [ PAYLOAD_ADDR ] ] <nl> + <nl> + func testNonConstantDirectFieldAccess ( o : NonFixedLayoutObjCSubclass ) { <nl> + o . field = 10 <nl> + } <nl> + <nl> + public class GenericObjCSubclass < T > : NSCoder { <nl> + public final var content : T <nl> + public final var field : Int32 = 0 <nl> + <nl> + public init ( content : T ) { <nl> + self . content = content <nl> + } <nl> + } <nl> + <nl> + / / CHECK - LABEL : define hidden void @ _TF21class_resilience_objc31testConstantIndirectFieldAccessurFGCS_19GenericObjCSubclassx_T_ ( % C21class_resilience_objc19GenericObjCSubclass * ) <nl> + <nl> + / / FIXME : we could eliminate the unnecessary isa load by lazily emitting <nl> + / / metadata sources in EmitPolymorphicParameters <nl> + <nl> + / / CHECK : [ [ T_BOX : % . * ] ] = alloca % swift . type * <nl> + / / CHECK : store { { . * } } , % swift . type * * [ [ T_BOX ] ] <nl> + <nl> + / / CHECK - 32 - NEXT : [ [ ADDR : % . * ] ] = bitcast % C21class_resilience_objc19GenericObjCSubclass * % 0 to % swift . type * * <nl> + / / CHECK - 32 - NEXT : [ [ ISA : % . * ] ] = load % swift . type * , % swift . type * * [ [ ADDR ] ] <nl> + <nl> + / / CHECK - 64 - NEXT : [ [ ADDR : % . * ] ] = bitcast % C21class_resilience_objc19GenericObjCSubclass * % 0 to [ [ INT ] ] * <nl> + / / CHECK - 64 - NEXT : [ [ ISA : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * [ [ ADDR ] ] <nl> + / / CHECK - 64 - NEXT : [ [ ISA_MASK : % . * ] ] = load [ [ INT ] ] , [ [ INT ] ] * @ swift_isaMask <nl> + / / CHECK - 64 - NEXT : [ [ ISA_VALUE : % . * ] ] = and [ [ INT ] ] [ [ ISA ] ] , [ [ ISA_MASK ] ] <nl> + / / CHECK - 64 - NEXT : [ [ ISA : % . * ] ] = inttoptr [ [ INT ] ] [ [ ISA_VALUE ] ] to % swift . type * <nl> + <nl> + / / CHECK - NEXT : [ [ ISA_ADDR : % . * ] ] = bitcast % swift . type * [ [ ISA ] ] to i8 * * * <nl> + <nl> + / / CHECK - 32 - NEXT : [ [ FIELD_OFFSET_ADDR : % . * ] ] = getelementptr inbounds i8 * * , i8 * * * [ [ ISA_ADDR ] ] , [ [ INT ] ] 16 <nl> + <nl> + / / CHECK - 64 - NEXT : [ [ FIELD_OFFSET_ADDR : % . * ] ] = getelementptr inbounds i8 * * , i8 * * * [ [ ISA_ADDR ] ] , [ [ INT ] ] 13 <nl> + <nl> + / / CHECK - NEXT : [ [ FIELD_OFFSET_TMP : % . * ] ] = load i8 * * , i8 * * * [ [ FIELD_OFFSET_ADDR : % . * ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_OFFSET : % . * ] ] = ptrtoint i8 * * [ [ FIELD_OFFSET_TMP ] ] to [ [ INT ] ] <nl> + / / CHECK - NEXT : [ [ OBJECT : % . * ] ] = bitcast % C21class_resilience_objc19GenericObjCSubclass * % 0 to i8 * <nl> + / / CHECK - NEXT : [ [ ADDR : % . * ] ] = getelementptr inbounds i8 , i8 * [ [ OBJECT ] ] , [ [ INT ] ] [ [ FIELD_OFFSET ] ] <nl> + / / CHECK - NEXT : [ [ FIELD_ADDR : % . * ] ] = bitcast i8 * [ [ ADDR ] ] to % Vs5Int32 * <nl> + / / CHECK - NEXT : [ [ PAYLOAD_ADDR : % . * ] ] = getelementptr inbounds % Vs5Int32 , % Vs5Int32 * [ [ FIELD_ADDR ] ] , i32 0 , i32 0 <nl> + / / CHECK - NEXT : store i32 10 , i32 * [ [ PAYLOAD_ADDR ] ] <nl> + <nl> + func testConstantIndirectFieldAccess < T > ( o : GenericObjCSubclass < T > ) { <nl> + / / This field uses constant indirect access because NSCoder has resilient <nl> + / / layout . Non - constant indirect is never needed for Objective - C classes <nl> + / / because the field offset vector only contains Swift field offsets . <nl> + o . field = 10 <nl> + } <nl> mmm a / test / IRGen / enum_resilience . swift <nl> ppp b / test / IRGen / enum_resilience . swift <nl> import resilient_struct <nl> / / CHECK : % O15enum_resilience6Either = type < { [ [ REFERENCE_TYPE : \ [ ( 4 | 8 ) x i8 \ ] ] ] , [ 1 x i8 ] } > <nl> <nl> / / Public resilient struct contains a public resilient struct , <nl> - / / can use spare bits ( FIXME ) <nl> + / / can use spare bits <nl> <nl> - / / CHECK : % O15enum_resilience15ResilientEither = type < { [ [ REFERENCE_TYPE ] ] , [ 1 x i8 ] } > <nl> + / / CHECK : % O15enum_resilience15ResilientEither = type < { [ [ REFERENCE_TYPE ] ] } > <nl> <nl> / / Internal fixed layout struct contains a public resilient struct , <nl> - / / can use spare bits ( FIXME ) <nl> + / / can use spare bits <nl> <nl> - / / CHECK : % O15enum_resilience14InternalEither = type < { [ [ REFERENCE_TYPE ] ] , [ 1 x i8 ] } > <nl> + / / CHECK : % O15enum_resilience14InternalEither = type < { [ [ REFERENCE_TYPE ] ] } > <nl> <nl> / / Public fixed layout struct contains a fixed layout struct , <nl> / / can use spare bits <nl> public func resilientEnumPartialApply ( f : Medium - > Int ) { <nl> } <nl> <nl> / / CHECK - LABEL : define internal void @ _TPA__TTRXFo_iO14resilient_enum6Medium_dSi_XFo_iS0__iSi_ ( % Si * noalias nocapture sret , % swift . opaque * noalias nocapture , % swift . refcounted * ) <nl> + <nl> + <nl> + / / Enums with resilient payloads from a different resilience domain <nl> + / / require runtime metadata instantiation , just like generics . <nl> + <nl> + public enum EnumWithResilientPayload { <nl> + case OneSize ( Size ) <nl> + case TwoSizes ( Size , Size ) <nl> + } <nl> + <nl> + / / Make sure we call a function to access metadata of enums with <nl> + / / resilient layout . <nl> + <nl> + / / CHECK - LABEL : define % swift . type * @ _TF15enum_resilience20getResilientEnumTypeFT_PMP_ ( ) <nl> + / / CHECK : [ [ METADATA : % . * ] ] = call % swift . type * @ _TMaO15enum_resilience24EnumWithResilientPayload ( ) <nl> + / / CHECK - NEXT : ret % swift . type * [ [ METADATA ] ] <nl> + <nl> + public func getResilientEnumType ( ) - > Any . Type { <nl> + return EnumWithResilientPayload . self <nl> + } <nl> + <nl> + / / Public metadata accessor for our resilient enum <nl> + / / CHECK - LABEL : define % swift . type * @ _TMaO15enum_resilience24EnumWithResilientPayload ( ) <nl> + / / CHECK : [ [ METADATA : % . * ] ] = load % swift . type * , % swift . type * * @ _TMLO15enum_resilience24EnumWithResilientPayload <nl> + / / CHECK - NEXT : [ [ COND : % . * ] ] = icmp eq % swift . type * [ [ METADATA ] ] , null <nl> + / / CHECK - NEXT : br i1 [ [ COND ] ] , label % cacheIsNull , label % cont <nl> + <nl> + / / CHECK : cacheIsNull : <nl> + / / CHECK - NEXT : [ [ METADATA2 : % . * ] ] = call % swift . type * @ swift_getResilientMetadata <nl> + / / CHECK - NEXT : store % swift . type * [ [ METADATA2 ] ] , % swift . type * * @ _TMLO15enum_resilience24EnumWithResilientPayload <nl> + / / CHECK - NEXT : br label % cont <nl> + <nl> + / / CHECK : cont : <nl> + / / CHECK - NEXT : [ [ RESULT : % . * ] ] = phi % swift . type * [ [ [ METADATA ] ] , % entry ] , [ [ [ METADATA2 ] ] , % cacheIsNull ] <nl> + / / CHECK - NEXT : ret % swift . type * [ [ RESULT ] ] <nl> + <nl> + <nl> + / / FIXME : this is bogus <nl> + <nl> + / / CHECK - LABEL : define private % swift . type * @ create_generic_metadata_EnumWithResilientPayload ( % swift . type_pattern * , i8 * * ) <nl> mmm a / test / IRGen / existentials_objc . sil <nl> ppp b / test / IRGen / existentials_objc . sil <nl> <nl> / / RUN : rm - rf % t & & mkdir % t <nl> / / RUN : % build - irgen - test - overlays <nl> / / RUN : % target - swift - frontend - sdk % S / Inputs - I % t % s - emit - ir | FileCheck % s <nl> - / / RUN : % target - swift - frontend - enable - swift - name - lookup - tables - sdk % S / Inputs - I % t % s - emit - ir | FileCheck % s <nl> <nl> / / REQUIRES : CPU = x86_64 <nl> / / REQUIRES : objc_interop <nl> mmm a / test / IRGen / objc_class_export . swift <nl> ppp b / test / IRGen / objc_class_export . swift <nl> struct BigStructWithNativeObjects { <nl> / / CHECK : call void @ _TFC17objc_class_export3Foo6boundsfT_VSC6NSRect ( [ [ NSRECT ] ] * noalias nocapture sret { { . * } } , [ [ FOO ] ] * [ [ CAST ] ] ) <nl> <nl> func convertRectToBacking ( r r : NSRect ) - > NSRect { <nl> - return r ; <nl> + return r <nl> } <nl> / / CHECK : define internal void @ _TToFC17objc_class_export3Foo20convertRectToBackingfT1rVSC6NSRect_S1_ ( [ [ NSRECT ] ] * noalias nocapture sret , [ [ OPAQUE5 : % . * ] ] * , i8 * , [ [ NSRECT ] ] * byval align 8 ) unnamed_addr { { . * } } { <nl> / / CHECK : [ [ CAST : % [ a - zA - Z0 - 9 ] + ] ] = bitcast [ [ OPAQUE5 ] ] * % 1 to [ [ FOO ] ] * <nl> mmm a / test / IRGen / objc_subclass . swift <nl> ppp b / test / IRGen / objc_subclass . swift <nl> class SwiftGizmo : Gizmo { <nl> var x = Int ( ) <nl> <nl> func getX ( ) - > Int { <nl> - return x ; <nl> + return x <nl> } <nl> <nl> override func duplicate ( ) - > Gizmo { <nl> mmm a / test / IRGen / objc_type_encoding . swift <nl> ppp b / test / IRGen / objc_type_encoding . swift <nl> func testArchetype ( work : P3 ) { <nl> / / CHECK - tvos : private unnamed_addr constant [ 11 x i8 ] c " v24 @ 0 : 8 @ 16 \ 00 " <nl> <nl> @ objc func foo ( x : Int - > Int ) - > Int { <nl> - return 1 ; <nl> + return 1 <nl> } <nl> / / CHECK - macosx : private unnamed_addr constant [ 12 x i8 ] c " q24 @ 0 : 8 @ ? 16 \ 00 " <nl> / / CHECK - ios : private unnamed_addr constant [ 12 x i8 ] c " q24 @ 0 : 8 @ ? 16 \ 00 " <nl> mmm a / test / IRGen / sil_witness_tables_inherited_conformance . swift <nl> ppp b / test / IRGen / sil_witness_tables_inherited_conformance . swift <nl> class Cat : Panda { <nl> required init ( ) { } <nl> <nl> func getCutenessLevel ( ) - > Int { <nl> - return 3 ; <nl> + return 3 <nl> } <nl> } <nl> <nl> mmm a / test / Inputs / getmtime . py <nl> ppp b / test / Inputs / getmtime . py <nl> <nl> # ! / usr / bin / env python <nl> <nl> + from __future__ import print_function <nl> + <nl> import os <nl> import sys <nl> <nl> - print os . path . getmtime ( sys . argv [ 1 ] ) <nl> + print ( os . path . getmtime ( sys . argv [ 1 ] ) ) <nl> mmm a / test / Inputs / resilient_class . swift <nl> ppp b / test / Inputs / resilient_class . swift <nl> public class OutsideParent { <nl> <nl> public class ResilientOutsideParent { <nl> public var property : String = " ResilientOutsideParent . property " <nl> + public final var finalProperty : String = " ResilientOutsideParent . finalProperty " <nl> <nl> public class var classProperty : String { <nl> return " ResilientOutsideParent . classProperty " <nl> mmm a / test / Inputs / resilient_enum . swift <nl> ppp b / test / Inputs / resilient_enum . swift <nl> <nl> import resilient_struct <nl> <nl> + / / Fixed - layout enum with resilient members <nl> + @ _fixed_layout public enum SimpleShape { <nl> + case KleinBottle <nl> + case Triangle ( Size ) <nl> + } <nl> + <nl> / / Fixed - layout enum with resilient members <nl> @ _fixed_layout public enum Shape { <nl> + case Point <nl> case Rect ( Size ) <nl> - case RoundedRect ( Size ) <nl> + case RoundedRect ( Size , Size ) <nl> } <nl> <nl> / / Fixed - layout enum with indirect resilient members <nl> import resilient_struct <nl> indirect case Trapezoid ( Size ) <nl> } <nl> <nl> + / / The enum payload has fixed layout inside this module , but <nl> + / / resilient layout outside . Make sure we emit the payload <nl> + / / size in the metadata . <nl> + <nl> + public struct Color { <nl> + public let r : Int , g : Int , b : Int <nl> + <nl> + public init ( r : Int , g : Int , b : Int ) { <nl> + self . r = r <nl> + self . g = g <nl> + self . b = b <nl> + } <nl> + } <nl> + <nl> + @ _fixed_layout public enum CustomColor { <nl> + case Black <nl> + case White <nl> + case Custom ( Color ) <nl> + case Bespoke ( Color , Color ) <nl> + } <nl> + <nl> + / / Fixed - layout enum with resilient members <nl> + <nl> / / Resilient enum <nl> public enum Medium { <nl> / / Empty cases <nl> mmm a / test / Interpreter / SDK / archiving_generic_swift_class_renamed . swift <nl> ppp b / test / Interpreter / SDK / archiving_generic_swift_class_renamed . swift <nl> <nl> - / / RUN : % target - build - swift - Xfrontend - enable - swift - name - lookup - tables - parse % s - F % S / Inputs - Xfrontend - enable - omit - needless - words - Xfrontend - verify <nl> + / / RUN : % target - build - swift - parse % s - F % S / Inputs - Xfrontend - enable - omit - needless - words - Xfrontend - verify <nl> <nl> / / REQUIRES : objc_interop <nl> / / UNSUPPORTED : OS = tvos <nl> mmm a / test / Interpreter / SDK / objc_dynamic_lookup . swift <nl> ppp b / test / Interpreter / SDK / objc_dynamic_lookup . swift <nl> <nl> / / RUN : % target - run - simple - swift | FileCheck % s <nl> - / / RUN : % target - run - simple - swift - enable - swift - name - lookup - tables | FileCheck % s <nl> / / REQUIRES : executable_test <nl> <nl> / / REQUIRES : objc_interop <nl> mmm a / test / Interpreter / SDK / submodules_smoke_test . swift <nl> ppp b / test / Interpreter / SDK / submodules_smoke_test . swift <nl> <nl> / / RUN : % target - build - swift - parse % s - Xfrontend - verify <nl> - / / RUN : % target - build - swift - parse % s - Xfrontend - verify - Xfrontend - enable - swift - name - lookup - tables <nl> / / RUN : % target - build - swift - emit - ir - g % s - DNO_ERROR > / dev / null <nl> / / REQUIRES : executable_test <nl> <nl> mmm a / test / Interpreter / enum_resilience . swift <nl> ppp b / test / Interpreter / enum_resilience . swift <nl> ResilientEnumTestSuite . test ( " ResilientMultiPayloadGenericEnum " ) { <nl> expectEqual ( b , [ 0 , 1 , 2 , 3 , 4 ] ) <nl> } <nl> <nl> + public func getMetadata ( ) - > Any . Type { <nl> + return Shape . self <nl> + } <nl> + <nl> + ResilientEnumTestSuite . test ( " DynamicLayoutMetatype " ) { <nl> + do { <nl> + var output = " " <nl> + let expected = " - resilient_enum . Shape # 0 \ n " <nl> + dump ( getMetadata ( ) , & output ) <nl> + expectEqual ( output , expected ) <nl> + } <nl> + do { <nl> + expectEqual ( true , getMetadata ( ) = = getMetadata ( ) ) <nl> + } <nl> + } <nl> + <nl> + ResilientEnumTestSuite . test ( " DynamicLayoutSinglePayload " ) { <nl> + let s = Size ( w : 10 , h : 20 ) <nl> + let a : [ SimpleShape ] = [ . KleinBottle , . Triangle ( s ) ] <nl> + <nl> + let b : [ Int ] = a . map { <nl> + switch $ 0 { <nl> + case . KleinBottle : <nl> + return 0 <nl> + case . Triangle ( let s ) : <nl> + expectEqual ( s . w , 10 ) <nl> + expectEqual ( s . h , 20 ) <nl> + return 1 <nl> + } <nl> + } <nl> + <nl> + expectEqual ( b , [ 0 , 1 ] ) <nl> + } <nl> + <nl> + ResilientEnumTestSuite . test ( " DynamicLayoutMultiPayload " ) { <nl> + let s = Size ( w : 10 , h : 20 ) <nl> + let a : [ Shape ] = [ . Point , . Rect ( s ) , . RoundedRect ( s , s ) ] <nl> + <nl> + let b : [ Int ] = a . map { <nl> + switch $ 0 { <nl> + case . Point : <nl> + return 0 <nl> + case . Rect ( let s ) : <nl> + expectEqual ( s . w , 10 ) <nl> + expectEqual ( s . h , 20 ) <nl> + return 1 <nl> + case . RoundedRect ( let s , let ss ) : <nl> + expectEqual ( s . w , 10 ) <nl> + expectEqual ( s . h , 20 ) <nl> + expectEqual ( ss . w , 10 ) <nl> + expectEqual ( ss . h , 20 ) <nl> + return 2 <nl> + } <nl> + } <nl> + <nl> + expectEqual ( b , [ 0 , 1 , 2 ] ) <nl> + } <nl> + <nl> + ResilientEnumTestSuite . test ( " DynamicLayoutMultiPayload2 " ) { <nl> + let c = Color ( r : 1 , g : 2 , b : 3 ) <nl> + let a : [ CustomColor ] = [ . Black , . White , . Custom ( c ) , . Bespoke ( c , c ) ] <nl> + <nl> + let b : [ Int ] = a . map { <nl> + switch $ 0 { <nl> + case . Black : <nl> + return 0 <nl> + case . White : <nl> + return 1 <nl> + case . Custom ( let c ) : <nl> + expectEqual ( c . r , 1 ) <nl> + expectEqual ( c . g , 2 ) <nl> + expectEqual ( c . b , 3 ) <nl> + return 2 <nl> + case . Bespoke ( let c , let cc ) : <nl> + expectEqual ( c . r , 1 ) <nl> + expectEqual ( c . g , 2 ) <nl> + expectEqual ( c . b , 3 ) <nl> + expectEqual ( cc . r , 1 ) <nl> + expectEqual ( cc . g , 2 ) <nl> + expectEqual ( cc . b , 3 ) <nl> + return 3 <nl> + } <nl> + } <nl> + <nl> + expectEqual ( b , [ 0 , 1 , 2 , 3 ] ) <nl> + } <nl> + <nl> runAllTests ( ) <nl> mmm a / test / Interpreter / struct_resilience . swift <nl> ppp b / test / Interpreter / struct_resilience . swift <nl> struct MyResilientLayoutRuntimeTest { <nl> } <nl> } <nl> <nl> - @ inline ( never ) func getMetadata ( ) - > MyResilientLayoutRuntimeTest . Type { <nl> + @ inline ( never ) func getMetadata ( ) - > Any . Type { <nl> return MyResilientLayoutRuntimeTest . self <nl> } <nl> <nl> mmm a / test / Interpreter / submodules_smoke_test . swift <nl> ppp b / test / Interpreter / submodules_smoke_test . swift <nl> <nl> / / RUN : % target - build - swift - parse % s - F % S / Inputs - Xfrontend - verify <nl> - / / RUN : % target - build - swift - Xfrontend - enable - swift - name - lookup - tables - parse % s - F % S / Inputs - Xfrontend - verify <nl> / / RUN : % target - build - swift - emit - ir - g % s - F % S / Inputs - DNO_ERROR > / dev / null <nl> / / REQUIRES : executable_test <nl> <nl> mmm a / test / NameBinding / reference - dependencies - dynamic - lookup . swift <nl> ppp b / test / NameBinding / reference - dependencies - dynamic - lookup . swift <nl> <nl> / / RUN : FileCheck % s < % t . swiftdeps <nl> / / RUN : FileCheck - check - prefix = NEGATIVE % s < % t . swiftdeps <nl> <nl> - / / RUN : % target - swift - frontend ( mock - sdk : % clang - importer - sdk ) - parse - primary - file % t / main . swift - emit - reference - dependencies - path - - enable - swift - name - lookup - tables > % t . swiftdeps <nl> - / / RUN : FileCheck % s < % t . swiftdeps <nl> - / / RUN : FileCheck - check - prefix = NEGATIVE % s < % t . swiftdeps <nl> - <nl> / / REQUIRES : objc_interop <nl> <nl> import Foundation <nl> mmm a / test / Parse / foreach . swift <nl> ppp b / test / Parse / foreach . swift <nl> func for_each ( r : Range < Int > , iir : IntRange < Int > ) { <nl> } <nl> <nl> / / Parse errors <nl> - for i r { / / expected - error 2 { { expected ' ; ' in ' for ' statement } } expected - error { { use of unresolved identifier ' i ' } } <nl> + for i r { / / expected - error 2 { { expected ' ; ' in ' for ' statement } } expected - error { { use of unresolved identifier ' i ' } } expected - error { { type ' Range < Int > ' does not conform to protocol ' BooleanType ' } } <nl> } <nl> for i in r sum = sum + i ; / / expected - error { { expected ' { ' to start the body of for - each loop } } <nl> for let x in 0 . . < 10 { } / / expected - error { { ' let ' pattern is already in an immutable context } } { { 7 - 11 = } } <nl> mmm a / test / Parse / recovery . swift <nl> ppp b / test / Parse / recovery . swift <nl> func missingControllingExprInFor ( ) { <nl> # if true / / < rdar : / / problem / 21679557 > compiler crashes on " for { { " <nl> / / expected - error @ + 2 { { missing initialization in a ' for ' statement } } <nl> / / expected - note @ + 1 2 { { to match this opening ' { ' } } <nl> - for { { <nl> + for { { / / expected - error { { expression resolves to an unused function } } <nl> # endif / / expected - error 2 { { expected ' } ' at end of closure } } <nl> <nl> # if true <nl> new file mode 100644 <nl> index 000000000000 . . 3c626bc64291 <nl> mmm / dev / null <nl> ppp b / test / Parse / semicolon . swift <nl> <nl> + / / RUN : % target - parse - verify - swift <nl> + <nl> + let a = 42 ; <nl> + var b = " b " ; <nl> + <nl> + struct A { <nl> + var a1 : Int ; <nl> + let a2 : Int ; <nl> + var a3 : Int ; let a4 : Int <nl> + var a5 : Int ; let a6 : Int ; <nl> + } ; <nl> + <nl> + enum B { <nl> + case B1 ; <nl> + case B2 ( value : Int ) ; <nl> + case B3 <nl> + case B4 ; case B5 ; case B6 ; <nl> + } ; <nl> + <nl> + class C { <nl> + var x : Int ; <nl> + let y = 3 . 14159 ; <nl> + init ( x : Int ) { self . x = x ; } <nl> + } ; <nl> + <nl> + typealias C1 = C ; <nl> + <nl> + protocol D { <nl> + var foo : ( ) - > Int { get } ; <nl> + } <nl> + <nl> + struct D1 : D { <nl> + let foo = { return 42 ; } ; <nl> + } <nl> + func e ( ) - > Bool { <nl> + return false ; <nl> + } <nl> + <nl> + import Swift ; <nl> + <nl> + for i in 1 . . < 1000 { <nl> + if i % 2 = = 1 { <nl> + break ; <nl> + } ; <nl> + } <nl> + <nl> + let six = ( 1 . . < 3 ) . reduce ( 0 , combine : + ) ; <nl> + <nl> + func lessThanTwo ( input : UInt ) - > Bool { <nl> + switch input { <nl> + case 0 : return true ; <nl> + case 1 , 2 : return true ; <nl> + default : <nl> + return false ; <nl> + } <nl> + } <nl> + <nl> + enum StarWars { <nl> + enum Quality { case 😀 ; case 🙂 ; case 😐 ; case 😏 ; case 😞 } ; <nl> + case Ep4 ; case Ep5 ; case Ep6 <nl> + case Ep1 , Ep2 ; case Ep3 ; <nl> + } ; <nl> + <nl> mmm a / test / Parse / trailing - semi . swift <nl> ppp b / test / Parse / trailing - semi . swift <nl> struct SpuriousSemi { <nl> } <nl> <nl> class C { <nl> - var a : Int = 10 ; <nl> + var a : Int = 10 <nl> func b ( ) { } ; <nl> class func c ( ) { } ; <nl> } <nl> mmm a / test / PrintAsObjC / imports . swift <nl> ppp b / test / PrintAsObjC / imports . swift <nl> import ctypes . bits <nl> import Foundation <nl> <nl> import Base <nl> - import Base . ImplicitSub ; <nl> - import Base . ImplicitSub . ImSub ; <nl> - import Base . ImplicitSub . ExSub ; <nl> - import Base . ExplicitSub ; <nl> - import Base . ExplicitSub . ImSub ; <nl> - import Base . ExplicitSub . ExSub ; <nl> + import Base . ImplicitSub <nl> + import Base . ImplicitSub . ImSub <nl> + import Base . ImplicitSub . ExSub <nl> + import Base . ExplicitSub <nl> + import Base . ExplicitSub . ImSub <nl> + import Base . ExplicitSub . ExSub <nl> <nl> @ objc class Test { <nl> let word : DWORD = 0 <nl> mmm a / test / PrintAsObjC / local - types . swift <nl> ppp b / test / PrintAsObjC / local - types . swift <nl> class ANonObjCClass { } <nl> func b ( b : ZForwardProtocol1 ) { } <nl> } <nl> <nl> - typealias ZForwardAlias = ZForwardAliasClass ; <nl> + typealias ZForwardAlias = ZForwardAliasClass <nl> @ objc class ZForwardAliasClass { } <nl> <nl> / / CHECK - NOT : @ class UseForward ; <nl> new file mode 100644 <nl> index 000000000000 . . 03a7b30189cd <nl> mmm / dev / null <nl> ppp b / test / SIL / Parser / undef . sil <nl> <nl> + / / RUN : % target - sil - opt % s | % target - sil - opt | FileCheck % s <nl> + sil_stage raw <nl> + <nl> + import Builtin <nl> + import Swift <nl> + <nl> + / / CHECK - LABEL : sil @ undef_in_switch_value_case : $ @ convention ( thin ) ( ) - > ( ) <nl> + sil @ undef_in_switch_value_case : $ @ convention ( thin ) ( ) - > ( ) { <nl> + bb0 : <nl> + % 0 = integer_literal $ Builtin . Int1 , 0 <nl> + / / CHECK : case undef : bb1 <nl> + switch_value % 0 : $ Builtin . Int1 , case undef : bb1 <nl> + bb1 : <nl> + % 1 = function_ref @ undef_in_switch_value_case : $ @ convention ( thin ) ( ) - > ( ) <nl> + / / CHECK : case undef : bb2 <nl> + switch_value % 1 : $ @ convention ( thin ) ( ) - > ( ) , case undef : bb2 <nl> + bb2 : <nl> + % 2 = tuple ( ) <nl> + return % 2 : $ ( ) <nl> + } <nl> new file mode 100644 <nl> index 000000000000 . . ee9fd85f366e <nl> mmm / dev / null <nl> ppp b / test / SILGen / class_resilience . swift <nl> <nl> + / / RUN : % target - swift - frontend - I % S / . . / Inputs - enable - source - import - emit - silgen - enable - resilience % s | FileCheck % s <nl> + <nl> + import resilient_class <nl> + <nl> + / / Accessing final property of resilient class from different resilience domain <nl> + / / through accessor <nl> + <nl> + / / CHECK - LABEL : sil @ _TF16class_resilience20finalPropertyOfOtherFC15resilient_class22ResilientOutsideParentT_ <nl> + / / CHECK : function_ref @ _TFC15resilient_class22ResilientOutsideParentg13finalPropertySS <nl> + <nl> + public func finalPropertyOfOther ( other : ResilientOutsideParent ) { <nl> + _ = other . finalProperty <nl> + } <nl> + <nl> + public class MyResilientClass { <nl> + public final var finalProperty : String = " MyResilientClass . finalProperty " <nl> + } <nl> + <nl> + / / Accessing final property of resilient class from my resilience domain <nl> + / / directly <nl> + <nl> + / / CHECK - LABEL : sil @ _TF16class_resilience19finalPropertyOfMineFCS_16MyResilientClassT_ <nl> + / / CHECK : ref_element_addr % 0 : $ MyResilientClass , # MyResilientClass . finalProperty <nl> + <nl> + public func finalPropertyOfMine ( other : MyResilientClass ) { <nl> + _ = other . finalProperty <nl> + } <nl> + <nl> mmm a / test / SILGen / coverage_guard . swift <nl> ppp b / test / SILGen / coverage_guard . swift <nl> func foo ( x : Int32 ) { / / CHECK : [ [ @ LINE ] ] : 21 - > [ [ END : [ 0 - 9 ] + : 2 ] ] : 0 <nl> return <nl> } / / CHECK : [ [ @ LINE ] ] : 4 - > [ [ END ] ] : ( ( ( 0 - 1 ) - 2 ) - 4 ) <nl> <nl> - let z = x ; <nl> + let z = x <nl> } <nl> <nl> foo ( 1 ) ; <nl> mmm a / test / SILGen / sil_locations . swift <nl> ppp b / test / SILGen / sil_locations . swift <nl> <nl> / / FIXME : Not sure if this an ideal source info for the branch - <nl> / / it points to if , not the last instruction in the block . <nl> func ifexpr ( ) - > Int { <nl> - var x : Int = 0 ; <nl> + var x : Int = 0 <nl> if true { <nl> x + + ; <nl> } <nl> - return x ; <nl> + return x <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations6ifexprFT_Si <nl> / / CHECK : apply { { . * } } line : [ [ @ LINE - 5 ] ] : 6 <nl> / / CHECK : cond_br { { % . * } } , [ [ TRUE_BB : bb [ 0 - 9 ] + ] ] , [ [ FALSE_BB : bb [ 0 - 9 ] + ] ] / / { { . * } } line : [ [ @ LINE - 6 ] ] : 6 <nl> func ifexpr ( ) - > Int { <nl> } <nl> <nl> func ifelseexpr ( ) - > Int { <nl> - var x : Int = 0 ; <nl> + var x : Int = 0 <nl> if true { <nl> x + + ; <nl> } else { <nl> x - - ; <nl> } <nl> - return x ; <nl> + return x <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations10ifelseexprFT_Si <nl> / / CHECK : cond_br { { % . * } } , [ [ TRUE_BB : bb [ 0 - 9 ] + ] ] , [ [ FALSE_BB : bb [ 0 - 9 ] + ] ] / / { { . * } } line : [ [ @ LINE - 7 ] ] : 6 <nl> / / CHECK : [ [ TRUE_BB ] ] : <nl> func ifelseexpr ( ) - > Int { <nl> / / in the branch . <nl> func ifexpr_return ( ) - > Int { <nl> if true { <nl> - return 5 ; <nl> + return 5 <nl> } <nl> - return 6 ; <nl> + return 6 <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations13ifexpr_returnFT_Si <nl> / / CHECK : apply { { . * } } line : [ [ @ LINE - 5 ] ] : 6 <nl> / / CHECK : cond_br { { % . * } } , [ [ TRUE_BB : bb [ 0 - 9 ] + ] ] , [ [ FALSE_BB : bb [ 0 - 9 ] + ] ] / / { { . * } } line : [ [ @ LINE - 6 ] ] : 6 <nl> func ifexpr_return ( ) - > Int { <nl> } <nl> <nl> func ifexpr_rval ( ) - > Int { <nl> - var x = true ? 5 : 6 ; <nl> - return x ; <nl> + var x = true ? 5 : 6 <nl> + return x <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations11ifexpr_rvalFT_Si <nl> / / CHECK : apply { { . * } } line : [ [ @ LINE - 3 ] ] : 11 <nl> / / CHECK : cond_br { { % . * } } , [ [ TRUE_BB : bb [ 0 - 9 ] + ] ] , [ [ FALSE_BB : bb [ 0 - 9 ] + ] ] / / { { . * } } line : [ [ @ LINE - 4 ] ] : 11 <nl> class LocationClass { <nl> func mem ( ) { } <nl> } <nl> func testMethodCall ( ) { <nl> - var l : LocationClass ; <nl> + var l : LocationClass <nl> l . mem ( ) ; <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations14testMethodCallFT_T_ <nl> <nl> func testMethodCall ( ) { <nl> } <nl> <nl> func multipleReturnsImplicitAndExplicit ( ) { <nl> - var x = 5 + 3 ; <nl> + var x = 5 + 3 <nl> if x > 10 { <nl> - return ; <nl> + return <nl> } <nl> x + + ; <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations34multipleReturnsImplicitAndExplicitFT_T_ <nl> func testSwitch ( ) { <nl> <nl> func testIf ( ) { <nl> if true { <nl> - var y : Int ; <nl> + var y : Int <nl> } else { <nl> - var x : Int ; <nl> + var x : Int <nl> } <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations6testIfFT_T_ <nl> / / <nl> func testIf ( ) { <nl> <nl> func testFor ( ) { <nl> for ( var i : Int = 0 ; i < 10 ; i + + ) { <nl> - var y : Int = 300 ; <nl> + var y : Int = 300 <nl> y + + ; <nl> if true { <nl> - break ; <nl> + break <nl> } <nl> y - - ; <nl> - continue ; <nl> + continue <nl> } <nl> <nl> / / CHECK - LABEL : sil hidden @ _TF13sil_locations7testForFT_T_ <nl> func printSinglePayloadAddressOnly ( v : SinglePayloadAddressOnly ) { <nl> <nl> <nl> func testStringForEachStmt ( ) { <nl> - var i = 0 ; <nl> + var i = 0 <nl> for index in 1 . . < 20 { <nl> i + = 1 <nl> if i = = 15 { <nl> func testStringForEachStmt ( ) { <nl> <nl> <nl> func testForStmt ( ) { <nl> - var i = 0 ; <nl> - var m = 0 ; <nl> + var i = 0 <nl> + var m = 0 <nl> for ( i = 0 ; i < 10 ; + + i ) { <nl> m + = 1 <nl> if m = = 15 { <nl> func testForStmt ( ) { <nl> <nl> <nl> func testRepeatWhile ( ) { <nl> - var m = 0 ; <nl> + var m = 0 <nl> repeat { <nl> m + = 1 <nl> } while ( m < 200 ) <nl> func testRepeatWhile ( ) { <nl> <nl> <nl> func testWhile ( ) { <nl> - var m = 0 ; <nl> + var m = 0 <nl> while m < 100 { <nl> m + = 1 <nl> if m > 5 { <nl> mmm a / test / SILGen / statements . swift <nl> ppp b / test / SILGen / statements . swift <nl> func nested_if_merge_ret ( x : Int , y : Bool , z : Bool ) - > Int { <nl> if ( z ) { <nl> bar ( x ) ; <nl> } <nl> - return 1 ; <nl> + return 1 <nl> } else { <nl> if ( z ) { <nl> foo ( x , y ) ; <nl> } <nl> } <nl> - return 2 ; <nl> + return 2 <nl> } <nl> <nl> / / CHECK - LABEL : sil hidden @ _TF10statements19nested_if_merge_ret <nl> func loop_with_break ( x : Int , _ y : Bool , _ z : Bool ) - > Int { <nl> while ( x > 2 ) { <nl> if ( y ) { <nl> bar ( x ) ; <nl> - break ; <nl> + break <nl> } <nl> } <nl> } <nl> func loop_with_continue ( x : Int , y : Bool , z : Bool ) - > Int { <nl> while ( x > 2 ) { <nl> if ( y ) { <nl> bar ( x ) ; <nl> - continue ; <nl> + continue <nl> } <nl> loop_with_break ( x , y , z ) ; <nl> } <nl> func do_loop_with_continue ( x : Int , y : Bool , z : Bool ) - > Int { <nl> repeat { <nl> if ( x < 42 ) { <nl> bar ( x ) ; <nl> - continue ; <nl> + continue <nl> } <nl> loop_with_break ( x , y , z ) ; <nl> } <nl> mmm a / test / SILGen / transparent_attribute . swift <nl> ppp b / test / SILGen / transparent_attribute . swift <nl> var x2 : MySt { <nl> func testProperty ( z : MySt ) { <nl> x1 = z <nl> x2 = z <nl> - var m1 : MySt = x1 ; <nl> - var m2 : MySt = x2 ; <nl> + var m1 : MySt = x1 <nl> + var m2 : MySt = x2 <nl> / / CHECK - APPLY : sil hidden @ _TF21transparent_attribute12testPropertyFT1zVS_4MySt_T_ <nl> / / CHECK : function_ref @ _TF21transparent_attributes2x1VS_4MySt <nl> / / CHECK - NEXT : apply <nl> mmm a / test / SILGen / unreachable_code . swift <nl> ppp b / test / SILGen / unreachable_code . swift <nl> <nl> / / RUN : % target - swift - frontend - emit - sil % s - o / dev / null - verify <nl> <nl> func testUnreachableAfterReturn ( ) - > Int { <nl> - var x : Int = 3 ; <nl> - return x ; <nl> + var x : Int = 3 <nl> + return x <nl> x + = 1 / / expected - warning { { code after ' return ' will never be executed } } <nl> } <nl> <nl> func testUnreachableAfterIfReturn ( a : Bool ) - > Int { <nl> <nl> func testUnreachableForAfterContinue ( b : Bool ) { <nl> for ( var i : Int = 0 ; i < 10 ; i + + ) { / / expected - warning { { C - style for statement is deprecated and will be removed in a future version of Swift } } <nl> - var y : Int = 300 ; <nl> + var y : Int = 300 <nl> y + + ; <nl> if b { <nl> - break ; <nl> + break <nl> y + + ; / / expected - warning { { code after ' break ' will never be executed } } <nl> } <nl> - continue ; <nl> + continue <nl> y - - ; / / expected - warning { { code after ' continue ' will never be executed } } <nl> } <nl> } <nl> <nl> func testUnreachableWhileAfterContinue ( b : Bool ) { <nl> - var i : Int = 0 ; <nl> + var i : Int = 0 <nl> while ( i < 10 ) { <nl> - var y : Int = 300 ; <nl> + var y : Int = 300 <nl> y + + ; <nl> if b { <nl> - break ; <nl> + break <nl> y + + ; / / expected - warning { { code after ' break ' will never be executed } } <nl> } <nl> - continue ; <nl> + continue <nl> i + + ; / / expected - warning { { code after ' continue ' will never be executed } } <nl> } <nl> } <nl> <nl> func testBreakAndContinue ( ) { <nl> - var i = 0 ; <nl> - var m = 0 ; <nl> + var i = 0 <nl> + var m = 0 <nl> for ( i = 0 ; i < 10 ; + + i ) { / / expected - warning { { C - style for statement is deprecated and will be removed in a future version of Swift } } <nl> m + = 1 <nl> if m = = 15 { <nl> mmm a / test / SILOptimizer / basic - aa . sil <nl> ppp b / test / SILOptimizer / basic - aa . sil <nl> bb0 ( % 0 : $ C , % 1 : $ C , % 2 : $ Int ) : <nl> return % 2 : $ Int <nl> } <nl> <nl> - / / CHECK - LABEL : @ non_escaping_local_object_does_not_alias_with_unknown <nl> - / / CHECK : PAIR # 7 . <nl> - / / CHECK - NEXT : ( 0 ) : % 1 = alloc_ref $ X / / user : % 3 <nl> - / / CHECK - NEXT : ( 0 ) : % 3 = apply % 2 ( % 1 ) : $ @ convention ( thin ) ( X ) - > X <nl> - / / CHECK - NEXT : NoAlias <nl> - sil @ non_escaping_local_object_does_not_alias_with_unknown : $ @ convention ( thin ) ( X ) - > ( ) { <nl> - bb0 ( % 0 : $ X ) : <nl> - % 1 = alloc_ref $ X <nl> - <nl> - % f = function_ref @ not_escaping : $ @ convention ( thin ) ( X ) - > X <nl> - % 2 = apply % f ( % 1 ) : $ @ convention ( thin ) ( X ) - > X <nl> - <nl> - % 12 = tuple ( ) <nl> - return % 12 : $ ( ) <nl> - } <nl> - <nl> - sil @ not_escaping : $ @ convention ( thin ) ( X ) - > X { <nl> - bb0 ( % 0 : $ X ) : <nl> - % 1 = alloc_ref $ X <nl> - return % 1 : $ X <nl> - } <nl> - <nl> mmm a / test / SILOptimizer / diagnostic_constant_propagation . swift <nl> ppp b / test / SILOptimizer / diagnostic_constant_propagation . swift <nl> func testGenericArithmeticOverflowMessage ( ) { <nl> myaddUnsigned ( 250 , 250 , 250 ) / / expected - error { { arithmetic operation ' 250 + 250 ' ( on unsigned 8 - bit integer type ) results in an overflow } } <nl> } <nl> <nl> - typealias MyInt = UInt8 ; <nl> + typealias MyInt = UInt8 <nl> <nl> func testConvertOverflow ( ) { <nl> var _ / * int8_minus_two * / : Int8 = ( - 2 ) <nl> func testConvertOverflow ( ) { <nl> <nl> var _ / * int8_max_pa * / : Int8 = - 13333 ; / / expected - error { { integer literal ' - 13333 ' overflows when stored into ' Int8 } } <nl> var _ / * int32_max_p_hex * / : Int32 = 0xFFFF_FFFF ; / / expected - error { { integer literal ' 4294967295 ' overflows when stored into ' Int32 ' } } <nl> - var _ / * uint32_max_hex * / : UInt32 = 0xFFFF_FFFF ; <nl> + var _ / * uint32_max_hex * / : UInt32 = 0xFFFF_FFFF <nl> var _ / * uint32_max_p_hex * / : UInt32 = 0xFFFF_FFFF_F ; / / expected - error { { integer literal ' 68719476735 ' overflows when stored into ' UInt32 ' } } <nl> var _ / * uint0_typealias * / : MyInt = 256 ; / / expected - error { { integer literal ' 256 ' overflows when stored into ' MyInt ' } } <nl> <nl> mmm a / test / SILOptimizer / mandatory_inlining . swift <nl> ppp b / test / SILOptimizer / mandatory_inlining . swift <nl> func foo ( x : Float ) - > Float { <nl> / / CHECK : return <nl> <nl> @ _transparent func baz ( x : Float ) - > Float { <nl> - return x ; <nl> + return x <nl> } <nl> <nl> / / CHECK - LABEL : sil hidden [ transparent ] @ _TF18mandatory_inlining3baz <nl> enum X { <nl> } <nl> <nl> func testInlineUnionElement ( ) - > X { <nl> - return X . onetransp ; <nl> + return X . onetransp <nl> / / CHECK - LABEL : sil hidden @ _TF18mandatory_inlining22testInlineUnionElementFT_OS_1X <nl> / / CHECK : enum $ X , # X . onetransp ! enumelt <nl> / / CHECK - NOT = apply <nl> mmm a / test / SILOptimizer / redundantloadelimination . sil <nl> ppp b / test / SILOptimizer / redundantloadelimination . sil <nl> struct TwoField { <nl> <nl> <nl> sil @ use : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) <nl> + sil @ use_Int : $ @ convention ( thin ) ( Int ) - > ( ) <nl> sil @ use_64 : $ @ convention ( thin ) ( Builtin . Int64 ) - > ( ) <nl> sil @ use_2_64 : $ @ convention ( thin ) ( Builtin . Int64 , Builtin . Int64 ) - > ( ) <nl> sil @ use_a : $ @ convention ( thin ) ( A ) - > ( ) <nl> bb3 : / / Preds : bb1 bb2 <nl> return % 24 : $ ( ) / / id : % 25 <nl> } <nl> <nl> - / / CHECK - LABEL : load_to_load_irreducible_loop <nl> - / / CHECK : bb0 <nl> - / / CHECK : load <nl> - / / CHECK : bb1 <nl> - / / CHECK - NOT : load <nl> - / / CHECK : store <nl> - / / CHECK : bb2 <nl> - / / CHECK - NOT : load <nl> - / / CHECK : bb3 <nl> - / / CHECK - NOT : load <nl> - / / CHECK : return <nl> - sil @ load_to_load_irreducible_loop : $ @ convention ( thin ) ( ) - > ( ) { <nl> - bb0 : <nl> - % 0 = alloc_stack $ Int32 <nl> - % 99 = struct_element_addr % 0 # 1 : $ * Int32 , # Int32 . value <nl> - % 1 = load % 99 : $ * Builtin . Int32 <nl> - builtin " trunc_Int32_Int1 " ( % 1 : $ Builtin . Int32 ) : $ Builtin . Int1 <nl> - cond_br undef , bb1 , bb2 <nl> - <nl> - bb1 : <nl> - % 3 = load % 99 : $ * Builtin . Int32 <nl> - % 4 = integer_literal $ Builtin . Int32 , 2 <nl> - % 22 = function_ref @ use : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) / / user : % 23 <nl> - % 23 = apply % 22 ( % 3 ) : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) <nl> - store % 4 to % 99 : $ * Builtin . Int32 <nl> - builtin " trunc_Int32_Int1 " ( % 3 : $ Builtin . Int32 ) : $ Builtin . Int1 <nl> - % 5 = load % 99 : $ * Builtin . Int32 <nl> - % 24 = apply % 22 ( % 5 ) : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) <nl> - builtin " trunc_Int32_Int1 " ( % 5 : $ Builtin . Int32 ) : $ Builtin . Int1 <nl> - cond_br undef , bb2 , bb3 <nl> - <nl> - bb2 : <nl> - % 6 = load % 99 : $ * Builtin . Int32 <nl> - % 25 = function_ref @ use : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) / / user : % 23 <nl> - % 26 = apply % 25 ( % 6 ) : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) <nl> - builtin " trunc_Int32_Int1 " ( % 6 : $ Builtin . Int32 ) : $ Builtin . Int1 <nl> - cond_br undef , bb1 , bb3 <nl> - <nl> - bb3 : <nl> - % 7 = load % 99 : $ * Builtin . Int32 <nl> - % 125 = function_ref @ use : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) / / user : % 23 <nl> - % 126 = apply % 125 ( % 7 ) : $ @ convention ( thin ) ( Builtin . Int32 ) - > ( ) <nl> - builtin " trunc_Int32_Int1 " ( % 7 : $ Builtin . Int32 ) : $ Builtin . Int1 <nl> - dealloc_stack % 0 # 0 : $ * @ local_storage Int32 <nl> - % 9999 = tuple ( ) <nl> - return % 9999 : $ ( ) <nl> - } <nl> - <nl> / / Forward store % 1 and store % 2 such that load % 3 becomes an identity trivial cast . <nl> / / Both loads from % 0 will be eliminated . <nl> / / CHECK - LABEL : sil @ test_read_dependence_allows_forwarding_multi_bb_2 : $ @ convention ( thin ) ( @ inout A , A , A ) - > A { <nl> bb2 : / / Preds : bb1 bb2 <nl> return % 23 : $ ( ) / / id : % 25 <nl> } <nl> <nl> + / / Make sure we form a single SILArgument . <nl> + / / <nl> + / / CHECK - LABEL : single_silargument_agg_in_one_block <nl> + / / CHECK : bb3 ( [ [ ARG : % . * ] ] : $ TwoField ) : <nl> + / / CHECK - NOT : load <nl> + / / CHECK : return <nl> + sil hidden @ single_silargument_agg_in_one_block : $ @ convention ( thin ) ( Bool ) - > ( ) { <nl> + bb0 ( % 0 : $ Bool ) : <nl> + % 1 = alloc_stack $ TwoField , var , name " x " / / users : % 5 , % 7 , % 13 , % 15 , % 19 <nl> + cond_br undef , bb1 , bb2 / / id : % 2 <nl> + <nl> + bb1 : / / Preds : bb0 <nl> + % 3 = integer_literal $ Builtin . Int64 , 10 / / user : % 4 <nl> + % 4 = struct $ Int ( % 3 : $ Builtin . Int64 ) / / users : % 6 , % 8 <nl> + % 5 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 6 <nl> + store % 4 to % 5 : $ * Int / / id : % 6 <nl> + % 7 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . b / / user : % 8 <nl> + store % 4 to % 7 : $ * Int / / id : % 8 <nl> + br bb3 / / id : % 9 <nl> + <nl> + bb2 : / / Preds : bb0 <nl> + % 10 = integer_literal $ Builtin . Int64 , 10 / / user : % 11 <nl> + % 11 = struct $ Int ( % 10 : $ Builtin . Int64 ) / / users : % 12 , % 12 <nl> + % 12 = struct $ TwoField ( % 11 : $ Int , % 11 : $ Int ) / / user : % 13 <nl> + store % 12 to % 1 # 1 : $ * TwoField / / id : % 13 <nl> + br bb3 / / id : % 14 <nl> + <nl> + bb3 : / / Preds : bb1 bb2 <nl> + % 15 = load % 1 # 1 : $ * TwoField / / user : % 17 <nl> + / / function_ref use_twofield <nl> + % 16 = function_ref @ use_twofield : $ @ convention ( thin ) ( TwoField ) - > ( ) / / user : % 17 <nl> + % 17 = apply % 16 ( % 15 ) : $ @ convention ( thin ) ( TwoField ) - > ( ) <nl> + % 18 = tuple ( ) / / user : % 20 <nl> + dealloc_stack % 1 # 0 : $ * @ local_storage TwoField / / id : % 19 <nl> + return % 18 : $ ( ) / / id : % 20 <nl> + } <nl> + <nl> + / / CHECK - LABEL : large_diamond_silargument_forwarding <nl> + / / CHECK : bb9 <nl> + / / CHECK - NOT : load <nl> + / / CHECK : return <nl> + sil hidden @ large_diamond_silargument_forwarding : $ @ convention ( thin ) ( Bool ) - > Int { <nl> + bb0 ( % 0 : $ Bool ) : <nl> + % 1 = alloc_stack $ TwoField , var , name " x " / / users : % 7 , % 10 , % 13 , % 16 , % 21 , % 23 <nl> + % 2 = integer_literal $ Builtin . Int64 , 10 / / user : % 3 <nl> + % 3 = struct $ Int ( % 2 : $ Builtin . Int64 ) / / users : % 8 , % 11 , % 14 , % 17 <nl> + cond_br undef , bb1 , bb2 / / id : % 4 <nl> + <nl> + bb1 : / / Preds : bb0 <nl> + cond_br undef , bb3 , bb4 / / id : % 5 <nl> + <nl> + bb2 : / / Preds : bb0 <nl> + cond_br undef , bb5 , bb6 / / id : % 6 <nl> + <nl> + bb3 : / / Preds : bb1 <nl> + % 7 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 8 <nl> + store % 3 to % 7 : $ * Int / / id : % 8 <nl> + br bb7 / / id : % 9 <nl> + <nl> + bb4 : / / Preds : bb1 <nl> + % 10 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 11 <nl> + store % 3 to % 10 : $ * Int / / id : % 11 <nl> + br bb7 / / id : % 12 <nl> + <nl> + bb5 : / / Preds : bb2 <nl> + % 13 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 14 <nl> + store % 3 to % 13 : $ * Int / / id : % 14 <nl> + br bb8 / / id : % 15 <nl> + <nl> + bb6 : / / Preds : bb2 <nl> + % 16 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 17 <nl> + store % 3 to % 16 : $ * Int / / id : % 17 <nl> + br bb8 / / id : % 18 <nl> + <nl> + bb7 : / / Preds : bb3 bb4 <nl> + br bb9 / / id : % 19 <nl> + <nl> + bb8 : / / Preds : bb5 bb6 <nl> + br bb9 / / id : % 20 <nl> + <nl> + bb9 : / / Preds : bb7 bb8 <nl> + % 21 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 22 <nl> + % 22 = load % 21 : $ * Int / / user : % 24 <nl> + dealloc_stack % 1 # 0 : $ * @ local_storage TwoField / / id : % 23 <nl> + return % 22 : $ Int / / id : % 24 <nl> + } <nl> <nl> + / / Make sure we can re - use the SILArgument inserted in bb8 for forwarding <nl> + / / in bb9 and bb10 . <nl> + / / <nl> + / / CHECK - LABEL : reuse_silargument_multiple_bb_forwarding <nl> + / / CHECK : bb8 ( [ [ ARG : % . * ] ] : $ Int ) <nl> + / / CHECK : bb9 <nl> + / / CHECK - NOT : load <nl> + / / CHECK : bb10 <nl> + / / CHECK - NOT : load <nl> + / / CHECK : return <nl> + sil hidden @ reuse_silargument_multiple_bb_forwarding : $ @ convention ( thin ) ( Bool ) - > Int { <nl> + bb0 ( % 0 : $ Bool ) : <nl> + % 1 = alloc_stack $ TwoField , var , name " x " / / users : % 7 , % 10 , % 13 , % 16 , % 21 , % 26 , % 28 <nl> + % 2 = integer_literal $ Builtin . Int64 , 10 / / user : % 3 <nl> + % 3 = struct $ Int ( % 2 : $ Builtin . Int64 ) / / users : % 8 , % 11 , % 14 , % 17 <nl> + cond_br undef , bb1 , bb2 / / id : % 4 <nl> + <nl> + bb1 : / / Preds : bb0 <nl> + cond_br undef , bb3 , bb4 / / id : % 5 <nl> + <nl> + bb2 : / / Preds : bb0 <nl> + cond_br undef , bb5 , bb6 / / id : % 6 <nl> + <nl> + bb3 : / / Preds : bb1 <nl> + % 7 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 8 <nl> + store % 3 to % 7 : $ * Int / / id : % 8 <nl> + br bb7 / / id : % 9 <nl> + <nl> + bb4 : / / Preds : bb1 <nl> + % 10 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 11 <nl> + store % 3 to % 10 : $ * Int / / id : % 11 <nl> + br bb7 / / id : % 12 <nl> + <nl> + bb5 : / / Preds : bb2 <nl> + % 13 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 14 <nl> + store % 3 to % 13 : $ * Int / / id : % 14 <nl> + br bb8 / / id : % 15 <nl> + <nl> + bb6 : / / Preds : bb2 <nl> + % 16 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 17 <nl> + store % 3 to % 16 : $ * Int / / id : % 17 <nl> + br bb8 / / id : % 18 <nl> + <nl> + bb7 : / / Preds : bb3 bb4 <nl> + br bb10 / / id : % 19 <nl> + <nl> + bb8 : / / Preds : bb5 bb6 <nl> + cond_br undef , bb9 , bb10 / / id : % 20 <nl> + <nl> + bb9 : / / Preds : bb8 <nl> + % 21 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 22 <nl> + % 22 = load % 21 : $ * Int / / user : % 24 <nl> + % 23 = function_ref @ use_Int : $ @ convention ( thin ) ( Int ) - > ( ) / / user : % 24 <nl> + % 24 = apply % 23 ( % 22 ) : $ @ convention ( thin ) ( Int ) - > ( ) <nl> + br bb10 / / id : % 25 <nl> + <nl> + bb10 : / / Preds : bb7 bb8 bb9 <nl> + % 26 = struct_element_addr % 1 # 1 : $ * TwoField , # TwoField . a / / user : % 27 <nl> + % 27 = load % 26 : $ * Int / / user : % 29 <nl> + dealloc_stack % 1 # 0 : $ * @ local_storage TwoField / / id : % 28 <nl> + return % 27 : $ Int / / id : % 29 <nl> + } <nl> mmm a / test / SILOptimizer / return . swift <nl> ppp b / test / SILOptimizer / return . swift <nl> func multipleBlocksSingleMissing ( b : Bool ) - > ( String , Int ) { <nl> func multipleBlocksAllMissing ( x : Int ) - > Int { <nl> var y : Int = x + 1 <nl> while ( y > 0 ) { <nl> - - - y ; <nl> - break ; <nl> + - - y <nl> + break <nl> } <nl> var x = 0 <nl> x + = 1 <nl> func diagnose_missing_return_no_error_after_noreturn_method ( ) - > Int { <nl> } / / no error <nl> <nl> func whileLoop ( flag : Bool ) - > Int { <nl> - var b = 1 ; <nl> + var b = 1 <nl> while ( flag ) { <nl> if b = = 3 { <nl> return 3 <nl> func whileLoop ( flag : Bool ) - > Int { <nl> } / / expected - error { { missing return in a function expected to return ' Int ' } } <nl> <nl> func whileTrueLoop ( ) - > Int { <nl> - var b = 1 ; <nl> + var b = 1 <nl> while ( true ) { <nl> if b = = 3 { <nl> return 3 <nl> func testUnreachableAfterNoReturn ( x : Int ) - > Int { <nl> } <nl> <nl> func testUnreachableAfterNoReturnInADifferentBlock ( ) - > Int { <nl> - let x : Int = 5 ; <nl> + let x : Int = 5 <nl> if true { / / expected - note { { condition always evaluates to true } } <nl> exit ( ) ; <nl> } <nl> func testReachableAfterNoReturnInADifferentBlock ( x : Int ) - > Int { <nl> } <nl> <nl> func testUnreachableAfterNoReturnFollowedByACall ( ) - > Int { <nl> - let x : Int = 5 ; <nl> + let x : Int = 5 <nl> exit ( ) ; / / expected - note { { a call to a noreturn function } } <nl> exit ( ) ; / / expected - warning { { will never be executed } } <nl> - return x ; <nl> + return x <nl> } <nl> <nl> func testUnreachableAfterNoReturnMethod ( ) - > Int { <nl> mmm a / test / SILOptimizer / simplify_cfg . sil <nl> ppp b / test / SILOptimizer / simplify_cfg . sil <nl> bb1 ( % 12 : $ ( ) ) : <nl> bb2 ( % 16 : $ ErrorProtocol ) : <nl> unreachable <nl> } <nl> + <nl> + <nl> + / / Check that we don ' t crash on this . <nl> + <nl> + / / CHECK - LABEL : @ simplified_branch_arg_has_result_value_1 <nl> + / / CHECK : [ [ B : % [ 0 - 9 ] + ] ] = alloc_box <nl> + / / CHECK : br bb1 ( [ [ B ] ] # 1 : $ * Builtin . Int32 ) <nl> + sil @ simplified_branch_arg_has_result_value_1 : $ @ convention ( thin ) ( @ in Builtin . Int32 ) - > Builtin . Int32 { <nl> + entry ( % 0 : $ * Builtin . Int32 ) : <nl> + % b = alloc_box $ Builtin . Int32 <nl> + % i = integer_literal $ Builtin . Int32 , 0 <nl> + store % i to % b # 1 : $ * Builtin . Int32 <nl> + % p = project_box % b # 0 : $ @ box Builtin . Int32 <nl> + br bb1 ( % p : $ * Builtin . Int32 ) <nl> + <nl> + bb1 ( % a : $ * Builtin . Int32 ) : <nl> + % r = load % a : $ * Builtin . Int32 <nl> + cond_br undef , bb1 ( % 0 : $ * Builtin . Int32 ) , bb2 <nl> + <nl> + bb2 : <nl> + return % r : $ Builtin . Int32 <nl> + } <nl> + <nl> + <nl> mmm a / test / SILOptimizer / sroa_unreferenced_members . swift <nl> ppp b / test / SILOptimizer / sroa_unreferenced_members . swift <nl> import gizmo <nl> / / CHECK : % 1 = alloc_stack $ Drill <nl> / / CHECK : ret <nl> func ModifyStruct ( inDrill : Drill ) - > Int32 { <nl> - var D : Drill = inDrill ; <nl> + var D : Drill = inDrill <nl> D . x + = 3 <nl> - return D . x ; <nl> + return D . x <nl> } <nl> mmm a / test / SILOptimizer / switch . swift <nl> ppp b / test / SILOptimizer / switch . swift <nl> func non_fully_covered_switch ( x : Int ) - > Int { <nl> case 3 : <nl> x - = 1 <nl> } / / expected - error { { switch must be exhaustive } } <nl> - return x ; <nl> + return x <nl> } <nl> <nl> mmm a / test / SILOptimizer / unreachable_code . swift <nl> ppp b / test / SILOptimizer / unreachable_code . swift <nl> func testSwitchEnum ( xi : Int ) - > Int { <nl> x - = 1 <nl> } <nl> <nl> - return x ; <nl> + return x <nl> } <nl> <nl> <nl> mmm a / test / Serialization / Inputs / def_transparent . swift <nl> ppp b / test / Serialization / Inputs / def_transparent . swift <nl> <nl> } <nl> <nl> @ _transparent public func testBuiltin ( ) - > Int32 { <nl> - var y : Int32 = 300 ; <nl> + var y : Int32 = 300 <nl> var z = " foo " <nl> return y <nl> } <nl> mmm a / test / SourceKit / Indexing / index . swift <nl> ppp b / test / SourceKit / Indexing / index . swift <nl> class rdar18640140 { <nl> / / didSet is not compatible with set / get <nl> var S1 : Int { <nl> get { <nl> - return 1 ; <nl> + return 1 <nl> } <nl> set { <nl> } <nl> mmm a / test / SourceKit / lit . local . cfg <nl> ppp b / test / SourceKit / lit . local . cfg <nl> <nl> - if ' sourcekit ' not in config . available_features : <nl> + if ' OS = macosx ' not in config . available_features : <nl> config . unsupported = True <nl> <nl> else : <nl> mmm a / test / TypeCoercion / integer_literals . swift <nl> ppp b / test / TypeCoercion / integer_literals . swift <nl> struct supermeters : IntegerLiteralConvertible { / / expected - error { { type ' superm <nl> } <nl> <nl> func chaining ( ) { <nl> - var length : meters = 17 ; <nl> + var length : meters = 17 <nl> / / FIXME : missing truncation warning < rdar : / / problem / 14070127 > . <nl> - var long_length : meters = 500 ; <nl> + var long_length : meters = 500 <nl> var really_long_length : supermeters = 10 <nl> } <nl> <nl> mmm a / test / TypeCoercion / overload_member . swift <nl> ppp b / test / TypeCoercion / overload_member . swift <nl> func test_method_overload_coerce ( a : A , inout x : X , inout y : Y , z : Z ) { <nl> } <nl> <nl> func test_method_value_coerce ( a : A ) { <nl> - var _ : ( X ) - > X = a . f ; <nl> - var _ : ( A ) - > ( X ) - > X = A . f ; <nl> + var _ : ( X ) - > X = a . f <nl> + var _ : ( A ) - > ( X ) - > X = A . f <nl> } <nl> <nl> func test_static_method_overload ( a : A , x : X , y : Y ) { <nl> func test_static_method_overload_coerce ( a : A , inout x : X , inout y : Y , z : Z ) { <nl> } <nl> <nl> func test_static_method_value_coerce ( a : A ) { <nl> - var _ : ( X ) - > X = A . sf ; <nl> - var _ : ( Y ) - > Y = A . sf ; <nl> + var _ : ( X ) - > X = A . sf <nl> + var _ : ( Y ) - > Y = A . sf <nl> } <nl> <nl> func test_mixed_overload ( a : A , x : X , y : Y ) { <nl> func test_mixed_overload_coerce ( a : A , inout x : X , y : Y , z : Z ) { <nl> } <nl> <nl> func test_mixed_method_value_coerce ( a : A ) { <nl> - var _ : ( X ) - > X = a . mixed ; <nl> - var _ : ( Y ) - > Y = A . mixed ; <nl> + var _ : ( X ) - > X = a . mixed <nl> + var _ : ( Y ) - > Y = A . mixed <nl> var _ : ( Y ) - > Y = a . mixed ; / / expected - error { { cannot convert value of type ' ( x : X ) - > X ' to specified type ' ( Y ) - > Y ' } } <nl> - var _ : ( A ) - > ( X ) - > X = A . mixed ; <nl> + var _ : ( A ) - > ( X ) - > X = A . mixed <nl> } <nl> <nl> extension A { <nl> extension A { <nl> } <nl> <nl> func test_method_value_coerce ( ) { <nl> - var _ : ( X ) - > X = f ; <nl> - var _ : ( A ) - > ( X ) - > X = A . f ; <nl> - var _ : ( A ) - > ( X ) - > X = A . f ; <nl> + var _ : ( X ) - > X = f <nl> + var _ : ( A ) - > ( X ) - > X = A . f <nl> + var _ : ( A ) - > ( X ) - > X = A . f <nl> } <nl> <nl> func test_mixed_overload_coerce ( inout x x : X , y : Y , z : Z ) { <nl> extension A { <nl> } <nl> <nl> func test_mixed_method_value_coerce ( ) { <nl> - var _ : ( X ) - > X = mixed ; <nl> + var _ : ( X ) - > X = mixed <nl> var _ : ( Y ) - > Y = mixed ; / / expected - error { { cannot convert value of type ' ( x : X ) - > X ' to specified type ' ( Y ) - > Y ' } } <nl> var _ : ( Y ) - > Y = mixed ; / / expected - error { { cannot convert value of type ' ( x : X ) - > X ' to specified type ' ( Y ) - > Y ' } } <nl> - var _ : ( A ) - > ( X ) - > X = A . mixed ; <nl> + var _ : ( A ) - > ( X ) - > X = A . mixed <nl> } <nl> <nl> class func test_method_overload_static ( x x : X , y : Y , z : Z ) { <nl> extension A { <nl> } <nl> <nl> class func test_mixed_method_value_coerce_static ( ) { <nl> - var _ : ( Y ) - > Y = mixed ; <nl> - var _ : ( A ) - > ( X ) - > X = mixed ; <nl> + var _ : ( Y ) - > Y = mixed <nl> + var _ : ( A ) - > ( X ) - > X = mixed <nl> } <nl> } <nl> <nl> - var clams : X ; <nl> + var clams : X <nl> <nl> struct WeirdIvarLookupBehavior { <nl> var clams : Y <nl> mmm a / test / TypeCoercion / overload_noncall . swift <nl> ppp b / test / TypeCoercion / overload_noncall . swift <nl> func test_conv ( ) { <nl> a8 = a9 <nl> a9 = a7 <nl> <nl> - var _ : ( ( X ) - > X ) - > ( ( Y ) - > Y ) = f2 ; <nl> - var _ : ( ( x2 : X ) - > ( X ) ) - > ( ( ( y2 : Y ) - > ( Y ) ) ) = f2 ; <nl> + var _ : ( ( X ) - > X ) - > ( ( Y ) - > Y ) = f2 <nl> + var _ : ( ( x2 : X ) - > ( X ) ) - > ( ( ( y2 : Y ) - > ( Y ) ) ) = f2 <nl> <nl> typealias fp = ( ( X ) - > X ) - > ( ( Y ) - > Y ) <nl> var _ = f2 <nl> func accept_XY ( inout y : Y ) - > Y { } <nl> func accept_Z ( inout z : Z ) - > Z { } <nl> <nl> func test_inout ( ) { <nl> - var x : X ; <nl> + var x : X <nl> accept_X ( & x ) ; <nl> accept_X ( xy ) ; / / expected - error { { passing value of type ' X ' to an inout parameter requires explicit ' & ' } } { { 12 - 12 = & } } <nl> accept_X ( & xy ) ; <nl> func test_inout ( ) { <nl> accept_XY ( & x ) ; <nl> x = accept_XY ( & xy ) ; <nl> <nl> - x = xy ; <nl> + x = xy <nl> x = & xy ; / / expected - error { { ' & ' used with non - inout argument of type ' X ' } } <nl> accept_Z ( & xy ) ; / / expected - error { { cannot convert value of type ' X ' to expected argument type ' Z ' } } <nl> } <nl> func lvalue_or_rvalue ( inout x : X ) - > X { } <nl> func lvalue_or_rvalue ( x : X ) - > Y { } <nl> <nl> func test_lvalue_or_rvalue ( ) { <nl> - var x : X ; <nl> - var y : Y ; <nl> + var x : X <nl> + var y : Y <nl> let x1 = lvalue_or_rvalue ( & x ) <nl> x = x1 <nl> let y1 = lvalue_or_rvalue ( x ) <nl> mmm a / test / attr / attr_availability . swift <nl> ppp b / test / attr / attr_availability . swift <nl> func useWithEscapedMessage ( ) { <nl> <nl> / / More complicated parsing . <nl> @ available ( OSX , message = " x " , unavailable ) <nl> - let _ : Int ; <nl> + let _ : Int <nl> <nl> @ available ( OSX , introduced = 1 , deprecated = 2 . 0 , obsoleted = 3 . 0 . 0 ) <nl> let _ : Int <nl> let _ : Int <nl> <nl> / / Meaningless but accepted . <nl> @ available ( OSX , message = " x " ) <nl> - let _ : Int ; <nl> + let _ : Int <nl> <nl> <nl> / / Parse errors . <nl> mmm a / test / decl / enum / Inputs / objc_enum_multi_file_helper . swift <nl> ppp b / test / decl / enum / Inputs / objc_enum_multi_file_helper . swift <nl> func useEnum ( x : TheEnum ) { <nl> case A : <nl> print ( " a ! " ) <nl> default : <nl> - break ; <nl> + break <nl> } <nl> } <nl> mmm a / test / decl / enum / enumtest . swift <nl> ppp b / test / decl / enum / enumtest . swift <nl> func testDirection ( ) { <nl> switch dir { <nl> case . North ( let x ) : <nl> i = x <nl> - break ; <nl> + break <nl> <nl> case . NorthEast ( let x ) : <nl> i = x . distanceEast <nl> - break ; <nl> + break <nl> } <nl> _ = i <nl> } <nl> mmm a / test / expr / cast / array_coerce . swift <nl> ppp b / test / expr / cast / array_coerce . swift <nl> <nl> / / RUN : % target - parse - verify - swift <nl> <nl> class C { <nl> - var x = 0 ; <nl> + var x = 0 <nl> } <nl> class D : C { } <nl> <nl> mmm a / test / lit . site . cfg . in <nl> ppp b / test / lit . site . cfg . in <nl> if " @ SWIFT_OPTIMIZED @ " = = " TRUE " : <nl> if " @ SWIFT_HAVE_WORKING_STD_REGEX @ " = = " FALSE " : <nl> config . available_features . add ( ' broken_std_regex ' ) <nl> <nl> - if " @ SWIFT_BUILD_SOURCEKIT @ " = = " TRUE " or " @ SWIFT_BUILD_SOURCEKIT @ " = = " ON " : <nl> - config . available_features . add ( ' sourcekit ' ) <nl> - <nl> # Let the main config do the real work . <nl> if config . test_exec_root is None : <nl> config . test_exec_root = os . path . dirname ( os . path . realpath ( __file__ ) ) <nl> mmm a / test / stmt / statements . swift <nl> ppp b / test / stmt / statements . swift <nl> func for_loop_multi_iter ( ) { <nl> } <nl> } <nl> <nl> + / / rdar : / / problem / 23684220 <nl> + / / Even if the condition fails to typecheck , save it in the AST anyway ; the old <nl> + / / condition may have contained a SequenceExpr . <nl> + func r23684220 ( b : Any ) { <nl> + if let _ = b ? ? b { } / / expected - error { { initializer for conditional binding must have Optional type , not ' Any ' ( aka ' protocol < > ' ) } } <nl> + } <nl> + <nl> / / Errors in case syntax <nl> class <nl> case , / / expected - error { { expected identifier in enum ' case ' declaration } } expected - error { { expected pattern } } <nl> mmm a / tools / SourceKit / include / SourceKit / Support / FuzzyStringMatcher . h <nl> ppp b / tools / SourceKit / include / SourceKit / Support / FuzzyStringMatcher . h <nl> <nl> - / / = = = mmm Concurrency . h - mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - * - C + + - * - = = / / <nl> + / / = = = mmm FuzzyStringMatcher . h - mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - * - C + + - * - = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / tools / SourceKit / lib / SwiftLang / SwiftEditorInterfaceGen . cpp <nl> ppp b / tools / SourceKit / lib / SwiftLang / SwiftEditorInterfaceGen . cpp <nl> <nl> - / / = = = mmm SwiftEditorIntefaceGen . cpp mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> + / / = = = mmm SwiftEditorInterfaceGen . cpp mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / tools / swift - ide - test / KnownObjCMethods . def <nl> ppp b / tools / swift - ide - test / KnownObjCMethods . def <nl> <nl> - / / = = = mmm KnownMethods . def - Designated Initializers mmmmmmmmmmmm - * - C + + - * - = = = / / <nl> + / / = = = mmm KnownObjCMethods . def - Designated Initializers mmmmmmmmm * - C + + - * - = = = / / <nl> / / <nl> / / This source file is part of the Swift . org open source project <nl> / / <nl> mmm a / utils / GYBUnicodeDataUtils . py <nl> ppp b / utils / GYBUnicodeDataUtils . py <nl> def create_tables ( self ) : <nl> # maximum Unicode code point value is not 2 ^ 21 - 1 ( 0x1fffff ) , it is <nl> # 0x10ffff . <nl> self . supp_first_level_index_max = \ <nl> - 0x10ffff > > ( self . supp_second_level_index_bits + \ <nl> + 0x10ffff > > ( self . supp_second_level_index_bits + <nl> self . supp_data_offset_bits ) <nl> <nl> # A mapping from BMP first - level index to BMP data block index . <nl> mmm a / utils / SwiftBuildSupport . py <nl> ppp b / utils / SwiftBuildSupport . py <nl> def _get_preset_options_impl ( config , substitutions , preset_name ) : <nl> # Split on newlines and filter out empty lines . <nl> mixins = filter ( None , [ m . strip ( ) for m in a . splitlines ( ) ] ) <nl> for mixin in mixins : <nl> - ( base_build_script_opts , \ <nl> - base_build_script_impl_opts , \ <nl> + ( base_build_script_opts , <nl> + base_build_script_impl_opts , <nl> base_missing_opts ) = \ <nl> _get_preset_options_impl ( config , substitutions , mixin ) <nl> build_script_opts + = base_build_script_opts <nl> def get_preset_options ( substitutions , preset_file_names , preset_name ) : <nl> print_with_argv0 ( " preset ' " + preset_name + " ' not found " ) <nl> sys . exit ( 1 ) <nl> if missing_opts : <nl> - print_with_argv0 ( " missing option ( s ) for preset ' " + preset_name + \ <nl> - " ' : " + " , " . join ( missing_opts ) ) <nl> + print_with_argv0 ( " missing option ( s ) for preset ' " + preset_name + <nl> + " ' : " + " , " . join ( missing_opts ) ) <nl> sys . exit ( 1 ) <nl> <nl> return build_script_opts + [ " - - " ] + build_script_impl_opts <nl> mmm a / utils / apply - fixit - edits . py <nl> ppp b / utils / apply - fixit - edits . py <nl> <nl> # <nl> # = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = # <nl> <nl> + from __future__ import print_function <nl> <nl> - import subprocess <nl> import json <nl> import argparse <nl> import sys <nl> def find_remap_files ( path ) : <nl> def apply_edits ( path ) : <nl> remap_files = find_remap_files ( path ) <nl> if not remap_files : <nl> - print " No remap files found " <nl> - return 1 ; <nl> + print ( " No remap files found " ) <nl> + return 1 <nl> <nl> edits_set = set ( ) <nl> for remap_file in remap_files : <nl> def apply_edits ( path ) : <nl> edits_per_file = { } <nl> for ed in edits_set : <nl> fname = ed [ 0 ] <nl> - if not edits_per_file . has_key ( fname ) : <nl> + if fname not in edits_per_file : <nl> edits_per_file [ fname ] = [ ] <nl> edits_per_file [ fname ] . append ( ( ed [ 1 ] , ed [ 2 ] , ed [ 3 ] ) ) <nl> <nl> for fname , edits in edits_per_file . iteritems ( ) : <nl> - print ' Updating ' , fname <nl> + print ( ' Updating ' , fname ) <nl> edits . sort ( reverse = True ) <nl> file_data = open ( fname ) . read ( ) <nl> for ed in edits : <nl> mmm a / utils / build - script - impl <nl> ppp b / utils / build - script - impl <nl> function set_deployment_target_based_options ( ) { <nl> ; ; <nl> esac <nl> <nl> - native_llvm_build = $ ( build_directory macosx - x86_64 llvm ) <nl> llvm_cmake_options = ( <nl> - DCMAKE_OSX_DEPLOYMENT_TARGET : STRING = " $ { cmake_osx_deployment_target } " <nl> - DCMAKE_OSX_SYSROOT : PATH = " $ ( xcrun - - sdk $ xcrun_sdk_name - - show - sdk - path ) " <nl> function not ( ) { <nl> <nl> function true_false ( ) { <nl> case " $ 1 " in <nl> - false | 0 ) <nl> + false | FALSE | 0 ) <nl> echo " FALSE " <nl> ; ; <nl> - true | 1 ) <nl> + true | TRUE | 1 ) <nl> echo " TRUE " <nl> ; ; <nl> * ) <nl> COMMON_CMAKE_OPTIONS = ( <nl> ) <nl> <nl> COMMON_C_FLAGS = " " <nl> - COMMON_CXX_FLAGS = " " <nl> <nl> if [ [ " $ { ENABLE_ASAN } " ] ] ; then <nl> COMMON_CMAKE_OPTIONS = ( <nl> function cmake_config_opt ( ) { <nl> fi <nl> } <nl> <nl> - function should_build_perftestsuite ( ) { <nl> - if [ " $ ( uname - s ) " ! = Darwin ] ; then <nl> - echo " FALSE " <nl> - return <nl> - fi <nl> - <nl> - echo $ ( true_false " $ { BUILD_SWIFT_PERF_TESTSUITE } " ) <nl> - } <nl> - <nl> function set_swiftpm_bootstrap_command ( ) { <nl> swiftpm_bootstrap_command = ( ) <nl> <nl> for deployment_target in " $ { NATIVE_TOOLS_DEPLOYMENT_TARGETS [ @ ] } " " $ { CROSS_TOOLS_ <nl> ) <nl> fi <nl> <nl> - if [ [ $ ( should_build_perftestsuite ) = = " TRUE " ] ] ; then <nl> - swift_cmake_options = ( <nl> - " $ { swift_cmake_options [ @ ] } " <nl> - - DSWIFT_INCLUDE_PERF_TESTSUITE = YES <nl> - ) <nl> - fi <nl> - <nl> swift_cmake_options = ( <nl> " $ { swift_cmake_options [ @ ] } " <nl> - DSWIFT_AST_VERIFIER : BOOL = $ ( true_false " $ { SWIFT_ENABLE_AST_VERIFIER } " ) <nl> for deployment_target in " $ { NATIVE_TOOLS_DEPLOYMENT_TARGETS [ @ ] } " " $ { CROSS_TOOLS_ <nl> fi <nl> <nl> build_targets = ( all " $ { SWIFT_STDLIB_TARGETS [ @ ] } " ) <nl> - if [ [ $ ( should_build_perftestsuite ) = = " TRUE " ] ] ; then <nl> + if [ [ $ ( true_false " $ { build_perf_testsuite_this_time } " ) = = " TRUE " ] ] ; then <nl> native_swift_tools_path = $ ( build_directory macosx - x86_64 swift ) / bin <nl> cmake_options = ( <nl> " $ { cmake_options [ @ ] } " <nl> for deployment_target in " $ { NATIVE_TOOLS_DEPLOYMENT_TARGETS [ @ ] } " " $ { CROSS_TOOLS_ <nl> fi <nl> <nl> # Get the build date <nl> - LLDB_BUILD_DATE = ` date + % Y - % m - % d ` <nl> + LLDB_BUILD_DATE = $ ( date + % Y - % m - % d ) <nl> <nl> case " $ ( uname - s ) " in <nl> Linux ) <nl> for deployment_target in " $ { NATIVE_TOOLS_DEPLOYMENT_TARGETS [ @ ] } " " $ { CROSS_TOOLS_ <nl> continue <nl> fi <nl> LIB_TARGET = " linux " <nl> - if [ [ ` uname - s ` = = " FreeBSD " ] ] ; then <nl> + if [ [ $ ( uname - s ) = = " FreeBSD " ] ] ; then <nl> LIB_TARGET = " freebsd " <nl> fi <nl> - if [ [ ` uname - s ` = = " Darwin " ] ] ; then <nl> + if [ [ $ ( uname - s ) = = " Darwin " ] ] ; then <nl> LIB_TARGET = " macosx " <nl> fi <nl> XCTEST_INSTALL_PREFIX = " $ { INSTALL_DESTDIR } " / " $ { INSTALL_PREFIX } " / lib / swift / " $ { LIB_TARGET } " <nl> if [ [ " $ { INSTALLABLE_PACKAGE } " ] ] ; then <nl> fi <nl> if [ [ " $ { TEST_INSTALLABLE_PACKAGE } " ] ] ; then <nl> PKG_TESTS_SOURCE_DIR = " $ { WORKSPACE } / swift - integration - tests " <nl> - PKG_TESTS_SANDBOX_PARENT = " / tmp / swift_package_sandbox " <nl> + PKG_TESTS_SANDBOX_PARENT = " $ ( build_directory swift_package_sandbox none ) " <nl> <nl> if [ [ " $ ( uname - s ) " = = " Darwin " ] ] ; then <nl> PKG_TESTS_SANDBOX = " $ { PKG_TESTS_SANDBOX_PARENT } " / " $ { TOOLCHAIN_PREFIX } " <nl> mmm a / utils / cmpcodesize / cmpcodesize / compare . py <nl> ppp b / utils / cmpcodesize / cmpcodesize / compare . py <nl> <nl> + from __future__ import print_function <nl> + <nl> import re <nl> import os <nl> import subprocess <nl> <nl> <nl> <nl> def addFunction ( sizes , function , startAddr , endAddr , groupByPrefix ) : <nl> - if not function or startAddr = = None or endAddr = = None : <nl> + if not function or startAddr is None or endAddr is None : <nl> return <nl> <nl> size = endAddr - startAddr <nl> def readSizes ( sizes , fileName , functionDetails , groupByPrefix ) : <nl> asmlineMatch = asmlinePattern . match ( line ) <nl> if asmlineMatch : <nl> addr = int ( asmlineMatch . group ( 1 ) , 16 ) <nl> - if startAddr = = None : <nl> + if startAddr is None : <nl> startAddr = addr <nl> endAddr = addr <nl> elif line = = " Section " : <nl> def readSizes ( sizes , fileName , functionDetails , groupByPrefix ) : <nl> def compareSizes ( oldSizes , newSizes , nameKey , title ) : <nl> oldSize = oldSizes [ nameKey ] <nl> newSize = newSizes [ nameKey ] <nl> - if oldSize ! = None and newSize ! = None : <nl> + if oldSize is not None and newSize is not None : <nl> if oldSize ! = 0 : <nl> perc = " % . 1f % % " % ( ( 1 . 0 - float ( newSize ) / float ( oldSize ) ) * 100 . 0 ) <nl> else : <nl> perc = " - " <nl> - print " % - 26s % 16s : % 8d % 8d % 6s " % ( title , nameKey , oldSize , newSize , perc ) <nl> + print ( " % - 26s % 16s : % 8d % 8d % 6s " % ( title , nameKey , oldSize , newSize , perc ) ) <nl> <nl> <nl> def compareSizesOfFile ( oldFiles , newFiles , allSections , listCategories ) : <nl> def compareFunctionSizes ( oldFiles , newFiles ) : <nl> onlyInFile2Size + = newSize <nl> <nl> if onlyInFile1 : <nl> - print " Only in old file ( s ) " <nl> - print listFunctionSizes ( onlyInFile1 ) <nl> - print " Total size of functions only in old file : { } " . format ( onlyInFile1Size ) <nl> - print <nl> + print ( " Only in old file ( s ) " ) <nl> + print ( listFunctionSizes ( onlyInFile1 ) ) <nl> + print ( " Total size of functions only in old file : { } " . format ( onlyInFile1Size ) ) <nl> + print ( ) <nl> <nl> if onlyInFile2 : <nl> - print " Only in new files ( s ) " <nl> - print listFunctionSizes ( onlyInFile2 ) <nl> - print " Total size of functions only in new file : { } " . format ( onlyInFile2Size ) <nl> - print <nl> + print ( " Only in new files ( s ) " ) <nl> + print ( listFunctionSizes ( onlyInFile2 ) ) <nl> + print ( " Total size of functions only in new file : { } " . format ( onlyInFile2Size ) ) <nl> + print ( ) <nl> <nl> if inBoth : <nl> sizeIncrease = 0 <nl> sizeDecrease = 0 <nl> - print " % 8s % 8s % 8s " % ( " old " , " new " , " diff " ) <nl> + print ( " % 8s % 8s % 8s " % ( " old " , " new " , " diff " ) ) <nl> for triple in sorted ( inBoth , key = lambda tup : ( tup [ 2 ] - tup [ 1 ] , tup [ 1 ] ) ) : <nl> func = triple [ 0 ] <nl> oldSize = triple [ 1 ] <nl> def compareFunctionSizes ( oldFiles , newFiles ) : <nl> sizeDecrease - = diff <nl> if diff = = 0 : <nl> inBothSize + = newSize <nl> - print " % 8d % 8d % 8d % s " % ( oldSize , newSize , newSize - oldSize , func ) <nl> - print " Total size of functions with the same size in both files : { } " . format ( inBothSize ) <nl> - print " Total size of functions that got smaller : { } " . format ( sizeDecrease ) <nl> - print " Total size of functions that got bigger : { } " . format ( sizeIncrease ) <nl> - print " Total size change of functions present in both files : { } " . format ( sizeIncrease - sizeDecrease ) <nl> + print ( " % 8d % 8d % 8d % s " % ( oldSize , newSize , newSize - oldSize , func ) ) <nl> + print ( " Total size of functions with the same size in both files : { } " . format ( inBothSize ) ) <nl> + print ( " Total size of functions that got smaller : { } " . format ( sizeDecrease ) ) <nl> + print ( " Total size of functions that got bigger : { } " . format ( sizeIncrease ) ) <nl> + print ( " Total size change of functions present in both files : { } " . format ( sizeIncrease - sizeDecrease ) ) <nl> mmm a / utils / cmpcodesize / cmpcodesize / main . py <nl> ppp b / utils / cmpcodesize / cmpcodesize / main . py <nl> <nl> # ! / usr / bin / env python <nl> <nl> + from __future__ import print_function <nl> + <nl> import argparse <nl> import sys <nl> import os <nl> def main ( ) : <nl> ' $ SWIFT_NEW_BUILDDIR environment variables set . \ n ' + \ <nl> ' $ SWIFT_OLD_BUILDDIR = { 0 } \ n $ SWIFT_NEW_BUILDDIR = { 1 } ' . format ( <nl> oldBuildDir , newBuildDir ) <nl> - oldFileArgs = SHORTCUTS . keys ( ) <nl> + oldFileArgs = list ( SHORTCUTS . keys ( ) ) <nl> <nl> oldFiles = [ ] <nl> newFiles = [ ] <nl> def main ( ) : <nl> numExpanded + = 1 <nl> <nl> if numExpanded ! = 0 and numExpanded ! = len ( oldFileArgs ) : <nl> - sys . exit ( " mix of expanded / not - expanded arguments " ) <nl> + sys . exit ( " mix of expanded / not - expanded arguments " ) <nl> if numExpanded = = 0 : <nl> if len ( oldFileArgs ) > 2 : <nl> sys . exit ( " too many arguments " ) <nl> def main ( ) : <nl> sizes = collections . defaultdict ( int ) <nl> for file in oldFiles : <nl> readSizes ( sizes , file , True , False ) <nl> - print listFunctionSizes ( sizes . items ( ) ) <nl> + print ( listFunctionSizes ( sizes . items ( ) ) ) <nl> else : <nl> compareFunctionSizes ( oldFiles , newFiles ) <nl> else : <nl> - print " % - 26s % 16s % 8s % 8s % s " % ( " " , " Section " , " Old " , " New " , " Percent " ) <nl> + print ( " % - 26s % 16s % 8s % 8s % s " % ( " " , " Section " , " Old " , " New " , " Percent " ) ) <nl> if parsed_arguments . sum_sizes : <nl> compareSizesOfFile ( oldFiles , newFiles , <nl> parsed_arguments . all_sections , <nl> mmm a / utils / demo - tool <nl> ppp b / utils / demo - tool <nl> <nl> # ! / usr / bin / env python <nl> <nl> + from __future__ import print_function <nl> + <nl> import json <nl> import optparse <nl> import subprocess <nl> for example : : <nl> def prompterPrint ( string ) : <nl> if hasColor : <nl> attr = [ ' 32 ' , ' 1 ' ] <nl> - print ' \ x1b [ % sm % s \ x1b [ 0m ' % ( ' ; ' . join ( attr ) , string ) <nl> + print ( ' \ x1b [ % sm % s \ x1b [ 0m ' % ( ' ; ' . join ( attr ) , string ) ) <nl> else : <nl> - print string <nl> <nl> + print ( string ) <nl> def send ( * args , * * kwargs ) : <nl> return send_to_screen ( opts . screen_name , * args , * * kwargs ) <nl> parser . add_option ( " - S " , " - - screen - name " , dest = " screen_name " , metavar = " NAME " , <nl> for example : : <nl> <nl> if command : <nl> # Send the command slowly , as if it was typed . <nl> - print " sending command : % r " % ( command . replace ( ' \ n ' , ' < cr > ' ) , ) <nl> + print ( " sending command : % r " % ( command . replace ( ' \ n ' , ' < cr > ' ) , ) ) <nl> for c in command : <nl> send ( c ) <nl> if c = = " \ n " : <nl> for example : : <nl> raw_input ( ' press enter to continue to next command . . . ' ) <nl> # Send the command slowly , as if it was typed . <nl> if shouldClear : <nl> - print " clearing screen " <nl> + print ( " clearing screen " ) <nl> send ( command = " clear " ) <nl> send ( ' \ n ' ) <nl> <nl> mmm a / utils / gyb . py <nl> ppp b / utils / gyb . py <nl> <nl> # GYB : Generate Your Boilerplate ( improved names welcome ; at least <nl> # this one ' s short ) . See - h output for instructions <nl> <nl> + from __future__ import print_function <nl> + <nl> import re <nl> from cStringIO import StringIO <nl> import tokenize <nl> def tokenGenerator ( self , baseTokens ) : <nl> elif kind = = ' gybLines ' : <nl> <nl> self . codeStartLine = self . posToLine ( self . tokenMatch . start ( ' gybLines ' ) ) <nl> - codeStartPos = self . tokenMatch . end ( ' _indent ' ) <nl> indentation = self . tokenMatch . group ( ' _indent ' ) <nl> <nl> # Strip off the leading indentation and % - sign <nl> def succ ( a ) : <nl> bindings = dict ( x . split ( ' = ' , 1 ) for x in args . defines ) <nl> ast = parseTemplate ( args . file . name , args . file . read ( ) ) <nl> if args . dump : <nl> - print ast <nl> <nl> + print ( ast ) <nl> # Allow the template to import . py files from its own directory <nl> sys . path = [ os . path . split ( args . file . name ) [ 0 ] or ' . ' ] + sys . path <nl> <nl> deleted file mode 100755 <nl> index 9de8e0be2276 . . 000000000000 <nl> mmm a / utils / install - package - helper . sh <nl> ppp / dev / null <nl> <nl> - # ! / bin / sh <nl> - # A helper script that only installs or uninstalls a Swift package built <nl> - # by the buildbot . The _jenkins bot should be allowed to sudo this . <nl> - <nl> - # Must be root to install packages . <nl> - if [ " $ ( id - u ) " ! = 0 ] ; then <nl> - echo " Must install package as root ! " <nl> - exit 1 <nl> - fi <nl> - <nl> - MODE = " $ 1 " <nl> - PACKAGE = " $ 2 " <nl> - <nl> - if [ \ ! " $ PACKAGE " ] ; then <nl> - echo " No package name ! Usage : $ 0 [ install | uninstall ] package . tar . gz " <nl> - exit 1 <nl> - fi <nl> - <nl> - case " $ MODE " in <nl> - install ) <nl> - darwinup install " $ PACKAGE " <nl> - exit $ ? <nl> - ; ; <nl> - uninstall ) <nl> - darwinup uninstall " $ ( basename " $ PACKAGE " ) " <nl> - exit $ ? <nl> - ; ; <nl> - * ) <nl> - echo " Mode must be install or uninstall ! " <nl> - echo " Usage : $ 0 [ install | uninstall ] package . tar . gz " <nl> - exit 1 <nl> - ; ; <nl> - esac <nl> - <nl> deleted file mode 100755 <nl> index 5e2a545c7ae0 . . 000000000000 <nl> mmm a / utils / install - test - script . sh <nl> ppp / dev / null <nl> <nl> - # ! / bin / sh - x <nl> - <nl> - # Smoke tests a Swift installation package . <nl> - # Set these to the paths of the OS X SDK and toolchain . <nl> - SYSROOT = / Applications / Xcode . app / Contents / Developer / Platforms / MacOSX . platform / Developer / SDKs / MacOSX10 . 10 . sdk <nl> - TOOLCHAIN = / Applications / Xcode . app / Contents / Developer / Toolchains / XcodeDefault . xctoolchain <nl> - <nl> - # FIXME : OSX 10 . 9 bug < rdar : / / problem / 13228632 > : TMPDIR doesn ' t get set sometimes . <nl> - if [ ! " $ TMPDIR " ] ; then <nl> - TMPDIR = / tmp <nl> - fi <nl> - <nl> - # Wipe out stale module caches . <nl> - find " $ TMPDIR " - name " * . pcm " - exec rm ' { } ' ' ; ' <nl> - find / var / tmp - name " * . pcm " - exec rm ' { } ' ' ; ' <nl> - find / tmp - name " * . pcm " - exec rm ' { } ' ' ; ' <nl> - find " $ ( getconf DARWIN_USER_CACHE_DIR ) " - name " * . pcm " - exec rm ' { } ' ' ; ' <nl> - <nl> - # The package name should be given as the first argument . <nl> - PACKAGE_NAME = " $ 1 " <nl> - <nl> - if [ \ ! " $ PACKAGE_NAME " ] ; then <nl> - echo " No package name given ! Usage : $ 0 package . tar . gz " <nl> - exit 1 <nl> - elif [ \ ! - f " $ PACKAGE_NAME " ] ; then <nl> - echo " Package $ PACKAGE_NAME does not exist ! " <nl> - exit 1 <nl> - fi <nl> - <nl> - # We use a sudoable script to darwinup install and uninstall the <nl> - # package . <nl> - INSTALL_PACKAGE_HELPER = " $ ( dirname " $ 0 " ) / install - package - helper . sh " <nl> - <nl> - if [ \ ! - x " $ INSTALL_PACKAGE_HELPER " ] ; then <nl> - echo " Unable to find package installer helper $ INSTALL_PACKAGE_HELPER ! " <nl> - exit 1 <nl> - fi <nl> - <nl> - # Install the package . <nl> - if ! sudo - n " $ INSTALL_PACKAGE_HELPER " install " $ PACKAGE_NAME " ; then <nl> - echo " Failed to install package ! " <nl> - exit 1 <nl> - fi <nl> - <nl> - # <nl> - # Do tests . <nl> - # <nl> - <nl> - # Ensure that basic REPL stuff works . <nl> - # FIXME : REPL bug - - when stdout is redirected but stderr is a terminal , no <nl> - # output appears on stdout . <nl> - RESULT = 0 <nl> - <nl> - if ! / usr / bin / swift - repl 2 > " $ TMPDIR / test_repl_1_err_ $ $ " > " $ TMPDIR / test_repl_1_ $ $ " < < REPL <nl> - println ( " Hello world " ) <nl> - REPL <nl> - then <nl> - echo " swift failed in REPL ! " <nl> - RESULT = 1 <nl> - elif [ " $ ( cat " $ TMPDIR / test_repl_1_ $ $ " ) " ! = " Hello world " ] ; then <nl> - echo " REPL did not output expected result ! " <nl> - RESULT = 1 <nl> - fi <nl> - <nl> - if ! / usr / bin / swift - repl - sdk " $ SYSROOT " 2 > " $ TMPDIR / test_repl_2_err_ $ $ " > " $ TMPDIR / test_repl_2_ $ $ " < < REPL <nl> - import Foundation <nl> - { ( s : NSString ) in println ( s ) } ( " Hello world " ) <nl> - REPL <nl> - then <nl> - echo " swift failed in REPL with SDK ! " <nl> - RESULT = 1 <nl> - elif [ " $ ( cat " $ TMPDIR / test_repl_2_ $ $ " ) " ! = " Hello world " ] ; then <nl> - echo " REPL with SDK did not output expected result ! " <nl> - RESULT = 1 <nl> - fi <nl> - <nl> - # Ensure that we can compile and link a Swift program and that the Swift <nl> - # libs are all findable by - l flags . <nl> - cat > " $ TMPDIR / test_compile_ $ $ . swift " < < TEST_COMPILE <nl> - import Foundation <nl> - var s : NSString = " world " <nl> - print ( " Hello " ) <nl> - println ( s ) <nl> - TEST_COMPILE <nl> - <nl> - if ! / usr / bin / swift - sdk " $ SYSROOT " - c " $ TMPDIR / test_compile_ $ $ . swift " \ <nl> - - o " $ TMPDIR / test_compile_ $ $ . o " <nl> - then <nl> - echo " Failed to compile Swift program ! " <nl> - RESULT = 1 <nl> - elif ! " $ TOOLCHAIN / usr / bin / clang " " $ TMPDIR / test_compile_ $ $ . o " \ <nl> - - o " $ TMPDIR / test_compile_ $ $ " \ <nl> - - L / usr / lib / swift / macosx - Wl , - rpath - Wl , / usr / lib / swift / macosx \ <nl> - - framework Cocoa - lswiftCore - lswiftFoundation - lswiftObjectiveC \ <nl> - - lswiftAppKit <nl> - then <nl> - echo " Failed to link Swift program ! " <nl> - RESULT = 1 <nl> - elif [ " $ ( $ TMPDIR / test_compile_ $ $ ) " ! = " Hello world " ] ; then <nl> - echo " Running Swift program did not give expected result ! " <nl> - RESULT = 1 <nl> - # Ensure that we can link a Swift program even if - isysroot points to an SDK . <nl> - elif ! " $ TOOLCHAIN / usr / bin / clang " " $ TMPDIR / test_compile_ $ $ . o " \ <nl> - - isysroot " $ SYSROOT " \ <nl> - - o " $ TMPDIR / test_compile_2_ $ $ " \ <nl> - - L / usr / lib / swift / macosx - Wl , - rpath - Wl , / usr / lib / swift / macosx \ <nl> - - framework Cocoa - lswiftCore - lswiftFoundation - lswiftObjectiveC \ <nl> - - lswiftAppKit <nl> - then <nl> - echo " Failed to link Swift program with - isysroot ! " <nl> - RESULT = 1 <nl> - elif [ " $ ( $ TMPDIR / test_compile_2_ $ $ ) " ! = " Hello world " ] ; then <nl> - echo " Running Swift program linked with - isysroot did not give expected result ! " <nl> - RESULT = 1 <nl> - fi <nl> - <nl> - <nl> - <nl> - # <nl> - # Done with tests . <nl> - # <nl> - <nl> - # Uninstall the package . <nl> - if ! sudo - n " $ INSTALL_PACKAGE_HELPER " uninstall " $ PACKAGE_NAME " ; then <nl> - echo " Failed to uninstall package ! " <nl> - exit 1 <nl> - fi <nl> - <nl> - exit " $ RESULT " <nl> mmm a / utils / line - directive <nl> ppp b / utils / line - directive <nl> <nl> # ! / usr / bin / env python <nl> # convert line numbers in error messages according to " line directive " comments <nl> - import os <nl> import sys <nl> import re <nl> import bisect <nl> mmm a / utils / omit - needless - words . py <nl> ppp b / utils / omit - needless - words . py <nl> <nl> # heuristics that omit ' needless ' words from APIs imported from Clang <nl> # into Swift . <nl> <nl> + from __future__ import print_function <nl> + <nl> import argparse <nl> import subprocess <nl> <nl> def main ( ) : <nl> <nl> swift_ide_test_cmd = [ args . swift_ide_test , ' - print - module ' , ' - source - filename ' , source_filename , ' - sdk ' , sdkroot , ' - target ' , args . target , ' - module - print - skip - overlay ' , ' - skip - unavailable ' , ' - module - print - submodules ' , ' - skip - imports ' , ' - module - to - print = % s ' % ( args . module ) ] <nl> omit_needless_words_args = [ ' - enable - omit - needless - words ' , ' - enable - infer - default - arguments ' ] <nl> - <nl> + <nl> # Determine the output files . <nl> # No good way with argparse to set default value based on depenency of other arg . <nl> if not args . before_file : <nl> args . before_file = ' % s . before . txt ' % ( args . module ) <nl> if not args . after_file : <nl> args . after_file = ' % s . after . txt ' % ( args . module ) <nl> - <nl> + <nl> # Create a . swift file we can feed into swift - ide - test <nl> subprocess . call ( [ ' touch ' , source_filename ] ) <nl> - <nl> + <nl> if not args . only_after : <nl> # Print the interface without omitting needless words <nl> if not args . quiet : <nl> print ( ' Writing % s . . . ' % args . before_file ) <nl> output_command_result_to_file ( swift_ide_test_cmd , args . before_file ) <nl> - <nl> + <nl> if not args . only_before : <nl> # Print the interface omitting needless words <nl> if not args . quiet : <nl> print ( ' Writing % s . . . ' % args . after_file ) <nl> output_command_result_to_file ( swift_ide_test_cmd + omit_needless_words_args , args . after_file ) <nl> - <nl> + <nl> # Remove the . swift file we fed into swift - ide - test <nl> subprocess . call ( [ ' rm ' , ' - f ' , source_filename ] ) <nl> - <nl> + <nl> # Diff them <nl> subprocess . call ( [ args . diff_tool , args . before_file , args . after_file ] ) <nl> <nl> mmm a / utils / pre - commit - benchmark <nl> ppp b / utils / pre - commit - benchmark <nl> <nl> # this script somewhere outside the source tree and then move it back <nl> # when your changes are finished . <nl> <nl> + from __future__ import print_function <nl> + <nl> import subprocess <nl> import sys <nl> import os <nl> import re <nl> - import shutil <nl> import argparse <nl> from pipes import quote as shell_quote <nl> <nl> def print_call ( * args , * * kw ) : <nl> if isinstance ( args [ 0 ] , ( str , unicode ) ) : <nl> args = [ args ] <nl> <nl> - print ' $ ' + ' ' . join ( shell_quote ( x ) for x in args [ 0 ] ) + ' # % r , % r ' % ( args [ 1 : ] , kw ) <nl> <nl> + print ( ' $ ' + ' ' . join ( shell_quote ( x ) for x in args [ 0 ] ) + ' # % r , % r ' % ( args [ 1 : ] , kw ) ) <nl> def check_call ( * args , * * kw ) : <nl> print_call ( * args , * * kw ) <nl> try : <nl> def parseFloat ( word ) : <nl> try : <nl> return float ( word ) <nl> except : <nl> - raise ScoreParserException ( " Expected float val , not " + word ) <nl> + raise Exception ( " Expected float val , not { } " . format ( word ) ) <nl> <nl> def getScores ( fname ) : <nl> scores = { } <nl> def getScores ( fname ) : <nl> f = open ( fname ) <nl> try : <nl> for line in f : <nl> - if VERBOSE : print " Parsing " , line , <nl> + if VERBOSE : <nl> + print ( " Parsing " , line ) <nl> m = SCORERE . match ( line ) <nl> if not m : <nl> continue <nl> def compareTimingsFiles ( file1 , file2 ) : <nl> scores1 , runs1 = getScores ( file1 ) <nl> scores2 , runs2 = getScores ( file2 ) <nl> runs = min ( runs1 , runs2 ) <nl> - if VERBOSE : print scores1 ; print scores2 <nl> keys = [ f for f in set ( scores1 . keys ( ) + scores2 . keys ( ) ) ] <nl> + if VERBOSE : <nl> + print ( scores1 ) <nl> + print ( scores2 ) <nl> keys . sort ( ) <nl> if VERBOSE : <nl> - print " comparing " , file1 , " vs " , file2 , " = " , <nl> - print file1 , " / " , file2 <nl> + print ( " comparing " , file1 , " vs " , file2 , " = " , end = ' ' ) <nl> + print ( file1 , " / " , file2 ) <nl> <nl> rows = [ [ " benchmark " ] ] <nl> for i in range ( 0 , runs ) : <nl> def compareTimingsFiles ( file1 , file2 ) : <nl> rows [ 0 ] + = [ " delta " , " speedup " ] <nl> <nl> for key in keys : <nl> - if not key in scores1 : <nl> - print key , " not in " , file1 <nl> + if key not in scores1 : <nl> + print ( key , " not in " , file1 ) <nl> continue <nl> - if not key in scores2 : <nl> - print key , " not in " , file2 <nl> + if key not in scores2 : <nl> + print ( key , " not in " , file2 ) <nl> continue <nl> rows . append ( compareScores ( key , scores1 [ key ] , scores2 [ key ] , runs ) ) <nl> <nl> def compareTimingsFiles ( file1 , file2 ) : <nl> for row in rows : <nl> for n , x in enumerate ( row ) : <nl> if n ! = 0 : <nl> - print ' , ' , <nl> - print ( ( widths [ n ] - len ( x ) ) * ' ' ) + x , <nl> - print ' ' <nl> + print ( ' , ' , end = ' ' ) <nl> + print ( ( ( widths [ n ] - len ( x ) ) * ' ' ) + x , end = ' ' ) <nl> + print ( ) <nl> <nl> def checkAndUpdatePerfTestSuite ( sourceDir ) : <nl> " " " Check that the performance testsuite directory is in its appropriate <nl> if __name__ = = ' __main__ ' : <nl> action = ' append ' , help = ' Optimization levels to test ' ) <nl> parser . add_argument ( dest = ' baseline ' , nargs = ' ? ' , metavar = ' tree - ish ' , default = ' origin / master ' , <nl> help = ' the baseline Git commit to compare with . ' ) <nl> - parser . add_argument ( dest = ' build_script_args ' , nargs = argparse . REMAINDER , metavar = ' build - script - args ' , default = [ ] <nl> + parser . add_argument ( dest = ' build_script_args ' , nargs = argparse . REMAINDER , metavar = ' build - script - args ' , default = [ ] , <nl> help = ' additional arguments to build script , e . g . - - - - distcc - - build - args = - j30 ' ) <nl> args = parser . parse_args ( ) <nl> <nl> if __name__ = = ' __main__ ' : <nl> print ( ' No changes between work tree and % s ; nothing to compare . ' % args . baseline ) <nl> else : <nl> for exe in exeNames : <nl> - print ' = ' * 20 , exe , ' = ' * 20 <nl> + print ( ' = ' * 20 , exe , ' = ' * 20 ) <nl> timingsFileName = exe + ' . out ' <nl> compareTimingsFiles ( <nl> os . path . join ( baselineCacheDir , timingsFileName ) , <nl> mmm a / utils / protocol_graph . py <nl> ppp b / utils / protocol_graph . py <nl> <nl> # & & open / tmp / protocols . svg <nl> # = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = # <nl> <nl> + from __future__ import print_function <nl> + <nl> import re <nl> import sys <nl> import os <nl> def parseProtocol ( m ) : <nl> for s in elements <nl> for t in graph [ s ] if t in elements ) <nl> <nl> - print ' digraph ProtocolHierarchies { ' <nl> - print ' mclimit = 100 ; ranksep = 1 . 5 ; ' # ; packmode = " array1 " <nl> - print ' edge [ dir = " back " ] ; ' <nl> - print ' node [ shape = box , fontname = Helvetica , fontsize = 10 ] ; ' <nl> + print ( ' digraph ProtocolHierarchies { ' ) <nl> + print ( ' mclimit = 100 ; ranksep = 1 . 5 ; ' ) # ; packmode = " array1 " <nl> + print ( ' edge [ dir = " back " ] ; ' ) <nl> + print ( ' node [ shape = box , fontname = Helvetica , fontsize = 10 ] ; ' ) <nl> <nl> for c in sorted ( clusters ) : <nl> - print ' subgraph " cluster_ % s " { ' % c <nl> + print ( ' subgraph " cluster_ % s " { ' % c ) <nl> for ( s , t ) in sorted ( clusterEdges ) : <nl> if s in clusters [ c ] : <nl> - print ' % s - > % s [ weight = 100 ] ; ' % ( s , t ) <nl> - print ' } ' <nl> + print ( ' % s - > % s [ weight = 100 ] ; ' % ( s , t ) ) <nl> + print ( ' } ' ) <nl> <nl> for node in sorted ( graph . keys ( ) ) : <nl> requirements = body . get ( node , [ ] ) <nl> def parseProtocol ( m ) : <nl> divider , <nl> ' \ n ' . join ( ' < TR > < TD > % s < / TD > < / TR > ' % g for g in generics ) ) ) <nl> <nl> - print interpolate ( ' % ( node ) s [ style = % ( style ) s , label = < % ( label ) s > ] ' ) <nl> <nl> + print ( interpolate ( ' % ( node ) s [ style = % ( style ) s , label = < % ( label ) s > ] ' ) ) <nl> for ( parent , children ) in sorted ( graph . items ( ) ) : <nl> - print ' % s - > { ' % parent , <nl> - print ' ; ' . join ( <nl> - sorted ( child for child in children if not ( parent , child ) in clusterEdges ) ) , <nl> - print ' } ' <nl> + print ( ' % s - > { ' % parent , end = ' ' ) <nl> + print ( ' ; ' . join ( <nl> + sorted ( child for child in children if not ( parent , child ) in clusterEdges ) ) , end = ' ' ) <nl> + print ( ' } ' ) <nl> <nl> - print ' } ' <nl> + print ( ' } ' ) <nl> mmm a / utils / pygments / swift . py <nl> ppp b / utils / pygments / swift . py <nl> <nl> <nl> import re <nl> <nl> - from pygments . lexer import Lexer , RegexLexer , include , bygroups , using , this , do_insertions <nl> + from pygments . lexer import RegexLexer , include , bygroups <nl> from pygments . token import * <nl> <nl> __all__ = [ ' SwiftLexer ' , ' SwiftConsoleLexer ' ] <nl> mmm a / utils / recursive - lipo <nl> ppp b / utils / recursive - lipo <nl> <nl> # ! / usr / bin / env python <nl> <nl> + from __future__ import print_function <nl> + <nl> import argparse <nl> import os . path <nl> import filecmp <nl> def merge_lipo_files ( src_root_dirs , file_list , copy_verbatim_subpaths , <nl> file_paths = [ os . path . join ( dir , file ) for dir in src_root_dirs <nl> if os . path . exists ( os . path . join ( dir , file ) ) ] <nl> if len ( file_paths ) = = 0 : <nl> - print " - - Warning : Can ' t locate source file % s " % file <nl> + print ( " - - Warning : Can ' t locate source file % s " % file ) <nl> continue <nl> <nl> destPath = os . path . join ( dest_root_dir , os . path . relpath ( file_paths [ 0 ] , <nl> def merge_lipo_files ( src_root_dirs , file_list , copy_verbatim_subpaths , <nl> <nl> if all ( [ os . path . islink ( item ) for item in file_paths ] ) : <nl> # It ' s a symlink in all found instances , copy the link . <nl> - print " - - Creating symlink % s " % destPath <nl> + print ( " - - Creating symlink % s " % destPath ) <nl> os . symlink ( os . readlink ( file_paths [ 0 ] ) , destPath ) <nl> elif all ( [ os . path . isdir ( item ) for item in file_paths ] ) : <nl> # It ' s a subdir in all found instances . <nl> # See if we should copy verbatim or create the destination subdir . <nl> if file in copy_verbatim_subpaths : <nl> - print " - - Copying subdir verbatim % s " % destPath <nl> + print ( " - - Copying subdir verbatim % s " % destPath ) <nl> if os . path . isdir ( destPath ) : <nl> shutil . rmtree ( destPath ) <nl> shutil . copytree ( file_paths [ 0 ] , destPath , symlinks = True ) <nl> else : <nl> - print " - - Creating subdir % s " % destPath <nl> + print ( " - - Creating subdir % s " % destPath ) <nl> if not os . path . isdir ( destPath ) : <nl> os . makedirs ( destPath ) <nl> elif all ( [ os . path . isfile ( item ) for item in file_paths ] ) : <nl> # It ' s a regular file in all found instances , see if they ' re identical . <nl> if all ( [ filecmp . cmp ( item , file_paths [ 0 ] ) for item in file_paths ] ) : <nl> # All instances are identical , just copy the unique file . <nl> - print " - - Copying file % s " % destPath <nl> + print ( " - - Copying file % s " % destPath ) <nl> shutil . copy2 ( file_paths [ 0 ] , destPath ) <nl> elif all ( [ os . access ( item , os . X_OK ) for item in file_paths ] ) : <nl> # Multiple instances are different and executable , try lipo . <nl> if verbose : <nl> - print " - - Running lipo % s to % s " % ( file_paths , destPath ) <nl> + print ( " - - Running lipo % s to % s " % ( file_paths , destPath ) ) <nl> else : <nl> - print " - - Running lipo % s " % destPath <nl> + print ( " - - Running lipo % s " % destPath ) <nl> check_call ( lipo_cmd + [ " - output " , destPath ] + file_paths , <nl> print_command = verbose , verbose = verbose ) <nl> else : <nl> # Multiple instances are different , and they ' re not executable . <nl> - print " - - Warning : non - executable source files are different , skipping : % s " % file_paths <nl> + print ( " - - Warning : non - executable source files are different , skipping : % s " % file_paths ) <nl> else : <nl> - print " - - Warning : Unsupport file type , skipping : % s " % file_paths <nl> + print ( " - - Warning : Unsupport file type , skipping : % s " % file_paths ) <nl> <nl> <nl> def main ( ) : <nl> verbatim . This is useful if some subdirectories already contain fat binaries . <nl> copy_verbatim_subpaths ) <nl> <nl> if args . verbose : <nl> - print " Discovered files and dirs : % s " % file_list <nl> + print ( " Discovered files and dirs : % s " % file_list ) <nl> <nl> merge_lipo_files ( args . src_root_dirs , file_list , copy_verbatim_subpaths , <nl> args . destination , args . verbose , args . lipo ) <nl> mmm a / utils / sil - opt - verify - all - modules . py <nl> ppp b / utils / sil - opt - verify - all - modules . py <nl> <nl> import glob <nl> import multiprocessing <nl> import os <nl> - import shutil <nl> import subprocess <nl> import sys <nl> import tempfile <nl> def get_verify_resource_dir_modules_commands ( <nl> commands = [ ] <nl> module_cache_dir = tempfile . mkdtemp ( prefix = " swift - testsuite - clang - module - cache " ) <nl> for ( subdir , arch , triple ) in known_platforms : <nl> - platform_frameworks_dir = os . path . join ( <nl> - subprocess . check_output ( [ <nl> - ' xcrun ' , ' - - toolchain ' , toolchain_name , ' - - show - sdk - platform - path ' <nl> - ] ) . strip ( ) , <nl> - ' Developer ' , ' Library ' , ' Frameworks ' ) <nl> modules_dir = os . path . join ( resource_dir , subdir , arch ) <nl> print ( modules_dir ) <nl> modules = glob . glob ( os . path . join ( modules_dir , ' * . swiftmodule ' ) ) <nl> mmm a / utils / submit - benchmark - results <nl> ppp b / utils / submit - benchmark - results <nl> <nl> Utility script for submitting benchmark results to an LNT server . <nl> " " " <nl> <nl> + from __future__ import print_function <nl> + <nl> import datetime <nl> import errno <nl> import json <nl> def submit_results_to_server ( results_data , submit_url ) : <nl> return json . loads ( result_data ) <nl> except : <nl> import traceback <nl> - print " Unable to load result , not a valid JSON object . " <nl> - print <nl> - print " Traceback : " <nl> + print ( " Unable to load result , not a valid JSON object . " ) <nl> + print ( ) <nl> + print ( " Traceback : " ) <nl> traceback . print_exc ( ) <nl> - print <nl> - print " Result : " <nl> - print result_data <nl> + print ( ) <nl> + print ( " Result : " ) <nl> + print ( result_data ) <nl> return <nl> <nl> # # # <nl> mmm a / utils / swift - bench . py <nl> ppp b / utils / swift - bench . py <nl> <nl> # Ideas for the harness improvement and development are welcomed here : <nl> # rdar : / / problem / 18072938 <nl> <nl> + from __future__ import print_function <nl> + <nl> import subprocess <nl> import numpy <nl> - import time <nl> import re <nl> import os <nl> import sys <nl> def runBench ( self , name ) : <nl> return <nl> samples = [ ] <nl> self . log ( " Running bench : % s , numsamples : % d " % ( name , numSamples ) , 2 ) <nl> - output = " " <nl> for i in range ( 0 , numSamples ) : <nl> try : <nl> r = self . runCommand ( [ self . tests [ name ] . binary , str ( iterScale ) , <nl> mmm a / utils / swift - stdlib - tool - substitute <nl> ppp b / utils / swift - stdlib - tool - substitute <nl> argv = ( " $ @ " ) <nl> have_source_libraries = NO <nl> platform = " " <nl> set - - " $ @ " <nl> - while [ [ $ # > 0 ] ] ; do <nl> + while [ [ $ # - gt 0 ] ] ; do <nl> case " $ 1 " in <nl> - - source - libraries ) <nl> shift <nl> - if [ [ $ # > 0 ] ] ; then <nl> + if [ [ $ # - gt 0 ] ] ; then <nl> have_source_libraries = YES <nl> fi <nl> ; ; <nl> - - platform ) <nl> shift <nl> - if [ [ $ # > 0 ] ] ; then <nl> + if [ [ $ # - gt 0 ] ] ; then <nl> platform = " $ 1 " <nl> fi <nl> ; ; <nl> elif [ [ " $ platform " = " " ] ] ; then <nl> exit 1 <nl> else <nl> # Construct a new - - source - libraries argument . <nl> - bindir = ` dirname " $ self_path " ` <nl> - usrdir = ` dirname " $ bindir " ` <nl> + bindir = $ ( dirname " $ self_path " ) <nl> + usrdir = $ ( dirname " $ bindir " ) <nl> source_libraries = " $ usrdir / lib / swift / $ platform " <nl> if [ ! - d " $ source_libraries " - o ! - x " $ source_libraries " ] ; then <nl> echo " $ self_path : error : platform path inaccessible : $ source_libraries " <nl> mmm a / utils / update - checkout <nl> ppp b / utils / update - checkout <nl> def obtain_additional_swift_sources ( opts = { ' with_ssh ' : False } ) : <nl> with WorkingDirectory ( SWIFT_SOURCE_ROOT ) : <nl> if not os . path . isdir ( os . path . join ( dir_name , " . git " ) ) : <nl> print ( " mmm Cloning ' " + dir_name + " ' mmm " ) <nl> - if opts [ ' with_ssh ' ] = = True : <nl> + if opts [ ' with_ssh ' ] is True : <nl> remote = " git @ github . com : " + repo + ' . git ' <nl> else : <nl> remote = " https : / / github . com / " + repo + ' . git ' <nl> mmm a / utils / viewcfg <nl> ppp b / utils / viewcfg <nl> <nl> # Note : viewcfg should be in the $ PATH and . dot files should be associated <nl> # with the Graphviz app . <nl> <nl> + from __future__ import print_function <nl> + <nl> import re <nl> import sys <nl> import tempfile <nl> import subprocess <nl> import os <nl> <nl> def help ( ) : <nl> - print " " " \ <nl> + print ( " " " \ <nl> Usage : <nl> <nl> viewcfg [ output - suffix ] < file <nl> <nl> By default all CFGs are opened in the same window . <nl> Use the a unique output - suffix to open a CFG in a new window . <nl> - " " " <nl> + " " " ) <nl> <nl> class Block : <nl> <nl> def main ( ) : <nl> newBlocks = { } <nl> for name , block in blocks . iteritems ( ) : <nl> for adjName in ( block . preds + block . getSuccs ( ) ) : <nl> - if not adjName in blocks : <nl> + if adjName not in blocks : <nl> newBlocks [ adjName ] = Block ( adjName , None ) <nl> <nl> blocks = dict ( blocks . items ( ) + newBlocks . items ( ) ) <nl> def main ( ) : <nl> for name , block in blocks . iteritems ( ) : <nl> for predName in block . preds : <nl> predBlock = blocks [ predName ] <nl> - if not name in predBlock . getSuccs ( ) : <nl> + if name not in predBlock . getSuccs ( ) : <nl> predBlock . getSuccs ( ) . append ( name ) <nl> <nl> # Write the output dot file . <nl> def main ( ) : <nl> outFile . write ( ' digraph " CFG " { \ n ' ) <nl> for name , block in blocks . iteritems ( ) : <nl> if block . content is not None : <nl> - outFile . write ( " \ tNode " + str ( block . index ) + \ <nl> + outFile . write ( " \ tNode " + str ( block . index ) + <nl> " [ shape = record , label = \ " { " + block . content + " } \ " ] ; \ n " ) <nl> else : <nl> - outFile . write ( " \ tNode " + str ( block . index ) + \ <nl> - " [ shape = record , color = gray , fontcolor = gray , label = \ " { " + \ <nl> + outFile . write ( " \ tNode " + str ( block . index ) + <nl> + " [ shape = record , color = gray , fontcolor = gray , label = \ " { " + <nl> block . name + " } \ " ] ; \ n " ) <nl> <nl> for succName in block . getSuccs ( ) : <nl> succBlock = blocks [ succName ] <nl> - outFile . write ( " \ tNode " + str ( block . index ) + " - > Node " + \ <nl> + outFile . write ( " \ tNode " + str ( block . index ) + " - > Node " + <nl> str ( succBlock . index ) + " ; \ n " ) <nl> <nl> outFile . write ( " } \ n " ) <nl> new file mode 100644 <nl> index 000000000000 . . 23f76ad1a6a1 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 024 - swift - archetypebuilder - potentialarchetype - getrepresentative . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + protocol c { func a : P <nl> + protocol P { # ^ A ^ # func a : b <nl> + typealias b : a <nl> new file mode 100644 <nl> index 000000000000 . . 6ba721cde53d <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 036 - swift - constraints - constraintsystem - matchdeepequalitytypes . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + extension { enum B { enum B { enum S { func c <nl> + let t = c { # ^ A ^ # <nl> new file mode 100644 <nl> index 000000000000 . . ebdb3c9c8ae7 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 037 - swift - typechecker - resolvetypeincontext . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + A { extension { <nl> + class A { func c <nl> + var d = c let t { # ^ A ^ # <nl> new file mode 100644 <nl> index 000000000000 . . 593a0b9e6518 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 039 - swift - typechecker - checkconformance . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + protocol P <nl> + struct A < I : P { var d = { enum S < T { case # ^ A ^ # <nl> new file mode 100644 <nl> index 000000000000 . . d972d3c12aa5 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 040 - swift - typechecker - typecheckconstructorbodyuntil . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + t { extension { init ( ) { # ^ A ^ # <nl> new file mode 100644 <nl> index 000000000000 . . 0f16abed0655 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 041 - swift - archetypebuilder - getgenericsignature . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + protocol A { class d < g { var e { enum b < T : a # ^ A ^ # <nl> new file mode 100644 <nl> index 000000000000 . . dfb1c0a6c6a9 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 042 - swift - typechecker - checkgenericarguments . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + struct B < T { protocol P { let : B < T > struct B < e # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 2f55d6badf6a <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 043 - swift - boundgenerictype - getsubstitutions . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + class A < h { # ^ A ^ # class B < a { let : AnyObject . Type = B <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . e84af45f2468 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 044 - swift - dependentgenerictyperesolver - resolveselfassociatedtype . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + protocol A { protocol A { <nl> + typealias e : a <nl> + func a < T : e <nl> + enum b { func a { # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . a4885d22d352 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 045 - swift - protocoldecl - requiresclassslow . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + protocol A { <nl> + extension { protocol c { <nl> + func a <nl> + protocol e { protocol A { typealias e : a extension { protocol P { # ^ A ^ # <nl> + func b <nl> + < H : o <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 5cc0fb17984f <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 046 - swift - typechecker - typecheckdecl . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + let a { s { func b < T { protocol P { let t : T <nl> + # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 916f6f30aacf <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 047 - swift - typechecker - typechecktoplevelcodedecl . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + if c = { func b : # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 0f6d643c2d7d <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 048 - swift - completegenerictyperesolver - resolvedependentmembertype . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + var b { protocol A { enum B < e { func a { struct c < T where T . h : A { # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 5b41f42d5963 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 049 - swift - typechecker - resolvewitness . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + protocol A { enum B < T { case func P { # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 105d381d9564 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 050 - swift - constraints - constraintsystem - matchtypes . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + { func a < H <nl> + enum b { func a < e { return # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . aa168f314d56 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 051 - swift - mangle - mangler - mangleassociatedtypename . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + var b { A { func f < T { let H : T . c { struct S < where # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . d19ade2961f0 <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 052 - swift - mangle - mangler - manglegenericsignatureparts . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + var b { class d < A { <nl> + func a { struct S < T <nl> + { func a { <nl> + func b < i { let h : St <nl> + class a { var _ = # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . e514361a2ceb <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 053 - swift - typebase - getsuperclass . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + ( ) { extension { class b < e { class d : d { extension { var b { class a : c # ^ A ^ # <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . fbffbd33b37f <nl> mmm / dev / null <nl> ppp b / validation - test / IDE / crashers / 054 - swift - moduledecl - forallvisiblemodules . swift <nl> <nl> + / / RUN : not - - crash % target - swift - ide - test - code - completion - code - completion - token = A - source - filename = % s <nl> + / / REQUIRES : asserts <nl> + extension String - > [ Void { # ^ A ^ # <nl> \ No newline at end of file <nl> mmm a / validation - test / SIL / Inputs / gen_parse_stdlib_tests . sh <nl> ppp b / validation - test / SIL / Inputs / gen_parse_stdlib_tests . sh <nl> <nl> # ! / usr / bin / env bash <nl> <nl> process_count = 17 <nl> - process_id_max = $ ( ( $ process_count - 1 ) ) <nl> + process_id_max = $ ( ( process_count - 1 ) ) <nl> <nl> for id in $ ( seq 0 $ process_id_max ) ; do <nl> <nl> similarity index 100 % <nl> rename from validation - test / SIL / crashers / 003 - swift - parser - parsetypesimple . swift <nl> rename to validation - test / SIL / crashers / 003 - swift - parser - parsetypesimple . sil <nl> new file mode 100644 <nl> index 000000000000 . . b0d216270d1d <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 004 - swift - expr - getsourcerange . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + <nl> + / / This test fails in the AST verifier , which can be turned off . <nl> + / / REQUIRES : swift_ast_verifier <nl> + <nl> + l < @ convention ( ) > ( <nl> new file mode 100644 <nl> index 000000000000 . . d3c647dea6d2 <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 005 - swift - silfunction - verify . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + sil shared_external @ a : $ ( ) - > ( ) <nl> new file mode 100644 <nl> index 000000000000 . . 94f12e441790 <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 006 - swift - syntaxsugartype - getimplementationtype . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + class C <nl> + struct e { weak var x : C <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . c6e5191e35b1 <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 007 - swift - abstractstoragedecl - makecomputed . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + protocol a { @ sil_stored var e : a { get <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 651bdb260eee <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 008 - swift - genericparamlist - getasgenericsignatureelements . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + sil @ __ : $ < __ where τ : k > ( ) - > ( <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 34cc04e9f84a <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 009 - swift - parser - parsedeclsil . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + sil private @ s : $ ( ) - > ( ) <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . c14ba2b1764e <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 010 - swift - typechecker - addimplicitconstructors . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + class C { @ NSManaged var S <nl> + var h <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . a2f45e50ef1b <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 011 - swift - typechecker - validatetype . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + sil @ s : $ ( ) - > ( @ owned T c : t <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 4e3aa945d2c6 <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 012 - swift - dependentgenerictyperesolver - resolveselfassociatedtype . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + protocol O { func f ( < u , a { } , a . i <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . f0e4492e4194 <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 013 - swift - parser - parsesilglobal . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + sil_global @ _a : $ ( ) sil_global [ fragile @ _a : $ ( <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . bd764ef23fca <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 014 - swift - sildeclref - sildeclref . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + class C } sil_vtable C { # C <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . cba72bc6d02f <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 015 - swift - parser - parsesilwitnesstable . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + sil_witness_table ( ) : i <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 71210ad9cb2f <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 016 - swift - typechecker - typecheckfunctionbodyuntil . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + func n - > a { return : } class a <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 877fd654724c <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 017 - swift - decl - walk . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + / / REQUIRES : swift_ast_verifier <nl> + import Swift func g ( @ opened ( Any <nl> new file mode 100644 <nl> index 000000000000 . . 9d15bd200d08 <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 018 - swift - valuedecl - getinterfacetype . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + / / REQUIRES : asserts <nl> + @ objc protocol P { func t throw <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . 480f5bb1c7bc <nl> mmm / dev / null <nl> ppp b / validation - test / SIL / crashers / 019 - swift - parser - parseexprpostfix . sil <nl> <nl> + / / RUN : not - - crash % target - sil - opt % s <nl> + C < @ convention ( ) > { <nl> \ No newline at end of file <nl> mmm a / validation - test / stdlib / UnicodeTrieGenerator . gyb <nl> ppp b / validation - test / stdlib / UnicodeTrieGenerator . gyb <nl> <nl> <nl> # RUN : rm - rf % t & & mkdir - p % t & & % S / . . / . . / utils / gyb % s | FileCheck % s <nl> <nl> + from __future__ import print_function <nl> + <nl> from GYBUnicodeDataUtils import * <nl> <nl> def test_trie_generation ( property_table , configure_generator = None ) : <nl> def test_trie_generation ( property_table , configure_generator = None ) : <nl> trie_generator . freeze ( ) <nl> trie_generator . verify ( property_table ) <nl> trie_generator . serialize ( property_table ) <nl> - print ( <nl> + print ( ( <nl> trie_generator . BMP_first_level_index_bits , <nl> trie_generator . BMP_data_offset_bits , <nl> trie_generator . supp_first_level_index_bits , <nl> def test_trie_generation ( property_table , configure_generator = None ) : <nl> trie_generator . supp_lookup1_bytes_offset - trie_generator . BMP_data_bytes_offset , <nl> trie_generator . supp_lookup2_bytes_offset - trie_generator . supp_lookup1_bytes_offset , <nl> trie_generator . supp_data_bytes_offset - trie_generator . supp_lookup2_bytes_offset , <nl> - len ( trie_generator . trie_bytes ) - trie_generator . supp_data_bytes_offset ) <nl> + len ( trie_generator . trie_bytes ) - trie_generator . supp_data_bytes_offset ) ) <nl> <nl> class PerfectlyCompressableProperty ( UnicodeProperty ) : <nl> def __init__ ( self ) : <nl> class PerfectlyCompressableProperty ( UnicodeProperty ) : <nl> def get_numeric_value ( self , cp ) : <nl> return self . to_numeric_value ( self . get_value ( cp ) ) <nl> <nl> - print ' PerfectlyCompressableProperty ' <nl> + print ( ' PerfectlyCompressableProperty ' ) <nl> test_trie_generation ( PerfectlyCompressableProperty ( ) ) <nl> # CHECK - LABEL : PerfectlyCompressableProperty <nl> # CHECK : ( 8 , 8 , 5 , 8 , 8 , 1 , 1 , 1 , 1 , 1 , 1041 , 256 , 256 , 17 , 256 , 256 ) <nl> class UncompressableProperty ( UnicodeProperty ) : <nl> def get_numeric_value ( self , cp ) : <nl> return self . to_numeric_value ( self . get_value ( cp ) ) <nl> <nl> - print ' UncompressableProperty , default trie parameters ' <nl> + print ( ' UncompressableProperty , default trie parameters ' ) <nl> test_trie_generation ( UncompressableProperty ( ) ) <nl> # CHECK - LABEL : UncompressableProperty , default trie parameters <nl> # CHECK : ( 8 , 8 , 5 , 8 , 8 , 2 , 1 , 1 , 2 , 1 , 1123601 , 512 , 65536 , 17 , 8704 , 1048832 ) <nl> def configure_generator_for_16_bit_indexes ( trie_generator ) : <nl> trie_generator . supp_first_level_index_bits = 10 <nl> trie_generator . supp_second_level_index_bits = 2 <nl> <nl> - print ' UncompressableProperty , 16 - bit indexes ' <nl> + print ( ' UncompressableProperty , 16 - bit indexes ' ) <nl> test_trie_generation ( UncompressableProperty ( ) , <nl> configure_generator_for_16_bit_indexes ) <nl> # CHECK - LABEL : UncompressableProperty , 16 - bit indexes <nl> test_trie_generation ( UncompressableProperty ( ) , <nl> # gyb will print line markers after our output , so make sure that those <nl> # don ' t accidentally match any other CHECK lines . <nl> <nl> - print ' THE END ' <nl> + print ( ' THE END ' ) <nl> # CHECK - LABEL : THE END <nl> <nl> } % <nl>
Merge remote - tracking branch ' origin ' into swift - 3 - api - guidelines
apple/swift
2f7b64e475279e37b81289f6b746b11f3dea491d
2015-12-21T20:02:13Z
mmm a / doc / tutorials / dnn / dnn_android / dnn_android . markdown <nl> ppp b / doc / tutorials / dnn / dnn_android / dnn_android . markdown <nl> Tutorial was written for the following versions of corresponding software : <nl> <nl> - Download and install Android Studio from https : / / developer . android . com / studio . <nl> <nl> - - Get the latest pre - built OpenCV for Android release from https : / / github . com / opencv / opencv / releases and unpack it ( for example , ` opencv - 3 . 4 . 8 - android - sdk . zip ` ) . <nl> + - Get the latest pre - built OpenCV for Android release from https : / / github . com / opencv / opencv / releases and unpack it ( for example , ` opencv - 3 . 4 . 9 - android - sdk . zip ` ) . <nl> <nl> - Download MobileNet object detection model from https : / / github . com / chuanqi305 / MobileNet - SSD . We need a configuration file ` MobileNetSSD_deploy . prototxt ` and weights ` MobileNetSSD_deploy . caffemodel ` . <nl> <nl> mmm a / doc / tutorials / introduction / cross_referencing / tutorial_cross_referencing . markdown <nl> ppp b / doc / tutorials / introduction / cross_referencing / tutorial_cross_referencing . markdown <nl> Open your Doxyfile using your favorite text editor and search for the key <nl> ` TAGFILES ` . Change it as follows : <nl> <nl> @ code <nl> - TAGFILES = . / docs / doxygen - tags / opencv . tag = http : / / docs . opencv . org / 3 . 4 . 8 <nl> + TAGFILES = . / docs / doxygen - tags / opencv . tag = http : / / docs . opencv . org / 3 . 4 . 9 <nl> @ endcode <nl> <nl> If you had other definitions already , you can append the line using a ` \ ` : <nl> <nl> @ code <nl> TAGFILES = . / docs / doxygen - tags / libstdc + + . tag = https : / / gcc . gnu . org / onlinedocs / libstdc + + / latest - doxygen \ <nl> - . / docs / doxygen - tags / opencv . tag = http : / / docs . opencv . org / 3 . 4 . 8 <nl> + . / docs / doxygen - tags / opencv . tag = http : / / docs . opencv . org / 3 . 4 . 9 <nl> @ endcode <nl> <nl> Doxygen can now use the information from the tag file to link to the OpenCV <nl> mmm a / modules / core / include / opencv2 / core / version . hpp <nl> ppp b / modules / core / include / opencv2 / core / version . hpp <nl> <nl> <nl> # define CV_VERSION_MAJOR 3 <nl> # define CV_VERSION_MINOR 4 <nl> - # define CV_VERSION_REVISION 8 <nl> - # define CV_VERSION_STATUS " - dev " <nl> + # define CV_VERSION_REVISION 9 <nl> + # define CV_VERSION_STATUS " - pre " <nl> <nl> # define CVAUX_STR_EXP ( __A ) # __A <nl> # define CVAUX_STR ( __A ) CVAUX_STR_EXP ( __A ) <nl> mmm a / modules / python / package / setup . py <nl> ppp b / modules / python / package / setup . py <nl> def main ( ) : <nl> os . chdir ( SCRIPT_DIR ) <nl> <nl> package_name = ' opencv ' <nl> - package_version = os . environ . get ( ' OPENCV_VERSION ' , ' 3 . 4 . 4 ' ) # TODO <nl> + package_version = os . environ . get ( ' OPENCV_VERSION ' , ' 3 . 4 . 9 ' ) # TODO <nl> <nl> long_description = ' Open Source Computer Vision Library Python bindings ' # TODO <nl> <nl> mmm a / platforms / android / build_sdk . py <nl> ppp b / platforms / android / build_sdk . py <nl> def build_engine ( self , abi , engdest ) : <nl> # Add extra data <nl> apkxmldest = check_dir ( os . path . join ( apkdest , " res " , " xml " ) , create = True ) <nl> apklibdest = check_dir ( os . path . join ( apkdest , " libs " , abi . name ) , create = True ) <nl> - for ver , d in self . extra_packs + [ ( " 3 . 4 . 8 " , os . path . join ( self . libdest , " lib " ) ) ] : <nl> + for ver , d in self . extra_packs + [ ( " 3 . 4 . 9 " , os . path . join ( self . libdest , " lib " ) ) ] : <nl> r = ET . Element ( " library " , attrib = { " version " : ver } ) <nl> log . info ( " Adding libraries from % s " , d ) <nl> <nl> mmm a / platforms / android / service / engine / AndroidManifest . xml <nl> ppp b / platforms / android / service / engine / AndroidManifest . xml <nl> <nl> < ? xml version = " 1 . 0 " encoding = " utf - 8 " ? > <nl> < manifest xmlns : android = " http : / / schemas . android . com / apk / res / android " <nl> package = " org . opencv . engine " <nl> - android : versionCode = " 348 @ ANDROID_PLATFORM_ID @ " <nl> - android : versionName = " 3 . 48 " > <nl> + android : versionCode = " 349 @ ANDROID_PLATFORM_ID @ " <nl> + android : versionName = " 3 . 49 " > <nl> <nl> < uses - sdk android : minSdkVersion = " @ ANDROID_NATIVE_API_LEVEL @ " android : targetSdkVersion = " 22 " / > <nl> < uses - feature android : name = " android . hardware . touchscreen " android : required = " false " / > <nl> mmm a / platforms / android / service / engine / src / org / opencv / engine / OpenCVEngineService . java <nl> ppp b / platforms / android / service / engine / src / org / opencv / engine / OpenCVEngineService . java <nl> public String getLibPathByVersion ( String version ) <nl> <nl> @ Override <nl> public int getEngineVersion ( ) throws RemoteException { <nl> - int version = 3480 ; <nl> + int version = 3490 ; <nl> try { <nl> version = getPackageManager ( ) . getPackageInfo ( getPackageName ( ) , 0 ) . versionCode ; <nl> } catch ( NameNotFoundException e ) { <nl> mmm a / platforms / android / service / readme . txt <nl> ppp b / platforms / android / service / readme . txt <nl> manually using adb tool : <nl> <nl> adb install < path - to - OpenCV - sdk > / apk / OpenCV_ < version > _Manager_ < app_version > _ < platform > . apk <nl> <nl> - Example : OpenCV_3 . 4 . 8 - dev_Manager_3 . 48_armeabi - v7a . apk <nl> + Example : OpenCV_3 . 4 . 9 - dev_Manager_3 . 49_armeabi - v7a . apk <nl> <nl> Use the list of platforms below to determine proper OpenCV Manager package for your device : <nl> <nl> mmm a / platforms / maven / opencv - it / pom . xml <nl> ppp b / platforms / maven / opencv - it / pom . xml <nl> <nl> < parent > <nl> < groupId > org . opencv < / groupId > <nl> < artifactId > opencv - parent < / artifactId > <nl> - < version > 3 . 4 . 8 < / version > <nl> + < version > 3 . 4 . 9 < / version > <nl> < / parent > <nl> < groupId > org . opencv < / groupId > <nl> < artifactId > opencv - it < / artifactId > <nl> mmm a / platforms / maven / opencv / pom . xml <nl> ppp b / platforms / maven / opencv / pom . xml <nl> <nl> < parent > <nl> < groupId > org . opencv < / groupId > <nl> < artifactId > opencv - parent < / artifactId > <nl> - < version > 3 . 4 . 8 < / version > <nl> + < version > 3 . 4 . 9 < / version > <nl> < / parent > <nl> < groupId > org . opencv < / groupId > <nl> < artifactId > opencv < / artifactId > <nl> mmm a / platforms / maven / pom . xml <nl> ppp b / platforms / maven / pom . xml <nl> <nl> < modelVersion > 4 . 0 . 0 < / modelVersion > <nl> < groupId > org . opencv < / groupId > <nl> < artifactId > opencv - parent < / artifactId > <nl> - < version > 3 . 4 . 8 < / version > <nl> + < version > 3 . 4 . 9 < / version > <nl> < packaging > pom < / packaging > <nl> < name > OpenCV Parent POM < / name > <nl> < licenses > <nl>
pre : OpenCV 3 . 4 . 9 ( version + + )
opencv/opencv
76a27e3399c1d3ab43a7812deba03b7c0694c540
2019-12-05T18:28:38Z
mmm a / src / arch / address . cc <nl> ppp b / src / arch / address . cc <nl> <nl> <nl> # include " arch / arch . hpp " <nl> <nl> + long get_sysconf_host_name_max ( ) { <nl> + const long namelen = sysconf ( _SC_HOST_NAME_MAX ) ; / / NOLINT ( runtime / int ) <nl> + guarantee_err ( namelen ! = - 1 , " sysconf failed " ) ; <nl> + guarantee ( namelen > 0 & & namelen > = _POSIX_HOST_NAME_MAX ) ; <nl> + return namelen ; <nl> + } <nl> + <nl> / * Get our hostname as an std : : string . * / <nl> std : : string str_gethostname ( ) { <nl> - / / TODO ( OSX ) reconsider how to detect OS X <nl> - / / TODO ( OSX ) see if sysconf works on linux . On older Linuxes ? <nl> - # if __APPLE__ <nl> - const int namelen = sysconf ( _SC_HOST_NAME_MAX ) ; <nl> - # else <nl> - const int namelen = HOST_NAME_MAX ; <nl> - # endif <nl> + static const long namelen = get_sysconf_host_name_max ( ) ; / / NOLINT ( runtime / int ) <nl> + <nl> std : : vector < char > bytes ( namelen + 1 ) ; <nl> bytes [ namelen ] = ' 0 ' ; <nl> <nl>
Made us not conditionally use HOST_NAME_MAX , always use sysconf ( _SC_HOST_NAME_MAX ) .
rethinkdb/rethinkdb
bb6f155d60b75968af52c92b3b9c51ffeef9cc79
2012-11-29T22:57:33Z
mmm a / lib / IRGen / IRGenDebugInfo . cpp <nl> ppp b / lib / IRGen / IRGenDebugInfo . cpp <nl> TypeAliasDecl * IRGenDebugInfo : : getMetadataType ( ) { <nl> return MetadataTypeDecl ; <nl> } <nl> <nl> - void IRGenDebugInfo : : emitStackVariableDeclaration ( IRBuilder & B , <nl> - llvm : : Value * Storage , <nl> - DebugTypeInfo Ty , <nl> - StringRef Name , <nl> - SILInstruction * I , <nl> - IndirectionKind Indirection ) { <nl> - emitVariableDeclaration ( B , Storage , Ty , Name , <nl> - llvm : : dwarf : : DW_TAG_auto_variable , <nl> - 0 , Indirection , RealValue ) ; <nl> - } <nl> - <nl> - <nl> void IRGenDebugInfo : : <nl> emitTypeMetadata ( IRGenFunction & IGF , llvm : : Value * Metadata , StringRef Name ) { <nl> auto TName = BumpAllocatedString ( ( " $ swift . type . " + Name ) . str ( ) ) ; <nl> emitTypeMetadata ( IRGenFunction & IGF , llvm : : Value * Metadata , StringRef Name ) { <nl> DirectValue , ArtificialValue ) ; <nl> } <nl> <nl> + void IRGenDebugInfo : : emitStackVariableDeclaration ( IRBuilder & B , <nl> + llvm : : Value * Storage , <nl> + DebugTypeInfo Ty , <nl> + StringRef Name , <nl> + IndirectionKind Indirection ) { <nl> + emitVariableDeclaration ( B , Storage , Ty , Name , <nl> + llvm : : dwarf : : DW_TAG_auto_variable , <nl> + 0 , Indirection , RealValue ) ; <nl> + } <nl> + <nl> <nl> void IRGenDebugInfo : : emitArgVariableDeclaration ( IRBuilder & Builder , <nl> llvm : : Value * Storage , <nl>
reorder functions in the file
apple/swift
e1387cf7ef1452e1c6c9b39f72efbec36e7f0ca4
2014-01-22T22:42:07Z
mmm a / src / yuzu / applets / profile_select . cpp <nl> ppp b / src / yuzu / applets / profile_select . cpp <nl> int QtProfileSelectionDialog : : exec ( ) { <nl> user_index = 0 ; <nl> return QDialog : : Accepted ; <nl> } <nl> - QDialog : : exec ( ) ; <nl> + return QDialog : : exec ( ) ; <nl> } <nl> <nl> void QtProfileSelectionDialog : : accept ( ) { <nl>
Merge pull request from Morph1984 / resolve - warning
yuzu-emu/yuzu
fe53ee26ce1563e9239cd5be5c33be218d9cf9e9
2020-10-25T15:47:09Z
mmm a / cocos / 2d / CCSpriteBatchNode . cpp <nl> ppp b / cocos / 2d / CCSpriteBatchNode . cpp <nl> SpriteBatchNode * SpriteBatchNode : : create ( const std : : string & fileImage , ssize_t c <nl> / * <nl> * init with Texture2D <nl> * / <nl> - bool SpriteBatchNode : : initWithTexture ( Texture2D * tex , ssize_t capacity ) <nl> + bool SpriteBatchNode : : initWithTexture ( Texture2D * tex , ssize_t capacity / * = DEFAULT_CAPACITY * / ) <nl> { <nl> CCASSERT ( capacity > = 0 , " Capacity must be > = 0 " ) ; <nl> <nl> bool SpriteBatchNode : : init ( ) <nl> / * <nl> * init with FileImage <nl> * / <nl> - bool SpriteBatchNode : : initWithFile ( const std : : string & fileImage , ssize_t capacity ) <nl> + bool SpriteBatchNode : : initWithFile ( const std : : string & fileImage , ssize_t capacity / * = DEFAULT_CAPACITY * / ) <nl> { <nl> Texture2D * texture2D = Director : : getInstance ( ) - > getTextureCache ( ) - > addImage ( fileImage ) ; <nl> return initWithTexture ( texture2D , capacity ) ; <nl> mmm a / cocos / 2d / CCSpriteBatchNode . h <nl> ppp b / cocos / 2d / CCSpriteBatchNode . h <nl> class CC_DLL SpriteBatchNode : public Node , public TextureProtocol <nl> <nl> public : <nl> / * * creates a SpriteBatchNode with a texture2d and capacity of children . <nl> - The capacity will be increased in 33 % in runtime if it run out of space . <nl> + The capacity will be increased in 33 % in runtime if it runs out of space . <nl> * / <nl> static SpriteBatchNode * createWithTexture ( Texture2D * tex , ssize_t capacity = DEFAULT_CAPACITY ) ; <nl> <nl> / * * creates a SpriteBatchNode with a file image ( . png , . jpeg , . pvr , etc ) and capacity of children . <nl> - The capacity will be increased in 33 % in runtime if it run out of space . <nl> + The capacity will be increased in 33 % in runtime if it runs out of space . <nl> The file will be loaded using the TextureMgr . <nl> * / <nl> static SpriteBatchNode * create ( const std : : string & fileImage , ssize_t capacity = DEFAULT_CAPACITY ) ; <nl> class CC_DLL SpriteBatchNode : public Node , public TextureProtocol <nl> virtual ~ SpriteBatchNode ( ) ; <nl> <nl> / * * initializes a SpriteBatchNode with a texture2d and capacity of children . <nl> - The capacity will be increased in 33 % in runtime if it run out of space . <nl> + The capacity will be increased in 33 % in runtime if it runs out of space . <nl> * / <nl> - bool initWithTexture ( Texture2D * tex , ssize_t capacity ) ; <nl> + bool initWithTexture ( Texture2D * tex , ssize_t capacity = DEFAULT_CAPACITY ) ; <nl> / * * initializes a SpriteBatchNode with a file image ( . png , . jpeg , . pvr , etc ) and a capacity of children . <nl> - The capacity will be increased in 33 % in runtime if it run out of space . <nl> + The capacity will be increased in 33 % in runtime if it runs out of space . <nl> The file will be loaded using the TextureMgr . <nl> * @ js init <nl> * @ lua init <nl> * / <nl> - bool initWithFile ( const std : : string & fileImage , ssize_t capacity ) ; <nl> + bool initWithFile ( const std : : string & fileImage , ssize_t capacity = DEFAULT_CAPACITY ) ; <nl> bool init ( ) ; <nl> <nl> protected : <nl>
Merge pull request from sergeant - wizard / specify_default_capacity_for_sprite_batch_node
cocos2d/cocos2d-x
8716164a5d95480b7d61d114c215b4c4cb762077
2015-02-12T09:58:59Z
mmm a / src / db . cpp <nl> ppp b / src / db . cpp <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> / / Get cursor <nl> Dbc * pcursor = GetCursor ( ) ; <nl> if ( ! pcursor ) <nl> + { <nl> + printf ( " Error getting wallet database cursor \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> <nl> loop <nl> { <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> if ( ret = = DB_NOTFOUND ) <nl> break ; <nl> else if ( ret ! = 0 ) <nl> + { <nl> + printf ( " Error reading next record from wallet database \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> <nl> / / Unserialize <nl> / / Taking advantage of the fact that pair serialization <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> ssValue > > pkey ; <nl> key . SetPubKey ( vchPubKey ) ; <nl> key . SetPrivKey ( pkey ) ; <nl> - if ( key . GetPubKey ( ) ! = vchPubKey | | ! key . IsValid ( ) ) <nl> + if ( key . GetPubKey ( ) ! = vchPubKey ) <nl> + { <nl> + printf ( " Error reading wallet database : CPrivKey pubkey inconsistency \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> + if ( ! key . IsValid ( ) ) <nl> + { <nl> + printf ( " Error reading wallet database : invalid CPrivKey \ n " ) ; <nl> + return DB_CORRUPT ; <nl> + } <nl> } <nl> else <nl> { <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> ssValue > > wkey ; <nl> key . SetPubKey ( vchPubKey ) ; <nl> key . SetPrivKey ( wkey . vchPrivKey ) ; <nl> - if ( key . GetPubKey ( ) ! = vchPubKey | | ! key . IsValid ( ) ) <nl> + if ( key . GetPubKey ( ) ! = vchPubKey ) <nl> + { <nl> + printf ( " Error reading wallet database : CWalletKey pubkey inconsistency \ n " ) ; <nl> + return DB_CORRUPT ; <nl> + } <nl> + if ( ! key . IsValid ( ) ) <nl> + { <nl> + printf ( " Error reading wallet database : invalid CWalletKey \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> } <nl> if ( ! pwallet - > LoadKey ( key ) ) <nl> + { <nl> + printf ( " Error reading wallet database : LoadKey failed \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> } <nl> else if ( strType = = " mkey " ) <nl> { <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> CMasterKey kMasterKey ; <nl> ssValue > > kMasterKey ; <nl> if ( pwallet - > mapMasterKeys . count ( nID ) ! = 0 ) <nl> + { <nl> + printf ( " Error reading wallet database : duplicate CMasterKey id % u \ n " , nID ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> pwallet - > mapMasterKeys [ nID ] = kMasterKey ; <nl> if ( pwallet - > nMasterKeyMaxID < nID ) <nl> pwallet - > nMasterKeyMaxID = nID ; <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> vector < unsigned char > vchPrivKey ; <nl> ssValue > > vchPrivKey ; <nl> if ( ! pwallet - > LoadCryptedKey ( vchPubKey , vchPrivKey ) ) <nl> + { <nl> + printf ( " Error reading wallet database : LoadCryptedKey failed \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> fIsEncrypted = true ; <nl> } <nl> else if ( strType = = " defaultkey " ) <nl> int CWalletDB : : LoadWallet ( CWallet * pwallet ) <nl> CScript script ; <nl> ssValue > > script ; <nl> if ( ! pwallet - > LoadCScript ( script ) ) <nl> + { <nl> + printf ( " Error reading wallet database : LoadCScript failed \ n " ) ; <nl> return DB_CORRUPT ; <nl> + } <nl> } <nl> } <nl> pcursor - > close ( ) ; <nl> mmm a / src / init . cpp <nl> ppp b / src / init . cpp <nl> bool AppInit2 ( int argc , char * argv [ ] ) <nl> else if ( nLoadWalletRet = = DB_NEED_REWRITE ) <nl> { <nl> strErrors < < _ ( " Wallet needed to be rewritten : restart Bitcoin to complete " ) < < " \ n " ; <nl> + printf ( " % s " , strErrors . str ( ) . c_str ( ) ) ; <nl> wxMessageBox ( strErrors . str ( ) , " Bitcoin " , wxOK | wxICON_ERROR ) ; <nl> return false ; <nl> } <nl> else <nl> strErrors < < _ ( " Error loading wallet . dat " ) < < " \ n " ; <nl> } <nl> + printf ( " % s " , strErrors . str ( ) . c_str ( ) ) ; <nl> printf ( " wallet % 15 " PRI64d " ms \ n " , GetTimeMillis ( ) - nStart ) ; <nl> <nl> RegisterWallet ( pwalletMain ) ; <nl>
Merge pull request from luke - jr / dbg_loaderr
bitcoin/bitcoin
0b99d1b574f33a67c8bfae0a149ef70346d4a114
2012-03-19T03:11:09Z
mmm a / tensorflow / python / ops / lookup_ops . py <nl> ppp b / tensorflow / python / ops / lookup_ops . py <nl> def initializer ( self ) : <nl> <nl> @ tf_export ( " lookup . StaticHashTable " , v1 = [ ] ) <nl> class StaticHashTable ( InitializableLookupTableBase ) : <nl> - " " " A generic hash table implementation . <nl> + " " " A generic hash table implementation . The table is immutable once <nl> + initialized . <nl> <nl> Example usage : <nl> <nl> ` ` ` python <nl> + keys_tensor = tf . constant ( [ 1 , 2 ] ) <nl> + vals_tensor = tf . constant ( [ 3 , 4 ] ) <nl> + input_tensor = tf . constant ( [ 1 , 5 ] ) <nl> table = tf . lookup . StaticHashTable ( <nl> - tf . KeyValueTensorInitializer ( keys , values ) , - 1 ) <nl> + tf . lookup . KeyValueTensorInitializer ( keys_tensor , vals_tensor ) , - 1 ) <nl> + print ( table . lookup ( input_tensor ) ) <nl> + ` ` ` <nl> + <nl> + When running in graph mode , you must evaluate the tensor returned by <nl> + ` tf . tables_initializer ( ) ` before evaluating the tensor returned by <nl> + this class ' s ` lookup ( ) ` method . Example usage in graph mode : <nl> + <nl> + ` ` ` python <nl> + keys_tensor = tf . constant ( [ 1 , 2 ] ) <nl> + vals_tensor = tf . constant ( [ 3 , 4 ] ) <nl> + input_tensor = tf . constant ( [ 1 , 5 ] ) <nl> + table = tf . lookup . StaticHashTable ( <nl> + tf . lookup . KeyValueTensorInitializer ( keys_tensor , vals_tensor ) , - 1 ) <nl> out = table . lookup ( input_tensor ) <nl> - table . init . run ( ) <nl> - print ( out . eval ( ) ) <nl> + with tf . Session ( ) as sess : <nl> + sess . run ( tf . tables_initializer ( ) ) <nl> + print ( sess . run ( out ) ) <nl> ` ` ` <nl> " " " <nl> <nl>
Correct out - of - date docstring for StaticHashTable
tensorflow/tensorflow
85a0a615547a01b7f36c5581398e5aabf2b8ef01
2019-04-26T22:51:07Z
mmm a / hphp / runtime / base / sort - flags . h <nl> ppp b / hphp / runtime / base / sort - flags . h <nl> inline bool supportedByPacked ( SortFunction s ) { <nl> <nl> inline SortFunction getSortFunction ( SortFunction s , bool ascending = true ) { <nl> assertx ( ! hasUserDefinedCmp ( s ) ) ; <nl> + assertx ( ! ( s & 1 ) ) ; <nl> / / ascending : LSB = = 0 <nl> - return static_cast < SortFunction > ( s & ~ static_cast < int > ( ascending ) ) ; <nl> + return static_cast < SortFunction > ( s | static_cast < int > ( ! ascending ) ) ; <nl> } <nl> <nl> } <nl> mmm a / hphp / runtime / ext / array / ext_array . cpp <nl> ppp b / hphp / runtime / ext / array / ext_array . cpp <nl> php_ksort ( VRefParam container , int sort_flags , bool ascending , <nl> if ( use_zend_sort ) { <nl> return zend_ksort ( * ref , sort_flags , ascending ) ; <nl> } <nl> - SortFunction sf = getSortFunction ( SORTFUNC_KRSORT , ascending ) ; <nl> + SortFunction sf = getSortFunction ( SORTFUNC_KSORT , ascending ) ; <nl> ArraySortTmp ast ( ref - > asTypedValue ( ) , sf ) ; <nl> ast - > ksort ( sort_flags , ascending ) ; <nl> return true ; <nl>
Make getSortFunction less fragile .
facebook/hhvm
8c2c80dd07b0532b01d3ddd4801452cd0ac61041
2018-11-12T14:30:41Z
mmm a / ports / jxrlib / CONTROL <nl> ppp b / ports / jxrlib / CONTROL <nl> <nl> Source : jxrlib <nl> - Version : 1 . 1 <nl> + Version : 1 . 1 - 1 <nl> Description : Open source implementation of the jpegxr image format standard . <nl>
[ jxrlib ] Bump version
microsoft/vcpkg
592201dfc04734c83b83f1c9f6313a270564c8ec
2016-11-16T23:32:53Z
mmm a / tensorflow / opensource_only . files <nl> ppp b / tensorflow / opensource_only . files <nl> tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py37_full / nonpip . sh <nl> tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py37_full / nonpip_v1 . sh <nl> tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py37_full / pip . sh <nl> tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py37_full / pip_v1 . sh <nl> + tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py38_full / nightly_release . sh <nl> + tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py38_full / nonpip . sh <nl> + tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py38_full / pip . sh <nl> tensorflow / tools / ci_build / release / ubuntu_16 / custom_op / nightly . sh <nl> tensorflow / tools / ci_build / release / ubuntu_16 / gpu_pip_on_cpu / build . sh <nl> tensorflow / tools / ci_build / release / ubuntu_16 / gpu_py2_full / nightly_release . sh <nl> new file mode 100644 <nl> index 0000000000000 . . ad24341a8574b <nl> mmm / dev / null <nl> ppp b / tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py38_full / nightly_release . sh <nl> <nl> + # ! / bin / bash <nl> + # Copyright 2019 The TensorFlow Authors . All Rights Reserved . <nl> + # <nl> + # Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + # you may not use this file except in compliance with the License . <nl> + # You may obtain a copy of the License at <nl> + # <nl> + # http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + # <nl> + # Unless required by applicable law or agreed to in writing , software <nl> + # distributed under the License is distributed on an " AS IS " BASIS , <nl> + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + # See the License for the specific language governing permissions and <nl> + # limitations under the License . <nl> + # = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> + set - e <nl> + set - x <nl> + <nl> + source tensorflow / tools / ci_build / release / common . sh <nl> + set_bazel_outdir <nl> + <nl> + install_ubuntu_16_pip_deps pip3 . 8 <nl> + <nl> + update_bazel_linux <nl> + <nl> + python2 . 7 tensorflow / tools / ci_build / update_version . py - - nightly <nl> + <nl> + # Run configure . <nl> + export TF_NEED_GCP = 1 <nl> + export TF_NEED_HDFS = 1 <nl> + export TF_NEED_S3 = 1 <nl> + export TF_NEED_CUDA = 0 <nl> + export CC_OPT_FLAGS = ' - mavx ' <nl> + export PYTHON_BIN_PATH = $ ( which python3 . 8 ) <nl> + yes " " | " $ PYTHON_BIN_PATH " configure . py <nl> + <nl> + # Build the pip package <nl> + bazel build - - config = opt - - config = v2 \ <nl> + - - crosstool_top = / / third_party / toolchains / preconfig / ubuntu16 . 04 / gcc7_manylinux2010 - nvcc - cuda10 . 1 : toolchain \ <nl> + tensorflow / tools / pip_package : build_pip_package <nl> + <nl> + . / bazel - bin / tensorflow / tools / pip_package / build_pip_package pip_pkg - - cpu - - nightly_flag <nl> + <nl> + # Upload the built packages to pypi . <nl> + for WHL_PATH in $ ( ls pip_pkg / tf_nightly_cpu - * dev * . whl ) ; do <nl> + <nl> + WHL_DIR = $ ( dirname " $ { WHL_PATH } " ) <nl> + WHL_BASE_NAME = $ ( basename " $ { WHL_PATH } " ) <nl> + AUDITED_WHL_NAME = " $ { WHL_DIR } " / $ ( echo " $ { WHL_BASE_NAME / / linux / manylinux2010 } " ) <nl> + auditwheel repair - - plat manylinux2010_x86_64 - w " $ { WHL_DIR } " " $ { WHL_PATH } " <nl> + <nl> + # test the whl pip package <nl> + chmod + x tensorflow / tools / ci_build / builds / nightly_release_smoke_test . sh <nl> + . / tensorflow / tools / ci_build / builds / nightly_release_smoke_test . sh $ { AUDITED_WHL_NAME } <nl> + RETVAL = $ ? <nl> + <nl> + # Upload the PIP package if whl test passes . <nl> + if [ $ { RETVAL } - eq 0 ] ; then <nl> + echo " Basic PIP test PASSED , Uploading package : $ { AUDITED_WHL_NAME } " <nl> + twine upload - r pypi - warehouse " $ { AUDITED_WHL_NAME } " | | echo <nl> + else <nl> + echo " Basic PIP test FAILED , will not upload $ { AUDITED_WHL_NAME } package " <nl> + return 1 <nl> + fi <nl> + done <nl> new file mode 100644 <nl> index 0000000000000 . . 90b0920a00753 <nl> mmm / dev / null <nl> ppp b / tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py38_full / nonpip . sh <nl> <nl> + # ! / bin / bash <nl> + # Copyright 2019 The TensorFlow Authors . All Rights Reserved . <nl> + # <nl> + # Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + # you may not use this file except in compliance with the License . <nl> + # You may obtain a copy of the License at <nl> + # <nl> + # http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + # <nl> + # Unless required by applicable law or agreed to in writing , software <nl> + # distributed under the License is distributed on an " AS IS " BASIS , <nl> + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + # See the License for the specific language governing permissions and <nl> + # limitations under the License . <nl> + # = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> + set - e <nl> + set - x <nl> + <nl> + source tensorflow / tools / ci_build / release / common . sh <nl> + <nl> + install_ubuntu_16_pip_deps pip3 . 8 <nl> + # Update bazel <nl> + update_bazel_linux <nl> + <nl> + # Run configure . <nl> + export TF_NEED_GCP = 1 <nl> + export TF_NEED_HDFS = 1 <nl> + export TF_NEED_S3 = 1 <nl> + export TF_NEED_CUDA = 0 <nl> + export CC_OPT_FLAGS = ' - mavx ' <nl> + export PYTHON_BIN_PATH = $ ( which python3 . 8 ) <nl> + export TF2_BEHAVIOR = 1 <nl> + yes " " | " $ PYTHON_BIN_PATH " configure . py <nl> + tag_filters = " - no_oss , - oss_serial , - gpu , - tpu , - benchmark - test , - no_oss_py38 , - v1only " <nl> + <nl> + # Get the default test targets for bazel . <nl> + source tensorflow / tools / ci_build / build_scripts / PRESUBMIT_BUILD_TARGETS . sh <nl> + <nl> + # Run tests <nl> + bazel test - - test_output = errors - - config = opt - - test_lang_filters = py \ <nl> + - - crosstool_top = / / third_party / toolchains / preconfig / ubuntu16 . 04 / gcc7_manylinux2010 - nvcc - cuda10 . 1 : toolchain \ <nl> + - - linkopt = - lrt \ <nl> + - - action_env = TF2_BEHAVIOR = " $ { TF2_BEHAVIOR } " \ <nl> + - - build_tag_filters = " $ { tag_filters } " \ <nl> + - - test_tag_filters = " $ { tag_filters } " - - \ <nl> + $ { DEFAULT_BAZEL_TARGETS } - / / tensorflow / lite / . . . <nl> new file mode 100644 <nl> index 0000000000000 . . cd6e73ee7cab8 <nl> mmm / dev / null <nl> ppp b / tensorflow / tools / ci_build / release / ubuntu_16 / cpu_py38_full / pip . sh <nl> <nl> + # ! / bin / bash <nl> + # Copyright 2019 The TensorFlow Authors . All Rights Reserved . <nl> + # <nl> + # Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + # you may not use this file except in compliance with the License . <nl> + # You may obtain a copy of the License at <nl> + # <nl> + # http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + # <nl> + # Unless required by applicable law or agreed to in writing , software <nl> + # distributed under the License is distributed on an " AS IS " BASIS , <nl> + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + # See the License for the specific language governing permissions and <nl> + # limitations under the License . <nl> + # = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> + set - e <nl> + set - x <nl> + <nl> + source tensorflow / tools / ci_build / release / common . sh <nl> + <nl> + install_ubuntu_16_pip_deps pip3 . 8 <nl> + # Update bazel <nl> + update_bazel_linux <nl> + <nl> + # Export required variables for running pip . sh <nl> + export OS_TYPE = " UBUNTU " <nl> + export CONTAINER_TYPE = " CPU " <nl> + export TF_PYTHON_VERSION = ' python3 . 8 ' <nl> + <nl> + # Run configure . <nl> + export TF_NEED_GCP = 1 <nl> + export TF_NEED_HDFS = 1 <nl> + export TF_NEED_S3 = 1 <nl> + export TF_NEED_CUDA = 0 <nl> + export CC_OPT_FLAGS = ' - mavx ' <nl> + export PYTHON_BIN_PATH = $ ( which $ { TF_PYTHON_VERSION } ) <nl> + yes " " | " $ PYTHON_BIN_PATH " configure . py <nl> + <nl> + # Get the default test targets for bazel . <nl> + source tensorflow / tools / ci_build / build_scripts / PRESUBMIT_BUILD_TARGETS . sh <nl> + <nl> + # Export optional variables for running pip . sh <nl> + export TF_BUILD_FLAGS = " - - config = opt - - config = v2 - - crosstool_top = / / third_party / toolchains / preconfig / ubuntu16 . 04 / gcc7_manylinux2010 - nvcc - cuda10 . 1 : toolchain " <nl> + export TF_TEST_FLAGS = " - - define = no_tensorflow_py_deps = true - - test_lang_filters = py - - test_output = errors - - verbose_failures = true - - keep_going - - test_env = TF2_BEHAVIOR = 1 " <nl> + export TF_TEST_TARGETS = " $ { DEFAULT_BAZEL_TARGETS } - / / tensorflow / lite / . . . " <nl> + export TF_PIP_TESTS = " test_pip_virtualenv_non_clean test_pip_virtualenv_clean " <nl> + export TF_TEST_FILTER_TAGS = ' - no_oss , - oss_serial , - no_oss_py38 , - v1only ' <nl> + export IS_NIGHTLY = 0 # Not nightly <nl> + export TF_PROJECT_NAME = " tensorflow_cpu " <nl> + export TF_PIP_TEST_ROOT = " pip_test " <nl> + <nl> + . / tensorflow / tools / ci_build / builds / pip_new . sh <nl>
Add Ubuntu16 cpu py3 . 8 nightly and release builds .
tensorflow/tensorflow
3feb0cbaa78b16de54406a0664af0d23c62663c5
2020-01-15T21:01:19Z
mmm a / test / Prototypes / PatternMatching . swift <nl> ppp b / test / Prototypes / PatternMatching . swift <nl> <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> / / RUN : % target - run - simple - swift <nl> / / REQUIRES : executable_test <nl> - / / REQUIRES : rdar31343594 <nl> <nl> / / = = = mmm Niceties mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm = = = / / <nl> typealias Element_ < S : Sequence > = S . Iterator . Element <nl>
Re - enable a test now that we have a workaround in place
apple/swift
4ce9094bbe4738fcbae2d7b196b5448dcc19658a
2017-04-04T04:27:05Z
mmm a / torch / csrc / jit / tensorexpr / llvm_codegen . cpp <nl> ppp b / torch / csrc / jit / tensorexpr / llvm_codegen . cpp <nl> llvm : : CmpInst : : Predicate llvm_comparison_predicate ( <nl> <nl> class LLVMCodeGenImpl : public IRVisitor { <nl> private : <nl> - llvm : : orc : : ThreadSafeContext context_ ; <nl> + std : : unique_ptr < llvm : : LLVMContext > context_ ; <nl> llvm : : IRBuilder < > irb_ ; <nl> std : : unique_ptr < llvm : : TargetMachine > TM_ ; <nl> std : : unique_ptr < llvm : : orc : : PytorchLLVMJIT > jit_ ; <nl> LLVMCodeGenImpl : : LLVMCodeGenImpl ( <nl> emitWrapper ( params ) ; <nl> emitKernel ( stmt , params ) ; <nl> <nl> - cantFail ( jit_ - > addModule ( <nl> - llvm : : orc : : ThreadSafeModule ( std : : move ( module_ ) , context_ ) ) ) ; <nl> + cantFail ( jit_ - > addModule ( std : : move ( module_ ) , std : : move ( context_ ) ) ) ; <nl> auto sym = jit_ - > findSymbol ( " wrapper " ) ; <nl> kernelAddress_ = cantFail ( sym . getAddress ( ) ) ; <nl> argv_ = std : : make_unique < void * [ ] > ( params . size ( ) ) ; <nl> LLVMCodeGenImpl : : LLVMCodeGenImpl ( <nl> } <nl> <nl> llvm : : LLVMContext & LLVMCodeGenImpl : : getContext ( ) { <nl> - return * context_ . getContext ( ) ; <nl> + return * context_ ; <nl> } <nl> <nl> llvm : : Type * LLVMCodeGenImpl : : dtypeToLLVM ( Dtype dtype ) { <nl> void LLVMCodeGenImpl : : visit ( const Load * v ) { <nl> auto addr = irb_ . CreateGEP ( base , first_idx ) ; <nl> auto vaddr = irb_ . CreateBitOrPointerCast ( <nl> addr , llvm : : PointerType : : get ( loadType , 0 ) ) ; <nl> - value_ = irb_ . CreateAlignedLoad ( loadType , vaddr , 4 ) ; <nl> + value_ = irb_ . CreateAlignedLoad ( vaddr , 4 ) ; <nl> return ; <nl> } <nl> } <nl> void LLVMCodeGenImpl : : visit ( const BaseCallNode * v ) { <nl> <nl> static void applyMathFunctionAttributes ( llvm : : Function * f ) { <nl> f - > addFnAttr ( llvm : : Attribute : : ReadNone ) ; <nl> - f - > addFnAttr ( llvm : : Attribute : : NoFree ) ; <nl> f - > addFnAttr ( llvm : : Attribute : : NoUnwind ) ; <nl> / / TODO : Adding this attr should be correct , but as of LLVM 9 . 0 . 1 adding it <nl> / / causes some math functions to incorrectly be turned into tail calls . <nl> / / f - > addFnAttr ( llvm : : Attribute : : Speculatable ) ; <nl> + # if LLVM_VERSION_MAJOR = = 9 <nl> + f - > addFnAttr ( llvm : : Attribute : : NoFree ) ; <nl> f - > addFnAttr ( llvm : : Attribute : : WillReturn ) ; <nl> + # endif <nl> } <nl> <nl> + namespace { <nl> + # if LLVM_VERSION_MAJOR = = 9 <nl> + <nl> + using FunctionCallee = llvm : : FunctionCallee ; <nl> + <nl> + # elif LLVM_VERSION_MAJOR = = 8 & & LLVM_VERSION_PATCH = = 20181009 <nl> + <nl> + struct FunctionCallee { <nl> + FunctionCallee ( ) { } <nl> + <nl> + FunctionCallee ( llvm : : Constant * fn ) <nl> + : v_ ( fn ) , ft_ ( cast < llvm : : Function > ( v_ ) - > getFunctionType ( ) ) { } <nl> + <nl> + llvm : : FunctionType * getFunctionType ( ) { <nl> + return ft_ ; <nl> + } <nl> + <nl> + llvm : : Value * getCallee ( ) { <nl> + return v_ ; <nl> + } <nl> + <nl> + private : <nl> + llvm : : Value * v_ { nullptr } ; <nl> + llvm : : FunctionType * ft_ { nullptr } ; <nl> + } ; <nl> + <nl> + # else <nl> + # error Only LLVM versions 8 or 9 are supported . <nl> + # endif <nl> + <nl> + } / / namespace <nl> + <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> llvm : : FunctionType * call_ty = nullptr ; <nl> llvm : : Value * call_fn = nullptr ; <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # if defined ( __AVX__ ) & & ! defined ( _MSC_VER ) <nl> # define SIMD_UNARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 8 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " 8 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # else <nl> # define SIMD_UNARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 4 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " 4 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # if defined ( __AVX__ ) & & ! defined ( _MSC_VER ) <nl> # define SIMD_BINARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 8 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " 8 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # else <nl> # define SIMD_BINARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 4 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " 4 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> SIMD_BINARY_MATH_CASE ( kFmod , " fmodf " , FloatTy_ ) <nl> # undef SIMD_BINARY_MATH_CASE <nl> <nl> - # define BINARY_MATH_CASE ( enum , name , type ) \ <nl> - case enum : { \ <nl> - auto callee = module_ - > getOrInsertFunction ( \ <nl> - name , llvm : : FunctionType : : get ( type , { type , type } , false ) , { } ) ; \ <nl> - call_ty = callee . getFunctionType ( ) ; \ <nl> - call_fn = callee . getCallee ( ) ; \ <nl> - applyMathFunctionAttributes ( llvm : : cast < llvm : : Function > ( call_fn ) ) ; \ <nl> - } break ; <nl> - BINARY_MATH_CASE ( kRemainder , " remainderf " , FloatTy_ ) <nl> - # undef BINARY_MATH_CASE <nl> + case kRemainder : { <nl> + FunctionCallee callee = module_ - > getOrInsertFunction ( <nl> + " remainderf " , <nl> + llvm : : FunctionType : : get ( FloatTy_ , { FloatTy_ , FloatTy_ } , false ) , <nl> + { } ) ; <nl> + call_ty = callee . getFunctionType ( ) ; <nl> + call_fn = callee . getCallee ( ) ; <nl> + applyMathFunctionAttributes ( llvm : : cast < llvm : : Function > ( call_fn ) ) ; <nl> + } break ; <nl> <nl> default : { <nl> throw unimplemented_lowering ( v ) ; <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # if defined ( __AVX__ ) & & ! defined ( _MSC_VER ) <nl> # define SIMD_UNARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 4 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " d4 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # else <nl> # define SIMD_UNARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 2 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " d2 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # if defined ( __AVX__ ) & & ! defined ( _MSC_VER ) <nl> # define SIMD_BINARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 4 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " d4 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> # else <nl> # define SIMD_BINARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - llvm : : FunctionCallee callee ; \ <nl> + FunctionCallee callee ; \ <nl> std : : string fname ; \ <nl> if ( v - > dtype ( ) . lanes ( ) = = 2 ) { \ <nl> fname = " Sleef_ " + std : : string ( name ) + " d2 " ; \ <nl> void LLVMCodeGenImpl : : visit ( const Intrinsics * v ) { <nl> <nl> # define BINARY_MATH_CASE ( enum , name , type ) \ <nl> case enum : { \ <nl> - auto callee = module_ - > getOrInsertFunction ( \ <nl> + FunctionCallee callee = module_ - > getOrInsertFunction ( \ <nl> name , llvm : : FunctionType : : get ( type , { type , type } , false ) , { } ) ; \ <nl> call_ty = callee . getFunctionType ( ) ; \ <nl> call_fn = callee . getCallee ( ) ; \ <nl> mmm a / torch / csrc / jit / tensorexpr / llvm_jit . cpp <nl> ppp b / torch / csrc / jit / tensorexpr / llvm_jit . cpp <nl> <nl> <nl> # include < torch / csrc / jit / tensorexpr / llvm_jit . h > <nl> <nl> + # include < llvm / ExecutionEngine / ExecutionEngine . h > <nl> + # include < llvm / ExecutionEngine / JITSymbol . h > <nl> + # include < llvm / ExecutionEngine / Orc / CompileUtils . h > <nl> + # include < llvm / ExecutionEngine / Orc / ExecutionUtils . h > <nl> + # include < llvm / ExecutionEngine / Orc / IRCompileLayer . h > <nl> # include < llvm / ExecutionEngine / Orc / LLJIT . h > <nl> + # include < llvm / ExecutionEngine / Orc / LambdaResolver . h > <nl> + # include < llvm / ExecutionEngine / Orc / RTDyldObjectLinkingLayer . h > <nl> + # include < llvm / ExecutionEngine / Orc / SymbolStringPool . h > <nl> + # include < llvm / ExecutionEngine / RTDyldMemoryManager . h > <nl> + # include < llvm / ExecutionEngine / SectionMemoryManager . h > <nl> + # include < llvm / IR / DataLayout . h > <nl> + # include < llvm / IR / Mangler . h > <nl> + # include < llvm / Support / DynamicLibrary . h > <nl> + # include < llvm / Support / raw_ostream . h > <nl> + # include < llvm / Target / TargetMachine . h > <nl> + <nl> # include < sleef . h > <nl> # include < algorithm > <nl> # include < memory > <nl> namespace orc { <nl> <nl> / / Lightly modified implementation from LLVM ' s Kaleidoscope JIT tutorial : <nl> / / https : / / llvm . org / docs / tutorial / BuildingAJIT1 . html <nl> + # if LLVM_VERSION_MAJOR = = 9 <nl> class TORCH_API PytorchLLVMJITImpl { <nl> private : <nl> std : : unique_ptr < LLJIT > LLJ ; <nl> class TORCH_API PytorchLLVMJITImpl { <nl> # endif <nl> } <nl> <nl> - Error addModule ( ThreadSafeModule M ) { <nl> - if ( auto Err = LLJ - > addIRModule ( std : : move ( M ) ) ) { <nl> + Error addModule ( std : : unique_ptr < Module > M , std : : unique_ptr < LLVMContext > C ) { <nl> + if ( auto Err = <nl> + LLJ - > addIRModule ( ThreadSafeModule ( std : : move ( M ) , std : : move ( C ) ) ) ) { <nl> return Err ; <nl> } <nl> return Error : : success ( ) ; <nl> PytorchLLVMJIT : : PytorchLLVMJIT ( ) <nl> <nl> PytorchLLVMJIT : : ~ PytorchLLVMJIT ( ) = default ; <nl> <nl> - Error PytorchLLVMJIT : : addModule ( ThreadSafeModule M ) { <nl> - return impl_ - > addModule ( std : : move ( M ) ) ; <nl> + Error PytorchLLVMJIT : : addModule ( <nl> + std : : unique_ptr < Module > M , <nl> + std : : unique_ptr < LLVMContext > C ) { <nl> + return impl_ - > addModule ( std : : move ( M ) , std : : move ( C ) ) ; <nl> + } <nl> + <nl> + JITSymbol PytorchLLVMJIT : : findSymbol ( const std : : string Name ) { <nl> + return impl_ - > findSymbol ( std : : move ( Name ) ) ; <nl> + } <nl> + <nl> + const DataLayout & PytorchLLVMJIT : : getDataLayout ( ) { <nl> + return impl_ - > getDataLayout ( ) ; <nl> + } <nl> + <nl> + # elif LLVM_VERSION_MAJOR = = 8 & & LLVM_VERSION_PATCH = = 20181009 <nl> + <nl> + class TORCH_API PytorchLLVMJITImpl { <nl> + private : <nl> + ExecutionSession ES ; <nl> + std : : shared_ptr < SymbolResolver > Resolver ; <nl> + std : : unique_ptr < TargetMachine > TM ; <nl> + const DataLayout DL ; <nl> + RTDyldObjectLinkingLayer ObjectLayer ; <nl> + IRCompileLayer < decltype ( ObjectLayer ) , SimpleCompiler > CompileLayer ; <nl> + <nl> + public : <nl> + PytorchLLVMJITImpl ( ) <nl> + : Resolver ( createLegacyLookupResolver ( <nl> + ES , <nl> + [ this ] ( const std : : string & Name ) - > JITSymbol { <nl> + if ( auto Sym = CompileLayer . findSymbol ( Name , false ) ) <nl> + return Sym ; <nl> + else if ( auto Err = Sym . takeError ( ) ) <nl> + return std : : move ( Err ) ; <nl> + if ( auto SymAddr = <nl> + RTDyldMemoryManager : : getSymbolAddressInProcess ( Name ) ) <nl> + return JITSymbol ( SymAddr , JITSymbolFlags : : Exported ) ; <nl> + return nullptr ; <nl> + } , <nl> + [ ] ( Error Err ) { cantFail ( std : : move ( Err ) , " lookupFlags failed " ) ; } ) ) , <nl> + TM ( EngineBuilder ( ) . selectTarget ( ) ) , <nl> + DL ( TM - > createDataLayout ( ) ) , <nl> + ObjectLayer ( <nl> + ES , <nl> + [ this ] ( VModuleKey ) { <nl> + return RTDyldObjectLinkingLayer : : Resources { <nl> + std : : make_shared < SectionMemoryManager > ( ) , Resolver } ; <nl> + } ) , <nl> + CompileLayer ( ObjectLayer , SimpleCompiler ( * TM ) ) { <nl> + llvm : : sys : : DynamicLibrary : : LoadLibraryPermanently ( nullptr ) ; <nl> + } <nl> + <nl> + TargetMachine & getTargetMachine ( ) { <nl> + return * TM ; <nl> + } <nl> + <nl> + VModuleKey addModule ( std : : unique_ptr < Module > M ) { <nl> + / / Add the module to the JIT with a new VModuleKey . <nl> + auto K = ES . allocateVModule ( ) ; <nl> + cantFail ( CompileLayer . addModule ( K , std : : move ( M ) ) ) ; <nl> + return K ; <nl> + } <nl> + <nl> + JITSymbol findSymbol ( const std : : string Name ) { <nl> + std : : string MangledName ; <nl> + raw_string_ostream MangledNameStream ( MangledName ) ; <nl> + Mangler : : getNameWithPrefix ( MangledNameStream , Name , DL ) ; <nl> + return CompileLayer . findSymbol ( MangledNameStream . str ( ) , true ) ; <nl> + } <nl> + <nl> + JITTargetAddress getSymbolAddress ( const std : : string Name ) { <nl> + return cantFail ( findSymbol ( Name ) . getAddress ( ) ) ; <nl> + } <nl> + <nl> + void removeModule ( VModuleKey K ) { <nl> + cantFail ( CompileLayer . removeModule ( K ) ) ; <nl> + } <nl> + <nl> + const DataLayout & getDataLayout ( ) { <nl> + return DL ; <nl> + } <nl> + } ; <nl> + <nl> + PytorchLLVMJIT : : PytorchLLVMJIT ( ) <nl> + : impl_ ( std : : make_unique < PytorchLLVMJITImpl > ( ) ) { } <nl> + <nl> + PytorchLLVMJIT : : ~ PytorchLLVMJIT ( ) = default ; <nl> + <nl> + Error PytorchLLVMJIT : : addModule ( <nl> + std : : unique_ptr < Module > M , <nl> + std : : unique_ptr < LLVMContext > C ) { <nl> + impl_ - > addModule ( std : : move ( M ) ) ; <nl> + return Error : : success ( ) ; <nl> } <nl> <nl> JITSymbol PytorchLLVMJIT : : findSymbol ( const std : : string Name ) { <nl> const DataLayout & PytorchLLVMJIT : : getDataLayout ( ) { <nl> return impl_ - > getDataLayout ( ) ; <nl> } <nl> <nl> + # else / / LLVM_VERSION_MAJOR <nl> + # error Only LLVM versions 8 or 9 are supported . <nl> + # endif <nl> + <nl> } / / end namespace orc <nl> } / / end namespace llvm <nl> <nl> mmm a / torch / csrc / jit / tensorexpr / llvm_jit . h <nl> ppp b / torch / csrc / jit / tensorexpr / llvm_jit . h <nl> class TORCH_API PytorchLLVMJIT { <nl> PytorchLLVMJIT ( ) ; <nl> ~ PytorchLLVMJIT ( ) ; <nl> <nl> - Error addModule ( ThreadSafeModule M ) ; <nl> + Error addModule ( std : : unique_ptr < Module > M , std : : unique_ptr < LLVMContext > C ) ; <nl> <nl> JITSymbol findSymbol ( const std : : string Name ) ; <nl> <nl> TargetMachine & getTargetMachine ( ) ; <nl> + <nl> const DataLayout & getDataLayout ( ) ; <nl> <nl> private : <nl>
Revert D24100389 : Revert D24072697 : [ te ] Get llvm codegen to compile with llvm9 and llvm - fb
pytorch/pytorch
24fa2daea68e31e2623072dd186727159db022c9
2020-10-03T22:33:42Z
mmm a / src / yuzu_cmd / config . cpp <nl> ppp b / src / yuzu_cmd / config . cpp <nl> void Config : : ReadValues ( ) { <nl> sdl2_config - > Get ( " Data Storage " , " nand_directory " , <nl> FileUtil : : GetUserPath ( FileUtil : : UserPath : : NANDDir ) ) ) ; <nl> FileUtil : : GetUserPath ( FileUtil : : UserPath : : SDMCDir , <nl> - sdl2_config - > Get ( " Data Storage " , " nand_directory " , <nl> + sdl2_config - > Get ( " Data Storage " , " sdmc_directory " , <nl> FileUtil : : GetUserPath ( FileUtil : : UserPath : : SDMCDir ) ) ) ; <nl> <nl> / / System <nl>
Update config . cpp
yuzu-emu/yuzu
19d9b0778ae3fb8ad0f8094a4b377f5a4d133b5b
2018-09-21T21:16:51Z
mmm a / npm / package . json <nl> ppp b / npm / package . json <nl> <nl> { <nl> " name " : " electron - prebuilt " , <nl> - " version " : " 0 . 33 . 7 " , <nl> + " version " : " 0 . 33 . 8 " , <nl> " description " : " Install electron ( formerly called atom - shell ) prebuilt binaries for command - line use using npm " , <nl> " repository " : { <nl> " type " : " git " , <nl>
Update to Electron v0 . 33 . 8
electron/electron
c3c5c65de3f8a9d7de554753c81a7b8893c94510
2015-10-14T05:23:50Z
mmm a / Documentation / CNTK - TechReport / lyx / CNTKBook_ASRDecoder_Chapter . lyx <nl> ppp b / Documentation / CNTK - TechReport / lyx / CNTKBook_ASRDecoder_Chapter . lyx <nl> To build the TIMIT graph , only three input files are needed : the model state <nl> \ end_layout <nl> <nl> \ begin_layout Standard <nl> - The scripts assume each context - indepenent phone is represented by a three <nl> + The scripts assume each context - independent phone is represented by a three <nl> state , left to right , hidden markov model . <nl> The names of these states should be in a <nl> \ begin_inset Quotes eld <nl> model state map <nl> file that has one line for every model . <nl> The first column is the name of the model , and subsequent columns are the <nl> names of the states , in left to right order . <nl> - The transition probabilites between these states are stored in a separate <nl> + The transition probabilities between these states are stored in a separate <nl> <nl> \ begin_inset Quotes eld <nl> \ end_inset <nl> To decode , the following parameters to Argon should be specified : - graph , <nl> The decoder uses a Viterbi beam search algorithm , in which unlikely hypotheses <nl> are pruned at each frame . <nl> The - beam parameter prevents unlikely hypotheses from being pursued . <nl> - Any hypothesis that differes from the best hypothesis by more than this <nl> + Any hypothesis that differs from the best hypothesis by more than this <nl> amount will be be discarded . <nl> The - max - tokens parameter controls the number of active hypotheses . <nl> If the - beam parameter causes more than max - tokens hypotheses to be generated , <nl> The decoder uses a Viterbi beam search algorithm , in which unlikely hypotheses <nl> \ begin_layout Standard <nl> The - graph parameter tells Argon which compiled decoding graph should be <nl> used . <nl> - The - lm should indicate an ARPA format ngram languag emodel . <nl> + The - lm should indicate an ARPA format ngram language model . <nl> \ end_layout <nl> <nl> \ begin_layout Standard <nl> mmm a / Documentation / CNTK - TechReport / lyx / CNTKBook_CNTK_Adv_Chapter . lyx <nl> ppp b / Documentation / CNTK - TechReport / lyx / CNTKBook_CNTK_Adv_Chapter . lyx <nl> After defining the network , it ’ s important to let CNTK know what the special <nl> It also needs to know the default output nodes , evaluation nodes and training <nl> criteria nodes . <nl> Note here the specification of the nodes that require special handling <nl> - ( NodesReqMultiSeqHandling ) when the network is evalauted or trained with <nl> + ( NodesReqMultiSeqHandling ) when the network is evaluated or trained with <nl> multiple sequences , e . g . , when the network itself is an RNN or the model <nl> is trained with the sequence - level criterion . <nl> Since in these cases multiple sequences will be stitched together to improve <nl> RowStack <nl> \ end_layout <nl> <nl> \ begin_layout Standard <nl> - Concatnate rows of input matrices to form a bigger matrix . <nl> + Concatenate rows of input matrices to form a bigger matrix . <nl> The resulting matrix is a sumof ( rows ) by m1 . cols matrix . <nl> It supports variable - length input . <nl> The syntax is <nl> labels - the ground truth labels . <nl> The first row is the ground truth output id . <nl> The second row is the ground truth class id . <nl> The third and fourth rows are the start ( inclusive ) and end ( exclusive ) <nl> - output ids corresponding to the ground trueth class id . <nl> + output ids corresponding to the ground truth class id . <nl> \ end_layout <nl> <nl> \ begin_layout Itemize <nl> - mainInputInfo - contains the main information to make the classfication <nl> + mainInputInfo - contains the main information to make the classification <nl> decision . <nl> It ' s an inputDim by T matrix . <nl> In language model , inputDim is often the hidden layer size . <nl> To integrate this new layer into the model , the inputs and outputs of the <nl> After the copy any node whose connected nodes were not copied will have <nl> those connections set to an invalid value . <nl> These need to be fixed in order to have a valid model . <nl> - Before a model can be saved CNTK first checkes to see if all nodes are <nl> + Before a model can be saved CNTK first checks to see if all nodes are <nl> correctly connected . <nl> \ end_layout <nl> <nl> mmm a / Documentation / CNTK - TechReport / lyx / CNTKBook_CNTK_Chapter . lyx <nl> ppp b / Documentation / CNTK - TechReport / lyx / CNTKBook_CNTK_Chapter . lyx <nl> CLASSLSTM <nl> <nl> : the class - based long short - term memory neural network . <nl> It uses sparse input , sparse parameter and sparse output . <nl> - This is often uesd for language modeling tasks . <nl> + This is often used for language modeling tasks . <nl> \ end_layout <nl> <nl> \ end_deeper <nl> numMiniBatch4LRSearch <nl> <nl> \ end_inset <nl> <nl> - : the number of minibatches used to search the minibatch size whenin adaptive <nl> + : the number of minibatches used to search the minibatch size when in adaptive <nl> minibatch size mode . <nl> Default value is 500 . <nl> - It ' s typically set to 10 - 20 % of the total minibatches in an epochthis is <nl> + It ' s typically set to 10 - 20 % of the total minibatches in an epoch this is <nl> shared with the search for learning rate in SearchBeforeEpoch mode . <nl> <nl> \ end_layout <nl> autoAdjustMinibatch <nl> \ end_inset <nl> <nl> : enable or disable whether minibatch size is adaptively adjusted . <nl> - Default value is false . Adapative minibatch sizing will begin on epochs starting <nl> - after user minbatch sizes expcitilyspecified are complete . <nl> + Default value is false . Adaptive minibatch sizing will begin on epochs starting <nl> + after user minibatch sizes expcitilyspecified are complete . <nl> For example if the userspecifed minibatchSize = 256 : 1024 , then 256 and 1024are <nl> - used in the first 2 Epochs and adaptive minibatchsizing is used aferwards <nl> + used in the first 2 Epochs and adaptive minibatchsizing is used afterwards <nl> <nl> \ end_layout <nl> <nl> minibatchSizeTuningFrequency <nl> <nl> \ end_inset <nl> <nl> - : The number of epochs to skip , on a periodic basis , beforedynamically adjusting <nl> + : The number of epochs to skip , on a periodic basis , before dynamically adjusting <nl> the minibatch size . <nl> Default value is 1 . <nl> <nl> minibatchSizeTuningMax <nl> <nl> \ end_inset <nl> <nl> - : The maximum size allowed for anadaptively adjusted minibatch size . <nl> + : The maximum size allowed for an adaptively adjusted minibatch size . <nl> Default value is 1048576 . <nl> <nl> \ end_layout <nl> rollingWindow <nl> <nl> option reads in all feature files and stores them on disk in one large <nl> temporary binary file . <nl> - The data is randomized by running a large rollowing window over the data <nl> + The data is randomized by running a large rolling window over the data <nl> in this file and randomizing the data within the window . <nl> This method produces more thorough randomization of the data but requires <nl> - a large temprorary file written to disk . <nl> + a large temporary file written to disk . <nl> The other option is <nl> \ begin_inset Quotes eld <nl> \ end_inset <nl> labels <nl> \ end_inset <nl> <nl> are the default names used by the SimpleNetworkBuilder but if the network <nl> - is designed using the Network Descrition Language ( NDL ) , then any names <nl> + is designed using the Network Description Language ( NDL ) , then any names <nl> can be used , as long as they each have a corresponding node in the network . <nl> \ end_layout <nl> <nl> \ begin_layout Standard <nl> To specify continuous - valued features , e . g . <nl> MFCC ' s or log mel filterbank coefficients , the following parameters should <nl> - be included in the a confguration block : <nl> + be included in the a configuration block : <nl> \ end_layout <nl> <nl> \ begin_layout Itemize <nl> nbruttsineachrecurrentiter <nl> The reader arranges same - length input sentences , up to the specified limit , <nl> into each minibatch . <nl> For recurrent networks , trainer resets hidden layer activities only at <nl> - the begining of sentences . <nl> + the beginning of sentences . <nl> Activities of hidden layers are carried over to the next minibatch if an <nl> end of sentence is not reached . <nl> Using multiple sentences in a minibatch can speed up training processes . <nl> wordclass <nl> This is used for class - based language modeling . <nl> An example of the class information is below . <nl> The first column is the word index . <nl> - The second column is the number of occurances , the third column is the <nl> + The second column is the number of occurrences , the third column is the <nl> word , and the last column is the class id of the word . <nl> <nl> \ begin_inset listings <nl> nbrUttsInEachRecurrentIter <nl> The reader arranges same - length input sentences , up to the specified limit , <nl> into each minibatch . <nl> For recurrent networks , trainer resets hidden layer activities only at <nl> - the begining of sentences . <nl> + the beginning of sentences . <nl> Activities of hidden layers are carried over to the next minibatch if an <nl> end of sentence is not reached . <nl> Using multiple sentences in a minibatch can speed up training processes . <nl> section <nl> \ end_inset <nl> <nl> – the encoderReader and decoderReader are the readers for encoder and decoder . <nl> - Similary for encoderCVReader and decoderCVReader for validation set . <nl> + Similarly for encoderCVReader and decoderCVReader for validation set . <nl> <nl> \ end_layout <nl> <nl> deviceId <nl> <nl> \ begin_layout Standard <nl> CNTK supports CPU and GPU computation . <nl> - Users can determine what device to use by setting the deviceId papameter . <nl> + Users can determine what device to use by setting the deviceId parameter . <nl> The possible values are <nl> \ end_layout <nl> <nl> traceLevel = 0 # larger values mean more output <nl> <nl> The default value is 0 and specifies minimal output . <nl> The higher the number the more output can be expected . <nl> - Currently 0 ( limited output ) , 1 ( medium ouput ) and 2 ( verbose output ) are <nl> + Currently 0 ( limited output ) , 1 ( medium output ) and 2 ( verbose output ) are <nl> the only values supported . <nl> \ end_layout <nl> <nl> mmm a / Documentation / CNTK - TechReport / lyx / CNTKBook_CNTK_Programmer_Chapter . lyx <nl> ppp b / Documentation / CNTK - TechReport / lyx / CNTKBook_CNTK_Programmer_Chapter . lyx <nl> s ( ) . GetNumCols ( ) ! = 1 ) <nl> <nl> \ begin_layout Plain Layout <nl> <nl> - throw std : : logic_error ( " The left value of ScaleNode must be a scarlar <nl> + throw std : : logic_error ( " The left value of ScaleNode must be a scalar <nl> value . " ) ; <nl> \ end_layout <nl> <nl> mmm a / Documentation / CNTK - TechReport / lyx / CNTKBook_CN_Chapter . lyx <nl> ppp b / Documentation / CNTK - TechReport / lyx / CNTKBook_CN_Chapter . lyx <nl> sly . <nl> In this algorithm , all the nodes whose children have not been computed <nl> are in the waiting set and those whose children are computed are in the <nl> ready set . <nl> - At the beginning , all non - leaf descendents of <nl> + At the beginning , all non - leaf descendants of <nl> \ begin_inset Formula $ root $ <nl> \ end_inset <nl> <nl> - are in the waiting set and all leaf descendents are in the ready set . <nl> + are in the waiting set and all leaf descendants are in the ready set . <nl> The scheduler picks a node from the ready set based on some policy , removes <nl> it from the ready set , and dispatches it for computation . <nl> Popular policies include first - come / first - serve , shortest task first , and <nl> status open <nl> \ begin_inset Formula $ waiting $ <nl> \ end_inset <nl> <nl> - is initialized to include all non - leaf descendents of <nl> + is initialized to include all non - leaf descendants of <nl> \ begin_inset Formula $ root $ <nl> \ end_inset <nl> <nl> status open <nl> \ begin_inset Formula $ ready $ <nl> \ end_inset <nl> <nl> - is initialized to include all leaf descendents of <nl> + is initialized to include all leaf descendants of <nl> \ begin_inset Formula $ root $ <nl> \ end_inset <nl> <nl> status open <nl> <nl> \ end_inset <nl> <nl> - Decide the order to compute the gradient at all descendents of <nl> + Decide the order to compute the gradient at all descendants of <nl> \ begin_inset Formula $ node $ <nl> \ end_inset <nl> <nl> CRF <nl> \ color none <nl> CRF stands for conditional random fields . <nl> This node does sequence - level training , using CRF criterion . <nl> - This node has three nputs . <nl> + This node has three inputs . <nl> The first is the label <nl> \ family default <nl> \ series bold <nl> reference " fig : CN - WithDelayNode " <nl> A simple way to do forward computation and backpropagation in a recurrent <nl> network is to unroll all samples in the sequence over time . <nl> Once unrolled , the graph is expanded into a DAG and the forward computation <nl> - and gradient calcalclation algorithms we just discussed can be directly <nl> + and gradient calculation algorithms we just discussed can be directly <nl> used . <nl> This means , however , all computation nodes in the CN need to be computed <nl> sample by sample and this significantly reduces the potential of parallelizatio <nl> key " StronglyConnectedComponents - Hopcroft + 1983 " <nl> in the CN and the CN is reduced to a DAG . <nl> All the nodes inside each loop ( or composite node ) can be unrolled over <nl> time and also reduced to a DAG . <nl> - For all these DAGs the forward computation and backprogation algorithms <nl> + For all these DAGs the forward computation and backpropagation algorithms <nl> we discussed in the previous sections can be applied . <nl> The detailed procedure in determining the forward computation order in <nl> the CN with arbitrary recurrent connections is described in Algorithm <nl> mmm a / Documentation / CNTK - TechReport / lyx / CNTKBook_ExampleSetup_Chapter . lyx <nl> ppp b / Documentation / CNTK - TechReport / lyx / CNTKBook_ExampleSetup_Chapter . lyx <nl> ns . <nl> All examples are based on the TIMIT corpus for phonetic recognition but <nl> can easily be modified for use for large vocabulary continuous speech recogniti <nl> on . <nl> - The only significant change is that context - indepenent phonetic states <nl> + The only significant change is that context - independent phonetic states <nl> used in the TIMIT example would be replaced by context - dependent senone <nl> targets for large vocabulary tasks . <nl> We note that these examples are not meant to be representative of state <nl> SimpleNetworkBuilder <nl> will also be monitored during training using the evalCriterion parameter . <nl> The input data will be mean and variance normalized since applyMeanVarNorm <nl> has been set to true . <nl> - In addtion , if needPrior is set to true , the prior probablities of the <nl> + In addition , if needPrior is set to true , the prior probabilities of the <nl> labels will be computed and a ScaledLogLikelihood node in the network will <nl> be automatically created . <nl> - This is important if this netwok will be used to generate acoustic scores <nl> + This is important if this network will be used to generate acoustic scores <nl> in a speech recognition decoder . <nl> <nl> \ end_layout <nl> SquareError <nl> Below is a snippet from the NDL file for this example . <nl> This autoencoder has three hidden layers including a middle bottleneck <nl> layer of 64 neurons . <nl> - A macro is defined to peform mean and variance normalization and it is <nl> + A macro is defined to perform mean and variance normalization and it is <nl> applied to both the input and target features . <nl> Also , <nl> \ end_layout <nl> discriminative pre - training <nl> \ begin_layout Standard <nl> It is well known that deep networks can be difficult to optimize , especially <nl> when a limited amount of training data is available . <nl> - As a result , a number of aproaches to initializing the parameters of these <nl> + As a result , a number of approaches to initializing the parameters of these <nl> networks have been proposed . <nl> One of these methods is known as discriminative pre - training . <nl> In this approach , a network with a single hidden layer is trained starting <nl> multi - task learning <nl> <nl> \ begin_layout Standard <nl> One interesting approach to network training is multi - task learning , where <nl> - the network is trained to optmize two objective functions simultaneously . <nl> + the network is trained to optimize two objective functions simultaneously . <nl> This can be done in CNTK through the appropriate use of NDL . <nl> Let ' s assume that we have a network specified in NDL that has three hidden <nl> layers and output of the third hidden layer is defined as L3 . <nl> TIMIT . statelist " <nl> \ begin_layout Standard <nl> The NDL for constructing a network with these inputs and outputs can be <nl> done in a number of ways . <nl> - One way is to contruct a macro that constructs a layer that takes two inputs , <nl> + One way is to construct a macro that constructs a layer that takes two inputs , <nl> as follows : <nl> \ end_layout <nl> <nl> L1 = SBFF2 ( featInput1 , HiddenDim , FeatDim1 , featInput2 , FeatDim2 ) <nl> <nl> The rest of the hidden layers and the output layer with a cross entropy <nl> objective function would be the same as previous examples . <nl> - Notice that the names and dimensionality of the input adn output data have <nl> + Notice that the names and dimensionality of the input and output data have <nl> to the same in both the NDL model description and the reader configuration . <nl> <nl> \ end_layout <nl> layerSizes <nl> \ end_inset <nl> <nl> = 10000 : 200 : 10000 . <nl> - Sizes of input , hidden and ouput layers . <nl> + Sizes of input , hidden and output layers . <nl> Input layer size is equal to vocabulary size , hidden layer is normally <nl> in the range of 50 to 500 , output layer size is the vocabulary size . <nl> \ end_layout <nl> uniformInit <nl> \ end_inset <nl> <nl> = true . <nl> - Whether to use uniformly randomizied values for initial paramter weights . <nl> + Whether to use uniformly randomized values for initial parameter weights . <nl> \ end_layout <nl> <nl> \ begin_layout Itemize <nl> learnRateDecreaseFactor <nl> \ end_inset <nl> <nl> = 0 . 5 . <nl> - Learning rate decrese factor . <nl> + Learning rate decrease factor . <nl> \ end_layout <nl> <nl> \ end_deeper <nl> t word_class <nl> \ end_layout <nl> <nl> \ begin_layout Standard <nl> - word_id is a unique non - negative interger , frequency is the frequency of <nl> + word_id is a unique non - negative integer , frequency is the frequency of <nl> word ( optional ) , word_string is the word string ( low frequent words may <nl> be mapped to < unk > ) , and word_class is the class id of word . <nl> Word class can be derived using frequency based heuristics <nl> wordContext <nl> \ end_inset <nl> <nl> = 0 : 1 : 2 : this specifies the time indices for forming a context window . <nl> - In this example , this setup coresponds to using the current input , the <nl> + In this example , this setup corresponds to using the current input , the <nl> next input , and the input after the next input for a context window of <nl> size 3 . <nl> User can also use other cases such as wordcontext = 0 : - 1 : 1 to form a context <nl> BOS <nl> \ begin_inset Quotes erd <nl> \ end_inset <nl> <nl> - : this specifies the symbol of sequence begining . <nl> + : this specifies the symbol of sequence beginning . <nl> \ end_layout <nl> <nl> \ begin_layout Itemize <nl> outputs : labels <nl> \ end_inset <nl> <nl> : this specifies which nodes to output results . <nl> - These node names are pre - spefied in CNTK ' s simple network builder . <nl> + These node names are pre - specified in CNTK ' s simple network builder . <nl> The node <nl> \ begin_inset Quotes eld <nl> \ end_inset <nl> outputs <nl> \ begin_inset Quotes erd <nl> \ end_inset <nl> <nl> - is the node that output activies before softmax . <nl> + is the node that output activates before softmax . <nl> The node <nl> \ begin_inset Quotes eld <nl> \ end_inset <nl> output . rec . txt <nl> \ begin_inset Quotes erd <nl> \ end_inset <nl> <nl> - : the file name for writting decode results from LUSequenceWriter . <nl> + : the file name for writing decode results from LUSequenceWriter . <nl> <nl> \ end_layout <nl> <nl>
spellcheck CNTK - TechReport
microsoft/CNTK
b0c3c131d68d322bf667d223b18f99092f3bbb5a
2016-01-25T23:08:35Z
mmm a / tensorflow / core / kernels / depthwise_conv_op_gpu . cu . cc <nl> ppp b / tensorflow / core / kernels / depthwise_conv_op_gpu . cu . cc <nl> void LaunchDepthwiseConv2dGPUSmall ( const GpuDevice & device , <nl> kKnownFilterHeight , kBlockDepth , <nl> kKnownEvenHeight > ; <nl> break ; <nl> - case FORMAT_NCHW_VECT_C : <nl> - LOG ( ERROR ) < < " FORMAT_NCHW_VECT_C is not supported " ; <nl> + default : <nl> + LOG ( ERROR ) < < " FORMAT_ " < < ToString ( data_format ) < < " is not supported " ; <nl> return ; <nl> } <nl> const int tile_width = args . in_cols + args . filter_cols - 1 ; <nl> void LaunchDepthwiseConv2dGPU ( const GpuDevice & device , <nl> DepthwiseConv2dGPUKernelNCHW < T , kKnownFilterWidth , kKnownFilterHeight , <nl> kKnownDepthMultiplier > ; <nl> break ; <nl> - case FORMAT_NCHW_VECT_C : <nl> - LOG ( ERROR ) < < " FORMAT_NCHW_VECT_C is not supported " ; <nl> + default : <nl> + LOG ( ERROR ) < < " FORMAT_ " < < ToString ( data_format ) < < " is not supported " ; <nl> return ; <nl> } <nl> const int num_outputs = <nl> void LaunchDepthwiseConv2dBackpropInputGPU ( const GpuDevice & device , <nl> kernel = DepthwiseConv2dBackpropInputGPUKernelNCHW < <nl> T , kKnownFilterWidth , kKnownFilterHeight , kKnownDepthMultiplier > ; <nl> break ; <nl> - case FORMAT_NCHW_VECT_C : <nl> - LOG ( ERROR ) < < " FORMAT_NCHW_VECT_C is not supported " ; <nl> + default : <nl> + LOG ( ERROR ) < < " FORMAT_ " < < ToString ( data_format ) < < " is not supported " ; <nl> return ; <nl> } <nl> const int num_in_backprop = <nl> bool TryLaunchDepthwiseConv2dBackpropFilterGPUSmall ( <nl> kernel = DepthwiseConv2dBackpropFilterGPUKernelNCHWSmall < <nl> T , kKnownFilterWidth , kKnownFilterHeight , kBlockDepth , kAccumPixels > ; <nl> break ; <nl> - case FORMAT_NCHW_VECT_C : <nl> - LOG ( ERROR ) < < " FORMAT_NCHW_VECT_C is not supported " ; <nl> + default : <nl> + LOG ( ERROR ) < < " FORMAT_ " < < ToString ( data_format ) < < " is not supported " ; <nl> return false ; <nl> } <nl> const int num_out_backprop = args . out_rows * args . out_cols * block_count ; <nl> void LaunchDepthwiseConv2dBackpropFilterGPU ( const GpuDevice & device , <nl> kernel = DepthwiseConv2dBackpropFilterGPUKernelNCHW < <nl> T , kKnownFilterWidth , kKnownFilterHeight , kKnownDepthMultiplier > ; <nl> break ; <nl> - case FORMAT_NCHW_VECT_C : <nl> - LOG ( ERROR ) < < " FORMAT_NCHW_VECT_C is not supported " ; <nl> + default : <nl> + LOG ( ERROR ) < < " FORMAT_ " < < ToString ( data_format ) < < " is not supported " ; <nl> return ; <nl> } <nl> const int num_out_backprop = <nl> mmm a / tensorflow / core / util / tensor_format . cc <nl> ppp b / tensorflow / core / util / tensor_format . cc <nl> string ToString ( TensorFormat format ) { <nl> return " NCHW " ; <nl> case FORMAT_NCHW_VECT_C : <nl> return " NCHW_VECT_C " ; <nl> + case FORMAT_NHWC_VECT_W : <nl> + return " NHWC_VECT_W " ; <nl> default : <nl> LOG ( FATAL ) < < " Invalid Format : " < < static_cast < int32 > ( format ) ; <nl> return " INVALID_FORMAT " ; <nl> bool FormatFromString ( const string & format_str , TensorFormat * format ) { <nl> * format = FORMAT_NCHW_VECT_C ; <nl> return true ; <nl> } <nl> + if ( format_str = = " NHWC_VECT_W " ) { <nl> + * format = FORMAT_NHWC_VECT_W ; <nl> + return true ; <nl> + } <nl> return false ; <nl> } <nl> <nl> mmm a / tensorflow / core / util / tensor_format . h <nl> ppp b / tensorflow / core / util / tensor_format . h <nl> See the License for the specific language governing permissions and <nl> limitations under the License . <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> <nl> - # ifndef TENSORFLOW_UTIL_TENSOR_FORMAT_H_ <nl> - # define TENSORFLOW_UTIL_TENSOR_FORMAT_H_ <nl> + # ifndef TENSORFLOW_CORE_UTIL_TENSOR_FORMAT_H_ <nl> + # define TENSORFLOW_CORE_UTIL_TENSOR_FORMAT_H_ <nl> <nl> # include < array > <nl> # include < vector > <nl> namespace tensorflow { <nl> / / The mnemonics specify the meaning of each tensor dimension sorted from <nl> / / largest to smallest memory stride . <nl> / / N = Batch , H = Image Height , W = Image Width , C = Number of Channels . <nl> + / / TODO ( pauldonnelly ) : It would probably be better to switch to a registration <nl> + / / process for tensor formats , so specialized formats could be defined more <nl> + / / locally to where they are used . <nl> enum TensorFormat { <nl> / / FORMAT_NHWC is the default format in TensorFlow . <nl> FORMAT_NHWC = 0 , <nl> enum TensorFormat { <nl> / / NCHW_VECT_C format . <nl> / / A pre - condition of this format is that C must be a multiple of 4 . <nl> FORMAT_NCHW_VECT_C = 2 , <nl> + <nl> + / / Similar to NHWC , but the size of the W dimension is divided by 4 , and a <nl> + / / new dimension of size 4 is appended , which packs 4 adjacent activations <nl> + / / in the width dimension . <nl> + FORMAT_NHWC_VECT_W = 3 , <nl> + <nl> + / / Note : although the current code in this file assumes VECT_C and VECT_W <nl> + / / enums imply int8x4 vectors , this should not be relied upon . <nl> + / / In the future we may change the meaning of these enums to include vectors <nl> + / / of other types such as int16x2 , with op implementations automatically <nl> + / / determining which format is implied based on the datatype . <nl> } ; <nl> <nl> / / Tensor format for convolutional filters . <nl> string ToString ( FilterTensorFormat format ) ; <nl> / / Returns the number of spatial dims of a tensor of rank ' num_dims ' and tensor <nl> / / format ' format ' . <nl> inline int GetTensorSpatialDims ( int num_dims , TensorFormat format ) { <nl> - if ( format = = FORMAT_NCHW_VECT_C ) { <nl> - return num_dims - 3 ; / / Exclude N , C , InnerC . <nl> - } else { <nl> - return num_dims - 2 ; / / Exclude N , C . <nl> + switch ( format ) { <nl> + case FORMAT_NHWC : <nl> + return num_dims - 2 ; / / Exclude N , C . <nl> + case FORMAT_NCHW : <nl> + return num_dims - 2 ; / / Exclude N , C . <nl> + case FORMAT_NCHW_VECT_C : <nl> + return num_dims - 3 ; / / Exclude N , C , VectDim . <nl> + case FORMAT_NHWC_VECT_W : <nl> + / / Note : the VECT_W is not counted as an independent spatial dim here , <nl> + / / since it just a component of the width dimension . <nl> + return num_dims - 3 ; / / Exclude N , C , VectDim . <nl> } <nl> } <nl> <nl> inline int GetFilterTensorSpatialDims ( int num_dims , FilterTensorFormat format ) { <nl> / / tensor format ' format ' . This is the inverse of GetTensorSpatialDims . <nl> inline int GetTensorDimsFromSpatialDims ( int num_spatial_dims , <nl> TensorFormat format ) { <nl> - if ( format = = FORMAT_NCHW_VECT_C ) { <nl> - return num_spatial_dims + 3 ; / / Include N , C , InnerC . <nl> - } else { <nl> - return num_spatial_dims + 2 ; / / Include N , C . <nl> + switch ( format ) { <nl> + case FORMAT_NHWC : <nl> + case FORMAT_NCHW : <nl> + return num_spatial_dims + 2 ; / / Include N , C . <nl> + case FORMAT_NCHW_VECT_C : <nl> + case FORMAT_NHWC_VECT_W : <nl> + return num_spatial_dims + 3 ; / / Include N , C , VectDim . <nl> } <nl> } <nl> <nl> inline int GetTensorBatchDimIndex ( int num_dims , TensorFormat format ) { <nl> case FORMAT_NHWC : <nl> case FORMAT_NCHW : <nl> case FORMAT_NCHW_VECT_C : <nl> + case FORMAT_NHWC_VECT_W : <nl> return 0 ; <nl> default : <nl> LOG ( FATAL ) < < " Unknown format " < < format ; <nl> inline int GetTensorFeatureDimIndex ( int num_dims , TensorFormat format ) { <nl> switch ( format ) { <nl> case FORMAT_NHWC : <nl> return num_dims - 1 ; <nl> + case FORMAT_NHWC_VECT_W : <nl> + return num_dims - 2 ; <nl> case FORMAT_NCHW : <nl> case FORMAT_NCHW_VECT_C : <nl> return 1 ; <nl> inline int GetTensorInnerFeatureDimIndex ( int num_dims , TensorFormat format ) { <nl> return num_dims - 1 ; <nl> } <nl> <nl> - / / Returns the index of the ` dim ` - th spatial dimension . <nl> + / / Returns the index of the inner width dimension . <nl> + inline int GetTensorInnerWidthDimIndex ( int num_dims , TensorFormat format ) { <nl> + DCHECK_EQ ( format , FORMAT_NHWC_VECT_W ) ; <nl> + return num_dims - 1 ; <nl> + } <nl> + <nl> + / / Returns the dimension index of the specified ' spatial_dim ' within an <nl> + / / activation tensor . If format is NHWC_VECT_W and spatial_dim is 1 , returns <nl> + / / the index of the outer width dimension ( i . e . dimension 2 , whose size would <nl> + / / be width / 4 in this case ) . <nl> inline int GetTensorSpatialDimIndex ( int num_dims , TensorFormat format , <nl> - int dim ) { <nl> - CHECK ( dim > = 0 & & dim < GetTensorSpatialDims ( num_dims , format ) ) <nl> - < < dim < < " " < < num_dims < < " " < < ToString ( format ) ; <nl> + int spatial_dim ) { <nl> + CHECK ( spatial_dim > = 0 & & <nl> + spatial_dim < GetTensorSpatialDims ( num_dims , format ) ) <nl> + < < spatial_dim < < " " < < num_dims < < " " < < ToString ( format ) ; <nl> switch ( format ) { <nl> case FORMAT_NHWC : <nl> - return dim + 1 ; <nl> + case FORMAT_NHWC_VECT_W : <nl> + return spatial_dim + 1 ; <nl> case FORMAT_NCHW : <nl> case FORMAT_NCHW_VECT_C : <nl> - return dim + 2 ; <nl> + return spatial_dim + 2 ; <nl> default : <nl> LOG ( FATAL ) < < " Unknown format " < < format ; <nl> return - 1 ; / / Avoid compiler warning about missing return value <nl> } <nl> } <nl> <nl> - / / Returns the index of the ` dim ` - th spatial dimension . <nl> inline int GetFilterTensorSpatialDimIndex ( int num_dims , <nl> FilterTensorFormat format , int dim ) { <nl> CHECK ( dim > = 0 & & dim < GetFilterTensorSpatialDims ( num_dims , format ) ) <nl> inline int GetFilterTensorOutputChannelsDimIndex ( int num_dims , <nl> / / the outer channel dimension ( i . e . 1 ) . <nl> template < int NUM_SPATIAL_DIMS > <nl> inline int32 GetTensorDimIndex ( TensorFormat format , char dimension ) { <nl> - if ( format = = FORMAT_NHWC ) { <nl> + if ( format = = FORMAT_NHWC | | format = = FORMAT_NHWC_VECT_W ) { <nl> / / clang - format off <nl> switch ( dimension ) { <nl> case ' N ' : return 0 ; <nl> string GetConvnet3dDataFormatAttrString ( ) ; <nl> string GetConvnetFilterFormatAttrString ( ) ; <nl> string GetConvnet3dFilterFormatAttrString ( ) ; <nl> <nl> - / / Return a tensor shape for the given format . Works for both 2D and 3D <nl> - / / operations . If format is FORMAT_NCHW_VECT_C , the output TensorShape has rank <nl> - / / spatial . size ( ) + 3 ( N , C , spatial , InnerC ) ; otherwise , it has rank <nl> - / / spatial . size ( ) + 2 ( e . g . N , C , spatial or N , spatial , C ) . <nl> + / / Returns a tensor shape for the specified format and dimension sizes . <nl> + / / Works for both 2D and 3D operations . The output shapes are as follows : <nl> + / / FORMAT_NHWC : ( N , spatial , C ) ; rank = spatial . size ( ) + 2 <nl> + / / FORMAT_NCHW : ( N , C , spatial ) ; rank = spatial . size ( ) + 2 <nl> + / / FORMAT_NCHW_VECT_C : ( N , C , spatial , InnerC ) ; rank = spatial . size ( ) + 3 <nl> + / / FORMAT_NHWC_VECT_W : ( N , spatial , C , InnerW ) ; rank = spatial . size ( ) + 3 <nl> inline TensorShape ShapeFromFormat ( TensorFormat format , int64 N , <nl> gtl : : ArraySlice < int64 > spatial , int64 C ) { <nl> const int dims = GetTensorDimsFromSpatialDims ( spatial . size ( ) , format ) ; <nl> gtl : : InlinedVector < int64 , 6 > dim_sizes ( dims ) ; <nl> dim_sizes [ GetTensorBatchDimIndex ( dims , format ) ] = N ; <nl> for ( int dim = 0 ; static_cast < size_t > ( dim ) < spatial . size ( ) ; dim + + ) { <nl> - dim_sizes [ GetTensorSpatialDimIndex ( dims , format , dim ) ] = spatial [ dim ] ; <nl> + auto dim_size = spatial [ dim ] ; <nl> + if ( format = = FORMAT_NHWC_VECT_W & & dim = = spatial . size ( ) - 1 ) { <nl> + CHECK_EQ ( 0 , dim_size % 4 ) <nl> + < < " FORMAT_NHWC_VECT_W requires W to be a multiple of 4 , but W = " <nl> + < < dim_size ; <nl> + dim_sizes [ GetTensorInnerWidthDimIndex ( dims , format ) ] = 4 ; <nl> + dim_size / = 4 ; <nl> + } <nl> + dim_sizes [ GetTensorSpatialDimIndex ( dims , format , dim ) ] = dim_size ; <nl> } <nl> <nl> int feature_index = GetTensorFeatureDimIndex ( dims , format ) ; <nl> if ( format = = FORMAT_NCHW_VECT_C ) { <nl> CHECK_EQ ( 0 , C % 4 ) < < " NCHW_VECT_C requires C to be a multiple of 4 , but C = " <nl> < < C ; <nl> - dim_sizes [ feature_index ] = C / 4 ; <nl> + C / = 4 ; <nl> dim_sizes [ GetTensorInnerFeatureDimIndex ( dims , format ) ] = 4 ; <nl> - } else { <nl> - dim_sizes [ feature_index ] = C ; <nl> } <nl> + dim_sizes [ feature_index ] = C ; <nl> return TensorShape ( dim_sizes ) ; <nl> } <nl> <nl> inline TensorShape ShapeFromFormat ( TensorFormat dst_format , <nl> const int64 batch = GetTensorDim ( src_shape , src_format , ' N ' ) ; <nl> const int64 channels = GetTensorDim ( src_shape , src_format , ' C ' ) * <nl> ( src_format = = FORMAT_NCHW_VECT_C ? 4 : 1 ) ; <nl> - <nl> - if ( GetTensorSpatialDims ( src_shape . dims ( ) , src_format ) = = 3 ) { <nl> - return ShapeFromFormat ( dst_format , batch , <nl> - { { GetTensorDim ( src_shape , src_format , ' 0 ' ) , <nl> - GetTensorDim ( src_shape , src_format , ' 1 ' ) , <nl> - GetTensorDim ( src_shape , src_format , ' 2 ' ) } } , <nl> - channels ) ; <nl> + const int num_src_spatial_dims = <nl> + GetTensorSpatialDims ( src_shape . dims ( ) , src_format ) ; <nl> + std : : vector < int64 > spatial_dims ( num_src_spatial_dims ) ; <nl> + for ( int spatial_dim = 0 ; spatial_dim < num_src_spatial_dims ; + + spatial_dim ) { <nl> + spatial_dims [ spatial_dim ] = <nl> + gtl : : ArraySlice < int64 > ( src_shape . dim_sizes ( ) ) [ GetTensorSpatialDimIndex ( <nl> + src_shape . dims ( ) , src_format , spatial_dim ) ] ; <nl> } <nl> - <nl> - return ShapeFromFormat ( dst_format , batch , <nl> - { { GetTensorDim ( src_shape , src_format , ' H ' ) , <nl> - GetTensorDim ( src_shape , src_format , ' W ' ) } } , <nl> - channels ) ; <nl> + if ( src_format = = FORMAT_NHWC_VECT_W ) { <nl> + spatial_dims [ num_src_spatial_dims - 1 ] * = 4 ; <nl> + } <nl> + return ShapeFromFormat ( dst_format , batch , { spatial_dims } , channels ) ; <nl> } <nl> <nl> / / Returns a copy of the specified filter tensor ' src_shape ' converted from <nl> inline TensorShape ShapeFromFilterFormat ( FilterTensorFormat dst_filter_format , <nl> <nl> } / / namespace tensorflow <nl> <nl> - # endif / / TENSORFLOW_UTIL_TENSOR_FORMAT_H_ <nl> + # endif / / TENSORFLOW_CORE_UTIL_TENSOR_FORMAT_H_ <nl> mmm a / tensorflow / core / util / tensor_format_test . cc <nl> ppp b / tensorflow / core / util / tensor_format_test . cc <nl> std : : pair < TensorFormat , const char * > test_data_formats [ ] = { <nl> EnumStringPair ( FORMAT_NHWC ) , <nl> EnumStringPair ( FORMAT_NCHW ) , <nl> EnumStringPair ( FORMAT_NCHW_VECT_C ) , <nl> + EnumStringPair ( FORMAT_NHWC_VECT_W ) , <nl> } ; <nl> <nl> std : : pair < FilterTensorFormat , const char * > test_filter_formats [ ] = { <nl> struct DimMaps { <nl> inline constexpr const TensorDimMap & <nl> GetTensorDimMap ( const int num_spatial_dims , const TensorFormat format ) { <nl> return <nl> - ( format = = FORMAT_NHWC ) ? DimMaps : : kTdmNHWC [ num_spatial_dims ] : <nl> + ( format = = FORMAT_NHWC | | <nl> + format = = FORMAT_NHWC_VECT_W ) ? DimMaps : : kTdmNHWC [ num_spatial_dims ] : <nl> ( format = = FORMAT_NCHW | | <nl> format = = FORMAT_NCHW_VECT_C ) ? DimMaps : : kTdmNCHW [ num_spatial_dims ] <nl> : DimMaps : : kTdmInvalid ; <nl>
Add NCHW_VECT_W tensor format .
tensorflow/tensorflow
1130e5be68e4cc2f83ba6f883e4e3b89d0551bf0
2018-05-18T00:04:16Z
mmm a / db / clientcursor . h <nl> ppp b / db / clientcursor . h <nl> <nl> # include " . . / util / message . h " <nl> # include " storage . h " <nl> # include " dbhelpers . h " <nl> + # include " matcher . h " <nl> <nl> namespace mongo { <nl> <nl> mmm a / db / matcher . cpp <nl> ppp b / db / matcher . cpp <nl> <nl> * / <nl> <nl> # include " stdafx . h " <nl> - # include " jsobj . h " <nl> + # include " matcher . h " <nl> # include " . . / util / goodies . h " <nl> # include " . . / util / unittest . h " <nl> # include " storage . h " <nl> namespace mongo { <nl> / * TODO : use getGtLtOp ( ) here . this code repeats ourself * / <nl> if ( fn [ 0 ] = = ' $ ' & & fn [ 1 ] ) { <nl> if ( fn [ 2 ] = = ' t ' ) { <nl> - int op = Equality ; <nl> + int op = BSONObj : : Equality ; <nl> if ( fn [ 1 ] = = ' g ' ) { <nl> - if ( fn [ 3 ] = = 0 ) op = GT ; <nl> - else if ( fn [ 3 ] = = ' e ' & & fn [ 4 ] = = 0 ) op = GTE ; <nl> + if ( fn [ 3 ] = = 0 ) op = BSONObj : : GT ; <nl> + else if ( fn [ 3 ] = = ' e ' & & fn [ 4 ] = = 0 ) op = BSONObj : : GTE ; <nl> else <nl> uassert ( " invalid $ operator " , false ) ; <nl> } <nl> else if ( fn [ 1 ] = = ' l ' ) { <nl> - if ( fn [ 3 ] = = 0 ) op = LT ; <nl> - else if ( fn [ 3 ] = = ' e ' & & fn [ 4 ] = = 0 ) op = LTE ; <nl> + if ( fn [ 3 ] = = 0 ) op = BSONObj : : LT ; <nl> + else if ( fn [ 3 ] = = ' e ' & & fn [ 4 ] = = 0 ) op = BSONObj : : LTE ; <nl> else <nl> uassert ( " invalid $ operator " , false ) ; <nl> } <nl> namespace mongo { <nl> shared_ptr < BSONObjBuilder > b ( new BSONObjBuilder ( ) ) ; <nl> builders_ . push_back ( b ) ; <nl> b - > appendAs ( fe , e . fieldName ( ) ) ; <nl> - addBasic ( b - > done ( ) . firstElement ( ) , NE ) ; <nl> + addBasic ( b - > done ( ) . firstElement ( ) , BSONObj : : NE ) ; <nl> ok = true ; <nl> } <nl> else <nl> namespace mongo { <nl> in - > insert ( ie ) ; <nl> } <nl> } <nl> - addBasic ( e , opIN ) ; / / e not actually used at the moment for $ in <nl> + addBasic ( e , BSONObj : : opIN ) ; / / e not actually used at the moment for $ in <nl> ok = true ; <nl> } <nl> else if ( fn [ 1 ] = = ' n ' & & fn [ 2 ] = = ' i ' & & fn [ 3 ] = = ' n ' & & fn [ 4 ] = = 0 & & fe . type ( ) = = Array ) { <nl> namespace mongo { <nl> nin - > insert ( ie ) ; <nl> } <nl> } <nl> - addBasic ( e , NIN ) ; / / e not actually used at the moment for $ nin <nl> + addBasic ( e , BSONObj : : NIN ) ; / / e not actually used at the moment for $ nin <nl> ok = true ; <nl> } <nl> else if ( fn [ 1 ] = = ' a ' & & fn [ 2 ] = = ' l ' & & fn [ 3 ] = = ' l ' & & fn [ 4 ] = = 0 & & fe . type ( ) = = Array ) { <nl> namespace mongo { <nl> all - > insert ( ie ) ; <nl> } <nl> } <nl> - addBasic ( e , opALL ) ; / / e not actually used at the moment for $ all <nl> + addBasic ( e , BSONObj : : opALL ) ; / / e not actually used at the moment for $ all <nl> ok = true ; <nl> } <nl> else if ( fn [ 1 ] = = ' s ' & & fn [ 2 ] = = ' i ' & & fn [ 3 ] = = ' z ' & & fn [ 4 ] = = ' e ' & & fe . isNumber ( ) ) { <nl> shared_ptr < BSONObjBuilder > b ( new BSONObjBuilder ( ) ) ; <nl> builders_ . push_back ( b ) ; <nl> b - > appendAs ( fe , e . fieldName ( ) ) ; <nl> - addBasic ( b - > done ( ) . firstElement ( ) , opSIZE ) ; <nl> + addBasic ( b - > done ( ) . firstElement ( ) , BSONObj : : opSIZE ) ; <nl> haveSize = true ; <nl> ok = true ; <nl> } <nl> namespace mongo { <nl> } <nl> <nl> / / normal , simple case e . g . { a : " foo " } <nl> - addBasic ( e , Equality ) ; <nl> + addBasic ( e , BSONObj : : Equality ) ; <nl> } <nl> <nl> constrainIndexKey_ = constrainIndexKey ; <nl> } <nl> <nl> inline int JSMatcher : : valuesMatch ( const BSONElement & l , const BSONElement & r , int op , bool * deep ) { <nl> - assert ( op ! = NE & & op ! = NIN ) ; <nl> + assert ( op ! = BSONObj : : NE & & op ! = BSONObj : : NIN ) ; <nl> <nl> if ( op = = 0 ) <nl> return l . valuesEqual ( r ) ; <nl> <nl> - if ( op = = opIN ) { <nl> + if ( op = = BSONObj : : opIN ) { <nl> / / { $ in : [ 1 , 2 , 3 ] } <nl> int c = in - > count ( l ) ; <nl> return c ; <nl> } <nl> <nl> - if ( op = = opSIZE ) { <nl> + if ( op = = BSONObj : : opSIZE ) { <nl> if ( l . type ( ) ! = Array ) <nl> return 0 ; <nl> int count = 0 ; <nl> namespace mongo { <nl> return count = = r . number ( ) ; <nl> } <nl> <nl> - if ( op = = opALL ) { <nl> + if ( op = = BSONObj : : opALL ) { <nl> if ( l . type ( ) ! = Array ) <nl> return 0 ; <nl> set < BSONElement , element_lt > matches ; <nl> namespace mongo { <nl> } <nl> <nl> int JSMatcher : : matchesNe ( const char * fieldName , const BSONElement & toMatch , const BSONObj & obj , bool * deep ) { <nl> - int ret = matchesDotted ( fieldName , toMatch , obj , Equality , deep ) ; <nl> + int ret = matchesDotted ( fieldName , toMatch , obj , BSONObj : : Equality , deep ) ; <nl> return - ret ; <nl> } <nl> <nl> namespace mongo { <nl> 1 match <nl> * / <nl> int JSMatcher : : matchesDotted ( const char * fieldName , const BSONElement & toMatch , const BSONObj & obj , int compareOp , bool * deep , bool isArr , bool nextArr ) { <nl> - if ( compareOp = = NE ) <nl> + if ( compareOp = = BSONObj : : NE ) <nl> return matchesNe ( fieldName , toMatch , obj , deep ) ; <nl> - if ( compareOp = = NIN ) { <nl> + if ( compareOp = = BSONObj : : NIN ) { <nl> for ( set < BSONElement , element_lt > : : const_iterator i = nin - > begin ( ) ; i ! = nin - > end ( ) ; + + i ) { <nl> int ret = matchesNe ( fieldName , * i , obj , deep ) ; <nl> if ( ret ! = 1 ) <nl> namespace mongo { <nl> } <nl> } <nl> <nl> - if ( ( e . type ( ) ! = Array | | nextArr | | compareOp = = opALL | | compareOp = = opSIZE ) & & <nl> + if ( ( e . type ( ) ! = Array | | nextArr | | compareOp = = BSONObj : : opALL | | compareOp = = BSONObj : : opSIZE ) & & <nl> valuesMatch ( e , toMatch , compareOp , deep ) ) { <nl> return 1 ; <nl> - } else if ( e . type ( ) = = Array & & compareOp ! = opALL & & compareOp ! = opSIZE & & ! nextArr ) { <nl> + } else if ( e . type ( ) = = Array & & compareOp ! = BSONObj : : opALL & & compareOp ! = BSONObj : : opSIZE & & ! nextArr ) { <nl> BSONObjIterator ai ( e . embeddedObject ( ) ) ; <nl> while ( ai . more ( ) ) { <nl> BSONElement z = ai . next ( ) ; <nl> namespace mongo { <nl> if ( cmp = = 0 ) { <nl> / * missing is ok iff we were looking for null * / <nl> if ( m . type ( ) = = jstNULL | | m . type ( ) = = Undefined ) { <nl> - if ( bm . compareOp = = NE ) { <nl> + if ( bm . compareOp = = BSONObj : : NE ) { <nl> return false ; <nl> } <nl> } else { <nl> mmm a / db / matcher . h <nl> ppp b / db / matcher . h <nl> namespace mongo { <nl> } <nl> } ; <nl> public : <nl> - enum MatchType { <nl> - Equality = 0 , <nl> - LT = 0x1 , <nl> - LTE = 0x3 , <nl> - GTE = 0x6 , <nl> - GT = 0x4 , <nl> - opIN = 0x8 , / / { x : { $ in : [ 1 , 2 , 3 ] } } <nl> - NE = 0x9 , <nl> - opSIZE = 0x0A , <nl> - opALL = 0x0B , <nl> - NIN = 0x0C , <nl> - } ; <nl> - <nl> static int opDirection ( int op ) { <nl> - return op < = LTE ? - 1 : 1 ; <nl> + return op < = BSONObj : : LTE ? - 1 : 1 ; <nl> } <nl> <nl> / / Only specify constrainIndexKey if matches ( ) will be called with <nl> mmm a / s / shardkey . cpp <nl> ppp b / s / shardkey . cpp <nl> namespace mongo { <nl> break ; <nl> int op = f . getGtLtOp ( ) ; <nl> switch ( op ) { <nl> - case JSMatcher : : LT : <nl> + case BSONObj : : LT : <nl> if ( compareValues ( f , LE ) < = 0 ) <nl> return false ; <nl> break ; <nl> - case JSMatcher : : LTE : <nl> + case BSONObj : : LTE : <nl> if ( compareValues ( f , LE ) < 0 ) <nl> return false ; <nl> break ; <nl> - case JSMatcher : : GT : <nl> - case JSMatcher : : GTE : <nl> + case BSONObj : : GT : <nl> + case BSONObj : : GTE : <nl> if ( compareValues ( f , RE ) > = 0 ) <nl> return false ; <nl> break ; <nl> - case JSMatcher : : opIN : <nl> - case JSMatcher : : NE : <nl> - case JSMatcher : : opSIZE : <nl> + case BSONObj : : opIN : <nl> + case BSONObj : : NE : <nl> + case BSONObj : : opSIZE : <nl> massert ( " not implemented yet relevant ( ) " , false ) ; <nl> - case JSMatcher : : Equality : <nl> + case BSONObj : : Equality : <nl> goto normal ; <nl> default : <nl> massert ( " bad operator in relevant ( ) ? " , false ) ; <nl> mmm a / tools / export . cpp <nl> ppp b / tools / export . cpp <nl> <nl> # include < iostream > <nl> <nl> # include < boost / program_options . hpp > <nl> + # include < pcrecpp . h > <nl> <nl> using namespace mongo ; <nl> <nl>
adjust dependencies MINOR
mongodb/mongo
691629143c8ac264815665f8e317cd8ce6a6756e
2009-05-11T19:09:30Z
mmm a / modules / androidcamera / CMakeLists . txt <nl> ppp b / modules / androidcamera / CMakeLists . txt <nl> set ( the_description " Auxiliary module for Android native camera support " ) <nl> set ( OPENCV_MODULE_TYPE STATIC ) <nl> <nl> ocv_define_module ( androidcamera INTERNAL opencv_core log dl ) <nl> - ocv_include_directories ( " $ { CMAKE_CURRENT_SOURCE_DIR } / camera_wrapper " ) <nl> + ocv_include_directories ( " $ { CMAKE_CURRENT_SOURCE_DIR } / camera_wrapper " " $ { OpenCV_SOURCE_DIR } / android / service / engine / jni / include " ) <nl> <nl> # Android source tree for native camera <nl> SET ( ANDROID_SOURCE_TREE " ANDROID_SOURCE_TREE - NOTFOUND " CACHE PATH <nl> mmm a / modules / androidcamera / src / camera_activity . cpp <nl> ppp b / modules / androidcamera / src / camera_activity . cpp <nl> <nl> # include < opencv2 / core / version . hpp > <nl> # include " camera_activity . hpp " <nl> # include " camera_wrapper . h " <nl> + # include " EngineCommon . h " <nl> <nl> # undef LOG_TAG <nl> # undef LOGE <nl> void CameraWrapperConnector : : fillListWrapperLibs ( const string & folderPath , vecto <nl> <nl> std : : string CameraWrapperConnector : : getDefaultPathLibFolder ( ) <nl> { <nl> - const string packageList [ ] = { " tegra3 " , " armv7a_neon " , " armv7a " , " armv5 " , " x86 " } ; <nl> - for ( size_t i = 0 ; i < 5 ; i + + ) <nl> + # define BIN_PACKAGE_NAME ( x ) " org . opencv . lib_v " CVAUX_STR ( CV_MAJOR_VERSION ) CVAUX_STR ( CV_MINOR_VERSION ) " _ " x <nl> + const char * const packageList [ ] = { BIN_PACKAGE_NAME ( " armv7a " ) , OPENCV_ENGINE_PACKAGE } ; <nl> + for ( size_t i = 0 ; i < sizeof ( packageList ) / sizeof ( packageList [ 0 ] ) ; i + + ) <nl> { <nl> char path [ 128 ] ; <nl> - sprintf ( path , " / data / data / org . opencv . lib_v % d % d_ % s / lib / " , CV_MAJOR_VERSION , CV_MINOR_VERSION , packageList [ i ] . c_str ( ) ) ; <nl> - LOGD ( " Trying package \ " % s \ " ( \ " % s \ " ) " , packageList [ i ] . c_str ( ) , path ) ; <nl> + sprintf ( path , " / data / data / % s / lib / " , packageList [ i ] ) ; <nl> + LOGD ( " Trying package \ " % s \ " ( \ " % s \ " ) " , packageList [ i ] , path ) ; <nl> <nl> DIR * dir = opendir ( path ) ; <nl> if ( ! dir ) <nl>
Default native library path for native camera updated .
opencv/opencv
3282e08f55463ab203ac39a6dc04565a4b69e533
2012-11-22T08:40:25Z
mmm a / qa / rpc - tests / proxy_test . py <nl> ppp b / qa / rpc - tests / proxy_test . py <nl> def setup_nodes ( self ) : <nl> [ ' - listen ' , ' - debug = net ' , ' - debug = proxy ' , ' - proxy = % s : % i ' % ( self . conf1 . addr ) , ' - proxyrandomize = 1 ' ] , <nl> [ ' - listen ' , ' - debug = net ' , ' - debug = proxy ' , ' - proxy = % s : % i ' % ( self . conf1 . addr ) , ' - onion = % s : % i ' % ( self . conf2 . addr ) , ' - proxyrandomize = 0 ' ] , <nl> [ ' - listen ' , ' - debug = net ' , ' - debug = proxy ' , ' - proxy = % s : % i ' % ( self . conf2 . addr ) , ' - proxyrandomize = 1 ' ] , <nl> - [ ' - listen ' , ' - debug = net ' , ' - debug = proxy ' , ' - proxy = [ % s ] : % i ' % ( self . conf3 . addr ) , ' - proxyrandomize = 0 ' ] <nl> + [ ' - listen ' , ' - debug = net ' , ' - debug = proxy ' , ' - proxy = [ % s ] : % i ' % ( self . conf3 . addr ) , ' - proxyrandomize = 0 ' , ' - noonion ' ] <nl> ] ) <nl> <nl> - def node_test ( self , node , proxies , auth ) : <nl> + def node_test ( self , node , proxies , auth , test_onion = True ) : <nl> rv = [ ] <nl> # Test : outgoing IPv4 connection through node <nl> node . addnode ( " 15 . 61 . 23 . 23 : 1234 " , " onetry " ) <nl> def node_test ( self , node , proxies , auth ) : <nl> assert_equal ( cmd . password , None ) <nl> rv . append ( cmd ) <nl> <nl> - # Test : outgoing onion connection through node <nl> - node . addnode ( " bitcoinostk4e4re . onion : 8333 " , " onetry " ) <nl> - cmd = proxies [ 2 ] . queue . get ( ) <nl> - assert ( isinstance ( cmd , Socks5Command ) ) <nl> - assert_equal ( cmd . atyp , AddressType . DOMAINNAME ) <nl> - assert_equal ( cmd . addr , " bitcoinostk4e4re . onion " ) <nl> - assert_equal ( cmd . port , 8333 ) <nl> - if not auth : <nl> - assert_equal ( cmd . username , None ) <nl> - assert_equal ( cmd . password , None ) <nl> - rv . append ( cmd ) <nl> + if test_onion : <nl> + # Test : outgoing onion connection through node <nl> + node . addnode ( " bitcoinostk4e4re . onion : 8333 " , " onetry " ) <nl> + cmd = proxies [ 2 ] . queue . get ( ) <nl> + assert ( isinstance ( cmd , Socks5Command ) ) <nl> + assert_equal ( cmd . atyp , AddressType . DOMAINNAME ) <nl> + assert_equal ( cmd . addr , " bitcoinostk4e4re . onion " ) <nl> + assert_equal ( cmd . port , 8333 ) <nl> + if not auth : <nl> + assert_equal ( cmd . username , None ) <nl> + assert_equal ( cmd . password , None ) <nl> + rv . append ( cmd ) <nl> <nl> # Test : outgoing DNS name connection through node <nl> node . addnode ( " node . noumenon : 8333 " , " onetry " ) <nl> def run_test ( self ) : <nl> assert_equal ( len ( credentials ) , 4 ) <nl> <nl> # proxy on IPv6 localhost <nl> - self . node_test ( self . nodes [ 3 ] , [ self . serv3 , self . serv3 , self . serv3 , self . serv3 ] , False ) <nl> + self . node_test ( self . nodes [ 3 ] , [ self . serv3 , self . serv3 , self . serv3 , self . serv3 ] , False , False ) <nl> + <nl> + def networks_dict ( d ) : <nl> + r = { } <nl> + for x in d [ ' networks ' ] : <nl> + r [ x [ ' name ' ] ] = x <nl> + return r <nl> + <nl> + # test RPC getnetworkinfo <nl> + n0 = networks_dict ( self . nodes [ 0 ] . getnetworkinfo ( ) ) <nl> + for net in [ ' ipv4 ' , ' ipv6 ' , ' onion ' ] : <nl> + assert_equal ( n0 [ net ] [ ' proxy ' ] , ' % s : % i ' % ( self . conf1 . addr ) ) <nl> + assert_equal ( n0 [ net ] [ ' proxy_randomize_credentials ' ] , True ) <nl> + assert_equal ( n0 [ ' onion ' ] [ ' reachable ' ] , True ) <nl> + <nl> + n1 = networks_dict ( self . nodes [ 1 ] . getnetworkinfo ( ) ) <nl> + for net in [ ' ipv4 ' , ' ipv6 ' ] : <nl> + assert_equal ( n1 [ net ] [ ' proxy ' ] , ' % s : % i ' % ( self . conf1 . addr ) ) <nl> + assert_equal ( n1 [ net ] [ ' proxy_randomize_credentials ' ] , False ) <nl> + assert_equal ( n1 [ ' onion ' ] [ ' proxy ' ] , ' % s : % i ' % ( self . conf2 . addr ) ) <nl> + assert_equal ( n1 [ ' onion ' ] [ ' proxy_randomize_credentials ' ] , False ) <nl> + assert_equal ( n1 [ ' onion ' ] [ ' reachable ' ] , True ) <nl> <nl> + n2 = networks_dict ( self . nodes [ 2 ] . getnetworkinfo ( ) ) <nl> + for net in [ ' ipv4 ' , ' ipv6 ' , ' onion ' ] : <nl> + assert_equal ( n2 [ net ] [ ' proxy ' ] , ' % s : % i ' % ( self . conf2 . addr ) ) <nl> + assert_equal ( n2 [ net ] [ ' proxy_randomize_credentials ' ] , True ) <nl> + assert_equal ( n2 [ ' onion ' ] [ ' reachable ' ] , True ) <nl> + <nl> + n3 = networks_dict ( self . nodes [ 3 ] . getnetworkinfo ( ) ) <nl> + for net in [ ' ipv4 ' , ' ipv6 ' ] : <nl> + assert_equal ( n3 [ net ] [ ' proxy ' ] , ' [ % s ] : % i ' % ( self . conf3 . addr ) ) <nl> + assert_equal ( n3 [ net ] [ ' proxy_randomize_credentials ' ] , False ) <nl> + assert_equal ( n3 [ ' onion ' ] [ ' reachable ' ] , False ) <nl> + <nl> if __name__ = = ' __main__ ' : <nl> ProxyTest ( ) . main ( ) <nl> <nl>
tests : Extend RPC proxy tests
bitcoin/bitcoin
edbdf8855ded4142d78c0f9b5ef8c3233c61a5f0
2015-06-15T10:45:13Z
mmm a / tensorflow / core / framework / shape_inference . cc <nl> ppp b / tensorflow / core / framework / shape_inference . cc <nl> Status InferenceContext : : Merge ( const Dimension * d0 , const Dimension * d1 , <nl> } <nl> } <nl> <nl> + Status InferenceContext : : MergePrefix ( const Shape * s , const Shape * prefix , <nl> + const Shape * * s_out , <nl> + const Shape * * prefix_out ) { <nl> + * s_out = * prefix_out = nullptr ; <nl> + if ( ! RankKnown ( prefix ) | | ! RankKnown ( s ) ) { <nl> + * s_out = s ; <nl> + * prefix_out = prefix ; <nl> + return Status : : OK ( ) ; <nl> + } <nl> + const int32 rank = Rank ( prefix ) ; <nl> + TF_RETURN_IF_ERROR ( WithRankAtLeast ( s , rank , & s ) ) ; <nl> + <nl> + / / Merge the prefix dims and create the new output shapes . <nl> + std : : vector < const Dimension * > dims ; <nl> + dims . resize ( rank ) ; <nl> + for ( int i = 0 ; i < rank ; + + i ) { <nl> + TF_RETURN_IF_ERROR ( Merge ( Dim ( s , i ) , Dim ( prefix , i ) , & dims [ i ] ) ) ; <nl> + } <nl> + * prefix_out = CreateShape ( dims ) ; <nl> + for ( int i = rank ; i < Rank ( s ) ; + + i ) dims . push_back ( Dim ( s , i ) ) ; <nl> + * s_out = CreateShape ( dims ) ; <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> Status InferenceContext : : Merge ( const Shape * s0 , const Shape * s1 , <nl> const Shape * * out ) { <nl> if ( s0 = = s1 | | ! RankKnown ( s1 ) ) { <nl> Status InferenceContext : : Merge ( const Shape * s0 , const Shape * s1 , <nl> return ReturnCreatedShape ( dims , out ) ; <nl> } <nl> <nl> - Status InferenceContext : : Subshape ( const Shape * s , int start , <nl> + Status InferenceContext : : Subshape ( const Shape * s , int64 start , <nl> const Shape * * out ) { <nl> if ( start < 0 ) { <nl> * out = nullptr ; <nl> mmm a / tensorflow / core / framework / shape_inference . h <nl> ppp b / tensorflow / core / framework / shape_inference . h <nl> class InferenceContext { <nl> Status Merge ( const Shape * in0 , const Shape * in1 , <nl> const Shape * * out ) TF_MUST_USE_RESULT ; <nl> <nl> + / / Asserts that < s > ' s rank > = < prefix > ' s rank , and the first <nl> + / / < prefix . rank > dimensions of < s > are compatible with the dimensions of <nl> + / / < prefix > . <nl> + / / Returns the merged results in < * s_out > and < * prefix_out > . <nl> + Status MergePrefix ( const Shape * s , const Shape * prefix , const Shape * * s_out , <nl> + const Shape * * prefix_out ) TF_MUST_USE_RESULT ; <nl> + <nl> / / Merges < d0 > and < d1 > and returns the merged dimension in < * out > . If < d0 > <nl> / / and < d1 > have incompatible values , returns an error . <nl> / / <nl> class InferenceContext { <nl> / / Returns in < * out > a sub - shape of < s > , with dimensions at index [ s [ start ] , <nl> / / . . ) . <nl> / / Returns an error if the rank of < s > is < < start > . <nl> - Status Subshape ( const Shape * s , int start , <nl> + Status Subshape ( const Shape * s , int64 start , <nl> const Shape * * out ) TF_MUST_USE_RESULT ; <nl> <nl> / / Returns in < * out > the result of appending the dimensions of < s2 > to those <nl> mmm a / tensorflow / core / framework / shape_inference_test . cc <nl> ppp b / tensorflow / core / framework / shape_inference_test . cc <nl> TEST ( ShapeInferenceTest , MergeShape ) { <nl> EXPECT_TRUE ( out = = nullptr ) ; <nl> } <nl> <nl> + TEST ( ShapeInferenceTest , MergePrefix ) { <nl> + NodeDef def ; <nl> + InferenceContext c ( & def , { " ? " , " [ ? , 2 ] " , " [ 1 , ? , 3 ] " , " [ 2 , 4 ] " } , <nl> + 2 / * num_outputs * / , { } ) ; <nl> + <nl> + auto s_unknown = c . input ( 0 ) ; <nl> + auto s_u_2 = c . input ( 1 ) ; <nl> + auto s_1_u_3 = c . input ( 2 ) ; <nl> + auto s_2_4 = c . input ( 3 ) ; <nl> + <nl> + const Shape * s_out = nullptr ; <nl> + const Shape * s_prefix_out = nullptr ; <nl> + <nl> + / / Merging with unknown returns the inputs . <nl> + EXPECT_TRUE ( c . MergePrefix ( s_unknown , s_u_2 , & s_out , & s_prefix_out ) . ok ( ) ) ; <nl> + EXPECT_TRUE ( s_out = = s_unknown ) ; <nl> + EXPECT_TRUE ( s_prefix_out = = s_u_2 ) ; <nl> + EXPECT_TRUE ( c . MergePrefix ( s_1_u_3 , s_unknown , & s_out , & s_prefix_out ) . ok ( ) ) ; <nl> + EXPECT_TRUE ( s_out = = s_1_u_3 ) ; <nl> + EXPECT_TRUE ( s_prefix_out = = s_unknown ) ; <nl> + <nl> + EXPECT_TRUE ( c . MergePrefix ( s_1_u_3 , s_u_2 , & s_out , & s_prefix_out ) . ok ( ) ) ; <nl> + EXPECT_TRUE ( s_out ! = s_1_u_3 ) ; <nl> + EXPECT_EQ ( " [ 1 , 2 ] " , c . DebugString ( s_prefix_out ) ) ; <nl> + EXPECT_EQ ( " [ 1 , 2 , 3 ] " , c . DebugString ( s_out ) ) ; <nl> + EXPECT_TRUE ( c . Dim ( s_prefix_out , 0 ) = = c . Dim ( s_out , 0 ) ) ; <nl> + EXPECT_TRUE ( c . Dim ( s_out , 0 ) = = c . Dim ( s_1_u_3 , 0 ) ) ; <nl> + EXPECT_TRUE ( c . Dim ( s_prefix_out , 1 ) = = c . Dim ( s_out , 1 ) ) ; <nl> + EXPECT_TRUE ( c . Dim ( s_prefix_out , 1 ) = = c . Dim ( s_u_2 , 1 ) ) ; <nl> + <nl> + / / Incompatible merges give errors and set outs to nullptr . <nl> + s_out = s_unknown ; <nl> + s_prefix_out = s_unknown ; <nl> + EXPECT_EQ ( ( " Invalid argument : Dimensions must be equal , but are 1 and 2 " ) , <nl> + c . MergePrefix ( s_1_u_3 , s_2_4 , & s_out , & s_prefix_out ) . ToString ( ) ) ; <nl> + EXPECT_TRUE ( s_out = = nullptr ) ; <nl> + EXPECT_TRUE ( s_prefix_out = = nullptr ) ; <nl> + <nl> + s_out = s_unknown ; <nl> + s_prefix_out = s_unknown ; <nl> + EXPECT_EQ ( ( " Invalid argument : Shape must be at least rank 3 but is rank 2 " ) , <nl> + c . MergePrefix ( s_2_4 , s_1_u_3 , & s_out , & s_prefix_out ) . ToString ( ) ) ; <nl> + EXPECT_TRUE ( s_out = = nullptr ) ; <nl> + EXPECT_TRUE ( s_prefix_out = = nullptr ) ; <nl> + } <nl> + <nl> TEST ( ShapeInferenceTest , Subshape ) { <nl> NodeDef def ; <nl> InferenceContext c ( & def , { " [ 1 , 2 , 3 , ? , 5 ] " , " ? " } , 2 / * num_outputs * / , { } ) ; <nl> mmm a / tensorflow / core / ops / math_ops . cc <nl> ppp b / tensorflow / core / ops / math_ops . cc <nl> REGISTER_OP ( " UnsortedSegmentSum " ) <nl> . Output ( " output : T " ) <nl> . Attr ( " T : numbertype " ) <nl> . Attr ( " Tindices : { int32 , int64 } " ) <nl> + . SetShapeFn ( OpShapeInferenceFn ( [ ] ( InferenceContext * c ) { <nl> + const Shape * s_data = c - > input ( 0 ) ; <nl> + const Shape * s_segment_ids = c - > input ( 1 ) ; <nl> + const Shape * s_num_segments = c - > input ( 2 ) ; <nl> + TF_RETURN_IF_ERROR ( c - > WithRank ( s_num_segments , 0 , & s_num_segments ) ) ; <nl> + <nl> + const Shape * out ; <nl> + <nl> + / / Leading dimensions of data must be compatible with dimensions of <nl> + / / < s_segment_ids > . <nl> + if ( c - > RankKnown ( s_segment_ids ) ) { <nl> + TF_RETURN_IF_ERROR ( <nl> + c - > MergePrefix ( s_data , s_segment_ids , & s_data , & s_segment_ids ) ) ; <nl> + <nl> + / / Get the value of the num_segments input tensor . <nl> + const auto * num_segments_t = c - > input_tensor ( 2 ) ; <nl> + const Dimension * num_segments_dim ; <nl> + if ( num_segments_t = = nullptr ) { <nl> + num_segments_dim = c - > CreateUnknownDim ( ) ; <nl> + } else { <nl> + auto t_val = num_segments_t - > scalar < int32 > ( ) ( ) ; <nl> + if ( t_val < 0 ) { <nl> + return errors : : InvalidArgument ( <nl> + " num_segments value must be non - negative , but was " , t_val ) ; <nl> + } <nl> + num_segments_dim = c - > CreateDim ( t_val ) ; <nl> + } <nl> + <nl> + / / Output is { segment_id_rank } + s_data [ segment_id_rank : ] . <nl> + const Shape * s_data_suffix ; <nl> + TF_RETURN_IF_ERROR ( <nl> + c - > Subshape ( s_data , c - > Rank ( s_segment_ids ) , & s_data_suffix ) ) ; <nl> + TF_RETURN_IF_ERROR ( c - > Concatenate ( c - > CreateShape ( { num_segments_dim } ) , <nl> + s_data_suffix , & out ) ) ; <nl> + } else { <nl> + out = c - > CreateUnknownShape ( ) ; <nl> + } <nl> + c - > set_output ( 0 , out ) ; <nl> + return Status : : OK ( ) ; <nl> + } ) ) <nl> . Doc ( R " doc ( <nl> Computes the sum along segments of a tensor . <nl> <nl> mmm a / tensorflow / core / ops / math_ops_test . cc <nl> ppp b / tensorflow / core / ops / math_ops_test . cc <nl> TEST ( MathOpsTest , LinSpace_ShapeFn ) { <nl> INFER_ERROR_WITH_TENSORS ( " Requires num > 0 : - 1 " , op , " ? ; ? ; ? " , in_tensors ) ; <nl> } <nl> <nl> + TEST ( MathOpsTest , UnsortedSegmentSum_ShapeFn ) { <nl> + const char op [ ] = " UnsortedSegmentSum " ; <nl> + std : : vector < const Tensor * > in_tensors { nullptr , nullptr , nullptr } ; <nl> + INFER_OK_WITH_TENSORS ( op , " ? ; ? ; ? " , in_tensors , " ? " ) ; <nl> + INFER_OK_WITH_TENSORS ( op , " ? ; [ ? ] ; ? " , in_tensors , " ? " ) ; <nl> + INFER_ERROR_WITH_TENSORS ( " Shape must be rank 0 but is rank 2 " , op , <nl> + " ? ; ? ; [ 1 , 2 ] " , in_tensors ) ; <nl> + INFER_ERROR_WITH_TENSORS ( " Dimensions must be equal , but are 2 and 3 " , op , <nl> + " [ 1 , ? , 2 ] ; [ 1 , ? , 3 ] ; ? " , in_tensors ) ; <nl> + INFER_OK_WITH_TENSORS ( op , " ? ; [ 3 ] ; ? " , in_tensors , " ? " ) ; <nl> + INFER_ERROR_WITH_TENSORS ( " Shape must be at least rank 3 but is rank 2 " , op , <nl> + " [ 1 , 2 ] ; [ 1 , 2 , 3 ] ; ? " , in_tensors ) ; <nl> + <nl> + Tensor num_segments_t = test : : AsScalar ( 100 ) ; <nl> + in_tensors [ 2 ] = & num_segments_t ; <nl> + INFER_OK_WITH_TENSORS ( op , " [ ? , 2 , 3 , ? , 5 ] ; [ 1 , 2 , ? ] ; [ ] " , in_tensors , <nl> + " [ 100 , d0_3 , d0_4 ] " ) ; <nl> + <nl> + num_segments_t = test : : AsScalar ( - 1 ) ; <nl> + INFER_ERROR_WITH_TENSORS ( <nl> + " num_segments value must be non - negative , but was - 1 " , op , " [ 3 ] ; [ 3 ] ; ? " , <nl> + in_tensors ) ; <nl> + } <nl> + <nl> } / / end namespace tensorflow <nl>
Add C + + shape inference function for UnsortedSegmentSum .
tensorflow/tensorflow
03306caf2f37359759cb17ac35434efa841fae18
2016-07-07T22:53:21Z
mmm a / version . txt <nl> ppp b / version . txt <nl> COPYRIGHT_YEARS 2005 - 2018 <nl> WEBSITE http : / / kodi . tv <nl> VERSION_MAJOR 18 <nl> VERSION_MINOR 0 <nl> - VERSION_TAG RC3 <nl> - VERSION_CODE 17 . 99 . 930 <nl> - ADDON_API 17 . 9 . 930 <nl> + VERSION_TAG RC4 <nl> + VERSION_CODE 17 . 99 . 940 <nl> + ADDON_API 17 . 9 . 940 <nl> APP_PACKAGE org . xbmc . kodi <nl> PACKAGE_IDENTITY XBMCFoundation . Kodi <nl> PACKAGE_PUBLISHER C62BD90A - CDD8 - 477F - 96C3 - B25992247B97 <nl>
Merge pull request from MartijnKaijser / v18 . 0rc4
xbmc/xbmc
b15f14e0e6d85ad0a6ba3d3625de3d605ec71a8c
2018-12-16T11:02:02Z
mmm a / java / carrier / pom . xml <nl> ppp b / java / carrier / pom . xml <nl> <nl> < modelVersion > 4 . 0 . 0 < / modelVersion > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > carrier < / artifactId > <nl> - < version > 1 . 0 < / version > <nl> + < version > 1 . 1 - SNAPSHOT < / version > <nl> < packaging > jar < / packaging > <nl> < url > http : / / code . google . com / p / libphonenumber / < / url > <nl> <nl> < parent > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber - parent < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / parent > <nl> <nl> < build > <nl> <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / dependency > <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > prefixmapper < / artifactId > <nl> - < version > 2 . 10 < / version > <nl> + < version > 2 . 11 - SNAPSHOT < / version > <nl> < / dependency > <nl> < / dependencies > <nl> <nl> mmm a / java / demo / pom . xml <nl> ppp b / java / demo / pom . xml <nl> <nl> < parent > <nl> < artifactId > libphonenumber - parent < / artifactId > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / parent > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > demo < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> <nl> < properties > <nl> < gae . version > 1 . 5 . 4 < / gae . version > <nl> <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / dependency > <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > geocoder < / artifactId > <nl> - < version > 2 . 10 < / version > <nl> + < version > 2 . 11 - SNAPSHOT < / version > <nl> < / dependency > <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > carrier < / artifactId > <nl> - < version > 1 . 0 < / version > <nl> + < version > 1 . 1 - SNAPSHOT < / version > <nl> < / dependency > <nl> < / dependencies > <nl> <nl> mmm a / java / geocoder / pom . xml <nl> ppp b / java / geocoder / pom . xml <nl> <nl> < modelVersion > 4 . 0 . 0 < / modelVersion > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > geocoder < / artifactId > <nl> - < version > 2 . 10 < / version > <nl> + < version > 2 . 11 - SNAPSHOT < / version > <nl> < packaging > jar < / packaging > <nl> < url > http : / / code . google . com / p / libphonenumber / < / url > <nl> <nl> < parent > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber - parent < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / parent > <nl> <nl> < build > <nl> <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / dependency > <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > prefixmapper < / artifactId > <nl> - < version > 2 . 10 < / version > <nl> + < version > 2 . 11 - SNAPSHOT < / version > <nl> < / dependency > <nl> < / dependencies > <nl> <nl> mmm a / java / internal / prefixmapper / pom . xml <nl> ppp b / java / internal / prefixmapper / pom . xml <nl> <nl> < modelVersion > 4 . 0 . 0 < / modelVersion > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > prefixmapper < / artifactId > <nl> - < version > 2 . 10 < / version > <nl> + < version > 2 . 11 - SNAPSHOT < / version > <nl> < packaging > jar < / packaging > <nl> < url > http : / / code . google . com / p / libphonenumber / < / url > <nl> <nl> < parent > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber - parent < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < relativePath > . . / . . / pom . xml < / relativePath > <nl> < / parent > <nl> <nl> <nl> < dependency > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / dependency > <nl> < / dependencies > <nl> <nl> mmm a / java / libphonenumber / pom . xml <nl> ppp b / java / libphonenumber / pom . xml <nl> <nl> < modelVersion > 4 . 0 . 0 < / modelVersion > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < packaging > jar < / packaging > <nl> < url > http : / / code . google . com / p / libphonenumber / < / url > <nl> <nl> < parent > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber - parent < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < / parent > <nl> <nl> < build > <nl> mmm a / java / pom . xml <nl> ppp b / java / pom . xml <nl> <nl> < modelVersion > 4 . 0 . 0 < / modelVersion > <nl> < groupId > com . googlecode . libphonenumber < / groupId > <nl> < artifactId > libphonenumber - parent < / artifactId > <nl> - < version > 5 . 9 < / version > <nl> + < version > 5 . 10 - SNAPSHOT < / version > <nl> < packaging > pom < / packaging > <nl> < url > http : / / code . google . com / p / libphonenumber / < / url > <nl> <nl> <nl> < / licenses > <nl> <nl> < scm > <nl> - < connection > scm : svn : http : / / libphonenumber . googlecode . com / svn / tags / libphonenumber - 5 . 9 < / connection > <nl> - < developerConnection > scm : svn : https : / / libphonenumber . googlecode . com / svn / tags / libphonenumber - 5 . 9 < / developerConnection > <nl> - < url > scm : svn : http : / / libphonenumber . googlecode . com / svn / tags / libphonenumber - 5 . 9 < / url > <nl> + < connection > scm : svn : http : / / libphonenumber . googlecode . com / svn / trunk / java / < / connection > <nl> + < developerConnection > scm : svn : https : / / libphonenumber . googlecode . com / svn / trunk / java / < / developerConnection > <nl> + < url > scm : svn : http : / / libphonenumber . googlecode . com / svn / trunk / java / < / url > <nl> < / scm > <nl> <nl> < properties > <nl>
[ maven - release - plugin ] prepare for next development iteration
google/libphonenumber
62bdfae34162f8000004d86b822fe1dfbbcbd2f8
2014-12-03T12:22:24Z
mmm a / tensorflow / lite / delegates / gpu / common / model_builder . cc <nl> ppp b / tensorflow / lite / delegates / gpu / common / model_builder . cc <nl> class TransformTensorOperationParser : public TFLiteOperationParser { <nl> private : <nl> } ; <nl> <nl> - class TransformTensorV2OperationParser : public TFLiteOperationParser { <nl> + class TransformTensorBilinearV2OperationParser : public TFLiteOperationParser { <nl> public : <nl> absl : : Status IsSupported ( const TfLiteContext * context , <nl> const TfLiteNode * tflite_node , <nl> class TransformTensorV2OperationParser : public TFLiteOperationParser { <nl> RETURN_IF_ERROR ( reader - > AddInput ( node , 1 ) ) ; / / bbox <nl> RETURN_IF_ERROR ( reader - > AddOutputs ( node ) ) ; <nl> <nl> - std : : string op_name = " transform_tensor_v2 " ; <nl> + std : : string op_name = " transform_tensor_bilinear_v2 " ; <nl> node - > operation . type = op_name ; <nl> BHWC output_shape ; <nl> RETURN_IF_ERROR ( <nl> std : : unique_ptr < TFLiteOperationParser > NewOperationParser ( <nl> if ( custom_name = = " TransformTensor " ) { <nl> return std : : make_unique < TransformTensorOperationParser > ( ) ; <nl> } <nl> - if ( custom_name = = " TransformTensorV2 " ) { <nl> - return std : : make_unique < TransformTensorV2OperationParser > ( ) ; <nl> + if ( custom_name = = " TransformTensorBilinearV2 " ) { <nl> + return std : : make_unique < TransformTensorBilinearV2OperationParser > ( ) ; <nl> } <nl> if ( custom_name = = " TransformLandmarks " ) { <nl> return std : : make_unique < TransformLandmarksOperationParser > ( ) ; <nl>
Rename TransformTensorV2 op to TransformTensorBilinearV2 op .
tensorflow/tensorflow
acaaab2504a94711a4c1084328c79c10b7c9a594
2020-05-19T00:12:58Z
mmm a / docs - translations / nl / project / CONTRIBUTING . md <nl> ppp b / docs - translations / nl / project / CONTRIBUTING . md <nl> <nl> # Bijdragen aan Electron <nl> <nl> - : memo : Beschikbare vertalingen : [ Koreaans ] ( https : / / github . com / electron / electron / tree / master / docs - translations / ko - KR / project / CONTRIBUTING . md ) | [ Versimpeld Chinees ] ( https : / / github . com / electron / electron / tree / master / docs - translations / zh - CN / project / CONTRIBUTING . md ) | [ Braziliaans Portugees ] ( https : / / github . com / electron / electron / tree / master / docs - translations / pt - BR / project / CONTRIBUTING . md ) <nl> + : memo : Beschikbare vertalingen : [ Koreaans ] ( https : / / github . com / electron / electron / tree / master / docs - translations / ko - KR / project / CONTRIBUTING . md ) | [ Versimpeld Chinees ] ( https : / / github . com / electron / electron / tree / master / docs - translations / zh - CN / project / CONTRIBUTING . md ) | [ Braziliaans Portugees ] ( https : / / github . com / electron / electron / tree / master / docs - translations / pt - BR / project / CONTRIBUTING . md ) | [ Nederlands ] ( https : / / github . com / electron / electron / tree / master / docs - translations / nl / project / CONTRIBUTING . md ) <nl> <nl> : + 1 : : tada : Ten eerste , bedankt om de tijd te nemen om bij te dragen ! : tada : : + 1 : <nl> <nl> maar lees eerst onderstaande suggesties en voeg zo veel mogelijk details toe bij <nl> * Volg de JavaScript , C + + en Python [ codeer - stijl gedefinieerd in de documentatie ] ( / docs / development / coding - style . md ) . <nl> * Schrijf documentatie in in [ Markdown ] ( https : / / daringfireball . net / projects / markdown ) . <nl> Zie de [ Documentatie Stijlgids ] ( / docs / styleguide . md ) . <nl> - * Gebruik korte commit - berichten in de tegenwoordige tijd . Zie [ Commit Bericht Stijlgids ] ( # git - commit - messages ) . <nl> + * Gebruik korte commit - berichten in de tegenwoordige tijd . Zie [ Commit Bericht Stijlgids ] ( # # git - commit - berichten ) . <nl> <nl> # # Stijlgidsen <nl> <nl>
Fix relative link , added translation link for dutch
electron/electron
a097d17166a494afaa53cc46581ff8a53f9f1a9f
2016-10-05T10:28:08Z
mmm a / cmake / tools . cmake <nl> ppp b / cmake / tools . cmake <nl> if ( COMPILER_GCC ) <nl> elseif ( COMPILER_CLANG ) <nl> # Require minimum version of clang / apple - clang <nl> if ( CMAKE_CXX_COMPILER_ID MATCHES " AppleClang " ) <nl> + # If you are developer you can figure out what exact versions of AppleClang are Ok , <nl> + # remove the following line and commit changes below . <nl> + message ( FATAL_ERROR " AppleClang is not supported , you should install clang from brew . " ) <nl> + <nl> # AppleClang 10 . 0 . 1 ( Xcode 10 . 2 ) corresponds to LLVM / Clang upstream version 7 . 0 . 0 <nl> # AppleClang 11 . 0 . 0 ( Xcode 11 . 0 ) corresponds to LLVM / Clang upstream version 8 . 0 . 0 <nl> set ( XCODE_MINIMUM_VERSION 10 . 2 ) <nl> mmm a / docker / test / fasttest / Dockerfile <nl> ppp b / docker / test / fasttest / Dockerfile <nl> RUN apt - get update \ <nl> ninja - build \ <nl> psmisc \ <nl> python3 \ <nl> + python3 - pip \ <nl> python3 - lxml \ <nl> python3 - requests \ <nl> python3 - termcolor \ <nl> - qemu - user - static \ <nl> rename \ <nl> software - properties - common \ <nl> tzdata \ <nl> unixodbc \ <nl> - - yes - - no - install - recommends <nl> <nl> + RUN pip3 install numpy scipy pandas <nl> + <nl> # This symlink required by gcc to find lld compiler <nl> RUN ln - s / usr / bin / lld - $ { LLVM_VERSION } / usr / bin / ld . lld <nl> <nl> mmm a / docker / test / fasttest / run . sh <nl> ppp b / docker / test / fasttest / run . sh <nl> stop_server | | : <nl> start_server <nl> <nl> TESTS_TO_SKIP = ( <nl> - parquet <nl> - avro <nl> - h3 <nl> - odbc <nl> - mysql <nl> - sha256 <nl> - _orc_ <nl> - arrow <nl> - 01098_temporary_and_external_tables <nl> - 01083_expressions_in_engine_arguments <nl> - hdfs <nl> - 00911_tautological_compare <nl> - protobuf <nl> - capnproto <nl> - java_hash <nl> - hashing <nl> - secure <nl> - 00490_special_line_separators_and_characters_outside_of_bmp <nl> - 00436_convert_charset <nl> 00105_shard_collations <nl> - 01354_order_by_tuple_collate_const <nl> - 01292_create_user <nl> - 01098_msgpack_format <nl> - 00929_multi_match_edit_distance <nl> - 00926_multimatch <nl> - 00834_cancel_http_readonly_queries_on_client_close <nl> - brotli <nl> - parallel_alter <nl> + 00109_shard_totals_after_having <nl> + 00110_external_sort <nl> 00302_http_compression <nl> 00417_kill_query <nl> - 01294_lazy_database_concurrent <nl> - 01193_metadata_loading <nl> - base64 <nl> - 01031_mutations_interpreter_and_context <nl> - json <nl> - client <nl> - 01305_replica_create_drop_zookeeper <nl> - 01092_memory_profiler <nl> - 01355_ilike <nl> - 01281_unsucceeded_insert_select_queries_counter <nl> - live_view <nl> - limit_memory <nl> - memory_limit <nl> - memory_leak <nl> - 00110_external_sort <nl> + 00436_convert_charset <nl> + 00490_special_line_separators_and_characters_outside_of_bmp <nl> + 00652_replicated_mutations_zookeeper <nl> 00682_empty_parts_merge <nl> 00701_rollup <nl> - 00109_shard_totals_after_having <nl> - ddl_dictionaries <nl> + 00834_cancel_http_readonly_queries_on_client_close <nl> + 00911_tautological_compare <nl> + 00926_multimatch <nl> + 00929_multi_match_edit_distance <nl> + 01031_mutations_interpreter_and_context <nl> + 01053_ssd_dictionary # this test mistakenly requires acces to / var / lib / clickhouse - - can ' t run this locally , disabled <nl> + 01083_expressions_in_engine_arguments <nl> + 01092_memory_profiler <nl> + 01098_msgpack_format <nl> + 01098_temporary_and_external_tables <nl> + 01103_check_cpu_instructions_at_startup # avoid dependency on qemu - - invonvenient when running locally <nl> + 01193_metadata_loading <nl> + 01238_http_memory_tracking # max_memory_usage_for_user can interfere another queries running concurrently <nl> 01251_dict_is_in_infinite_loop <nl> 01259_dictionary_custom_settings_ddl <nl> 01268_dictionary_direct_layout <nl> 01280_ssd_complex_key_dictionary <nl> - 00652_replicated_mutations_zookeeper <nl> - 01411_bayesian_ab_testing <nl> - 01238_http_memory_tracking # max_memory_usage_for_user can interfere another queries running concurrently <nl> 01281_group_by_limit_memory_tracking # max_memory_usage_for_user can interfere another queries running concurrently <nl> + 01281_unsucceeded_insert_select_queries_counter <nl> + 01292_create_user <nl> + 01294_lazy_database_concurrent <nl> + 01305_replica_create_drop_zookeeper <nl> + 01354_order_by_tuple_collate_const <nl> + 01355_ilike <nl> + 01411_bayesian_ab_testing <nl> + _orc_ <nl> + arrow <nl> + avro <nl> + base64 <nl> + brotli <nl> + capnproto <nl> + client <nl> + ddl_dictionaries <nl> + h3 <nl> + hashing <nl> + hdfs <nl> + java_hash <nl> + json <nl> + limit_memory <nl> + live_view <nl> + memory_leak <nl> + memory_limit <nl> + mysql <nl> + odbc <nl> + parallel_alter <nl> + parquet <nl> + protobuf <nl> + secure <nl> + sha256 <nl> <nl> # Not sure why these two fail even in sequential mode . Disabled for now <nl> # to make some progress . <nl> TESTS_TO_SKIP = ( <nl> 01460_DistributedFilesToInsert <nl> ) <nl> <nl> - time clickhouse - test - j 8 - - no - long - - testname - - shard - - zookeeper - - skip " $ { TESTS_TO_SKIP [ @ ] } " 2 > & 1 | ts ' % Y - % m - % d % H : % M : % S ' | tee " $ FASTTEST_OUTPUT / test_log . txt " <nl> + time clickhouse - test - j 8 - - order = random - - no - long - - testname - - shard - - zookeeper - - skip " $ { TESTS_TO_SKIP [ @ ] } " 2 > & 1 | ts ' % Y - % m - % d % H : % M : % S ' | tee " $ FASTTEST_OUTPUT / test_log . txt " <nl> <nl> # substr is to remove semicolon after test name <nl> readarray - t FAILED_TESTS < < ( awk ' / FAIL | TIMEOUT | ERROR / { print substr ( $ 3 , 1 , length ( $ 3 ) - 1 ) } ' " $ FASTTEST_OUTPUT / test_log . txt " | tee " $ FASTTEST_OUTPUT / failed - parallel - tests . txt " ) <nl> then <nl> <nl> echo " Going to run again : $ { FAILED_TESTS [ * ] } " <nl> <nl> - clickhouse - test - - no - long - - testname - - shard - - zookeeper " $ { FAILED_TESTS [ @ ] } " 2 > & 1 | ts ' % Y - % m - % d % H : % M : % S ' | tee - a " $ FASTTEST_OUTPUT / test_log . txt " <nl> + clickhouse - test - - order = random - - no - long - - testname - - shard - - zookeeper " $ { FAILED_TESTS [ @ ] } " 2 > & 1 | ts ' % Y - % m - % d % H : % M : % S ' | tee - a " $ FASTTEST_OUTPUT / test_log . txt " <nl> else <nl> echo " No failed tests " <nl> fi <nl> mmm a / docker / test / integration / runner / Dockerfile <nl> ppp b / docker / test / integration / runner / Dockerfile <nl> RUN apt - get update \ <nl> ENV TZ = Europe / Moscow <nl> RUN ln - snf / usr / share / zoneinfo / $ TZ / etc / localtime & & echo $ TZ > / etc / timezone <nl> <nl> - RUN python3 - m pip install urllib3 = = 1 . 23 pytest docker - compose = = 1 . 22 . 0 docker dicttoxml kazoo PyMySQL psycopg2 = = 2 . 7 . 5 pymongo tzlocal kafka - python protobuf redis aerospike pytest - timeout minio grpcio grpcio - tools cassandra - driver confluent - kafka avro <nl> + RUN python3 - m pip install \ <nl> + PyMySQL \ <nl> + aerospike \ <nl> + avro \ <nl> + cassandra - driver \ <nl> + confluent - kafka \ <nl> + dicttoxml \ <nl> + docker \ <nl> + docker - compose = = 1 . 22 . 0 \ <nl> + grpcio \ <nl> + grpcio - tools \ <nl> + kafka - python \ <nl> + kazoo \ <nl> + minio \ <nl> + protobuf \ <nl> + psycopg2 - binary = = 2 . 7 . 5 \ <nl> + pymongo \ <nl> + pytest \ <nl> + pytest - timeout \ <nl> + redis \ <nl> + tzlocal \ <nl> + urllib3 <nl> <nl> ENV DOCKER_CHANNEL stable <nl> ENV DOCKER_VERSION 17 . 09 . 1 - ce <nl> mmm a / docker / test / stress / run . sh <nl> ppp b / docker / test / stress / run . sh <nl> function start ( ) <nl> # for clickhouse - server ( via service ) <nl> echo " ASAN_OPTIONS = ' malloc_context_size = 10 verbosity = 1 allocator_release_to_os_interval_ms = 10000 ' " > > / etc / environment <nl> # for clickhouse - client <nl> - export ASAN_OPTIONS = ' malloc_context_size = 10 verbosity = 1 allocator_release_to_os_interval_ms = 10000 ' <nl> + export ASAN_OPTIONS = ' malloc_context_size = 10 allocator_release_to_os_interval_ms = 10000 ' <nl> <nl> start <nl> <nl> mmm a / docker / test / stress / stress <nl> ppp b / docker / test / stress / stress <nl> def get_options ( i ) : <nl> options = " " <nl> if 0 < i : <nl> options + = " - - order = random " <nl> + <nl> if i % 2 = = 1 : <nl> options + = " - - db - engine = Ordinary " <nl> + <nl> + # If database name is not specified , new database is created for each functional test . <nl> + # Run some threads with one database for all tests . <nl> + if i % 3 = = 1 : <nl> + options + = " - - database = test_ { } " . format ( i ) <nl> + <nl> + if i = = 13 : <nl> + options + = " - - client - option = ' memory_tracker_fault_probability = 0 . 00001 ' " <nl> + <nl> return options <nl> <nl> <nl> mmm a / docs / en / engines / table - engines / mergetree - family / replication . md <nl> ppp b / docs / en / engines / table - engines / mergetree - family / replication . md <nl> CREATE TABLE table_name <nl> <nl> < / details > <nl> <nl> - As the example shows , these parameters can contain substitutions in curly brackets . The substituted values are taken from the ‘ macros ’ section of the configuration file . Example : <nl> + As the example shows , these parameters can contain substitutions in curly brackets . The substituted values are taken from the « [ macros ] ( . . / . . / . . / operations / server - configuration - parameters / settings / # macros ) section of the configuration file . <nl> + <nl> + Example : <nl> <nl> ` ` ` xml <nl> < macros > <nl> In this case , the path consists of the following parts : <nl> ` table_name ` is the name of the node for the table in ZooKeeper . It is a good idea to make it the same as the table name . It is defined explicitly , because in contrast to the table name , it doesn ’ t change after a RENAME query . <nl> * HINT * : you could add a database name in front of ` table_name ` as well . E . g . ` db_name . table_name ` <nl> <nl> + The two built - in substitutions ` { database } ` and ` { table } ` can be used , they expand into the table name and the database name respectively ( unless these macros are defined in the ` macros ` section ) . So the zookeeper path can be specified as ` ' / clickhouse / tables / { layer } - { shard } / { database } / { table } ' ` . <nl> + Be careful with table renames when using these built - in substitutions . The path in Zookeeper cannot be changed , and when the table is renamed , the macros will expand into a different path , the table will refer to a path that does not exist in Zookeeper , and will go into read - only mode . <nl> + <nl> The replica name identifies different replicas of the same table . You can use the server name for this , as in the example . The name only needs to be unique within each shard . <nl> <nl> You can define the parameters explicitly instead of using substitutions . This might be convenient for testing and for configuring small clusters . However , you can ’ t use distributed DDL queries ( ` ON CLUSTER ` ) in this case . <nl> mmm a / docs / ru / engines / table - engines / mergetree - family / replication . md <nl> ppp b / docs / ru / engines / table - engines / mergetree - family / replication . md <nl> CREATE TABLE table_name <nl> <nl> < / details > <nl> <nl> - Как видно в примере , эти параметры могут содержать подстановки в фигурных скобках . Подставляемые значения достаются из конфигурационного файла , из секции ` macros ` . Пример : <nl> + Как видно в примере , эти параметры могут содержать подстановки в фигурных скобках . Подставляемые значения достаются из конфигурационного файла , из секции « [ macros ] ( . . / . . / . . / operations / server - configuration - parameters / settings / # macros ) » . <nl> + <nl> + Пример : <nl> <nl> ` ` ` xml <nl> < macros > <nl> CREATE TABLE table_name <nl> ` table_name ` - имя узла для таблицы в ZooKeeper . Разумно делать его таким же , как имя таблицы . Оно указывается явно , так как , в отличие от имени таблицы , оно не меняется после запроса RENAME . <nl> * Подсказка * : можно также указать имя базы данных перед ` table_name ` , например ` db_name . table_name ` <nl> <nl> + Можно использовать две встроенных подстановки ` { database } ` и ` { table } ` , они раскрываются в имя таблицы и в имя базы данных соответственно ( если эти подстановки не переопределены в секции ` macros ` ) . Т . о . Zookeeper путь можно задать как ` ' / clickhouse / tables / { layer } - { shard } / { database } / { table } ' ` . <nl> + Будьте осторожны с переименованиями таблицы при использовании этих автоматических подстановок . Путь в Zookeeper - е нельзя изменить , а подстановка при переименовании таблицы раскроется в другой путь , таблица будет обращаться к несуществующему в Zookeeper - е пути и перейдет в режим только для чтения . <nl> + <nl> Имя реплики — то , что идентифицирует разные реплики одной и той же таблицы . Можно использовать для него имя сервера , как показано в примере . Впрочем , достаточно , чтобы имя было уникально лишь в пределах каждого шарда . <nl> <nl> Можно не использовать подстановки , а указать соответствующие параметры явно . Это может быть удобным для тестирования и при настройке маленьких кластеров . Однако в этом случае нельзя пользоваться распределенными DDL - запросами ( ` ON CLUSTER ` ) . <nl> mmm a / docs / ru / operations / server - configuration - parameters / settings . md <nl> ppp b / docs / ru / operations / server - configuration - parameters / settings . md <nl> ClickHouse проверяет условия для ` min_part_size ` и ` min_part <nl> <nl> Можно не указывать , если реплицируемых таблицы не используются . <nl> <nl> - Подробнее смотрите в разделе « [ Создание реплицируемых таблиц ] ( . . / . . / operations / server - configuration - parameters / settings . md ) » . <nl> + Подробнее смотрите в разделе « [ Создание реплицируемых таблиц ] ( . . / . . / engines / table - engines / mergetree - family / replication . md ) » . <nl> <nl> * * Пример * * <nl> <nl> mmm a / docs / ru / operations / settings / settings . md <nl> ppp b / docs / ru / operations / settings / settings . md <nl> ClickHouse генерирует исключение <nl> <nl> # # insert_quorum_timeout { # settings - insert_quorum_timeout } <nl> <nl> - Время ожидания кворумной записи в секундах . Если время прошло , а запись так не состоялась , то ClickHouse сгенерирует исключение и клиент должен повторить запрос на запись того же блока на эту же или любую другую реплику . <nl> + Время ожидания кворумной записи в миллисекундах . Если время прошло , а запись так не состоялась , то ClickHouse сгенерирует исключение и клиент должен повторить запрос на запись того же блока на эту же или любую другую реплику . <nl> <nl> - Значение по умолчанию : 60 секунд . <nl> + Значение по умолчанию : 600000 миллисекунд ( 10 минут ) . <nl> <nl> См . также : <nl> <nl> mmm a / programs / client / Client . cpp <nl> ppp b / programs / client / Client . cpp <nl> class Client : public Poco : : Util : : Application <nl> } <nl> catch ( . . . ) <nl> { <nl> + / / Some functions ( e . g . protocol parsers ) don ' t throw , but <nl> + / / set last_exception instead , so we ' ll also do it here for <nl> + / / uniformity . <nl> last_exception_received_from_server = std : : make_unique < Exception > ( getCurrentExceptionMessage ( true ) , getCurrentExceptionCode ( ) ) ; <nl> received_exception_from_server = true ; <nl> + } <nl> + <nl> + if ( received_exception_from_server ) <nl> + { <nl> fmt : : print ( stderr , " Error on processing query ' { } ' : { } \ n " , <nl> ast_to_process - > formatForErrorMessage ( ) , <nl> last_exception_received_from_server - > message ( ) ) ; <nl> class Client : public Poco : : Util : : Application <nl> { <nl> / / Probably the server is dead because we found an assertion <nl> / / failure . Fail fast . <nl> + fmt : : print ( stderr , " Lost connection to the server \ n " ) ; <nl> return begin ; <nl> } <nl> <nl> + / / The server is still alive so we ' re going to continue fuzzing . <nl> + / / Determine what we ' re going to use as the starting AST . <nl> if ( received_exception_from_server ) <nl> { <nl> - / / Query completed with error , ignore it and fuzz again . <nl> - fprintf ( stderr , " Got error , will fuzz again \ n " ) ; <nl> - <nl> + / / Query completed with error , keep the previous starting AST . <nl> + / / Also discard the exception that we now know to be non - fatal , <nl> + / / so that it doesn ' t influence the exit code . <nl> + last_exception_received_from_server . reset ( nullptr ) ; <nl> received_exception_from_server = false ; <nl> - last_exception_received_from_server . reset ( ) ; <nl> - <nl> - continue ; <nl> } <nl> else if ( ast_to_process - > formatForErrorMessage ( ) . size ( ) > 500 ) <nl> { <nl> / / ast too long , start from original ast <nl> - fprintf ( stderr , " current ast too long , won ' t elaborate \ n " ) ; <nl> + fprintf ( stderr , " Current AST is too long , discarding it and using the original AST as a start \ n " ) ; <nl> fuzz_base = orig_ast ; <nl> } <nl> else <nl> { <nl> / / fuzz starting from this successful query <nl> - fprintf ( stderr , " using this ast as etalon \ n " ) ; <nl> + fprintf ( stderr , " Query succeeded , using this AST as a start \ n " ) ; <nl> fuzz_base = ast_to_process ; <nl> } <nl> } <nl> mmm a / src / Common / Exception . cpp <nl> ppp b / src / Common / Exception . cpp <nl> <nl> <nl> # include < string . h > <nl> # include < cxxabi . h > <nl> + # include < cstdlib > <nl> # include < Poco / String . h > <nl> # include < common / logger_useful . h > <nl> # include < IO / WriteHelpers . h > <nl> namespace ErrorCodes <nl> Exception : : Exception ( const std : : string & msg , int code ) <nl> : Poco : : Exception ( msg , code ) <nl> { <nl> - / / In debug builds , treat LOGICAL_ERROR as an assertion failure . <nl> + / / In debug builds and builds with sanitizers , treat LOGICAL_ERROR as an assertion failure . <nl> / / Log the message before we fail . <nl> - # ifndef NDEBUG <nl> + # ifdef ABORT_ON_LOGICAL_ERROR <nl> if ( code = = ErrorCodes : : LOGICAL_ERROR ) <nl> { <nl> - LOG_ERROR ( & Poco : : Logger : : root ( ) , " Logical error : ' { } ' . " , msg ) ; <nl> - assert ( false ) ; <nl> + LOG_FATAL ( & Poco : : Logger : : root ( ) , " Logical error : ' { } ' . " , msg ) ; <nl> + abort ( ) ; <nl> } <nl> # endif <nl> } <nl> mmm a / src / Common / Exception . h <nl> ppp b / src / Common / Exception . h <nl> <nl> <nl> # include < fmt / format . h > <nl> <nl> + # if ! defined ( NDEBUG ) | | defined ( ADDRESS_SANITIZER ) | | defined ( THREAD_SANITIZER ) | | defined ( MEMORY_SANITIZER ) | | defined ( UNDEFINED_BEHAVIOR_SANITIZER ) <nl> + # define ABORT_ON_LOGICAL_ERROR <nl> + # endif <nl> + <nl> namespace Poco { class Logger ; } <nl> <nl> <nl> mmm a / src / Common / tests / gtest_rw_lock . cpp <nl> ppp b / src / Common / tests / gtest_rw_lock . cpp <nl> TEST ( Common , RWLockRecursive ) <nl> <nl> auto lock2 = fifo_lock - > getLock ( RWLockImpl : : Read , " q2 " ) ; <nl> <nl> + # ifndef ABORT_ON_LOGICAL_ERROR <nl> + / / / It throws LOGICAL_ERROR <nl> EXPECT_ANY_THROW ( { fifo_lock - > getLock ( RWLockImpl : : Write , " q2 " ) ; } ) ; <nl> + # endif <nl> } <nl> <nl> fifo_lock - > getLock ( RWLockImpl : : Write , " q2 " ) ; <nl> mmm a / src / Interpreters / DDLWorker . cpp <nl> ppp b / src / Interpreters / DDLWorker . cpp <nl> void DDLWorker : : processTask ( DDLTask & task ) <nl> storage = DatabaseCatalog : : instance ( ) . tryGetTable ( table_id , context ) ; <nl> } <nl> <nl> - / / / For some reason we check consistency of cluster definition only <nl> - / / / in case of ALTER query , but not in case of CREATE / DROP etc . <nl> - / / / It ' s strange , but this behaviour exits for a long and we cannot change it . <nl> - if ( storage & & query_with_table - > as < ASTAlterQuery > ( ) ) <nl> - checkShardConfig ( query_with_table - > table , task , storage ) ; <nl> - <nl> if ( storage & & taskShouldBeExecutedOnLeader ( rewritten_ast , storage ) & & ! is_circular_replicated ) <nl> tryExecuteQueryOnLeaderReplica ( task , storage , rewritten_query , task . entry_path , zookeeper ) ; <nl> else <nl> bool DDLWorker : : taskShouldBeExecutedOnLeader ( const ASTPtr ast_ddl , const Storage <nl> return storage - > supportsReplication ( ) ; <nl> } <nl> <nl> - <nl> - void DDLWorker : : checkShardConfig ( const String & table , const DDLTask & task , StoragePtr storage ) const <nl> - { <nl> - const auto & shard_info = task . cluster - > getShardsInfo ( ) . at ( task . host_shard_num ) ; <nl> - bool config_is_replicated_shard = shard_info . hasInternalReplication ( ) ; <nl> - <nl> - if ( dynamic_cast < const StorageDistributed * > ( storage . get ( ) ) ) <nl> - { <nl> - LOG_TRACE ( log , " Table { } is distributed , skip checking config . " , backQuote ( table ) ) ; <nl> - return ; <nl> - } <nl> - <nl> - if ( storage - > supportsReplication ( ) & & ! config_is_replicated_shard ) <nl> - { <nl> - throw Exception ( ErrorCodes : : INCONSISTENT_CLUSTER_DEFINITION , <nl> - " Table { } is replicated , but shard # { } isn ' t replicated according to its cluster definition . " <nl> - " Possibly < internal_replication > true < / internal_replication > is forgotten in the cluster config . " , <nl> - backQuote ( table ) , task . host_shard_num + 1 ) ; <nl> - } <nl> - <nl> - if ( ! storage - > supportsReplication ( ) & & config_is_replicated_shard ) <nl> - { <nl> - throw Exception ( ErrorCodes : : INCONSISTENT_CLUSTER_DEFINITION , <nl> - " Table { } isn ' t replicated , but shard # { } is replicated according to its cluster definition " , <nl> - backQuote ( table ) , task . host_shard_num + 1 ) ; <nl> - } <nl> - } <nl> - <nl> - <nl> bool DDLWorker : : tryExecuteQueryOnLeaderReplica ( <nl> DDLTask & task , <nl> StoragePtr storage , <nl> mmm a / src / Interpreters / DDLWorker . h <nl> ppp b / src / Interpreters / DDLWorker . h <nl> class DDLWorker <nl> / / / Check that query should be executed on leader replica only <nl> static bool taskShouldBeExecutedOnLeader ( const ASTPtr ast_ddl , StoragePtr storage ) ; <nl> <nl> - / / / Check that shard has consistent config with table <nl> - void checkShardConfig ( const String & table , const DDLTask & task , StoragePtr storage ) const ; <nl> - <nl> / / / Executes query only on leader replica in case of replicated table . <nl> / / / Queries like TRUNCATE / ALTER . . . / OPTIMIZE have to be executed only on one node of shard . <nl> / / / Most of these queries can be executed on non - leader replica , but actually they still send <nl> mmm a / src / Interpreters / ExpressionAnalyzer . cpp <nl> ppp b / src / Interpreters / ExpressionAnalyzer . cpp <nl> bool ExpressionAnalyzer : : makeAggregateDescriptions ( ActionsDAGPtr & actions ) <nl> aggregate . argument_names . resize ( arguments . size ( ) ) ; <nl> DataTypes types ( arguments . size ( ) ) ; <nl> <nl> + const auto & index = actions - > getIndex ( ) ; <nl> for ( size_t i = 0 ; i < arguments . size ( ) ; + + i ) <nl> { <nl> getRootActionsNoMakeSet ( arguments [ i ] , true , actions ) ; <nl> const std : : string & name = arguments [ i ] - > getColumnName ( ) ; <nl> - types [ i ] = actions - > getIndex ( ) . find ( name ) - > second - > result_type ; <nl> + <nl> + auto it = index . find ( name ) ; <nl> + if ( it = = index . end ( ) ) <nl> + throw Exception ( ErrorCodes : : UNKNOWN_IDENTIFIER , " Unknown identifier ( in aggregate function ' { } ' ) : { } " , node - > name , name ) ; <nl> + <nl> + types [ i ] = it - > second - > result_type ; <nl> aggregate . argument_names [ i ] = name ; <nl> } <nl> <nl> mmm a / src / Parsers / ASTCreateQuery . cpp <nl> ppp b / src / Parsers / ASTCreateQuery . cpp <nl> ASTPtr ASTColumns : : clone ( ) const <nl> res - > set ( res - > indices , indices - > clone ( ) ) ; <nl> if ( constraints ) <nl> res - > set ( res - > constraints , constraints - > clone ( ) ) ; <nl> + if ( primary_key ) <nl> + res - > set ( res - > primary_key , primary_key - > clone ( ) ) ; <nl> <nl> return res ; <nl> } <nl> mmm a / src / Parsers / ASTCreateQuery . h <nl> ppp b / src / Parsers / ASTCreateQuery . h <nl> class ASTColumns : public IAST <nl> ASTExpressionList * columns = nullptr ; <nl> ASTExpressionList * indices = nullptr ; <nl> ASTExpressionList * constraints = nullptr ; <nl> + IAST * primary_key = nullptr ; <nl> <nl> String getID ( char ) const override { return " Columns definition " ; } <nl> <nl> mmm a / src / Parsers / ParserCreateQuery . cpp <nl> ppp b / src / Parsers / ParserCreateQuery . cpp <nl> <nl> namespace DB <nl> { <nl> <nl> + namespace ErrorCodes <nl> + { <nl> + extern const int BAD_ARGUMENTS ; <nl> + } <nl> + <nl> bool ParserNestedTable : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expected ) <nl> { <nl> ParserToken open ( TokenType : : OpeningRoundBracket ) ; <nl> bool ParserTablePropertyDeclaration : : parseImpl ( Pos & pos , ASTPtr & node , Expecte <nl> { <nl> ParserKeyword s_index ( " INDEX " ) ; <nl> ParserKeyword s_constraint ( " CONSTRAINT " ) ; <nl> + ParserKeyword s_primary_key ( " PRIMARY KEY " ) ; <nl> <nl> ParserIndexDeclaration index_p ; <nl> ParserConstraintDeclaration constraint_p ; <nl> ParserColumnDeclaration column_p { true , true } ; <nl> + ParserExpression primary_key_p ; <nl> <nl> ASTPtr new_node = nullptr ; <nl> <nl> bool ParserTablePropertyDeclaration : : parseImpl ( Pos & pos , ASTPtr & node , Expecte <nl> if ( ! constraint_p . parse ( pos , new_node , expected ) ) <nl> return false ; <nl> } <nl> + else if ( s_primary_key . ignore ( pos , expected ) ) <nl> + { <nl> + if ( ! primary_key_p . parse ( pos , new_node , expected ) ) <nl> + return false ; <nl> + } <nl> else <nl> { <nl> if ( ! column_p . parse ( pos , new_node , expected ) ) <nl> bool ParserTablePropertiesDeclarationList : : parseImpl ( Pos & pos , ASTPtr & node , E <nl> ASTPtr columns = std : : make_shared < ASTExpressionList > ( ) ; <nl> ASTPtr indices = std : : make_shared < ASTExpressionList > ( ) ; <nl> ASTPtr constraints = std : : make_shared < ASTExpressionList > ( ) ; <nl> + ASTPtr primary_key ; <nl> <nl> for ( const auto & elem : list - > children ) <nl> { <nl> bool ParserTablePropertiesDeclarationList : : parseImpl ( Pos & pos , ASTPtr & node , E <nl> indices - > children . push_back ( elem ) ; <nl> else if ( elem - > as < ASTConstraintDeclaration > ( ) ) <nl> constraints - > children . push_back ( elem ) ; <nl> + else if ( elem - > as < ASTIdentifier > ( ) | | elem - > as < ASTFunction > ( ) ) <nl> + { <nl> + if ( primary_key ) <nl> + { <nl> + throw Exception ( " Multiple primary keys are not allowed . " , ErrorCodes : : BAD_ARGUMENTS ) ; <nl> + } <nl> + primary_key = elem ; <nl> + } <nl> else <nl> return false ; <nl> } <nl> bool ParserTablePropertiesDeclarationList : : parseImpl ( Pos & pos , ASTPtr & node , E <nl> res - > set ( res - > indices , indices ) ; <nl> if ( ! constraints - > children . empty ( ) ) <nl> res - > set ( res - > constraints , constraints ) ; <nl> + if ( primary_key ) <nl> + res - > set ( res - > primary_key , primary_key ) ; <nl> <nl> node = res ; <nl> <nl> bool ParserCreateTableQuery : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expe <nl> query - > set ( query - > columns_list , columns_list ) ; <nl> query - > set ( query - > storage , storage ) ; <nl> <nl> + if ( query - > storage & & query - > columns_list & & query - > columns_list - > primary_key ) <nl> + { <nl> + if ( query - > storage - > primary_key ) <nl> + { <nl> + throw Exception ( " Multiple primary keys are not allowed . " , ErrorCodes : : BAD_ARGUMENTS ) ; <nl> + } <nl> + query - > storage - > primary_key = query - > columns_list - > primary_key ; <nl> + } <nl> + <nl> tryGetIdentifierNameInto ( as_database , query - > as_database ) ; <nl> tryGetIdentifierNameInto ( as_table , query - > as_table ) ; <nl> query - > set ( query - > select , select ) ; <nl> mmm a / src / Parsers / ParserCreateQuery . h <nl> ppp b / src / Parsers / ParserCreateQuery . h <nl> class ParserCreateDictionaryQuery : public IParserBase <nl> * . . . <nl> * INDEX name1 expr TYPE type1 ( args ) GRANULARITY value , <nl> * . . . <nl> + * PRIMARY KEY expr <nl> * ) ENGINE = engine <nl> * <nl> * Or : <nl> mmm a / src / Storages / StorageMergeTree . cpp <nl> ppp b / src / Storages / StorageMergeTree . cpp <nl> namespace ErrorCodes <nl> extern const int INCORRECT_DATA ; <nl> extern const int CANNOT_ASSIGN_OPTIMIZE ; <nl> extern const int TIMEOUT_EXCEEDED ; <nl> + extern const int UNKNOWN_POLICY ; <nl> } <nl> <nl> namespace ActionLocks <nl> void StorageMergeTree : : movePartitionToTable ( const StoragePtr & dest_table , const <nl> throw Exception ( " Destination table " + dest_table_storage - > getStorageID ( ) . getNameForLogs ( ) + <nl> " should have the same storage policy of source table " + getStorageID ( ) . getNameForLogs ( ) + " . " + <nl> getStorageID ( ) . getNameForLogs ( ) + " : " + this - > getStoragePolicy ( ) - > getName ( ) + " , " + <nl> - dest_table_storage - > getStorageID ( ) . getNameForLogs ( ) + " : " + dest_table_storage - > getStoragePolicy ( ) - > getName ( ) , ErrorCodes : : LOGICAL_ERROR ) ; <nl> + dest_table_storage - > getStorageID ( ) . getNameForLogs ( ) + " : " + dest_table_storage - > getStoragePolicy ( ) - > getName ( ) , ErrorCodes : : UNKNOWN_POLICY ) ; <nl> <nl> auto dest_metadata_snapshot = dest_table - > getInMemoryMetadataPtr ( ) ; <nl> auto metadata_snapshot = getInMemoryMetadataPtr ( ) ; <nl> mmm a / src / Storages / StorageReplicatedMergeTree . cpp <nl> ppp b / src / Storages / StorageReplicatedMergeTree . cpp <nl> namespace ErrorCodes <nl> extern const int CANNOT_ASSIGN_ALTER ; <nl> extern const int DIRECTORY_ALREADY_EXISTS ; <nl> extern const int ILLEGAL_TYPE_OF_ARGUMENT ; <nl> + extern const int UNKNOWN_POLICY ; <nl> } <nl> <nl> namespace ActionLocks <nl> void StorageReplicatedMergeTree : : checkTableStructure ( const String & zookeeper_pr <nl> } <nl> <nl> void StorageReplicatedMergeTree : : setTableStructure ( <nl> - ColumnsDescription new_columns , const ReplicatedMergeTreeTableMetadata : : Diff & metadata_diff ) <nl> + ColumnsDescription new_columns , const ReplicatedMergeTreeTableMetadata : : Diff & metadata_diff ) <nl> { <nl> StorageInMemoryMetadata new_metadata = getInMemoryMetadata ( ) ; <nl> StorageInMemoryMetadata old_metadata = getInMemoryMetadata ( ) ; <nl> ColumnsDescription new_columns , const ReplicatedMergeTreeTableMetadata : : Diff & m <nl> <nl> if ( ! metadata_diff . empty ( ) ) <nl> { <nl> - auto parse_key_expr = [ ] ( const String & key_expr ) <nl> + auto parse_key_expr = [ ] ( const String & key_expr ) <nl> { <nl> ParserNotEmptyExpressionList parser ( false ) ; <nl> auto new_sorting_key_expr_list = parseQuery ( parser , key_expr , 0 , DBMS_DEFAULT_MAX_PARSER_DEPTH ) ; <nl> void StorageReplicatedMergeTree : : alter ( <nl> <nl> ReplicatedMergeTreeTableMetadata future_metadata_in_zk ( * this , current_metadata ) ; <nl> if ( ast_to_str ( future_metadata . sorting_key . definition_ast ) ! = ast_to_str ( current_metadata - > sorting_key . definition_ast ) ) <nl> - future_metadata_in_zk . sorting_key = serializeAST ( * future_metadata . sorting_key . expression_list_ast ) ; <nl> + { <nl> + / / / We serialize definition_ast as list , because code which apply ALTER ( setTableStructure ) expect serialized non empty expression <nl> + / / / list here and we cannot change this representation for compatibility . Also we have preparsed AST ` sorting_key . expression_list_ast ` <nl> + / / / in KeyDescription , but it contain version column for VersionedCollapsingMergeTree , which shouldn ' t be defined as a part of key definition AST . <nl> + / / / So the best compatible way is just to convert definition_ast to list and serialize it . In all other places key . expression_list_ast should be used . <nl> + future_metadata_in_zk . sorting_key = serializeAST ( * extractKeyExpressionList ( future_metadata . sorting_key . definition_ast ) ) ; <nl> + } <nl> <nl> if ( ast_to_str ( future_metadata . sampling_key . definition_ast ) ! = ast_to_str ( current_metadata - > sampling_key . definition_ast ) ) <nl> - future_metadata_in_zk . sampling_expression = serializeAST ( * future_metadata . sampling_key . expression_list_ast ) ; <nl> + future_metadata_in_zk . sampling_expression = serializeAST ( * extractKeyExpressionList ( future_metadata . sampling_key . definition_ast ) ) ; <nl> <nl> if ( ast_to_str ( future_metadata . partition_key . definition_ast ) ! = ast_to_str ( current_metadata - > partition_key . definition_ast ) ) <nl> - future_metadata_in_zk . partition_key = serializeAST ( * future_metadata . partition_key . expression_list_ast ) ; <nl> + future_metadata_in_zk . partition_key = serializeAST ( * extractKeyExpressionList ( future_metadata . partition_key . definition_ast ) ) ; <nl> <nl> if ( ast_to_str ( future_metadata . table_ttl . definition_ast ) ! = ast_to_str ( current_metadata - > table_ttl . definition_ast ) ) <nl> { <nl> void StorageReplicatedMergeTree : : movePartitionToTable ( const StoragePtr & dest_ta <nl> throw Exception ( " Destination table " + dest_table_storage - > getStorageID ( ) . getNameForLogs ( ) + <nl> " should have the same storage policy of source table " + getStorageID ( ) . getNameForLogs ( ) + " . " + <nl> getStorageID ( ) . getNameForLogs ( ) + " : " + this - > getStoragePolicy ( ) - > getName ( ) + " , " + <nl> - getStorageID ( ) . getNameForLogs ( ) + " : " + dest_table_storage - > getStoragePolicy ( ) - > getName ( ) , ErrorCodes : : LOGICAL_ERROR ) ; <nl> + getStorageID ( ) . getNameForLogs ( ) + " : " + dest_table_storage - > getStoragePolicy ( ) - > getName ( ) , ErrorCodes : : UNKNOWN_POLICY ) ; <nl> <nl> auto dest_metadata_snapshot = dest_table - > getInMemoryMetadataPtr ( ) ; <nl> auto metadata_snapshot = getInMemoryMetadataPtr ( ) ; <nl> mmm a / tests / clickhouse - test <nl> ppp b / tests / clickhouse - test <nl> def run_tests_array ( all_tests_with_params ) : <nl> <nl> if os . path . isfile ( stdout_file ) : <nl> print ( " , result : \ n " ) <nl> - print ( open ( stdout_file ) . read ( ) ) <nl> + print ( ' \ n ' . join ( open ( stdout_file ) . read ( ) . split ( ' \ n ' ) [ : 100 ] ) ) <nl> <nl> elif stderr : <nl> failures + = 1 <nl> failures_chain + = 1 <nl> print ( MSG_FAIL , end = ' ' ) <nl> print_test_time ( total_time ) <nl> - print ( " - having stderror : \ n { } " . format ( stderr ) ) <nl> + print ( " - having stderror : \ n { } " . format ( <nl> + ' \ n ' . join ( stderr . split ( ' \ n ' ) [ : 100 ] ) ) ) <nl> elif ' Exception ' in stdout : <nl> failures + = 1 <nl> failures_chain + = 1 <nl> print ( MSG_FAIL , end = ' ' ) <nl> print_test_time ( total_time ) <nl> - print ( " - having exception : \ n { } " . format ( stdout ) ) <nl> + print ( " - having exception : \ n { } " . format ( <nl> + ' \ n ' . join ( stdout . split ( ' \ n ' ) [ : 100 ] ) ) ) <nl> elif not os . path . isfile ( reference_file ) : <nl> print ( MSG_UNKNOWN , end = ' ' ) <nl> print_test_time ( total_time ) <nl> new file mode 100644 <nl> index 00000000000 . . e5a0d9b4834 <nl> mmm / dev / null <nl> ppp b / tests / integration / test_alter_on_mixed_type_cluster / __init__ . py <nl> @ @ - 0 , 0 + 1 @ @ <nl> + # ! / usr / bin / env python3 <nl> new file mode 100644 <nl> index 00000000000 . . dc678a44b77 <nl> mmm / dev / null <nl> ppp b / tests / integration / test_alter_on_mixed_type_cluster / configs / remote_servers . xml <nl> <nl> + < yandex > <nl> + < remote_servers > <nl> + < test_cluster_mixed > <nl> + < shard > <nl> + < internal_replication > true < / internal_replication > <nl> + < replica > <nl> + < host > node1 < / host > <nl> + < port > 9000 < / port > <nl> + < / replica > <nl> + < replica > <nl> + < host > node2 < / host > <nl> + < port > 9000 < / port > <nl> + < / replica > <nl> + < / shard > <nl> + < shard > <nl> + < internal_replication > false < / internal_replication > <nl> + < replica > <nl> + < host > node3 < / host > <nl> + < port > 9000 < / port > <nl> + < / replica > <nl> + < replica > <nl> + < host > node4 < / host > <nl> + < port > 9000 < / port > <nl> + < / replica > <nl> + < / shard > <nl> + < / test_cluster_mixed > <nl> + < / remote_servers > <nl> + < / yandex > <nl> new file mode 100644 <nl> index 00000000000 . . 269072f239a <nl> mmm / dev / null <nl> ppp b / tests / integration / test_alter_on_mixed_type_cluster / test . py <nl> <nl> + import pytest <nl> + <nl> + from helpers . cluster import ClickHouseCluster <nl> + from helpers . test_tools import assert_eq_with_retry <nl> + <nl> + cluster = ClickHouseCluster ( __file__ ) <nl> + <nl> + node1 = cluster . add_instance ( ' node1 ' , main_configs = [ ' configs / remote_servers . xml ' ] , with_zookeeper = True ) <nl> + node2 = cluster . add_instance ( ' node2 ' , main_configs = [ ' configs / remote_servers . xml ' ] , with_zookeeper = True ) <nl> + node3 = cluster . add_instance ( ' node3 ' , main_configs = [ ' configs / remote_servers . xml ' ] , with_zookeeper = True ) <nl> + node4 = cluster . add_instance ( ' node4 ' , main_configs = [ ' configs / remote_servers . xml ' ] , with_zookeeper = True ) <nl> + <nl> + <nl> + <nl> + @ pytest . fixture ( scope = " module " ) <nl> + def started_cluster ( ) : <nl> + try : <nl> + cluster . start ( ) <nl> + <nl> + for node in [ node1 , node2 ] : <nl> + node . query ( ' ' ' <nl> + CREATE TABLE test_table_replicated ( date Date , id UInt32 , value Int32 ) <nl> + ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / 0 / sometable ' , ' { replica } ' ) ORDER BY id ; <nl> + ' ' ' . format ( replica = node . name ) ) <nl> + node . query ( ' ' ' CREATE TABLE test_table ( date Date , id UInt32 , value Int32 ) ENGINE = MergeTree ORDER BY id ' ' ' ) <nl> + <nl> + for node in [ node3 , node4 ] : <nl> + node . query ( ' ' ' <nl> + CREATE TABLE test_table_replicated ( date Date , id UInt32 , value Int32 ) <nl> + ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / 1 / someotable ' , ' { replica } ' ) ORDER BY id ; <nl> + ' ' ' . format ( replica = node . name ) ) <nl> + <nl> + node . query ( ' ' ' CREATE TABLE test_table ( date Date , id UInt32 , value Int32 ) ENGINE = MergeTree ORDER BY id ' ' ' ) <nl> + <nl> + yield cluster <nl> + <nl> + finally : <nl> + cluster . shutdown ( ) <nl> + <nl> + <nl> + def test_alter_on_cluter_non_replicated ( started_cluster ) : <nl> + for node in [ node1 , node2 , node3 , node4 ] : <nl> + node . query ( " INSERT INTO test_table VALUES ( toDate ( ' 2019 - 10 - 01 ' ) , 1 , 1 ) " ) <nl> + <nl> + assert node1 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 1 \ n " <nl> + assert node2 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 1 \ n " <nl> + assert node3 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 1 \ n " <nl> + assert node4 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 1 \ n " <nl> + <nl> + node1 . query ( " ALTER TABLE test_table ON CLUSTER ' test_cluster_mixed ' MODIFY COLUMN date DateTime " ) <nl> + <nl> + assert node1 . query ( " SELECT date FROM test_table " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + assert node2 . query ( " SELECT date FROM test_table " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + assert node3 . query ( " SELECT date FROM test_table " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + assert node4 . query ( " SELECT date FROM test_table " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + <nl> + node3 . query ( " ALTER TABLE test_table ON CLUSTER ' test_cluster_mixed ' MODIFY COLUMN value String " ) <nl> + <nl> + for node in [ node1 , node2 , node3 , node4 ] : <nl> + node . query ( " INSERT INTO test_table VALUES ( toDateTime ( ' 2019 - 10 - 02 00 : 00 : 00 ' ) , 2 , ' Hello ' ) " ) <nl> + <nl> + assert node1 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 2 \ n " <nl> + assert node2 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 2 \ n " <nl> + assert node3 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 2 \ n " <nl> + assert node4 . query ( " SELECT COUNT ( ) FROM test_table " ) = = " 2 \ n " <nl> + <nl> + <nl> + def test_alter_replicated_on_cluster ( started_cluster ) : <nl> + for node in [ node1 , node3 ] : <nl> + node . query ( " INSERT INTO test_table_replicated VALUES ( toDate ( ' 2019 - 10 - 01 ' ) , 1 , 1 ) " ) <nl> + <nl> + for node in [ node2 , node4 ] : <nl> + node . query ( " SYSTEM SYNC REPLICA test_table_replicated " , timeout = 20 ) <nl> + <nl> + node1 . query ( " ALTER TABLE test_table_replicated ON CLUSTER ' test_cluster_mixed ' MODIFY COLUMN date DateTime " , settings = { " replication_alter_partitions_sync " : " 2 " } ) <nl> + <nl> + assert node1 . query ( " SELECT date FROM test_table_replicated " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + assert node2 . query ( " SELECT date FROM test_table_replicated " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + assert node3 . query ( " SELECT date FROM test_table_replicated " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + assert node4 . query ( " SELECT date FROM test_table_replicated " ) = = ' 2019 - 10 - 01 00 : 00 : 00 \ n ' <nl> + <nl> + node3 . query ( " ALTER TABLE test_table_replicated ON CLUSTER ' test_cluster_mixed ' MODIFY COLUMN value String " , settings = { " replication_alter_partitions_sync " : " 2 " } ) <nl> + <nl> + for node in [ node2 , node4 ] : <nl> + node . query ( " INSERT INTO test_table_replicated VALUES ( toDateTime ( ' 2019 - 10 - 02 00 : 00 : 00 ' ) , 2 , ' Hello ' ) " ) <nl> + <nl> + for node in [ node1 , node3 ] : <nl> + node . query ( " SYSTEM SYNC REPLICA test_table_replicated " , timeout = 20 ) <nl> + <nl> + assert node1 . query ( " SELECT COUNT ( ) FROM test_table_replicated " ) = = " 2 \ n " <nl> + assert node2 . query ( " SELECT COUNT ( ) FROM test_table_replicated " ) = = " 2 \ n " <nl> + assert node3 . query ( " SELECT COUNT ( ) FROM test_table_replicated " ) = = " 2 \ n " <nl> + assert node4 . query ( " SELECT COUNT ( ) FROM test_table_replicated " ) = = " 2 \ n " <nl> mmm a / tests / queries / 0_stateless / 01293_show_clusters . reference <nl> ppp b / tests / queries / 0_stateless / 01293_show_clusters . reference <nl> <nl> - test_cluster_two_shards <nl> - test_cluster_two_shards_different_databases <nl> - test_cluster_two_shards_localhost <nl> test_shard_localhost <nl> - test_shard_localhost_secure <nl> - test_unavailable_shard <nl> - test_cluster_two_shards <nl> test_shard_localhost 1 1 1 localhost : : 1 9000 1 default 0 0 <nl> mmm a / tests / queries / 0_stateless / 01293_show_clusters . sql <nl> ppp b / tests / queries / 0_stateless / 01293_show_clusters . sql <nl> <nl> - show clusters ; <nl> - show clusters like ' test % ' limit 1 ; <nl> + - - don ' t show all clusters to reduce dependency on the configuration of server <nl> + show clusters like ' test_shard % ' limit 1 ; <nl> show cluster ' test_shard_localhost ' ; <nl> new file mode 100644 <nl> index 00000000000 . . eeef902be80 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01516_create_table_primary_key . reference <nl> <nl> + 1 <nl> + 1 <nl> + 1 1 <nl> + 1 1 <nl> + 2 2 <nl> + 7 14 <nl> new file mode 100644 <nl> index 00000000000 . . 0611612f89f <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01516_create_table_primary_key . sql <nl> <nl> + DROP DATABASE IF EXISTS test_01516 ; <nl> + CREATE DATABASE test_01516 ENGINE = Ordinary ; - - Full ATTACH requires UUID with Atomic <nl> + USE test_01516 ; <nl> + <nl> + DROP TABLE IF EXISTS primary_key_test ; <nl> + <nl> + CREATE TABLE primary_key_test ( v Int32 , PRIMARY KEY ( v ) ) ENGINE = ReplacingMergeTree ORDER BY v ; <nl> + INSERT INTO primary_key_test VALUES ( 1 ) , ( 1 ) , ( 1 ) ; <nl> + DETACH TABLE primary_key_test ; <nl> + ATTACH TABLE primary_key_test ( v Int32 , PRIMARY KEY ( v ) ) ENGINE = ReplacingMergeTree ORDER BY v ; <nl> + SELECT * FROM primary_key_test FINAL ; <nl> + DROP TABLE primary_key_test ; <nl> + <nl> + CREATE TABLE primary_key_test ( v Int32 ) ENGINE = ReplacingMergeTree ORDER BY v PRIMARY KEY ( v ) ; <nl> + INSERT INTO primary_key_test VALUES ( 1 ) , ( 1 ) , ( 1 ) ; <nl> + DETACH TABLE primary_key_test ; <nl> + ATTACH TABLE primary_key_test ( v Int32 ) ENGINE = ReplacingMergeTree ORDER BY v PRIMARY KEY ( v ) ; <nl> + SELECT * FROM primary_key_test FINAL ; <nl> + DROP TABLE primary_key_test ; <nl> + <nl> + CREATE TABLE primary_key_test ( v Int32 , PRIMARY KEY ( v ) , PRIMARY KEY ( v ) ) ENGINE = ReplacingMergeTree ORDER BY v ; - - { clientError 36 ; } <nl> + <nl> + CREATE TABLE primary_key_test ( v Int32 , PRIMARY KEY ( v ) ) ENGINE = ReplacingMergeTree ORDER BY v PRIMARY KEY ( v ) ; - - { clientError 36 ; } <nl> + <nl> + CREATE TABLE primary_key_test ( v1 Int32 , v2 Int32 , PRIMARY KEY ( v1 , v2 ) ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , v2 ) ; <nl> + INSERT INTO primary_key_test VALUES ( 1 , 1 ) , ( 1 , 1 ) , ( 1 , 1 ) ; <nl> + DETACH TABLE primary_key_test ; <nl> + ATTACH TABLE primary_key_test ( v1 Int32 , v2 Int32 , PRIMARY KEY ( v1 , v2 ) ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , v2 ) ; <nl> + SELECT * FROM primary_key_test FINAL ; <nl> + DROP TABLE primary_key_test ; <nl> + <nl> + CREATE TABLE primary_key_test ( v1 Int32 , v2 Int32 ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , v2 ) PRIMARY KEY ( v1 , v2 ) ; <nl> + INSERT INTO primary_key_test VALUES ( 1 , 1 ) , ( 1 , 1 ) , ( 1 , 1 ) ; <nl> + DETACH TABLE primary_key_test ; <nl> + ATTACH TABLE primary_key_test ( v1 Int32 , v2 Int32 ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , v2 ) PRIMARY KEY ( v1 , v2 ) ; <nl> + SELECT * FROM primary_key_test FINAL ; <nl> + DROP TABLE primary_key_test ; <nl> + <nl> + CREATE TABLE primary_key_test ( v1 Int32 , v2 Int32 , PRIMARY KEY ( v1 , v2 ) , PRIMARY KEY ( v1 , v2 ) ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , v2 ) ; - - { clientError 36 ; } <nl> + <nl> + CREATE TABLE primary_key_test ( v1 Int32 , v2 Int32 , PRIMARY KEY ( v1 , v2 ) ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , v2 ) PRIMARY KEY ( v1 , v2 ) ; - - { clientError 36 ; } <nl> + <nl> + CREATE TABLE primary_key_test ( v1 Int64 , v2 Int32 , v3 String , PRIMARY KEY ( v1 , gcd ( v1 , v2 ) ) ) ENGINE = ReplacingMergeTree ORDER BY v1 ; - - { serverError 36 ; } <nl> + <nl> + CREATE TABLE primary_key_test ( v1 Int64 , v2 Int32 , v3 String , PRIMARY KEY ( v1 , gcd ( v1 , v2 ) ) ) ENGINE = ReplacingMergeTree ORDER BY ( v1 , gcd ( v1 , v2 ) ) ; <nl> + <nl> + INSERT INTO primary_key_test VALUES ( 7 , 14 , ' hello ' ) , ( 2 , 2 , ' world ' ) , ( 7 , 14 , ' duplicate ' ) ; <nl> + <nl> + SELECT v1 , v2 FROM primary_key_test FINAL ORDER BY v1 , v2 ; <nl> + <nl> + DROP TABLE primary_key_test ; <nl> + <nl> + DROP DATABASE test_01516 ; <nl> new file mode 100644 <nl> index 00000000000 . . 059d6268017 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01518_cast_nullable_virtual_system_column . reference <nl> @ @ - 0 , 0 + 1 @ @ <nl> + all tests passed <nl> new file mode 100644 <nl> index 00000000000 . . 6366bae7b37 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01518_cast_nullable_virtual_system_column . sql <nl> <nl> + SELECT database FROM system . tables WHERE database LIKE ' % ' format Null ; <nl> + SELECT database AS db FROM system . tables WHERE db LIKE ' % ' format Null ; <nl> + SELECT CAST ( database , ' String ' ) AS db FROM system . tables WHERE db LIKE ' % ' format Null ; <nl> + SELECT CAST ( ' a string ' , ' Nullable ( String ) ' ) AS str WHERE str LIKE ' % ' format Null ; <nl> + SELECT CAST ( database , ' Nullable ( String ) ' ) AS ndb FROM system . tables WHERE ndb LIKE ' % ' format Null ; <nl> + SELECT ' all tests passed ' ; <nl> + <nl> new file mode 100644 <nl> index 00000000000 . . 0d66ea1aee9 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01518_filtering_aliased_materialized_column . reference <nl> <nl> + 0 <nl> + 1 <nl> new file mode 100644 <nl> index 00000000000 . . eab5e66aaad <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01518_filtering_aliased_materialized_column . sql <nl> <nl> + DROP TABLE IF EXISTS logs ; <nl> + <nl> + CREATE TABLE logs ( <nl> + date_visited DateTime , <nl> + date Date MATERIALIZED toDate ( date_visited ) <nl> + ) ENGINE = MergeTree ( ) ORDER BY tuple ( ) ; <nl> + <nl> + SELECT count ( ) FROM logs AS plogs WHERE plogs . date = ' 2019 - 11 - 20 ' ; <nl> + <nl> + INSERT INTO logs VALUES ( ' 2019 - 11 - 20 00 : 00 : 00 ' ) ; <nl> + <nl> + SELECT count ( ) FROM logs AS plogs WHERE plogs . date = ' 2019 - 11 - 20 ' ; <nl> + <nl> + DROP TABLE logs ; <nl> new file mode 100644 <nl> index 00000000000 . . b76f42e9af4 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01518_select_in_null . reference <nl> <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> new file mode 100644 <nl> index 00000000000 . . 97061f6cde3 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01518_select_in_null . sql <nl> <nl> + DROP TABLE IF EXISTS t1 ; <nl> + <nl> + CREATE TABLE t1 ( ` cA ` String , ` c1 ` String ) ENGINE = MergeTree ORDER BY ( cA , c1 ) ; <nl> + <nl> + insert into t1 select ' AAAAAAAAAAA ' , ' BBBBBB ' ; <nl> + <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where c1 in ( select ' BBBBBB ' union all select null ) ; <nl> + <nl> + <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + select count ( ) from t1 where cast ( c1 as Nullable ( String ) ) in ( select ' BBBBBB ' union all select null ) ; <nl> + <nl> + DROP TABLE t1 ; <nl> new file mode 100644 <nl> index 00000000000 . . 4063d93d542 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01526_alter_add_and_modify_order_zookeeper . reference <nl> <nl> + 2019 - 10 - 01 a 1 aa 1 1 1 <nl> + 2019 - 10 - 01 a 1 aa 1 1 1 0 <nl> + CREATE TABLE default . table_for_alter \ n ( \ n ` d ` Date , \ n ` a ` String , \ n ` b ` UInt8 , \ n ` x ` String , \ n ` y ` Int8 , \ n ` version ` UInt64 , \ n ` sign ` Int8 DEFAULT 1 , \ n ` order ` UInt32 \ n ) \ nENGINE = ReplicatedVersionedCollapsingMergeTree ( \ ' / clickhouse / tables / 01526_alter_add / t1 \ ' , \ ' 1 \ ' , sign , version ) \ nPARTITION BY y \ nPRIMARY KEY d \ nORDER BY ( d , order ) \ nSETTINGS index_granularity = 8192 <nl> + 2019 - 10 - 01 a 1 aa 1 1 1 0 0 <nl> + 2019 - 10 - 02 b 2 bb 2 2 2 1 2 <nl> + CREATE TABLE default . table_for_alter \ n ( \ n ` d ` Date , \ n ` a ` String , \ n ` b ` UInt8 , \ n ` x ` String , \ n ` y ` Int8 , \ n ` version ` UInt64 , \ n ` sign ` Int8 DEFAULT 1 , \ n ` order ` UInt32 , \ n ` datum ` UInt32 \ n ) \ nENGINE = ReplicatedVersionedCollapsingMergeTree ( \ ' / clickhouse / tables / 01526_alter_add / t1 \ ' , \ ' 1 \ ' , sign , version ) \ nPARTITION BY y \ nPRIMARY KEY d \ nORDER BY ( d , order , datum ) \ nSETTINGS index_granularity = 8192 <nl> new file mode 100644 <nl> index 00000000000 . . b718ba199c1 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01526_alter_add_and_modify_order_zookeeper . sql <nl> <nl> + DROP TABLE IF EXISTS table_for_alter ; <nl> + <nl> + SET replication_alter_partitions_sync = 2 ; <nl> + <nl> + CREATE TABLE table_for_alter <nl> + ( <nl> + ` d ` Date , <nl> + ` a ` String , <nl> + ` b ` UInt8 , <nl> + ` x ` String , <nl> + ` y ` Int8 , <nl> + ` version ` UInt64 , <nl> + ` sign ` Int8 DEFAULT 1 <nl> + ) <nl> + ENGINE = ReplicatedVersionedCollapsingMergeTree ( ' / clickhouse / tables / 01526_alter_add / t1 ' , ' 1 ' , sign , version ) <nl> + PARTITION BY y <nl> + ORDER BY d <nl> + SETTINGS index_granularity = 8192 ; <nl> + <nl> + INSERT INTO table_for_alter VALUES ( toDate ( ' 2019 - 10 - 01 ' ) , ' a ' , 1 , ' aa ' , 1 , 1 , 1 ) ; <nl> + <nl> + SELECT * FROM table_for_alter ; <nl> + <nl> + ALTER TABLE table_for_alter ADD COLUMN order UInt32 , MODIFY ORDER BY ( d , order ) ; <nl> + <nl> + SELECT * FROM table_for_alter ; <nl> + <nl> + SHOW CREATE TABLE table_for_alter ; <nl> + <nl> + ALTER TABLE table_for_alter ADD COLUMN datum UInt32 , MODIFY ORDER BY ( d , order , datum ) ; <nl> + <nl> + INSERT INTO table_for_alter VALUES ( toDate ( ' 2019 - 10 - 02 ' ) , ' b ' , 2 , ' bb ' , 2 , 2 , 2 , 1 , 2 ) ; <nl> + <nl> + SELECT * FROM table_for_alter ORDER BY d ; <nl> + <nl> + SHOW CREATE TABLE table_for_alter ; <nl> + <nl> + DROP TABLE IF EXISTS table_for_alter ; <nl> new file mode 100644 <nl> index 00000000000 . . 50dc1c63590 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01526_param_uuid . reference <nl> @ @ - 0 , 0 + 1 @ @ <nl> + ffffffff - ffff - ffff - ffff - ffffffffffff <nl> new file mode 100755 <nl> index 00000000000 . . 4f508ddf863 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01526_param_uuid . sh <nl> <nl> + # ! / usr / bin / env bash <nl> + <nl> + CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> + . " $ CURDIR " / . . / shell_config . sh <nl> + <nl> + $ { CLICKHOUSE_CLIENT } - - param_p1 = ' ffffffff - ffff - ffff - ffff - ffffffffffff ' - - query " SELECT { p1 : UUID } " <nl> new file mode 100644 <nl> index 00000000000 . . e69de29bb2d <nl> new file mode 100644 <nl> index 00000000000 . . 10ffca22bd1 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01527_bad_aggregation_in_lambda . sql <nl> @ @ - 0 , 0 + 1 @ @ <nl> + SELECT arrayMap ( x - > x * sum ( x ) , range ( 10 ) ) ; - - { serverError 47 } <nl>
Merge remote - tracking branch ' origin / master ' into HEAD
ClickHouse/ClickHouse
1829bd09cbf0b3c74db0ce7fce25d795e890fe20
2020-10-19T14:27:36Z
new file mode 100644 <nl> index 0000000000 . . 7e0b78776e <nl> mmm / dev / null <nl> ppp b / examples / coroutine / redis / eval . php <nl> <nl> + < ? php <nl> + go ( function ( ) { <nl> + $ redis = new Co \ Redis ; <nl> + $ redis - > connect ( ' 127 . 0 . 0 . 1 ' , 6379 ) ; <nl> + $ res = $ redis - > eval ( " return redis . call ( ' get ' , ' key ' ) " ) ; <nl> + var_dump ( $ res ) ; <nl> + } ) ; <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000 . . 7ba688596a <nl> mmm / dev / null <nl> ppp b / examples / coroutine / redis / request . php <nl> <nl> + < ? php <nl> + go ( function ( ) { <nl> + $ redis = new Co \ Redis ; <nl> + $ redis - > connect ( ' 127 . 0 . 0 . 1 ' , 6379 ) ; <nl> + $ res = $ redis - > request ( [ ' object ' , ' encoding ' , ' key1 ' ] ) ; <nl> + var_dump ( $ res ) ; <nl> + } ) ; <nl> \ No newline at end of file <nl> mmm a / swoole_redis_coro . c <nl> ppp b / swoole_redis_coro . c <nl> ZEND_BEGIN_ARG_INFO_EX ( arginfo_swoole_redis_coro_key_opt_long , 0 , 0 , 1 ) <nl> ZEND_ARG_INFO ( 0 , integer ) <nl> ZEND_END_ARG_INFO ( ) <nl> <nl> + ZEND_BEGIN_ARG_INFO_EX ( arginfo_swoole_redis_coro_request , 0 , 0 , 1 ) <nl> + ZEND_ARG_ARRAY_INFO ( 0 , params , 0 ) <nl> + ZEND_END_ARG_INFO ( ) <nl> + <nl> ZEND_BEGIN_ARG_INFO_EX ( arginfo_swoole_redis_coro_incrByFloat , 0 , 0 , 2 ) <nl> ZEND_ARG_INFO ( 0 , key ) <nl> ZEND_ARG_INFO ( 0 , float_number ) <nl> ZEND_END_ARG_INFO ( ) <nl> <nl> # define IS_EX_PX_ARG ( a ) ( IS_EX_ARG ( a ) | | IS_PX_ARG ( a ) ) <nl> # define IS_NX_XX_ARG ( a ) ( IS_NX_ARG ( a ) | | IS_XX_ARG ( a ) ) <nl> + <nl> # define SW_REDIS_COMMAND_CHECK \ <nl> + coro_check ( TSRMLS_C ) ; \ <nl> swRedisClient * redis = swoole_get_object ( getThis ( ) ) ; \ <nl> if ( ! redis ) \ <nl> { \ <nl> ZEND_END_ARG_INFO ( ) <nl> coro_save ( context ) ; \ <nl> coro_yield ( ) ; \ <nl> } <nl> + <nl> # define SW_REDIS_COMMAND_ARGV_FILL ( str , str_len ) \ <nl> argvlen [ i ] = str_len ; \ <nl> argv [ i ] = estrndup ( str , str_len ) ; \ <nl> ZEND_END_ARG_INFO ( ) <nl> } \ <nl> i + + ; <nl> # endif <nl> + <nl> # define SW_REDIS_COMMAND_ALLOC_ARGV \ <nl> size_t stack_argvlen [ SW_REDIS_COMMAND_BUFFER_SIZE ] ; \ <nl> char * stack_argv [ SW_REDIS_COMMAND_BUFFER_SIZE ] ; \ <nl> ZEND_END_ARG_INFO ( ) <nl> argvlen = stack_argvlen ; \ <nl> argv = stack_argv ; \ <nl> } <nl> + <nl> # define SW_REDIS_COMMAND_FREE_ARGV \ <nl> if ( free_mm ) \ <nl> { \ <nl> efree ( argvlen ) ; \ <nl> efree ( argv ) ; \ <nl> } <nl> + <nl> # define SW_REDIS_COMMAND ( argc ) \ <nl> if ( redisAsyncCommandArgv ( redis - > context , swoole_redis_coro_onResult , NULL , argc , ( const char * * ) argv , ( const size_t * ) argvlen ) < 0 ) \ <nl> { \ <nl> static PHP_METHOD ( swoole_redis_coro , connect ) ; <nl> static PHP_METHOD ( swoole_redis_coro , setDefer ) ; <nl> static PHP_METHOD ( swoole_redis_coro , getDefer ) ; <nl> static PHP_METHOD ( swoole_redis_coro , recv ) ; <nl> + static PHP_METHOD ( swoole_redis_coro , request ) ; <nl> + static PHP_METHOD ( swoole_redis_coro , close ) ; <nl> + / * mmmmmmmmmmmmmmmmmmmmmRedis Commandmmmmmmmmmmmmmmmmmmmmmmmm * / <nl> static PHP_METHOD ( swoole_redis_coro , set ) ; <nl> static PHP_METHOD ( swoole_redis_coro , setBit ) ; <nl> static PHP_METHOD ( swoole_redis_coro , setEx ) ; <nl> static PHP_METHOD ( swoole_redis_coro , sRemove ) ; <nl> static PHP_METHOD ( swoole_redis_coro , zDelete ) ; <nl> static PHP_METHOD ( swoole_redis_coro , subscribe ) ; <nl> static PHP_METHOD ( swoole_redis_coro , pSubscribe ) ; <nl> - static PHP_METHOD ( swoole_redis_coro , close ) ; <nl> static PHP_METHOD ( swoole_redis_coro , multi ) ; <nl> static PHP_METHOD ( swoole_redis_coro , exec ) ; <nl> static PHP_METHOD ( swoole_redis_coro , eval ) ; <nl> static PHP_METHOD ( swoole_redis_coro , evalSha ) ; <nl> static PHP_METHOD ( swoole_redis_coro , script ) ; <nl> + / * mmmmmmmmmmmmmmmmmmmmmRedis Command Endmmmmmmmmmmmmmmmmmmmmmmmm * / <nl> <nl> static const zend_function_entry swoole_redis_coro_methods [ ] = <nl> { <nl> static const zend_function_entry swoole_redis_coro_methods [ ] = <nl> PHP_ME ( swoole_redis_coro , setDefer , NULL , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , getDefer , NULL , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , recv , NULL , ZEND_ACC_PUBLIC ) <nl> + PHP_ME ( swoole_redis_coro , request , arginfo_swoole_redis_coro_request , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , close , NULL , ZEND_ACC_PUBLIC ) <nl> + / * mmmmmmmmmmmmmmmmmmmmmRedis Commandmmmmmmmmmmmmmmmmmmmmmmmm * / <nl> PHP_ME ( swoole_redis_coro , set , NULL , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , setBit , NULL , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , setEx , NULL , ZEND_ACC_PUBLIC ) <nl> static const zend_function_entry swoole_redis_coro_methods [ ] = <nl> PHP_ME ( swoole_redis_coro , eval , NULL , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , evalSha , NULL , ZEND_ACC_PUBLIC ) <nl> PHP_ME ( swoole_redis_coro , script , NULL , ZEND_ACC_PUBLIC ) <nl> + / * mmmmmmmmmmmmmmmmmmmmmRedis Command Endmmmmmmmmmmmmmmmmmmmmmmmm * / <nl> PHP_FALIAS ( __sleep , swoole_unsupport_serialize , NULL ) <nl> PHP_FALIAS ( __wakeup , swoole_unsupport_serialize , NULL ) <nl> PHP_FE_END <nl> static PHP_METHOD ( swoole_redis_coro , __construct ) <nl> return ; <nl> } <nl> <nl> - coro_check ( TSRMLS_C ) ; <nl> - <nl> swRedisClient * redis = redis_coro_create ( getThis ( ) ) ; <nl> <nl> if ( zset & & ! ZVAL_IS_NULL ( zset ) ) <nl> static PHP_METHOD ( swoole_redis_coro , connect ) <nl> long port ; <nl> zend_bool serialize = 0 ; <nl> <nl> + coro_check ( TSRMLS_C ) ; <nl> + <nl> if ( zend_parse_parameters ( ZEND_NUM_ARGS ( ) TSRMLS_CC , " sl | b " , & host , & host_len , & port , & serialize ) = = FAILURE ) <nl> { <nl> return ; <nl> static PHP_METHOD ( swoole_redis_coro , multi ) <nl> <nl> static PHP_METHOD ( swoole_redis_coro , exec ) <nl> { <nl> + coro_check ( TSRMLS_C ) ; <nl> swRedisClient * redis = swoole_get_object ( getThis ( ) ) ; <nl> if ( redis - > state ! = SWOOLE_REDIS_CORO_STATE_MULTI & & redis - > state ! = SWOOLE_REDIS_CORO_STATE_PIPELINE ) <nl> { <nl> static PHP_METHOD ( swoole_redis_coro , exec ) <nl> coro_yield ( ) ; <nl> } <nl> <nl> + static PHP_METHOD ( swoole_redis_coro , request ) <nl> + { <nl> + SW_REDIS_COMMAND_CHECK <nl> + <nl> + zval * params = NULL ; <nl> + if ( zend_parse_parameters ( ZEND_NUM_ARGS ( ) TSRMLS_CC , " z " , & params ) = = FAILURE ) <nl> + { <nl> + return ; <nl> + } <nl> + <nl> + int argc = zend_hash_num_elements ( Z_ARRVAL_P ( params ) ) ; <nl> + size_t stack_argvlen [ SW_REDIS_COMMAND_BUFFER_SIZE ] ; <nl> + char * stack_argv [ SW_REDIS_COMMAND_BUFFER_SIZE ] ; <nl> + <nl> + size_t * argvlen ; <nl> + char * * argv ; <nl> + zend_bool free_mm = 0 ; <nl> + int i = 0 ; <nl> + <nl> + if ( argc > SW_REDIS_COMMAND_BUFFER_SIZE ) <nl> + { <nl> + argvlen = emalloc ( sizeof ( size_t ) * argc ) ; <nl> + argv = emalloc ( sizeof ( char * ) * argc ) ; <nl> + free_mm = 1 ; <nl> + } <nl> + else <nl> + { <nl> + argvlen = stack_argvlen ; <nl> + argv = stack_argv ; <nl> + } <nl> + <nl> + zval * value ; <nl> + <nl> + SW_HASHTABLE_FOREACH_START ( Z_ARRVAL_P ( params ) , value ) <nl> + if ( i = = argc ) <nl> + { <nl> + break ; <nl> + } <nl> + <nl> + zend_string * convert_str = zval_get_string ( value ) ; <nl> + argvlen [ i ] = convert_str - > len ; <nl> + argv [ i ] = estrndup ( convert_str - > val , convert_str - > len ) ; <nl> + zend_string_release ( convert_str ) ; <nl> + i + + ; <nl> + SW_HASHTABLE_FOREACH_END ( ) ; <nl> + <nl> + SW_REDIS_COMMAND ( argc ) <nl> + <nl> + if ( free_mm ) <nl> + { <nl> + efree ( argvlen ) ; <nl> + efree ( argv ) ; <nl> + } <nl> + SW_REDIS_COMMAND_YIELD <nl> + } <nl> + <nl> static PHP_METHOD ( swoole_redis_coro , eval ) <nl> { <nl> char * script ; <nl>
added redis_coro : : request
swoole/swoole-src
ab9cf8a01669ec9e58f909775cac2b2bbc925513
2018-03-09T03:07:47Z
mmm a / Code / Sandbox / EditorInterface / IAIManager . h <nl> ppp b / Code / Sandbox / EditorInterface / IAIManager . h <nl> <nl> - / / Copyright 2001 - 2017 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < CryMath / Cry_Geo . h > <nl> mmm a / Code / Sandbox / EditorQt / AI / EditorCommands_AI . cpp <nl> ppp b / Code / Sandbox / EditorQt / AI / EditorCommands_AI . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " Util / BoostPythonHelpers . h " <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / GeometryCacheAssetType . cpp <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / GeometryCacheAssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " GeometryCacheAssetType . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / GeometryCacheAssetType . h <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / GeometryCacheAssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " AssetSystem / AssetType . h " <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / LegacyAssetTypes . cpp <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / LegacyAssetTypes . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " LegacyAssetTypes . h " <nl> # include " DataBaseDialog . h " <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / LegacyAssetTypes . h <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / LegacyAssetTypes . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " AssetSystem / AssetType . h " <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / SoundAssetType . cpp <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / SoundAssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " SoundAssetType . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / SoundAssetType . h <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / SoundAssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " AssetSystem / AssetType . h " <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / TextureAssetType . cpp <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / TextureAssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " TextureAssetType . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / AssetSystem / TextureAssetType . h <nl> ppp b / Code / Sandbox / EditorQt / AssetSystem / TextureAssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " AssetSystem / AssetType . h " <nl> mmm a / Code / Sandbox / EditorQt / BaseObjectCreateTool . cpp <nl> ppp b / Code / Sandbox / EditorQt / BaseObjectCreateTool . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " BaseObjectCreateTool . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / BaseObjectCreateTool . h <nl> ppp b / Code / Sandbox / EditorQt / BaseObjectCreateTool . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditTool . h " <nl> mmm a / Code / Sandbox / EditorQt / ClassFactory . cpp <nl> ppp b / Code / Sandbox / EditorQt / ClassFactory . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " ClassFactory . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / ClassFactory . h <nl> ppp b / Code / Sandbox / EditorQt / ClassFactory . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " IEditorClassFactory . h " <nl> mmm a / Code / Sandbox / EditorQt / Commands / CommandModel . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / CommandModel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / CommandModel . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / CommandModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / CustomCommand . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / CustomCommand . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " CustomCommand . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / CustomCommand . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / CustomCommand . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> class ICommandManager ; <nl> mmm a / Code / Sandbox / EditorQt / Commands / EditorCommands_General . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / EditorCommands_General . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " IEditorImpl . h " <nl> mmm a / Code / Sandbox / EditorQt / Commands / EditorCommands_Physics . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / EditorCommands_Physics . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " IEditorImpl . h " <nl> mmm a / Code / Sandbox / EditorQt / Commands / KeybindEditor . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / KeybindEditor . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / KeybindEditor . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / KeybindEditor . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / PolledKeyManager . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / PolledKeyManager . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " PolledKeyManager . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / PolledKeyManager . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / PolledKeyManager . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QObject > <nl> mmm a / Code / Sandbox / EditorQt / Commands / PythonManager . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / PythonManager . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " PythonManager . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / PythonManager . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / PythonManager . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " BoostPythonMacros . h " <nl> mmm a / Code / Sandbox / EditorQt / Commands / QCommandAction . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / QCommandAction . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " QCommandAction . h " <nl> mmm a / Code / Sandbox / EditorQt / Commands / QCommandAction . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / QCommandAction . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / Commands / QPythonAction . cpp <nl> ppp b / Code / Sandbox / EditorQt / Commands / QPythonAction . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Commands / QPythonAction . h <nl> ppp b / Code / Sandbox / EditorQt / Commands / QPythonAction . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Dialogs / PythonScriptsPanel . cpp <nl> ppp b / Code / Sandbox / EditorQt / Dialogs / PythonScriptsPanel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " Dialogs / PythonScriptsPanel . h " <nl> mmm a / Code / Sandbox / EditorQt / Dialogs / PythonScriptsPanel . h <nl> ppp b / Code / Sandbox / EditorQt / Dialogs / PythonScriptsPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / EditToolPanel . cpp <nl> ppp b / Code / Sandbox / EditorQt / EditToolPanel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include < Serialization / QPropertyTree / QPropertyTree . h > <nl> mmm a / Code / Sandbox / EditorQt / EditToolPanel . h <nl> ppp b / Code / Sandbox / EditorQt / EditToolPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / EditorQt / GameEngine . h <nl> ppp b / Code / Sandbox / EditorQt / GameEngine . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Include / RecursionLoopGuard . h <nl> ppp b / Code / Sandbox / EditorQt / Include / RecursionLoopGuard . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> class ScopedLock <nl> { <nl> mmm a / Code / Sandbox / EditorQt / Include / Serialization / Decorators / EntityLink . h <nl> ppp b / Code / Sandbox / EditorQt / Include / Serialization / Decorators / EntityLink . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> / / <nl> / / Serialization : : EntityLink provides a decorator to expose entity reference <nl> mmm a / Code / Sandbox / EditorQt / Include / Serialization / GUID . h <nl> ppp b / Code / Sandbox / EditorQt / Include / Serialization / GUID . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < CrySerialization / IArchive . h > <nl> # include < CrySerialization / STL . h > <nl> mmm a / Code / Sandbox / EditorQt / IndirectLighting / Quadtree / Quadtree . inl <nl> ppp b / Code / Sandbox / EditorQt / IndirectLighting / Quadtree / Quadtree . inl <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / * <nl> main quadtree class implementations <nl> * / <nl> mmm a / Code / Sandbox / EditorQt / IndirectLighting / Quadtree / QuadtreeNodeLeaf . inl <nl> ppp b / Code / Sandbox / EditorQt / IndirectLighting / Quadtree / QuadtreeNodeLeaf . inl <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / * <nl> quadtree class implementations for node and leaf <nl> * / <nl> mmm a / Code / Sandbox / EditorQt / IndirectLighting / Quadtree / QuadtreeUtilities . inl <nl> ppp b / Code / Sandbox / EditorQt / IndirectLighting / Quadtree / QuadtreeUtilities . inl <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / * <nl> quadtree implementation of non quadtree class functions <nl> * / <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / EditorCommands_Level . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / EditorCommands_Level . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " Objects / ObjectLayer . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelAssetType . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelAssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " LevelAssetType . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelAssetType . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelAssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " AssetSystem / AssetType . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelEditor . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelEditor . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " LevelEditor . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelEditor . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelEditor . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorFramework / Editor . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelExplorer . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelExplorer . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelExplorer . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelExplorer . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelFileUtils . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelFileUtils . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " LevelAssetType . h " <nl> # include " LevelFileUtils . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelFileUtils . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelFileUtils . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> class QString ; <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelFilterModel . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelFilterModel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " LevelFilterModel . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelFilterModel . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelFilterModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QSortFilterProxyModel > <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelLayerModel . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelLayerModel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " LevelLayerModel . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelLayerModel . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelLayerModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelModel . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelModel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " LevelModel . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelModel . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelSettings . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelSettings . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " LevelEditor / LevelSettings . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / LevelSettings . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / LevelSettings . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / NewLevelDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / NewLevelDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " NewLevelDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / NewLevelDialog . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / NewLevelDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " Controls / EditorDialog . h " <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / OpenLevelDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / OpenLevelDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " OpenLevelDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / OpenLevelDialog . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / OpenLevelDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " Controls / EditorDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / SaveLevelDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / SaveLevelDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " SaveLevelDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / LevelEditor / SaveLevelDialog . h <nl> ppp b / Code / Sandbox / EditorQt / LevelEditor / SaveLevelDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " Controls / EditorDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / MinimapPanel . cpp <nl> ppp b / Code / Sandbox / EditorQt / MinimapPanel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / MinimapPanel . h <nl> ppp b / Code / Sandbox / EditorQt / MinimapPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / EditorQt / Objects / AreaSolid . cpp <nl> ppp b / Code / Sandbox / EditorQt / Objects / AreaSolid . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " AreaSolid . h " <nl> # include " PickEntitiesPanel . h " <nl> mmm a / Code / Sandbox / EditorQt / Objects / AreaSolid . h <nl> ppp b / Code / Sandbox / EditorQt / Objects / AreaSolid . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> mmm a / Code / Sandbox / EditorQt / Objects / ClipVolumeObject . cpp <nl> ppp b / Code / Sandbox / EditorQt / Objects / ClipVolumeObject . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " stdafx . h " <nl> <nl> # include " ClipVolumeObject . h " <nl> mmm a / Code / Sandbox / EditorQt / Objects / ClipVolumeObject . h <nl> ppp b / Code / Sandbox / EditorQt / Objects / ClipVolumeObject . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # ifndef __INCLUDE_SANDBOX_CLIPVOLUMEOBJECT_H <nl> # define __INCLUDE_SANDBOX_CLIPVOLUMEOBJECT_H <nl> <nl> mmm a / Code / Sandbox / EditorQt / Objects / GuidCollisionResolver . cpp <nl> ppp b / Code / Sandbox / EditorQt / Objects / GuidCollisionResolver . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " GuidCollisionResolver . h " <nl> # include " Objects / PrefabObject . h " <nl> mmm a / Code / Sandbox / EditorQt / Objects / GuidCollisionResolver . h <nl> ppp b / Code / Sandbox / EditorQt / Objects / GuidCollisionResolver . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < vector > <nl> mmm a / Code / Sandbox / EditorQt / Panels / ObjectBrowser . cpp <nl> ppp b / Code / Sandbox / EditorQt / Panels / ObjectBrowser . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " ObjectBrowser . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Panels / ObjectBrowser . h <nl> ppp b / Code / Sandbox / EditorQt / Panels / ObjectBrowser . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> / / Qt <nl> mmm a / Code / Sandbox / EditorQt / Panels / ObjectCreateToolPanel . cpp <nl> ppp b / Code / Sandbox / EditorQt / Panels / ObjectCreateToolPanel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " ObjectCreateToolPanel . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Panels / ObjectCreateToolPanel . h <nl> ppp b / Code / Sandbox / EditorQt / Panels / ObjectCreateToolPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < EditorFramework / Editor . h > <nl> mmm a / Code / Sandbox / EditorQt / Panels / ObjectCreateTreeWidget . cpp <nl> ppp b / Code / Sandbox / EditorQt / Panels / ObjectCreateTreeWidget . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " ObjectCreateTreeWidget . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Panels / ObjectCreateTreeWidget . h <nl> ppp b / Code / Sandbox / EditorQt / Panels / ObjectCreateTreeWidget . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " Controls / QObjectTreeWidget . h " <nl> mmm a / Code / Sandbox / EditorQt / PlaygroundDockable . cpp <nl> ppp b / Code / Sandbox / EditorQt / PlaygroundDockable . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " PlaygroundDockable . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / PlaygroundDockable . h <nl> ppp b / Code / Sandbox / EditorQt / PlaygroundDockable . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorFramework / Editor . h " <nl> mmm a / Code / Sandbox / EditorQt / QT / MainToolBars / QMainToolBarManager . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / MainToolBars / QMainToolBarManager . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / MainToolBars / QMainToolBarManager . h <nl> ppp b / Code / Sandbox / EditorQt / QT / MainToolBars / QMainToolBarManager . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / MainToolBars / QToolBarCreator . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / MainToolBars / QToolBarCreator . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " QToolBarCreator . h " <nl> mmm a / Code / Sandbox / EditorQt / QT / MainToolBars / QToolBarCreator . h <nl> ppp b / Code / Sandbox / EditorQt / QT / MainToolBars / QToolBarCreator . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> # include < CrySandbox / CrySignal . h > <nl> mmm a / Code / Sandbox / EditorQt / QT / PythonUIActionBinds . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / PythonUIActionBinds . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / QT / QToolTabManager . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / QToolTabManager . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " QToolTabManager . h " <nl> mmm a / Code / Sandbox / EditorQt / QT / QToolTabManager . h <nl> ppp b / Code / Sandbox / EditorQt / QT / QToolTabManager . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / QtMain . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / QtMain . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / QT / QtMainFrame . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / QtMainFrame . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / QtMainFrame . h <nl> ppp b / Code / Sandbox / EditorQt / QT / QtMainFrame . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / QT / QtMainFrameWidgets . h <nl> ppp b / Code / Sandbox / EditorQt / QT / QtMainFrameWidgets . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH / Crytek Group . All rights reserved <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QComboBox > <nl> mmm a / Code / Sandbox / EditorQt / QT / QtUtil . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / QtUtil . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QtUtil . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / QtUtil . h <nl> ppp b / Code / Sandbox / EditorQt / QT / QtUtil . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> class QAction ; <nl> mmm a / Code / Sandbox / EditorQt / QT / TraySearchBox . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / TraySearchBox . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / TraySearchBox . h <nl> ppp b / Code / Sandbox / EditorQt / QT / TraySearchBox . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < QSearchBox . h > <nl> # include " QAdvancedTreeView . h " <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QEditToolButton . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QEditToolButton . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include < StdAfx . h > <nl> # include " QEditToolButton . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QEditToolButton . h <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QEditToolButton . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # ifndef __QEditToolButton_h__ <nl> # define __QEditToolButton_h__ <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QPreviewWidget . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QPreviewWidget . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QPreviewWidget . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QPreviewWidget . h <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QPreviewWidget . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QViewPaneHost . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QViewPaneHost . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QViewPaneHost . h <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QViewPaneHost . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QViewportHeader . cpp <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QViewportHeader . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " stdafx . h " <nl> # include " QViewportHeader . h " <nl> mmm a / Code / Sandbox / EditorQt / QT / Widgets / QViewportHeader . h <nl> ppp b / Code / Sandbox / EditorQt / QT / Widgets / QViewportHeader . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Serialization / PropertyRowEntityLink . cpp <nl> ppp b / Code / Sandbox / EditorQt / Serialization / PropertyRowEntityLink . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include < stdafx . h > <nl> # include " PropertyRowEntityLink . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Serialization / PropertyRowEntityLink . h <nl> ppp b / Code / Sandbox / EditorQt / Serialization / PropertyRowEntityLink . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < Serialization / PropertyTree / IDrawContext . h > <nl> mmm a / Code / Sandbox / EditorQt / Serialization / PropertyRowPrefabLink . h <nl> ppp b / Code / Sandbox / EditorQt / Serialization / PropertyRowPrefabLink . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " Serialization / PropertyTree / IDrawContext . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Dialogs / CreateTerrainPreviewDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Dialogs / CreateTerrainPreviewDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " CreateTerrainPreviewDialog . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Dialogs / CreateTerrainPreviewDialog . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Dialogs / CreateTerrainPreviewDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " Controls / EditorDialog . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " ResizeTerrainDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainDialog . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " Controls / EditorDialog . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainTextureDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainTextureDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " ResizeTerrainTextureDialog . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainTextureDialog . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Dialogs / ResizeTerrainTextureDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " Controls / EditorDialog . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainBrushTool . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainBrushTool . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " Terrain / TerrainBrushTool . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainBrushTool . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainBrushTool . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditTool . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainEditor . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainEditor . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " TerrainEditor . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainEditor . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainEditor . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainLayerPanel . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainLayerPanel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainLayerPanel . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainLayerPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainLayerView . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainLayerView . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainLayerView . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainLayerView . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " QAdvancedTreeView . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainSculptPanel . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainSculptPanel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / TerrainSculptPanel . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / TerrainSculptPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Ui / GenerateHeightmapUi . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Ui / GenerateHeightmapUi . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma optimize ( " " , off ) <nl> <nl> / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Ui / GenerateHeightmapUi . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Ui / GenerateHeightmapUi . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QObject > <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Ui / GenerateTerrainTextureUi . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Ui / GenerateTerrainTextureUi . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " GenerateTerrainTextureUi . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Ui / GenerateTerrainTextureUi . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Ui / GenerateTerrainTextureUi . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QObject > <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Ui / TerrainTextureDimensionsUi . cpp <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Ui / TerrainTextureDimensionsUi . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " TerrainTextureDimensionsUi . h " <nl> mmm a / Code / Sandbox / EditorQt / Terrain / Ui / TerrainTextureDimensionsUi . h <nl> ppp b / Code / Sandbox / EditorQt / Terrain / Ui / TerrainTextureDimensionsUi . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QObject > <nl> mmm a / Code / Sandbox / EditorQt / TrackViewExportKeyTimeDlg . cpp <nl> ppp b / Code / Sandbox / EditorQt / TrackViewExportKeyTimeDlg . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / TrackViewExportKeyTimeDlg . h <nl> ppp b / Code / Sandbox / EditorQt / TrackViewExportKeyTimeDlg . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / TrackViewFBXImportPreviewDialog . cpp <nl> ppp b / Code / Sandbox / EditorQt / TrackViewFBXImportPreviewDialog . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / TrackViewFBXImportPreviewDialog . h <nl> ppp b / Code / Sandbox / EditorQt / TrackViewFBXImportPreviewDialog . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Undo / CommandHistory . cpp <nl> ppp b / Code / Sandbox / EditorQt / Undo / CommandHistory . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Undo / CommandHistory . h <nl> ppp b / Code / Sandbox / EditorQt / Undo / CommandHistory . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationDragDropData . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationDragDropData . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " VegetationDragDropData . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationDragDropData . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationDragDropData . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " DragDrop . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationEditor . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationEditor . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " VegetationEditor . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationEditor . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationEditor . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationEraseTool . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationEraseTool . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " VegetationEraseTool . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationEraseTool . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationEraseTool . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " VegetationPaintTool . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationMap . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationMap . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationMap . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationMap . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationModel . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationModel . cpp <nl> <nl> -  / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " VegetationModel . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationModel . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QAbstractItemModel > <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationObject . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationObject . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / StaticObjParam . cpp : implementation of the CVegetationObject class . <nl> / / <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationObject . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationObject . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationPaintTool . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationPaintTool . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " VegetationPaintTool . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationPaintTool . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationPaintTool . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditTool . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationPlaceTool . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationPlaceTool . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " VegetationPlaceTool . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationPlaceTool . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationPlaceTool . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " BaseObjectCreateTool . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationSelectTool . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationSelectTool . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " VegetationSelectTool . h " <nl> # include " CryMath / Random . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationSelectTool . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationSelectTool . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditTool . h " <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationTreeView . cpp <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationTreeView . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " VegetationTreeView . h " <nl> <nl> mmm a / Code / Sandbox / EditorQt / Vegetation / VegetationTreeView . h <nl> ppp b / Code / Sandbox / EditorQt / Vegetation / VegetationTreeView . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " QAdvancedTreeView . h " <nl> mmm a / Code / Sandbox / Libs / CryQt / QCollapsibleFrame . cpp <nl> ppp b / Code / Sandbox / Libs / CryQt / QCollapsibleFrame . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QCollapsibleFrame . h " <nl> <nl> mmm a / Code / Sandbox / Libs / CryQt / QCollapsibleFrame . h <nl> ppp b / Code / Sandbox / Libs / CryQt / QCollapsibleFrame . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Libs / CryQt / QRollupBar . cpp <nl> ppp b / Code / Sandbox / Libs / CryQt / QRollupBar . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include < StdAfx . h > <nl> # include < QVBoxLayout > <nl> # include " QScrollableBox . h " <nl> mmm a / Code / Sandbox / Libs / CryQt / QRollupBar . h <nl> ppp b / Code / Sandbox / Libs / CryQt / QRollupBar . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < QObject > <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Libs / CryQt / QScrollableBox . cpp <nl> ppp b / Code / Sandbox / Libs / CryQt / QScrollableBox . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " stdafx . h " <nl> # include " QScrollableBox . h " <nl> mmm a / Code / Sandbox / Libs / CryQt / QScrollableBox . h <nl> ppp b / Code / Sandbox / Libs / CryQt / QScrollableBox . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> # include " CryQtAPI . h " <nl> mmm a / Code / Sandbox / Libs / CryQt / QToolWindowManager / QToolWindowRollupBarArea . cpp <nl> ppp b / Code / Sandbox / Libs / CryQt / QToolWindowManager / QToolWindowRollupBarArea . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " stdafx . h " <nl> # include " QToolWindowManager . h " <nl> # include " QToolWindowRollupBarArea . h " <nl> mmm a / Code / Sandbox / Libs / CryQt / QToolWindowManager / QToolWindowRollupBarArea . h <nl> ppp b / Code / Sandbox / Libs / CryQt / QToolWindowManager / QToolWindowRollupBarArea . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Libs / CryQt / ShibokenWrapper / CryQt . py <nl> ppp b / Code / Sandbox / Libs / CryQt / ShibokenWrapper / CryQt . py <nl> @ @ - 1 + 1 , 3 @ @ <nl> + # Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> from _CryQt import * <nl> mmm a / Code / Sandbox / Libs / CryQt / ShibokenWrapper / global . h <nl> ppp b / Code / Sandbox / Libs / CryQt / ShibokenWrapper / global . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # ifndef GLOBAL_H <nl> # define GLOBAL_H <nl> <nl> mmm a / Code / Sandbox / Libs / CryQt / ShibokenWrapper / glue / itoolwindowarea_glue . cpp <nl> ppp b / Code / Sandbox / Libs / CryQt / ShibokenWrapper / glue / itoolwindowarea_glue . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> PyObject * ConvertIToolAreaToPyObject ( IToolWindowArea * cppResult ) <nl> { <nl> return NULL ; <nl> mmm a / Code / Sandbox / Libs / CrySubstance / ISubstanceInstanceRenderer . cpp <nl> ppp b / Code / Sandbox / Libs / CrySubstance / ISubstanceInstanceRenderer . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " ISubstanceInstanceRenderer . h " <nl> # include " SubstancePreset . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / ISubstanceInstanceRenderer . h <nl> ppp b / Code / Sandbox / Libs / CrySubstance / ISubstanceInstanceRenderer . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " CrySubstanceAPI . h " <nl> # include " SubstanceCommon . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / ISubstanceManager . h <nl> ppp b / Code / Sandbox / Libs / CrySubstance / ISubstanceManager . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " SubstanceCommon . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / RCConfigParser . inl <nl> ppp b / Code / Sandbox / Libs / CrySubstance / RCConfigParser . inl <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include < memory > <nl> <nl> namespace RCConfigParser <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SerializationSubstanceEnums . inl <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SerializationSubstanceEnums . inl <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> <nl> <nl> SERIALIZATION_ENUM_BEGIN_NESTED ( SSubstanceOutput , ESubstanceOutputResolution , " Output Resolution " ) <nl> mmm a / Code / Sandbox / Libs / CrySubstance / StdAfx . cpp <nl> ppp b / Code / Sandbox / Libs / CrySubstance / StdAfx . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> / / Precompiled header . <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / Libs / CrySubstance / StdAfx . h <nl> ppp b / Code / Sandbox / Libs / CrySubstance / StdAfx . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> / / Precompiled header . <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SubstanceCommon . cpp <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SubstanceCommon . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SubstanceCommon . h " <nl> <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SubstanceCommon . h <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SubstanceCommon . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " CrySerialization / Serializer . h " <nl> # include " CrySubstanceAPI . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SubstanceManager . cpp <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SubstanceManager . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SubstanceManager . h " <nl> # include " SubstanceCommon . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SubstanceManager . h <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SubstanceManager . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " CrySerialization / Serializer . h " <nl> # include " CrySerialization / ClassFactory . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SubstancePreset . cpp <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SubstancePreset . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SubstancePreset . h " <nl> # include " SubstanceManager . h " <nl> mmm a / Code / Sandbox / Libs / CrySubstance / SubstancePreset . h <nl> ppp b / Code / Sandbox / Libs / CrySubstance / SubstancePreset . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " CrySerialization / Serializer . h " <nl> # include " CrySerialization / ClassFactory . h " <nl> mmm a / Code / Sandbox / Plugins / 3DConnexionPlugin / main . cpp <nl> ppp b / Code / Sandbox / Plugins / 3DConnexionPlugin / main . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " 3DConnexionDriver . h " <nl> mmm a / Code / Sandbox / Plugins / DialogEditor / main . cpp <nl> ppp b / Code / Sandbox / Plugins / DialogEditor / main . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " DialogEditorPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCSharp / CSharpAssetType . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCSharp / CSharpAssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " CSharpAssetType . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCSharp / CSharpAssetType . h <nl> ppp b / Code / Sandbox / Plugins / EditorCSharp / CSharpAssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < AssetSystem / AssetType . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCSharp / CSharpOutputTextEdit . h <nl> ppp b / Code / Sandbox / Plugins / EditorCSharp / CSharpOutputTextEdit . h <nl> <nl> - / / Copyright 2001 - 2017 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCSharp / CSharpOutputWindow . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCSharp / CSharpOutputWindow . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include < CryCore / Platform / platform_impl . inl > <nl> mmm a / Code / Sandbox / Plugins / EditorCSharp / CSharpOutputWindow . h <nl> ppp b / Code / Sandbox / Plugins / EditorCSharp / CSharpOutputWindow . h <nl> <nl> - / / Copyright 2001 - 2017 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Asset . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Asset . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " Asset . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Asset . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Asset . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetEditor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetEditor . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetEditor . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetEditor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetEditor . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetFileMonitor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetFileMonitor . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetFileMonitor . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetFileMonitor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetFileMonitor . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetGenerator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetGenerator . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetGenerator . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetGenerator . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetGenerator . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImportContext . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImportContext . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetImportContext . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImportContext . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImportContext . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImporter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImporter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetImporter . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImporter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetImporter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManager . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManager . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetManager . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManager . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManager . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManagerHelpers . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManagerHelpers . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetManagerHelpers . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManagerHelpers . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetManagerHelpers . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetType . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetType . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetType . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / AssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetBrowser . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetBrowser . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetBrowser . h " <nl> # include " AssetDropHandler . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetBrowser . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetBrowser . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetDropHandler . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetDropHandler . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetDropHandler . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetDropHandler . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetDropHandler . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFolderFilterModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFolderFilterModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetFolderFilterModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFolderFilterModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFolderFilterModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " ProxyModels / MergingProxyModel . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetFoldersModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QAbstractItemModel > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersView . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersView . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetFoldersView . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersView . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetFoldersView . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetImportDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetImportDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetImportDialog . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetImportDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetImportDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QAbstractItemModel > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetReverseDependenciesDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetReverseDependenciesDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetReverseDependenciesDialog . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetReverseDependenciesDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetReverseDependenciesDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetThumbnailsGenerator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetThumbnailsGenerator . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetThumbnailsGenerator . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetThumbnailsGenerator . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetThumbnailsGenerator . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetTooltip . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetTooltip . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " AssetTooltip . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetTooltip . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / AssetTooltip . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / LineEditDelegate . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / LineEditDelegate . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " LineEditDelegate . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / LineEditDelegate . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / LineEditDelegate . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < CrySandbox / CrySignal . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / NewAssetModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / NewAssetModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " NewAssetModel . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / NewAssetModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Browser / NewAssetModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / DependencyTracker . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / DependencyTracker . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " DependencyTracker . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / DependencyTracker . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / DependencyTracker . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / EditableAsset . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / EditableAsset . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " EditableAsset . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / EditableAsset . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / EditableAsset . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / EditorCommands_Assets . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / EditorCommands_Assets . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> <nl> # include " IEditor . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Loader / AssetLoaderHelpers . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Loader / AssetLoaderHelpers . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetLoaderHelpers . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Loader / AssetLoaderHelpers . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / Loader / AssetLoaderHelpers . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / PakImporter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / PakImporter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " PakImporter . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AssetSystem / PakImporter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AssetSystem / PakImporter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AutoRegister . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AutoRegister . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " AutoRegister . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / AutoRegister . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / AutoRegister . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / BoostPythonMacros . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / BoostPythonMacros . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # ifdef USE_PYTHON_SCRIPTING <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / CommandModuleDescription . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / CommandModuleDescription . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> class EDITOR_COMMON_API CCommandModuleDescription <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / BreadcrumbsBar . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / BreadcrumbsBar . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " BreadcrumbsBar . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / BreadcrumbsBar . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / BreadcrumbsBar . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / ColorButton . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / ColorButton . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH / Crytek Groupainter . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " ColorButton . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / DockableDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / DockableDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " DockableDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / DockableDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / DockableDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " Controls / EditorDialog . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / EditorDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / EditorDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " stdafx . h " <nl> # include " EditorDialog . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / EditorDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / EditorDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QEditableComboBox . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QEditableComboBox . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " QEditableComboBox . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QEditableComboBox . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QEditableComboBox . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " EditorCommonAPI . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QNumericBox . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QNumericBox . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QNumericBox . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QNumericBox . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QNumericBox . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QObjectTreeWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QObjectTreeWidget . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QObjectTreeWidget . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QObjectTreeWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QObjectTreeWidget . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QResourceBrowserDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QResourceBrowserDialog . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QResourceBrowserDialog . h " <nl> # include " QObjectTreeWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QResourceBrowserDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QResourceBrowserDialog . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QuestionDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QuestionDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QuestionDialog . h " <nl> # include " CryIcon . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / QuestionDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / QuestionDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " EditorCommonAPI . h " <nl> # include " Controls / EditorDialog . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Controls / SaveChangesDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Controls / SaveChangesDialog . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SaveChangesDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / DragDrop . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / DragDrop . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " DragDrop . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / DragDrop . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / DragDrop . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorCommonInit . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorCommonInit . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " EditorCommonInit . h " <nl> # include " IPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorCommonInit . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorCommonInit . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / BroadcastManager . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / BroadcastManager . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " BroadcastManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / BroadcastManager . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / BroadcastManager . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Editor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Editor . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " Editor . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Editor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Editor . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / EventLoopHandler . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / EventLoopHandler . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " EventLoopHandler . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / EventLoopHandler . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / EventLoopHandler . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Events . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Events . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " Events . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Events . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Events . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Inspector . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Inspector . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " Inspector . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Inspector . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Inspector . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / PersonalizationManager . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / PersonalizationManager . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " stdafx . h " <nl> # include " PersonalizationManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / PersonalizationManager . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / PersonalizationManager . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " EditorCommonAPI . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Preferences . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / EditorFramework / Preferences . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> <nl> / / Copyright 2001 - 2016 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / EngineFileDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / EngineFileDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " EngineFileDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / EngineFileDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / EngineFileDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " Controls / EditorDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / ExtensionFilter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / ExtensionFilter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " ExtensionFilter . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / ExtensionFilter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / ExtensionFilter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < EditorCommonAPI . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileDialogsCommon . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileDialogsCommon . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileDialogsCommon . h " <nl> # include < CrySystem / File / ICryPak . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileDialogsCommon . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileDialogsCommon . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileNameLineEdit . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileNameLineEdit . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileNameLineEdit . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileNameLineEdit . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FileNameLineEdit . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QLineEdit > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FilePopupMenu . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FilePopupMenu . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " FilePopupMenu . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FilePopupMenu . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / FilePopupMenu . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QMenu > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / FilePreviewContainer . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / FilePreviewContainer . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FilePreviewContainer . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / FilePreviewContainer . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / FilePreviewContainer . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / SelectExtensionDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / SelectExtensionDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " SelectExtensionDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / SelectExtensionDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / Internal / SelectExtensionDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " Controls / EditorDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / SystemFileDialog . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / SystemFileDialog . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " SystemFileDialog . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileDialogs / SystemFileDialog . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileDialogs / SystemFileDialog . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileDialogs / ExtensionFilter . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileListModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileListModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileListModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileListModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileListModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QAbstractListModel > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSortProxyModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSortProxyModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSortProxyModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSortProxyModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSortProxyModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " QSortFilterProxyModel " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Directory . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Directory . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_File . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_DirectoryFilter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_DirectoryFilter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_DirectoryFilter . h " <nl> # include " FileSystem_EnginePath . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_DirectoryFilter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_DirectoryFilter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Directory . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_EnginePath . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_EnginePath . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_EnginePath . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_EnginePath . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_EnginePath . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QString > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Enumerator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Enumerator . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Enumerator . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Enumerator . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Enumerator . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " EditorCommonAPI . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_File . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_File . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileType . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_FileFilter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_FileFilter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_FileFilter . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_FileFilter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_FileFilter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_File . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_FileMonitor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_FileMonitor . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / FileSystem_Snapshot . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Snapshot . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Snapshot . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Snapshot . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Snapshot . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_Snapshot . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " EditorCommonAPI . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_SubTree . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_SubTree . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_File . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_SubTreeMonitor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileSystem_SubTreeMonitor . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_File . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTreeModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTreeModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileTreeModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTreeModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTreeModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QAbstractItemModel > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileType . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileType . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileType . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QString > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTypeStore . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTypeStore . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " FileTypeStore . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTypeStore . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / FileTypeStore . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileType . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Data . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Data . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_PathUtils . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_FileMonitors . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_FileMonitors . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_FileMonitors . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_FileMonitors . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_FileMonitors . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_FilterUtils . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_FilterUtils . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_FilterUtils . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / FileSystem_File . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_IndexedDirectory . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_IndexedDirectory . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / FileSystem_Directory . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_InflightUpdate . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_InflightUpdate . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_InflightUpdate . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_InflightUpdate . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_InflightUpdate . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_IndexedDirectory . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Mounts . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Mounts . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Mounts . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Mounts . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Mounts . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_PathUtils . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_PakFiles . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_PakFiles . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_PakFiles . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_PakFiles . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_PakFiles . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_Data . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_PathUtils . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_PathUtils . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QString > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_SnapshotUpdate . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_SnapshotUpdate . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / FileSystem_SubTreeMonitor . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_SubTreeMonitors . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_SubTreeMonitors . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_SubTreeMonitors . h " <nl> # include " FileSystem_Internal_FilterUtils . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_SubTreeMonitors . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_SubTreeMonitors . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_FilterUtils . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_UpdateSequence . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_UpdateSequence . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_UpdateSequence . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_UpdateSequence . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_UpdateSequence . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_Data . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Worker . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Worker . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Worker . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Worker . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_Worker . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / FileSystem_SubTreeMonitor . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_WorkerApi . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_WorkerApi . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_WorkerApi . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_WorkerApi . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / FileSystem_Internal_WorkerApi . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / FileSystem_SubTreeMonitor . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_ActionMonitor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_ActionMonitor . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Win32_ActionMonitor . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_ActionMonitor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_ActionMonitor . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_Win32_ActionSequence . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_ActionSequence . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_ActionSequence . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QMetaType > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Monitor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Monitor . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Win32_Monitor . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Monitor . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Monitor . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / Internal / FileSystem_Internal_UpdateSequence . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_MonitorAdapter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_MonitorAdapter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Win32_MonitorAdapter . h " <nl> # include " FileSystem_Internal_Win32_Utils . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_MonitorAdapter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_MonitorAdapter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem_Internal_Win32_ActionSequence . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Scanner . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Scanner . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Win32_Scanner . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Scanner . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Scanner . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " FileSystem / Internal / FileSystem_Internal_Data . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_UniqueFind . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_UniqueFind . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Win32_UniqueFind . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_UniqueFind . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_UniqueFind . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QString > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_UniqueHandle . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_UniqueHandle . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < CryCore / Platform / CryWindows . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Utils . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Utils . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileSystem_Internal_Win32_Utils . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Utils . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / Internal / Win32 / FileSystem_Internal_Win32_Utils . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QString > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / AdvancedFileSystemModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / AdvancedFileSystemModel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " AdvancedFileSystemModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / AdvancedFileSystemModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / AdvancedFileSystemModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / DirectoryModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / DirectoryModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " DirectoryModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / DirectoryModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / DirectoryModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QSortFilterProxyModel > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / FileCollectionModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / FileCollectionModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " FileCollectionModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / FileCollectionModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / FileSystem / OsFileSystemModels / FileCollectionModel . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / IObjectEnumerator . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / IObjectEnumerator . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> class IObjectEnumerator <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / KeyboardShortcut . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / KeyboardShortcut . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " KeyboardShortcut . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / KeyboardShortcut . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / KeyboardShortcut . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / MenuHelpers . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / MenuHelpers . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Notifications / NotificationCenter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Notifications / NotificationCenter . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " NotificationCenter . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Notifications / NotificationCenter . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Notifications / NotificationCenter . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Notifications / NotificationCenterImpl . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Notifications / NotificationCenterImpl . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Objects / EntityComponentCollapsibleFrame . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Objects / EntityComponentCollapsibleFrame . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " EntityComponentCollapsibleFrame . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Objects / EntityComponentCollapsibleFrame . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Objects / EntityComponentCollapsibleFrame . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Objects / InspectorWidgetCreator . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Objects / InspectorWidgetCreator . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Objects / ObjectPropertyWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Objects / ObjectPropertyWidget . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " ObjectPropertyWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Objects / ObjectPropertyWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Objects / ObjectPropertyWidget . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / PolledKey . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / PolledKey . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " ICommandManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / AttributeFilterProxyModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / AttributeFilterProxyModel . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AttributeFilterProxyModel . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / AttributeFilterProxyModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / AttributeFilterProxyModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / ColumnSort . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / ColumnSort . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < Qt > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MergeColumnMapping . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MergeColumnMapping . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QAbstractItemModel > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyColumnMapping . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyColumnMapping . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " MultiProxyColumnMapping . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyColumnMapping . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyColumnMapping . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < QVector > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyModelHelper . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyModelHelper . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " MultiProxyModelHelper . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyModelHelper . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / Details / MultiProxyModelHelper . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QMetaObject > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / FavoritesHelper . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / FavoritesHelper . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " FavoritesHelper . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / FavoritesHelper . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / FavoritesHelper . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / ItemModelAttribute . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / ItemModelAttribute . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " ItemModelAttribute . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / ItemModelAttribute . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / ItemModelAttribute . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MergingProxyModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MergingProxyModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " MergingProxyModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MergingProxyModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MergingProxyModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> # include " EditorCommonAPI . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MountingProxyModel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MountingProxyModel . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> # include " MountingProxyModel . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MountingProxyModel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ProxyModels / MountingProxyModel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QAdvancedItemDelegate . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QAdvancedItemDelegate . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include < StdAfx . h > <nl> # include " QAdvancedItemDelegate . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QAdvancedTreeView . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QAdvancedTreeView . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QAdvancedTreeView . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QAdvancedTreeView . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QAdvancedTreeView . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QTreeView > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QControls . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QControls . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QControls . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QControls . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QControls . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QFilteringPanel . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QFilteringPanel . cpp <nl> <nl> -  / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include " QFilteringPanel . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QFilteringPanel . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QFilteringPanel . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QFullScreenWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QFullScreenWidget . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " StdAfx . h " <nl> <nl> # include " QFullScreenWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QFullScreenWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QFullScreenWidget . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> # include " EditorCommonAPI . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QPropertyTree / PropertyRowCurve . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QPropertyTree / PropertyRowCurve . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " PropertyRowCurve . h " <nl> # include < CrySerialization / ClassFactory . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QPropertyTree / PropertyRowCurve . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QPropertyTree / PropertyRowCurve . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < Serialization / PropertyTree / PropertyRow . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QPropertyTree / PropertyRowToolButton . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QPropertyTree / PropertyRowToolButton . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " stdafx . h " <nl> # include < CryCore / Platform / platform . h > <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QSearchBox . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QSearchBox . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> # include < QSearchBox . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QSearchBox . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QSearchBox . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QLineEdit > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QT / Widgets / QWaitProgress . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QT / Widgets / QWaitProgress . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " QWaitProgress . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QT / Widgets / QWaitProgress . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QT / Widgets / QWaitProgress . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QThumbnailView . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QThumbnailView . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " QThumbnailView . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QThumbnailView . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QThumbnailView . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> class QListView ; <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QTrackingTooltip . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QTrackingTooltip . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " QTrackingTooltip . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QTrackingTooltip . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QTrackingTooltip . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QViewportPane . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QViewportPane . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QViewportPane . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QViewportPane . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # ifndef __ViewportPane_h__ <nl> # define __ViewportPane_h__ <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / QtUtil . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / QtUtil . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " QtUtil . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ResourceSelectorHost . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ResourceSelectorHost . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " IResourceSelectorHost . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / Decorators / EditToolButton . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / Decorators / EditToolButton . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < StdAfx . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / Decorators / PythonActionButton . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / Decorators / PythonActionButton . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " EditorActionButton . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / IDrawContext . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / IDrawContext . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " Color . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / IMenu . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / IMenu . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " sigslot . h " <nl> # include " Rect . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / IUIFacade . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / IUIFacade . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < vector > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyRowColor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyRowColor . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " PropertyRowColor . h " <nl> # include " PropertyTree . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyRowHorizontalLine . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyRowHorizontalLine . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " PropertyRowImpl . h " <nl> # include " PropertyTree . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyTree . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyTree . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < memory > <nl> # include " TreeConfig . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyTreeStyle . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / PropertyTreeStyle . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " Serialization . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / Rect . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / Rect . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> namespace property_tree { <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / TreeConfig . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / TreeConfig . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> struct TreeConfig <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / ValidatorBlock . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / ValidatorBlock . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < CrySerialization / yasli / Config . h > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / sigslot . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / PropertyTree / sigslot . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / sigslot . h : Signal / Slot classes <nl> / / <nl> / / Written by Sarah Thompson ( sarah @ telergy . com ) 2002 . <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / InplaceWidgetComboBox . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / InplaceWidgetComboBox . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < QObject > <nl> # include < QComboBox > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / InplaceWidgetNumber . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / InplaceWidgetNumber . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < QObject > <nl> # include < QLineEdit > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / InplaceWidgetString . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / InplaceWidgetString . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < QObject > <nl> # include < QLineEdit > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / PropertyRowFileOpen . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / PropertyRowFileOpen . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < QObject > <nl> # include " Serialization / PropertyTree / PropertyRow . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QDrawContext . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QDrawContext . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " QDrawContext . h " <nl> # include " Serialization / PropertyTree / IDrawContext . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QDrawContext . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QDrawContext . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " IconXPMCache . h " <nl> # include " QPropertyTree . h " <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QUIFacade . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QUIFacade . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " QUIFacade . h " <nl> # include < QFont > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QUIFacade . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / Serialization / QPropertyTree / QUIFacade . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < memory > <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ViewportInteraction . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ViewportInteraction . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " ViewportInteraction . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorCommon / ViewportInteraction . h <nl> ppp b / Code / Sandbox / Plugins / EditorCommon / ViewportInteraction . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> struct EDITOR_COMMON_API ViewportInteraction <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / AutoCompletePopup . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / AutoCompletePopup . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / AutoCompletePopup . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / AutoCompletePopup . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / CVarWindow . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / CVarWindow . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " CVarWindow . h " <nl> # include " ConsolePlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / CVarWindow . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / CVarWindow . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / ConsolePlugin . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / ConsolePlugin . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / ConsolePlugin . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / ConsolePlugin . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / ConsoleWindow . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / ConsoleWindow . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / EngineListener . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / EngineListener . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " EngineListener . h " <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / EngineListener . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / EngineListener . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / Messages . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / Messages . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / StdAfx . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / StdAfx . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / StdAfx . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / StdAfx . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include < CryCore / Project / CryModuleDefs . h > <nl> # include < CryCore / Platform / platform . h > <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / TabLineEdit . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / TabLineEdit . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorConsole / TabLineEdit . h <nl> ppp b / Code / Sandbox / Plugins / EditorConsole / TabLineEdit . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / Crytek Engine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorEnvironment / LightingSettings . h <nl> ppp b / Code / Sandbox / Plugins / EditorEnvironment / LightingSettings . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> enum eLightAlgorithm / / correspond to the radio buttons in the lighting dialog <nl> mmm a / Code / Sandbox / Plugins / EditorEnvironment / QSettingsWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorEnvironment / QSettingsWidget . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include " stdafx . h " <nl> <nl> # include " QSettingsWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorEnvironment / QSettingsWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorEnvironment / QSettingsWidget . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorParticle / ParticleAssetType . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorParticle / ParticleAssetType . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # include < StdAfx . h > <nl> # include " ParticleAssetType . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorParticle / ParticleAssetType . h <nl> ppp b / Code / Sandbox / Plugins / EditorParticle / ParticleAssetType . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> # pragma once <nl> <nl> # include " AssetSystem / AssetType . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSchematyc / Resource . h <nl> ppp b / Code / Sandbox / Plugins / EditorSchematyc / Resource . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / { { NO_DEPENDENCIES } } <nl> / / Microsoft Visual C + + generated include file . <nl> / / Used by Resource . rc <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / ArchivePresetsEditor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / ArchivePresetsEditor . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SubstanceCommon . h " <nl> # include " SandboxPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / ArchivePresetsEditor . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / ArchivePresetsEditor . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " AssetSystem / AssetEditor . h " <nl> # include < QStringList > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / AssetImporters / SubstanceArchiveImporter . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / AssetImporters / SubstanceArchiveImporter . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " SubstanceArchiveImporter . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / AssetImporters / SubstanceArchiveImporter . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / AssetImporters / SubstanceArchiveImporter . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceArchive . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceArchive . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " SubstanceArchive . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceArchive . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceArchive . h <nl> <nl> - / / Copyright 2001 - 2017 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceInstance . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceInstance . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " SubstanceInstance . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceInstance . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / AssetTypes / SubstanceInstance . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / DefaultPresetsEditor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / DefaultPresetsEditor . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " DefaultPresetsEditor . h " <nl> # include " OutputEditor / GraphViewModel . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / DefaultPresetsEditor . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / DefaultPresetsEditor . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " EditorFramework / Editor . h " <nl> # include < QStringList > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / EditorSubstanceManager . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / EditorSubstanceManager . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " EditorSubstanceManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / EditorSubstanceManager . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / EditorSubstanceManager . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> # include < QObject > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Items / SubstanceConnectionItem . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Items / SubstanceConnectionItem . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH / Crytek Group . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " SubstanceConnectionItem . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Items / SubstanceConnectionItem . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Items / SubstanceConnectionItem . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " NodeGraph / AbstractConnectionItem . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Nodes / SubstanceOriginalOutputNode . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Nodes / SubstanceOriginalOutputNode . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " SubstanceOutputNodeBase . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Nodes / SubstanceOutputNodeBase . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Nodes / SubstanceOutputNodeBase . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include < NodeGraph / AbstractNodeItem . h > <nl> # include " SubstanceCommon . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Nodes / SubstanceVirtualOutputNode . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Nodes / SubstanceVirtualOutputNode . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " SubstanceOutputNodeBase . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Pins / SubstanceBasePinItem . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Pins / SubstanceBasePinItem . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < NodeGraph / AbstractPinItem . h > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Pins / SubstanceInPinItem . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Pins / SubstanceInPinItem . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " SubstanceBasePinItem . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Pins / SubstanceOutPinItem . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / Pins / SubstanceOutPinItem . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " SubstanceBasePinItem . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / SubstanceGraphRuntimeContext . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputEditor / SubstanceGraphRuntimeContext . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < Controls / DictionaryWidget . h > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputWidget . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " OutputWidget . h " <nl> # include " SubstanceCommon . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputWidget . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputsWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputsWidget . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " OutputsWidget . h " <nl> # include " OutputWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / OutputsWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / OutputsWidget . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < QWidget > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / PresetCreator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / PresetCreator . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " PresetCreator . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / PresetCreator . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / PresetCreator . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " Controls / EditorDialog . h " <nl> # include < QStringList > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / PresetEditor . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / PresetEditor . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " PresetEditor . h " <nl> # include " SandboxPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / PresetEditor . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / PresetEditor . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < AssetSystem / AssetEditor . h > <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / Renderers / Base . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / Renderers / Base . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " Base . h " <nl> # include " EditorSubstanceManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / Renderers / Base . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / Renderers / Base . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " ISubstanceInstanceRenderer . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / Renderers / Compressed . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / Renderers / Compressed . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " Compressed . h " <nl> # include " EditorSubstanceManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / Renderers / Compressed . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / Renderers / Compressed . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> # include " Base . h " <nl> # include " EditorSubstanceManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / Renderers / Preview . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / Renderers / Preview . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " Preview . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / Renderers / Preview . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / Renderers / Preview . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include " Base . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / SandboxPlugin . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / SandboxPlugin . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> / / Sandbox plugin wrapper . <nl> # include " StdAfx . h " <nl> # include " SandboxPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / SandboxPlugin . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / SandboxPlugin . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> / / Sandbox plugin wrapper . <nl> # pragma once <nl> # include " IEditor . h " <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / StdAfx . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / StdAfx . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> / / Precompiled header . <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorSubstance / StdAfx . h <nl> ppp b / Code / Sandbox / Plugins / EditorSubstance / StdAfx . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> / / Precompiled header . <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / AnimationContext . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / AnimationContext . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / AnimationContext . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / AnimationContext . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Animators / CommentNodeAnimator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Animators / CommentNodeAnimator . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Animators / CommentNodeAnimator . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Animators / CommentNodeAnimator . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Animators / DirectorNodeAnimator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Animators / DirectorNodeAnimator . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Animators / DirectorNodeAnimator . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Animators / DirectorNodeAnimator . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Animators / LayerNodeAnimator . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Animators / LayerNodeAnimator . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Animators / LayerNodeAnimator . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Animators / LayerNodeAnimator . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / <nl> / / CryEngine Source File . <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / KeysToolbar . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / KeysToolbar . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " KeysToolbar . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / KeysToolbar . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / KeysToolbar . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / PlaybackControlsToolbar . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / PlaybackControlsToolbar . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " PlaybackControlsToolbar . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / PlaybackControlsToolbar . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / PlaybackControlsToolbar . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / PropertyTreeDockWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / PropertyTreeDockWidget . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " PropertyTreeDockWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / PropertyTreeDockWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / PropertyTreeDockWidget . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceTabWidget . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceTabWidget . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " SequenceTabWidget . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceTabWidget . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceTabWidget . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < QWidget . h > <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceToolbar . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceToolbar . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " SequenceToolbar . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceToolbar . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / SequenceToolbar . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / TrackViewCoreComponent . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / TrackViewCoreComponent . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Controls / TrackViewCoreComponent . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Controls / TrackViewCoreComponent . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimNode . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimNode . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimNode . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimNode . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimationTrack . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimationTrack . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimationTrack . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewAnimationTrack . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewCameraNode . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewCameraNode . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewCameraNode . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewCameraNode . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewEntityNode . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewEntityNode . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewEntityNode . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewEntityNode . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> # pragma once <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewGeomCacheAnimationTrack . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewGeomCacheAnimationTrack . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewGeomCacheAnimationTrack . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewGeomCacheAnimationTrack . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNode . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNode . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNode . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNode . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNodeFactories . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNodeFactories . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNodeFactories . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewNodeFactories . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequence . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequence . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequence . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequence . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequenceTrack . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequenceTrack . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequenceTrack . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSequenceTrack . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSplineTrack . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSplineTrack . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2015 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSplineTrack . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewSplineTrack . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2015 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewTrack . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewTrack . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewTrack . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Nodes / TrackViewTrack . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Objects / SequenceObject . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Objects / SequenceObject . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Objects / SequenceObject . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Objects / SequenceObject . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Objects / TrackGizmo . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Objects / TrackGizmo . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / Objects / TrackGizmo . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / Objects / TrackGizmo . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / StdAfx . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / StdAfx . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / StdAfx . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / StdAfx . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # pragma warning ( disable : 4103 ) / / ' . . . \ stlport \ stl \ _cprolog . h ' : alignment changed after including header , may be due to missing # pragma pack ( pop ) <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewComponentsManager . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewComponentsManager . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " TrackViewComponentsManager . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewComponentsManager . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewComponentsManager . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2016 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewCore . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewCore . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " TrackViewPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewCore . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewCore . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2016 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewIcons . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewIcons . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2015 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewMainWindow . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewMainWindow . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewMainWindow . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewMainWindow . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewPlugin . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewPlugin . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewPlugin . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewPlugin . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewPythonFuncs . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewPythonFuncs . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewSequenceManager . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewSequenceManager . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewSequenceManager . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewSequenceManager . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine HeaderFile . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewUndo . cpp <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewUndo . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Source File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewUndo . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewUndo . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2014 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewUtils . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewUtils . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2015 . <nl> <nl> mmm a / Code / Sandbox / Plugins / EditorTrackView / TrackViewWindow . h <nl> ppp b / Code / Sandbox / Plugins / EditorTrackView / TrackViewWindow . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> / / CryEngine Header File . <nl> / / Copyright ( C ) , Crytek , 1999 - 2015 . <nl> <nl> mmm a / Code / Sandbox / Plugins / FacialEditorPlugin / main . cpp <nl> ppp b / Code / Sandbox / Plugins / FacialEditorPlugin / main . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " VehicleEditorPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / MFCToolsPlugin / Controls / ColorCtrl . h <nl> ppp b / Code / Sandbox / Plugins / MFCToolsPlugin / Controls / ColorCtrl . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # if ! defined ( AFX_COLORCTRL_H__CA4DE73C_CDC9_11D3_B261_00104BB13A66__INCLUDED_ ) <nl> # define AFX_COLORCTRL_H__CA4DE73C_CDC9_11D3_B261_00104BB13A66__INCLUDED_ <nl> <nl> mmm a / Code / Sandbox / Plugins / MFCToolsPlugin / QMfcApp / qmfchost . h <nl> ppp b / Code / Sandbox / Plugins / MFCToolsPlugin / QMfcApp / qmfchost . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / MFCToolsPlugin / QMfcApp / qmfcviewporthost . cpp <nl> ppp b / Code / Sandbox / Plugins / MFCToolsPlugin / QMfcApp / qmfcviewporthost . cpp <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < StdAfx . h > <nl> <nl> mmm a / Code / Sandbox / Plugins / MFCToolsPlugin / QMfcApp / qmfcviewporthost . h <nl> ppp b / Code / Sandbox / Plugins / MFCToolsPlugin / QMfcApp / qmfcviewporthost . h <nl> <nl> - / / Copyright 2001 - 2015 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / MeshImporter / AssetImporterFBX . cpp <nl> ppp b / Code / Sandbox / Plugins / MeshImporter / AssetImporterFBX . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " AssetImporterFBX . h " <nl> mmm a / Code / Sandbox / Plugins / MeshImporter / AssetImporterFBX . h <nl> ppp b / Code / Sandbox / Plugins / MeshImporter / AssetImporterFBX . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include < AssetSystem / AssetImporter . h > <nl> <nl> mmm a / Code / Sandbox / Plugins / MeshImporter / TextureHelpers . cpp <nl> ppp b / Code / Sandbox / Plugins / MeshImporter / TextureHelpers . cpp <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # include " StdAfx . h " <nl> # include " TextureHelpers . h " <nl> mmm a / Code / Sandbox / Plugins / MeshImporter / TextureHelpers . h <nl> ppp b / Code / Sandbox / Plugins / MeshImporter / TextureHelpers . h <nl> <nl> - / / Copyright 2001 - 2016 Crytek GmbH . All rights reserved . <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> <nl> # pragma once <nl> <nl> mmm a / Code / Sandbox / Plugins / SamplePlugin / SampleAssetEditor . cpp <nl> ppp b / Code / Sandbox / Plugins / SamplePlugin / SampleAssetEditor . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SampleAssetEditor . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / SamplePlugin / SampleAssetEditor . h <nl> ppp b / Code / Sandbox / Plugins / SamplePlugin / SampleAssetEditor . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < AssetSystem / AssetEditor . h > <nl> mmm a / Code / Sandbox / Plugins / SamplePlugin / SampleAssetType . cpp <nl> ppp b / Code / Sandbox / Plugins / SamplePlugin / SampleAssetType . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> # include " SampleAssetType . h " <nl> <nl> mmm a / Code / Sandbox / Plugins / SamplePlugin / SampleAssetType . h <nl> ppp b / Code / Sandbox / Plugins / SamplePlugin / SampleAssetType . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # pragma once <nl> <nl> # include < AssetSystem / AssetType . h > <nl> mmm a / Code / Sandbox / Plugins / SmartObjectEditor / Resource . h <nl> ppp b / Code / Sandbox / Plugins / SmartObjectEditor / Resource . h <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # define IDEDIT 3 <nl> # define IDDELETE 4 <nl> # define IDREFRESH 5 <nl> mmm a / Code / Sandbox / Plugins / SmartObjectEditor / main . cpp <nl> ppp b / Code / Sandbox / Plugins / SmartObjectEditor / main . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " SmartObjectEditorPlugin . h " <nl> mmm a / Code / Sandbox / Plugins / VehicleEditor / main . cpp <nl> ppp b / Code / Sandbox / Plugins / VehicleEditor / main . cpp <nl> <nl> + / / Copyright 2001 - 2018 Crytek GmbH / Crytek Group . All rights reserved . <nl> + <nl> # include " StdAfx . h " <nl> <nl> # include " VehicleEditorPlugin . h " <nl>
! XT ( DEV - 5401 ) ( git ) Update copyright headers in Code / Sandbox as some files were missed .
CRYTEK/CRYENGINE
0bb9677e3ac020116d4a2186a2316d1baf49604d
2018-04-19T08:18:10Z
mmm a / README . md <nl> ppp b / README . md <nl> We show an inference time comparison between the 3 available pose estimation lib <nl> - * * Hardware compatibility * * : CUDA ( Nvidia GPU ) , OpenCL ( AMD GPU ) , and non - GPU ( CPU - only ) versions . <nl> - * * Usage Alternatives * * : <nl> - [ * * Command - line demo * * ] ( doc / demo_quick_start . md ) for built - in functionality . <nl> - - [ * * C + + API * * ] ( examples / tutorial_api_cpp / ) and [ * * Python API * * ] ( doc / python_module . md ) for custom functionality . E . g . , adding your custom inputs , pre - processing , post - posprocessing , and output steps . <nl> + - [ * * C + + API * * ] ( examples / tutorial_api_cpp / ) and [ * * Python API * * ] ( doc / python_api . md ) for custom functionality . E . g . , adding your custom inputs , pre - processing , post - posprocessing , and output steps . <nl> <nl> For further details , check [ all released features ] ( doc / released_features . md ) and [ release notes ] ( doc / release_notes . md ) . <nl> <nl> Most users do not need to know C + + or Python , they can simply use the OpenPose D <nl> ` ` ` <nl> # Ubuntu <nl> . / build / examples / openpose / openpose . bin <nl> - <nl> + ` ` ` <nl> + ` ` ` <nl> : : Windows - Portable Demo <nl> bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi <nl> ` ` ` <nl> You can also add any of the available flags in any order . Do you also want to ad <nl> ` ` ` <nl> # Ubuntu <nl> . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - face - - hand - - write_json output_json_folder / <nl> - <nl> + ` ` ` <nl> + ` ` ` <nl> : : Windows - Portable Demo <nl> bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - face - - hand - - write_json output_json_folder / <nl> ` ` ` <nl> mmm a / doc / advanced / library_structure / library_add_new_module . md <nl> ppp b / doc / advanced / library_structure / library_add_new_module . md <nl> <nl> - OpenPose Library - Steps to Add a New Module <nl> + OpenPose - Steps to Add a New Module <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> # # Developing Steps <nl> mmm a / doc / advanced / library_structure / library_extend_functionality . md <nl> ppp b / doc / advanced / library_structure / library_extend_functionality . md <nl> <nl> - OpenPose Library - How to Develop OpenPose <nl> + OpenPose - How to Develop OpenPose <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> If you intend to extend the functionality of our library : <nl> <nl> 1 . Read the [ README . md ] ( . . / . . / . . / README . md ) page . <nl> - <nl> 2 . Check the basic library overview doc on [ doc / advanced / library_structure / library_overview . md ] ( library_overview . md ) . <nl> - <nl> 3 . Read , understand and play with the basic real time pose demo source code [ examples / openpose / openpose . cpp ] ( . . / . . / . . / examples / openpose / openpose . cpp ) and [ examples / tutorial_api_cpp ] ( . . / . . / . . / examples / tutorial_api_cpp ) . It includes all the functionality of our library , and it has been properly commented . <nl> - <nl> 4 . Read , understand and play with the other tutorials in [ examples / ] ( . . / . . / . . / examples / ) . It includes more specific examples . <nl> - <nl> 5 . Check the basic UML diagram on the [ doc / advanced / library_structure / UML ] ( UML / ) to get an idea of each module relations . <nl> - <nl> 6 . Take a look to the stucuture of the already existing modules . <nl> - <nl> 7 . The C + + headers files add documentation in [ Doxygen ] ( http : / / www . doxygen . org / ) format . Create this documentation by compiling the [ include ] ( . . / . . / . . / include / ) folder with Doxygen . This documentation is slowly but continuously improved . <nl> - <nl> 8 . You can also take a look to the source code or ask us on GitHub . <nl> mmm a / doc / advanced / standalone_face_or_hand_keypoint_detector . md <nl> ppp b / doc / advanced / standalone_face_or_hand_keypoint_detector . md <nl> <nl> - OpenPose Library - Standalone Face Or Hand Keypoint Detector <nl> + OpenPose - Standalone Face Or Hand Keypoint Detector <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> In case of hand camera views at which the hands are visible but not the rest of the body , or if you do not need the body keypoint detector and want to speed up the process , you can use the OpenPose face or hand keypoint detectors with your own face or hand detectors , rather than using the body keypoint detector as initial detector for those . <nl> mmm a / doc / demo_not_quick_start . md <nl> ppp b / doc / demo_not_quick_start . md <nl> This document is a more detailed continuation of [ doc / demo_quick_start . md ] ( demo_ <nl> 4 . [ Debugging Information ] ( # debugging - information ) <nl> 5 . [ Heat Maps Storing ] ( # heat - maps - storing ) <nl> 6 . [ BODY_25 vs . COCO vs . MPI Models ] ( # body - 25 - vs - coco - vs - mpi - models ) <nl> - 2 . [ Main Flags ] ( # main - flags ) <nl> - 3 . [ Help Flag ] ( # help - flag ) <nl> - 4 . [ All Flags ] ( # all - flags ) <nl> + 2 . [ Help Flag ] ( # help - flag ) <nl> + 3 . [ All Flags ] ( # all - flags ) <nl> <nl> <nl> <nl> There is an exception , for CPU version , the COCO and MPI models seems to be fast <nl> <nl> <nl> <nl> - # # Main Flags <nl> - We enumerate some of the most important flags , check the ` Flags Detailed Description ` section or run ` . / build / examples / openpose / openpose . bin - - help ` for a full description of all of them . <nl> - <nl> - - ` - - face ` : Enables face keypoint detection . <nl> - - ` - - hand ` : Enables hand keypoint detection . <nl> - - ` - - video input . mp4 ` : Read video . <nl> - - ` - - camera 3 ` : Read webcam number 3 . <nl> - - ` - - image_dir path_to_images / ` : Run on a folder with images . <nl> - - ` - - ip_camera http : / / iris . not . iac . es / axis - cgi / mjpg / video . cgi ? resolution = 320x240 ? x . mjpeg ` : Run on a streamed IP camera . See examples public IP cameras [ here ] ( http : / / www . webcamxp . com / publicipcams . aspx ) . <nl> - - ` - - write_video path . avi ` : Save processed images as video . <nl> - - ` - - write_images folder_path ` : Save processed images on a folder . <nl> - - ` - - write_keypoint path / ` : Output JSON , XML or YML files with the people pose data on a folder . <nl> - - ` - - process_real_time ` : For video , it might skip frames to display at real time . <nl> - - ` - - disable_blending ` : If enabled , it will render the results ( keypoint skeletons or heatmaps ) on a black background , not showing the original image . Related : ` part_to_show ` , ` alpha_pose ` , and ` alpha_pose ` . <nl> - - ` - - part_to_show ` : Prediction channel to visualize . <nl> - - ` - - display 0 ` : Display window not opened . Useful for servers and / or to slightly speed up OpenPose . <nl> - - ` - - num_gpu 2 - - num_gpu_start 1 ` : Parallelize over this number of GPUs starting by the desired device id . By default it uses all the available GPUs . <nl> - - ` - - model_pose MPI ` : Model to use , affects number keypoints , speed and accuracy . <nl> - - ` - - logging_level 3 ` : Logging messages threshold , range [ 0 , 255 ] : 0 will output any message & 255 will output none . Current messages in the range [ 1 - 4 ] , 1 for low priority messages and 4 for important ones . <nl> - <nl> - <nl> - <nl> - <nl> - <nl> # # Help Flag <nl> - Now that you are more familiar with OpenPose , you can add the flag ` - - help ` to see all the available OpenPose flags . Check only the flags for ` examples / openpose / openpose . cpp ` itself ( i . e . , the ones in the section ` Flags from examples / openpose / openpose . cpp : ` ) . [ All Flags ] ( # all - flags ) shows them all in this document . <nl> + We recommend [ All Flags ] ( # all - flags ) shows them all in this document , which sorts all the flags by category . <nl> + <nl> + However , you could add the flag ` - - help ` at any point to see all the available OpenPose flags . Check only the flags for ` examples / openpose / openpose . cpp ` itself ( i . e . , the ones in the section ` Flags from examples / openpose / openpose . cpp : ` ) . <nl> ` ` ` <nl> # Ubuntu and Mac <nl> . / build / examples / openpose / openpose . bin - - help <nl> bin \ OpenPoseDemo . exe - - help <nl> <nl> <nl> # # All Flags <nl> - Each flag is divided into flag name , default value , and description . <nl> + Now that you are more familiar with OpenPose , this is a list with all the available flags . Each one is divided into flag name , default value , and description . <nl> <nl> 1 . Debugging / Other <nl> - DEFINE_int32 ( logging_level , 3 , " The logging level . Integer in the range [ 0 , 255 ] . 0 will output any opLog ( ) message , while 255 will not output any . Current OpenPose library messages are in the range 0 - 4 : 1 for low priority messages and 4 for important ones . " ) ; <nl> mmm a / doc / demo_quick_start . md <nl> ppp b / doc / demo_quick_start . md <nl> Forget about the OpenPose code , just download the portable Windows binaries ( or <nl> 1 . [ Mac OSX Additional Step ] ( # mac - osx - additional - step ) <nl> 2 . [ Quick Start ] ( # quick - start ) <nl> 1 . [ Improving Memory and Speed but Decreasing Accuracy ] ( # improving - memory - and - speed - but - decreasing - accuracy ) <nl> - 2 . [ Running on Video ] ( # running - on - video ) <nl> - 3 . [ Running on Webcam ] ( # running - on - webcam ) <nl> - 4 . [ Running on Images ] ( # running - on - images ) <nl> - 5 . [ Face and Hands ] ( # face - and - hands ) <nl> - 6 . [ Maximum Accuracy Configuration ] ( # maximum - accuracy - configuration ) <nl> - 7 . [ 3 - D Reconstruction ] ( # 3 - d - reconstruction ) <nl> - 8 . [ JSON Output ] ( json - output ) <nl> - 9 . [ JSON Output with No Visualization ] ( json - output - with - no - visualization ) <nl> - 10 . [ Not Running All GPUs ] ( # not - running - all - gpus ) <nl> - 11 . [ Kinect 2 . 0 as Webcam on Windows 10 ] ( # kinect - 20 - as - webcam - on - windows - 10 ) <nl> - 12 . [ Tracking ] ( # tracking ) <nl> + 2 . [ Running on Images , Video , or Webcam ] ( # running - on - images - video - or - webcam ) <nl> + 3 . [ Face and Hands ] ( # face - and - hands ) <nl> + 4 . [ Different Outputs ( JSON , Images , Video , UI ) ] ( # different - outputs - json - images - video - ui ) <nl> + 5 . [ Only Skeleton without Background Image ] ( # only - skeleton - without - background - image ) <nl> + 6 . [ Not Running All GPUs ] ( # not - running - all - gpus ) <nl> + 7 . [ Maximum Accuracy Configuration ] ( # maximum - accuracy - configuration ) <nl> + 8 . [ 3 - D Reconstruction ] ( # 3 - d - reconstruction ) <nl> + 9 . [ Tracking ] ( # tracking ) <nl> + 10 . [ Kinect 2 . 0 as Webcam on Windows 10 ] ( # kinect - 20 - as - webcam - on - windows - 10 ) <nl> + 11 . [ Main Flags ] ( # main - flags ) <nl> 3 . [ Advanced Quick Start ] ( # advanced - quick - start ) <nl> <nl> <nl> If these fail with an out of memory error , do not worry , the next example will f <nl> <nl> <nl> # # # Improving Memory and Speed but Decreasing Accuracy <nl> - If you have a Nvidia GPU that does not goes out of memory when running , * * you should skip this step ! * * <nl> + * * If you have a Nvidia GPU that does not goes out of memory when running , you should skip this step ! * * <nl> <nl> - * * Use at your own risk * * : If your GPU runs out of memory or you do not have a Nvidia GPU , you can reduce ` - - net_resolution ` to improve the speed and reduce the memory requirements , but it will also highly reduce accuracy ! The lower the resolution , the lower accuracy , but also improved speed and memory : <nl> + * * Use ` net_resolution ` at your own risk * * : If your GPU runs out of memory or you do not have a Nvidia GPU , you can reduce ` - - net_resolution ` to improve the speed and reduce the memory requirements , but it will also highly reduce accuracy ! The lower the resolution , the lower accuracy but better speed / memory . <nl> ` ` ` <nl> # Ubuntu and Mac <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - net_resolution - 1x320 <nl> . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - net_resolution - 1x256 <nl> . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - net_resolution - 1x196 <nl> . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - net_resolution - 1x128 <nl> ` ` ` <nl> ` ` ` <nl> : : Windows - Portable Demo <nl> + bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x320 <nl> bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x256 <nl> bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x196 <nl> bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x128 <nl> ` ` ` <nl> ` ` ` <nl> : : Windows - Library - Assuming you copied the DLLs following doc / installation / README . md # windows <nl> + build \ x64 \ Release \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x320 <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x256 <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x196 <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - net_resolution - 1x128 <nl> ` ` ` <nl> <nl> + Additional notes : <nl> + - The default resolution is ` - 1x368 ` , any resolution smaller will improve speed . <nl> + - The ` - 1 ` means that that the resolution will be adapted to maintain the aspect ratio of the input source . E . g . , ` - 1x368 ` , ` 656x - 1 ` , and ` 656x368 ` will result in the same exact resolution for 720p and 1080p input images . <nl> + - For videos , using ` - 1 ` is recommended to let OpenPose find the ideal resolution . For a folder of images of different sizes , not adding ` - 1 ` and using images with completely different aspect ratios might result in out of memory issues . E . g . , if a folder contains 2 images of resolution ` 100x11040 ` and ` 10000x368 ` . Then , using the default ` - 1x368 ` will result in the network output resolutions of ` 3x368 ` and ` 10000x368 ` , resulting in an obvious out of memory for the ` 10000x368 ` image . <nl> <nl> <nl> - # # # Running on Video <nl> + <nl> + # # # Running on Images , Video , or Webcam <nl> + - Directory with images ( ` - - image_dir { DIRECTORY_PATH } ` ) : <nl> + ` ` ` <nl> + # Ubuntu and Mac <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples / media / <nl> + # With face and hands <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples / media / - - face - - hand <nl> + ` ` ` <nl> + ` ` ` <nl> + : : Windows - Portable Demo <nl> + bin \ OpenPoseDemo . exe - - image_dir examples \ media \ <nl> + : : With face and hands <nl> + bin \ OpenPoseDemo . exe - - image_dir examples \ media \ - - face - - hand <nl> + ` ` ` <nl> + ` ` ` <nl> + : : Windows - Library - Assuming you copied the DLLs following doc / installation / README . md # windows <nl> + build \ x64 \ Release \ OpenPoseDemo . exe - - image_dir examples \ media \ <nl> + : : With face and hands <nl> + build \ x64 \ Release \ OpenPoseDemo . exe - - image_dir examples \ media \ - - face - - hand <nl> + ` ` ` <nl> + - Video ( ` - - video { VIDEO_PATH } ` ) : <nl> ` ` ` <nl> # Ubuntu and Mac <nl> . / build / examples / openpose / openpose . bin - - video examples / media / video . avi <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - video examples \ media \ video . avi <nl> : : With face and hands <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - face - - hand <nl> ` ` ` <nl> - <nl> - <nl> - <nl> - # # # Running on Webcam <nl> + - Webcam is applied by default ( i . e . , if no ` - - image_dir ` or ` - - video ` flags used ) . Optionally , if you have more than 1 camera , you could use ` - - camera { CAMERA_NUMBER } ` to select the right one : <nl> ` ` ` <nl> # Ubuntu and Mac <nl> . / build / examples / openpose / openpose . bin <nl> + . / build / examples / openpose / openpose . bin - - camera 0 <nl> + . / build / examples / openpose / openpose . bin - - camera 1 <nl> # With face and hands <nl> . / build / examples / openpose / openpose . bin - - face - - hand <nl> ` ` ` <nl> ` ` ` <nl> : : Windows - Portable Demo <nl> bin \ OpenPoseDemo . exe <nl> + bin \ OpenPoseDemo . exe - - camera 0 <nl> + bin \ OpenPoseDemo . exe - - camera 1 <nl> : : With face and hands <nl> bin \ OpenPoseDemo . exe - - face - - hand <nl> ` ` ` <nl> ` ` ` <nl> : : Windows - Library - Assuming you copied the DLLs following doc / installation / README . md # windows <nl> build \ x64 \ Release \ OpenPoseDemo . exe <nl> + build \ x64 \ Release \ OpenPoseDemo . exe - - camera 0 <nl> + build \ x64 \ Release \ OpenPoseDemo . exe - - camera 1 <nl> : : With face and hands <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - face - - hand <nl> ` ` ` <nl> <nl> <nl> <nl> - # # # Running on Images <nl> + # # # Face and Hands <nl> + Simply add ` - - face ` and / or ` - - hand ` to any command : <nl> ` ` ` <nl> # Ubuntu and Mac <nl> - . / build / examples / openpose / openpose . bin - - image_dir examples / media / <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples \ media \ <nl> + . / build / examples / openpose / openpose . bin - - video examples \ media \ video . avi <nl> + . / build / examples / openpose / openpose . bin <nl> # With face and hands <nl> - . / build / examples / openpose / openpose . bin - - image_dir examples / media / - - face - - hand <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples \ media \ - - face - - hand <nl> + . / build / examples / openpose / openpose . bin - - video examples \ media \ video . avi - - face - - hand <nl> + . / build / examples / openpose / openpose . bin - - face - - hand <nl> ` ` ` <nl> ` ` ` <nl> : : Windows - Portable Demo <nl> bin \ OpenPoseDemo . exe - - image_dir examples \ media \ <nl> + bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi <nl> + bin \ OpenPoseDemo . exe <nl> : : With face and hands <nl> bin \ OpenPoseDemo . exe - - image_dir examples \ media \ - - face - - hand <nl> + bin \ OpenPoseDemo . exe - - video examples \ media \ video . avi - - face - - hand <nl> + bin \ OpenPoseDemo . exe - - face - - hand <nl> ` ` ` <nl> + <nl> + <nl> + <nl> + # # Different Outputs ( JSON , Images , Video , UI ) <nl> + All the output options are complementary to each other . E . g . , whether you display the images with the skeletons on the UI ( or not ) is independent on whether you save them on disk ( or not ) . <nl> + <nl> + - Save the skeletons in a set of JSON files with ` - - write_json { OUTPUT_VIDEO_PATH } ` . Omitting the flag ( default ) means no JSON saving . See [ doc / output . md ] ( output . md ) to understand the output format of the JSON files . <nl> ` ` ` <nl> - : : Windows - Library - Assuming you copied the DLLs following doc / installation / README . md # windows <nl> - build \ x64 \ Release \ OpenPoseDemo . exe - - image_dir examples \ media \ <nl> - : : With face and hands <nl> - build \ x64 \ Release \ OpenPoseDemo . exe - - image_dir examples \ media \ - - face - - hand <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples \ media \ - - write_json output_jsons / <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_json output_jsons / <nl> + . / build / examples / openpose / openpose . bin - - write_json output_jsons / <nl> + ` ` ` <nl> + - Save on disk the visual output of OpenPose ( the images with the skeletons overlaid ) as an output video ( ` - - write_video { OUTPUT_VIDEO_PATH } ` ) or a set of images ( ` - - write_images { OUTPUT_IMAGE_DIRECTORY_PATH } ` , where ` - - write_images_format { FORMAT } ` could also come handy ) : <nl> + ` ` ` <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_video output / result . avi <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples \ media \ - - write_video output / result . avi <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_images output_images / - - write_images_format png <nl> + . / build / examples / openpose / openpose . bin - - image_dir examples \ media \ - - write_images output_images / - - write_images_format jpg <nl> + ` ` ` <nl> + - You can also disable the UI visualization with ` - - display 0 ` . However , OpenPose will check and make sure your application is generating some kind of output . I . e . , one out of ` - - write_json ` , ` - - write_video ` , or ` - - write_images ` must be set if ` - - display 0 ` ) . <nl> + ` ` ` <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_images output_images / - - display 0 <nl> + ` ` ` <nl> + - To speed up OpenPose even further when using ` - - display 0 ` , also add ` - - render_pose 0 ` if you are not using ` - - write_video ` or ` - - write_images ` . This way , OpenPose will not waste time overlaying skeletons with the input images . <nl> + ` ` ` <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_json output_jsons / - - display 0 - - render_pose 0 <nl> ` ` ` <nl> <nl> <nl> <nl> - # # # Face and Hands <nl> - Simply add ` - - face ` and / or ` - - hand ` to any command , as seeing in the exmaples above for video , webcam , and images . <nl> + # # Only Skeleton without Background Image <nl> + You can also visualize / save the skeleton without the original image overlaid or blended by adding ` - - disable_blending ` : <nl> + ` ` ` <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> + # Only body <nl> + . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - disable_blending <nl> + ` ` ` <nl> + <nl> + <nl> + <nl> + # # Not Running All GPUs <nl> + By default , OpenPose will use all the GPUs available in your machine . The following example runs the demo video ` video . avi ` , parallelizes it over 2 GPUs , GPUs 1 and 2 ( note that it will skip GPU 0 ) : <nl> + ` ` ` <nl> + : : Windows - Portable Demo ( same flags for Ubuntu and Mac ) <nl> + bin \ OpenPoseDemo . exe - - video examples / media / video . avi - - num_gpu 2 - - num_gpu_start 1 <nl> + ` ` ` <nl> <nl> <nl> <nl> Simply add ` - - face ` and / or ` - - hand ` to any command , as seeing in the exmaples ab <nl> This command provides the most accurate results we have been able to achieve for body , hand and face keypoint detection . <nl> <nl> However : <nl> - - This will not work on CPU given the huge ammount of memory required . Your only option with CPU - only versions is to manually crop the people to fit the whole area of the image that is fed into OpenPose . <nl> - - It will also need ~ 10 . 5 GB of GPU memory for body - foot ( BODY_25 ) model ( ~ 6 . 7 GB for COCO model ) . <nl> + - This will only work on Nvidia GPUs with at least 8 GB of memory . It won ' t work on CPU or OpenCL settings . Your only option to maximize accuracy with those is to manually crop the people to fit the whole area of the image that is fed into OpenPose . <nl> + - It will need ~ 10 . 5 GB of GPU memory for the body - foot model ( ` BODY_25 ` ) or ~ 6 . 7 GB for the ` COCO ` model . <nl> - This requires GPUs like Titan X , Titan XP , some Quadro models , P100 , V100 , etc . <nl> - Including hands and face will require > = 16GB GPUs ( so the 12 GB GPUs like Titan X and XPs will no longer work ) . <nl> - This command runs at ~ 2 FPS on a Titan X for the body - foot model ( ~ 1 FPS for COCO ) . <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - flir_camera - - 3d - - number_people_max 1 - - fa <nl> <nl> 2 . Saving 3 - D keypoints and video <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> . / build / examples / openpose / openpose . bin - - flir_camera - - 3d - - number_people_max 1 - - write_json output_folder_path / - - write_video_3d output_folder_path / video_3d . avi <nl> ` ` ` <nl> <nl> 3 . Fast stereo camera image saving ( without keypoint detection ) for later post - processing <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> # Saving video <nl> # Note : saving in PNG rather than JPG will improve image quality , but slow down FPS ( depending on hard disk writing speed and camera number ) <nl> . / build / examples / openpose / openpose . bin - - flir_camera - - num_gpu 0 - - write_video output_folder_path / video . avi - - write_video_fps 5 <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - flir_camera - - 3d - - number_people_max 1 - - fa <nl> <nl> 4 . Reading and processing previouly saved stereo camera images <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> # Optionally add ` - - face ` and / or ` - - hand ` to include face and / or hands <nl> # Assuming 3 cameras <nl> # Note : We highly recommend to reduce ` - - output_resolution ` . E . g . , for 3 cameras recording at 1920x1080 , the resulting image is ( 3x1920 ) x1080 , so we recommend e . g . 640x360 ( x3 reduction ) . <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - flir_camera - - 3d - - number_people_max 1 - - fa <nl> <nl> 5 . Reconstruction when the keypoint is visible in at least ` x ` camera views out of the total ` n ` cameras <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> + # Ubuntu and Mac ( same flags for Windows ) <nl> # Reconstruction when a keypoint is visible in at least 2 camera views ( assuming ` n ` > = 2 ) <nl> . / build / examples / openpose / openpose . bin - - flir_camera - - 3d - - number_people_max 1 - - 3d_min_views 2 - - output_resolution { desired_output_resolution } <nl> # Reconstruction when a keypoint is visible in at least max ( 2 , min ( 4 , n - 1 ) ) camera views <nl> build \ x64 \ Release \ OpenPoseDemo . exe - - flir_camera - - 3d - - number_people_max 1 - - fa <nl> <nl> <nl> <nl> - # # JSON Output <nl> - The following example runs the demo video ` video . avi ` , renders image frames on ` output / result . avi ` , and outputs JSON files in ` output / ` . Note : see [ doc / output . md ] ( output . md ) to understand the format of the JSON files . <nl> + # # # Tracking <nl> + 1 . Runtime huge speed up by reducing the accuracy : <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> - . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_video output / result . avi - - write_json output / <nl> + : : Windows - Portable Demo ( same flags for Ubuntu and Mac ) <nl> + # Using OpenPose 1 frame , tracking the following e . g . , 5 frames <nl> + bin \ OpenPoseDemo . exe - - tracking 5 - - number_people_max 1 <nl> ` ` ` <nl> <nl> - <nl> - <nl> - # # JSON Output with No Visualization <nl> - The following example runs the demo video ` video . avi ` and outputs JSON files in ` output / ` . Note : see [ doc / output . md ] ( output . md ) to understand the format of the JSON files . <nl> + 2 . Runtime speed up while keeping most of the accuracy : <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> - # Only body <nl> - . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_json output / - - display 0 - - render_pose 0 <nl> - # Body + face + hands <nl> - . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - write_json output / - - display 0 - - render_pose 0 - - face - - hand <nl> + : : Windows - Portable Demo ( same flags for Ubuntu and Mac ) <nl> + # Using OpenPose 1 frame and tracking another frame <nl> + bin \ OpenPoseDemo . exe - - tracking 1 - - number_people_max 1 <nl> ` ` ` <nl> <nl> - <nl> - <nl> - # # Not Running All GPUs <nl> - By default , OpenPose will use all the GPUs available in your machine . The following example runs the demo video ` video . avi ` , parallelizes it over 2 GPUs , GPUs 1 and 2 ( note that it will skip GPU 0 ) : <nl> + 3 . Visual smoothness : <nl> ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> - . / build / examples / openpose / openpose . bin - - video examples / media / video . avi - - num_gpu 2 - - num_gpu_start 1 <nl> + : : Windows - Portable Demo ( same flags for Ubuntu and Mac ) <nl> + # Running both OpenPose and tracking on each frame . Note : There is no speed up / slow down <nl> + bin \ OpenPoseDemo . exe - - tracking 0 - - number_people_max 1 <nl> ` ` ` <nl> <nl> <nl> Since the Windows 10 Anniversary , Kinect 2 . 0 can be read as a normal webcam . All <nl> <nl> <nl> <nl> - # # # Tracking <nl> - 1 . Runtime huge speed up by reducing the accuracy : <nl> - ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> - # Using OpenPose 1 frame , tracking the following e . g . , 5 frames <nl> - . / build / examples / openpose / openpose . bin - - tracking 5 - - number_people_max 1 <nl> - ` ` ` <nl> <nl> - 2 . Runtime speed up while keeping most of the accuracy : <nl> - ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> - # Using OpenPose 1 frame and tracking another frame <nl> - . / build / examples / openpose / openpose . bin - - tracking 1 - - number_people_max 1 <nl> - ` ` ` <nl> <nl> - 3 . Visual smoothness : <nl> - ` ` ` <nl> - # Ubuntu and Mac ( same flags for Windows version ) <nl> - # Running both OpenPose and tracking on each frame . Note : There is no speed up / slow down <nl> - . / build / examples / openpose / openpose . bin - - tracking 0 - - number_people_max 1 <nl> - ` ` ` <nl> + # # # Main Flags <nl> + These are the most common flags , but check [ doc / demo_not_quick_start . md ] ( demo_not_quick_start . md ) for a full list and description of all of them . <nl> + <nl> + - ` - - face ` : Enables face keypoint detection . <nl> + - ` - - hand ` : Enables hand keypoint detection . <nl> + - ` - - video input . mp4 ` : Read video ` input . mp4 ` . <nl> + - ` - - camera 3 ` : Read webcam number 3 . <nl> + - ` - - image_dir path_with_images / ` : Run on the directory ` path_with_images / ` with images . <nl> + - ` - - ip_camera http : / / iris . not . iac . es / axis - cgi / mjpg / video . cgi ? resolution = 320x240 ? x . mjpeg ` : Run on a streamed IP camera . See examples public IP cameras [ here ] ( http : / / www . webcamxp . com / publicipcams . aspx ) . <nl> + - ` - - write_video path . avi ` : Save processed images as video . <nl> + - ` - - write_images folder_path ` : Save processed images on a folder . <nl> + - ` - - write_keypoint path / ` : Output JSON , XML or YML files with the people pose data on a folder . <nl> + - ` - - process_real_time ` : For video , it might skip frames to display at real time . <nl> + - ` - - disable_blending ` : If enabled , it will render the results ( keypoint skeletons or heatmaps ) on a black background , not showing the original image . Related : ` part_to_show ` , ` alpha_pose ` , and ` alpha_pose ` . <nl> + - ` - - part_to_show ` : Prediction channel to visualize . <nl> + - ` - - display 0 ` : Display window not opened . Useful for servers and / or to slightly speed up OpenPose . <nl> + - ` - - num_gpu 2 - - num_gpu_start 1 ` : Parallelize over this number of GPUs starting by the desired device id . By default it uses all the available GPUs . <nl> + - ` - - model_pose MPI ` : Model to use , affects number keypoints , speed and accuracy . <nl> + - ` - - logging_level 3 ` : Logging messages threshold , range [ 0 , 255 ] : 0 will output any message & 255 will output none . Current messages in the range [ 1 - 4 ] , 1 for low priority messages and 4 for important ones . <nl> <nl> <nl> <nl> mmm a / doc / output . md <nl> ppp b / doc / output . md <nl> <nl> - OpenPose Demo - Output <nl> + OpenPose - Output <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> <nl> <nl> # # Contents <nl> - 1 . [ Expected Visual Results ] ( # expected - visual - results ) <nl> - 2 . [ Output Format ] ( # output - format ) <nl> - 1 . [ Keypoint Ordering in C + + / Python ] ( # keypoint - ordering - in - c - python ) <nl> - 2 . [ Heatmap Ordering ] ( # heatmap - ordering ) <nl> - 3 . [ Heatmap Saving in Float Format ] ( # heatmap - saving - in - float - format ) <nl> - 4 . [ Heatmap Scaling ] ( # heatmap - scaling ) <nl> - 5 . [ Face and Hands ] ( # face - and - hands ) <nl> - 6 . [ Pose Output Format ] ( # pose - output - format ) <nl> - 7 . [ Face Output Format ] ( # face - output - format ) <nl> - 8 . [ Hand Output Format ] ( # hand - output - format ) <nl> - 3 . [ Reading Saved Results ] ( # reading - saved - results ) <nl> - 4 . [ Keypoint Format in the C + + API ] ( # keypoint - format - in - the - c - api ) <nl> - 5 . [ Camera Matrix Output Format ] ( # camera - matrix - output - format ) <nl> - <nl> - <nl> - <nl> - # # Expected Visual Results <nl> + 1 . [ UI and Visual Output ] ( # ui - and - visual - output ) <nl> + 2 . [ JSON - UI Mapping ] ( # json - ui - mapping ) <nl> + 1 . [ Pose Output Format ( BODY_25 ) ] ( # pose - output - format - body_25 ) <nl> + 2 . [ Pose Output Format ( COCO ) ] ( # pose - output - format - coco ) <nl> + 3 . [ Face Output Format ] ( # face - output - format ) <nl> + 4 . [ Hand Output Format ] ( # hand - output - format ) <nl> + 3 . [ JSON Output Format ] ( # output - format ) <nl> + 4 . [ Keypoints in C + + / Python ] ( # body - keypoints - in - c - python ) <nl> + 1 . [ Keypoint Ordering in C + + / Python ] ( # body - keypoint - ordering - in - c - python ) <nl> + 2 . [ Keypoint Format in Datum ( Advanced ) ] ( # keypoint - format - in - datum - advanced ) <nl> + 5 . [ Reading Saved Results ] ( # reading - saved - results ) <nl> + 6 . [ Advanced ] ( # advanced ) <nl> + 1 . [ Camera Matrix Output Format ] ( # camera - matrix - output - format ) <nl> + 2 . [ Heatmaps ] ( # heatmaps ) <nl> + <nl> + <nl> + <nl> + <nl> + <nl> + # # UI and Visual Output <nl> The visual GUI should show the original image with the poses blended on it , similarly to the pose of this gif : <nl> < p align = " center " > <nl> < img src = " . . / . github / media / shake . gif " , width = " 720 " > <nl> < / p > <nl> <nl> - If you choose to visualize a body part or a PAF ( Part Affinity Field ) heat map with the command option ` - - part_to_show ` , the result should be similar to one of the following images : <nl> + <nl> + <nl> + <nl> + <nl> + # # JSON - UI Mapping <nl> + The output of the JSON files consist of a set of keypoints , whose ordering is related with the UI output as follows : <nl> + <nl> + # # # Pose Output Format ( BODY_25 ) <nl> + < p align = " center " > <nl> + < img src = " . . / . github / media / keypoints_pose_25 . png " , width = " 480 " > <nl> + < / p > <nl> + <nl> + <nl> + <nl> + # # # Pose Output Format ( COCO ) <nl> + < p align = " center " > <nl> + < img src = " . . / . github / media / keypoints_pose_18 . png " , width = " 480 " > <nl> + < / p > <nl> + <nl> + <nl> + <nl> + # # # Face Output Format <nl> < p align = " center " > <nl> - < img src = " . . / . github / media / body_heat_maps . png " , width = " 720 " > <nl> + < img src = " . . / . github / media / keypoints_face . png " , width = " 480 " > <nl> < / p > <nl> <nl> + <nl> + <nl> + # # # Hand Output Format <nl> < p align = " center " > <nl> - < img src = " . . / . github / media / paf_heat_maps . png " , width = " 720 " > <nl> + < img src = " . . / . github / media / keypoints_hand . png " , width = " 480 " > <nl> < / p > <nl> <nl> <nl> <nl> - # # Output Format <nl> - There are 2 alternatives to save the OpenPose output . <nl> <nl> - 1 . The ` write_json ` flag saves the people pose data using a custom JSON writer . Each JSON file has a ` people ` array of objects , where each object has : <nl> - 1 . An array ` pose_keypoints_2d ` containing the body part locations and detection confidence formatted as ` x1 , y1 , c1 , x2 , y2 , c2 , . . . ` . The coordinates ` x ` and ` y ` can be normalized to the range [ 0 , 1 ] , [ - 1 , 1 ] , [ 0 , source size ] , [ 0 , output size ] , etc . , depending on the flag ` keypoint_scale ` ( see flag for more information ) , while ` c ` is the confidence score in the range [ 0 , 1 ] . <nl> - 2 . The arrays ` face_keypoints_2d ` , ` hand_left_keypoints_2d ` , and ` hand_right_keypoints_2d ` , analogous to ` pose_keypoints_2d ` . <nl> - 3 . The analogous 3 - D arrays ` body_keypoints_3d ` , ` face_keypoints_3d ` , ` hand_left_keypoints_2d ` , and ` hand_right_keypoints_2d ` ( if ` - - 3d ` is enabled , otherwise they will be empty ) . Instead of ` x1 , y1 , c1 , x2 , y2 , c2 , . . . ` , their format is ` x1 , y1 , z1 , c1 , x2 , y2 , z2 , c2 , . . . ` , where ` c ` is simply 1 or 0 depending on whether the 3 - D reconstruction was successful or not . <nl> - 4 . The body part candidates before being assembled into people ( if ` - - part_candidates ` is enabled ) . <nl> + <nl> + # # JSON Output Format <nl> + There are 2 alternatives to save the OpenPose output . But both of them follow the keypoint ordering described in the [ Keypoint Ordering in C + + / Python ] ( # body - keypoints - in - c - python ) section ( which you should read next ) . <nl> + <nl> + 1 . The ` - - write_json ` flag saves the people pose data onto JSON files . Each file represents a frame , it has a ` people ` array of objects , where each object has : <nl> + 1 . ` pose_keypoints_2d ` : Body part locations ( ` x ` , ` y ` ) and detection confidence ( ` c ` ) formatted as ` x0 , y0 , c0 , x1 , y1 , c1 , . . . ` . The coordinates ` x ` and ` y ` can be normalized to the range [ 0 , 1 ] , [ - 1 , 1 ] , [ 0 , source size ] , [ 0 , output size ] , etc . ( see the flag ` - - keypoint_scale ` for more information ) , while the confidence score ( ` c ` ) in the range [ 0 , 1 ] . <nl> + 2 . ` face_keypoints_2d ` , ` hand_left_keypoints_2d ` , and ` hand_right_keypoints_2d ` are analogous to ` pose_keypoints_2d ` but applied to the face and hand parts . <nl> + 3 . ` body_keypoints_3d ` , ` face_keypoints_3d ` , ` hand_left_keypoints_2d ` , and ` hand_right_keypoints_2d ` are analogous but applied to the 3 - D parts . They are empty if ` - - 3d ` is not enabled . Their format is ` x0 , y0 , z0 , c0 , x1 , y1 , z1 , c1 , . . . ` , where ` c ` is 1 or 0 depending on whether the 3 - D reconstruction was successful or not . <nl> + 4 . ` part_candidates ` ( optional and advanced ) : The body part candidates before being assembled into people . Empty if ` - - part_candidates ` is not enabled ( see that flag for more details ) . <nl> ` ` ` <nl> { <nl> " version " : 1 . 1 , <nl> There are 2 alternatives to save the OpenPose output . <nl> } <nl> ` ` ` <nl> <nl> - 2 . ( Deprecated ) The ` write_keypoint ` flag uses the OpenCV cv : : FileStorage default formats , i . e . , JSON ( available after OpenCV 3 . 0 ) , XML , and YML . Note that it does not include any other information othern than keypoints . <nl> + 2 . ( Deprecated ) ` - - write_keypoint ` uses the OpenCV ` cv : : FileStorage ` default formats , i . e . , JSON ( if OpenCV 3 or higher ) , XML , and YML . It only prints 2D body information ( no 3D or face / hands ) . <nl> <nl> - Both of them follow the keypoint ordering described in the [ Keypoint Ordering in C + + / Python ] ( # keypoint - ordering - in - c - python ) section . <nl> <nl> <nl> <nl> + <nl> + # # Keypoints in C + + / Python <nl> # # # Keypoint Ordering in C + + / Python <nl> - The body part mapping order of any body model ( e . g . , COCO , MPI ) can be extracted from the C + + API by using the ` getPoseBodyPartMapping ( const PoseModel poseModel ) ` function available in [ poseParameters . hpp ] ( . . / include / openpose / pose / poseParameters . hpp ) : <nl> + The body part mapping order of any body model ( e . g . , ` BODY_25 ` , ` COCO ` , ` MPI ` ) can be extracted from the C + + and Python APIs . <nl> + <nl> + - In C + + , ` getPoseBodyPartMapping ( const PoseModel poseModel ) ` is available in [ poseParameters . hpp ] ( . . / include / openpose / pose / poseParameters . hpp ) : <nl> ` ` ` <nl> / / C + + API call <nl> # include < openpose / pose / poseParameters . hpp > <nl> const auto & poseBodyPartMappingBody135 = getPoseBodyPartMapping ( PoseModel : : BODY_ <nl> / / } ; <nl> ` ` ` <nl> <nl> - In Python , you can check them with the following code : <nl> + - You can also check them on Python : <nl> ` ` ` <nl> poseModel = op . PoseModel . BODY_25 <nl> print ( op . getPoseBodyPartMapping ( poseModel ) ) <nl> print ( op . getPoseMapIndex ( poseModel ) ) <nl> <nl> <nl> <nl> - # # # Heatmap Ordering <nl> - For the * * heat maps storing format * * , instead of saving each of the 67 heatmaps ( 18 body parts + background + 2 x 19 PAFs ) individually , the library concatenates them into a huge ( width x # heat maps ) x ( height ) matrix ( i . e . , concatenated by columns ) . E . g . , columns [ 0 , individual heat map width ] contain the first heat map , columns [ individual heat map width + 1 , 2 * individual heat map width ] contain the second heat map , etc . Note that some image viewers are not able to display the resulting images due to the size . However , Chrome and Firefox are able to properly open them . <nl> - <nl> - The saving order is body parts + background + PAFs . Any of them can be disabled with program flags . If background is disabled , then the final image will be body parts + PAFs . The body parts and background follow the order of ` getPoseBodyPartMapping ( const PoseModel poseModel ) ` . <nl> - <nl> - The PAFs follow the order specified on ` getPosePartPairs ( const PoseModel poseModel ) ` together with ` getPoseMapIndex ( const PoseModel poseModel ) ` . E . g . , assuming COCO ( see example code below ) , the PAF channels in COCO start in 19 ( smallest number in ` getPoseMapIndex ` , equal to # body parts + 1 ) , and end up in 56 ( highest one ) . Then , we can match its value from ` getPosePartPairs ` . For instance , 19 ( x - channel ) and 20 ( y - channel ) in ` getPoseMapIndex ` correspond to PAF from body part 1 to 8 ; 21 and 22 correspond to x , y channels in the joint from body part 8 to 9 , etc . Note that if the smallest channel is odd ( 19 ) , then all the x - channels are odd , and all the y - channels even . If the smallest channel is even , then the opposite will happen . <nl> - ` ` ` <nl> - / / C + + API call <nl> - # include < openpose / pose / poseParameters . hpp > <nl> - const auto & posePartPairsBody25 = getPosePartPairs ( PoseModel : : BODY_25 ) ; <nl> - const auto & posePartPairsCoco = getPosePartPairs ( PoseModel : : COCO_18 ) ; <nl> - const auto & posePartPairsMpi = getPosePartPairs ( PoseModel : : MPI_15 ) ; <nl> - <nl> - / / getPosePartPairs ( PoseModel : : BODY_25 ) result <nl> - / / Each index is the key value corresponding to each body part in ` getPoseBodyPartMapping ` . E . g . , 1 for " Neck " , 2 for " RShoulder " , etc . <nl> - / / 1 , 8 , 1 , 2 , 1 , 5 , 2 , 3 , 3 , 4 , 5 , 6 , 6 , 7 , 8 , 9 , 9 , 10 , 10 , 11 , 8 , 12 , 12 , 13 , 13 , 14 , 1 , 0 , 0 , 15 , 15 , 17 , 0 , 16 , 16 , 18 , 2 , 17 , 5 , 18 , 14 , 19 , 19 , 20 , 14 , 21 , 11 , 22 , 22 , 23 , 11 , 24 <nl> - <nl> - / / getPoseMapIndex ( PoseModel : : BODY_25 ) result <nl> - / / 0 , 1 , 14 , 15 , 22 , 23 , 16 , 17 , 18 , 19 , 24 , 25 , 26 , 27 , 6 , 7 , 2 , 3 , 4 , 5 , 8 , 9 , 10 , 11 , 12 , 13 , 30 , 31 , 32 , 33 , 36 , 37 , 34 , 35 , 38 , 39 , 20 , 21 , 28 , 29 , 40 , 41 , 42 , 43 , 44 , 45 , 46 , 47 , 48 , 49 , 50 , 51 <nl> - ` ` ` <nl> - <nl> - <nl> - <nl> - # # # Heatmap Saving in Float Format <nl> - If you save the heatmaps in floating format by using the flag ` - - write_heatmaps_format float ` , you can later read them in Python with : <nl> - ` ` ` <nl> - # Load custom float format - Example in Python , assuming a ( 18 x 300 x 500 ) size Array <nl> - x = np . fromfile ( heatMapFullPath , dtype = np . float32 ) <nl> - assert x [ 0 ] = = 3 # First parameter saves the number of dimensions ( 18x300x500 = 3 dimensions ) <nl> - shape_x = x [ 1 : 1 + int ( x [ 0 ] ) ] <nl> - assert len ( shape_x [ 0 ] ) = = 3 # Number of dimensions <nl> - assert shape_x [ 0 ] = = 18 # Size of the first dimension <nl> - assert shape_x [ 1 ] = = 300 # Size of the second dimension <nl> - assert shape_x [ 2 ] = = 500 # Size of the third dimension <nl> - arrayData = x [ 1 + int ( round ( x [ 0 ] ) ) : ] <nl> - ` ` ` <nl> - <nl> - <nl> - <nl> - # # # Heatmap Scaling <nl> - Note that ` - - net_resolution ` sets the size of the network , thus also the size of the output heatmaps . This heatmaps are resized while keeping the aspect ratio . When aspect ratio of the the input and network are not the same , padding is added at the bottom and / or right part of the output heatmaps . <nl> + # # # Keypoint Format in Datum ( Advanced ) <nl> + This section is only for advance users that plan to use the C + + API . Not needed for the OpenPose demo and / or Python API . <nl> <nl> - <nl> - <nl> - # # # Face and Hands <nl> - The output format is analogous for hand ( ` hand_left_keypoints ` , ` hand_right_keypoints ` ) and face ( ` face_keypoints ` ) JSON files . <nl> - <nl> - <nl> - <nl> - # # # Pose Output Format ( BODY_25 ) <nl> - < p align = " center " > <nl> - < img src = " . . / . github / media / keypoints_pose_25 . png " , width = " 480 " > <nl> - < / p > <nl> - <nl> - <nl> - <nl> - # # # Pose Output Format ( COCO ) <nl> - < p align = " center " > <nl> - < img src = " . . / . github / media / keypoints_pose_18 . png " , width = " 480 " > <nl> - < / p > <nl> - <nl> - <nl> - <nl> - # # # Face Output Format <nl> - < p align = " center " > <nl> - < img src = " . . / . github / media / keypoints_face . png " , width = " 480 " > <nl> - < / p > <nl> - <nl> - <nl> - <nl> - # # # Hand Output Format <nl> - < p align = " center " > <nl> - < img src = " . . / . github / media / keypoints_hand . png " , width = " 480 " > <nl> - < / p > <nl> - <nl> - <nl> - <nl> - # # Reading Saved Results <nl> - We use standard formats ( JSON , XML , PNG , JPG , . . . ) to save our results , so there are many open - source libraries to read them in most programming languages . From C + + , but you might the functions in [ include / openpose / filestream / fileStream . hpp ] ( . . / include / openpose / filestream / fileStream . hpp ) . In particular , ` loadData ` ( for JSON , XML and YML files ) and ` loadImage ` ( for image formats such as PNG or JPG ) to load the data into cv : : Mat format . <nl> - <nl> - <nl> - <nl> - # # Keypoint Format in the C + + API <nl> There are 3 different keypoint ` Array < float > ` elements in the ` Datum ` class : <nl> <nl> 1 . Array < float > * * poseKeypoints * * : In order to access person ` person ` and body part ` part ` ( where the index matches ` POSE_COCO_BODY_PARTS ` or ` POSE_MPI_BODY_PARTS ` ) , you can simply output : <nl> There are 3 different keypoint ` Array < float > ` elements in the ` Datum ` class : <nl> const auto scoreR = handKeypoints [ 1 ] [ baseIndex + 2 ] ; <nl> ` ` ` <nl> <nl> - # # Camera Matrix Output Format <nl> - Check [ doc / advanced / calibration_module . md # camera - matrix - output - format ] ( advanced / calibration_module . md # camera - matrix - output - format ) . <nl> + <nl> + <nl> + <nl> + <nl> + # # Reading Saved Results <nl> + We use the standard formats ( JSON , PNG , JPG , . . . ) to save our results , so there are many open - source libraries to read them in most programming languages ( especially Python ) . For C + + , you might want to check [ include / openpose / filestream / fileStream . hpp ] ( . . / include / openpose / filestream / fileStream . hpp ) . In particular , ` loadData ` ( for JSON , XML and YML files ) and ` loadImage ` ( for image formats such as PNG or JPG ) to load the data into cv : : Mat format . <nl> + <nl> + <nl> + <nl> + <nl> + <nl> + # # Advanced <nl> + # # # Camera Matrix Output Format <nl> + If you need to use the camera calibration or 3D modules , the camera matrix output format is detailed in [ doc / advanced / calibration_module . md # camera - matrix - output - format ] ( advanced / calibration_module . md # camera - matrix - output - format ) . <nl> + <nl> + <nl> + <nl> + # # # Heatmaps <nl> + If you need to use heatmaps , check [ doc / output_advanced_heatmaps . md ] ( output_advanced_heatmaps . md ) . <nl> new file mode 100644 <nl> index 000000000 . . b8550f1b4 <nl> mmm / dev / null <nl> ppp b / doc / output_advanced_heatmaps . md <nl> <nl> + OpenPose - Heatmap Output ( Advanced ) <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> + <nl> + <nl> + <nl> + # # Contents <nl> + 1 . [ Keypoints ] ( # keypoints ) <nl> + 2 . [ UI and Visual Heatmap Output ] ( # ui - and - visual - heatmap - output ) <nl> + 3 . [ Heatmap Ordering ] ( # heatmap - ordering ) <nl> + 4 . [ Heatmap Saving in Float Format ] ( # heatmap - saving - in - float - format ) <nl> + 5 . [ Heatmap Scaling ] ( # heatmap - scaling ) <nl> + <nl> + <nl> + <nl> + <nl> + <nl> + # # Keypoints <nl> + Check [ doc / output_keypoints . md ] ( output_keypoints . md ) for the basic output information . This document is for users that want to use the heatmaps . <nl> + <nl> + <nl> + <nl> + <nl> + <nl> + # # UI and Visual Heatmap Output <nl> + If you choose to visualize a body part or a PAF ( Part Affinity Field ) heat map with the command option ` - - part_to_show ` , the visual GUI should show something similar to one of the following images : <nl> + < p align = " center " > <nl> + < img src = " . . / . github / media / body_heat_maps . png " , width = " 720 " > <nl> + < / p > <nl> + <nl> + < p align = " center " > <nl> + < img src = " . . / . github / media / paf_heat_maps . png " , width = " 720 " > <nl> + < / p > <nl> + <nl> + <nl> + <nl> + <nl> + <nl> + # # Heatmap Ordering <nl> + For the * * heat maps storing format * * , instead of saving each of the 67 heatmaps ( 18 body parts + background + 2 x 19 PAFs ) individually , the library concatenates them into a huge ( width x # heat maps ) x ( height ) matrix ( i . e . , concatenated by columns ) . E . g . , columns [ 0 , individual heat map width ] contain the first heat map , columns [ individual heat map width + 1 , 2 * individual heat map width ] contain the second heat map , etc . Note that some image viewers are not able to display the resulting images due to the size . However , Chrome and Firefox are able to properly open them . <nl> + <nl> + The saving order is body parts + background + PAFs . Any of them can be disabled with program flags . If background is disabled , then the final image will be body parts + PAFs . The body parts and background follow the order of ` getPoseBodyPartMapping ( const PoseModel poseModel ) ` . <nl> + <nl> + The PAFs follow the order specified on ` getPosePartPairs ( const PoseModel poseModel ) ` together with ` getPoseMapIndex ( const PoseModel poseModel ) ` . E . g . , assuming COCO ( see example code below ) , the PAF channels in COCO start in 19 ( smallest number in ` getPoseMapIndex ` , equal to # body parts + 1 ) , and end up in 56 ( highest one ) . Then , we can match its value from ` getPosePartPairs ` . For instance , 19 ( x - channel ) and 20 ( y - channel ) in ` getPoseMapIndex ` correspond to PAF from body part 1 to 8 ; 21 and 22 correspond to x , y channels in the joint from body part 8 to 9 , etc . Note that if the smallest channel is odd ( 19 ) , then all the x - channels are odd , and all the y - channels even . If the smallest channel is even , then the opposite will happen . <nl> + ` ` ` <nl> + / / C + + API call <nl> + # include < openpose / pose / poseParameters . hpp > <nl> + const auto & posePartPairsBody25 = getPosePartPairs ( PoseModel : : BODY_25 ) ; <nl> + const auto & posePartPairsCoco = getPosePartPairs ( PoseModel : : COCO_18 ) ; <nl> + const auto & posePartPairsMpi = getPosePartPairs ( PoseModel : : MPI_15 ) ; <nl> + <nl> + / / getPosePartPairs ( PoseModel : : BODY_25 ) result <nl> + / / Each index is the key value corresponding to each body part in ` getPoseBodyPartMapping ` . E . g . , 1 for " Neck " , 2 for " RShoulder " , etc . <nl> + / / 1 , 8 , 1 , 2 , 1 , 5 , 2 , 3 , 3 , 4 , 5 , 6 , 6 , 7 , 8 , 9 , 9 , 10 , 10 , 11 , 8 , 12 , 12 , 13 , 13 , 14 , 1 , 0 , 0 , 15 , 15 , 17 , 0 , 16 , 16 , 18 , 2 , 17 , 5 , 18 , 14 , 19 , 19 , 20 , 14 , 21 , 11 , 22 , 22 , 23 , 11 , 24 <nl> + <nl> + / / getPoseMapIndex ( PoseModel : : BODY_25 ) result <nl> + / / 0 , 1 , 14 , 15 , 22 , 23 , 16 , 17 , 18 , 19 , 24 , 25 , 26 , 27 , 6 , 7 , 2 , 3 , 4 , 5 , 8 , 9 , 10 , 11 , 12 , 13 , 30 , 31 , 32 , 33 , 36 , 37 , 34 , 35 , 38 , 39 , 20 , 21 , 28 , 29 , 40 , 41 , 42 , 43 , 44 , 45 , 46 , 47 , 48 , 49 , 50 , 51 <nl> + ` ` ` <nl> + <nl> + <nl> + <nl> + # # Heatmap Saving in Float Format <nl> + If you save the heatmaps in floating format by using the flag ` - - write_heatmaps_format float ` , you can later read them in Python with : <nl> + ` ` ` <nl> + # Load custom float format - Example in Python , assuming a ( 18 x 300 x 500 ) size Array <nl> + x = np . fromfile ( heatMapFullPath , dtype = np . float32 ) <nl> + assert x [ 0 ] = = 3 # First parameter saves the number of dimensions ( 18x300x500 = 3 dimensions ) <nl> + shape_x = x [ 1 : 1 + int ( x [ 0 ] ) ] <nl> + assert len ( shape_x [ 0 ] ) = = 3 # Number of dimensions <nl> + assert shape_x [ 0 ] = = 18 # Size of the first dimension <nl> + assert shape_x [ 1 ] = = 300 # Size of the second dimension <nl> + assert shape_x [ 2 ] = = 500 # Size of the third dimension <nl> + arrayData = x [ 1 + int ( round ( x [ 0 ] ) ) : ] <nl> + ` ` ` <nl> + <nl> + <nl> + <nl> + # # Heatmap Scaling <nl> + Note that ` - - net_resolution ` sets the size of the network , thus also the size of the output heatmaps . This heatmaps are resized while keeping the aspect ratio . When aspect ratio of the the input and network are not the same , padding is added at the bottom and / or right part of the output heatmaps . <nl> similarity index 99 % <nl> rename from doc / python_module . md <nl> rename to doc / python_api . md <nl> mmm a / doc / python_module . md <nl> ppp b / doc / python_api . md <nl> <nl> - # OpenPose Python Module and Demo <nl> + OpenPose - Python API <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> # # Contents <nl> 1 . [ Introduction ] ( # introduction ) <nl> mmm a / doc / release_notes . md <nl> ppp b / doc / release_notes . md <nl> <nl> - OpenPose Library - Release Notes <nl> + OpenPose - Release Notes <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> <nl> mmm a / doc / released_features . md <nl> ppp b / doc / released_features . md <nl> <nl> - OpenPose Library - All Major Released Features <nl> + OpenPose - All Major Released Features <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> + - Nov 2020 : [ * * Python API improved and included on Windows portable binaries * * ] ( https : / / github . com / CMU - Perceptual - Computing - Lab / openpose / releases ) ! <nl> + - Nov 2020 : [ Compatibility with Nvidia 30XX cards , CUDA 11 , and Ubuntu 20 ] ( installation / README . md ) ! <nl> - Sep 2019 : [ * * Training code released * * ] ( https : / / github . com / CMU - Perceptual - Computing - Lab / openpose_train ) ! <nl> - Jan 2019 : [ * * Unity plugin released * * ] ( https : / / github . com / CMU - Perceptual - Computing - Lab / openpose_unity_plugin ) ! <nl> - - Jan 2019 : [ * * Improved Python API * * ] ( doc / python_module . md ) released ! Including body , face , hands , and all the functionality of the C + + API ! <nl> + - Jan 2019 : [ * * Improved Python API * * ] ( doc / python_api . md ) released ! Including body , face , hands , and all the functionality of the C + + API ! <nl> - Dec 2018 : [ * * Foot dataset released * * ] ( https : / / cmu - perceptual - computing - lab . github . io / foot_keypoint_dataset ) and [ * * new paper released * * ] ( https : / / arxiv . org / abs / 1812 . 08008 ) ! <nl> - Sep 2018 : [ * * Experimental tracker * * ] ( demo_quick_start . md # tracking ) ! <nl> - Jun 2018 : [ * * Combined body - foot model released ! 40 % faster and 5 % more accurate * * ] ( installation / README . md ) ! <nl> - - Jun 2018 : [ * * Python API * * ] ( python_module . md ) released ! <nl> + - Jun 2018 : [ * * Python API * * ] ( python_api . md ) released ! <nl> - Jun 2018 : [ * * OpenCL / AMD graphic card version * * ] ( installation / README . md ) released ! <nl> - Jun 2018 : [ * * Calibration toolbox * * ] ( advanced / calibration_module . md ) released ! <nl> - Jun 2018 : [ * * Mac OSX version ( CPU ) * * ] ( installation / README . md ) released ! <nl>
Simplified output doc and more examples in demo_quick_start
CMU-Perceptual-Computing-Lab/openpose
4e86626143183b44dcf4f93521cb28e1567c878b
2020-11-22T19:12:27Z
mmm a / doc / classes / bool . xml <nl> ppp b / doc / classes / bool . xml <nl> <nl> Boolean built - in type . <nl> < / brief_description > <nl> < description > <nl> - Boolean is a built - in type . It can represent any data type that is either a true or false value . You can think of it as an switch with on or off ( 1 or 0 ) setting . It ' s often used as part of programming logic in condition statements like [ code ] if [ / code ] statements . <nl> - [ b ] Note : [ / b ] In a code below [ code ] if can_shoot [ / code ] is equivalent of [ code ] if can_shoot = = true [ / code ] . It is good practice to follow the natural spoken language structure when possible . Use [ code ] if can_shoot [ / code ] rather than [ code ] if can_shoot = = true [ / code ] and use [ code ] if not can_shoot [ / code ] rather than [ code ] if can_shoot = = false [ / code ] . <nl> + Boolean is a built - in type . There are two boolean values : [ code ] true [ / code ] and [ code ] false [ / code ] . You can think of it as an switch with on or off ( 1 or 0 ) setting . Booleans are used in programming for logic in condition statements , like [ code ] if [ / code ] statements . <nl> + Booleans can be directly used in [ code ] if [ / code ] statements . The code below demonstrates this on the [ code ] if can_shoot : [ / code ] line . You don ' t need to use [ code ] = = true [ / code ] , you only need [ code ] if can_shoot : [ / code ] . Similarly , use [ code ] if not can_shoot : [ / code ] rather than [ code ] = = false [ / code ] . <nl> [ codeblock ] <nl> var can_shoot = true <nl> <nl> func shoot ( ) : <nl> if can_shoot : <nl> - # Perform shooting actions here . <nl> + pass # Perform shooting actions here . <nl> [ / codeblock ] <nl> The following code will only create a bullet if both conditions are met : action " shoot " is pressed and if [ code ] can_shoot [ / code ] is [ code ] true [ / code ] . <nl> [ b ] Note : [ / b ] [ code ] Input . is_action_pressed ( " shoot " ) [ / code ] is also a boolean that is [ code ] true [ / code ] when " shoot " is pressed and [ code ] false [ / code ] when " shoot " isn ' t pressed . <nl> <nl> < argument index = " 0 " name = " from " type = " int " > <nl> < / argument > <nl> < description > <nl> - Cast an [ int ] value to a boolean value , this method will return [ code ] true [ / code ] if called with an integer value different to 0 and [ code ] false [ / code ] in other case . <nl> + Cast an [ int ] value to a boolean value , this method will return [ code ] false [ / code ] if [ code ] 0 [ / code ] is passed in , and [ code ] true [ / code ] for all other ints . <nl> < / description > <nl> < / method > <nl> < method name = " bool " > <nl> <nl> < argument index = " 0 " name = " from " type = " float " > <nl> < / argument > <nl> < description > <nl> - Cast a [ float ] value to a boolean value , this method will return [ code ] true [ / code ] if called with a floating - point value different to 0 and [ code ] false [ / code ] in other case . <nl> + Cast a [ float ] value to a boolean value , this method will return [ code ] false [ / code ] if [ code ] 0 . 0 [ / code ] is passed in , and [ code ] true [ / code ] for all other floats . <nl> < / description > <nl> < / method > <nl> < method name = " bool " > <nl> <nl> < argument index = " 0 " name = " from " type = " String " > <nl> < / argument > <nl> < description > <nl> - Cast a [ String ] value to a boolean value , this method will return [ code ] true [ / code ] if called with a non - empty string and [ code ] false [ / code ] in other case . Examples : [ code ] bool ( " False " ) [ / code ] returns [ code ] true [ / code ] , [ code ] bool ( " " ) [ / code ] returns [ code ] false [ / code ] . <nl> + Cast a [ String ] value to a boolean value , this method will return [ code ] false [ / code ] if [ code ] " " [ / code ] is passed in , and [ code ] true [ / code ] for all non - empty strings . <nl> + Examples : [ code ] bool ( " False " ) [ / code ] returns [ code ] true [ / code ] , [ code ] bool ( " " ) [ / code ] returns [ code ] false [ / code ] . <nl> < / description > <nl> < / method > <nl> < / methods > <nl>
Update bool documentation to be more clear
godotengine/godot
08577fab145d797b204822829477ff2087ac3c39
2020-06-21T07:08:28Z
mmm a / patches / chromium / chore_expose_v8_initialization_isolate_callbacks . patch <nl> ppp b / patches / chromium / chore_expose_v8_initialization_isolate_callbacks . patch <nl> we ' re running with contextIsolation enabled , we should be falling back <nl> to Blink ' s logic . This will be upstreamed in some form . <nl> <nl> - + mmm a / third_party / blink / renderer / bindings / core / v8 / v8_initializer . cc <nl> ppp b / third_party / blink / renderer / bindings / core / v8 / v8_initializer . cc <nl> - CodeGenerationCheckCallbackInMainThread ( v8 : : Local < v8 : : Context > context , <nl> + CodeGenerationCheckCallbackInMainThread ( v8 : : Local < v8 : : Context > context , <nl> return { true , std : : move ( stringified_source ) } ; <nl> } <nl> <nl>
chore : update chore_expose_v8_initialization_isolate_callbacks . patch ( )
electron/electron
44221d7452379a8a095e2b7a9e114ba3a7530efd
2020-10-16T20:31:13Z
mmm a / servers / visual / rasterizer_rd / rasterizer_scene_high_end_rd . cpp <nl> ppp b / servers / visual / rasterizer_rd / rasterizer_scene_high_end_rd . cpp <nl> RasterizerSceneHighEndRD : : RasterizerSceneHighEndRD ( RasterizerStorageRD * p_storag <nl> } <nl> <nl> RasterizerSceneHighEndRD : : ~ RasterizerSceneHighEndRD ( ) { <nl> + directional_shadow_atlas_set_size ( 0 ) ; <nl> + <nl> / / clear base uniform set if still valid <nl> if ( view_dependant_uniform_set . is_valid ( ) & & RD : : get_singleton ( ) - > uniform_set_is_valid ( view_dependant_uniform_set ) ) { <nl> RD : : get_singleton ( ) - > free ( view_dependant_uniform_set ) ; <nl> mmm a / servers / visual / rasterizer_rd / rasterizer_scene_rd . cpp <nl> ppp b / servers / visual / rasterizer_rd / rasterizer_scene_rd . cpp <nl> RasterizerSceneRD : : RasterizerSceneRD ( RasterizerStorageRD * p_storage ) { <nl> } <nl> <nl> RasterizerSceneRD : : ~ RasterizerSceneRD ( ) { <nl> - directional_shadow_atlas_set_size ( 0 ) ; <nl> - <nl> for ( Map < Vector2i , ShadowMap > : : Element * E = shadow_maps . front ( ) ; E ; E = E - > next ( ) ) { <nl> RD : : get_singleton ( ) - > free ( E - > get ( ) . depth ) ; <nl> } <nl>
Merge pull request from dragmz / dragmz / exit_crash_fix
godotengine/godot
415a901b685997c8949b9705ef5b8fe6eaeda613
2020-02-14T13:31:54Z
mmm a / docs / root / configuration / http_filters / ext_authz_filter . rst <nl> ppp b / docs / root / configuration / http_filters / ext_authz_filter . rst <nl> If the request is deemed unauthorized then the request will be denied normally w <nl> Note that sending additional custom metadata from the authorization service to the upstream , to the downstream or to the authorization service is <nl> also possible . This is explained in more details at : ref : ` HTTP filter < envoy_api_msg_config . filter . http . ext_authz . v2alpha . ExtAuthz > ` . <nl> <nl> - . . tip : : <nl> - It is recommended that this filter is configured first in the filter chain so that requests are <nl> - authorized prior to the rest of filters processing the request . <nl> - <nl> The content of the requests that are passed to an authorization service is specified by <nl> : ref : ` CheckRequest < envoy_api_msg_service . auth . v2alpha . CheckRequest > ` . <nl> <nl>
docs : Remove " auth should go first " tip ( )
envoyproxy/envoy
8fdede2f0418e0c774ddcb800824d5c826f05ac1
2018-10-23T14:59:24Z
mmm a / aten / src / ATen / native / LinearAlgebra . cpp <nl> ppp b / aten / src / ATen / native / LinearAlgebra . cpp <nl> static inline std : : tuple < Tensor , Tensor > _lu_det_P_diag_U ( const Tensor & self ) { <nl> TORCH_CHECK ( infos . ge ( 0 ) . all ( ) . item < uint8_t > ( ) , " Invalid argument passed to lu " ) ; <nl> auto n = self . size ( - 1 ) ; <nl> auto num_exchanges = ( at : : arange ( 1 , n + 1 , pivs . options ( ) ) ! = pivs ) . sum ( - 1 , / * keepdim = * / false , / * dtype = * / self . scalar_type ( ) ) . fmod_ ( 2 ) ; <nl> - auto u_diagonal = lu . diagonal ( / * offset = * / 0 , / * dim1 = * / - 2 , / * dim2 = * / - 1 ) ; <nl> + / / NB : the ` . contiguous ( ) ` call is added due to the bug in ` . prod ( ) ` as reported in <nl> + / / issue # https : / / github . com / pytorch / pytorch / issues / 34061 <nl> + auto u_diagonal = lu . diagonal ( / * offset = * / 0 , / * dim1 = * / - 2 , / * dim2 = * / - 1 ) . contiguous ( ) ; <nl> return std : : tuple < Tensor , Tensor > ( num_exchanges . mul_ ( - 2 ) . add_ ( 1 ) , u_diagonal ) ; <nl> } <nl> <nl> mmm a / test / test_torch . py <nl> ppp b / test / test_torch . py <nl> def test_single_det ( M , target , desc ) : <nl> <nl> eye = torch . eye ( 5 , dtype = dtype , device = device ) <nl> test_single_det ( eye , ( torch . ones ( ( ) , dtype = dtype , device = device ) , torch . zeros ( ( ) , dtype = dtype , device = device ) ) , ' identity ' ) <nl> + # Testing bug in # 34061 ( https : / / github . com / pytorch / pytorch / issues / 34061 ) <nl> + for n in range ( 250 , 551 , 100 ) : <nl> + mat = torch . randn ( n , n , dtype = dtype , device = device ) <nl> + q , _ = torch . qr ( mat ) <nl> + ref_det , ref_logabsdet = reference_slogdet ( q ) <nl> + test_single_det ( q , ref_det , ref_logabsdet , ' orthogonal ' ) <nl> <nl> def test ( M ) : <nl> assert M . size ( 0 ) > = 5 , ' this helper fn assumes M to be at least 5x5 ' <nl>
Temporary fix for determinant bug on CPU ( )
pytorch/pytorch
fcd6d910450ca119091afbf62099e1fab10fe86e
2020-07-15T04:20:50Z
new file mode 100644 <nl> index 0000000000000 . . db09de2909698 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / BUILD <nl> <nl> + package ( default_visibility = [ <nl> + " / / visibility : public " , <nl> + ] ) <nl> + <nl> + licenses ( [ " notice " ] ) # Apache 2 . 0 <nl> + <nl> + load ( " / / tensorflow : tensorflow . bzl " , " tf_cc_binary " , " tf_cc_test " ) <nl> + <nl> + cc_library ( <nl> + name = " inception_preprocessing " , <nl> + srcs = [ " inception_preprocessing . cc " ] , <nl> + hdrs = [ " inception_preprocessing . h " ] , <nl> + copts = [ <nl> + " - D__ANDROID_TYPES_FULL__ " , <nl> + " - DSUPPORT_SELECTIVE_REGISTRATION " , <nl> + ] , <nl> + deps = [ <nl> + " : stage " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " / / tensorflow / cc : scope " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core / kernels : android_tensorflow_image_op " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : tensorflow " , <nl> + " / / tensorflow / core : protos_all_cc " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : lib " , <nl> + " / / tensorflow / core : ops " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " inception_preprocessing_test " , <nl> + srcs = [ " inception_preprocessing_test . cc " ] , <nl> + args = [ <nl> + " - - test_image = $ ( location : testdata / grace_hopper . jpg ) " , <nl> + ] , <nl> + data = [ " : testdata / grace_hopper . jpg " ] , <nl> + deps = [ <nl> + " : inception_preprocessing " , <nl> + " : android_required_build_flags " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : framework_internal " , <nl> + " / / tensorflow / core : lib " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " utils " , <nl> + srcs = [ " utils . cc " ] , <nl> + hdrs = [ " utils . h " ] , <nl> + deps = [ <nl> + " / / tensorflow / contrib / lite : framework " , <nl> + " / / tensorflow / contrib / lite / kernels : builtin_ops " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " utils_test " , <nl> + srcs = [ " utils_test . cc " ] , <nl> + args = [ <nl> + " - - test_model_file = $ ( location / / tensorflow / contrib / lite : testdata / multi_add . bin ) " , <nl> + ] , <nl> + data = [ " / / tensorflow / contrib / lite : testdata / multi_add . bin " ] , <nl> + deps = [ <nl> + " : utils " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework_internal " , <nl> + " / / tensorflow / core : lib " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " run_tflite_model_op " , <nl> + srcs = [ " run_tflite_model_op . cc " ] , <nl> + deps = [ <nl> + " : utils " , <nl> + " / / tensorflow / contrib / lite : framework " , <nl> + " / / tensorflow / contrib / lite / kernels : builtin_ops " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : tensorflow " , <nl> + " / / tensorflow / core : protos_all_cc " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : lib " , <nl> + " / / tensorflow / core : ops " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + alwayslink = 1 , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " android_required_build_flags " , <nl> + srcs = [ " android_required_build_flags . cc " ] , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " run_tflite_model_op_test " , <nl> + srcs = [ " run_tflite_model_op_test . cc " ] , <nl> + args = [ <nl> + " - - test_model_file = $ ( location / / tensorflow / contrib / lite : testdata / multi_add . bin ) " , <nl> + ] , <nl> + data = [ " / / tensorflow / contrib / lite : testdata / multi_add . bin " ] , <nl> + deps = [ <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " / / tensorflow / cc : scope " , <nl> + " : run_tflite_model_op " , <nl> + " : android_required_build_flags " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : framework_internal " , <nl> + " / / tensorflow / core : lib " , <nl> + " / / tensorflow / core : ops " , <nl> + " / / tensorflow / core : protos_all_cc " , <nl> + " / / tensorflow / core : tensorflow " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " stage " , <nl> + hdrs = [ " stage . h " ] , <nl> + deps = [ <nl> + " / / tensorflow / cc : scope " , <nl> + ] , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " file_reader_stage " , <nl> + srcs = [ " file_reader_stage . cc " ] , <nl> + hdrs = [ " file_reader_stage . h " ] , <nl> + deps = [ <nl> + " : stage " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " / / tensorflow / cc : scope " , <nl> + ] , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " file_reader_stage_test " , <nl> + srcs = [ " file_reader_stage_test . cc " ] , <nl> + deps = [ <nl> + " : file_reader_stage " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core / kernels : android_whole_file_read_ops " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : tensorflow " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " run_tflite_model_stage " , <nl> + srcs = [ " run_tflite_model_stage . cc " ] , <nl> + hdrs = [ " run_tflite_model_stage . h " ] , <nl> + deps = [ <nl> + " : run_tflite_model_op " , <nl> + " : stage " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " / / tensorflow / cc : scope " , <nl> + ] , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " accuracy_eval_stage " , <nl> + hdrs = [ " accuracy_eval_stage . h " ] , <nl> + deps = [ <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " imagenet_topk_eval " , <nl> + srcs = [ " imagenet_topk_eval . cc " ] , <nl> + hdrs = [ " imagenet_topk_eval . h " ] , <nl> + deps = [ <nl> + " : accuracy_eval_stage " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " imagenet_topk_eval_test " , <nl> + srcs = [ " imagenet_topk_eval_test . cc " ] , <nl> + deps = [ <nl> + " : imagenet_topk_eval " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " eval_pipeline " , <nl> + srcs = [ " eval_pipeline . cc " ] , <nl> + hdrs = [ " eval_pipeline . h " ] , <nl> + deps = [ <nl> + " : accuracy_eval_stage " , <nl> + " : stage " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " eval_pipeline_test " , <nl> + srcs = [ " eval_pipeline_test . cc " ] , <nl> + deps = [ <nl> + " : eval_pipeline " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : ops " , <nl> + " / / tensorflow / core : tensorflow " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " eval_pipeline_builder " , <nl> + srcs = [ " eval_pipeline_builder . cc " ] , <nl> + hdrs = [ " eval_pipeline_builder . h " ] , <nl> + deps = [ <nl> + " : eval_pipeline " , <nl> + " : accuracy_eval_stage " , <nl> + " : stage " , <nl> + " @ com_google_absl / / absl / memory " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : ops " , <nl> + " / / tensorflow / core : tensorflow " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + tf_cc_test ( <nl> + name = " eval_pipeline_builder_test " , <nl> + srcs = [ " eval_pipeline_builder_test . cc " ] , <nl> + deps = [ <nl> + " : eval_pipeline_builder " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " @ com_google_googletest / / : gtest " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core : android_test_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + " / / tensorflow / core : ops " , <nl> + " / / tensorflow / core : tensorflow " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " csv_writer " , <nl> + hdrs = [ " csv_writer . h " ] , <nl> + deps = select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : lib " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + cc_library ( <nl> + name = " imagenet_model_evaluator " , <nl> + srcs = [ " imagenet_model_evaluator . cc " ] , <nl> + hdrs = [ " imagenet_model_evaluator . h " ] , <nl> + deps = [ <nl> + " : android_required_build_flags " , <nl> + " : eval_pipeline " , <nl> + " : eval_pipeline_builder " , <nl> + " : file_reader_stage " , <nl> + " : imagenet_topk_eval " , <nl> + " : inception_preprocessing " , <nl> + " : run_tflite_model_stage " , <nl> + " : utils " , <nl> + " @ com_google_absl / / absl / memory " , <nl> + " / / tensorflow / cc : cc_ops " , <nl> + " / / tensorflow / cc : scope " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + " / / tensorflow / core / kernels : android_whole_file_read_ops " , <nl> + " / / tensorflow / core / kernels : android_tensorflow_image_op " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : tensorflow " , <nl> + " / / tensorflow / core : framework_internal " , <nl> + " / / tensorflow / core : framework " , <nl> + " / / tensorflow / core : lib " , <nl> + " / / tensorflow / core : core_cpu " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> + <nl> + tf_cc_binary ( <nl> + name = " imagenet_accuracy_eval " , <nl> + srcs = [ " imagenet_accuracy_eval . cc " ] , <nl> + deps = [ <nl> + " : android_required_build_flags " , <nl> + " : csv_writer " , <nl> + " : imagenet_model_evaluator " , <nl> + " : imagenet_topk_eval " , <nl> + " @ com_google_absl / / absl / memory " , <nl> + ] + select ( <nl> + { <nl> + " / / tensorflow : android " : [ <nl> + " / / tensorflow / core : android_tensorflow_lib " , <nl> + ] , <nl> + " / / conditions : default " : [ <nl> + " / / tensorflow / core : lib " , <nl> + " / / tensorflow / core : framework_internal " , <nl> + ] , <nl> + } , <nl> + ) , <nl> + ) <nl> new file mode 100644 <nl> index 0000000000000 . . 9cb843729aa8c <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / accuracy_eval_stage . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_ACCURACY_EVAL_STAGE_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_ACCURACY_EVAL_STAGE_H_ <nl> + <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / core / framework / tensor . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / / Base class for evaluation stage that evaluates the accuracy of the model . <nl> + / / This stage calculates the accuracy metrics given the model outputs and <nl> + / / expected ground truth . <nl> + class AccuracyEval { <nl> + public : <nl> + AccuracyEval ( ) = default ; <nl> + AccuracyEval ( const AccuracyEval & ) = delete ; <nl> + AccuracyEval & operator = ( const AccuracyEval & ) = delete ; <nl> + <nl> + AccuracyEval ( const AccuracyEval & & ) = delete ; <nl> + AccuracyEval & operator = ( const AccuracyEval & & ) = delete ; <nl> + <nl> + virtual ~ AccuracyEval ( ) = default ; <nl> + <nl> + / / Evaluates the accuracy of the model for given ` model_outputs ` and the <nl> + / / ` ground truth ` . <nl> + / / Derived classes can do additional book keeping , calculate aggregrate <nl> + / / statistics etc for the given model . <nl> + virtual Status ComputeEval ( const std : : vector < Tensor > & model_outputs , <nl> + const Tensor & ground_truth ) = 0 ; <nl> + } ; <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_ACCURACY_EVAL_STAGE_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 7fa8986716b8c <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / android_required_build_flags . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + / / Tensorflow on Android requires selective registration to be enabled in order <nl> + / / for certain types ( e . g . DT_UINT8 ) to work . <nl> + / / Checks below ensure that for Android build , the right flags are passed to <nl> + / / the compiler . <nl> + <nl> + # if defined ( __ANDROID__ ) & & ( ! defined ( __ANDROID_TYPES_FULL__ ) | | \ <nl> + ! defined ( SUPPORT_SELECTIVE_REGISTRATION ) ) <nl> + # error \ <nl> + " Binary needs custom kernel support . For enabling custom kernels on " \ <nl> + " Android , please pass - D__ANDROID_TYPES_FULL__ & & " \ <nl> + " - DSUPPORT_SELECTIVE_REGISTRATION for including the kernel in the binary . " <nl> + # endif <nl> new file mode 100644 <nl> index 0000000000000 . . 806b0d9418e8b <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / csv_writer . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_CSV_WRITER_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_CSV_WRITER_H_ <nl> + <nl> + # include < fstream > <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / core / lib / core / errors . h " <nl> + # include " tensorflow / core / lib / core / status . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + / / A simple CSV writer that writes values of same type for fixed number of <nl> + / / columns . This supports a very limited set of CSV spec and doesn ' t do any <nl> + / / escaping . <nl> + / / Usage : <nl> + / / std : : ofstream * output_stream = . . . <nl> + / / CSVWriter writer ( { " column1 " , " column2 " } , output_stream ) ; <nl> + / / writer . WriteRow ( { 4 , 5 } ) ; <nl> + / / writer . Flush ( ) ; / / flush results immediately . <nl> + class CSVWriter { <nl> + public : <nl> + CSVWriter ( const std : : vector < string > & columns , std : : ofstream * output_stream ) <nl> + : num_columns_ ( columns . size ( ) ) , output_stream_ ( output_stream ) { <nl> + TF_CHECK_OK ( WriteRow ( columns , output_stream_ ) ) ; <nl> + } <nl> + <nl> + template < typename T > <nl> + Status WriteRow ( const std : : vector < T > & values ) { <nl> + if ( values . size ( ) ! = num_columns_ ) { <nl> + return errors : : InvalidArgument ( " Invalid size for row : " , values . size ( ) , <nl> + " expected : " , num_columns_ ) ; <nl> + } <nl> + return WriteRow ( values , output_stream_ ) ; <nl> + } <nl> + <nl> + void Flush ( ) { output_stream_ - > flush ( ) ; } <nl> + <nl> + ~ CSVWriter ( ) { output_stream_ - > flush ( ) ; } <nl> + <nl> + private : <nl> + template < typename T > <nl> + static Status WriteRow ( const std : : vector < T > & values , <nl> + std : : ofstream * output_stream ) { <nl> + bool first = true ; <nl> + for ( const auto & v : values ) { <nl> + if ( ! first ) { <nl> + ( * output_stream ) < < " , " ; <nl> + } else { <nl> + first = false ; <nl> + } <nl> + ( * output_stream ) < < v ; <nl> + } <nl> + ( * output_stream ) < < " \ n " ; <nl> + if ( ! output_stream - > good ( ) ) { <nl> + return errors : : Internal ( " Writing to stream failed . " ) ; <nl> + } <nl> + return Status : : OK ( ) ; <nl> + } <nl> + const size_t num_columns_ ; <nl> + std : : ofstream * output_stream_ ; <nl> + } ; <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_CSV_WRITER_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . a03aba6a2685d <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / eval_pipeline . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + Status EvalPipeline : : AttachSession ( std : : unique_ptr < Session > session ) { <nl> + session_ = std : : move ( session ) ; <nl> + TF_RETURN_IF_ERROR ( session_ - > Create ( model_graph_ ) ) ; <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + Status EvalPipeline : : Run ( const Tensor & input , const Tensor & ground_truth ) { <nl> + if ( session_ = = nullptr ) { <nl> + return errors : : Internal ( " No session is associated with the graph . " ) ; <nl> + } <nl> + std : : vector < Tensor > outputs ; <nl> + TF_RETURN_IF_ERROR ( session_ - > Run ( { { params_ . model_input_node_name , input } } , <nl> + { params_ . model_output_node_name } , { } , <nl> + & outputs ) ) ; <nl> + TF_RETURN_IF_ERROR ( eval_ - > ComputeEval ( outputs , ground_truth ) ) ; <nl> + return Status : : OK ( ) ; <nl> + } <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . c9cfc866139da <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / eval_pipeline . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_EVAL_PIPELINE_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_EVAL_PIPELINE_H_ <nl> + <nl> + # include < string > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / accuracy_eval_stage . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / stage . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / / Pipeline for evaluating a model . <nl> + / / Runs the graph and passes the output of graph to <nl> + / / the provided instance of AccuracyEval . <nl> + / / Example usage : <nl> + / / AccuracyEval * eval ; <nl> + / / GraphDef graph_def ; <nl> + / / . . . populate graph_def . . . <nl> + / / <nl> + / / EvalPipeline eval_pipeline ( & graph_def , <nl> + / / { . model_input_node_name = " model_input " , <nl> + / / . model_output_node_name = " model_output " } , <nl> + / / eval ) ; <nl> + / / std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + / / TF_CHECK_OK ( eval_pipeline . AttachSession ( std : : move ( session ) ) ) ; <nl> + / / Tensor input = . . . read input for the model . . . <nl> + / / Tensor ground_truth = . . . read ground truth for the model . . . <nl> + / / TF_CHECK_OK ( eval_pipeline . Run ( input , ground_truth ) ) ; <nl> + / / <nl> + class EvalPipeline { <nl> + public : <nl> + struct Params { <nl> + string model_input_node_name ; <nl> + string model_output_node_name ; <nl> + } ; <nl> + <nl> + / / Creates a new ` EvalPipeline ` object . The ownership of the ` accuracy_eval ` <nl> + / / is retained by the caller . Lifetime of ` accuracy_eval ` instance should <nl> + / / be longer than the lifetime of this instance of pipeline . <nl> + EvalPipeline ( const GraphDef & graph , const Params & params , <nl> + AccuracyEval * accuracy_eval ) <nl> + : model_graph_ ( graph ) , <nl> + params_ ( params ) , <nl> + eval_ ( accuracy_eval ) , <nl> + session_ ( nullptr ) { } <nl> + <nl> + EvalPipeline ( const EvalPipeline & ) = delete ; <nl> + EvalPipeline & operator = ( const EvalPipeline & ) = delete ; <nl> + <nl> + EvalPipeline ( const EvalPipeline & & ) = delete ; <nl> + EvalPipeline & operator = ( const EvalPipeline & & ) = delete ; <nl> + <nl> + / / Attaches the given session to this instance of pipeline . <nl> + / / The provided session object will be reused for subsequent calls to <nl> + / / EvalPipeline : : Run . <nl> + Status AttachSession ( std : : unique_ptr < Session > session ) ; <nl> + <nl> + / / Runs the model by feeding ` input ` and then passes the output of the model <nl> + / / along with provided ` ground_truth ` to the AccuracyEval instance by calling <nl> + / / AccuracyEval : : ComputeEval . <nl> + Status Run ( const Tensor & input , const Tensor & ground_truth ) ; <nl> + <nl> + private : <nl> + GraphDef model_graph_ ; <nl> + Params params_ ; <nl> + AccuracyEval * eval_ ; <nl> + std : : unique_ptr < Session > session_ ; <nl> + } ; <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_EVAL_PIPELINE_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 2e16437e1588b <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / eval_pipeline_builder . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline_builder . h " <nl> + <nl> + # include " absl / memory / memory . h " <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + EvalPipelineBuilder & EvalPipelineBuilder : : WithInputStage ( Stage * input_stage ) { <nl> + input_stage_ = input_stage ; <nl> + return * this ; <nl> + } <nl> + <nl> + EvalPipelineBuilder & EvalPipelineBuilder : : WithPreprocessingStage ( <nl> + Stage * preprocessing_stage ) { <nl> + preprocessing_stage_ = preprocessing_stage ; <nl> + return * this ; <nl> + } <nl> + <nl> + EvalPipelineBuilder & EvalPipelineBuilder : : WithRunModelStage ( <nl> + Stage * run_model_stage ) { <nl> + run_model_stage_ = run_model_stage ; <nl> + return * this ; <nl> + } <nl> + <nl> + EvalPipelineBuilder & EvalPipelineBuilder : : WithAccuracyEval ( <nl> + AccuracyEval * accuracy_eval ) { <nl> + accuracy_eval_ = accuracy_eval ; <nl> + return * this ; <nl> + } <nl> + <nl> + EvalPipelineBuilder & EvalPipelineBuilder : : WithInput ( const string & input_name , <nl> + DataType input_type ) { <nl> + input_name_ = input_name ; <nl> + input_type_ = input_type ; <nl> + return * this ; <nl> + } <nl> + <nl> + Status EvalPipelineBuilder : : Build ( <nl> + const Scope & scope , std : : unique_ptr < EvalPipeline > * eval_pipeline ) { <nl> + if ( input_stage_ = = nullptr ) { <nl> + return errors : : InvalidArgument ( " Input stage is null . " ) ; <nl> + } <nl> + if ( preprocessing_stage_ = = nullptr ) { <nl> + return errors : : InvalidArgument ( " Preprocessing stage is null . " ) ; <nl> + } <nl> + if ( run_model_stage_ = = nullptr ) { <nl> + return errors : : InvalidArgument ( " Run model stage is null . " ) ; <nl> + } <nl> + if ( accuracy_eval_ = = nullptr ) { <nl> + return errors : : InvalidArgument ( " accuracy_eval is null . " ) ; <nl> + } <nl> + if ( input_name_ . empty ( ) ) { <nl> + return errors : : InvalidArgument ( " input name is not set . " ) ; <nl> + } <nl> + if ( input_type_ = = DT_INVALID ) { <nl> + return errors : : InvalidArgument ( " input type is not set . " ) ; <nl> + } <nl> + <nl> + auto input_placeholder = <nl> + ops : : Placeholder ( scope . WithOpName ( input_name_ ) , input_type_ ) ; <nl> + TF_RETURN_IF_ERROR ( scope . status ( ) ) ; <nl> + <nl> + input_stage_ - > AddToGraph ( scope , input_placeholder ) ; <nl> + TF_RETURN_IF_ERROR ( scope . status ( ) ) ; <nl> + <nl> + preprocessing_stage_ - > AddToGraph ( scope , input_stage_ - > Output ( ) ) ; <nl> + TF_RETURN_IF_ERROR ( scope . status ( ) ) ; <nl> + <nl> + run_model_stage_ - > AddToGraph ( scope , preprocessing_stage_ - > Output ( ) ) ; <nl> + TF_RETURN_IF_ERROR ( scope . status ( ) ) ; <nl> + <nl> + GraphDef graph_def ; <nl> + TF_RETURN_IF_ERROR ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + EvalPipeline : : Params params ; <nl> + params . model_input_node_name = input_name_ ; <nl> + params . model_output_node_name = run_model_stage_ - > output_name ( ) ; <nl> + * eval_pipeline = <nl> + absl : : make_unique < EvalPipeline > ( graph_def , params , accuracy_eval_ ) ; <nl> + <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 692db022f8bc7 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / eval_pipeline_builder . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_EVAL_PIPELINE_BUILDER_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_EVAL_PIPELINE_BUILDER_H_ <nl> + <nl> + # include < memory > <nl> + # include < string > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / accuracy_eval_stage . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / stage . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / / A builder to simplify construction of an ` EvalPipeline ` instance . <nl> + / / The ` Build ` method creates an | EvalPipeline | with the following structure : <nl> + / / | input | - > | input_stage | <nl> + / / | - - > | preprocessing_stage | <nl> + / / | - - > | run_model_stage | - > | accuracy_eval_stage | . <nl> + / / The stages are chained in the order shown above . Any missing stage results in <nl> + / / an error . The ownership of the stage object is retained by the caller . Stage <nl> + / / objects need to exist until the | Build | method is called . <nl> + / / <nl> + / / Currently only single inputs are supported . <nl> + / / <nl> + / / Example Usage : <nl> + / / EvalPipelineBuilder builder ; <nl> + / / std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + / / auto status = builder . WithInput ( " pipeline_input " , DT_FLOAT ) <nl> + / / . WithInputStage ( & input_stage ) <nl> + / / . WithRunModelStage ( & run_model_stage ) <nl> + / / . WithPreprocessingStage ( & preprocess_stage ) <nl> + / / . WithAccuracyEval ( & eval ) <nl> + / / . Build ( scope , & eval_pipeline ) ; <nl> + / / TF_CHECK_OK ( status ) ; <nl> + class EvalPipelineBuilder { <nl> + public : <nl> + EvalPipelineBuilder ( ) = default ; <nl> + EvalPipelineBuilder ( const EvalPipelineBuilder & ) = delete ; <nl> + EvalPipeline & operator = ( const EvalPipelineBuilder & ) = delete ; <nl> + <nl> + EvalPipelineBuilder ( const EvalPipelineBuilder & & ) = delete ; <nl> + EvalPipeline & operator = ( const EvalPipelineBuilder & & ) = delete ; <nl> + <nl> + / / Sets the input stage for the pipeline . <nl> + / / Input stage converts the input , say filename into appropriate format <nl> + / / that can be consumed by the preprocessing stage . <nl> + EvalPipelineBuilder & WithInputStage ( Stage * input_stage ) ; <nl> + <nl> + / / Sets the preprocessing stage for the pipeline . <nl> + / / Preprocessing stage converts the input into a format that can be used to <nl> + / / run the model . <nl> + EvalPipelineBuilder & WithPreprocessingStage ( Stage * preprocessing_stage ) ; <nl> + <nl> + / / Sets the run model stage for the pipeline . <nl> + / / This stage receives the preprocessing input and output of this stage is <nl> + / / fed to the accuracy eval stage . <nl> + EvalPipelineBuilder & WithRunModelStage ( Stage * run_model_stage ) ; <nl> + <nl> + / / Sets the accuracy eval for the pipeline . <nl> + / / Results of evaluating the pipeline are fed to the ` accuracy_eval ` instance . <nl> + EvalPipelineBuilder & WithAccuracyEval ( AccuracyEval * accuracy_eval ) ; <nl> + <nl> + / / Sets the name and type of input for the pipeline . <nl> + / / TODO ( shashishekhar ) : Support multiple inputs for the pipeline , use a vector <nl> + / / here . <nl> + EvalPipelineBuilder & WithInput ( const string & input_name , DataType input_type ) ; <nl> + <nl> + / / Builds the pipeline and assigns the pipeline to ` eval_pipeline ` . <nl> + / / If the pipeline creation fails ` eval_pipeline ` is untouched . <nl> + Status Build ( const Scope & scope , <nl> + std : : unique_ptr < EvalPipeline > * eval_pipeline ) ; <nl> + <nl> + private : <nl> + Stage * input_stage_ = nullptr ; <nl> + Stage * preprocessing_stage_ = nullptr ; <nl> + Stage * run_model_stage_ = nullptr ; <nl> + AccuracyEval * accuracy_eval_ = nullptr ; <nl> + string input_name_ ; <nl> + DataType input_type_ = DT_INVALID ; <nl> + } ; <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_EVAL_PIPELINE_BUILDER_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 2d41929b7920f <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / eval_pipeline_builder_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline_builder . h " <nl> + # include < gtest / gtest . h > <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + namespace { <nl> + <nl> + class IdentityStage : public Stage { <nl> + public : <nl> + IdentityStage ( const string & name , const string & output ) <nl> + : name_ ( name ) , output_ ( output ) { } <nl> + <nl> + void AddToGraph ( const Scope & scope , const Input & input ) override { <nl> + called_count_ + + ; <nl> + inputs_ . push_back ( input . node ( ) - > name ( ) ) ; <nl> + stage_output_ = ops : : Identity ( scope . WithOpName ( output_ ) , input ) ; <nl> + } <nl> + <nl> + string name ( ) const override { return name_ ; } <nl> + string output_name ( ) const override { return output_ ; } <nl> + <nl> + int times_called ( ) const { return called_count_ ; } <nl> + <nl> + const std : : vector < string > input_params ( ) { return inputs_ ; } <nl> + <nl> + private : <nl> + string name_ ; <nl> + string output_ ; <nl> + int called_count_ = 0 ; <nl> + std : : vector < string > inputs_ ; <nl> + } ; <nl> + <nl> + class FailingStage : public Stage { <nl> + public : <nl> + FailingStage ( const string & name , const string & output ) <nl> + : name_ ( name ) , output_ ( output ) { } <nl> + <nl> + void AddToGraph ( const Scope & scope , const Input & input ) override { <nl> + called_count_ + + ; <nl> + scope . UpdateStatus ( errors : : Internal ( " Stage failed : " , name_ ) ) ; <nl> + } <nl> + <nl> + string name ( ) const override { return name_ ; } <nl> + string output_name ( ) const override { return output_ ; } <nl> + <nl> + int times_called ( ) const { return called_count_ ; } <nl> + <nl> + private : <nl> + string name_ ; <nl> + string output_ ; <nl> + int called_count_ = 0 ; <nl> + } ; <nl> + <nl> + class SimpleAccuracyEval : public AccuracyEval { <nl> + public : <nl> + SimpleAccuracyEval ( ) { } <nl> + <nl> + Status ComputeEval ( const std : : vector < Tensor > & model_outputs , <nl> + const Tensor & ground_truth ) override { <nl> + return Status : : OK ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + TEST ( EvalPipelineBuilder , MissingPipelineStages ) { <nl> + IdentityStage input_stage ( " input_stage " , " input_stage_out " ) ; <nl> + IdentityStage run_model_stage ( " run_model " , " run_model_out " ) ; <nl> + IdentityStage preprocess_stage ( " preprocess_stage " , " preprocess_stage_out " ) ; <nl> + const string pipeline_input = " pipeline_input " ; <nl> + <nl> + SimpleAccuracyEval eval ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + EvalPipelineBuilder builder ; <nl> + auto status = <nl> + builder . WithInputStage ( & input_stage ) . Build ( scope , & eval_pipeline ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + EXPECT_FALSE ( eval_pipeline ) ; <nl> + <nl> + status = <nl> + builder . WithRunModelStage ( & run_model_stage ) . Build ( scope , & eval_pipeline ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + EXPECT_FALSE ( eval_pipeline ) ; <nl> + <nl> + status = builder . WithPreprocessingStage ( & preprocess_stage ) <nl> + . Build ( scope , & eval_pipeline ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + EXPECT_FALSE ( eval_pipeline ) ; <nl> + <nl> + status = <nl> + builder . WithInput ( pipeline_input , DT_FLOAT ) . Build ( scope , & eval_pipeline ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + EXPECT_FALSE ( eval_pipeline ) ; <nl> + <nl> + status = builder . WithAccuracyEval ( & eval ) . Build ( scope , & eval_pipeline ) ; <nl> + TF_CHECK_OK ( status ) ; <nl> + EXPECT_TRUE ( eval_pipeline ) ; <nl> + } <nl> + <nl> + TEST ( EvalPipeline , InputStageFailure ) { <nl> + FailingStage input_stage ( " input_stage " , " input_stage_out " ) ; <nl> + IdentityStage run_model_stage ( " run_model " , " run_model_out " ) ; <nl> + IdentityStage preprocess_stage ( " preprocess_stage " , " preprocess_stage_out " ) ; <nl> + const string pipeline_input = " pipeline_input " ; <nl> + <nl> + SimpleAccuracyEval eval ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + EvalPipelineBuilder builder ; <nl> + auto status = builder . WithInputStage ( & input_stage ) <nl> + . WithRunModelStage ( & run_model_stage ) <nl> + . WithPreprocessingStage ( & preprocess_stage ) <nl> + . WithInput ( pipeline_input , DT_FLOAT ) <nl> + . WithAccuracyEval ( & eval ) <nl> + . Build ( scope , & eval_pipeline ) ; <nl> + <nl> + EXPECT_FALSE ( scope . status ( ) . ok ( ) ) ; <nl> + / / None of the other stages would have been called . <nl> + EXPECT_EQ ( 1 , input_stage . times_called ( ) ) ; <nl> + EXPECT_EQ ( 0 , preprocess_stage . times_called ( ) ) ; <nl> + EXPECT_EQ ( 0 , run_model_stage . times_called ( ) ) ; <nl> + } <nl> + <nl> + TEST ( EvalPipeline , PreprocessingFailure ) { <nl> + IdentityStage input_stage ( " input_stage " , " input_stage_out " ) ; <nl> + FailingStage preprocess_stage ( " preprocess_stage " , " preprocess_stage_out " ) ; <nl> + IdentityStage run_model_stage ( " run_model " , " run_model_out " ) ; <nl> + const string pipeline_input = " pipeline_input " ; <nl> + <nl> + SimpleAccuracyEval eval ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + EvalPipelineBuilder builder ; <nl> + auto status = builder . WithInputStage ( & input_stage ) <nl> + . WithRunModelStage ( & run_model_stage ) <nl> + . WithPreprocessingStage ( & preprocess_stage ) <nl> + . WithInput ( pipeline_input , DT_FLOAT ) <nl> + . WithAccuracyEval ( & eval ) <nl> + . Build ( scope , & eval_pipeline ) ; <nl> + <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + / / None of the other stages would have been called . <nl> + EXPECT_EQ ( 1 , input_stage . times_called ( ) ) ; <nl> + EXPECT_EQ ( 1 , preprocess_stage . times_called ( ) ) ; <nl> + EXPECT_EQ ( 0 , run_model_stage . times_called ( ) ) ; <nl> + } <nl> + <nl> + TEST ( EvalPipeline , GraphEvalFailure ) { <nl> + IdentityStage input_stage ( " input_stage " , " input_stage_out " ) ; <nl> + IdentityStage preprocess_stage ( " preprocess_stage " , " preprocess_stage_out " ) ; <nl> + FailingStage run_model_stage ( " run_model " , " run_model_out " ) ; <nl> + const string pipeline_input = " pipeline_input " ; <nl> + <nl> + SimpleAccuracyEval eval ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + EvalPipelineBuilder builder ; <nl> + auto status = builder . WithInputStage ( & input_stage ) <nl> + . WithRunModelStage ( & run_model_stage ) <nl> + . WithPreprocessingStage ( & preprocess_stage ) <nl> + . WithInput ( pipeline_input , DT_FLOAT ) <nl> + . WithAccuracyEval ( & eval ) <nl> + . Build ( scope , & eval_pipeline ) ; <nl> + <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + / / None of the other stages would have been called . <nl> + EXPECT_EQ ( 1 , input_stage . times_called ( ) ) ; <nl> + EXPECT_EQ ( 1 , preprocess_stage . times_called ( ) ) ; <nl> + EXPECT_EQ ( 1 , run_model_stage . times_called ( ) ) ; <nl> + } <nl> + <nl> + TEST ( EvalPipeline , PipelineHasCorrectSequence ) { <nl> + IdentityStage input_stage ( " input_stage " , " input_stage_out " ) ; <nl> + IdentityStage preprocess_stage ( " preprocess_stage " , " preprocess_stage_out " ) ; <nl> + IdentityStage run_model_stage ( " run_model " , " run_model_out " ) ; <nl> + const string pipeline_input = " pipeline_input " ; <nl> + <nl> + SimpleAccuracyEval eval ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + EvalPipelineBuilder builder ; <nl> + auto status = builder . WithInputStage ( & input_stage ) <nl> + . WithRunModelStage ( & run_model_stage ) <nl> + . WithPreprocessingStage ( & preprocess_stage ) <nl> + . WithInput ( pipeline_input , DT_FLOAT ) <nl> + . WithAccuracyEval ( & eval ) <nl> + . Build ( scope , & eval_pipeline ) ; <nl> + TF_CHECK_OK ( status ) ; <nl> + <nl> + ASSERT_EQ ( 1 , input_stage . times_called ( ) ) ; <nl> + ASSERT_EQ ( 1 , run_model_stage . times_called ( ) ) ; <nl> + ASSERT_EQ ( 1 , preprocess_stage . times_called ( ) ) ; <nl> + <nl> + EXPECT_EQ ( pipeline_input , input_stage . input_params ( ) [ 0 ] ) ; <nl> + EXPECT_EQ ( input_stage . output_name ( ) , preprocess_stage . input_params ( ) [ 0 ] ) ; <nl> + EXPECT_EQ ( preprocess_stage . output_name ( ) , run_model_stage . input_params ( ) [ 0 ] ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + : : testing : : InitGoogleTest ( & argc , argv ) ; <nl> + <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . ea0f6e19df46d <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / eval_pipeline_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline . h " <nl> + # include < gtest / gtest . h > <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + namespace { <nl> + <nl> + Tensor CreateFloatTensor ( float value ) { <nl> + Tensor tensor ( DT_FLOAT , TensorShape ( { } ) ) ; <nl> + tensor . scalar < float > ( ) ( ) = value ; <nl> + return tensor ; <nl> + } <nl> + <nl> + class NoOpAccuracyEval : public AccuracyEval { <nl> + public : <nl> + explicit NoOpAccuracyEval ( const Status & status_to_return ) <nl> + : status_to_return_ ( status_to_return ) { } <nl> + <nl> + Status ComputeEval ( const std : : vector < Tensor > & model_outputs , <nl> + const Tensor & ground_truth ) override { <nl> + model_outputs_ = model_outputs ; <nl> + ground_truth_ = ground_truth ; <nl> + was_called_ = true ; <nl> + return status_to_return_ ; <nl> + } <nl> + <nl> + bool WasCalled ( ) { return was_called_ ; } <nl> + std : : vector < Tensor > model_outputs ( ) { return model_outputs_ ; } <nl> + Tensor ground_truth ( ) { return ground_truth_ ; } <nl> + <nl> + private : <nl> + std : : vector < Tensor > model_outputs_ ; <nl> + Tensor ground_truth_ ; <nl> + Status status_to_return_ ; <nl> + bool was_called_ = false ; <nl> + } ; <nl> + <nl> + TEST ( EvalPipeline , AccuracyEvalIsCalled ) { <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + / / A graph that adds 1 to input . <nl> + auto input = ops : : Placeholder ( scope . WithOpName ( " input " ) , DT_FLOAT ) ; <nl> + auto add_node = ops : : Add ( scope . WithOpName ( " output " ) , input , 1 . 0f ) ; <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + EvalPipeline : : Params params ; <nl> + params . model_input_node_name = " input " ; <nl> + params . model_output_node_name = " output " ; <nl> + NoOpAccuracyEval accuracy_eval ( Status : : OK ( ) ) ; <nl> + <nl> + EvalPipeline eval_pipeline ( graph_def , params , & accuracy_eval ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( eval_pipeline . AttachSession ( std : : move ( session ) ) ) ; <nl> + TF_CHECK_OK ( eval_pipeline . Run ( CreateFloatTensor ( 5 ) , CreateFloatTensor ( 27 ) ) ) ; <nl> + <nl> + EXPECT_TRUE ( accuracy_eval . WasCalled ( ) ) ; <nl> + auto outputs = accuracy_eval . model_outputs ( ) ; <nl> + ASSERT_EQ ( 1 , outputs . size ( ) ) ; <nl> + EXPECT_EQ ( 6 . 0f , outputs [ 0 ] . scalar < float > ( ) ( ) ) ; <nl> + / / Ground truth is unchanged . <nl> + EXPECT_EQ ( 27 , accuracy_eval . ground_truth ( ) . scalar < float > ( ) ( ) ) ; <nl> + } <nl> + <nl> + TEST ( EvalPipeline , EvalIsNotCalledOnGraphRunFailure ) { <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + / / A graph that adds 1 to input . <nl> + auto input = ops : : Placeholder ( scope . WithOpName ( " input " ) , DT_FLOAT ) ; <nl> + auto add_node = ops : : Add ( scope . WithOpName ( " output " ) , input , 1 . 0f ) ; <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + EvalPipeline : : Params params ; <nl> + params . model_input_node_name = " input " ; <nl> + params . model_output_node_name = " output " ; <nl> + NoOpAccuracyEval accuracy_eval ( Status : : OK ( ) ) ; <nl> + <nl> + EvalPipeline eval_pipeline ( graph_def , params , & accuracy_eval ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( eval_pipeline . AttachSession ( std : : move ( session ) ) ) ; <nl> + <nl> + / / Pass a string tensor instead of a float tensor . <nl> + Tensor string_tensor ( DT_STRING , TensorShape { } ) ; <nl> + auto status = eval_pipeline . Run ( string_tensor , CreateFloatTensor ( 27 ) ) ; <nl> + EXPECT_FALSE ( accuracy_eval . WasCalled ( ) ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + } <nl> + <nl> + TEST ( EvalPipeline , AccuracyEvalFailureResultsInFailure ) { <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + / / A graph that adds 1 to input . <nl> + auto input = ops : : Placeholder ( scope . WithOpName ( " input " ) , DT_FLOAT ) ; <nl> + auto add_node = ops : : Add ( scope . WithOpName ( " output " ) , input , 1 . 0f ) ; <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + EvalPipeline : : Params params ; <nl> + params . model_input_node_name = " input " ; <nl> + params . model_output_node_name = " output " ; <nl> + NoOpAccuracyEval accuracy_eval ( errors : : Internal ( " accuracy_fail " ) ) ; <nl> + <nl> + EvalPipeline eval_pipeline ( graph_def , params , & accuracy_eval ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( eval_pipeline . AttachSession ( std : : move ( session ) ) ) ; <nl> + auto status = eval_pipeline . Run ( CreateFloatTensor ( 5 ) , CreateFloatTensor ( 27 ) ) ; <nl> + <nl> + EXPECT_TRUE ( accuracy_eval . WasCalled ( ) ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + : : testing : : InitGoogleTest ( & argc , argv ) ; <nl> + <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . 61bed369f8b4f <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / file_reader_stage . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / file_reader_stage . h " <nl> + <nl> + # include " tensorflow / cc / framework / scope . h " <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + void FileReaderStage : : AddToGraph ( const Scope & scope , const Input & input ) { <nl> + if ( ! scope . ok ( ) ) return ; <nl> + Scope s = scope . WithOpName ( name ( ) ) ; <nl> + this - > stage_output_ = ops : : ReadFile ( s . WithOpName ( output_name ( ) ) , input ) ; <nl> + } <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 18db5837c1717 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / file_reader_stage . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_FILE_READER_STAGE_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_FILE_READER_STAGE_H_ <nl> + <nl> + # include < string > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / stage . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + / / A stage for reading a file into | string | . <nl> + / / Inputs : a string tensor : | file_name | . <nl> + / / Outputs : a string tensor : contents of | file_name | . <nl> + class FileReaderStage : public Stage { <nl> + public : <nl> + string name ( ) const override { return " stage_filereader " ; } <nl> + string output_name ( ) const override { return " stage_filereader_output " ; } <nl> + <nl> + void AddToGraph ( const Scope & scope , const Input & input ) override ; <nl> + } ; <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_FILE_READER_STAGE_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . a75f99187d6ea <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / file_reader_stage_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include < cstdio > <nl> + # include < fstream > <nl> + # include < memory > <nl> + <nl> + # include < gtest / gtest . h > <nl> + # include " tensorflow / contrib / lite / tools / accuracy / file_reader_stage . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + namespace { <nl> + <nl> + class TempFile { <nl> + public : <nl> + TempFile ( ) { <nl> + string file_path ; <nl> + if ( Env : : Default ( ) - > LocalTempFilename ( & file_path ) ) { <nl> + file_path_ = file_path ; <nl> + created_ = true ; <nl> + } <nl> + } <nl> + <nl> + string filepath ( ) { return file_path_ ; } <nl> + bool CreateFileWithContents ( const std : : string & contents ) { <nl> + if ( ! created_ ) { <nl> + return false ; <nl> + } <nl> + std : : fstream file ( file_path_ , std : : ios_base : : out ) ; <nl> + if ( file ) { <nl> + file < < contents ; <nl> + } <nl> + return file . good ( ) ; <nl> + } <nl> + <nl> + ~ TempFile ( ) { <nl> + if ( created_ ) { <nl> + std : : remove ( file_path_ . c_str ( ) ) ; <nl> + } <nl> + } <nl> + <nl> + private : <nl> + bool created_ = false ; <nl> + string file_path_ ; <nl> + } ; <nl> + <nl> + TEST ( FileReaderStageTest , FileIsRead ) { <nl> + TempFile file ; <nl> + const string kFileContents = " Hello world . " ; <nl> + ASSERT_TRUE ( file . CreateFileWithContents ( kFileContents ) ) ; <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + FileReaderStage reader_stage ; <nl> + reader_stage . AddToGraph ( scope , file . filepath ( ) ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + std : : vector < Tensor > outputs ; <nl> + auto run_status = <nl> + session - > Run ( { } , / * inputs * / <nl> + { reader_stage . output_name ( ) } , { } , / * target node names * / <nl> + & outputs ) ; <nl> + TF_CHECK_OK ( run_status ) ; <nl> + EXPECT_EQ ( 1 , outputs . size ( ) ) ; <nl> + string contents = outputs [ 0 ] . scalar < string > ( ) ( ) ; <nl> + EXPECT_EQ ( kFileContents , contents ) ; <nl> + } <nl> + <nl> + TEST ( FileReaderStageTest , InvalidFile ) { <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + FileReaderStage reader_stage ; <nl> + reader_stage . AddToGraph ( scope , string ( " non_existent_file " ) ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + std : : vector < Tensor > outputs ; <nl> + auto run_status = <nl> + session - > Run ( { } , / * inputs * / <nl> + { reader_stage . output_name ( ) } , { } , / * target node names * / <nl> + & outputs ) ; <nl> + EXPECT_FALSE ( run_status . ok ( ) ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + : : testing : : InitGoogleTest ( & argc , argv ) ; <nl> + <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . 8103d6adb58fb <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / imagenet_accuracy_eval . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include < iomanip > <nl> + # include < memory > <nl> + <nl> + # include " absl / memory / memory . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / csv_writer . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_model_evaluator . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . h " <nl> + # include " tensorflow / core / platform / env . h " <nl> + # include " tensorflow / core / util / command_line_flags . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + namespace { <nl> + <nl> + std : : vector < double > GetAccuracies ( <nl> + const ImagenetTopKAccuracy : : AccuracyStats & accuracy_stats ) { <nl> + std : : vector < double > results ; <nl> + results . reserve ( accuracy_stats . number_of_images ) ; <nl> + if ( accuracy_stats . number_of_images > 0 ) { <nl> + for ( int n : accuracy_stats . topk_counts ) { <nl> + double accuracy = 0 ; <nl> + if ( accuracy_stats . number_of_images > 0 ) { <nl> + accuracy = ( n * 100 . 0 ) / accuracy_stats . number_of_images ; <nl> + } <nl> + results . push_back ( accuracy ) ; <nl> + } <nl> + } <nl> + return results ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + / / Writes results to a CSV file . <nl> + class ResultsWriter : public ImagenetModelEvaluator : : Observer { <nl> + public : <nl> + explicit ResultsWriter ( std : : unique_ptr < CSVWriter > writer ) <nl> + : writer_ ( std : : move ( writer ) ) { } <nl> + <nl> + void OnEvaluationStart ( int total_number_of_images ) override { } <nl> + <nl> + void OnSingleImageEvaluationComplete ( <nl> + const ImagenetTopKAccuracy : : AccuracyStats & stats , <nl> + const string & image ) override ; <nl> + <nl> + private : <nl> + std : : unique_ptr < CSVWriter > writer_ ; <nl> + } ; <nl> + <nl> + void ResultsWriter : : OnSingleImageEvaluationComplete ( <nl> + const ImagenetTopKAccuracy : : AccuracyStats & stats , const string & image ) { <nl> + TF_CHECK_OK ( writer_ - > WriteRow ( GetAccuracies ( stats ) ) ) ; <nl> + writer_ - > Flush ( ) ; <nl> + } <nl> + <nl> + / / Logs results to standard output with ` kLogDelayUs ` microseconds . <nl> + class ResultsLogger : public ImagenetModelEvaluator : : Observer { <nl> + public : <nl> + void OnEvaluationStart ( int total_number_of_images ) override ; <nl> + <nl> + void OnSingleImageEvaluationComplete ( <nl> + const ImagenetTopKAccuracy : : AccuracyStats & stats , <nl> + const string & image ) override ; <nl> + <nl> + private : <nl> + int total_num_images_ = 0 ; <nl> + uint64 last_logged_time_us_ = 0 ; <nl> + static constexpr int kLogDelayUs = 500 * 1000 ; <nl> + } ; <nl> + <nl> + void ResultsLogger : : OnEvaluationStart ( int total_number_of_images ) { <nl> + total_num_images_ = total_number_of_images ; <nl> + LOG ( ERROR ) < < " Starting model evaluation : " < < total_num_images_ ; <nl> + } <nl> + <nl> + void ResultsLogger : : OnSingleImageEvaluationComplete ( <nl> + const ImagenetTopKAccuracy : : AccuracyStats & stats , const string & image ) { <nl> + int num_evaluated = stats . number_of_images ; <nl> + <nl> + double current_percent = num_evaluated * 100 . 0 / total_num_images_ ; <nl> + auto now_us = Env : : Default ( ) - > NowMicros ( ) ; <nl> + <nl> + if ( ( now_us - last_logged_time_us_ ) > = kLogDelayUs ) { <nl> + last_logged_time_us_ = now_us ; <nl> + <nl> + LOG ( ERROR ) < < " Evaluated " < < num_evaluated < < " / " < < total_num_images_ <nl> + < < " images , " < < std : : setprecision ( 2 ) < < std : : fixed <nl> + < < current_percent < < " % " ; <nl> + } <nl> + } <nl> + <nl> + int Main ( int argc , char * argv [ ] ) { <nl> + / / TODO ( shashishekhar ) : Make this binary configurable and model <nl> + / / agnostic . <nl> + string output_file_path ; <nl> + std : : vector < Flag > flag_list = { <nl> + Flag ( " output_file_path " , & output_file_path , " Path to output file . " ) , <nl> + } ; <nl> + Flags : : Parse ( & argc , argv , flag_list ) ; <nl> + <nl> + std : : unique_ptr < ImagenetModelEvaluator > evaluator ; <nl> + CHECK ( ! output_file_path . empty ( ) ) < < " Invalid output file path . " ; <nl> + <nl> + TF_CHECK_OK ( ImagenetModelEvaluator : : Create ( argc , argv , & evaluator ) ) ; <nl> + <nl> + std : : ofstream output_stream ( output_file_path , std : : ios : : out ) ; <nl> + CHECK ( output_stream ) < < " Unable to open output file path : ' " <nl> + < < output_file_path < < " ' " ; <nl> + <nl> + output_stream < < std : : setprecision ( 3 ) < < std : : fixed ; <nl> + std : : vector < string > columns ; <nl> + columns . reserve ( evaluator - > params ( ) . num_ranks ) ; <nl> + for ( int i = 0 ; i < evaluator - > params ( ) . num_ranks ; i + + ) { <nl> + columns . push_back ( " Top " + std : : to_string ( i + 1 ) ) ; <nl> + } <nl> + <nl> + ResultsWriter results_writer ( <nl> + absl : : make_unique < CSVWriter > ( columns , & output_stream ) ) ; <nl> + ResultsLogger logger ; <nl> + evaluator - > AddObserver ( & results_writer ) ; <nl> + evaluator - > AddObserver ( & logger ) ; <nl> + TF_CHECK_OK ( evaluator - > EvaluateModel ( ) ) ; <nl> + return 0 ; <nl> + } <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * argv [ ] ) { <nl> + return tensorflow : : metrics : : Main ( argc , argv ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . 6ddde8e7c0b43 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / imagenet_model_evaluator . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_model_evaluator . h " <nl> + <nl> + # include < fstream > <nl> + # include < iomanip > <nl> + # include < string > <nl> + # include < vector > <nl> + <nl> + # include " absl / memory / memory . h " <nl> + # include " tensorflow / cc / framework / scope . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / eval_pipeline_builder . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / file_reader_stage . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / inception_preprocessing . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / run_tflite_model_stage . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / utils . h " <nl> + # include " tensorflow / core / platform / init_main . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + # include " tensorflow / core / util / command_line_flags . h " <nl> + <nl> + namespace { <nl> + using tensorflow : : string ; <nl> + <nl> + string StripTrailingSlashes ( const string & path ) { <nl> + int end = path . size ( ) ; <nl> + while ( end > 0 & & path [ end - 1 ] = = ' / ' ) { <nl> + end - - ; <nl> + } <nl> + return path . substr ( 0 , end ) ; <nl> + } <nl> + <nl> + tensorflow : : Tensor CreateStringTensor ( const string & value ) { <nl> + tensorflow : : Tensor tensor ( tensorflow : : DT_STRING , tensorflow : : TensorShape ( { } ) ) ; <nl> + tensor . scalar < string > ( ) ( ) = value ; <nl> + return tensor ; <nl> + } <nl> + <nl> + template < typename T > <nl> + std : : vector < T > GetFirstN ( const std : : vector < T > & v , int n ) { <nl> + if ( n > = v . size ( ) ) return v ; <nl> + std : : vector < T > result ( v . begin ( ) , v . begin ( ) + n ) ; <nl> + return result ; <nl> + } <nl> + <nl> + / / File pattern for imagenet files . <nl> + const char * const kImagenetFilePattern = " * . [ jJ ] [ pP ] [ eE ] [ gG ] " ; <nl> + <nl> + } / / namespace <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / * static * / Status ImagenetModelEvaluator : : Create ( <nl> + int argc , char * argv [ ] , <nl> + std : : unique_ptr < ImagenetModelEvaluator > * model_evaluator ) { <nl> + Params params ; <nl> + const std : : vector < Flag > flag_list = { <nl> + Flag ( " model_output_labels " , & params . model_output_labels_path , <nl> + " Path to labels that correspond to output of model . " <nl> + " E . g . in case of mobilenet , this is the path to label " <nl> + " file where each label is in the same order as the output " <nl> + " of the model . " ) , <nl> + Flag ( " ground_truth_images_path " , & params . ground_truth_images_path , <nl> + " Path to ground truth images . " ) , <nl> + Flag ( " ground_truth_labels " , & params . ground_truth_labels_path , <nl> + " Path to ground truth labels . " ) , <nl> + Flag ( " num_images " , & params . number_of_images , <nl> + " Number of examples to evaluate , pass 0 for all " <nl> + " examples . Default : 100 " ) , <nl> + tensorflow : : Flag ( " model_file " , & params . model_file_path , <nl> + " Path to test tflite model file . " ) , <nl> + } ; <nl> + const bool parse_result = Flags : : Parse ( & argc , argv , flag_list ) ; <nl> + if ( ! parse_result ) <nl> + return errors : : InvalidArgument ( " Invalid command line flags " ) ; <nl> + : : tensorflow : : port : : InitMain ( argv [ 0 ] , & argc , & argv ) ; <nl> + <nl> + TF_RETURN_WITH_CONTEXT_IF_ERROR ( <nl> + Env : : Default ( ) - > IsDirectory ( params . ground_truth_images_path ) , <nl> + " Invalid ground truth data path . " ) ; <nl> + TF_RETURN_WITH_CONTEXT_IF_ERROR ( <nl> + Env : : Default ( ) - > FileExists ( params . ground_truth_labels_path ) , <nl> + " Invalid ground truth labels path . " ) ; <nl> + TF_RETURN_WITH_CONTEXT_IF_ERROR ( <nl> + Env : : Default ( ) - > FileExists ( params . model_output_labels_path ) , <nl> + " Invalid model output labels path . " ) ; <nl> + <nl> + if ( params . number_of_images < 0 ) { <nl> + return errors : : InvalidArgument ( " Invalid : num_examples " ) ; <nl> + } <nl> + <nl> + utils : : ModelInfo model_info ; <nl> + TF_RETURN_WITH_CONTEXT_IF_ERROR ( <nl> + utils : : GetTFliteModelInfo ( params . model_file_path , & model_info ) , <nl> + " Invalid TFLite model . " ) ; <nl> + <nl> + * model_evaluator = <nl> + absl : : make_unique < ImagenetModelEvaluator > ( model_info , params ) ; <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + Status ImagenetModelEvaluator : : EvaluateModel ( ) { <nl> + if ( model_info_ . input_shapes . size ( ) ! = 1 ) { <nl> + return errors : : InvalidArgument ( " Invalid input shape " ) ; <nl> + } <nl> + <nl> + const TensorShape & input_shape = model_info_ . input_shapes [ 0 ] ; <nl> + / / Input should be of the shape { 1 , height , width , 3 } <nl> + if ( input_shape . dims ( ) ! = 4 | | input_shape . dim_size ( 3 ) ! = 3 ) { <nl> + return errors : : InvalidArgument ( " Invalid input shape for the model . " ) ; <nl> + } <nl> + <nl> + const int image_height = input_shape . dim_size ( 1 ) ; <nl> + const int image_width = input_shape . dim_size ( 2 ) ; <nl> + const bool is_quantized = ( model_info_ . input_types [ 0 ] = = DT_UINT8 ) ; <nl> + <nl> + RunTFLiteModelStage : : Params tfl_model_params ; <nl> + tfl_model_params . model_file_path = params_ . model_file_path ; <nl> + if ( is_quantized ) { <nl> + tfl_model_params . input_type = { DT_UINT8 } ; <nl> + tfl_model_params . output_type = { DT_UINT8 } ; <nl> + } else { <nl> + tfl_model_params . input_type = { DT_FLOAT } ; <nl> + tfl_model_params . output_type = { DT_FLOAT } ; <nl> + } <nl> + <nl> + Scope root = Scope : : NewRootScope ( ) ; <nl> + FileReaderStage reader ; <nl> + InceptionPreprocessingStage inc ( image_height , image_width , is_quantized ) ; <nl> + RunTFLiteModelStage tfl_model_stage ( tfl_model_params ) ; <nl> + EvalPipelineBuilder builder ; <nl> + std : : vector < string > model_labels ; <nl> + TF_RETURN_IF_ERROR ( <nl> + utils : : ReadFileLines ( params_ . model_output_labels_path , & model_labels ) ) ; <nl> + if ( model_labels . size ( ) ! = 1001 ) { <nl> + return errors : : InvalidArgument ( " Invalid number of labels : " , <nl> + model_labels . size ( ) ) ; <nl> + } <nl> + <nl> + ImagenetTopKAccuracy eval ( model_labels , params_ . num_ranks ) ; <nl> + std : : unique_ptr < EvalPipeline > eval_pipeline ; <nl> + <nl> + auto build_status = builder . WithInputStage ( & reader ) <nl> + . WithPreprocessingStage ( & inc ) <nl> + . WithRunModelStage ( & tfl_model_stage ) <nl> + . WithAccuracyEval ( & eval ) <nl> + . WithInput ( " input_file " , DT_STRING ) <nl> + . Build ( root , & eval_pipeline ) ; <nl> + TF_RETURN_WITH_CONTEXT_IF_ERROR ( build_status , <nl> + " Failure while building eval pipeline . " ) ; <nl> + <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + <nl> + TF_RETURN_IF_ERROR ( eval_pipeline - > AttachSession ( std : : move ( session ) ) ) ; <nl> + string data_path = <nl> + StripTrailingSlashes ( params_ . ground_truth_images_path ) + " / " ; <nl> + <nl> + const string imagenet_file_pattern = data_path + kImagenetFilePattern ; <nl> + std : : vector < string > image_files ; <nl> + TF_CHECK_OK ( <nl> + Env : : Default ( ) - > GetMatchingPaths ( imagenet_file_pattern , & image_files ) ) ; <nl> + std : : vector < string > image_labels ; <nl> + TF_CHECK_OK ( <nl> + utils : : ReadFileLines ( params_ . ground_truth_labels_path , & image_labels ) ) ; <nl> + CHECK_EQ ( image_files . size ( ) , image_labels . size ( ) ) ; <nl> + <nl> + / / Process files in filename sorted order . <nl> + std : : sort ( image_files . begin ( ) , image_files . end ( ) ) ; <nl> + if ( params_ . number_of_images > 0 ) { <nl> + image_files = GetFirstN ( image_files , params_ . number_of_images ) ; <nl> + image_labels = GetFirstN ( image_labels , params_ . number_of_images ) ; <nl> + } <nl> + <nl> + for ( Observer * observer : observers_ ) { <nl> + observer - > OnEvaluationStart ( image_files . size ( ) ) ; <nl> + } <nl> + <nl> + for ( int i = 0 ; i < image_files . size ( ) ; i + + ) { <nl> + TF_CHECK_OK ( eval_pipeline - > Run ( CreateStringTensor ( image_files [ i ] ) , <nl> + CreateStringTensor ( image_labels [ i ] ) ) ) ; <nl> + auto stats = eval . GetTopKAccuracySoFar ( ) ; <nl> + <nl> + for ( Observer * observer : observers_ ) { <nl> + observer - > OnSingleImageEvaluationComplete ( stats , image_files [ i ] ) ; <nl> + } <nl> + } <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 0308ac95b6b1d <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / imagenet_model_evaluator . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_IMAGENET_MODEL_EVALUATOR_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_IMAGENET_MODEL_EVALUATOR_H_ <nl> + # include < string > <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / utils . h " <nl> + # include " tensorflow / core / framework / tensor_shape . h " <nl> + # include " tensorflow / core / lib / core / status . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / / Evaluates models accuracy for ILSVRC dataset . <nl> + / / <nl> + / / Generates the top - 1 , top - k accuracy counts where k is <nl> + / / controlled by | num_ranks | . <nl> + / / Usage : <nl> + / / ModelInfo model_info = . . <nl> + / / ImagenetModelEvaluator : : Params params ; <nl> + / / . . set params to image , label , output label and model file path . . <nl> + / / SomeObserver observer ; <nl> + / / ImagenetModelEvaluator evaluator ( model_info , params ) ; <nl> + / / evaluator . AddObserver ( & observer ) ; <nl> + / / TF_CHECK_OK ( evaluator . EvaluateModel ( ) ) ; <nl> + class ImagenetModelEvaluator { <nl> + public : <nl> + struct Params { <nl> + / / Path to ground truth images . <nl> + string ground_truth_images_path ; <nl> + <nl> + / / Path to labels file for ground truth image . <nl> + / / This file should be generated with the scripts . <nl> + string ground_truth_labels_path ; <nl> + <nl> + / / This is word labels generated by the model . The category <nl> + / / indices of output probabilities generated by the model maybe different <nl> + / / from the indices in the imagenet dataset . <nl> + string model_output_labels_path ; <nl> + <nl> + / / Path to the model file . <nl> + string model_file_path ; <nl> + <nl> + / / The maximum number of images to calculate accuracy . <nl> + / / 0 means all images , a positive number means only the specified <nl> + / / number of images . <nl> + int number_of_images = 0 ; <nl> + <nl> + / / Number of ranks , top K . <nl> + int num_ranks = 10 ; <nl> + } ; <nl> + <nl> + / / An evaluation observer . <nl> + class Observer { <nl> + public : <nl> + Observer ( ) = default ; <nl> + Observer ( const Observer & ) = delete ; <nl> + Observer & operator = ( const Observer & ) = delete ; <nl> + <nl> + Observer ( const Observer & & ) = delete ; <nl> + Observer & operator = ( const Observer & & ) = delete ; <nl> + <nl> + / / Called on start of evaluation . <nl> + virtual void OnEvaluationStart ( int total_number_of_images ) = 0 ; <nl> + <nl> + / / Called when evaluation was complete for ` image ` . <nl> + virtual void OnSingleImageEvaluationComplete ( <nl> + const ImagenetTopKAccuracy : : AccuracyStats & stats , <nl> + const string & image ) = 0 ; <nl> + <nl> + virtual ~ Observer ( ) = default ; <nl> + } ; <nl> + <nl> + ImagenetModelEvaluator ( const utils : : ModelInfo & model_info , <nl> + const Params & params ) <nl> + : model_info_ ( model_info ) , params_ ( params ) { } <nl> + <nl> + / / Factory method to create the evaluator by parsing command line arguments . <nl> + static Status Create ( int argc , char * argv [ ] , <nl> + std : : unique_ptr < ImagenetModelEvaluator > * evaluator ) ; <nl> + <nl> + / / Adds an observer that can observe evaluation events . . <nl> + void AddObserver ( Observer * observer ) { observers_ . push_back ( observer ) ; } <nl> + <nl> + const Params & params ( ) { return params_ ; } <nl> + <nl> + / / Evaluates the provided model over the dataset . <nl> + Status EvaluateModel ( ) ; <nl> + <nl> + private : <nl> + std : : vector < Observer * > observers_ ; <nl> + const utils : : ModelInfo model_info_ ; <nl> + const Params params_ ; <nl> + } ; <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_IMAGENET_MODEL_EVALUATOR_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 1595bbee2f0a2 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . h " <nl> + <nl> + # include < numeric > <nl> + <nl> + namespace { <nl> + constexpr int kNumCategories = 1001 ; <nl> + std : : vector < int > GetTopK ( const std : : vector < float > & values , int k ) { <nl> + CHECK_LE ( k , values . size ( ) ) ; <nl> + std : : vector < int > indices ( values . size ( ) ) ; <nl> + <nl> + std : : iota ( indices . begin ( ) , indices . end ( ) , 0 ) ; <nl> + std : : sort ( indices . begin ( ) , indices . end ( ) , <nl> + [ & values ] ( int a , int b ) { return values [ a ] > values [ b ] ; } ) ; <nl> + <nl> + indices . resize ( k ) ; <nl> + return indices ; <nl> + } <nl> + } / / namespace <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + ImagenetTopKAccuracy : : ImagenetTopKAccuracy ( <nl> + const std : : vector < string > & ground_truth_labels , int k ) <nl> + : ground_truth_labels_ ( ground_truth_labels ) , <nl> + k_ ( k ) , <nl> + accuracy_counts_ ( k_ , 0 ) , <nl> + num_samples_ ( 0 ) { <nl> + CHECK_EQ ( kNumCategories , ground_truth_labels . size ( ) ) ; <nl> + } <nl> + <nl> + Status ImagenetTopKAccuracy : : ComputeEval ( <nl> + const std : : vector < Tensor > & model_outputs , const Tensor & ground_truth ) { <nl> + if ( model_outputs . size ( ) ! = 1 ) { <nl> + return errors : : InvalidArgument ( " Invalid model output : " , <nl> + model_outputs . size ( ) ) ; <nl> + } <nl> + const Tensor & output = model_outputs [ 0 ] ; <nl> + if ( ! output . shape ( ) . IsSameSize ( { 1 , kNumCategories } ) ) { <nl> + return errors : : InvalidArgument ( " Invalid shape of model output : " , <nl> + output . shape ( ) . DebugString ( ) ) ; <nl> + } <nl> + if ( ground_truth . dtype ( ) ! = DT_STRING & & ground_truth . dims ( ) ! = 0 ) { <nl> + return errors : : InvalidArgument ( " Invalid ground truth type : " , <nl> + ground_truth . DebugString ( ) ) ; <nl> + } <nl> + string ground_truth_label = ground_truth . scalar < string > ( ) ( ) ; <nl> + <nl> + std : : vector < float > probabilities ; <nl> + probabilities . reserve ( kNumCategories ) ; <nl> + if ( output . dtype ( ) = = DT_FLOAT ) { <nl> + auto probs = output . flat < float > ( ) ; <nl> + for ( size_t i = 0 ; i < probs . size ( ) ; i + + ) { <nl> + probabilities . push_back ( probs ( i ) ) ; <nl> + } <nl> + } else { <nl> + auto probs = output . flat < uint8 > ( ) ; <nl> + for ( size_t i = 0 ; i < probs . size ( ) ; i + + ) { <nl> + probabilities . push_back ( probs ( i ) ) ; <nl> + } <nl> + } <nl> + <nl> + CHECK_EQ ( kNumCategories , probabilities . size ( ) ) ; <nl> + std : : vector < int > topK = GetTopK ( probabilities , k_ ) ; <nl> + int ground_truth_index = GroundTruthIndex ( ground_truth_label ) ; <nl> + for ( size_t i = 0 ; i < topK . size ( ) ; + + i ) { <nl> + if ( ground_truth_index = = topK [ i ] ) { <nl> + for ( size_t j = i ; j < topK . size ( ) ; j + + ) { <nl> + accuracy_counts_ [ j ] + = 1 ; <nl> + } <nl> + break ; <nl> + } <nl> + } <nl> + num_samples_ + + ; <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + const ImagenetTopKAccuracy : : AccuracyStats <nl> + ImagenetTopKAccuracy : : GetTopKAccuracySoFar ( ) const { <nl> + AccuracyStats stats ; <nl> + stats . number_of_images = num_samples_ ; <nl> + stats . topk_counts = accuracy_counts_ ; <nl> + return stats ; <nl> + } <nl> + <nl> + int ImagenetTopKAccuracy : : GroundTruthIndex ( const string & label ) const { <nl> + auto index = std : : find ( ground_truth_labels_ . cbegin ( ) , <nl> + ground_truth_labels_ . cend ( ) , label ) ; <nl> + CHECK ( index ! = ground_truth_labels_ . end ( ) ) < < " Invalid label : " < < label ; <nl> + return std : : distance ( ground_truth_labels_ . cbegin ( ) , index ) ; <nl> + } <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 5a575ff244fc0 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_IMAGENET_TOPK_EVAL_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_IMAGENET_TOPK_EVAL_H_ <nl> + <nl> + # include < string > <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / accuracy_eval_stage . h " <nl> + # include " tensorflow / core / framework / tensor . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + / / An | AccuracyEval | stage that calculates the top K error rate for model <nl> + / / evaluations on imagenet like datasets . <nl> + / / Inputs : A { 1 , 1001 } shaped tensor that contains the probabilities for objects <nl> + / / predicted by the model . <nl> + / / Ground truth : A | string | label for the image . <nl> + / / From the input object probabilities , the stage computes the predicted labels <nl> + / / and finds the top K error rates by comparing the predictions with ground <nl> + / / truths . <nl> + class ImagenetTopKAccuracy : public AccuracyEval { <nl> + public : <nl> + / / Accuracy statistics . <nl> + struct AccuracyStats { <nl> + / / Number of images evaluated . <nl> + int number_of_images ; <nl> + / / A vector of size | k | that contains the number of images <nl> + / / that have correct labels in top K . <nl> + / / E . g . topk_counts [ 0 ] contains number of images for which <nl> + / / model returned the correct label as the first result . <nl> + / / Similarly topk_counts [ 4 ] contains the number of images for which <nl> + / / model returned the correct label in top 5 results . <nl> + / / This can be used to compute the top K error - rate for the model . <nl> + std : : vector < int > topk_counts ; <nl> + } ; <nl> + <nl> + / / Creates a new instance of | ImagenetTopKAccuracy | with the given <nl> + / / | ground_truth_labels | and | k | . <nl> + / / Args : <nl> + / / | ground_truth_labels | : an ordered vector of labels for images . This is <nl> + / / used to compute the index for the predicted labels and ground_truth label . <nl> + ImagenetTopKAccuracy ( const std : : vector < string > & ground_truth_labels , int k ) ; <nl> + <nl> + / / Computes accuracy for a given image . The | model_outputs | should <nl> + / / be a vector containing exactly one Tensor of shape : { 1 , 1001 } where each <nl> + / / item is a probability of the predicted object representing the image as <nl> + / / output by the model . <nl> + / / Uses | ground_truth_labels | to compute the index of | model_outputs | and <nl> + / / | ground_truth | and computes the top K error rate . <nl> + Status ComputeEval ( const std : : vector < Tensor > & model_outputs , <nl> + const Tensor & ground_truth ) override ; <nl> + <nl> + / / Gets the topK accuracy for images that have been evaluated till now . <nl> + const AccuracyStats GetTopKAccuracySoFar ( ) const ; <nl> + <nl> + private : <nl> + int GroundTruthIndex ( const string & label ) const ; <nl> + std : : vector < string > ground_truth_labels_ ; <nl> + const int k_ ; <nl> + std : : vector < int > accuracy_counts_ ; <nl> + int num_samples_ ; <nl> + } ; <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_IMAGENET_TOPK_EVAL_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 256cd1d529cd7 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / imagenet_topk_eval . h " <nl> + # include < gtest / gtest . h > <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + namespace { <nl> + <nl> + const int kNumCategories = 1001 ; <nl> + <nl> + Tensor CreateStringTensor ( const string & value ) { <nl> + Tensor tensor ( DT_STRING , TensorShape ( { } ) ) ; <nl> + tensor . scalar < string > ( ) ( ) = value ; <nl> + return tensor ; <nl> + } <nl> + <nl> + Tensor CreateOutputTensor ( ) { <nl> + Tensor tensor ( DT_FLOAT , TensorShape ( { 1 , kNumCategories } ) ) ; <nl> + for ( int i = 0 ; i < kNumCategories ; i + + ) { <nl> + tensor . flat < float > ( ) ( i ) = 0 ; <nl> + } <nl> + return tensor ; <nl> + } <nl> + <nl> + std : : vector < string > CreateGroundTruth ( ) { <nl> + std : : vector < string > ground_truth ; <nl> + ground_truth . reserve ( kNumCategories ) ; <nl> + for ( int i = 0 ; i < kNumCategories ; i + + ) { <nl> + ground_truth . push_back ( std : : to_string ( i ) ) ; <nl> + } <nl> + return ground_truth ; <nl> + } <nl> + <nl> + TEST ( ImagenetTopKAccuracy , AllCorrect ) { <nl> + ImagenetTopKAccuracy acc_top_5 ( CreateGroundTruth ( ) , 5 ) ; <nl> + auto accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 0 , accuracies . number_of_images ) ; <nl> + EXPECT_EQ ( 5 , accuracies . topk_counts . size ( ) ) ; <nl> + <nl> + for ( int i : accuracies . topk_counts ) { <nl> + EXPECT_EQ ( 0 , i ) ; <nl> + } <nl> + / / First image was correctly identified as " 0 " . <nl> + Tensor tensor = CreateOutputTensor ( ) ; <nl> + tensor . flat < float > ( ) ( 0 ) = 0 . 8 ; <nl> + <nl> + TF_CHECK_OK ( acc_top_5 . ComputeEval ( { tensor } , CreateStringTensor ( " 0 " ) ) ) ; <nl> + accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 1 , accuracies . number_of_images ) ; <nl> + <nl> + for ( int i : accuracies . topk_counts ) { <nl> + EXPECT_EQ ( 1 , i ) ; <nl> + } <nl> + tensor . flat < float > ( ) ( 1 ) = 0 . 9 ; <nl> + TF_CHECK_OK ( acc_top_5 . ComputeEval ( { tensor } , CreateStringTensor ( " 1 " ) ) ) ; <nl> + accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 2 , accuracies . number_of_images ) ; <nl> + <nl> + for ( int i : accuracies . topk_counts ) { <nl> + EXPECT_EQ ( 2 , i ) ; <nl> + } <nl> + } <nl> + <nl> + TEST ( ImagenetTopKAccuracy , Top5 ) { <nl> + ImagenetTopKAccuracy acc_top_5 ( CreateGroundTruth ( ) , 5 ) ; <nl> + auto accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 0 , accuracies . number_of_images ) ; <nl> + EXPECT_EQ ( 5 , accuracies . topk_counts . size ( ) ) ; <nl> + <nl> + / / For first image , with ground truth " 0 " probabilities were <nl> + / / 0 . 5 for " 0 " , <nl> + / / " 0 . 6 " for 1 , <nl> + / / " 0 . 7 " for 2 , <nl> + / / " 0 . 8 " for 3 , <nl> + / / " 0 . 9 " for 4 . <nl> + / / remaining all zeroes . <nl> + <nl> + / / First image was correctly identified as " 0 " . <nl> + Tensor tensor = CreateOutputTensor ( ) ; <nl> + tensor . flat < float > ( ) ( 0 ) = 0 . 5 ; <nl> + tensor . flat < float > ( ) ( 1 ) = 0 . 6 ; <nl> + tensor . flat < float > ( ) ( 2 ) = 0 . 7 ; <nl> + tensor . flat < float > ( ) ( 3 ) = 0 . 8 ; <nl> + tensor . flat < float > ( ) ( 4 ) = 0 . 9 ; <nl> + <nl> + TF_CHECK_OK ( acc_top_5 . ComputeEval ( { tensor } , CreateStringTensor ( " 0 " ) ) ) ; <nl> + accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 1 , accuracies . number_of_images ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 4 ] ) ; <nl> + <nl> + for ( int i = 0 ; i < 4 ; i + + ) { <nl> + EXPECT_EQ ( 0 , accuracies . topk_counts [ i ] ) ; <nl> + } <nl> + <nl> + / / Now for " 1 " only last two buckets are going to be affected . <nl> + TF_CHECK_OK ( acc_top_5 . ComputeEval ( { tensor } , CreateStringTensor ( " 1 " ) ) ) ; <nl> + accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 2 , accuracies . number_of_images ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 3 ] ) ; <nl> + EXPECT_EQ ( 2 , accuracies . topk_counts [ 4 ] ) ; <nl> + for ( int i = 0 ; i < 3 ; i + + ) { <nl> + EXPECT_EQ ( 0 , accuracies . topk_counts [ i ] ) ; <nl> + } <nl> + <nl> + / / All buckets will be affected . <nl> + TF_CHECK_OK ( acc_top_5 . ComputeEval ( { tensor } , CreateStringTensor ( " 4 " ) ) ) ; <nl> + accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 3 , accuracies . number_of_images ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 0 ] ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 1 ] ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 2 ] ) ; <nl> + EXPECT_EQ ( 2 , accuracies . topk_counts [ 3 ] ) ; <nl> + EXPECT_EQ ( 3 , accuracies . topk_counts [ 4 ] ) ; <nl> + <nl> + / / No buckets will be affected <nl> + TF_CHECK_OK ( acc_top_5 . ComputeEval ( { tensor } , CreateStringTensor ( " 10 " ) ) ) ; <nl> + accuracies = acc_top_5 . GetTopKAccuracySoFar ( ) ; <nl> + EXPECT_EQ ( 4 , accuracies . number_of_images ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 0 ] ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 1 ] ) ; <nl> + EXPECT_EQ ( 1 , accuracies . topk_counts [ 2 ] ) ; <nl> + EXPECT_EQ ( 2 , accuracies . topk_counts [ 3 ] ) ; <nl> + EXPECT_EQ ( 3 , accuracies . topk_counts [ 4 ] ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + : : testing : : InitGoogleTest ( & argc , argv ) ; <nl> + <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . 7afef886373a3 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / inception_preprocessing . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / inception_preprocessing . h " <nl> + <nl> + # include < memory > <nl> + <nl> + # include " tensorflow / cc / framework / scope . h " <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + # include " tensorflow / core / framework / graph . pb . h " <nl> + # include " tensorflow / core / framework / tensor . h " <nl> + # include " tensorflow / core / graph / graph_def_builder . h " <nl> + # include " tensorflow / core / lib / core / errors . h " <nl> + # include " tensorflow / core / platform / logging . h " <nl> + # include " tensorflow / core / platform / types . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + namespace { <nl> + void CentralCropImage ( const Scope & s , const tensorflow : : Output & decoded_image , <nl> + double crop_fraction , tensorflow : : Output * cropped_image ) { <nl> + auto image_dims = ops : : Slice ( s , ops : : Shape ( s , decoded_image ) , { 0 } , { 2 } ) ; <nl> + auto height_width = ops : : Cast ( s , image_dims , DT_DOUBLE ) ; <nl> + auto cropped_begin = ops : : Div ( <nl> + s , ops : : Sub ( s , height_width , ops : : Mul ( s , height_width , crop_fraction ) ) , <nl> + 2 . 0 ) ; <nl> + auto bbox_begin = ops : : Cast ( s , cropped_begin , DT_INT32 ) ; <nl> + auto bbox_size = ops : : Sub ( s , image_dims , ops : : Mul ( s , bbox_begin , 2 ) ) ; <nl> + auto slice_begin = ops : : Concat ( s , { bbox_begin , Input ( { 0 } ) } , 0 ) ; <nl> + auto slice_size = ops : : Concat ( s , { bbox_size , { - 1 } } , 0 ) ; <nl> + * cropped_image = ops : : Slice ( s , decoded_image , slice_begin , slice_size ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + void InceptionPreprocessingStage : : AddToGraph ( const Scope & scope , <nl> + const Input & input ) { <nl> + if ( ! scope . ok ( ) ) return ; <nl> + Scope s = scope . WithOpName ( name ( ) ) ; <nl> + ops : : DecodeJpeg : : Attrs attrs ; <nl> + attrs . channels_ = 3 ; <nl> + auto decoded_jpeg = ops : : DecodeJpeg ( s , input , attrs ) ; <nl> + tensorflow : : Output cropped_image ; <nl> + CentralCropImage ( s , decoded_jpeg , params_ . cropping_fraction , & cropped_image ) ; <nl> + auto dims_expander = ops : : ExpandDims ( s , cropped_image , 0 ) ; <nl> + auto resized_image = ops : : ResizeBilinear ( <nl> + s , dims_expander , <nl> + ops : : Const ( s . WithOpName ( " size " ) , { image_height_ , image_width_ } ) ) ; <nl> + if ( is_quantized_ ) { <nl> + this - > stage_output_ = <nl> + ops : : Cast ( s . WithOpName ( output_name ( ) ) , resized_image , DT_UINT8 ) ; <nl> + } else { <nl> + auto squeezed_image = ops : : Squeeze ( s , resized_image ) ; <nl> + auto normalized_image = <nl> + ops : : Div ( s , <nl> + ops : : Sub ( s , squeezed_image , <nl> + { params_ . input_means [ 0 ] , params_ . input_means [ 1 ] , <nl> + params_ . input_means [ 2 ] } ) , <nl> + { params_ . scale } ) ; <nl> + this - > stage_output_ = <nl> + ops : : ExpandDims ( s . WithOpName ( output_name ( ) ) , normalized_image , { 0 } ) ; <nl> + } <nl> + } <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 15df71981756f <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / inception_preprocessing . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_INCEPTION_PREPROCESSING_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_INCEPTION_PREPROCESSING_H_ <nl> + <nl> + # include < utility > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / stage . h " <nl> + # include " tensorflow / core / framework / tensor . h " <nl> + # include " tensorflow / core / lib / core / status . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / / A stage that does inception preprocessing . <nl> + / / Inputs : A tensor containing bytes of a JPEG image . <nl> + / / Outputs : A tensor containing rescaled and preprocessed image that has <nl> + / / shape { 1 , image_height , image_width , 3 } , where 3 is the number of channels . <nl> + class InceptionPreprocessingStage : public Stage { <nl> + public : <nl> + struct Params { <nl> + std : : vector < float > input_means ; <nl> + float scale ; <nl> + double cropping_fraction ; <nl> + } ; <nl> + <nl> + static Params DefaultParams ( ) { <nl> + return { . input_means = { 127 . 5 , 127 . 5 , 127 . 5 } , <nl> + . scale = 127 . 5 , <nl> + . cropping_fraction = 0 . 875 } ; <nl> + } <nl> + <nl> + / / Creates a new preprocessing stage object with provided | image_width | <nl> + / / | image_height | as the size of output image . <nl> + / / If | is_quantized | is set to true then | params | is ignored since quantized <nl> + / / images don ' t go through any preprocessing . <nl> + InceptionPreprocessingStage ( int image_width , int image_height , <nl> + bool is_quantized , <nl> + Params params = DefaultParams ( ) ) <nl> + : image_width_ ( image_width ) , <nl> + image_height_ ( image_height ) , <nl> + is_quantized_ ( is_quantized ) , <nl> + params_ ( std : : move ( params ) ) { } <nl> + <nl> + string name ( ) const override { return " stage_inception_preprocess " ; } <nl> + string output_name ( ) const override { <nl> + return " stage_inception_preprocess_output " ; <nl> + } <nl> + <nl> + void AddToGraph ( const Scope & scope , const Input & input ) override ; <nl> + <nl> + private : <nl> + int image_width_ ; <nl> + int image_height_ ; <nl> + bool is_quantized_ ; <nl> + Params params_ ; <nl> + } ; <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_INCEPTION_PREPROCESSING_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . db574476f6e80 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / inception_preprocessing_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include < fstream > <nl> + # include < string > <nl> + <nl> + # include < gtest / gtest . h > <nl> + # include " tensorflow / contrib / lite / tools / accuracy / inception_preprocessing . h " <nl> + # include " tensorflow / core / platform / init_main . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + # include " tensorflow / core / util / command_line_flags . h " <nl> + <nl> + namespace { <nl> + tensorflow : : string * g_test_image_file = nullptr ; <nl> + } / / namespace <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + namespace { <nl> + <nl> + using tensorflow : : Status ; <nl> + using tensorflow : : Tensor ; <nl> + <nl> + Status GetContents ( const string & filename , string * output ) { <nl> + std : : ifstream input ( filename , std : : ios : : binary ) ; <nl> + const int kBufferSize = 2048 ; <nl> + char buffer [ kBufferSize ] ; <nl> + while ( true ) { <nl> + input . read ( buffer , kBufferSize ) ; <nl> + output - > append ( buffer , input . gcount ( ) ) ; <nl> + if ( ! input . good ( ) ) { <nl> + if ( input . eof ( ) ) return Status : : OK ( ) ; <nl> + return Status ( tensorflow : : error : : ABORTED , " Failed to read file . " ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + TEST ( InceptionPreprocessingTest , TestImagePreprocessQuantized ) { <nl> + ASSERT_TRUE ( g_test_image_file ! = nullptr ) ; <nl> + string image_contents ; <nl> + string image_path = * g_test_image_file ; <nl> + auto status = GetContents ( image_path , & image_contents ) ; <nl> + ASSERT_TRUE ( status . ok ( ) ) < < status . error_message ( ) ; <nl> + const int width = 224 ; <nl> + const int height = 224 ; <nl> + const bool is_quantized = true ; <nl> + InceptionPreprocessingStage preprocess_stage ( width , height , is_quantized ) ; <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + preprocess_stage . AddToGraph ( scope , image_contents ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + std : : vector < Tensor > outputs ; <nl> + auto run_status = <nl> + session - > Run ( { } , / * inputs * / <nl> + { preprocess_stage . output_name ( ) } , { } , / * target node names * / <nl> + & outputs ) ; <nl> + TF_CHECK_OK ( run_status ) ; <nl> + EXPECT_EQ ( 1 , outputs . size ( ) ) ; <nl> + EXPECT_EQ ( DT_UINT8 , outputs [ 0 ] . dtype ( ) ) ; <nl> + EXPECT_TRUE ( outputs [ 0 ] . shape ( ) . IsSameSize ( { 1 , 224 , 224 , 3 } ) ) ; <nl> + } <nl> + <nl> + TEST ( InceptionPreprocessingTest , TestImagePreprocessFloat ) { <nl> + ASSERT_TRUE ( g_test_image_file ! = nullptr ) ; <nl> + string image_contents ; <nl> + string image_path = * g_test_image_file ; <nl> + auto status = GetContents ( image_path , & image_contents ) ; <nl> + ASSERT_TRUE ( status . ok ( ) ) < < status . error_message ( ) ; <nl> + const int width = 224 ; <nl> + const int height = 224 ; <nl> + const bool is_quantized = false ; <nl> + InceptionPreprocessingStage preprocess_stage ( width , height , is_quantized ) ; <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + preprocess_stage . AddToGraph ( scope , image_contents ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + std : : vector < Tensor > outputs ; <nl> + auto run_status = <nl> + session - > Run ( { } , / * inputs * / <nl> + { preprocess_stage . output_name ( ) } , { } , / * target node names * / <nl> + & outputs ) ; <nl> + TF_CHECK_OK ( run_status ) ; <nl> + EXPECT_EQ ( 1 , outputs . size ( ) ) ; <nl> + EXPECT_EQ ( DT_FLOAT , outputs [ 0 ] . dtype ( ) ) ; <nl> + EXPECT_TRUE ( outputs [ 0 ] . shape ( ) . IsSameSize ( { 1 , 224 , 224 , 3 } ) ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + g_test_image_file = new tensorflow : : string ( ) ; <nl> + const std : : vector < tensorflow : : Flag > flag_list = { <nl> + tensorflow : : Flag ( " test_image " , g_test_image_file , <nl> + " Path to image file for test . " ) , <nl> + } ; <nl> + const bool parse_result = tensorflow : : Flags : : Parse ( & argc , argv , flag_list ) ; <nl> + CHECK ( parse_result ) < < " Required test_model_file " ; <nl> + : : tensorflow : : port : : InitMain ( argv [ 0 ] , & argc , & argv ) ; <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . da4258f1c1310 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / run_tflite_model_op . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include < memory > <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / contrib / lite / context . h " <nl> + # include " tensorflow / contrib / lite / interpreter . h " <nl> + # include " tensorflow / contrib / lite / kernels / register . h " <nl> + # include " tensorflow / contrib / lite / model . h " <nl> + # include " tensorflow / contrib / lite / op_resolver . h " <nl> + # include " tensorflow / contrib / lite / tools / accuracy / utils . h " <nl> + # include " tensorflow / core / framework / common_shape_fns . h " <nl> + # include " tensorflow / core / framework / op_kernel . h " <nl> + <nl> + namespace tensorflow { <nl> + <nl> + namespace { <nl> + Status ValidateInputsMatch ( const OpInputList & input_tensors , <nl> + const tflite : : Interpreter & interpreter ) { <nl> + std : : vector < int > tflite_tensor_indices = interpreter . inputs ( ) ; <nl> + if ( tflite_tensor_indices . size ( ) ! = input_tensors . size ( ) ) { <nl> + return errors : : InvalidArgument ( <nl> + " size mismatch , interpreter size : " , tflite_tensor_indices . size ( ) , <nl> + " actual : " , input_tensors . size ( ) ) ; <nl> + } <nl> + <nl> + for ( int i = 0 ; i < input_tensors . size ( ) ; i + + ) { <nl> + const TfLiteTensor * tflite_tensor = <nl> + interpreter . tensor ( tflite_tensor_indices [ i ] ) ; <nl> + if ( tflite_tensor = = nullptr ) { <nl> + return errors : : InvalidArgument ( " Tensor is null at index : " , i ) ; <nl> + } <nl> + <nl> + const Tensor & tensor = input_tensors [ i ] ; <nl> + auto i_type = metrics : : utils : : GetTFDataType ( tflite_tensor - > type ) ; <nl> + auto i_shape = metrics : : utils : : GetTFLiteTensorShape ( * tflite_tensor ) ; <nl> + if ( i_type ! = tensor . dtype ( ) ) { <nl> + return errors : : InvalidArgument ( " Data types mismatch for tensors : " , i , <nl> + " expected : " , i_type , <nl> + " got : " , tensor . dtype ( ) ) ; <nl> + } <nl> + <nl> + if ( i_shape ! = tensor . shape ( ) ) { <nl> + return errors : : InvalidArgument ( " Data shapes mismatch for tensors : " , i , <nl> + " expected : " , i_shape , <nl> + " got : " , tensor . shape ( ) ) ; <nl> + } <nl> + } <nl> + <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + <nl> + class RunTFLiteModelOp : public OpKernel { <nl> + public : <nl> + explicit RunTFLiteModelOp ( OpKernelConstruction * ctx ) : OpKernel ( ctx ) { <nl> + string model_file_path ; <nl> + OP_REQUIRES_OK ( ctx , ctx - > GetAttr ( " model_file_path " , & model_file_path ) ) ; <nl> + model_ = tflite : : FlatBufferModel : : BuildFromFile ( model_file_path . data ( ) ) ; <nl> + OP_REQUIRES ( ctx , model_ , <nl> + errors : : InvalidArgument ( <nl> + " Model loading failed . Invalid model file path : " , <nl> + model_file_path ) ) ; <nl> + tflite : : ops : : builtin : : BuiltinOpResolver resolver ; <nl> + <nl> + tflite : : InterpreterBuilder ( * model_ , resolver ) ( & interpreter_ ) ; <nl> + OP_REQUIRES ( ctx , interpreter_ , <nl> + errors : : Internal ( " Interpreter creation failed . " ) ) ; <nl> + } <nl> + <nl> + void Compute ( OpKernelContext * context ) override { <nl> + OpInputList input_tensors ; <nl> + OP_REQUIRES_OK ( context , context - > input_list ( " model_input " , & input_tensors ) ) ; <nl> + <nl> + OP_REQUIRES_OK ( context , ValidateInputsMatch ( input_tensors , * interpreter_ ) ) ; <nl> + OpOutputList output_tensors ; <nl> + OP_REQUIRES_OK ( context , <nl> + context - > output_list ( " model_output " , & output_tensors ) ) ; <nl> + auto tfl_outputs = interpreter_ - > outputs ( ) ; <nl> + OP_REQUIRES ( context , output_tensors . size ( ) = = tfl_outputs . size ( ) , <nl> + errors : : InvalidArgument ( <nl> + " Invalid output size , expected : " , tfl_outputs . size ( ) , <nl> + " got : " , output_tensors . size ( ) ) ) ; <nl> + for ( int i = 0 ; i < output_tensors . size ( ) ; i + + ) { <nl> + DataType tfl_type = metrics : : utils : : GetTFDataType ( <nl> + interpreter_ - > tensor ( tfl_outputs [ i ] ) - > type ) ; <nl> + DataType otype = output_tensors . expected_output_dtype ( i ) ; <nl> + OP_REQUIRES ( <nl> + context , tfl_type = = otype , <nl> + errors : : InvalidArgument ( " Invalid data type for output at index : " , i , <nl> + " expected : " , tfl_type , " got : " , otype ) ) ; <nl> + } <nl> + <nl> + auto allocation_status = interpreter_ - > AllocateTensors ( ) ; <nl> + OP_REQUIRES ( context , allocation_status = = kTfLiteOk , <nl> + errors : : Internal ( " Unable to allocate tensors . " ) ) ; <nl> + for ( int i = 0 ; i < input_tensors . size ( ) ; i + + ) { <nl> + const int tfl_index = interpreter_ - > inputs ( ) [ i ] ; <nl> + TfLiteTensor * tflite_tensor = interpreter_ - > tensor ( tfl_index ) ; <nl> + auto tensor_bytes = input_tensors [ i ] . tensor_data ( ) ; <nl> + OP_REQUIRES ( context , tflite_tensor - > bytes = = tensor_bytes . size ( ) , <nl> + errors : : InvalidArgument ( <nl> + " Size mismatch , expected : " , tflite_tensor - > bytes , <nl> + " got : " , tensor_bytes . size ( ) ) ) ; <nl> + std : : memcpy ( tflite_tensor - > data . raw , tensor_bytes . data ( ) , <nl> + tensor_bytes . size ( ) ) ; <nl> + } <nl> + auto invocation_status = interpreter_ - > Invoke ( ) ; <nl> + OP_REQUIRES ( context , invocation_status = = kTfLiteOk , <nl> + errors : : Internal ( " Interpreter invocation failed . " ) ) ; <nl> + for ( int i = 0 ; i < output_tensors . size ( ) ; i + + ) { <nl> + auto tfl_tensor = interpreter_ - > tensor ( tfl_outputs [ i ] ) ; <nl> + TensorShape shape = metrics : : utils : : GetTFLiteTensorShape ( * tfl_tensor ) ; <nl> + Tensor * output = nullptr ; <nl> + OP_REQUIRES_OK ( context , output_tensors . allocate ( i , shape , & output ) ) ; <nl> + auto tensor_bytes = output - > tensor_data ( ) ; <nl> + OP_REQUIRES ( context , tensor_bytes . size ( ) = = tfl_tensor - > bytes , <nl> + errors : : Internal ( " Invalid size " ) ) ; <nl> + std : : memcpy ( const_cast < char * > ( tensor_bytes . data ( ) ) , tfl_tensor - > data . raw , <nl> + tfl_tensor - > bytes ) ; <nl> + } <nl> + } <nl> + <nl> + private : <nl> + std : : unique_ptr < tflite : : FlatBufferModel > model_ ; <nl> + std : : unique_ptr < tflite : : Interpreter > interpreter_ ; <nl> + } ; <nl> + <nl> + REGISTER_KERNEL_BUILDER ( Name ( " RunTFLiteModel " ) . Device ( DEVICE_CPU ) , <nl> + RunTFLiteModelOp ) ; <nl> + <nl> + REGISTER_OP ( " RunTFLiteModel " ) <nl> + . Input ( " model_input : input_type " ) <nl> + . Output ( " model_output : output_type " ) <nl> + . Attr ( " model_file_path : string " ) <nl> + . Attr ( " input_type : list ( type ) " ) <nl> + . Attr ( " output_type : list ( type ) " ) <nl> + . SetShapeFn ( [ ] ( shape_inference : : InferenceContext * c ) { <nl> + / / TODO ( shashishekhar ) : Infer the correct shape based on output_type and <nl> + / / maybe another attribute . <nl> + return shape_inference : : UnknownShape ( c ) ; <nl> + } ) ; <nl> + <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 88175984a090e <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / run_tflite_model_op_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include < vector > <nl> + <nl> + # include < gmock / gmock . h > <nl> + # include < gtest / gtest . h > <nl> + # include " tensorflow / cc / framework / scope . h " <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + # include " tensorflow / core / platform / init_main . h " <nl> + # include " tensorflow / core / public / session . h " <nl> + # include " tensorflow / core / util / command_line_flags . h " <nl> + <nl> + namespace { <nl> + tensorflow : : string * g_test_model_file = nullptr ; <nl> + } <nl> + <nl> + namespace tensorflow { <nl> + namespace { <nl> + <nl> + TEST ( RunTfliteModelOpTest , ModelIsRun ) { <nl> + ASSERT_TRUE ( g_test_model_file ! = nullptr ) ; <nl> + string test_model_file = * g_test_model_file ; <nl> + ASSERT_FALSE ( test_model_file . empty ( ) ) ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + / / Passed graph has 4 inputs : a , b , c , d and 2 outputs x , y <nl> + / / x = a + b + c , y = b + c + d <nl> + <nl> + std : : vector < Input > graph_inputs = { <nl> + ops : : Const ( scope , 1 . 0f , { 1 , 8 , 8 , 3 } ) , / / a <nl> + ops : : Const ( scope , 2 . 1f , { 1 , 8 , 8 , 3 } ) , / / b <nl> + ops : : Const ( scope , 3 . 2f , { 1 , 8 , 8 , 3 } ) , / / c <nl> + ops : : Const ( scope , 4 . 3f , { 1 , 8 , 8 , 3 } ) , / / d <nl> + } ; <nl> + <nl> + std : : vector < NodeBuilder : : NodeOut > input_data ; <nl> + std : : transform ( graph_inputs . begin ( ) , graph_inputs . end ( ) , <nl> + std : : back_inserter ( input_data ) , [ & scope ] ( Input model_input ) { <nl> + return ops : : AsNodeOut ( scope , model_input ) ; <nl> + } ) ; <nl> + <nl> + std : : vector < DataType > model_input_type = { DT_FLOAT , DT_FLOAT , DT_FLOAT , <nl> + DT_FLOAT } ; <nl> + : : tensorflow : : Node * ret ; <nl> + auto builder = : : tensorflow : : NodeBuilder ( " run_model_op " , " RunTFLiteModel " ) <nl> + . Input ( input_data ) <nl> + . Attr ( " model_file_path " , test_model_file ) <nl> + . Attr ( " input_type " , model_input_type ) <nl> + . Attr ( " output_type " , { DT_FLOAT , DT_FLOAT } ) ; <nl> + <nl> + scope . UpdateBuilder ( & builder ) ; <nl> + scope . UpdateStatus ( builder . Finalize ( scope . graph ( ) , & ret ) ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + <nl> + std : : vector < Tensor > outputs ; <nl> + TF_CHECK_OK ( <nl> + session - > Run ( { } , { " run_model_op : 0 " , " run_model_op : 1 " } , { } , & outputs ) ) ; <nl> + EXPECT_EQ ( 2 , outputs . size ( ) ) ; <nl> + <nl> + for ( const auto & tensor : outputs ) { <nl> + EXPECT_TRUE ( tensor . shape ( ) . IsSameSize ( { 1 , 8 , 8 , 3 } ) ) ; <nl> + } <nl> + auto output_x = outputs [ 0 ] . flat < float > ( ) ; <nl> + auto output_y = outputs [ 1 ] . flat < float > ( ) ; <nl> + EXPECT_EQ ( 1 * 8 * 8 * 3 , output_x . size ( ) ) ; <nl> + EXPECT_EQ ( 1 * 8 * 8 * 3 , output_y . size ( ) ) ; <nl> + for ( int i = 0 ; i < output_x . size ( ) ; i + + ) { <nl> + EXPECT_NEAR ( 6 . 3f , output_x ( i ) , 1e - 6f ) ; / / a + b + c <nl> + EXPECT_NEAR ( 9 . 6f , output_y ( i ) , 1e - 6f ) ; / / b + c + d <nl> + } <nl> + } <nl> + <nl> + TEST ( RunTfliteModelOpTest , NumInputsMismatch ) { <nl> + ASSERT_TRUE ( g_test_model_file ! = nullptr ) ; <nl> + string test_model_file = * g_test_model_file ; <nl> + ASSERT_FALSE ( test_model_file . empty ( ) ) ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + / / Passed graph has 4 inputs : a , b , c , d and 2 outputs x , y <nl> + / / x = a + b + c , y = b + c + d <nl> + / / Remove a from input . <nl> + <nl> + std : : vector < Input > graph_inputs = { <nl> + ops : : Const ( scope , 2 . 1f , { 1 , 8 , 8 , 3 } ) , / / b <nl> + ops : : Const ( scope , 3 . 2f , { 1 , 8 , 8 , 3 } ) , / / c <nl> + ops : : Const ( scope , 4 . 3f , { 1 , 8 , 8 , 3 } ) , / / d <nl> + } ; <nl> + <nl> + std : : vector < NodeBuilder : : NodeOut > input_data ; <nl> + std : : transform ( graph_inputs . begin ( ) , graph_inputs . end ( ) , <nl> + std : : back_inserter ( input_data ) , [ & scope ] ( Input model_input ) { <nl> + return ops : : AsNodeOut ( scope , model_input ) ; <nl> + } ) ; <nl> + <nl> + std : : vector < DataType > model_input_type = { DT_FLOAT , DT_FLOAT , DT_FLOAT } ; <nl> + <nl> + : : tensorflow : : Node * ret ; <nl> + auto builder = : : tensorflow : : NodeBuilder ( " run_model_op " , " RunTFLiteModel " ) <nl> + . Input ( input_data ) <nl> + . Attr ( " model_file_path " , test_model_file ) <nl> + . Attr ( " input_type " , model_input_type ) <nl> + . Attr ( " output_type " , { DT_FLOAT , DT_FLOAT } ) ; <nl> + <nl> + scope . UpdateBuilder ( & builder ) ; <nl> + scope . UpdateStatus ( builder . Finalize ( scope . graph ( ) , & ret ) ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + <nl> + std : : vector < Tensor > outputs ; <nl> + auto status = <nl> + ( session - > Run ( { } , { " run_model_op : 0 " , " run_model_op : 1 " } , { } , & outputs ) ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + } <nl> + <nl> + TEST ( RunTfliteModelOpTest , InputSizesMismatch ) { <nl> + ASSERT_TRUE ( g_test_model_file ! = nullptr ) ; <nl> + string test_model_file = * g_test_model_file ; <nl> + ASSERT_FALSE ( test_model_file . empty ( ) ) ; <nl> + <nl> + Scope scope = Scope : : NewRootScope ( ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + / / Passed graph has 4 inputs : a , b , c , d and 2 outputs x , y <nl> + / / x = a + b + c , y = b + c + d <nl> + / / Set a to be invalid size . <nl> + std : : vector < Input > graph_inputs = { <nl> + ops : : Const ( scope , 1 . 0f , { 1 , 8 , 8 , 4 } ) , / / a invalid size , <nl> + ops : : Const ( scope , 2 . 1f , { 1 , 8 , 8 , 3 } ) , / / b <nl> + ops : : Const ( scope , 3 . 2f , { 1 , 8 , 8 , 3 } ) , / / c <nl> + ops : : Const ( scope , 4 . 3f , { 1 , 8 , 8 , 3 } ) , / / d <nl> + } ; <nl> + <nl> + std : : vector < NodeBuilder : : NodeOut > input_data ; <nl> + std : : transform ( graph_inputs . begin ( ) , graph_inputs . end ( ) , <nl> + std : : back_inserter ( input_data ) , [ & scope ] ( Input model_input ) { <nl> + return ops : : AsNodeOut ( scope , model_input ) ; <nl> + } ) ; <nl> + <nl> + std : : vector < DataType > model_input_type = { DT_FLOAT , DT_FLOAT , DT_FLOAT , <nl> + DT_FLOAT } ; <nl> + : : tensorflow : : Node * ret ; <nl> + auto builder = : : tensorflow : : NodeBuilder ( " run_model_op " , " RunTFLiteModel " ) <nl> + . Input ( input_data ) <nl> + . Attr ( " model_file_path " , test_model_file ) <nl> + . Attr ( " input_type " , model_input_type ) <nl> + . Attr ( " output_type " , { DT_FLOAT , DT_FLOAT } ) ; <nl> + <nl> + scope . UpdateBuilder ( & builder ) ; <nl> + scope . UpdateStatus ( builder . Finalize ( scope . graph ( ) , & ret ) ) ; <nl> + TF_CHECK_OK ( scope . status ( ) ) ; <nl> + <nl> + GraphDef graph_def ; <nl> + TF_CHECK_OK ( scope . ToGraphDef ( & graph_def ) ) ; <nl> + std : : unique_ptr < Session > session ( NewSession ( SessionOptions ( ) ) ) ; <nl> + TF_CHECK_OK ( session - > Create ( graph_def ) ) ; <nl> + <nl> + std : : vector < Tensor > outputs ; <nl> + auto status = <nl> + ( session - > Run ( { } , { " run_model_op : 0 " , " run_model_op : 1 " } , { } , & outputs ) ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + g_test_model_file = new tensorflow : : string ( ) ; <nl> + const std : : vector < tensorflow : : Flag > flag_list = { <nl> + tensorflow : : Flag ( " test_model_file " , g_test_model_file , <nl> + " Path to test tflite model file . " ) , <nl> + } ; <nl> + const bool parse_result = tensorflow : : Flags : : Parse ( & argc , argv , flag_list ) ; <nl> + CHECK ( parse_result ) < < " Required test_model_file " ; <nl> + : : tensorflow : : port : : InitMain ( argv [ 0 ] , & argc , & argv ) ; <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl> new file mode 100644 <nl> index 0000000000000 . . c96795d4994ae <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / run_tflite_model_stage . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / run_tflite_model_stage . h " <nl> + <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / cc / framework / scope . h " <nl> + # include " tensorflow / cc / ops / standard_ops . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + void RunTFLiteModelStage : : AddToGraph ( const Scope & scope , const Input & input ) { <nl> + if ( ! scope . ok ( ) ) return ; <nl> + Scope s = scope . WithOpName ( name ( ) ) ; <nl> + <nl> + std : : vector < NodeBuilder : : NodeOut > _data = { ops : : AsNodeOut ( s , input ) } ; <nl> + : : tensorflow : : Node * ret ; <nl> + auto builder = NodeBuilder ( output_name ( ) , " RunTFLiteModel " ) <nl> + . Input ( _data ) <nl> + . Attr ( " model_file_path " , params_ . model_file_path ) <nl> + . Attr ( " input_type " , params_ . input_type ) <nl> + . Attr ( " output_type " , params_ . output_type ) ; <nl> + <nl> + s . UpdateBuilder ( & builder ) ; <nl> + s . UpdateStatus ( builder . Finalize ( s . graph ( ) , & ret ) ) ; <nl> + if ( ! s . ok ( ) ) return ; <nl> + s . UpdateStatus ( s . DoShapeInference ( ret ) ) ; <nl> + this - > stage_output_ = : : tensorflow : : Output ( ret , 0 ) ; <nl> + } <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 90d12d6f42451 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / run_tflite_model_stage . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_RUN_TFLITE_MODEL_STAGE_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_RUN_TFLITE_MODEL_STAGE_H_ <nl> + <nl> + # include < string > <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / stage . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + / / Stage that loads and runs a TFLite model . <nl> + / / Inputs : The input to TFLite model . <nl> + / / Outputs : The output of running the TFLite model . <nl> + class RunTFLiteModelStage : public Stage { <nl> + public : <nl> + / / The parameters for the stage . <nl> + struct Params { <nl> + string model_file_path ; <nl> + std : : vector < TensorShape > output_shape ; <nl> + std : : vector < DataType > input_type ; <nl> + std : : vector < DataType > output_type ; <nl> + } ; <nl> + <nl> + explicit RunTFLiteModelStage ( const Params & params ) : params_ ( params ) { } <nl> + <nl> + string name ( ) const override { return " stage_run_tfl_model " ; } <nl> + / / TODO ( shashishekhar ) : This stage can have multiple inputs and <nl> + / / outputs , perhaps change the definition of stage . <nl> + string output_name ( ) const override { return " stage_run_tfl_model_output " ; } <nl> + <nl> + void AddToGraph ( const Scope & scope , const Input & input ) override ; <nl> + <nl> + private : <nl> + Params params_ ; <nl> + } ; <nl> + <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_RUN_TFLITE_MODEL_STAGE_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 8292ea2ec735d <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / stage . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_STAGE_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_STAGE_H_ <nl> + <nl> + # include " tensorflow / cc / framework / scope . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + / / A stage in an evaluation pipeline . <nl> + / / Each stage adds a subgraph to the pipeline . Stages can be chained <nl> + / / together . <nl> + class Stage { <nl> + public : <nl> + Stage ( ) = default ; <nl> + Stage ( const Stage & ) = delete ; <nl> + Stage & operator = ( const Stage & ) = delete ; <nl> + <nl> + Stage ( const Stage & & ) = delete ; <nl> + Stage & operator = ( const Stage & & ) = delete ; <nl> + <nl> + / / Adds a subgraph to given scope that takes in ` input ` as a parameter . <nl> + virtual void AddToGraph ( const Scope & scope , const Input & input ) = 0 ; <nl> + virtual ~ Stage ( ) { } <nl> + <nl> + / / The name of the stage . <nl> + / / Can be used by derived classes for naming the subscope for the stage <nl> + / / graph . <nl> + virtual string name ( ) const = 0 ; <nl> + <nl> + / / The name of the output for the stage . <nl> + virtual string output_name ( ) const = 0 ; <nl> + <nl> + const : : tensorflow : : Output & Output ( ) const { return stage_output_ ; } <nl> + <nl> + protected : <nl> + : : tensorflow : : Output stage_output_ ; <nl> + } ; <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_STAGE_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . d2a427810f679 <nl> Binary files / dev / null and b / tensorflow / contrib / lite / tools / accuracy / testdata / grace_hopper . jpg differ <nl> new file mode 100644 <nl> index 0000000000000 . . f5493301fc4d7 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / utils . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include " tensorflow / contrib / lite / tools / accuracy / utils . h " <nl> + <nl> + # include < sys / stat . h > <nl> + <nl> + # include < cstring > <nl> + # include < fstream > <nl> + # include < memory > <nl> + # include < string > <nl> + <nl> + # include " tensorflow / contrib / lite / interpreter . h " <nl> + # include " tensorflow / contrib / lite / kernels / register . h " <nl> + # include " tensorflow / contrib / lite / model . h " <nl> + # include " tensorflow / contrib / lite / op_resolver . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + namespace utils { <nl> + <nl> + DataType GetTFDataType ( TfLiteType tflite_type ) { <nl> + switch ( tflite_type ) { <nl> + case kTfLiteFloat32 : <nl> + return DT_FLOAT ; <nl> + case kTfLiteUInt8 : <nl> + return DT_UINT8 ; <nl> + default : <nl> + return DT_INVALID ; <nl> + } <nl> + } <nl> + <nl> + TensorShape GetTFLiteTensorShape ( const TfLiteTensor & tflite_tensor ) { <nl> + TensorShape shape ; <nl> + for ( int i = 0 ; i < tflite_tensor . dims - > size ; i + + ) { <nl> + shape . AddDim ( tflite_tensor . dims - > data [ i ] ) ; <nl> + } <nl> + return shape ; <nl> + } <nl> + <nl> + Status ReadFileLines ( const string & file_path , <nl> + std : : vector < string > * lines_output ) { <nl> + if ( ! lines_output ) { <nl> + return errors : : InvalidArgument ( " Invalid output " ) ; <nl> + } <nl> + std : : vector < string > lines ; <nl> + std : : ifstream stream ( file_path , std : : ios_base : : in ) ; <nl> + if ( ! stream ) { <nl> + return errors : : InvalidArgument ( " Unable to open file : " , file_path ) ; <nl> + } <nl> + std : : string line ; <nl> + while ( std : : getline ( stream , line ) ) { <nl> + lines_output - > push_back ( line ) ; <nl> + } <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + Status GetTFliteModelInfo ( const string & model_file_path , <nl> + ModelInfo * model_info ) { <nl> + if ( model_file_path . empty ( ) ) { <nl> + return errors : : InvalidArgument ( " Invalid model file . " ) ; <nl> + } <nl> + struct stat stat_buf ; <nl> + if ( stat ( model_file_path . c_str ( ) , & stat_buf ) ! = 0 ) { <nl> + int error_num = errno ; <nl> + return errors : : InvalidArgument ( " Invalid model file : " , model_file_path , <nl> + std : : strerror ( error_num ) ) ; <nl> + } <nl> + <nl> + std : : unique_ptr < tflite : : FlatBufferModel > model ; <nl> + std : : unique_ptr < tflite : : Interpreter > interpreter ; <nl> + model = tflite : : FlatBufferModel : : BuildFromFile ( model_file_path . data ( ) ) ; <nl> + tflite : : ops : : builtin : : BuiltinOpResolver resolver ; <nl> + <nl> + tflite : : InterpreterBuilder ( * model , resolver ) ( & interpreter ) ; <nl> + if ( ! interpreter ) { <nl> + return errors : : InvalidArgument ( " Invalid model " , model_file_path ) ; <nl> + } <nl> + for ( int i : interpreter - > inputs ( ) ) { <nl> + TfLiteTensor * tensor = interpreter - > tensor ( i ) ; <nl> + model_info - > input_shapes . push_back ( utils : : GetTFLiteTensorShape ( * tensor ) ) ; <nl> + model_info - > input_types . push_back ( utils : : GetTFDataType ( tensor - > type ) ) ; <nl> + } <nl> + return Status : : OK ( ) ; <nl> + } <nl> + <nl> + } / / namespace utils <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> new file mode 100644 <nl> index 0000000000000 . . 37cbad4d51fd0 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / utils . h <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # ifndef TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_UTILS_H_ <nl> + # define TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_UTILS_H_ <nl> + <nl> + # include < string > <nl> + # include < vector > <nl> + <nl> + # include " tensorflow / contrib / lite / context . h " <nl> + # include " tensorflow / core / framework / tensor_shape . h " <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + <nl> + namespace utils { <nl> + <nl> + struct ModelInfo { <nl> + std : : vector < TensorShape > input_shapes ; <nl> + std : : vector < DataType > input_types ; <nl> + } ; <nl> + <nl> + Status GetTFliteModelInfo ( const string & model_file_path , ModelInfo * model_info ) ; <nl> + <nl> + DataType GetTFDataType ( TfLiteType tflite_type ) ; <nl> + <nl> + TensorShape GetTFLiteTensorShape ( const TfLiteTensor & tflite_tensor ) ; <nl> + <nl> + Status ReadFileLines ( const string & file_path , <nl> + std : : vector < string > * lines_output ) ; <nl> + } / / namespace utils <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + # endif / / TENSORFLOW_CONTRIB_LITE_TOOLS_ACCURACY_UTILS_H_ <nl> new file mode 100644 <nl> index 0000000000000 . . 727eba21b6c60 <nl> mmm / dev / null <nl> ppp b / tensorflow / contrib / lite / tools / accuracy / utils_test . cc <nl> <nl> + / * Copyright 2018 The TensorFlow Authors . All Rights Reserved . <nl> + <nl> + Licensed under the Apache License , Version 2 . 0 ( the " License " ) ; <nl> + you may not use this file except in compliance with the License . <nl> + You may obtain a copy of the License at <nl> + <nl> + http : / / www . apache . org / licenses / LICENSE - 2 . 0 <nl> + <nl> + Unless required by applicable law or agreed to in writing , software <nl> + distributed under the License is distributed on an " AS IS " BASIS , <nl> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied . <nl> + See the License for the specific language governing permissions and <nl> + limitations under the License . <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / <nl> + <nl> + # include < string > <nl> + # include < vector > <nl> + <nl> + # include < gmock / gmock . h > <nl> + # include < gtest / gtest . h > <nl> + # include " tensorflow / contrib / lite / tools / accuracy / utils . h " <nl> + # include " tensorflow / core / platform / init_main . h " <nl> + # include " tensorflow / core / util / command_line_flags . h " <nl> + <nl> + namespace { <nl> + tensorflow : : string * g_test_model_file = nullptr ; <nl> + } <nl> + <nl> + namespace tensorflow { <nl> + namespace metrics { <nl> + namespace utils { <nl> + namespace { <nl> + <nl> + TEST ( UtilsTest , GetTFLiteModelInfoReturnsCorrectly ) { <nl> + ASSERT_TRUE ( g_test_model_file ! = nullptr ) ; <nl> + string test_model_file = * g_test_model_file ; <nl> + ASSERT_FALSE ( test_model_file . empty ( ) ) ; <nl> + / / Passed graph has 4 inputs : a , b , c , d and 2 outputs x , y <nl> + / / x = a + b + c , y = b + c + d <nl> + / / Input and outputs have shape : { 1 , 8 , 8 , 3 } <nl> + ModelInfo model_info ; <nl> + auto status = GetTFliteModelInfo ( test_model_file , & model_info ) ; <nl> + TF_CHECK_OK ( status ) ; <nl> + ASSERT_EQ ( 4 , model_info . input_shapes . size ( ) ) ; <nl> + ASSERT_EQ ( 4 , model_info . input_types . size ( ) ) ; <nl> + <nl> + for ( int i = 0 ; i < 4 ; i + + ) { <nl> + const TensorShape & shape = model_info . input_shapes [ i ] ; <nl> + DataType dataType = model_info . input_types [ i ] ; <nl> + EXPECT_TRUE ( shape . IsSameSize ( { 1 , 8 , 8 , 3 } ) ) ; <nl> + EXPECT_EQ ( DT_FLOAT , dataType ) ; <nl> + } <nl> + } <nl> + <nl> + TEST ( UtilsTest , GetTFliteModelInfoIncorrectFile ) { <nl> + ModelInfo model_info ; <nl> + auto status = GetTFliteModelInfo ( " non_existent_file " , & model_info ) ; <nl> + EXPECT_FALSE ( status . ok ( ) ) ; <nl> + } <nl> + <nl> + } / / namespace <nl> + } / / namespace utils <nl> + } / / namespace metrics <nl> + } / / namespace tensorflow <nl> + <nl> + int main ( int argc , char * * argv ) { <nl> + g_test_model_file = new tensorflow : : string ( ) ; <nl> + const std : : vector < tensorflow : : Flag > flag_list = { <nl> + tensorflow : : Flag ( " test_model_file " , g_test_model_file , <nl> + " Path to test tflite model file . " ) , <nl> + } ; <nl> + const bool parse_result = tensorflow : : Flags : : Parse ( & argc , argv , flag_list ) ; <nl> + CHECK ( parse_result ) < < " Required test_model_file " ; <nl> + : : tensorflow : : port : : InitMain ( argv [ 0 ] , & argc , & argv ) ; <nl> + return RUN_ALL_TESTS ( ) ; <nl> + } <nl>
Add an accuracy tool that can be used to evaluate model accuracy on device .
tensorflow/tensorflow
8db22dc063e6a6bb16b4676e53446987dac99a49
2018-08-23T02:25:48Z
mmm a / system / include / emscripten / emmintrin . h <nl> ppp b / system / include / emscripten / emmintrin . h <nl> <nl> <nl> # ifdef __EMSCRIPTEN__ <nl> <nl> - / / XXX TODO : Might be nice to add support for standard flags . <nl> - # define __SSE2__ <nl> - <nl> / / XXX TODO : Remove after _mm_sqrt_pd / sd is supported . <nl> # include < math . h > <nl> <nl> - / / Emscripten / SIMD . js does not have cache hinting . <nl> - # define _mm_stream_pd _mm_store_pd <nl> - # define _mm_stream_si128 _mm_store_si128 <nl> - # endif <nl> + # else <nl> <nl> # ifndef __SSE2__ <nl> # error " SSE2 instruction set not enabled " <nl> - # else <nl> + # endif <nl> + <nl> + # endif <nl> <nl> # include < xmmintrin . h > <nl> <nl> _mm_storel_epi64 ( __m128i * __p , __m128i __a ) <nl> ( ( struct __mm_storel_epi64_struct * ) __p ) - > __u = __a [ 0 ] ; <nl> } <nl> <nl> - # ifndef __EMSCRIPTEN__ <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_stream_pd ( double * __p , __m128d __a ) <nl> { <nl> + # ifdef __EMSCRIPTEN__ <nl> + / / Emscripten / SIMD . js does not have cache hinting . <nl> + _mm_store_pd ( __p , __a ) ; <nl> + # else <nl> __builtin_ia32_movntpd ( __p , __a ) ; <nl> + # endif <nl> } <nl> <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_stream_si128 ( __m128i * __p , __m128i __a ) <nl> { <nl> + # ifdef __EMSCRIPTEN__ <nl> + / / Emscripten / SIMD . js does not have cache hinting . <nl> + _mm_store_si128 ( __p , __a ) ; <nl> + # else <nl> __builtin_ia32_movntdq ( __p , __a ) ; <nl> - } <nl> # endif <nl> + } <nl> <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_stream_si32 ( int * __p , int __a ) <nl> _mm_stream_si64 ( long long * __p , long long __a ) <nl> } <nl> # endif <nl> <nl> - # ifndef __EMSCRIPTEN__ / / XXX TODO Add support <nl> - <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_clflush ( void const * __p ) <nl> { <nl> + # ifndef __EMSCRIPTEN__ / / Emscripten / SIMD . js does not have cache hinting <nl> __builtin_ia32_clflush ( __p ) ; <nl> + # endif <nl> } <nl> <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_lfence ( void ) <nl> { <nl> + # ifdef __EMSCRIPTEN__ <nl> + __sync_synchronize ( ) ; / / Emscripten / SharedArrayBuffer has only a full barrier instruction , which gives a stronger guarantee . <nl> + # else <nl> __builtin_ia32_lfence ( ) ; <nl> + # endif <nl> } <nl> <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_mfence ( void ) <nl> { <nl> + # ifdef __EMSCRIPTEN__ <nl> + __sync_synchronize ( ) ; / / Emscripten / SharedArrayBuffer has only a full barrier instruction , which gives a stronger guarantee . <nl> + # else <nl> __builtin_ia32_mfence ( ) ; <nl> + # endif <nl> } <nl> <nl> + # ifndef __EMSCRIPTEN__ / / XXX TODO Add support <nl> static __inline__ __m128i __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_packs_epi16 ( __m128i __a , __m128i __b ) <nl> { <nl> _mm_castsi128_pd ( __m128i __a ) <nl> static __inline__ void __attribute__ ( ( __always_inline__ , __nodebug__ ) ) <nl> _mm_pause ( void ) <nl> { <nl> + # ifndef __EMSCRIPTEN__ / / Emscripten does not have an equivalent . <nl> __asm__ volatile ( " pause " ) ; <nl> + # endif <nl> } <nl> <nl> # define _MM_SHUFFLE2 ( x , y ) ( ( ( x ) < < 1 ) | ( y ) ) <nl> <nl> - # endif / * __SSE2__ * / <nl> + / / # endif / * __SSE2__ * / <nl> <nl> # endif / * __EMMINTRIN_H * / <nl> mmm a / tests / test_sse2_full . cpp <nl> ppp b / tests / test_sse2_full . cpp <nl> int main ( ) <nl> Ret_M128d ( __m128d , _mm_sqrt_pd ) ; <nl> Ret_M128d_M128d ( __m128d , _mm_sqrt_sd ) ; <nl> <nl> - # if 0 <nl> / / SSE2 General Support instructions : <nl> - _mm_clflush ( 0 ) ; <nl> + _mm_clflush ( interesting_floats ) ; <nl> _mm_lfence ( ) ; <nl> _mm_mfence ( ) ; <nl> _mm_pause ( ) ; <nl> - # endif <nl> <nl> / / SSE2 Load functions : <nl> Ret_DoublePtr ( __m128d , _mm_load_pd , 2 , 2 ) ; <nl>
Don ' t define SSE2 in emmintrin . h , add implementation of clflush , lfence , mfence and pause .
emscripten-core/emscripten
7c89fd02010a3001fc46c35e80ceabce067e5a63
2015-08-17T20:34:06Z
mmm a / hphp / test / frameworks / results / twig . expect <nl> ppp b / hphp / test / frameworks / results / twig . expect <nl> Twig_Tests_IntegrationTest : : testIntegration with data set # 98 <nl> Twig_Tests_IntegrationTest : : testIntegration with data set # 99 <nl> . <nl> Twig_Tests_LexerTest : : testBigNumbers <nl> - S <nl> + . <nl> Twig_Tests_LexerTest : : testBracketsNesting <nl> . <nl> Twig_Tests_LexerTest : : testLineDirective <nl> Twig_Tests_Loader_FilesystemTest : : testSecurity with data set # 8 <nl> Twig_Tests_Loader_FilesystemTest : : testSecurity with data set # 9 <nl> . <nl> Twig_Tests_NativeExtensionTest : : testGetProperties <nl> - S <nl> + . <nl> Twig_Tests_NodeVisitor_OptimizerTest : : testForOptimizer with data set # 0 <nl> . <nl> Twig_Tests_NodeVisitor_OptimizerTest : : testForOptimizer with data set # 1 <nl>
Re - record twig
facebook/hhvm
82a5e7dc9499c2f5ecbdf33d44bd6ac5cf71f5c8
2014-07-10T20:30:21Z
mmm a / atom . gyp <nl> ppp b / atom . gyp <nl> <nl> ' atom / browser / atom_browser_context . h ' , <nl> ' atom / browser / atom_browser_main_parts . cc ' , <nl> ' atom / browser / atom_browser_main_parts . h ' , <nl> + ' atom / browser / atom_browser_main_parts_linux . cc ' , <nl> ' atom / browser / atom_browser_main_parts_mac . mm ' , <nl> ' atom / browser / atom_javascript_dialog_manager . cc ' , <nl> ' atom / browser / atom_javascript_dialog_manager . h ' , <nl> <nl> ' chromium_src / chrome / renderer / printing / print_web_view_helper . h ' , <nl> ' chromium_src / chrome / renderer / tts_dispatcher . cc ' , <nl> ' chromium_src / chrome / renderer / tts_dispatcher . h ' , <nl> + ' chromium_src / library_loaders / libgio_loader . cc ' , <nl> + ' chromium_src / library_loaders / libgio . h ' , <nl> ' chromium_src / library_loaders / libspeechd_loader . cc ' , <nl> + ' chromium_src / library_loaders / libspeechd . h ' , <nl> ' < @ ( native_mate_files ) ' , <nl> ] , <nl> ' framework_sources ' : [ <nl> mmm a / atom / browser / atom_browser_main_parts . cc <nl> ppp b / atom / browser / atom_browser_main_parts . cc <nl> brightray : : BrowserContext * AtomBrowserMainParts : : CreateBrowserContext ( ) { <nl> void AtomBrowserMainParts : : PostEarlyInitialization ( ) { <nl> brightray : : BrowserMainParts : : PostEarlyInitialization ( ) ; <nl> <nl> + # if defined ( USE_X11 ) <nl> + SetDPIFromGSettings ( ) ; <nl> + # endif <nl> + <nl> / / The ProxyResolverV8 has setup a complete V8 environment , in order to avoid <nl> / / conflicts we only initialize our V8 environment after that . <nl> js_env_ . reset ( new JavascriptEnvironment ) ; <nl> mmm a / atom / browser / atom_browser_main_parts . h <nl> ppp b / atom / browser / atom_browser_main_parts . h <nl> class AtomBrowserMainParts : public brightray : : BrowserMainParts { <nl> # endif <nl> <nl> private : <nl> + # if defined ( USE_X11 ) <nl> + void SetDPIFromGSettings ( ) ; <nl> + # endif <nl> + <nl> scoped_ptr < Browser > browser_ ; <nl> scoped_ptr < JavascriptEnvironment > js_env_ ; <nl> scoped_ptr < NodeBindings > node_bindings_ ; <nl> new file mode 100644 <nl> index 000000000000 . . f2ab880b46d9 <nl> mmm / dev / null <nl> ppp b / chromium_src / library_loaders / libgio . h <nl> <nl> + / / This is generated file . Do not modify directly . <nl> + / / Path to the code generator : tools / generate_library_loader / generate_library_loader . py . <nl> + <nl> + # ifndef LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H <nl> + # define LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H <nl> + <nl> + # include < gio / gio . h > <nl> + # define LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN <nl> + <nl> + <nl> + # include < string > <nl> + <nl> + class LibGioLoader { <nl> + public : <nl> + LibGioLoader ( ) ; <nl> + ~ LibGioLoader ( ) ; <nl> + <nl> + bool Load ( const std : : string & library_name ) <nl> + __attribute__ ( ( warn_unused_result ) ) ; <nl> + <nl> + bool loaded ( ) const { return loaded_ ; } <nl> + <nl> + typeof ( & : : g_settings_new ) g_settings_new ; <nl> + typeof ( & : : g_settings_get_child ) g_settings_get_child ; <nl> + typeof ( & : : g_settings_get_string ) g_settings_get_string ; <nl> + typeof ( & : : g_settings_get_boolean ) g_settings_get_boolean ; <nl> + typeof ( & : : g_settings_get_int ) g_settings_get_int ; <nl> + typeof ( & : : g_settings_get_strv ) g_settings_get_strv ; <nl> + typeof ( & : : g_settings_list_schemas ) g_settings_list_schemas ; <nl> + <nl> + <nl> + private : <nl> + void CleanUp ( bool unload ) ; <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + void * library_ ; <nl> + # endif <nl> + <nl> + bool loaded_ ; <nl> + <nl> + / / Disallow copy constructor and assignment operator . <nl> + LibGioLoader ( const LibGioLoader & ) ; <nl> + void operator = ( const LibGioLoader & ) ; <nl> + } ; <nl> + <nl> + # endif / / LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H <nl> new file mode 100644 <nl> index 000000000000 . . e7f5085ab975 <nl> mmm / dev / null <nl> ppp b / chromium_src / library_loaders / libgio_loader . cc <nl> <nl> + / / This is generated file . Do not modify directly . <nl> + / / Path to the code generator : tools / generate_library_loader / generate_library_loader . py . <nl> + <nl> + # include " library_loaders / libgio . h " <nl> + <nl> + # include < dlfcn . h > <nl> + <nl> + / / Put these sanity checks here so that they fire at most once <nl> + / / ( to avoid cluttering the build output ) . <nl> + # if ! defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) & & ! defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + # error neither LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN nor LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED defined <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) & & defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + # error both LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN and LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED defined <nl> + # endif <nl> + <nl> + LibGioLoader : : LibGioLoader ( ) : loaded_ ( false ) { <nl> + } <nl> + <nl> + LibGioLoader : : ~ LibGioLoader ( ) { <nl> + CleanUp ( loaded_ ) ; <nl> + } <nl> + <nl> + bool LibGioLoader : : Load ( const std : : string & library_name ) { <nl> + if ( loaded_ ) <nl> + return false ; <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + library_ = dlopen ( library_name . c_str ( ) , RTLD_LAZY ) ; <nl> + if ( ! library_ ) <nl> + return false ; <nl> + # endif <nl> + <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_new = <nl> + reinterpret_cast < typeof ( this - > g_settings_new ) > ( <nl> + dlsym ( library_ , " g_settings_new " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_new = & : : g_settings_new ; <nl> + # endif <nl> + if ( ! g_settings_new ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_get_child = <nl> + reinterpret_cast < typeof ( this - > g_settings_get_child ) > ( <nl> + dlsym ( library_ , " g_settings_get_child " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_get_child = & : : g_settings_get_child ; <nl> + # endif <nl> + if ( ! g_settings_get_child ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_get_string = <nl> + reinterpret_cast < typeof ( this - > g_settings_get_string ) > ( <nl> + dlsym ( library_ , " g_settings_get_string " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_get_string = & : : g_settings_get_string ; <nl> + # endif <nl> + if ( ! g_settings_get_string ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_get_boolean = <nl> + reinterpret_cast < typeof ( this - > g_settings_get_boolean ) > ( <nl> + dlsym ( library_ , " g_settings_get_boolean " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_get_boolean = & : : g_settings_get_boolean ; <nl> + # endif <nl> + if ( ! g_settings_get_boolean ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_get_int = <nl> + reinterpret_cast < typeof ( this - > g_settings_get_int ) > ( <nl> + dlsym ( library_ , " g_settings_get_int " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_get_int = & : : g_settings_get_int ; <nl> + # endif <nl> + if ( ! g_settings_get_int ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_get_strv = <nl> + reinterpret_cast < typeof ( this - > g_settings_get_strv ) > ( <nl> + dlsym ( library_ , " g_settings_get_strv " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_get_strv = & : : g_settings_get_strv ; <nl> + # endif <nl> + if ( ! g_settings_get_strv ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + g_settings_list_schemas = <nl> + reinterpret_cast < typeof ( this - > g_settings_list_schemas ) > ( <nl> + dlsym ( library_ , " g_settings_list_schemas " ) ) ; <nl> + # endif <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DT_NEEDED ) <nl> + g_settings_list_schemas = & : : g_settings_list_schemas ; <nl> + # endif <nl> + if ( ! g_settings_list_schemas ) { <nl> + CleanUp ( true ) ; <nl> + return false ; <nl> + } <nl> + <nl> + <nl> + loaded_ = true ; <nl> + return true ; <nl> + } <nl> + <nl> + void LibGioLoader : : CleanUp ( bool unload ) { <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBGIO_H_DLOPEN ) <nl> + if ( unload ) { <nl> + dlclose ( library_ ) ; <nl> + library_ = NULL ; <nl> + } <nl> + # endif <nl> + loaded_ = false ; <nl> + g_settings_new = NULL ; <nl> + g_settings_get_child = NULL ; <nl> + g_settings_get_string = NULL ; <nl> + g_settings_get_boolean = NULL ; <nl> + g_settings_get_int = NULL ; <nl> + g_settings_get_strv = NULL ; <nl> + g_settings_list_schemas = NULL ; <nl> + <nl> + } <nl> new file mode 100644 <nl> index 000000000000 . . 11afa3307588 <nl> mmm / dev / null <nl> ppp b / chromium_src / library_loaders / libspeechd . h <nl> <nl> + / / This is generated file . Do not modify directly . <nl> + / / Path to the code generator : tools / generate_library_loader / generate_library_loader . py . <nl> + <nl> + # ifndef LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBSPEECHD_H <nl> + # define LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBSPEECHD_H <nl> + <nl> + # include " third_party / speech - dispatcher / libspeechd . h " <nl> + # define LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBSPEECHD_H_DLOPEN <nl> + <nl> + <nl> + # include < string > <nl> + <nl> + class LibSpeechdLoader { <nl> + public : <nl> + LibSpeechdLoader ( ) ; <nl> + ~ LibSpeechdLoader ( ) ; <nl> + <nl> + bool Load ( const std : : string & library_name ) <nl> + __attribute__ ( ( warn_unused_result ) ) ; <nl> + <nl> + bool loaded ( ) const { return loaded_ ; } <nl> + <nl> + typeof ( & : : spd_open ) spd_open ; <nl> + typeof ( & : : spd_say ) spd_say ; <nl> + typeof ( & : : spd_stop ) spd_stop ; <nl> + typeof ( & : : spd_close ) spd_close ; <nl> + typeof ( & : : spd_pause ) spd_pause ; <nl> + typeof ( & : : spd_resume ) spd_resume ; <nl> + typeof ( & : : spd_set_notification_on ) spd_set_notification_on ; <nl> + typeof ( & : : spd_set_voice_rate ) spd_set_voice_rate ; <nl> + typeof ( & : : spd_set_voice_pitch ) spd_set_voice_pitch ; <nl> + typeof ( & : : spd_list_synthesis_voices ) spd_list_synthesis_voices ; <nl> + typeof ( & : : spd_set_synthesis_voice ) spd_set_synthesis_voice ; <nl> + typeof ( & : : spd_list_modules ) spd_list_modules ; <nl> + typeof ( & : : spd_set_output_module ) spd_set_output_module ; <nl> + <nl> + <nl> + private : <nl> + void CleanUp ( bool unload ) ; <nl> + <nl> + # if defined ( LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBSPEECHD_H_DLOPEN ) <nl> + void * library_ ; <nl> + # endif <nl> + <nl> + bool loaded_ ; <nl> + <nl> + / / Disallow copy constructor and assignment operator . <nl> + LibSpeechdLoader ( const LibSpeechdLoader & ) ; <nl> + void operator = ( const LibSpeechdLoader & ) ; <nl> + } ; <nl> + <nl> + # endif / / LIBRARY_LOADER_OUT_RELEASE_GEN_LIBRARY_LOADERS_LIBSPEECHD_H <nl>
Add libgio loader
electron/electron
4b75b1054237f9daa4656cb5be9a34f457942655
2014-10-21T10:50:50Z
mmm a / BUILD . gn <nl> ppp b / BUILD . gn <nl> if ( is_component_build ) { <nl> " src / v8dll - main . cc " , <nl> ] <nl> <nl> - deps = [ <nl> - " : v8_dump_build_config " , <nl> - ] <nl> - <nl> public_deps = [ <nl> " : v8_base " , <nl> " : v8_maybe_snapshot " , <nl> if ( is_component_build ) { <nl> " src / v8dll - main . cc " , <nl> ] <nl> <nl> - deps = [ <nl> - " : v8_dump_build_config " , <nl> - ] <nl> - <nl> public_deps = [ <nl> " : v8_base " , <nl> " : v8_maybe_snapshot " , <nl> if ( is_component_build ) { <nl> } <nl> } else { <nl> group ( " v8 " ) { <nl> - deps = [ <nl> - " : v8_dump_build_config " , <nl> - ] <nl> - <nl> public_deps = [ <nl> " : v8_base " , <nl> " : v8_maybe_snapshot " , <nl> if ( is_component_build ) { <nl> group ( " v8_for_testing " ) { <nl> testonly = true <nl> <nl> - deps = [ <nl> - " : v8_dump_build_config " , <nl> - ] <nl> - <nl> public_deps = [ <nl> " : v8_base " , <nl> " : v8_maybe_snapshot " , <nl> mmm a / gni / v8 . gni <nl> ppp b / gni / v8 . gni <nl> template ( " v8_executable " ) { <nl> configs - = [ v8_path_prefix + " : v8_gcov_coverage_cflags " ] <nl> } <nl> } <nl> + deps + = [ <nl> + v8_path_prefix + " : v8_dump_build_config " , <nl> + ] <nl> } <nl> } <nl> <nl>
[ build ] Dump build configuration for all v8 executables
v8/v8
aec2862626052a6cd32969aa68c41b45cf7c18a0
2017-06-29T08:06:45Z
mmm a / test / mjsunit / mjsunit . status <nl> ppp b / test / mjsunit / mjsunit . status <nl> <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> [ ' system = = android ' , { <nl> # Tests consistently failing on Android . <nl> - # Timezone issues : <nl> + # Unable to change locale on Android : <nl> ' icu - date - to - string ' : [ FAIL ] , <nl> ' regress / regress - 6288 ' : [ FAIL ] , <nl> # OOM : <nl> - ' regress / regress - 599414 - array - concat - fast - path ' : [ FAIL ] , <nl> } ] , # ' system = = android ' <nl> <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> mmm a / test / mjsunit / regress / regress - 599414 - array - concat - fast - path . js <nl> ppp b / test / mjsunit / regress / regress - 599414 - array - concat - fast - path . js <nl> var a = largeArray ; <nl> <nl> assertThrows ( ( ) = > { <nl> for ( ; ; ) { <nl> - a = a . concat ( a , a , a , a , a , a ) ; <nl> + a = a . concat ( a , a , a , a , a ) ; <nl> } } , RangeError ) ; <nl>
[ Tests ] Fix regress / regress - 599414 - array - concat - fast - path on Android .
v8/v8
16fd84f3bd7e14b606d27fc5187b241e98c88d0d
2018-08-21T11:02:26Z
mmm a / lib / Sema / CSBindings . cpp <nl> ppp b / lib / Sema / CSBindings . cpp <nl> void ConstraintSystem : : inferTransitiveSupertypeBindings ( <nl> llvm : : SmallVector < Constraint * , 4 > subtypeOf ; <nl> / / First , let ' s collect all of the ` subtype ` constraints associated <nl> / / with this type variable . <nl> - llvm : : copy_if ( <nl> - bindings . Sources , std : : back_inserter ( subtypeOf ) , <nl> - [ & ] ( const Constraint * constraint ) - > bool { <nl> - if ( constraint - > getKind ( ) ! = ConstraintKind : : Subtype & & <nl> - constraint - > getKind ( ) ! = ConstraintKind : : ArgumentConversion & & <nl> - constraint - > getKind ( ) ! = ConstraintKind : : OperatorArgumentConversion ) <nl> - return false ; <nl> - <nl> - auto rhs = simplifyType ( constraint - > getSecondType ( ) ) ; <nl> - return rhs - > getAs < TypeVariableType > ( ) = = typeVar ; <nl> - } ) ; <nl> + llvm : : copy_if ( bindings . Sources , std : : back_inserter ( subtypeOf ) , <nl> + [ & ] ( const Constraint * constraint ) - > bool { <nl> + if ( constraint - > getKind ( ) ! = ConstraintKind : : Subtype ) <nl> + return false ; <nl> + <nl> + auto rhs = simplifyType ( constraint - > getSecondType ( ) ) ; <nl> + return rhs - > getAs < TypeVariableType > ( ) = = typeVar ; <nl> + } ) ; <nl> <nl> if ( subtypeOf . empty ( ) ) <nl> return ; <nl> ConstraintSystem : : getPotentialBindings ( TypeVariableType * typeVar ) const { <nl> continue ; <nl> <nl> literalBindings . push_back ( <nl> - { defaultType , AllowedBindingKind : : Exact , constraint } ) ; <nl> + { defaultType , AllowedBindingKind : : Subtypes , constraint } ) ; <nl> continue ; <nl> } <nl> <nl> ConstraintSystem : : getPotentialBindings ( TypeVariableType * typeVar ) const { <nl> if ( ! matched ) { <nl> exactTypes . insert ( defaultType - > getCanonicalType ( ) ) ; <nl> literalBindings . push_back ( <nl> - { defaultType , AllowedBindingKind : : Exact , constraint } ) ; <nl> + { defaultType , AllowedBindingKind : : Subtypes , constraint } ) ; <nl> } <nl> <nl> break ; <nl> mmm a / lib / Sema / CSSimplify . cpp <nl> ppp b / lib / Sema / CSSimplify . cpp <nl> ConstraintSystem : : SolutionKind ConstraintSystem : : simplifyFixConstraint ( <nl> / / subscript , which requires changes to declaration to become mutable . <nl> if ( auto last = locator . last ( ) ) { <nl> impact + = ( last - > is < LocatorPathElt : : FunctionResult > ( ) | | <nl> - last - > is < LocatorPathElt : : SubscriptMember > ( ) | | <nl> - last - > is < LocatorPathElt : : KeyPathDynamicMember > ( ) ) <nl> + last - > is < LocatorPathElt : : SubscriptMember > ( ) ) <nl> ? 1 <nl> : 0 ; <nl> } <nl> mmm a / lib / Sema / CSStep . h <nl> ppp b / lib / Sema / CSStep . h <nl> class TypeVariableStep final : public BindingStep < TypeVarBindingProducer > { <nl> / / / Check whether attempting type variable binding choices should <nl> / / / be stopped , because optimal solution has already been found . <nl> bool shouldStopAt ( const TypeVariableBinding & choice ) const override { <nl> - if ( CS . shouldAttemptFixes ( ) ) { <nl> - / / Let ' s always attempt default types inferred from literals <nl> - / / in diagnostic mode because that could lead to better <nl> - / / diagnostics if the problem is contextual like argument / parameter <nl> - / / conversion or collection element mismatch . <nl> - if ( choice . hasDefaultedProtocol ( ) ) <nl> - return false ; <nl> - } <nl> - <nl> / / If we were able to solve this without considering <nl> / / default literals , don ' t bother looking at default literals . <nl> return AnySolved & & choice . hasDefaultedProtocol ( ) & & <nl> mmm a / lib / Sema / ConstraintSystem . cpp <nl> ppp b / lib / Sema / ConstraintSystem . cpp <nl> static bool diagnoseConflictingGenericArguments ( ConstraintSystem & cs , <nl> <nl> auto & DE = cs . getASTContext ( ) . Diags ; <nl> <nl> - llvm : : SmallDenseMap < TypeVariableType * , <nl> - std : : pair < GenericTypeParamType * , SourceLoc > , 4 > <nl> - genericParams ; <nl> - / / Consider only representative type variables shared across <nl> - / / all of the solutions . <nl> - for ( auto * typeVar : cs . getTypeVariables ( ) ) { <nl> - if ( auto * GP = typeVar - > getImpl ( ) . getGenericParameter ( ) ) { <nl> - auto * locator = typeVar - > getImpl ( ) . getLocator ( ) ; <nl> - auto * repr = cs . getRepresentative ( typeVar ) ; <nl> - / / If representative is another generic parameter let ' s <nl> - / / use its generic parameter type instead of originator ' s , <nl> - / / but it ' s possible that generic parameter is equated to <nl> - / / some other type e . g . <nl> - / / <nl> - / / func foo < T > ( _ : T ) - > T { } <nl> - / / <nl> - / / In this case when reference to function ` foo ` is " opened " <nl> - / / type variable representing ` T ` would be equated to <nl> - / / type variable representing a result type of the reference . <nl> - if ( auto * reprGP = repr - > getImpl ( ) . getGenericParameter ( ) ) <nl> - GP = reprGP ; <nl> - <nl> - genericParams [ repr ] = { GP , locator - > getAnchor ( ) - > getLoc ( ) } ; <nl> - } <nl> - } <nl> + llvm : : SmallDenseMap < TypeVariableType * , SmallVector < Type , 4 > > conflicts ; <nl> <nl> - llvm : : SmallDenseMap < std : : pair < GenericTypeParamType * , SourceLoc > , <nl> - SmallVector < Type , 4 > > <nl> - conflicts ; <nl> + for ( const auto & binding : solutions [ 0 ] . typeBindings ) { <nl> + auto * typeVar = binding . first ; <nl> <nl> - for ( const auto & entry : genericParams ) { <nl> - auto * typeVar = entry . first ; <nl> - auto GP = entry . second ; <nl> + if ( ! typeVar - > getImpl ( ) . getGenericParameter ( ) ) <nl> + continue ; <nl> <nl> llvm : : SmallSetVector < Type , 4 > arguments ; <nl> - for ( const auto & solution : solutions ) { <nl> - auto type = solution . typeBindings . lookup ( typeVar ) ; <nl> - / / Contextual opaque result type is uniquely identified by <nl> - / / declaration it ' s associated with , so we have to compare <nl> - / / declarations instead of using pointer equality on such types . <nl> - if ( auto * opaque = type - > getAs < OpaqueTypeArchetypeType > ( ) ) { <nl> - auto * decl = opaque - > getDecl ( ) ; <nl> - arguments . remove_if ( [ & ] ( Type argType ) - > bool { <nl> - if ( auto * otherOpaque = argType - > getAs < OpaqueTypeArchetypeType > ( ) ) { <nl> - return decl = = otherOpaque - > getDecl ( ) ; <nl> + arguments . insert ( binding . second ) ; <nl> + <nl> + if ( ! llvm : : all_of ( solutions . slice ( 1 ) , [ & ] ( const Solution & solution ) { <nl> + auto binding = solution . typeBindings . find ( typeVar ) ; <nl> + if ( binding = = solution . typeBindings . end ( ) ) <nl> + return false ; <nl> + <nl> + / / Contextual opaque result type is uniquely identified by <nl> + / / declaration it ' s associated with , so we have to compare <nl> + / / declarations instead of using pointer equality on such types . <nl> + if ( auto * opaque = <nl> + binding - > second - > getAs < OpaqueTypeArchetypeType > ( ) ) { <nl> + auto * decl = opaque - > getDecl ( ) ; <nl> + arguments . remove_if ( [ & ] ( Type argType ) - > bool { <nl> + if ( auto * otherOpaque = <nl> + argType - > getAs < OpaqueTypeArchetypeType > ( ) ) { <nl> + return decl = = otherOpaque - > getDecl ( ) ; <nl> + } <nl> + return false ; <nl> + } ) ; <nl> } <nl> - return false ; <nl> - } ) ; <nl> - } <nl> <nl> - arguments . insert ( type ) ; <nl> - } <nl> + arguments . insert ( binding - > second ) ; <nl> + return true ; <nl> + } ) ) <nl> + continue ; <nl> <nl> - if ( arguments . size ( ) > 1 ) <nl> - conflicts [ GP ] . append ( arguments . begin ( ) , arguments . end ( ) ) ; <nl> + if ( arguments . size ( ) > 1 ) { <nl> + conflicts [ typeVar ] . append ( arguments . begin ( ) , arguments . end ( ) ) ; <nl> + } <nl> } <nl> <nl> auto getGenericTypeDecl = [ & ] ( ArchetypeType * archetype ) - > ValueDecl * { <nl> static bool diagnoseConflictingGenericArguments ( ConstraintSystem & cs , <nl> <nl> bool diagnosed = false ; <nl> for ( auto & conflict : conflicts ) { <nl> - SourceLoc loc ; <nl> - GenericTypeParamType * GP ; <nl> - <nl> - std : : tie ( GP , loc ) = conflict . first ; <nl> + auto * typeVar = conflict . first ; <nl> + auto * locator = typeVar - > getImpl ( ) . getLocator ( ) ; <nl> auto conflictingArguments = conflict . second ; <nl> <nl> llvm : : SmallString < 64 > arguments ; <nl> static bool diagnoseConflictingGenericArguments ( ConstraintSystem & cs , <nl> } , <nl> [ & OS ] { OS < < " vs . " ; } ) ; <nl> <nl> - DE . diagnose ( loc , diag : : conflicting_arguments_for_generic_parameter , GP , <nl> - OS . str ( ) ) ; <nl> + auto * anchor = locator - > getAnchor ( ) ; <nl> + DE . diagnose ( anchor - > getLoc ( ) , <nl> + diag : : conflicting_arguments_for_generic_parameter , <nl> + typeVar - > getImpl ( ) . getGenericParameter ( ) , OS . str ( ) ) ; <nl> diagnosed = true ; <nl> } <nl> <nl> mmm a / test / Constraints / array_literal . swift <nl> ppp b / test / Constraints / array_literal . swift <nl> useDoubleList ( [ 1 . 0 , 2 , 3 ] ) <nl> useDoubleList ( [ 1 . 0 , 2 . 0 , 3 . 0 ] ) <nl> <nl> useIntDict ( [ " Niners " = > 31 , " Ravens " = > 34 ] ) <nl> - useIntDict ( [ " Niners " = > 31 , " Ravens " = > 34 . 0 ] ) / / expected - error { { cannot convert value of type ' Double ' to expected element type ' Int ' } } <nl> + useIntDict ( [ " Niners " = > 31 , " Ravens " = > 34 . 0 ] ) / / expected - error { { cannot convert value of type ' Double ' to expected argument type ' Int ' } } <nl> / / < rdar : / / problem / 22333090 > QoI : Propagate contextual information in a call to operands <nl> useDoubleDict ( [ " Niners " = > 31 , " Ravens " = > 34 . 0 ] ) <nl> useDoubleDict ( [ " Niners " = > 31 . 0 , " Ravens " = > 34 ] ) <nl> mmm a / test / Constraints / closures . swift <nl> ppp b / test / Constraints / closures . swift <nl> extension Collection { <nl> } <nl> } <nl> func fn_r28909024 ( n : Int ) { <nl> - return ( 0 . . < 10 ) . r28909024 { / / expected - error { { unexpected non - void return value in void function } } expected - note { { did you mean to add a return type ? } } <nl> + / / FIXME ( diagnostics ) : Unfortunately there is no easy way to fix this diagnostic issue at the moment <nl> + / / because the problem is related to ordering of the bindings - we ' d attempt to bind result of the expression <nl> + / / to contextual type of ` Void ` which prevents solver from discovering correct types for range - 0 . . < 10 <nl> + / / ( since both arguments are literal they are ranked lower than contextual type ) . <nl> + / / <nl> + / / Good diagnostic for this is - ` unexpected non - void return value in void function ` <nl> + return ( 0 . . < 10 ) . r28909024 { / / expected - error { { type of expression is ambiguous without more context } } <nl> _ in true <nl> } <nl> } <nl> mmm a / test / Constraints / default_literals . swift <nl> ppp b / test / Constraints / default_literals . swift <nl> extension Int { <nl> <nl> <nl> var ( div , mod ) = ( 9 / 4 , 9 % 4 ) <nl> - <nl> - / / rdar : / / problem / 56212087 - solver fails to infer correct type for a generic parameter ( Any vs . String ) <nl> - func test_transitive_inference_of_default_literal_types ( ) { <nl> - func foo < T : ExpressibleByStringLiteral > ( _ : String , _ : T ) - > T { <nl> - fatalError ( ) <nl> - } <nl> - <nl> - func bar ( _ : Any ? ) { } <nl> - <nl> - bar ( foo ( " " , " " ) ) / / Ok <nl> - } <nl> mmm a / test / Generics / deduction . swift <nl> ppp b / test / Generics / deduction . swift <nl> func foo ( ) { <nl> let j = min ( Int ( 3 ) , Float ( 2 . 5 ) ) / / expected - error { { conflicting arguments to generic parameter ' T ' ( ' Int ' vs . ' Float ' ) } } <nl> let k = min ( A ( ) , A ( ) ) / / expected - error { { global function ' min ' requires that ' A ' conform to ' Comparable ' } } <nl> let oi : Int ? = 5 <nl> - let l = min ( 3 , oi ) / / expected - error { { value of optional type ' Int ? ' must be unwrapped to a value of type ' Int ' } } <nl> - / / expected - note @ - 1 { { force - unwrap using ' ! ' to abort execution if the optional value contains ' nil ' } } <nl> - / / expected - note @ - 2 { { coalesce using ' ? ? ' to provide a default when the optional value contains ' nil ' } } <nl> + let l = min ( 3 , oi ) / / expected - error { { global function ' min ' requires that ' Int ? ' conform to ' Comparable ' } } <nl> + / / expected - note @ - 1 { { wrapped type ' Int ' satisfies this requirement } } <nl> } <nl> <nl> infix operator + & <nl> mmm a / test / Parse / omit_return . swift <nl> ppp b / test / Parse / omit_return . swift <nl> var fvs_stubMyOwnFatalError : ( ) { <nl> var fvs_forceTryExplicit : String { <nl> get { " ok " } <nl> set { <nl> - return try ! failableIdentity ( " shucks " ) / / expected - error { { unexpected non - void return value in void function } } <nl> + return try ! failableIdentity ( " shucks " ) / / expected - error { { cannot convert value of type ' String ' to expected argument type ' ( ) ' } } <nl> } <nl> } <nl> <nl> mmm a / test / attr / attr_dynamic_member_lookup . swift <nl> ppp b / test / attr / attr_dynamic_member_lookup . swift <nl> func keypath_with_subscripts ( _ arr : SubscriptLens < [ Int ] > , <nl> <nl> func keypath_with_incorrect_return_type ( _ arr : Lens < Array < Int > > ) { <nl> for idx in 0 . . < arr . count { <nl> - / / expected - error @ - 1 { { cannot convert value of type ' Lens < Int > ' to expected argument type ' Int ' } } <nl> + / / expected - error @ - 1 { { protocol ' Sequence ' requires that ' Lens < Int > ' conform to ' Strideable ' } } <nl> + / / expected - error @ - 2 { { protocol ' Sequence ' requires that ' Lens < Int > . Stride ' conform to ' SignedInteger ' } } <nl> + / / expected - error @ - 3 { { cannot convert value of type ' Int ' to expected argument type ' Lens < Int > ' } } <nl> + / / expected - error @ - 4 { { referencing operator function ' . . < ' on ' Comparable ' requires that ' Lens < Int > ' conform to ' Comparable ' } } <nl> let _ = arr [ idx ] <nl> } <nl> } <nl> mmm a / test / decl / typealias / generic . swift <nl> ppp b / test / decl / typealias / generic . swift <nl> _ = A < String , Int > ( a : " foo " , / / expected - error { { cannot convert value of type ' S <nl> b : 42 ) / / expected - error { { cannot convert value of type ' Int ' to expected argument type ' String ' } } <nl> _ = B ( a : 12 , b : 42 ) <nl> _ = B ( a : 12 , b : 42 as Float ) <nl> - _ = B ( a : " foo " , b : 42 ) / / expected - error { { conflicting arguments to generic parameter ' T1 ' ( ' String ' vs . ' Int ' ) } } <nl> + _ = B ( a : " foo " , b : 42 ) / / expected - error { { cannot convert value of type ' Int ' to expected argument type ' String ' } } <nl> _ = C ( a : " foo " , b : 42 ) <nl> _ = C ( a : 42 , / / expected - error { { cannot convert value of type ' Int ' to expected argument type ' String ' } } <nl> b : 42 ) <nl> mmm a / test / expr / expressions . swift <nl> ppp b / test / expr / expressions . swift <nl> func testNilCoalescePrecedence ( cond : Bool , a : Int ? , r : ClosedRange < Int > ? ) { <nl> <nl> / / ? ? should have lower precedence than range and arithmetic operators . <nl> let r1 = r ? ? ( 0 . . . 42 ) / / ok <nl> - let r2 = ( r ? ? 0 ) . . . 42 / / not ok <nl> - / / expected - error @ - 1 { { cannot convert value of type ' Int ' to expected argument type ' ClosedRange < Int > ' } } <nl> - / / expected - error @ - 2 { { cannot convert value of type ' ClosedRange < Int > ' to expected argument type ' Int ' } } <nl> + let r2 = ( r ? ? 0 ) . . . 42 / / not ok : expected - error 2 { { cannot convert value of type ' Int ' to expected argument type ' ClosedRange < Int > ' } } <nl> + / / expected - error @ - 1 { { referencing operator function ' . . . ' on ' Comparable ' requires that ' ClosedRange < Int > ' conform to ' Comparable ' } } <nl> let r3 = r ? ? 0 . . . 42 / / parses as the first one , not the second . <nl> <nl> <nl> mmm a / test / type / protocol_composition . swift <nl> ppp b / test / type / protocol_composition . swift <nl> takesP1AndP2 ( [ Swift . AnyObject & P1 & P2 ] ( ) ) <nl> takesP1AndP2 ( [ AnyObject & protocol_composition . P1 & P2 ] ( ) ) <nl> takesP1AndP2 ( [ AnyObject & P1 & protocol_composition . P2 ] ( ) ) <nl> takesP1AndP2 ( [ DoesNotExist & P1 & P2 ] ( ) ) / / expected - error { { use of unresolved identifier ' DoesNotExist ' } } <nl> - takesP1AndP2 ( [ Swift . DoesNotExist & P1 & P2 ] ( ) ) / / expected - error { { module ' Swift ' has no member named ' DoesNotExist ' } } expected - error { { cannot call value of non - function type ' Array < _ > ' } } <nl> + takesP1AndP2 ( [ Swift . DoesNotExist & P1 & P2 ] ( ) ) / / expected - error { { module ' Swift ' has no member named ' DoesNotExist ' } } <nl> <nl> typealias T08 = P1 & inout P2 / / expected - error { { ' inout ' may only be used on parameters } } <nl> typealias T09 = P1 & __shared P2 / / expected - error { { ' __shared ' may only be used on parameters } } <nl> mmm a / validation - test / stdlib / FixedPointDiagnostics . swift . gyb <nl> ppp b / validation - test / stdlib / FixedPointDiagnostics . swift . gyb <nl> <nl> / / RUN : % line - directive % t / main . swift - - % target - swift - frontend - typecheck - verify - swift - version 4 . 2 % t / main . swift <nl> <nl> func testUnaryMinusInUnsigned ( ) { <nl> - var a : UInt8 = - ( 1 ) / / expected - error { { cannot convert value of type ' Int ' to specified type ' UInt8 ' } } expected - note * { { } } expected - warning * { { } } <nl> + var a : UInt8 = - ( 1 ) / / expected - error { { no ' - ' candidates produce the expected contextual result type ' UInt8 ' } } expected - note * { { } } expected - warning * { { } } <nl> <nl> - var b : UInt16 = - ( 1 ) / / expected - error { { cannot convert value of type ' Int ' to specified type ' UInt16 ' } } expected - note * { { } } expected - warning * { { } } <nl> + var b : UInt16 = - ( 1 ) / / expected - error { { no ' - ' candidates produce the expected contextual result type ' UInt16 ' } } expected - note * { { } } expected - warning * { { } } <nl> <nl> - var c : UInt32 = - ( 1 ) / / expected - error { { cannot convert value of type ' Int ' to specified type ' UInt32 ' } } expected - note * { { } } expected - warning * { { } } <nl> + var c : UInt32 = - ( 1 ) / / expected - error { { no ' - ' candidates produce the expected contextual result type ' UInt32 ' } } expected - note * { { } } expected - warning * { { } } <nl> <nl> - var d : UInt64 = - ( 1 ) / / expected - error { { cannot convert value of type ' Int ' to specified type ' UInt64 ' } } expected - note * { { } } expected - warning * { { } } <nl> + var d : UInt64 = - ( 1 ) / / expected - error { { no ' - ' candidates produce the expected contextual result type ' UInt64 ' } } expected - note * { { } } expected - warning * { { } } <nl> } <nl> <nl> / / Int and UInt are not identical to any fixed - size integer type <nl>
Revert " [ ConstraintSystem ] Make it possible to infer subtype bindings through argument conversions "
apple/swift
0ecedfa5ea70b97f9a57ca48d30ce5bdd865482e
2020-03-08T04:16:56Z
diff - - git a / language / Spanish ( Argentina ) / langinfo . xml b / language / Spanish ( Argentina ) / langinfo . xml <nl> new file mode 100644 <nl> index 000000000000 . . ea186f5f69b2 <nl> mmm / dev / null <nl> ppp b / language / Spanish ( Argentina ) / langinfo . xml <nl> <nl> +  < ? xml version = " 1 . 0 " encoding = " UTF - 8 " standalone = " yes " ? > <nl> + < language locale = " es " > <nl> + < charsets > <nl> + < gui > CP1252 < / gui > <nl> + < subtitle > CP1252 < / subtitle > <nl> + < / charsets > <nl> + <nl> + < dvd > <nl> + < menu > es < / menu > <nl> + < audio > es < / audio > <nl> + < subtitle > es < / subtitle > <nl> + < / dvd > <nl> + <nl> + < regions > <nl> + < region name = " Argentina " locale = " AR " > <nl> + < dateshort > D / M / YYYY < / dateshort > <nl> + < datelong > DDD , DD ' de ' MMMM ' de ' YYYY < / datelong > <nl> + < time symbolAM = " " symbolPM = " " > H : mm : ss < / time > <nl> + < tempunit > C < / tempunit > <nl> + < speedunit > kmh < / speedunit > <nl> + < timezone > GMT - 3 < / timezone > <nl> + < / region > <nl> + < / regions > <nl> + <nl> + < sorttokens > <nl> + < token > The < / token > <nl> + < token > El < / token > <nl> + < token > Los < / token > <nl> + < token > La < / token > <nl> + < token > Las < / token > <nl> + < token > Un < / token > <nl> + < / sorttokens > <nl> + < / language > <nl>
Add langinfo . xml for es_AR locate .
xbmc/xbmc
293d8df6bf63b691e636e4fed7875567eba22976
2012-11-19T01:52:15Z
mmm a / atom / browser / native_window . cc <nl> ppp b / atom / browser / native_window . cc <nl> <nl> <nl> # include " atom / browser / atom_browser_context . h " <nl> # include " atom / browser / atom_browser_main_parts . h " <nl> + # include " atom / browser / browser . h " <nl> # include " atom / browser / window_list . h " <nl> # include " atom / common / api / api_messages . h " <nl> # include " atom / common / native_mate_converters / file_path_converter . h " <nl> void NativeWindow : : InitFromOptions ( const mate : : Dictionary & options ) { <nl> / / For normal window , use white as default background . <nl> SetBackgroundColor ( " # FFFF " ) ; <nl> } <nl> - std : : string title ( " Electron " ) ; <nl> + std : : string title ( Browser : : Get ( ) - > GetName ( ) ) ; <nl> options . Get ( options : : kTitle , & title ) ; <nl> SetTitle ( title ) ; <nl> <nl>
Merge pull request from electron / default - title - to - app - name
electron/electron
8a92ee403c63733025e8e75423ca4225735d7ff0
2016-06-09T02:06:30Z
mmm a / data / lm / lm . binary <nl> ppp b / data / lm / lm . binary <nl> <nl> version https : / / git - lfs . github . com / spec / v1 <nl> - oid sha256 : c8f5df0c3b4d4c5cf9c72cc22d8a7e02f449dbb0af0ea7eef2341b0da4978e81 <nl> - size 83876794 <nl> + oid sha256 : 0ef71a9dca85a30dbfbfa4ff4303f9e2e289c2018c1a627174dadd37351a4517 <nl> + size 1601028778 <nl>
Merge pull request from mozilla / issue620
mozilla/DeepSpeech
4923dd724204d6d38e271a2b092c5a416b0d4af7
2017-06-06T10:34:28Z
mmm a / src / core / grabber / karabiner_grabber . xcodeproj / project . pbxproj <nl> ppp b / src / core / grabber / karabiner_grabber . xcodeproj / project . pbxproj <nl> <nl> / * End PBXCopyFilesBuildPhase section * / <nl> <nl> / * Begin PBXFileReference section * / <nl> + 340C7F681E424F0E00F9B911 / * process_utility . hpp * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . cpp . h ; name = process_utility . hpp ; path = . . / . . / share / process_utility . hpp ; sourceTree = SOURCE_ROOT ; } ; <nl> 3411F57C1D84FD9400C4ED1E / * Security . framework * / = { isa = PBXFileReference ; lastKnownFileType = wrapper . framework ; name = Security . framework ; path = System / Library / Frameworks / Security . framework ; sourceTree = SDKROOT ; } ; <nl> 341C8E861D4CF1E10018D32C / * local_datagram_server . hpp * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . cpp . h ; name = local_datagram_server . hpp ; path = . . / . . / share / local_datagram_server . hpp ; sourceTree = SOURCE_ROOT ; } ; <nl> 341F59CA1D5167E900B441A8 / * constants . hpp * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . cpp . h ; name = constants . hpp ; path = . . / . . / share / constants . hpp ; sourceTree = SOURCE_ROOT ; } ; <nl> <nl> 341C8E861D4CF1E10018D32C / * local_datagram_server . hpp * / , <nl> 345AC0021D620C8C009D1FB4 / * notification_center . hpp * / , <nl> 347113141D871C6C001AC60D / * process_monitor . hpp * / , <nl> + 340C7F681E424F0E00F9B911 / * process_utility . hpp * / , <nl> 34DA28A31D8FC8BE0029E37D / * service_observer . hpp * / , <nl> 34A88A8F1D6840C200DD480B / * session . hpp * / , <nl> 34492B881DB12C9A0084F167 / * spdlog_utility . hpp * / , <nl> mmm a / src / core / grabber / main . cpp <nl> ppp b / src / core / grabber / main . cpp <nl> <nl> # include " event_manipulator . hpp " <nl> # include " karabiner_version . h " <nl> # include " notification_center . hpp " <nl> + # include " process_utility . hpp " <nl> # include " thread_utility . hpp " <nl> # include " version_monitor . hpp " <nl> # include " virtual_hid_device_client . hpp " <nl> int main ( int argc , const char * argv [ ] ) { <nl> <nl> logger : : get_logger ( ) . info ( " version { 0 } " , karabiner_version ) ; <nl> <nl> + { <nl> + std : : string pid_file_path = std : : string ( constants : : get_tmp_directory ( ) ) + " / karabiner_grabber . pid " ; <nl> + if ( ! process_utility : : lock_single_application ( pid_file_path ) ) { <nl> + std : : string message ( " Exit since another process is running . " ) ; <nl> + logger : : get_logger ( ) . info ( message ) ; <nl> + std : : cerr < < message < < std : : endl ; <nl> + return 0 ; <nl> + } <nl> + } <nl> + <nl> std : : unique_ptr < version_monitor > version_monitor_ptr = std : : make_unique < version_monitor > ( logger : : get_logger ( ) , [ ] { <nl> exit ( 0 ) ; <nl> } ) ; <nl>
use lock_single_application
pqrs-org/Karabiner-Elements
c99df254ebc8558d8a3c8decfdf65bc7d798b479
2017-02-01T17:22:27Z
mmm a / hphp / hack / src / parser / aast_parser . rs <nl> ppp b / hphp / hack / src / parser / aast_parser . rs <nl> impl < ' a > AastParser { <nl> Ok ( ParserResult { <nl> file_mode : mode , <nl> scoured_comments , <nl> - aast : ret ? , <nl> + aast : ret , <nl> lowpri_errors , <nl> errors , <nl> } ) <nl> mmm a / hphp / hack / src / parser / aast_parser_ffi . rs <nl> ppp b / hphp / hack / src / parser / aast_parser_ffi . rs <nl> <nl> <nl> use aast_parser : : { <nl> rust_aast_parser_types : : { Env , Result as ParserResult } , <nl> - AastParser , <nl> + AastParser , Error , <nl> } ; <nl> use ocamlrep_ocamlpool : : ocaml_ffi ; <nl> use parser_core_types : : { indexed_source_text : : IndexedSourceText , source_text : : SourceText } ; <nl> <nl> ocaml_ffi ! { <nl> - fn from_text ( env : Env , source_text : SourceText ) - > ParserResult { <nl> + fn from_text ( env : Env , source_text : SourceText ) - > Result < ParserResult , Error > { <nl> let indexed_source_text = IndexedSourceText : : new ( source_text ) ; <nl> - AastParser : : from_text ( & env , & indexed_source_text ) . unwrap ( ) <nl> + AastParser : : from_text ( & env , & indexed_source_text ) <nl> } <nl> } <nl> mmm a / hphp / hack / src / parser / aast_parser_lib . rs <nl> ppp b / hphp / hack / src / parser / aast_parser_lib . rs <nl> <nl> / / LICENSE file in the " hack " directory of this source tree . <nl> <nl> mod aast_parser ; <nl> - <nl> pub mod rust_aast_parser_types ; <nl> - pub use aast_parser : : AastParser ; <nl> + <nl> + pub use aast_parser : : { AastParser , Error } ; <nl> mmm a / hphp / hack / src / parser / full_fidelity_ast . ml <nl> ppp b / hphp / hack / src / parser / full_fidelity_ast . ml <nl> type ' a result_ = { <nl> } <nl> [ @ @ deriving show ] <nl> <nl> - type ast_result = Ast . program result_ <nl> - <nl> type aast_result = ( pos , unit , unit , unit ) Aast . program result_ <nl> <nl> module WithPositionedSyntax ( Syntax : Positioned_syntax_sig . PositionedSyntax_S ) = <nl> if there already is one , since that one will likely be better than this one . * ) <nl> | ( _ , Some TK . HexadecimalLiteral ) <nl> ( * We allow underscores while lexing the integer literals . This gets rid of them before <nl> * the literal is created . * ) <nl> - <nl> + <nl> | ( _ , Some TK . BinaryLiteral ) - > <nl> Int ( Str . global_replace underscore " " s ) <nl> | ( _ , Some TK . FloatingLiteral ) - > Float s <nl> if there already is one , since that one will likely be better than this one . * ) <nl> let rec aux env acc = function <nl> | [ ] <nl> ( * EOF happens only as the last token in the list . * ) <nl> - <nl> + <nl> | [ { syntax = EndOfFile _ ; _ } ] - > <nl> List . concat ( List . rev acc ) <nl> ( * HaltCompiler stops processing the list in PHP but can be disabled in Hack * ) <nl> if there already is one , since that one will likely be better than this one . * ) <nl> elaborate_halt_compiler_const ast <nl> | None - > ast <nl> <nl> - let lower env ~ source_text ~ script comments : ast_result = <nl> + let lower env ~ source_text ~ script : program = <nl> let ast = runP pScript script env in <nl> - let ast = elaborate_halt_compiler ast env source_text in <nl> - let content = <nl> - if env . codegen then <nl> - " " <nl> - else <nl> - SourceText . text source_text <nl> - in <nl> - { <nl> - fi_mode = env . fi_mode ; <nl> - is_hh_file = env . is_hh_file ; <nl> - ast ; <nl> - content ; <nl> - comments ; <nl> - file = env . file ; <nl> - lowpri_errors_ = ref ( List . rev ! ( env . lowpri_errors ) ) ; <nl> - } <nl> + elaborate_halt_compiler ast env source_text <nl> end <nl> <nl> ( * TODO : Make these not default to positioned_syntax * ) <nl> let parse_text ( env : env ) ( source_text : SourceText . t ) : <nl> ( mode , tree ) <nl> <nl> let scour_comments_and_add_fixmes ( env : env ) source_text script = <nl> - let sc = <nl> - FromPositionedSyntax . scour_comments <nl> - env . file <nl> - source_text <nl> - script <nl> - env <nl> - ~ collect_fixmes : env . keep_errors <nl> - ~ include_line_comments : env . include_line_comments <nl> - in <nl> - let ( ) = <nl> - if ( not env . rust_compare_mode ) & & env . keep_errors then ( <nl> - Fixme_provider . provide_disallowed_fixmes env . file sc . sc_misuses ; <nl> - if env . quick_mode then <nl> - Fixme_provider . provide_decl_hh_fixmes env . file sc . sc_fixmes <nl> - else <nl> - Fixme_provider . provide_hh_fixmes env . file sc . sc_fixmes <nl> - ) <nl> - in <nl> - sc <nl> + FromPositionedSyntax . scour_comments <nl> + env . file <nl> + source_text <nl> + script <nl> + env <nl> + ~ collect_fixmes : env . keep_errors <nl> + ~ include_line_comments : env . include_line_comments <nl> + <nl> + let process_scour_comments ( env : env ) ( sc : Scoured_comments . t ) = <nl> + if ( not env . rust_compare_mode ) & & env . keep_errors then ( <nl> + Fixme_provider . provide_disallowed_fixmes env . file sc . sc_misuses ; <nl> + if env . quick_mode then <nl> + Fixme_provider . provide_decl_hh_fixmes env . file sc . sc_fixmes <nl> + else <nl> + Fixme_provider . provide_hh_fixmes env . file sc . sc_fixmes <nl> + ) <nl> <nl> - let flush_parsing_errors env = <nl> - let lowpri_errors = List . rev ! ( env . lowpri_errors ) in <nl> - env . lowpri_errors : = [ ] ; <nl> + let process_lowpri_errors ( env : env ) ( lowpri_errors : ( Pos . t * string ) list ) = <nl> if should_surface_errors env then <nl> List . iter ~ f : Errors . parsing_error lowpri_errors <nl> else if env . codegen then <nl> let elaborate_top_level_defs env aast = <nl> aast <nl> <nl> external rust_from_text_ffi : <nl> - Rust_aast_parser_types . env - > SourceText . t - > Rust_aast_parser_types . result <nl> + Rust_aast_parser_types . env - > <nl> + SourceText . t - > <nl> + ( Rust_aast_parser_types . result , Rust_aast_parser_types . error ) result <nl> = " from_text " <nl> <nl> let rewrite_coroutines source_text script = <nl> let rewrite_coroutines source_text script = <nl> | > Full_fidelity_editable_positioned_syntax . text <nl> | > SourceText . make ( SourceText . file_path source_text ) <nl> <nl> - let lower_tree_ <nl> - check_syntax_error <nl> + let check_syntax_error ( env : env ) tree ast_opt : <nl> + Full_fidelity_syntax_error . t list = <nl> + let find_errors hhi_mode = <nl> + let error_env = <nl> + ParserErrors . make_env <nl> + tree <nl> + ~ hhvm_compat_mode : ParserErrors . HHVMCompat <nl> + ~ codegen : env . codegen <nl> + ~ parser_options : env . parser_options <nl> + ~ hhi_mode <nl> + in <nl> + ParserErrors . parse_errors error_env <nl> + @ <nl> + match ast_opt with <nl> + | Some ast - > Ast_check . check_program ast <nl> + | _ - > [ ] <nl> + in <nl> + if env . codegen then <nl> + find_errors false <nl> + else if env . keep_errors then ( <nl> + match PositionedSyntaxTree . errors tree with <nl> + | [ ] when env . quick_mode - > <nl> + Rust_pointer . free_leaked_pointer ~ warn : false ( ) ; <nl> + [ ] <nl> + | [ ] when ParserOptions . parser_errors_only env . parser_options - > [ ] <nl> + | [ ] - > <nl> + let is_hhi = <nl> + String_utils . string_ends_with Relative_path . ( suffix env . file ) " hhi " <nl> + in <nl> + find_errors is_hhi <nl> + | error : : _ - > <nl> + Rust_pointer . free_leaked_pointer ~ warn : false ( ) ; <nl> + [ error ] <nl> + ) else <nl> + [ ] <nl> + <nl> + let lower_tree <nl> ( env : env ) <nl> ( source_text : SourceText . t ) <nl> ( mode : FileInfo . mode option ) <nl> - ( tree : PositionedSyntaxTree . t ) : aast_result = <nl> + ( tree : PositionedSyntaxTree . t ) : Rust_aast_parser_types . result = <nl> let env = <nl> { <nl> env with <nl> let lower_tree_ <nl> else <nl> tree <nl> in <nl> - let ast_opt = ref None in <nl> - Utils . try_finally <nl> - ~ f : ( fun ( ) - > <nl> - let ret = <nl> - FromPositionedSyntax . lower <nl> - env <nl> - ~ source_text <nl> - ~ script : ( PositionedSyntaxTree . root tree_to_lower ) <nl> - comments <nl> - in <nl> - ast_opt : = Some ret . ast ; <nl> - let aast = Ast_to_aast . convert_program ( fun x - > x ) ( ) ( ) ( ) ret . ast in <nl> - { ret with ast = aast } ) <nl> - ~ finally : ( fun ( ) - > <nl> - check_syntax_error env source_text tree ! ast_opt ; <nl> - flush_parsing_errors env ) <nl> - <nl> - let lower_tree = <nl> - let check_syntax_error ( env : env ) source_text tree ast_opt = <nl> - let relative_pos = pos_of_error env . file source_text in <nl> - let find_errors error_env = <nl> - ParserErrors . parse_errors error_env <nl> - @ <nl> - match ast_opt with <nl> - | Some ast - > Ast_check . check_program ast <nl> - | _ - > [ ] <nl> - in <nl> - if env . codegen then <nl> - let error_env = <nl> - ParserErrors . make_env <nl> - tree <nl> - ~ hhvm_compat_mode : ParserErrors . HHVMCompat <nl> - ~ codegen : env . codegen <nl> - ~ parser_options : env . parser_options <nl> - in <nl> - let errors = find_errors error_env in <nl> - ( * Prioritize runtime errors * ) <nl> - let runtime_errors = <nl> - List . filter <nl> - errors <nl> - ~ f : SyntaxError . ( ( fun e - > error_type e = RuntimeError ) ) <nl> - in <nl> - match ( errors , runtime_errors ) with <nl> - | ( [ ] , [ ] ) - > ( ) <nl> - | ( _ , e : : _ ) <nl> - | ( e : : _ , _ ) - > <nl> - raise @ @ SyntaxError . ParserFatal ( e , relative_pos e ) <nl> - else if env . keep_errors then <nl> - let report_error e = <nl> - Errors . parsing_error ( relative_pos e , SyntaxError . message e ) <nl> - in <nl> - let is_hhi = <nl> - String_utils . string_ends_with Relative_path . ( suffix env . file ) " hhi " <nl> - in <nl> - match PositionedSyntaxTree . errors tree with <nl> - | [ ] when env . quick_mode - > <nl> - Rust_pointer . free_leaked_pointer ~ warn : false ( ) <nl> - | [ ] when ParserOptions . parser_errors_only env . parser_options - > ( ) <nl> - | [ ] - > <nl> - let error_env = <nl> - ParserErrors . make_env <nl> - tree <nl> - ~ hhvm_compat_mode : ParserErrors . HHVMCompat <nl> - ~ codegen : env . codegen <nl> - ~ hhi_mode : is_hhi <nl> - ~ parser_options : env . parser_options <nl> - in <nl> - let errors = find_errors error_env in <nl> - List . iter ~ f : report_error errors <nl> - | error : : _ - > <nl> - Rust_pointer . free_leaked_pointer ~ warn : false ( ) ; <nl> - report_error error <nl> + let ast_result = <nl> + try <nl> + Ok <nl> + ( FromPositionedSyntax . lower <nl> + env <nl> + ~ source_text <nl> + ~ script : ( PositionedSyntaxTree . root tree_to_lower ) ) <nl> + with <nl> + | Failure msg - > Error msg <nl> + | e - > Error ( Caml . Printexc . to_string e ) <nl> in <nl> - lower_tree_ check_syntax_error <nl> + let syntax_errors = <nl> + match ast_result with <nl> + | Ok ast - > check_syntax_error env tree ( Some ast ) <nl> + | Error _ - > check_syntax_error env tree None <nl> + in <nl> + let aast_result = <nl> + match ast_result with <nl> + | Ok ast - > Ok ( Ast_to_aast . convert_program ( fun x - > x ) ( ) ( ) ( ) ast ) <nl> + | Error e - > Error e <nl> + in <nl> + Rust_aast_parser_types . <nl> + { <nl> + file_mode = mode ; <nl> + scoured_comments = comments ; <nl> + aast = aast_result ; <nl> + lowpri_errors = List . rev ! ( env . lowpri_errors ) ; <nl> + errors = syntax_errors ; <nl> + } <nl> <nl> - let from_text_ocaml ( env : env ) ( source_text : SourceText . t ) : aast_result = <nl> + let process_syntax_errors <nl> + ( env : env ) <nl> + ( source_text : SourceText . t ) <nl> + ( errors : Full_fidelity_syntax_error . t list ) = <nl> + let relative_pos = pos_of_error env . file source_text in <nl> + if env . codegen then <nl> + let runtime_errors = <nl> + List . filter <nl> + errors <nl> + ~ f : SyntaxError . ( ( fun e - > error_type e = RuntimeError ) ) <nl> + in <nl> + match ( errors , runtime_errors ) with <nl> + | ( [ ] , [ ] ) - > ( ) <nl> + | ( _ , e : : _ ) <nl> + | ( e : : _ , _ ) - > <nl> + raise @ @ SyntaxError . ParserFatal ( e , relative_pos e ) <nl> + else <nl> + let report_error e = <nl> + Errors . parsing_error ( relative_pos e , SyntaxError . message e ) <nl> + in <nl> + List . iter ~ f : report_error errors <nl> + <nl> + let from_text_ocaml ( env : env ) ( source_text : SourceText . t ) : <nl> + Rust_aast_parser_types . result = <nl> let ( mode , tree ) = parse_text env source_text in <nl> lower_tree env source_text mode tree <nl> <nl> - let from_text_rust ( env : env ) ( source_text : SourceText . t ) : aast_result = <nl> + let from_text_rust ( env : env ) ( source_text : SourceText . t ) : <nl> + Rust_aast_parser_types . result = <nl> let rust_env = <nl> Rust_aast_parser_types . <nl> { <nl> let from_text_rust ( env : env ) ( source_text : SourceText . t ) : aast_result = <nl> hacksperimental = env . hacksperimental ; <nl> } <nl> in <nl> - let result = rust_from_text_ffi rust_env source_text in <nl> - Rust_aast_parser_types . <nl> - { <nl> - fi_mode = result . file_mode ; <nl> - is_hh_file = result . file_mode < > FileInfo . Mphp ; <nl> - ast = result . aast ; <nl> - content = <nl> - ( if env . codegen then <nl> - " " <nl> - else <nl> - SourceText . text source_text ) ; <nl> - comments = result . scoured_comments ; <nl> - file = env . file ; <nl> - lowpri_errors_ = ref result . lowpri_errors ; <nl> - } <nl> + match rust_from_text_ffi rust_env source_text with <nl> + | Ok r - > r <nl> + | Error ( Rust_aast_parser_types . ParserFatal ( e , p ) ) - > <nl> + raise @ @ SyntaxError . ParserFatal ( e , p ) <nl> + | Error ( Rust_aast_parser_types . Other msg ) - > failwith msg <nl> + <nl> + let process_lowerer_result <nl> + ( env : env ) <nl> + ( source_text : SourceText . t ) <nl> + ( r : Rust_aast_parser_types . result ) : aast_result = <nl> + Rust_aast_parser_types . ( <nl> + process_scour_comments env r . scoured_comments ; <nl> + process_syntax_errors env source_text r . errors ; <nl> + process_lowpri_errors env r . lowpri_errors ) ; <nl> + match r . Rust_aast_parser_types . aast with <nl> + | Error msg - > failwith msg <nl> + | Ok aast - > <nl> + Rust_aast_parser_types . <nl> + { <nl> + fi_mode = r . file_mode ; <nl> + is_hh_file = r . file_mode < > FileInfo . Mphp ; <nl> + ast = elaborate_top_level_defs env aast ; <nl> + content = <nl> + ( if env . codegen then <nl> + " " <nl> + else <nl> + SourceText . text source_text ) ; <nl> + comments = r . scoured_comments ; <nl> + file = env . file ; <nl> + lowpri_errors_ = ref r . lowpri_errors ; <nl> + } <nl> <nl> let from_text ( env : env ) ( source_text : SourceText . t ) : aast_result = <nl> let result = <nl> let from_text ( env : env ) ( source_text : SourceText . t ) : aast_result = <nl> else <nl> from_text_ocaml env source_text <nl> in <nl> - { result with ast = elaborate_top_level_defs env result . ast } <nl> + process_lowerer_result env source_text result <nl> <nl> let from_file ( env : env ) : aast_result = <nl> let source_text = SourceText . from_file env . file in <nl> let from_file_with_legacy env = legacy ( from_file env ) <nl> let from_text_with_legacy_and_cst ( env : env ) ( source_text : SourceText . t ) : <nl> PositionedSyntaxTree . t * Parser_return . t = <nl> let ( mode , tree ) = parse_text env source_text in <nl> - let ast_result = lower_tree env source_text mode tree in <nl> - let aast_result = <nl> - { ast_result with ast = ast_result . ast | > elaborate_top_level_defs env } <nl> - in <nl> + let aast_result = lower_tree env source_text mode tree in <nl> + let aast_result = process_lowerer_result env source_text aast_result in <nl> ( tree , legacy aast_result ) <nl> <nl> ( * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ( <nl> mmm a / hphp / hack / src / parser / rust_aast_parser_types . ml <nl> ppp b / hphp / hack / src / parser / rust_aast_parser_types . ml <nl> type env = { <nl> type result = { <nl> file_mode : FileInfo . mode ; <nl> scoured_comments : Scoured_comments . t ; <nl> - aast : ( Pos . t , unit , unit , unit ) Aast . program ; <nl> + aast : ( ( Pos . t , unit , unit , unit ) Aast . program , string ) Pervasives . result ; <nl> lowpri_errors : ( Pos . t * string ) list ; <nl> errors : Full_fidelity_syntax_error . t list ; <nl> } <nl> + <nl> + type error = <nl> + | ParserFatal of Full_fidelity_syntax_error . t * Pos . t <nl> + | Other of string <nl> mmm a / hphp / hack / src / parser / rust_aast_parser_types . rs <nl> ppp b / hphp / hack / src / parser / rust_aast_parser_types . rs <nl> pub struct Env { <nl> pub struct Result { <nl> pub file_mode : file_info : : Mode , <nl> pub scoured_comments : scoured_comments : : ScouredComments , <nl> - pub aast : aast : : Program < pos : : Pos , ( ) , ( ) , ( ) > , <nl> + pub aast : std : : result : : Result < aast : : Program < pos : : Pos , ( ) , ( ) , ( ) > , String > , <nl> pub lowpri_errors : Vec < ( pos : : Pos , String ) > , <nl> pub errors : Vec < SyntaxError > , <nl> } <nl>
separate " pure " / " impure " of Ocaml lowerer
facebook/hhvm
18873220203b086e89116035bff13314d813255c
2019-11-06T22:55:13Z
mmm a / include / swift / AST / Builtins . def <nl> ppp b / include / swift / AST / Builtins . def <nl> BUILTIN_MISC_OPERATION ( Strideof , " strideof " , " n " , Special ) <nl> / / / IsPOD has type T . Type - > Bool <nl> BUILTIN_MISC_OPERATION ( IsPOD , " ispod " , " n " , Special ) <nl> <nl> + / / / IsSameMetatype has type ( Any . Type , Any . Type ) - > Bool <nl> + BUILTIN_MISC_OPERATION ( IsSameMetatype , " is_same_metatype " , " n " , Special ) <nl> + <nl> / / / Alignof has type T . Type - > Int <nl> BUILTIN_MISC_OPERATION ( Alignof , " alignof " , " n " , Special ) <nl> <nl> mmm a / lib / AST / Builtins . cpp <nl> ppp b / lib / AST / Builtins . cpp <nl> static ValueDecl * getIsOptionalOperation ( ASTContext & Context , Identifier Id ) { <nl> return builder . build ( Id ) ; <nl> } <nl> <nl> + static ValueDecl * getIsSameMetatypeOperation ( ASTContext & Context , Identifier Id ) { <nl> + CanType anyMetatype = CanExistentialMetatypeType : : get ( Context . TheAnyType ) ; <nl> + auto ResultTy = BuiltinIntegerType : : get ( 1 , Context ) ; <nl> + return getBuiltinFunction ( Id , { anyMetatype , anyMetatype } , ResultTy ) ; <nl> + } <nl> + <nl> static ValueDecl * getAllocOperation ( ASTContext & Context , Identifier Id ) { <nl> Type PtrSizeTy = BuiltinIntegerType : : getWordType ( Context ) ; <nl> Type ResultTy = Context . TheRawPointerType ; <nl> ValueDecl * swift : : getBuiltinValueDecl ( ASTContext & Context , Identifier Id ) { <nl> case BuiltinValueKind : : IsOptionalType : <nl> return getIsOptionalOperation ( Context , Id ) ; <nl> <nl> + case BuiltinValueKind : : IsSameMetatype : <nl> + return getIsSameMetatypeOperation ( Context , Id ) ; <nl> + <nl> case BuiltinValueKind : : AllocRaw : <nl> return getAllocOperation ( Context , Id ) ; <nl> <nl> mmm a / lib / IRGen / GenBuiltin . cpp <nl> ppp b / lib / IRGen / GenBuiltin . cpp <nl> <nl> <nl> # include " Explosion . h " <nl> # include " GenCall . h " <nl> + # include " GenCast . h " <nl> # include " IRGenFunction . h " <nl> # include " IRGenModule . h " <nl> # include " LoadableTypeInfo . h " <nl> if ( Builtin . ID = = BuiltinValueKind : : id ) { \ <nl> return ; <nl> } <nl> <nl> + if ( Builtin . ID = = BuiltinValueKind : : IsSameMetatype ) { <nl> + auto metatypeLHS = args . claimNext ( ) ; <nl> + auto metatypeRHS = args . claimNext ( ) ; <nl> + ( void ) args . claimAll ( ) ; <nl> + llvm : : Value * metatypeLHSCasted = <nl> + IGF . Builder . CreateBitCast ( metatypeLHS , IGF . IGM . Int8PtrTy ) ; <nl> + llvm : : Value * metatypeRHSCasted = <nl> + IGF . Builder . CreateBitCast ( metatypeRHS , IGF . IGM . Int8PtrTy ) ; <nl> + <nl> + out . add ( IGF . Builder . CreateICmpEQ ( metatypeLHSCasted , metatypeRHSCasted ) ) ; <nl> + return ; <nl> + } <nl> <nl> llvm_unreachable ( " IRGen unimplemented for this builtin ! " ) ; <nl> } <nl> mmm a / lib / SIL / SILOwnershipVerifier . cpp <nl> ppp b / lib / SIL / SILOwnershipVerifier . cpp <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , IntToFPWithOverflow ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , IntToPtr ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , IsOptionalType ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , IsPOD ) <nl> + CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , IsSameMetatype ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , LShr ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , Mul ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , false , OnFastPath ) <nl> mmm a / lib / SIL / ValueOwnershipKindClassifier . cpp <nl> ppp b / lib / SIL / ValueOwnershipKindClassifier . cpp <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , IsOptionalType ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , Sizeof ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , Strideof ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , IsPOD ) <nl> + CONSTANT_OWNERSHIP_BUILTIN ( Trivial , IsSameMetatype ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , Alignof ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , AllocRaw ) <nl> CONSTANT_OWNERSHIP_BUILTIN ( Trivial , AssertConf ) <nl> mmm a / stdlib / public / core / Builtin . swift <nl> ppp b / stdlib / public / core / Builtin . swift <nl> func ! = ( lhs : Builtin . RawPointer , rhs : Builtin . RawPointer ) - > Bool { <nl> / / / ` nil ` or they both represent the same type . <nl> @ _inlineable <nl> public func = = ( t0 : Any . Type ? , t1 : Any . Type ? ) - > Bool { <nl> - return unsafeBitCast ( t0 , to : Int . self ) = = unsafeBitCast ( t1 , to : Int . self ) <nl> + switch ( t0 , t1 ) { <nl> + case ( . none , . none ) : return true <nl> + case let ( . some ( ty0 ) , . some ( ty1 ) ) : <nl> + return Bool ( Builtin . is_same_metatype ( ty0 , ty1 ) ) <nl> + default : return false <nl> + } <nl> } <nl> <nl> / / / Returns ` false ` iff ` t0 ` is identical to ` t1 ` ; i . e . if they are both <nl> mmm a / test / IRGen / builtins . swift <nl> ppp b / test / IRGen / builtins . swift <nl> func ispod_test ( ) { <nl> var f = Builtin . ispod ( Builtin . NativeObject ) <nl> } <nl> <nl> + / / CHECK - LABEL : define { { . * } } @ { { . * } } is_same_metatype <nl> + func is_same_metatype_test ( _ t1 : Any . Type , _ t2 : Any . Type ) { <nl> + / / CHECK : [ [ MT1_AS_PTR : % . * ] ] = bitcast % swift . type * % 0 to i8 * <nl> + / / CHECK : [ [ MT2_AS_PTR : % . * ] ] = bitcast % swift . type * % 1 to i8 * <nl> + / / CHECK : icmp eq i8 * [ [ MT1_AS_PTR ] ] , [ [ MT2_AS_PTR ] ] <nl> + var t = Builtin . is_same_metatype ( t1 , t2 ) <nl> + } <nl> + <nl> / / CHECK - LABEL : define { { . * } } @ { { . * } } generic_unsafeGuaranteed_test <nl> / / CHECK : call void @ { { . * } } swift_ { { . * } } etain ( { { . * } } * % 0 ) <nl> / / CHECK : call void @ { { . * } } swift_ { { . * } } elease ( { { . * } } * % 0 ) <nl> new file mode 100644 <nl> index 000000000000 . . 5094481d2379 <nl> mmm / dev / null <nl> ppp b / test / SILOptimizer / compare_types . swift <nl> <nl> + / / RUN : % target - swift - frontend - O - emit - sil % s | % FileCheck % s <nl> + <nl> + / / Check type equality related optimizations . <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areEqualTypes1 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areEqualTypes1 { { . * } } ' <nl> + public func areEqualTypes1 < T1 , T2 > ( _ t1 : T1 . Type , _ t2 : T2 . Type ) - > Bool { <nl> + return t1 = = t2 <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areEqualTypes2 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areEqualTypes2 { { . * } } ' <nl> + public func areEqualTypes2 < T1 , T2 > ( _ t1 : T1 . Type , _ t2o : T2 . Type ? ) - > Bool { <nl> + return t1 = = t2o <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areEqualTypes3 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areEqualTypes3 { { . * } } ' <nl> + public func areEqualTypes3 < T1 , T2 > ( _ t1o : T1 . Type ? , _ t2 : T2 . Type ) - > Bool { <nl> + return t1o = = t2 <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areEqualTypes4 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areEqualTypes4 { { . * } } ' <nl> + public func areEqualTypes4 < T1 , T2 > ( _ t1o : T1 . Type ? , _ t2o : T2 . Type ? ) - > Bool { <nl> + return t1o = = t2o <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areEqualTypes5 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK - NOT : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areEqualTypes5 { { . * } } ' <nl> + public func areEqualTypes5 < T1 > ( _ t1o : T1 . Type ? ) - > Bool { <nl> + return t1o = = nil <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areEqualTypes6 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK - NOT : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areEqualTypes6 { { . * } } ' <nl> + public func areEqualTypes6 < T1 > ( _ t1o : T1 . Type ? ) - > Bool { <nl> + return nil = = t1o <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areNotEqualTypes1 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areNotEqualTypes1 { { . * } } ' <nl> + public func areNotEqualTypes1 < T1 , T2 > ( _ t1 : T1 . Type , _ t2 : T2 . Type ) - > Bool { <nl> + return t1 ! = t2 <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areNotEqualTypes2 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areNotEqualTypes2 { { . * } } ' <nl> + public func areNotEqualTypes2 < T1 , T2 > ( _ t1 : T1 . Type , _ t2o : T2 . Type ? ) - > Bool { <nl> + return t1 ! = t2o <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areNotEqualTypes3 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areNotEqualTypes3 { { . * } } ' <nl> + public func areNotEqualTypes3 < T1 , T2 > ( _ t1o : T1 . Type ? , _ t2 : T2 . Type ) - > Bool { <nl> + return t1o ! = t2 <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areNotEqualTypes4 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areNotEqualTypes4 { { . * } } ' <nl> + public func areNotEqualTypes4 < T1 , T2 > ( _ t1o : T1 . Type ? , _ t2o : T2 . Type ? ) - > Bool { <nl> + return t1o ! = t2o <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areNotEqualTypes5 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK - NOT : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areNotEqualTypes5 { { . * } } ' <nl> + public func areNotEqualTypes5 < T1 > ( _ t1o : T1 . Type ? ) - > Bool { <nl> + return t1o ! = nil <nl> + } <nl> + <nl> + / / CHECK - LABEL : sil @ { { . * } } areNotEqualTypes6 { { . * } } : $ @ convention ( thin ) <nl> + / / CHECK - NOT : builtin " is_same_metatype " <nl> + / / CHECK : / / end sil function ' { { . * } } areNotEqualTypes6 { { . * } } ' <nl> + public func areNotEqualTypes6 < T1 > ( _ t1o : T1 . Type ? ) - > Bool { <nl> + return nil ! = t1o <nl> + } <nl>
Merge pull request from swiftix / is - same - metatype - builtin
apple/swift
34ad5966937ec62a5755dc70e84e8d783b6eeac7
2017-05-16T16:13:03Z
mmm a / test / jit / test_custom_operators . py <nl> ppp b / test / jit / test_custom_operators . py <nl> <nl> import os <nl> import sys <nl> + import unittest <nl> <nl> import torch <nl> <nl> def test_calling_traced_custom_op ( self ) : <nl> func = torch . jit . trace ( torch . ops . aten . relu , [ input ] ) <nl> self . assertEqual ( func ( input ) , input . relu ( ) ) <nl> <nl> + @ unittest . skip ( " Need to figure out default dtype differences between fbcode and oss " ) <nl> def test_script_graph_for_custom_ops_matches_traced_graph ( self ) : <nl> input = torch . ones ( 5 , 5 ) <nl> trace = torch . jit . trace ( torch . ops . aten . relu , [ input ] ) <nl>
skip broken custom op test ( )
pytorch/pytorch
8ed84a91238d46eb68b77fbf47edefcb08a1796c
2019-11-06T22:33:01Z
mmm a / src / init . cpp <nl> ppp b / src / init . cpp <nl> std : : string HelpMessage ( ) <nl> " - connect = < ip > " + _ ( " Connect only to the specified node " ) + " \ n " + <nl> " - seednode = < ip > " + _ ( " Connect to a node to retrieve peer addresses , and disconnect " ) + " \ n " + <nl> " - externalip = < ip > " + _ ( " Specify your own public address " ) + " \ n " + <nl> - " - blocknet = < net > " + _ ( " Do not connect to addresses in network < net > ( IPv4 or IPv6 ) " ) + " \ n " + <nl> + " - onlynet = < net > " + _ ( " Only connect to nodes in network < net > ( IPv4 or IPv6 ) " ) + " \ n " + <nl> " - discover " + _ ( " Try to discover public IP address ( default : 1 ) " ) + " \ n " + <nl> " - irc " + _ ( " Find peers using internet relay chat ( default : 0 ) " ) + " \ n " + <nl> " - listen " + _ ( " Accept connections from outside ( default : 1 ) " ) + " \ n " + <nl> bool AppInit2 ( ) <nl> SoftSetBoolArg ( " - discover " , false ) ; <nl> } <nl> <nl> - if ( mapArgs . count ( " - blocknet " ) ) { <nl> - BOOST_FOREACH ( std : : string snet , mapMultiArgs [ " - blocknet " ] ) { <nl> + if ( mapArgs . count ( " - onlynet " ) ) { <nl> + std : : set < enum Network > nets ; <nl> + BOOST_FOREACH ( std : : string snet , mapMultiArgs [ " - onlynet " ] ) { <nl> enum Network net = ParseNetwork ( snet ) ; <nl> if ( net = = NET_UNROUTABLE ) <nl> - return InitError ( strprintf ( _ ( " Unknown network specified in - blocknet : ' % s ' " ) , snet . c_str ( ) ) ) ; <nl> - SetLimited ( net ) ; <nl> + return InitError ( strprintf ( _ ( " Unknown network specified in - onlynet : ' % s ' " ) , snet . c_str ( ) ) ) ; <nl> + nets . insert ( net ) ; <nl> + } <nl> + for ( int n = 0 ; n < NET_MAX ; n + + ) { <nl> + enum Network net = ( enum Network ) n ; <nl> + if ( ! nets . count ( net ) ) <nl> + SetLimited ( net ) ; <nl> } <nl> } <nl> <nl> bool AppInit2 ( ) <nl> std : : string strError ; <nl> if ( mapArgs . count ( " - bind " ) ) { <nl> BOOST_FOREACH ( std : : string strBind , mapMultiArgs [ " - bind " ] ) { <nl> - CService addrBind ( strBind , GetListenPort ( ) , false ) ; <nl> - if ( ! addrBind . IsValid ( ) ) <nl> + CService addrBind ; <nl> + if ( ! Lookup ( strBind . c_str ( ) , addrBind , GetListenPort ( ) , false ) ) <nl> return InitError ( strprintf ( _ ( " Cannot resolve - bind address : ' % s ' " ) , strBind . c_str ( ) ) ) ; <nl> fBound | = Bind ( addrBind ) ; <nl> } <nl> } else { <nl> struct in_addr inaddr_any ; <nl> inaddr_any . s_addr = INADDR_ANY ; <nl> - fBound | = Bind ( CService ( inaddr_any , GetListenPort ( ) ) ) ; <nl> + if ( ! IsLimited ( NET_IPV4 ) ) <nl> + fBound | = Bind ( CService ( inaddr_any , GetListenPort ( ) ) ) ; <nl> # ifdef USE_IPV6 <nl> - fBound | = Bind ( CService ( in6addr_any , GetListenPort ( ) ) ) ; <nl> + if ( ! IsLimited ( NET_IPV6 ) ) <nl> + fBound | = Bind ( CService ( in6addr_any , GetListenPort ( ) ) ) ; <nl> # endif <nl> } <nl> if ( ! fBound ) <nl> - return false ; <nl> + return InitError ( _ ( " Not listening on any port " ) ) ; <nl> } <nl> <nl> if ( mapArgs . count ( " - externalip " ) ) <nl> mmm a / src / net . cpp <nl> ppp b / src / net . cpp <nl> bool AddLocal ( const CNetAddr & addr , int nScore ) <nl> / * * Make a particular network entirely off - limits ( no automatic connects to it ) * / <nl> void SetLimited ( enum Network net , bool fLimited ) <nl> { <nl> + if ( net = = NET_UNROUTABLE ) <nl> + return ; <nl> LOCK ( cs_mapLocalHost ) ; <nl> vfLimited [ net ] = fLimited ; <nl> } <nl> <nl> - bool IsLimited ( const CNetAddr & addr ) <nl> + bool IsLimited ( enum Network net ) <nl> { <nl> LOCK ( cs_mapLocalHost ) ; <nl> - return vfLimited [ addr . GetNetwork ( ) ] ; <nl> + return vfLimited [ net ] ; <nl> + } <nl> + <nl> + bool IsLimited ( const CNetAddr & addr ) <nl> + { <nl> + return IsLimited ( addr . GetNetwork ( ) ) ; <nl> } <nl> <nl> / * * vote for a local address * / <nl> mmm a / src / net . h <nl> ppp b / src / net . h <nl> enum <nl> } ; <nl> <nl> void SetLimited ( enum Network net , bool fLimited = true ) ; <nl> + bool IsLimited ( enum Network net ) ; <nl> bool IsLimited ( const CNetAddr & addr ) ; <nl> bool AddLocal ( const CService & addr , int nScore = LOCAL_NONE ) ; <nl> bool AddLocal ( const CNetAddr & addr , int nScore = LOCAL_NONE ) ; <nl>
Merge pull request from sipa / ipv6fixes
bitcoin/bitcoin
a6f18e4686d764a62905b8d8cd316dcbd40bb17d
2012-05-14T16:22:03Z
mmm a / validation - test / Sema / type_checker_perf / fast / rdar21374729 . swift <nl> ppp b / validation - test / Sema / type_checker_perf / fast / rdar21374729 . swift <nl> protocol P { <nl> } <nl> <nl> class R < T > : P where T : P , T . A = = T . Type { <nl> - / / expected - note @ - 1 { { ' T ' declared as parameter to type ' R ' } } <nl> typealias A = T . Type <nl> static func fn ( args : T . Type ) { } <nl> } <nl> <nl> R . fn ( args : R . self ) <nl> - / / expected - error @ - 1 { { generic parameter ' T ' could not be inferred } } <nl> - / / expected - note @ - 2 { { explicitly specify the generic arguments to fix this issue } } <nl> + / / expected - error @ - 1 { { type of expression is ambiguous without more context } } <nl>
Update diagnostic after CS change
apple/swift
67592dbc1c422998287f3ebf0ac474ecf79896b8
2019-11-06T16:50:09Z
mmm a / spec / api - clipboard - spec . js <nl> ppp b / spec / api - clipboard - spec . js <nl> describe ( ' clipboard module ' , function ( ) { <nl> clipboard . writeBookmark ( ' a title ' , ' http : / / electron . atom . io ' ) <nl> assert . deepEqual ( clipboard . readBookmark ( ) , { <nl> title : ' a title ' , <nl> - url : ' https : / / electron . atom . io ' <nl> + url : ' http : / / electron . atom . io ' <nl> + } ) <nl> + <nl> + clipboard . writeText ( ' no bookmark ' ) <nl> + assert . deepEqual ( clipboard . readBookmark ( ) , { <nl> + title : ' ' , <nl> + url : ' ' <nl> } ) <nl> } ) <nl> } ) <nl>
Add assertions for no available bookmark
electron/electron
5fbba2d27b98df0fd34deea563e85729383d3b43
2016-06-24T22:32:52Z
mmm a / Marlin / src / HAL / HAL_DUE / ServoTimers . h <nl> ppp b / Marlin / src / HAL / HAL_DUE / ServoTimers . h <nl> <nl> # define HANDLER_FOR_TIMER5 TC0_Handler <nl> # endif <nl> <nl> - typedef enum { <nl> + typedef enum : unsigned char { <nl> # ifdef _useTimer1 <nl> _timer1 , <nl> # endif <nl> typedef enum { <nl> # ifdef _useTimer5 <nl> _timer5 , <nl> # endif <nl> - _Nbr_16timers } timer16_Sequence_t ; <nl> + _Nbr_16timers <nl> + } timer16_Sequence_t ; <nl>
Tweak timer16_Sequence_t
MarlinFirmware/Marlin
07021c85c84c0d54f5c35d0d1b58ad7d54f292b8
2019-05-30T21:09:37Z
mmm a / src / rdb_protocol / configured_limits . cc <nl> ppp b / src / rdb_protocol / configured_limits . cc <nl> <nl> <nl> namespace ql { <nl> configured_limits_t <nl> - from_optargs ( const std : : map < std : : string , wire_func_t > & arguments ) <nl> + from_optargs ( rdb_context_t * ctx , signal_t * interruptor , <nl> + const std : : map < std : : string , wire_func_t > & arguments ) <nl> { <nl> auto p = arguments . find ( " arrayLimit " ) ; <nl> if ( p ! = arguments . end ( ) ) { <nl> from_optargs ( const std : : map < std : : string , wire_func_t > & arguments ) <nl> / / before there are any extant environments at all . Only <nl> / / because we use an empty argument list do we prevent an <nl> / / infinite loop . <nl> - cond_t cond ; <nl> - rdb_context_t context ; <nl> - env_t env ( & context , & cond , std : : map < std : : string , wire_func_t > ( ) , <nl> + env_t env ( ctx , interruptor , std : : map < std : : string , wire_func_t > ( ) , <nl> profile_bool_t : : DONT_PROFILE ) ; <nl> return configured_limits_t ( p - > second . compile_wire_func ( ) - > call ( & env ) - > as_int ( ) ) ; <nl> } else { <nl> from_optargs ( const std : : map < std : : string , wire_func_t > & arguments ) <nl> } <nl> <nl> RDB_IMPL_ME_SERIALIZABLE_1 ( configured_limits_t , array_size_limit_ ) ; <nl> + INSTANTIATE_SERIALIZABLE_SELF_FOR_CLUSTER ( configured_limits_t ) ; <nl> <nl> const configured_limits_t configured_limits_t : : unlimited ( std : : numeric_limits < size_t > : : max ( ) ) ; <nl> <nl> mmm a / src / rdb_protocol / configured_limits . hpp <nl> ppp b / src / rdb_protocol / configured_limits . hpp <nl> <nl> # include < string > <nl> # include " rpc / serialize_macros . hpp " <nl> <nl> + class rdb_context_t ; <nl> + class signal_t ; <nl> + <nl> namespace ql { <nl> <nl> class wire_func_t ; <nl> class configured_limits_t { <nl> <nl> RDB_SERIALIZE_OUTSIDE ( configured_limits_t ) ; <nl> <nl> - configured_limits_t from_optargs ( const std : : map < std : : string , wire_func_t > & optargs ) ; <nl> + configured_limits_t from_optargs ( rdb_context_t * ctx , signal_t * interruptor , <nl> + const std : : map < std : : string , wire_func_t > & optargs ) ; <nl> <nl> } / / namespace ql <nl> <nl> mmm a / src / rdb_protocol / env . cc <nl> ppp b / src / rdb_protocol / env . cc <nl> env_t : : env_t ( rdb_context_t * ctx , signal_t * _interruptor , <nl> profile_bool_t profile ) <nl> : evals_since_yield ( 0 ) , <nl> global_optargs ( std : : move ( optargs ) ) , <nl> - limits ( from_optargs ( optargs ) ) , <nl> + limits ( from_optargs ( ctx , _interruptor , optargs ) ) , <nl> interruptor ( _interruptor ) , <nl> trace ( profile = = profile_bool_t : : PROFILE <nl> ? make_scoped < profile : : trace_t > ( ) <nl>
Per @ srh , use real values here .
rethinkdb/rethinkdb
15f05c6f3d8ee1d206e24d4fa4e7772262aa8ebb
2014-07-25T03:42:02Z
mmm a / test / cpp / jit / torch_python_test . cpp <nl> ppp b / test / cpp / jit / torch_python_test . cpp <nl> <nl> # include < c10 / util / Exception . h > <nl> # include < test / cpp / jit / tests . h > <nl> + # include < test / cpp / tensorexpr / tests . h > <nl> <nl> namespace torch { <nl> namespace jit { <nl> JIT_TEST_API void runJITCPPTests ( bool runCuda ) { <nl> testTorchSaveError ( ) ; <nl> } <nl> # undef JIT_TEST <nl> + <nl> + # define JIT_TEST ( name ) test # # name ( ) ; <nl> + JIT_TEST_API void runTENSOREXPRCPPTests ( bool runCuda ) { <nl> + TH_FORALL_TENSOREXPR_TESTS ( JIT_TEST ) <nl> + if ( runCuda ) { <nl> + # ifdef USE_CUDA <nl> + TH_FORALL_TENSOREXPR_TESTS_CUDA ( JIT_TEST ) <nl> + # endif <nl> + } <nl> + } <nl> + # undef JIT_TEST <nl> + <nl> } / / namespace jit <nl> } / / namespace torch <nl> mmm a / test / cpp / tensorexpr / CMakeLists . txt <nl> ppp b / test / cpp / tensorexpr / CMakeLists . txt <nl> set ( TENSOREXPR_TEST_ROOT $ { TORCH_ROOT } / test / cpp / tensorexpr ) <nl> file ( GLOB TENSOREXPR_TEST_SRCS $ { TENSOREXPR_TEST_ROOT } / test_ * . cpp ) <nl> set ( TENSOREXPR_TEST_SRCS $ { TENSOREXPR_TEST_SRCS } PARENT_SCOPE ) <nl> <nl> + # this is used for running cpp tests from python as part of test_jit . TestJit . test_tensorexpr_cpp <nl> + set ( TENSOREXPR_TEST_SRCS_WITH_PADDED $ { TENSOREXPR_TEST_SRCS } $ { TENSOREXPR_TEST_ROOT } / padded_buffer . cpp ) <nl> + if ( NOT USE_CUDA ) <nl> + list ( REMOVE_ITEM TENSOREXPR_TEST_SRCS_WITH_PADDED $ { TENSOREXPR_TEST_ROOT } / test_cuda . cpp ) <nl> + endif ( ) <nl> + if ( NOT USE_LLVM ) <nl> + list ( REMOVE_ITEM TENSOREXPR_TEST_SRCS_WITH_PADDED $ { TENSOREXPR_TEST_ROOT } / test_llvm . cpp ) <nl> + endif ( ) <nl> + set ( TENSOREXPR_TEST_SRCS_WITH_PADDED $ { TENSOREXPR_TEST_SRCS_WITH_PADDED } PARENT_SCOPE ) <nl> + <nl> add_executable ( test_tensorexpr <nl> $ { TORCH_ROOT } / test / cpp / common / main . cpp <nl> $ { TENSOREXPR_TEST_ROOT } / gtest . cpp <nl> mmm a / test / cpp / tensorexpr / gtest . cpp <nl> ppp b / test / cpp / tensorexpr / gtest . cpp <nl> namespace jit { <nl> TEST ( TensorExprTest , name ) { \ <nl> test # # name ( ) ; \ <nl> } <nl> - TH_FORALL_TESTS ( TENSOREXPR_GTEST ) <nl> + TH_FORALL_TENSOREXPR_TESTS ( TENSOREXPR_GTEST ) <nl> # undef TENSOREXPR_GTEST <nl> <nl> # ifdef TORCH_ENABLE_LLVM <nl> TH_FORALL_TESTS ( TENSOREXPR_GTEST ) <nl> TEST ( TensorExprTest , name # # _LLVM ) { \ <nl> test # # name ( ) ; \ <nl> } <nl> - TH_FORALL_TESTS_LLVM ( TENSOREXPR_GTEST_LLVM ) <nl> + TH_FORALL_TENSOREXPR_TESTS_LLVM ( TENSOREXPR_GTEST_LLVM ) <nl> # undef TENSOREXPR_GTEST_LLVM <nl> # endif <nl> <nl> TH_FORALL_TESTS_LLVM ( TENSOREXPR_GTEST_LLVM ) <nl> TEST ( TensorExprTest , name # # _CUDA ) { \ <nl> test # # name ( ) ; \ <nl> } <nl> - TH_FORALL_TESTS_CUDA ( TENSOREXPR_GTEST_CUDA ) <nl> + TH_FORALL_TENSOREXPR_TESTS_CUDA ( TENSOREXPR_GTEST_CUDA ) <nl> # undef TENSOREXPR_GTEST_CUDA <nl> # endif <nl> <nl> new file mode 100644 <nl> index 000000000000 . . c80c39478b00 <nl> mmm / dev / null <nl> ppp b / test / cpp / tensorexpr / gtest_assert_float_eq . h <nl> <nl> + # pragma once <nl> + <nl> + # include < cmath > <nl> + / / Copyright 2005 , Google Inc . <nl> + / / All rights reserved . <nl> + / / <nl> + / / Redistribution and use in source and binary forms , with or without <nl> + / / modification , are permitted provided that the following conditions are <nl> + / / met : <nl> + / / <nl> + / / * Redistributions of source code must retain the above copyright <nl> + / / notice , this list of conditions and the following disclaimer . <nl> + / / * Redistributions in binary form must reproduce the above <nl> + / / copyright notice , this list of conditions and the following disclaimer <nl> + / / in the documentation and / or other materials provided with the <nl> + / / distribution . <nl> + / / * Neither the name of Google Inc . nor the names of its <nl> + / / contributors may be used to endorse or promote products derived from <nl> + / / this software without specific prior written permission . <nl> + / / <nl> + / / THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS <nl> + / / " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT <nl> + / / LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR <nl> + / / A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT <nl> + / / OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL , <nl> + / / SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT <nl> + / / LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE , <nl> + / / DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY <nl> + / / THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT <nl> + / / ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE <nl> + / / OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE . <nl> + / / <nl> + / / The Google C + + Testing and Mocking Framework ( Google Test ) <nl> + / / <nl> + / / This header file declares functions and macros used internally by <nl> + / / Google Test . They are subject to change without notice . <nl> + <nl> + using Bits = uint32_t ; <nl> + <nl> + / / this avoids the " dereferencing type - punned pointer <nl> + / / will break strict - aliasing rules " error <nl> + union Float { <nl> + float float_ ; <nl> + Bits bits_ ; <nl> + } ; <nl> + <nl> + / / # of bits in a number . <nl> + static const size_t kBitCount = 8 * sizeof ( Bits ) ; <nl> + / / The mask for the sign bit . <nl> + static const Bits kSignBitMask = static_cast < Bits > ( 1 ) < < ( kBitCount - 1 ) ; <nl> + <nl> + / / GOOGLETEST_CM0001 DO NOT DELETE <nl> + <nl> + / / Converts an integer from the sign - and - magnitude representation to <nl> + / / the biased representation . More precisely , let N be 2 to the <nl> + / / power of ( kBitCount - 1 ) , an integer x is represented by the <nl> + / / unsigned number x + N . <nl> + / / <nl> + / / For instance , <nl> + / / <nl> + / / - N + 1 ( the most negative number representable using <nl> + / / sign - and - magnitude ) is represented by 1 ; <nl> + / / 0 is represented by N ; and <nl> + / / N - 1 ( the biggest number representable using <nl> + / / sign - and - magnitude ) is represented by 2N - 1 . <nl> + / / <nl> + / / Read http : / / en . wikipedia . org / wiki / Signed_number_representations <nl> + / / for more details on signed number representations . <nl> + static Bits SignAndMagnitudeToBiased ( const Bits & sam ) { <nl> + if ( kSignBitMask & sam ) { <nl> + / / sam represents a negative number . <nl> + return ~ sam + 1 ; <nl> + } else { <nl> + / / sam represents a positive number . <nl> + return kSignBitMask | sam ; <nl> + } <nl> + } <nl> + <nl> + / / Given two numbers in the sign - and - magnitude representation , <nl> + / / returns the distance between them as an unsigned number . <nl> + static Bits DistanceBetweenSignAndMagnitudeNumbers ( const Bits & sam1 , <nl> + const Bits & sam2 ) { <nl> + const Bits biased1 = SignAndMagnitudeToBiased ( sam1 ) ; <nl> + const Bits biased2 = SignAndMagnitudeToBiased ( sam2 ) ; <nl> + return ( biased1 > = biased2 ) ? ( biased1 - biased2 ) : ( biased2 - biased1 ) ; <nl> + } <nl> + <nl> + / / How many ULP ' s ( Units in the Last Place ) we want to tolerate when <nl> + / / comparing two numbers . The larger the value , the more error we <nl> + / / allow . A 0 value means that two numbers must be exactly the same <nl> + / / to be considered equal . <nl> + / / <nl> + / / The maximum error of a single floating - point operation is 0 . 5 <nl> + / / units in the last place . On Intel CPU ' s , all floating - point <nl> + / / calculations are done with 80 - bit precision , while double has 64 <nl> + / / bits . Therefore , 4 should be enough for ordinary use . <nl> + / / <nl> + / / See the following article for more details on ULP : <nl> + / / http : / / randomascii . wordpress . com / 2012 / 02 / 25 / comparing - floating - point - numbers - 2012 - edition / <nl> + static const size_t kMaxUlps = 4 ; <nl> + <nl> + / / Returns true if and only if this number is at most kMaxUlps ULP ' s away <nl> + / / from rhs . In particular , this function : <nl> + / / <nl> + / / - returns false if either number is ( or both are ) NAN . <nl> + / / - treats really large numbers as almost equal to infinity . <nl> + / / - thinks + 0 . 0 and - 0 . 0 are 0 DLP ' s apart . <nl> + inline bool AlmostEquals ( float lhs , float rhs ) { <nl> + / / The IEEE standard says that any comparison operation involving <nl> + / / a NAN must return false . <nl> + if ( std : : isnan ( lhs ) | | std : : isnan ( rhs ) ) <nl> + return false ; <nl> + <nl> + Float l = { lhs } ; <nl> + Float r = { rhs } ; <nl> + <nl> + return DistanceBetweenSignAndMagnitudeNumbers ( l . bits_ , r . bits_ ) < = kMaxUlps ; <nl> + } <nl> mmm a / test / cpp / tensorexpr / padded_buffer . cpp <nl> ppp b / test / cpp / tensorexpr / padded_buffer . cpp <nl> <nl> # include " test / cpp / tensorexpr / padded_buffer . h " <nl> <nl> # include < sstream > <nl> - <nl> - # include < gtest / gtest . h > <nl> - <nl> # include < c10 / util / Logging . h > <nl> <nl> namespace torch { <nl> mmm a / test / cpp / tensorexpr / padded_buffer . h <nl> ppp b / test / cpp / tensorexpr / padded_buffer . h <nl> class PaddedBuffer : public PaddedBufferBase { <nl> / / Verify the watermarks in the paddings are intact . <nl> void ValidateWatermark ( ) const { <nl> for ( int i = 0 ; i < kPaddingSize ; i + + ) { <nl> - EXPECT_EQ ( data_ [ i ] , kPaddingValue ) <nl> - < < " left - side watermark broken : " <nl> - < < " index : " < < i < < " , name : " < < name ( ) ; <nl> - EXPECT_EQ ( data_ [ i + total_size_ + kPaddingSize ] , kPaddingValue ) <nl> - < < " right - side watermark broken : " <nl> - < < " index : " < < i < < " , name : " < < name ( ) ; <nl> + ASSERT_EQ ( <nl> + data_ [ i ] , <nl> + kPaddingValue , <nl> + " left - side watermark broken : index : " , <nl> + i , <nl> + " , name : " , <nl> + name ( ) ) ; <nl> + ASSERT_EQ ( <nl> + data_ [ i + total_size_ + kPaddingSize ] , <nl> + kPaddingValue , <nl> + " right - side watermark broken : index : " , <nl> + i , <nl> + " , name : " , <nl> + name ( ) ) ; <nl> } <nl> } <nl> <nl> class PaddedBuffer : public PaddedBufferBase { <nl> DCHECK ( backup_data_ . size ( ) = = data_ . size ( ) ) <nl> < < " Please make sure you have call Backup ( ) before calling CheckBackup ( ) " ; <nl> for ( int i = 0 ; i < total_size_ ; i + + ) { <nl> - EXPECT_EQ ( data_ [ i + kPaddingSize ] , backup_data_ [ i + kPaddingSize ] ) <nl> - < < " mismatch against backup , " <nl> - < < " index : " < < i < < " , name : " < < name ( ) ; <nl> + ASSERT_EQ ( <nl> + data_ [ i + kPaddingSize ] , <nl> + backup_data_ [ i + kPaddingSize ] , <nl> + " mismatch against backup , index : " , <nl> + i , <nl> + " , name : " , <nl> + name ( ) ) ; <nl> } <nl> } <nl> <nl> void ExpectAllEqual ( const PaddedBuffer < T > & f1 , const PaddedBuffer < T > & f2 ) { <nl> f1 . ValidateWatermark ( ) ; <nl> f2 . ValidateWatermark ( ) ; <nl> for ( int i = 0 ; i < total_size ; i + + ) { <nl> - EXPECT_EQ ( v1 [ kPaddingSize + i ] , v2 [ kPaddingSize + i ] ) <nl> - < < CompareErrorMsg ( f1 , f2 , i ) ; <nl> + ASSERT_EQ ( <nl> + v1 [ kPaddingSize + i ] , v2 [ kPaddingSize + i ] , CompareErrorMsg ( f1 , f2 , i ) ) ; <nl> } <nl> } <nl> <nl> void ExpectAllNear ( <nl> f1 . ValidateWatermark ( ) ; <nl> f2 . ValidateWatermark ( ) ; <nl> for ( int i = 0 ; i < total_size ; i + + ) { <nl> - ASSERT_NEAR ( v1 [ kPaddingSize + i ] , v2 [ kPaddingSize + i ] , abs_error ) ; <nl> - / / < < CompareErrorMsg ( f1 , f2 , i ) ; <nl> + ASSERT_NEAR ( <nl> + v1 [ kPaddingSize + i ] , <nl> + v2 [ kPaddingSize + i ] , <nl> + abs_error , <nl> + CompareErrorMsg ( f1 , f2 , i ) ) ; <nl> } <nl> } <nl> <nl> mmm a / test / cpp / tensorexpr / test_aten . cpp <nl> ppp b / test / cpp / tensorexpr / test_aten . cpp <nl> <nl> # include < algorithm > <nl> # include < sstream > <nl> # include < stdexcept > <nl> - # include " test / cpp / tensorexpr / test_base . h " <nl> <nl> + # include < c10 / macros / Macros . h > <nl> # include " test / cpp / tensorexpr / padded_buffer . h " <nl> + # include " test / cpp / tensorexpr / test_base . h " <nl> # include " torch / csrc / jit / tensorexpr / ir_printer . h " <nl> <nl> namespace torch { <nl> void testATen_cast_Float ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , static_cast < float > ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , static_cast < float > ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATennegInt ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , - static_cast < float > ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , - static_cast < float > ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATennegFloat ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , - i ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , - i , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenaddInt ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenaddFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATensubInt ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , a_v ( i ) - b_v ( i ) * c_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , a_v ( i ) - b_v ( i ) * c_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATensubFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , a_v ( i ) - b_v ( i ) * c_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , a_v ( i ) - b_v ( i ) * c_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenlerp ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , a_v ( i ) + c_v ( i ) * ( b_v ( i ) - a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , a_v ( i ) + c_v ( i ) * ( b_v ( i ) - a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenaddcmulInt ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v , e_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , 5 * i + 3 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( e_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) * d_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , 5 * i + 3 , " index : " , i ) ; <nl> + ASSERT_EQ ( e_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) * d_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenaddcmulFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v , d_v , e_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , 3 * i + 2 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( d_v ( i ) , 5 * i + 3 ) < < " index : " < < i ; <nl> - EXPECT_FLOAT_EQ ( e_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) * d_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , 3 * i + 2 , " index : " , i ) ; <nl> + ASSERT_EQ ( d_v ( i ) , 5 * i + 3 , " index : " , i ) ; <nl> + ASSERT_FLOAT_EQ ( e_v ( i ) , a_v ( i ) + b_v ( i ) * c_v ( i ) * d_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenmulInt ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , a_v ( i ) * b_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , a_v ( i ) * b_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenmulFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , a_v ( i ) * b_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , a_v ( i ) * b_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATendivInt ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , a_v ( i ) / b_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , a_v ( i ) / b_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATendivFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , a_v ( i ) / b_v ( i ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , a_v ( i ) / b_v ( i ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenmaxInt ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , std : : max ( a_v ( i ) , b_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , std : : max ( a_v ( i ) , b_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenmaxFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , std : : fmax ( a_v ( i ) , b_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , std : : fmax ( a_v ( i ) , b_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenminInt ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , std : : min ( a_v ( i ) , b_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , std : : min ( a_v ( i ) , b_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenminFloat ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , std : : fmin ( a_v ( i ) , b_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , std : : fmin ( a_v ( i ) , b_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATen_sigmoid_backward ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , a_v ( i ) * b_v ( i ) * ( 1 . 0f - b_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , a_v ( i ) * b_v ( i ) * ( 1 . 0f - b_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATen_tanh_backward ( ) { <nl> ir_eval ( a_v , b_v , c_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 2 * i + 1 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( c_v ( i ) , a_v ( i ) * ( 1 . 0f - ( b_v ( i ) * b_v ( i ) ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 2 * i + 1 , " index : " , i ) ; <nl> + ASSERT_EQ ( c_v ( i ) , a_v ( i ) * ( 1 . 0f - ( b_v ( i ) * b_v ( i ) ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> - void testATenreciprocal ( ) { <nl> + void __ubsan_ignore_float_divide_by_zero__ testATenreciprocal ( ) { <nl> KernelScope kernel_scope ; <nl> const int kTotalSize = 128 ; <nl> Buffer a_buf ( VarHandle ( " A " , kHandle ) , kFloat , { ExprHandle ( kTotalSize ) } ) ; <nl> void testATenreciprocal ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , 1 . 0f / i ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , 1 . 0f / i , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenreluInt ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i - 64 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : max ( a_v ( i ) , 0 ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i - 64 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : max ( a_v ( i ) , 0 ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenreluFloat ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i - 64 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : fmax ( a_v ( i ) , 0 ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i - 64 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : fmax ( a_v ( i ) , 0 ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenlogFloat ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i + 10 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : log ( a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i + 10 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : log ( a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenlog10Float ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i + 10 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : log10 ( a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i + 10 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : log10 ( a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenlog2Float ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i + 10 ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : log2 ( a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i + 10 , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : log2 ( a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenexpFloat ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i / 10 . 0f ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : exp ( a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i / 10 . 0f , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : exp ( a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATenerfFloat ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i / 10 . 0f ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : erf ( a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i / 10 . 0f , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : erf ( a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> void testATencosFloat ( ) { <nl> ir_eval ( a_v , b_v ) ; <nl> <nl> for ( int i = 0 ; i < kTotalSize ; + + i ) { <nl> - EXPECT_EQ ( a_v ( i ) , i / 10 . 0f ) < < " index : " < < i ; <nl> - EXPECT_EQ ( b_v ( i ) , std : : cos ( a_v ( i ) ) ) < < " index : " < < i ; <nl> + ASSERT_EQ ( a_v ( i ) , i / 10 . 0f , " index : " , i ) ; <nl> + ASSERT_EQ ( b_v ( i ) , std : : cos ( a_v ( i ) ) , " index : " , i ) ; <nl> } <nl> } <nl> <nl> mmm a / test / cpp / tensorexpr / test_base . h <nl> ppp b / test / cpp / tensorexpr / test_base . h <nl> <nl> # pragma once <nl> <nl> + # if defined ( USE_GTEST ) <nl> # include < gtest / gtest . h > <nl> # include < test / cpp / common / support . h > <nl> + # else <nl> + # include " c10 / util / Exception . h " <nl> + # include " test / cpp / tensorexpr / gtest_assert_float_eq . h " <nl> + # include < cmath > <nl> + # define ASSERT_EQ ( x , y , . . . ) TORCH_INTERNAL_ASSERT ( ( x ) = = ( y ) , __VA_ARGS__ ) <nl> + # define ASSERT_FLOAT_EQ ( x , y , . . . ) \ <nl> + TORCH_INTERNAL_ASSERT ( AlmostEquals ( ( x ) , ( y ) ) , __VA_ARGS__ ) <nl> + # define ASSERT_NE ( x , y , . . . ) TORCH_INTERNAL_ASSERT ( ( x ) ! = ( y ) , __VA_ARGS__ ) <nl> + # define ASSERT_GT ( x , y , . . . ) TORCH_INTERNAL_ASSERT ( ( x ) > ( y ) , __VA_ARGS__ ) <nl> + # define ASSERT_GE ( x , y , . . . ) TORCH_INTERNAL_ASSERT ( ( x ) > = ( y ) , __VA_ARGS__ ) <nl> + # define ASSERT_LT ( x , y , . . . ) TORCH_INTERNAL_ASSERT ( ( x ) < ( y ) , __VA_ARGS__ ) <nl> + # define ASSERT_LE ( x , y , . . . ) TORCH_INTERNAL_ASSERT ( ( x ) < = ( y ) , __VA_ARGS__ ) <nl> + <nl> + # define ASSERT_NEAR ( x , y , a , . . . ) \ <nl> + TORCH_INTERNAL_ASSERT ( std : : fabs ( ( x ) - ( y ) ) < ( a ) , __VA_ARGS__ ) <nl> + <nl> + # define ASSERT_TRUE TORCH_INTERNAL_ASSERT <nl> + # define ASSERT_FALSE ( x ) ASSERT_TRUE ( ! ( x ) ) <nl> + # define ASSERT_THROWS_WITH ( statement , substring ) \ <nl> + try { \ <nl> + ( void ) statement ; \ <nl> + ASSERT_TRUE ( false ) ; \ <nl> + } catch ( const std : : exception & e ) { \ <nl> + ASSERT_NE ( std : : string ( e . what ( ) ) . find ( substring ) , std : : string : : npos ) ; \ <nl> + } <nl> + # define ASSERT_ANY_THROW ( statement ) \ <nl> + { \ <nl> + bool threw = false ; \ <nl> + try { \ <nl> + ( void ) statement ; \ <nl> + } catch ( const std : : exception & e ) { \ <nl> + threw = true ; \ <nl> + } \ <nl> + ASSERT_TRUE ( threw ) ; \ <nl> + } <nl> + <nl> + # endif / / defined ( USE_GTEST ) <nl> <nl> namespace torch { <nl> namespace jit { <nl> void ExpectAllNear ( <nl> const std : : string & name = " " ) { <nl> ASSERT_EQ ( v1 . size ( ) , v2 . size ( ) ) ; <nl> for ( int i = 0 ; i < v1 . size ( ) ; i + + ) { <nl> - EXPECT_NEAR ( v1 [ i ] , v2 [ i ] , threshold ) <nl> - < < " element index : " < < i < < " , name : " < < name ; <nl> + ASSERT_NEAR ( <nl> + v1 [ i ] , v2 [ i ] , threshold , " element index : " , i , " , name : " , name ) ; <nl> } <nl> } <nl> <nl> mmm a / test / cpp / tensorexpr / test_cuda . cpp <nl> ppp b / test / cpp / tensorexpr / test_cuda . cpp <nl> void testCudaTestRand01 ( ) { <nl> sum1 + = v ; <nl> sum2 + = v * v ; <nl> sum3 + = v * v * v ; <nl> - EXPECT_TRUE ( v > = 0 & & v < 1 ) < < " invalid value : " < < i < < " , " < < v ; <nl> + ASSERT_TRUE ( v > = 0 & & v < 1 , " invalid value : " , i , " , " , v ) ; <nl> } <nl> sum1 / = N ; <nl> sum2 / = N ; <nl> void testCudaTestRand01 ( ) { <nl> float sum2_mean = 1 . f / 3 ; <nl> float sum3_mean = 1 . f / 4 ; <nl> <nl> - EXPECT_NEAR ( sum1 , sum1_mean , 2e - 2 ) ; <nl> - EXPECT_NEAR ( sum2 , sum2_mean , 2e - 2 ) ; <nl> - EXPECT_NEAR ( sum3 , sum3_mean , 2e - 2 ) ; <nl> + ASSERT_NEAR ( sum1 , sum1_mean , 2e - 2 ) ; <nl> + ASSERT_NEAR ( sum2 , sum2_mean , 2e - 2 ) ; <nl> + ASSERT_NEAR ( sum3 , sum3_mean , 2e - 2 ) ; <nl> cudaFree ( c_dev ) ; <nl> } <nl> <nl> mmm a / test / cpp / tensorexpr / test_expr . cpp <nl> ppp b / test / cpp / tensorexpr / test_expr . cpp <nl> void testExprBasicValueTest ( ) { <nl> ExprHandle a = IntImm : : make ( 2 ) , b = IntImm : : make ( 3 ) ; <nl> ExprHandle c = Add : : make ( a , b ) ; <nl> SimpleIRExprEval eval ( c ) ; <nl> - EXPECT_EQ ( eval . value < int > ( ) , 5 ) ; <nl> + ASSERT_EQ ( eval . value < int > ( ) , 5 ) ; <nl> } <nl> <nl> void testExprBasicValueTest02 ( ) { <nl> void testExprBasicValueTest02 ( ) { <nl> ExprHandle d ( 5 . 0f ) ; <nl> ExprHandle f = ( a + b ) - ( c + d ) ; <nl> SimpleIRExprEval eval ( f ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , - 4 . 0f ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , - 4 . 0f ) ; <nl> } <nl> <nl> void testExprLetTest01 ( ) { <nl> void testExprLetTest01 ( ) { <nl> ExprHandle body = ExprHandle ( 2 . f ) + ( x * ExprHandle ( 3 . f ) + ExprHandle ( 4 . f ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( 3 . f ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprLetTest02 ( ) { <nl> void testExprLetTest02 ( ) { <nl> ExprHandle e1 = Let : : make ( x , ExprHandle ( 3 . f ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , ExprHandle ( 6 . f ) , e1 ) ; <nl> SimpleIRExprEval eval ( e2 ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 2 + ( 3 * 3 + 4 * 6 ) ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 2 + ( 3 * 3 + 4 * 6 ) ) ; <nl> } <nl> <nl> void testExprLetStmtTest01 ( ) { <nl> void testExprIntTest ( ) { <nl> ExprHandle body = ExprHandle ( 2 ) + ( x * ExprHandle ( 3 ) + ExprHandle ( 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < int > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < int > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprFloatTest ( ) { <nl> void testExprFloatTest ( ) { <nl> ExprHandle ( ( float ) 2 ) + ( x * ExprHandle ( ( float ) 3 ) + ExprHandle ( ( float ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( float ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprByteTest ( ) { <nl> void testExprByteTest ( ) { <nl> ( x * ExprHandle ( ( uint8_t ) 3 ) + ExprHandle ( ( uint8_t ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( uint8_t ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < uint8_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < uint8_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprCharTest ( ) { <nl> void testExprCharTest ( ) { <nl> ( x * ExprHandle ( ( int8_t ) 3 ) + ExprHandle ( ( int8_t ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( int8_t ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < int8_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < int8_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprShortTest ( ) { <nl> void testExprShortTest ( ) { <nl> ( x * ExprHandle ( ( int16_t ) 3 ) + ExprHandle ( ( int16_t ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( int16_t ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < int16_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < int16_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprLongTest ( ) { <nl> void testExprLongTest ( ) { <nl> ( x * ExprHandle ( ( int64_t ) 3 ) + ExprHandle ( ( int64_t ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( int64_t ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < int64_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < int64_t > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprHalfTest ( ) { <nl> void testExprHalfTest ( ) { <nl> ( x * ExprHandle ( ( at : : Half ) 3 ) + ExprHandle ( ( at : : Half ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( at : : Half ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < at : : Half > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < at : : Half > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> <nl> void testExprDoubleTest ( ) { <nl> void testExprDoubleTest ( ) { <nl> ( x * ExprHandle ( ( double ) 3 ) + ExprHandle ( ( double ) 4 ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( ( double ) 3 ) , body ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < double > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < double > ( ) , 2 + ( 3 * 3 + 4 ) ) ; <nl> } <nl> void testExprVectorAdd01 ( ) { <nl> KernelScope kernel_scope ; <nl> void testExprVectorAdd01 ( ) { <nl> Broadcast : : make ( 1 , kVectorSize ) ) ; <nl> Stmt * stmt = For : : make ( index , 0 , kVectorCount , store_c ) ; <nl> <nl> - EXPECT_EQ ( load_a . dtype ( ) , Dtype ( kFloat , kVectorSize ) ) ; <nl> - EXPECT_EQ ( load_b . dtype ( ) , Dtype ( kFloat , kVectorSize ) ) ; <nl> - EXPECT_EQ ( value . dtype ( ) , Dtype ( kFloat , kVectorSize ) ) ; <nl> + ASSERT_EQ ( load_a . dtype ( ) , Dtype ( kFloat , kVectorSize ) ) ; <nl> + ASSERT_EQ ( load_b . dtype ( ) , Dtype ( kFloat , kVectorSize ) ) ; <nl> + ASSERT_EQ ( value . dtype ( ) , Dtype ( kFloat , kVectorSize ) ) ; <nl> <nl> PaddedBuffer < float > a_v ( kTotalSize ) ; <nl> PaddedBuffer < float > b_v ( kTotalSize ) ; <nl> void testExprUnaryMath01 ( ) { <nl> ExprHandle v = test_config . func ( ExprHandle ( input_v ) ) ; <nl> float v_ref = test_config . ref_func ( input_v ) ; <nl> SimpleIRExprEval eval ( v ) ; <nl> - EXPECT_NEAR ( eval . value < float > ( ) , v_ref , 1e - 6 ) < < " fail : " < < v ; <nl> + ASSERT_NEAR ( eval . value < float > ( ) , v_ref , 1e - 6 , " fail : " , v ) ; <nl> } <nl> } <nl> <nl> void testExprBinaryMath01 ( ) { <nl> ExprHandle v_expr = test_config . func ( ExprHandle ( v1 ) , ExprHandle ( v2 ) ) ; <nl> float v_ref = test_config . ref_func ( v1 , v2 ) ; <nl> SimpleIRExprEval eval ( v_expr ) ; <nl> - EXPECT_NEAR ( eval . value < float > ( ) , v_ref , 1e - 6 ) < < " fail : " < < v_expr ; <nl> + ASSERT_NEAR ( eval . value < float > ( ) , v_ref , 1e - 6 , " fail : " , v_expr ) ; <nl> } <nl> } <nl> <nl> void testExprBitwiseOps ( ) { <nl> ExprHandle f = ( ( ( a ^ ( b < < 1 ) ) & c ) > > 2 ) | d ; <nl> <nl> SimpleIRExprEval eval ( f ) ; <nl> - EXPECT_EQ ( eval . value < int > ( ) , 11 ) ; <nl> + ASSERT_EQ ( eval . value < int > ( ) , 11 ) ; <nl> } <nl> <nl> void testExprDynamicShapeAdd ( ) { <nl> mmm a / test / cpp / tensorexpr / test_ir_printer . cpp <nl> ppp b / test / cpp / tensorexpr / test_ir_printer . cpp <nl> void testIRPrinterBasicValueTest ( ) { <nl> <nl> std : : stringstream ss ; <nl> ss < < c ; <nl> - EXPECT_EQ ( ss . str ( ) , " 2 + 3 " ) ; <nl> + ASSERT_EQ ( ss . str ( ) , " 2 + 3 " ) ; <nl> } <nl> <nl> void testIRPrinterBasicValueTest02 ( ) { <nl> void testIRPrinterBasicValueTest02 ( ) { <nl> <nl> std : : stringstream ss ; <nl> ss < < f ; <nl> - EXPECT_EQ ( ss . str ( ) , " ( 2 . f + 3 . f ) - ( 4 . f + 5 . f ) " ) ; <nl> + ASSERT_EQ ( ss . str ( ) , " ( 2 . f + 3 . f ) - ( 4 . f + 5 . f ) " ) ; <nl> } <nl> <nl> void testIRPrinterLetTest01 ( ) { <nl> void testIRPrinterLetTest01 ( ) { <nl> <nl> std : : stringstream ss ; <nl> ss < < result ; <nl> - EXPECT_EQ ( ss . str ( ) , " let x = 3 . f in 2 . f + ( x * 3 . f + 4 . f ) " ) ; <nl> + ASSERT_EQ ( ss . str ( ) , " let x = 3 . f in 2 . f + ( x * 3 . f + 4 . f ) " ) ; <nl> } <nl> <nl> void testIRPrinterLetTest02 ( ) { <nl> void testIRPrinterLetTest02 ( ) { <nl> <nl> std : : stringstream ss ; <nl> ss < < e2 ; <nl> - EXPECT_EQ ( <nl> + ASSERT_EQ ( <nl> ss . str ( ) , " let y = 6 . f in ( let x = 3 . f in 2 . f + ( x * 3 . f + 4 . f * y ) ) " ) ; <nl> } <nl> <nl> void testIRPrinterCastTest ( ) { <nl> <nl> std : : stringstream ss ; <nl> ss < < e2 ; <nl> - EXPECT_EQ ( <nl> + ASSERT_EQ ( <nl> ss . str ( ) , <nl> " let y = 6 . f in ( let x = int ( 3 . f ) in 2 . f + ( x * 3 . f + 4 . f * y ) ) " ) ; <nl> } <nl> mmm a / test / cpp / tensorexpr / test_llvm . cpp <nl> ppp b / test / cpp / tensorexpr / test_llvm . cpp <nl> using LLVMExprEval = ExprEval < LLVMCodeGen > ; <nl> auto a = Name # # Imm : : make ( Val ) ; \ <nl> LLVMExprEval cg ( a ) ; \ <nl> if ( std : : is_floating_point < decltype ( Val ) > ( ) ) { \ <nl> - EXPECT_NEAR ( cg . value < Type > ( ) , Val , 0 . 1 ) ; \ <nl> + ASSERT_NEAR ( cg . value < Type > ( ) , Val , 0 . 1 ) ; \ <nl> } else { \ <nl> - EXPECT_EQ ( cg . value < Type > ( ) , Val ) ; \ <nl> + ASSERT_EQ ( cg . value < Type > ( ) , Val ) ; \ <nl> } \ <nl> } <nl> TEST_LLVM_SCALAR_TYPES ( IMM_TEST ) <nl> TEST_LLVM_SCALAR_TYPES ( IMM_TEST ) <nl> auto c = Add : : make ( a , b ) ; \ <nl> LLVMExprEval cg ( c ) ; \ <nl> if ( std : : is_floating_point < decltype ( Val ) > ( ) ) { \ <nl> - EXPECT_NEAR ( cg . value < Type > ( ) , Val * 3 , 0 . 1 ) ; \ <nl> + ASSERT_NEAR ( cg . value < Type > ( ) , Val * 3 , 0 . 1 ) ; \ <nl> } else { \ <nl> - EXPECT_EQ ( cg . value < Type > ( ) , Val * 3 ) ; \ <nl> + ASSERT_EQ ( cg . value < Type > ( ) , Val * 3 ) ; \ <nl> } \ <nl> } <nl> TEST_LLVM_SCALAR_TYPES ( ADD_TEST ) <nl> TEST_LLVM_SCALAR_TYPES ( ADD_TEST ) <nl> auto c = Sub : : make ( a , b ) ; \ <nl> LLVMExprEval cg ( c ) ; \ <nl> if ( std : : is_floating_point < decltype ( Val ) > ( ) ) { \ <nl> - EXPECT_NEAR ( cg . value < Type > ( ) , Val , 0 . 1 ) ; \ <nl> + ASSERT_NEAR ( cg . value < Type > ( ) , Val , 0 . 1 ) ; \ <nl> } else { \ <nl> - EXPECT_EQ ( cg . value < Type > ( ) , Val ) ; \ <nl> + ASSERT_EQ ( cg . value < Type > ( ) , Val ) ; \ <nl> } \ <nl> } <nl> TEST_LLVM_SCALAR_TYPES ( SUB_TEST ) <nl> TEST_LLVM_SCALAR_TYPES ( SUB_TEST ) <nl> auto c = Mul : : make ( a , b ) ; \ <nl> LLVMExprEval cg ( c ) ; \ <nl> if ( std : : is_floating_point < decltype ( Val ) > ( ) ) { \ <nl> - EXPECT_NEAR ( cg . value < Type > ( ) , Val * 4 , 0 . 1 ) ; \ <nl> + ASSERT_NEAR ( cg . value < Type > ( ) , Val * 4 , 0 . 1 ) ; \ <nl> } else { \ <nl> - EXPECT_EQ ( cg . value < Type > ( ) , Val * 4 ) ; \ <nl> + ASSERT_EQ ( cg . value < Type > ( ) , Val * 4 ) ; \ <nl> } \ <nl> } <nl> TEST_LLVM_SCALAR_TYPES ( MUL_TEST ) <nl> TEST_LLVM_SCALAR_TYPES ( MUL_TEST ) <nl> auto c = Div : : make ( a , b ) ; \ <nl> LLVMExprEval cg ( c ) ; \ <nl> if ( std : : is_floating_point < decltype ( Val ) > ( ) ) { \ <nl> - EXPECT_NEAR ( cg . value < Type > ( ) , 2 , 0 . 1 ) ; \ <nl> + ASSERT_NEAR ( cg . value < Type > ( ) , 2 , 0 . 1 ) ; \ <nl> } else { \ <nl> - EXPECT_EQ ( cg . value < Type > ( ) , 2 ) ; \ <nl> + ASSERT_EQ ( cg . value < Type > ( ) , 2 ) ; \ <nl> } \ <nl> } <nl> TEST_LLVM_SCALAR_TYPES ( DIV_TEST ) <nl> void testLLVMIntToFloatCastTest ( ) { <nl> auto a = IntImm : : make ( 2 ) ; <nl> auto b = Cast : : make ( kFloat , a ) ; <nl> LLVMExprEval cg ( b , { } ) ; <nl> - EXPECT_EQ ( cg . value < float > ( ) , 2 . 0 ) ; <nl> + ASSERT_EQ ( cg . value < float > ( ) , 2 . 0 ) ; <nl> } <nl> <nl> void testLLVMFloatToIntCastTest ( ) { <nl> void testLLVMFloatToIntCastTest ( ) { <nl> auto a = FloatImm : : make ( 2 . 0 ) ; <nl> auto b = Cast : : make ( kInt , a ) ; <nl> LLVMExprEval cg ( b ) ; <nl> - EXPECT_EQ ( cg . value < int > ( ) , 2 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( ) , 2 ) ; <nl> } <nl> <nl> void testLLVMIntToLongCastTest ( ) { <nl> void testLLVMIntToLongCastTest ( ) { <nl> auto a = IntImm : : make ( 12345 ) ; <nl> auto b = Cast : : make ( kLong , a ) ; <nl> LLVMExprEval cg ( b ) ; <nl> - EXPECT_EQ ( cg . value < int64_t > ( ) , 12345 ) ; <nl> + ASSERT_EQ ( cg . value < int64_t > ( ) , 12345 ) ; <nl> } <nl> <nl> void testLLVMByteToCharCastTest ( ) { <nl> void testLLVMByteToCharCastTest ( ) { <nl> auto a = ByteImm : : make ( 250 ) ; <nl> auto b = Cast : : make ( kChar , a ) ; <nl> LLVMExprEval cg ( b ) ; <nl> - EXPECT_EQ ( cg . value < int8_t > ( ) , ( int8_t ) 250 ) ; <nl> + ASSERT_EQ ( cg . value < int8_t > ( ) , ( int8_t ) 250 ) ; <nl> } <nl> <nl> void testLLVMHalfToLongCastTest ( ) { <nl> void testLLVMHalfToLongCastTest ( ) { <nl> auto a = HalfImm : : make ( 2 . 0 ) ; <nl> auto b = Cast : : make ( kLong , a ) ; <nl> LLVMExprEval cg ( b ) ; <nl> - EXPECT_EQ ( cg . value < int64_t > ( ) , 2 ) ; <nl> + ASSERT_EQ ( cg . value < int64_t > ( ) , 2 ) ; <nl> } <nl> <nl> void testLLVMByteToDoubleCastTest ( ) { <nl> void testLLVMByteToDoubleCastTest ( ) { <nl> auto a = ByteImm : : make ( 2 ) ; <nl> auto b = Cast : : make ( kDouble , a ) ; <nl> LLVMExprEval cg ( b ) ; <nl> - EXPECT_EQ ( cg . value < double > ( ) , 2 ) ; <nl> + ASSERT_EQ ( cg . value < double > ( ) , 2 ) ; <nl> } <nl> <nl> void testLLVMLetTest01 ( ) { <nl> void testLLVMLetTest01 ( ) { <nl> ExprHandle body = ExprHandle ( 2 . f ) + ( x * ExprHandle ( 3 . f ) + ExprHandle ( 4 . f ) ) ; <nl> ExprHandle result = Let : : make ( x , ExprHandle ( 3 . f ) , body ) ; <nl> LLVMExprEval cg ( result , { } ) ; <nl> - EXPECT_EQ ( cg . value < float > ( ) , 2 . f + ( 3 . f * 3 . f + 4 . f ) ) ; <nl> + ASSERT_EQ ( cg . value < float > ( ) , 2 . f + ( 3 . f * 3 . f + 4 . f ) ) ; <nl> } <nl> <nl> void testLLVMLetTest02 ( ) { <nl> void testLLVMLetTest02 ( ) { <nl> ExprHandle e1 = Let : : make ( x , ExprHandle ( 3 . f ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , ExprHandle ( 6 . f ) , e1 ) ; <nl> LLVMExprEval cg ( e2 , { } ) ; <nl> - EXPECT_EQ ( cg . value < float > ( ) , 2 . f + ( 3 . f * 3 . f + 4 . f * 6 . f ) ) ; <nl> + ASSERT_EQ ( cg . value < float > ( ) , 2 . f + ( 3 . f * 3 . f + 4 . f * 6 . f ) ) ; <nl> } <nl> <nl> void testLLVMLetTestMultitype ( ) { <nl> void testLLVMLetTestMultitype ( ) { <nl> ExprHandle e1 = Let : : make ( x , ExprHandle ( ( uint8_t ) 3 ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , ExprHandle ( ( at : : Half ) 6 . f ) , e1 ) ; <nl> LLVMExprEval cg ( e2 , { } ) ; <nl> - EXPECT_EQ ( cg . value < double > ( ) , 2 . f + ( 3 * 3 + 4 * 6 . f ) ) ; <nl> + ASSERT_EQ ( cg . value < double > ( ) , 2 . f + ( 3 * 3 + 4 * 6 . f ) ) ; <nl> } <nl> <nl> void testLLVMBufferTest ( ) { <nl> void testLLVMBufferTest ( ) { <nl> std : : vector < void * > args ( { v . data ( ) } ) ; <nl> auto rv = IntImm : : make ( 0 ) ; <nl> LLVMExprEval cg ( rv , { a } ) ; <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> } <nl> <nl> void testLLVMBlockTest ( ) { <nl> void testLLVMBlockTest ( ) { <nl> } ) ; <nl> <nl> LLVMCodeGen cg ( block , { a } ) ; <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> - EXPECT_EQ ( v [ 0 ] , 4 ) ; <nl> - EXPECT_EQ ( v [ 1 ] , 4 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> + ASSERT_EQ ( v [ 0 ] , 4 ) ; <nl> + ASSERT_EQ ( v [ 1 ] , 4 ) ; <nl> } <nl> <nl> void testLLVMLoadStoreTest ( ) { <nl> void testLLVMLoadStoreTest ( ) { <nl> IntImm : : make ( 1 ) ) ; <nl> LLVMCodeGen cg ( store , { a , b } ) ; <nl> std : : vector < void * > args ( { a_buffer . data ( ) , b_buffer . data ( ) } ) ; <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> - EXPECT_EQ ( a_buffer [ 0 ] , 42 ) ; <nl> - EXPECT_EQ ( b_buffer [ 0 ] , 42 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> + ASSERT_EQ ( a_buffer [ 0 ] , 42 ) ; <nl> + ASSERT_EQ ( b_buffer [ 0 ] , 42 ) ; <nl> } <nl> <nl> void testLLVMIfThenElseTest ( ) { <nl> void testLLVMIfThenElseTest ( ) { <nl> IntImm : : make ( 1 ) ) ; <nl> LLVMCodeGen cg ( store , { a , b , c } ) ; <nl> std : : vector < void * > args ( { a_buffer . data ( ) , b_buffer . data ( ) , c_buffer . data ( ) } ) ; <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> - EXPECT_EQ ( a_buffer [ 0 ] , 42 ) ; <nl> - EXPECT_EQ ( b_buffer [ 0 ] , 42 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> + ASSERT_EQ ( a_buffer [ 0 ] , 42 ) ; <nl> + ASSERT_EQ ( b_buffer [ 0 ] , 42 ) ; <nl> } <nl> <nl> void testLLVMVecLoadStoreTest ( ) { <nl> void testLLVMVecLoadStoreTest ( ) { <nl> Broadcast : : make ( IntImm : : make ( 1 ) , 4 ) ) ; <nl> LLVMCodeGen cg ( store , { a , b } ) ; <nl> std : : vector < void * > args ( { a_buffer . data ( ) , b_buffer . data ( ) } ) ; <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> - EXPECT_EQ ( a_buffer [ 0 ] , 1 ) ; <nl> - EXPECT_EQ ( a_buffer [ 1 ] , 1 ) ; <nl> - EXPECT_EQ ( a_buffer [ 2 ] , 1 ) ; <nl> - EXPECT_EQ ( a_buffer [ 3 ] , 1 ) ; <nl> - EXPECT_EQ ( b_buffer [ 0 ] , 1 ) ; <nl> - EXPECT_EQ ( b_buffer [ 1 ] , 1 ) ; <nl> - EXPECT_EQ ( b_buffer [ 2 ] , 1 ) ; <nl> - EXPECT_EQ ( b_buffer [ 3 ] , 1 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> + ASSERT_EQ ( a_buffer [ 0 ] , 1 ) ; <nl> + ASSERT_EQ ( a_buffer [ 1 ] , 1 ) ; <nl> + ASSERT_EQ ( a_buffer [ 2 ] , 1 ) ; <nl> + ASSERT_EQ ( a_buffer [ 3 ] , 1 ) ; <nl> + ASSERT_EQ ( b_buffer [ 0 ] , 1 ) ; <nl> + ASSERT_EQ ( b_buffer [ 1 ] , 1 ) ; <nl> + ASSERT_EQ ( b_buffer [ 2 ] , 1 ) ; <nl> + ASSERT_EQ ( b_buffer [ 3 ] , 1 ) ; <nl> } <nl> <nl> # define FLOAT_INTRINSICS_TEST ( Name , Lanes ) \ <nl> - void testLLVMVecFloat_ # # Name # # Lane # # Lanes # # Test ( ) { \ <nl> + void testLLVMVecFloat_ # # Name # # Lane # # Lanes # # Test ( ) { \ <nl> KernelScope kernel_scope ; \ <nl> - Buffer a ( VarHandle ( " A " , kHandle ) , kFloat , { 1 } ) ; \ <nl> - Buffer b ( VarHandle ( " B " , kHandle ) , kFloat , { 1 } ) ; \ <nl> + Buffer a ( VarHandle ( " A " , kHandle ) , kFloat , { 1 } ) ; \ <nl> + Buffer b ( VarHandle ( " B " , kHandle ) , kFloat , { 1 } ) ; \ <nl> float val = 0 . 5f ; \ <nl> std : : vector < float > a_buffer ( Lanes , val ) ; \ <nl> std : : vector < float > b_buffer ( Lanes , val ) ; \ <nl> void testLLVMVecLoadStoreTest ( ) { <nl> LLVMCodeGen cg ( store , { a , b } ) ; \ <nl> std : : vector < void * > args ( { a_buffer . data ( ) , b_buffer . data ( ) } ) ; \ <nl> float ref = std : : Name ( 0 . 5f ) ; \ <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; \ <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; \ <nl> for ( int i = 0 ; i < Lanes ; i + + ) { \ <nl> - EXPECT_FLOAT_EQ ( a_buffer [ i ] , val ) ; \ <nl> + ASSERT_FLOAT_EQ ( a_buffer [ i ] , val ) ; \ <nl> } \ <nl> } / / namespace jit <nl> FLOAT_INTRINSICS_TEST ( erf , 4 ) <nl> FLOAT_INTRINSICS_TEST ( expm1 , 8 ) <nl> FLOAT_INTRINSICS_TEST ( lgamma , 8 ) <nl> # undef FLOAT_INTRINSICS_TEST <nl> <nl> - # define DOUBLE_INTRINSICS_TEST ( Name , Lanes ) \ <nl> - void testLLVMVecDouble_ # # Name # # Lane # # Lanes # # Test ( ) { \ <nl> + # define DOUBLE_INTRINSICS_TEST ( Name , Lanes ) \ <nl> + void testLLVMVecDouble_ # # Name # # Lane # # Lanes # # Test ( ) { \ <nl> KernelScope kernel_scope ; \ <nl> - Buffer a ( VarHandle ( " A " , kHandle ) , kDouble , { 1 } ) ; \ <nl> - Buffer b ( VarHandle ( " B " , kHandle ) , kDouble , { 1 } ) ; \ <nl> + Buffer a ( VarHandle ( " A " , kHandle ) , kDouble , { 1 } ) ; \ <nl> + Buffer b ( VarHandle ( " B " , kHandle ) , kDouble , { 1 } ) ; \ <nl> float val = 0 . 5f ; \ <nl> - std : : vector < double > a_buffer ( Lanes , val ) ; \ <nl> - std : : vector < double > b_buffer ( Lanes , val ) ; \ <nl> + std : : vector < double > a_buffer ( Lanes , val ) ; \ <nl> + std : : vector < double > b_buffer ( Lanes , val ) ; \ <nl> auto store = Store : : make ( \ <nl> b , \ <nl> Ramp : : make ( 0 , 1 , Lanes ) , \ <nl> FLOAT_INTRINSICS_TEST ( lgamma , 8 ) <nl> LLVMCodeGen cg ( store , { a , b } ) ; \ <nl> std : : vector < void * > args ( { a_buffer . data ( ) , b_buffer . data ( ) } ) ; \ <nl> float ref = std : : Name ( 0 . 5f ) ; \ <nl> - EXPECT_EQ ( cg . value < int > ( args ) , 0 ) ; \ <nl> + ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; \ <nl> for ( int i = 0 ; i < Lanes ; i + + ) { \ <nl> - EXPECT_FLOAT_EQ ( a_buffer [ i ] , val ) ; \ <nl> + ASSERT_FLOAT_EQ ( a_buffer [ i ] , val ) ; \ <nl> } \ <nl> } / / namespace jit <nl> DOUBLE_INTRINSICS_TEST ( erf , 2 ) <nl> void testLLVMVectorizerLoadStoreTest ( ) { <nl> Stmt * s = l . root_stmt ( ) ; <nl> l . vectorize ( * dynamic_cast < Block * > ( s ) - > stmts ( ) . begin ( ) ) ; <nl> <nl> - EXPECT_TRUE ( dynamic_cast < For * > ( * dynamic_cast < Block * > ( s ) - > stmts ( ) . begin ( ) ) = = nullptr ) ; <nl> + ASSERT_TRUE ( <nl> + dynamic_cast < For * > ( * dynamic_cast < Block * > ( s ) - > stmts ( ) . begin ( ) ) = = nullptr ) ; <nl> <nl> LLVMCodeGen cg ( s , { a , c_buf } ) ; <nl> <nl> void testLLVMStoreFloat ( ) { <nl> LLVMCodeGen cg ( expr , { result } ) ; <nl> std : : vector < void * > args ( { result_buffer . data ( ) } ) ; <nl> ASSERT_EQ ( cg . value < int > ( args ) , 0 ) ; <nl> - EXPECT_EQ ( result_buffer [ 0 ] , 3 . 14f ) ; <nl> + ASSERT_EQ ( result_buffer [ 0 ] , 3 . 14f ) ; <nl> } <nl> <nl> void testLLVMSimpleMath01 ( ) { <nl> void testLLVMBitwiseOps ( ) { <nl> ExprHandle f = ( ( ( a ^ ( b < < 1 ) ) & c ) > > 2 ) | d ; <nl> LLVMExprEval cg ( f ) ; <nl> <nl> - EXPECT_EQ ( cg . value < int > ( ) , 11 ) ; <nl> + ASSERT_EQ ( cg . value < int > ( ) , 11 ) ; <nl> } <nl> <nl> void testLLVMDynamicShapeAdd ( ) { <nl> mmm a / test / cpp / tensorexpr / test_simplify . cpp <nl> ppp b / test / cpp / tensorexpr / test_simplify . cpp <nl> void testConstantFoldSimple ( ) { <nl> ExprHandle f = ( a + b ) ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( f ) ; <nl> - EXPECT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> - EXPECT_EQ ( newF . AsNode < FloatImm > ( ) - > value ( ) , 5 ) ; <nl> + ASSERT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> + ASSERT_EQ ( newF . AsNode < FloatImm > ( ) - > value ( ) , 5 ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 5 . f ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 5 . f ) ; <nl> } <nl> <nl> void testConstantFoldTwoLayer ( ) { <nl> void testConstantFoldTwoLayer ( ) { <nl> ExprHandle f = ( a + b ) - ( c + d ) ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( f ) ; <nl> - EXPECT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> - EXPECT_EQ ( newF . AsNode < FloatImm > ( ) - > value ( ) , - 4 ) ; <nl> + ASSERT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> + ASSERT_EQ ( newF . AsNode < FloatImm > ( ) - > value ( ) , - 4 ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , - 4 . f ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , - 4 . f ) ; <nl> } <nl> <nl> void testConstantFoldShifts ( ) { <nl> void testConstantFoldShifts ( ) { <nl> ExprHandle f = ( ( a < < b ) < < b ) > > c ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( f ) ; <nl> - EXPECT_NE ( newF . AsNode < IntImm > ( ) , nullptr ) ; <nl> - EXPECT_EQ ( newF . AsNode < IntImm > ( ) - > value ( ) , 14 ) ; <nl> + ASSERT_NE ( newF . AsNode < IntImm > ( ) , nullptr ) ; <nl> + ASSERT_EQ ( newF . AsNode < IntImm > ( ) - > value ( ) , 14 ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> - EXPECT_EQ ( eval . value < int > ( ) , 7 < < ( 4 - 3 ) ) ; <nl> + ASSERT_EQ ( eval . value < int > ( ) , 7 < < ( 4 - 3 ) ) ; <nl> } <nl> <nl> void testConstantFoldBitwise ( ) { <nl> void testConstantFoldBitwise ( ) { <nl> ExprHandle f = ( a ^ b ) & c ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( f ) ; <nl> - EXPECT_NE ( newF . AsNode < IntImm > ( ) , nullptr ) ; <nl> - EXPECT_EQ ( newF . AsNode < IntImm > ( ) - > value ( ) , 37 ) ; <nl> + ASSERT_NE ( newF . AsNode < IntImm > ( ) , nullptr ) ; <nl> + ASSERT_EQ ( newF . AsNode < IntImm > ( ) - > value ( ) , 37 ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> - EXPECT_EQ ( eval . value < int > ( ) , ( 59 ^ 22 ) & 101 ) ; <nl> + ASSERT_EQ ( eval . value < int > ( ) , ( 59 ^ 22 ) & 101 ) ; <nl> } <nl> <nl> void testConstantFoldMultiOp ( ) { <nl> void testConstantFoldMultiOp ( ) { <nl> ExprHandle fn = ( ( a / e ) - ( c + d ) ) * ( f / b ) ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( fn ) ; <nl> - EXPECT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> + ASSERT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> SimpleIRExprEval ref ( fn ) ; <nl> <nl> - EXPECT_EQ ( eval . value < float > ( ) , ref . value < float > ( ) ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , ref . value < float > ( ) ) ; <nl> } <nl> <nl> void testConstantFoldMinMax ( ) { <nl> void testConstantFoldMinMax ( ) { <nl> ExprHandle minHandle = Min : : make ( b , c , true ) ; <nl> ExprHandle fn = Max : : make ( a , minHandle , false ) ; <nl> <nl> - EXPECT_EQ ( fn . dtype ( ) . scalar_type ( ) , ScalarType : : Float ) ; <nl> + ASSERT_EQ ( fn . dtype ( ) . scalar_type ( ) , ScalarType : : Float ) ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( fn ) ; <nl> - EXPECT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> + ASSERT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 15 . f ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 15 . f ) ; <nl> } <nl> <nl> void testConstantFoldIntrinsics ( ) { <nl> void testConstantFoldIntrinsics ( ) { <nl> ExprHandle fn = Intrinsics : : make ( kFabs , rndHandle ) ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( fn ) ; <nl> - EXPECT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> - EXPECT_EQ ( newF . AsNode < FloatImm > ( ) - > value ( ) , 1 ) ; <nl> + ASSERT_NE ( newF . AsNode < FloatImm > ( ) , nullptr ) ; <nl> + ASSERT_EQ ( newF . AsNode < FloatImm > ( ) - > value ( ) , 1 ) ; <nl> <nl> SimpleIRExprEval eval ( newF ) ; <nl> SimpleIRExprEval ref ( fn ) ; <nl> <nl> - EXPECT_EQ ( eval . value < float > ( ) , ref . value < float > ( ) ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , ref . value < float > ( ) ) ; <nl> } <nl> <nl> void testConstantFoldWithVar ( ) { <nl> void testConstantFoldWithVar ( ) { <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( body ) ; <nl> const Mul * root = newF . AsNode < Mul > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> - EXPECT_NE ( dynamic_cast < const FloatImm * > ( root - > rhs ( ) ) , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( dynamic_cast < const FloatImm * > ( root - > rhs ( ) ) , nullptr ) ; <nl> <nl> ExprHandle result = Let : : make ( x , ExprHandle ( 3 . f ) , newF ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 3 * ( 2 + 4 ) ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 3 * ( 2 + 4 ) ) ; <nl> } <nl> <nl> void testUnFoldableExpr ( ) { <nl> void testUnFoldableExpr ( ) { <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( body ) ; <nl> const Add * root = newF . AsNode < Add > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> - EXPECT_EQ ( dynamic_cast < const FloatImm * > ( root - > lhs ( ) ) , nullptr ) ; <nl> - EXPECT_EQ ( dynamic_cast < const FloatImm * > ( root - > rhs ( ) ) , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> + ASSERT_EQ ( dynamic_cast < const FloatImm * > ( root - > lhs ( ) ) , nullptr ) ; <nl> + ASSERT_EQ ( dynamic_cast < const FloatImm * > ( root - > rhs ( ) ) , nullptr ) ; <nl> <nl> ExprHandle result = Let : : make ( x , ExprHandle ( 3 . f ) , newF ) ; <nl> result = Let : : make ( y , ExprHandle ( 2 . f ) , result ) ; <nl> SimpleIRExprEval eval ( result ) ; <nl> - EXPECT_EQ ( eval . value < float > ( ) , 9 + 10 ) ; <nl> + ASSERT_EQ ( eval . value < float > ( ) , 9 + 10 ) ; <nl> } <nl> <nl> void testHashSimple ( ) { <nl> void testHashSimple ( ) { <nl> auto hash_a = hasher . hash ( a . node ( ) ) ; <nl> auto hash_f = hasher . hash ( f . node ( ) ) ; <nl> <nl> - EXPECT_NE ( hash_x , 0 ) ; <nl> - EXPECT_NE ( hash_a , 0 ) ; <nl> - EXPECT_NE ( hash_f , 0 ) ; <nl> - EXPECT_NE ( hash_x , hash_a ) ; <nl> - EXPECT_NE ( hash_x , hash_f ) ; <nl> - EXPECT_NE ( hash_a , hash_f ) ; <nl> + ASSERT_NE ( hash_x , 0 ) ; <nl> + ASSERT_NE ( hash_a , 0 ) ; <nl> + ASSERT_NE ( hash_f , 0 ) ; <nl> + ASSERT_NE ( hash_x , hash_a ) ; <nl> + ASSERT_NE ( hash_x , hash_f ) ; <nl> + ASSERT_NE ( hash_a , hash_f ) ; <nl> } <nl> <nl> void testHashEquivalence ( ) { <nl> void testHashEquivalence ( ) { <nl> ExprHandle f = ( x * y ) + ( x * y ) ; <nl> <nl> const Add * root = f . AsNode < Add > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> <nl> HashProvider hasher ; <nl> auto hash_f = hasher . hash ( f . node ( ) ) ; <nl> void testHashEquivalence ( ) { <nl> auto hash_r = hasher . hash ( root - > rhs ( ) ) ; <nl> <nl> / / Root not equal to either branch . <nl> - EXPECT_NE ( hash_f , hash_l ) ; <nl> - EXPECT_NE ( hash_f , hash_r ) ; <nl> + ASSERT_NE ( hash_f , hash_l ) ; <nl> + ASSERT_NE ( hash_f , hash_r ) ; <nl> / / but branches are equal . <nl> - EXPECT_EQ ( hash_l , hash_r ) ; <nl> + ASSERT_EQ ( hash_l , hash_r ) ; <nl> <nl> / / Still equivalent if separate . <nl> ExprHandle a ( 2 ) ; <nl> ExprHandle f2 = x + a / y ; <nl> ExprHandle b ( 2 ) ; <nl> ExprHandle f3 = x + b / y ; <nl> - EXPECT_EQ ( hasher . hash ( f2 . node ( ) ) , hasher . hash ( f3 . node ( ) ) ) ; <nl> + ASSERT_EQ ( hasher . hash ( f2 . node ( ) ) , hasher . hash ( f3 . node ( ) ) ) ; <nl> <nl> / / Not equivalent if different vars ( even with same name ) . <nl> VarHandle z ( " x " , kFloat ) ; <nl> ExprHandle f4 = z + b / y ; <nl> - EXPECT_NE ( hasher . hash ( f2 . node ( ) ) , hasher . hash ( f4 . node ( ) ) ) ; <nl> + ASSERT_NE ( hasher . hash ( f2 . node ( ) ) , hasher . hash ( f4 . node ( ) ) ) ; <nl> <nl> / / Intrinsics sanity check . <nl> ExprHandle f5 = Intrinsics : : make ( kSin , x ) * Intrinsics : : make ( kCos , x ) ; <nl> - EXPECT_NE ( hasher . hash ( f5 . node ( ) ) , 0 ) ; <nl> + ASSERT_NE ( hasher . hash ( f5 . node ( ) ) , 0 ) ; <nl> } <nl> <nl> void testHashEquivalenceAfterFolding ( ) { <nl> void testHashEquivalenceAfterFolding ( ) { <nl> ExprHandle f = ( ( a + b ) * x ) * ( c * x ) ; <nl> <nl> const Mul * root = f . AsNode < Mul > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> <nl> HashProvider hasher ; <nl> auto hash_f = hasher . hash ( f . node ( ) ) ; <nl> void testHashEquivalenceAfterFolding ( ) { <nl> auto hash_r = hasher . hash ( root - > rhs ( ) ) ; <nl> <nl> / / Root not equal to either branch , and branches not equal . <nl> - EXPECT_NE ( hash_f , hash_l ) ; <nl> - EXPECT_NE ( hash_f , hash_r ) ; <nl> - EXPECT_NE ( hash_l , hash_r ) ; <nl> + ASSERT_NE ( hash_f , hash_l ) ; <nl> + ASSERT_NE ( hash_f , hash_r ) ; <nl> + ASSERT_NE ( hash_l , hash_r ) ; <nl> <nl> ExprHandle newF = IRSimplifier : : simplify ( f ) ; <nl> <nl> const Mul * newRoot = newF . AsNode < Mul > ( ) ; <nl> - EXPECT_NE ( newRoot , nullptr ) ; <nl> + ASSERT_NE ( newRoot , nullptr ) ; <nl> <nl> auto hash_f_n = hasher . hash ( newF . node ( ) ) ; <nl> auto hash_l_n = hasher . hash ( newRoot - > lhs ( ) ) ; <nl> auto hash_r_n = hasher . hash ( newRoot - > rhs ( ) ) ; <nl> <nl> / / Root not equal to either branch . <nl> - EXPECT_NE ( hash_f_n , hash_l_n ) ; <nl> - EXPECT_NE ( hash_f_n , hash_r_n ) ; <nl> + ASSERT_NE ( hash_f_n , hash_l_n ) ; <nl> + ASSERT_NE ( hash_f_n , hash_r_n ) ; <nl> / / but branches are now equal . <nl> - EXPECT_EQ ( hash_l_n , hash_r_n ) ; <nl> + ASSERT_EQ ( hash_l_n , hash_r_n ) ; <nl> } <nl> <nl> void testHashDifferenceTypes ( ) { <nl> void testHashDifferenceTypes ( ) { <nl> / / Immediates of different types are not equal . <nl> for ( unsigned int i = 0 ; i < immediates . size ( ) ; + + i ) { <nl> for ( unsigned int j = i + 1 ; j < immediates . size ( ) ; + + j ) { <nl> - EXPECT_NE ( hasher . hash ( immediates [ i ] ) , hasher . hash ( immediates [ j ] ) ) ; <nl> + ASSERT_NE ( hasher . hash ( immediates [ i ] ) , hasher . hash ( immediates [ j ] ) ) ; <nl> } <nl> } <nl> <nl> void testHashDifferenceTypes ( ) { <nl> ExprHandle ff1 = IRSimplifier : : simplify ( f1 ) ; <nl> ExprHandle ff2 = IRSimplifier : : simplify ( f2 ) ; <nl> <nl> - EXPECT_EQ ( hasher . hash ( ff1 . node ( ) ) , hasher . hash ( ff2 . node ( ) ) ) ; <nl> + ASSERT_EQ ( hasher . hash ( ff1 . node ( ) ) , hasher . hash ( ff2 . node ( ) ) ) ; <nl> } <nl> <nl> void testHashLargeExpression ( ) { <nl> void testHashLargeExpression ( ) { <nl> HashProvider hasher ; <nl> auto hash_r = hasher . hash ( if_stmt ) ; <nl> / / We should not have to do any more work . <nl> - EXPECT_TRUE ( hasher . cachedHash ( memcpy_stmt ) ) ; <nl> + ASSERT_TRUE ( hasher . cachedHash ( memcpy_stmt ) ) ; <nl> auto hash_t = hasher . hash ( memcpy_stmt ) ; <nl> - EXPECT_TRUE ( hasher . cachedHash ( store_ramp_stmt ) ) ; <nl> + ASSERT_TRUE ( hasher . cachedHash ( store_ramp_stmt ) ) ; <nl> auto hash_f = hasher . hash ( store_ramp_stmt ) ; <nl> <nl> / / Root not equal to either branch , and branches not equal . <nl> - EXPECT_NE ( hash_r , hash_t ) ; <nl> - EXPECT_NE ( hash_r , hash_f ) ; <nl> - EXPECT_NE ( hash_t , hash_f ) ; <nl> + ASSERT_NE ( hash_r , hash_t ) ; <nl> + ASSERT_NE ( hash_r , hash_f ) ; <nl> + ASSERT_NE ( hash_t , hash_f ) ; <nl> } <nl> <nl> / / / ( 2 . f + x ) + 4 . f = > x + 6 . f <nl> void testSimplifyAdd ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Add * root = simplified . AsNode < Add > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> const Var * lhs = dynamic_cast < const Var * > ( root - > lhs ( ) ) ; <nl> - EXPECT_NE ( lhs , nullptr ) ; <nl> - EXPECT_EQ ( lhs - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( lhs , nullptr ) ; <nl> + ASSERT_EQ ( lhs - > name_hint ( ) , " x " ) ; <nl> const FloatImm * rhs = dynamic_cast < const FloatImm * > ( root - > rhs ( ) ) ; <nl> - EXPECT_NE ( rhs , nullptr ) ; <nl> - EXPECT_EQ ( rhs - > value ( ) , 6 . f ) ; <nl> + ASSERT_NE ( rhs , nullptr ) ; <nl> + ASSERT_EQ ( rhs - > value ( ) , 6 . f ) ; <nl> } <nl> <nl> / / / ( 2 . f - x ) - 4 . f = > - 2 . f - x <nl> void testSimplifySub ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Sub * root = simplified . AsNode < Sub > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> const FloatImm * lhs = dynamic_cast < const FloatImm * > ( root - > lhs ( ) ) ; <nl> - EXPECT_NE ( lhs , nullptr ) ; <nl> - EXPECT_EQ ( lhs - > value ( ) , - 2 . f ) ; <nl> + ASSERT_NE ( lhs , nullptr ) ; <nl> + ASSERT_EQ ( lhs - > value ( ) , - 2 . f ) ; <nl> const Var * rhs = dynamic_cast < const Var * > ( root - > rhs ( ) ) ; <nl> - EXPECT_NE ( rhs , nullptr ) ; <nl> - EXPECT_EQ ( rhs - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( rhs , nullptr ) ; <nl> + ASSERT_EQ ( rhs - > name_hint ( ) , " x " ) ; <nl> } <nl> <nl> / / / 2 . f * ( 1 . f - x ) - 4 . f = > - 6 . f - ( x * 2 . f ) <nl> void testSimplifyMultiLayer ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Sub * root = simplified . AsNode < Sub > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> const FloatImm * lhs = dynamic_cast < const FloatImm * > ( root - > lhs ( ) ) ; <nl> - EXPECT_NE ( lhs , nullptr ) ; <nl> - EXPECT_EQ ( lhs - > value ( ) , - 6 . f ) ; <nl> + ASSERT_NE ( lhs , nullptr ) ; <nl> + ASSERT_EQ ( lhs - > value ( ) , - 6 . f ) ; <nl> const Mul * rhs = dynamic_cast < const Mul * > ( root - > rhs ( ) ) ; <nl> - EXPECT_NE ( rhs , nullptr ) ; <nl> + ASSERT_NE ( rhs , nullptr ) ; <nl> const Var * varX = dynamic_cast < const Var * > ( rhs - > lhs ( ) ) ; <nl> - EXPECT_NE ( varX , nullptr ) ; <nl> - EXPECT_EQ ( varX - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( varX , nullptr ) ; <nl> + ASSERT_EQ ( varX - > name_hint ( ) , " x " ) ; <nl> const FloatImm * mulRhs = dynamic_cast < const FloatImm * > ( rhs - > rhs ( ) ) ; <nl> - EXPECT_NE ( mulRhs , nullptr ) ; <nl> - EXPECT_EQ ( mulRhs - > value ( ) , 2 . f ) ; <nl> + ASSERT_NE ( mulRhs , nullptr ) ; <nl> + ASSERT_EQ ( mulRhs - > value ( ) , 2 . f ) ; <nl> } <nl> <nl> / / / 2 * ( 3 * x ) - ( x * 4 ) = > x * 2 <nl> void testSimplifyMultiTerm ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Mul * root = simplified . AsNode < Mul > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> const Var * lhs = dynamic_cast < const Var * > ( root - > lhs ( ) ) ; <nl> - EXPECT_NE ( lhs , nullptr ) ; <nl> - EXPECT_EQ ( lhs - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( lhs , nullptr ) ; <nl> + ASSERT_EQ ( lhs - > name_hint ( ) , " x " ) ; <nl> const IntImm * rhs = dynamic_cast < const IntImm * > ( root - > rhs ( ) ) ; <nl> - EXPECT_NE ( rhs , nullptr ) ; <nl> - EXPECT_EQ ( rhs - > value ( ) , 2 ) ; <nl> + ASSERT_NE ( rhs , nullptr ) ; <nl> + ASSERT_EQ ( rhs - > value ( ) , 2 ) ; <nl> } <nl> <nl> / / / 2 * ( 3 * ( f ) x ) - ( x * 4 ) = > x * 2 . f <nl> void testSimplifyCasts ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Mul * root = simplified . AsNode < Mul > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> const Var * lhs = dynamic_cast < const Var * > ( root - > lhs ( ) ) ; <nl> - EXPECT_NE ( lhs , nullptr ) ; <nl> - EXPECT_EQ ( lhs - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( lhs , nullptr ) ; <nl> + ASSERT_EQ ( lhs - > name_hint ( ) , " x " ) ; <nl> const FloatImm * rhs = dynamic_cast < const FloatImm * > ( root - > rhs ( ) ) ; <nl> - EXPECT_NE ( rhs , nullptr ) ; <nl> - EXPECT_EQ ( rhs - > value ( ) , 2 ) ; <nl> + ASSERT_NE ( rhs , nullptr ) ; <nl> + ASSERT_EQ ( rhs - > value ( ) , 2 ) ; <nl> } <nl> <nl> / / / ( x + 0 ) * 1 = > x <nl> void testSimplifyEliminatesNoOps ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Var * root = simplified . AsNode < Var > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> - EXPECT_EQ ( root - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> + ASSERT_EQ ( root - > name_hint ( ) , " x " ) ; <nl> } <nl> <nl> / / / Cannot simplify this . <nl> void testSimplifyMultiVar ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Add * root = simplified . AsNode < Add > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> const Mul * lhs = dynamic_cast < const Mul * > ( root - > lhs ( ) ) ; <nl> - EXPECT_NE ( lhs , nullptr ) ; <nl> + ASSERT_NE ( lhs , nullptr ) ; <nl> const Var * varY = dynamic_cast < const Var * > ( lhs - > lhs ( ) ) ; <nl> - EXPECT_EQ ( varY - > name_hint ( ) , " y " ) ; <nl> + ASSERT_EQ ( varY - > name_hint ( ) , " y " ) ; <nl> const Mul * rhs = dynamic_cast < const Mul * > ( root - > rhs ( ) ) ; <nl> - EXPECT_NE ( rhs , nullptr ) ; <nl> + ASSERT_NE ( rhs , nullptr ) ; <nl> const Var * varX = dynamic_cast < const Var * > ( rhs - > lhs ( ) ) ; <nl> - EXPECT_NE ( varX , nullptr ) ; <nl> - EXPECT_EQ ( varX - > name_hint ( ) , " x " ) ; <nl> + ASSERT_NE ( varX , nullptr ) ; <nl> + ASSERT_EQ ( varX - > name_hint ( ) , " x " ) ; <nl> } <nl> <nl> / / / y + x * 0 = > y <nl> void testSimplifyEliminatesVar ( ) { <nl> <nl> ExprHandle simplified = IRSimplifier : : simplify ( body ) ; <nl> const Var * root = simplified . AsNode < Var > ( ) ; <nl> - EXPECT_NE ( root , nullptr ) ; <nl> - EXPECT_EQ ( root - > name_hint ( ) , " y " ) ; <nl> + ASSERT_NE ( root , nullptr ) ; <nl> + ASSERT_EQ ( root - > name_hint ( ) , " y " ) ; <nl> } <nl> <nl> } / / namespace jit <nl> mmm a / test / cpp / tensorexpr / test_type . cpp <nl> ppp b / test / cpp / tensorexpr / test_type . cpp <nl> void testTypeTest01 ( ) { <nl> KernelScope kernel_scope ; <nl> { <nl> Dtype dt1 = kInt ; <nl> - EXPECT_EQ ( dt1 , kInt ) ; <nl> + ASSERT_EQ ( dt1 , kInt ) ; <nl> } <nl> { <nl> Dtype dt2_a ( kInt , 8 ) ; <nl> Dtype dt2_b ( kInt , 4 ) ; <nl> Dtype dt2_c ( ScalarType : : Int , 8 ) ; <nl> - EXPECT_EQ ( dt2_a , dt2_c ) ; <nl> - EXPECT_NE ( dt2_a , dt2_b ) ; <nl> + ASSERT_EQ ( dt2_a , dt2_c ) ; <nl> + ASSERT_NE ( dt2_a , dt2_b ) ; <nl> } <nl> { <nl> - EXPECT_EQ ( kInt , ToDtype < int > ( ) ) ; <nl> - EXPECT_EQ ( kFloat , ToDtype < float > ( ) ) ; <nl> - EXPECT_EQ ( kByte , ToDtype < uint8_t > ( ) ) ; <nl> - EXPECT_EQ ( kChar , ToDtype < int8_t > ( ) ) ; <nl> - EXPECT_EQ ( kShort , ToDtype < int16_t > ( ) ) ; <nl> - EXPECT_EQ ( kLong , ToDtype < int64_t > ( ) ) ; <nl> - EXPECT_EQ ( kHalf , ToDtype < at : : Half > ( ) ) ; <nl> - EXPECT_EQ ( kDouble , ToDtype < double > ( ) ) ; <nl> - EXPECT_EQ ( kBool , ToDtype < bool > ( ) ) ; <nl> + ASSERT_EQ ( kInt , ToDtype < int > ( ) ) ; <nl> + ASSERT_EQ ( kFloat , ToDtype < float > ( ) ) ; <nl> + ASSERT_EQ ( kByte , ToDtype < uint8_t > ( ) ) ; <nl> + ASSERT_EQ ( kChar , ToDtype < int8_t > ( ) ) ; <nl> + ASSERT_EQ ( kShort , ToDtype < int16_t > ( ) ) ; <nl> + ASSERT_EQ ( kLong , ToDtype < int64_t > ( ) ) ; <nl> + ASSERT_EQ ( kHalf , ToDtype < at : : Half > ( ) ) ; <nl> + ASSERT_EQ ( kDouble , ToDtype < double > ( ) ) ; <nl> + ASSERT_EQ ( kBool , ToDtype < bool > ( ) ) ; <nl> } <nl> { <nl> Dtype int32x8 ( kInt , 8 ) ; <nl> Dtype float32x8 ( kFloat , 8 ) ; <nl> - EXPECT_NE ( int32x8 , float32x8 ) ; <nl> - EXPECT_EQ ( float32x8 , BinaryOpDtype ( int32x8 , float32x8 ) ) ; <nl> - EXPECT_EQ ( float32x8 , BinaryOpDtype ( float32x8 , int32x8 ) ) ; <nl> - EXPECT_EQ ( int32x8 , BinaryOpDtype ( int32x8 , int32x8 ) ) ; <nl> - EXPECT_EQ ( float32x8 , BinaryOpDtype ( float32x8 , float32x8 ) ) ; <nl> + ASSERT_NE ( int32x8 , float32x8 ) ; <nl> + ASSERT_EQ ( float32x8 , BinaryOpDtype ( int32x8 , float32x8 ) ) ; <nl> + ASSERT_EQ ( float32x8 , BinaryOpDtype ( float32x8 , int32x8 ) ) ; <nl> + ASSERT_EQ ( int32x8 , BinaryOpDtype ( int32x8 , int32x8 ) ) ; <nl> + ASSERT_EQ ( float32x8 , BinaryOpDtype ( float32x8 , float32x8 ) ) ; <nl> } <nl> } <nl> <nl> void testTypePropagation ( ) { <nl> ( x * FloatImm : : make ( 3 . f ) + FloatImm : : make ( 4 . f ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , FloatImm : : make ( 3 . f ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , FloatImm : : make ( 6 . f ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kFloat ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kFloat ) ; <nl> } <nl> / / Int to bigger int : <nl> { <nl> void testTypePropagation ( ) { <nl> ShortImm : : make ( 2 . f ) + ( x * ShortImm : : make ( 3 ) + ShortImm : : make ( 4 ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , ShortImm : : make ( 3 ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , LongImm : : make ( 6 ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kLong ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kLong ) ; <nl> } <nl> / / Float to bigger float : <nl> { <nl> void testTypePropagation ( ) { <nl> HalfImm : : make ( 2 . f ) + ( x * HalfImm : : make ( 3 ) + HalfImm : : make ( 4 ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , HalfImm : : make ( 3 ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , DoubleImm : : make ( 6 ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kDouble ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kDouble ) ; <nl> } <nl> / / Int to Float : <nl> { <nl> void testTypePropagation ( ) { <nl> IntImm : : make ( 2 ) + ( x * IntImm : : make ( 3 ) + IntImm : : make ( 4 ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , FloatImm : : make ( 3 . f ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , IntImm : : make ( 6 ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kFloat ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kFloat ) ; <nl> } <nl> / / Smaller float , bigger Int : <nl> { <nl> void testTypePropagation ( ) { <nl> HalfImm : : make ( 2 ) + ( x * HalfImm : : make ( 3 ) + HalfImm : : make ( 4 ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , HalfImm : : make ( 3 ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , LongImm : : make ( 6 ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kHalf ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kHalf ) ; <nl> } <nl> / / Bigger float , smaller Int : <nl> { <nl> void testTypePropagation ( ) { <nl> CharImm : : make ( 2 ) + ( x * CharImm : : make ( 3 ) + CharImm : : make ( 4 ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , CharImm : : make ( 3 ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , DoubleImm : : make ( 6 ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kDouble ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kDouble ) ; <nl> } <nl> / / Sign change char / byte upgrades to short : <nl> { <nl> void testTypePropagation ( ) { <nl> CharImm : : make ( 2 ) + ( x * CharImm : : make ( 3 ) + CharImm : : make ( 4 ) * y ) ; <nl> ExprHandle e1 = Let : : make ( x , CharImm : : make ( 3 ) , body ) ; <nl> ExprHandle e2 = Let : : make ( y , ByteImm : : make ( 6 ) , e1 ) ; <nl> - EXPECT_EQ ( e2 . dtype ( ) , kShort ) ; <nl> + ASSERT_EQ ( e2 . dtype ( ) , kShort ) ; <nl> } <nl> } <nl> } / / namespace jit <nl> mmm a / test / cpp / tensorexpr / tests . h <nl> ppp b / test / cpp / tensorexpr / tests . h <nl> <nl> namespace torch { <nl> namespace jit { <nl> <nl> - # define TH_FORALL_TESTS ( _ ) \ <nl> - _ ( ExprBasicValueTest ) \ <nl> - _ ( ExprBasicValueTest02 ) \ <nl> - _ ( ExprLetTest01 ) \ <nl> - _ ( ExprLetStmtTest01 ) \ <nl> - _ ( ExprLetTest02 ) \ <nl> - _ ( ExprIntTest ) \ <nl> - _ ( ExprFloatTest ) \ <nl> - _ ( ExprByteTest ) \ <nl> - _ ( ExprCharTest ) \ <nl> - _ ( ExprShortTest ) \ <nl> - _ ( ExprLongTest ) \ <nl> - _ ( ExprHalfTest ) \ <nl> - _ ( ExprDoubleTest ) \ <nl> - _ ( ExprVectorAdd01 ) \ <nl> - _ ( ExprCompareSelectEQ ) \ <nl> - _ ( ExprSubstitute01 ) \ <nl> - _ ( ExprMath01 ) \ <nl> - _ ( ExprUnaryMath01 ) \ <nl> - _ ( ExprBinaryMath01 ) \ <nl> - _ ( ExprDynamicShapeAdd ) \ <nl> - _ ( ExprBitwiseOps ) \ <nl> - _ ( IRPrinterBasicValueTest ) \ <nl> - _ ( IRPrinterBasicValueTest02 ) \ <nl> - _ ( IRPrinterLetTest01 ) \ <nl> - _ ( IRPrinterLetTest02 ) \ <nl> - _ ( IRPrinterCastTest ) \ <nl> - _ ( ExprSimple01 ) \ <nl> - _ ( ExprLower01 ) \ <nl> - _ ( ExprSimple02 ) \ <nl> - _ ( ExprSplitWithTailNone ) \ <nl> - _ ( ExprSplitWithMask01 ) \ <nl> - _ ( ScheduleBroadcastAddBuffer ) \ <nl> - _ ( ScheduleFunctionCall01 ) \ <nl> - _ ( ScheduleInlineFunc01 ) \ <nl> - _ ( ScheduleFuserStyle ) \ <nl> - _ ( ScheduleFuserThreeArg ) \ <nl> - _ ( ScheduleDynamicShape2D ) \ <nl> - _ ( TypeTest01 ) \ <nl> - _ ( TypePropagation ) \ <nl> - _ ( Cond01 ) \ <nl> - _ ( IfThenElse01 ) \ <nl> - _ ( IfThenElse02 ) \ <nl> - _ ( ATen_cast_Float ) \ <nl> - _ ( ATennegInt ) \ <nl> - _ ( ATennegFloat ) \ <nl> - _ ( ATenaddInt ) \ <nl> - _ ( ATenaddFloat ) \ <nl> - _ ( ATensubInt ) \ <nl> - _ ( ATensubFloat ) \ <nl> - _ ( ATenlerp ) \ <nl> - _ ( ATenaddcmulInt ) \ <nl> - _ ( ATenaddcmulFloat ) \ <nl> - _ ( ATenmulInt ) \ <nl> - _ ( ATenmulFloat ) \ <nl> - _ ( ATendivInt ) \ <nl> - _ ( ATendivFloat ) \ <nl> - _ ( ATenmaxInt ) \ <nl> - _ ( ATenmaxFloat ) \ <nl> - _ ( ATenminInt ) \ <nl> - _ ( ATenminFloat ) \ <nl> - _ ( ATen_sigmoid_backward ) \ <nl> - _ ( ATen_tanh_backward ) \ <nl> - _ ( ATenreciprocal ) \ <nl> - _ ( ATenreluInt ) \ <nl> - _ ( ATenreluFloat ) \ <nl> - _ ( ATenlogFloat ) \ <nl> - _ ( ATenlog10Float ) \ <nl> - _ ( ATenlog2Float ) \ <nl> - _ ( ATenexpFloat ) \ <nl> - _ ( ATenerfFloat ) \ <nl> - _ ( ATencosFloat ) \ <nl> - _ ( ATeneqInt ) \ <nl> - _ ( ATengeInt ) \ <nl> - _ ( ATengtInt ) \ <nl> - _ ( ATenleInt ) \ <nl> - _ ( ATenltInt ) \ <nl> - _ ( ConstantFoldSimple ) \ <nl> - _ ( ConstantFoldTwoLayer ) \ <nl> - _ ( ConstantFoldShifts ) \ <nl> - _ ( ConstantFoldBitwise ) \ <nl> - _ ( ConstantFoldMultiOp ) \ <nl> - _ ( ConstantFoldMinMax ) \ <nl> - _ ( ConstantFoldIntrinsics ) \ <nl> - _ ( ConstantFoldWithVar ) \ <nl> - _ ( UnFoldableExpr ) \ <nl> - _ ( HashSimple ) \ <nl> - _ ( HashEquivalence ) \ <nl> - _ ( HashEquivalenceAfterFolding ) \ <nl> - _ ( HashDifferenceTypes ) \ <nl> - _ ( HashLargeExpression ) \ <nl> - _ ( SimplifyAdd ) \ <nl> - _ ( SimplifySub ) \ <nl> - _ ( SimplifyMultiLayer ) \ <nl> - _ ( SimplifyMultiTerm ) \ <nl> - _ ( SimplifyCasts ) \ <nl> - _ ( SimplifyEliminatesNoOps ) \ <nl> - _ ( SimplifyMultiVar ) \ <nl> - _ ( SimplifyEliminatesVar ) \ <nl> + # define TH_FORALL_TENSOREXPR_TESTS ( _ ) \ <nl> + _ ( ExprBasicValueTest ) \ <nl> + _ ( ExprBasicValueTest02 ) \ <nl> + _ ( ExprLetTest01 ) \ <nl> + _ ( ExprLetStmtTest01 ) \ <nl> + _ ( ExprLetTest02 ) \ <nl> + _ ( ExprIntTest ) \ <nl> + _ ( ExprFloatTest ) \ <nl> + _ ( ExprByteTest ) \ <nl> + _ ( ExprCharTest ) \ <nl> + _ ( ExprShortTest ) \ <nl> + _ ( ExprLongTest ) \ <nl> + _ ( ExprHalfTest ) \ <nl> + _ ( ExprDoubleTest ) \ <nl> + _ ( ExprVectorAdd01 ) \ <nl> + _ ( ExprCompareSelectEQ ) \ <nl> + _ ( ExprSubstitute01 ) \ <nl> + _ ( ExprMath01 ) \ <nl> + _ ( ExprUnaryMath01 ) \ <nl> + _ ( ExprBinaryMath01 ) \ <nl> + _ ( ExprDynamicShapeAdd ) \ <nl> + _ ( ExprBitwiseOps ) \ <nl> + _ ( IRPrinterBasicValueTest ) \ <nl> + _ ( IRPrinterBasicValueTest02 ) \ <nl> + _ ( IRPrinterLetTest01 ) \ <nl> + _ ( IRPrinterLetTest02 ) \ <nl> + _ ( IRPrinterCastTest ) \ <nl> + _ ( ExprSimple01 ) \ <nl> + _ ( ExprLower01 ) \ <nl> + _ ( ExprSimple02 ) \ <nl> + _ ( ExprSplitWithTailNone ) \ <nl> + _ ( ExprSplitWithMask01 ) \ <nl> + _ ( ScheduleBroadcastAddBuffer ) \ <nl> + _ ( ScheduleFunctionCall01 ) \ <nl> + _ ( ScheduleInlineFunc01 ) \ <nl> + _ ( ScheduleFuserStyle ) \ <nl> + _ ( ScheduleFuserThreeArg ) \ <nl> + _ ( ScheduleDynamicShape2D ) \ <nl> + _ ( TypeTest01 ) \ <nl> + _ ( TypePropagation ) \ <nl> + _ ( Cond01 ) \ <nl> + _ ( IfThenElse01 ) \ <nl> + _ ( IfThenElse02 ) \ <nl> + _ ( ATen_cast_Float ) \ <nl> + _ ( ATennegInt ) \ <nl> + _ ( ATennegFloat ) \ <nl> + _ ( ATenaddInt ) \ <nl> + _ ( ATenaddFloat ) \ <nl> + _ ( ATensubInt ) \ <nl> + _ ( ATensubFloat ) \ <nl> + _ ( ATenlerp ) \ <nl> + _ ( ATenaddcmulInt ) \ <nl> + _ ( ATenaddcmulFloat ) \ <nl> + _ ( ATenmulInt ) \ <nl> + _ ( ATenmulFloat ) \ <nl> + _ ( ATendivInt ) \ <nl> + _ ( ATendivFloat ) \ <nl> + _ ( ATenmaxInt ) \ <nl> + _ ( ATenmaxFloat ) \ <nl> + _ ( ATenminInt ) \ <nl> + _ ( ATenminFloat ) \ <nl> + _ ( ATen_sigmoid_backward ) \ <nl> + _ ( ATen_tanh_backward ) \ <nl> + _ ( ATenreciprocal ) \ <nl> + _ ( ATenreluInt ) \ <nl> + _ ( ATenreluFloat ) \ <nl> + _ ( ATenlogFloat ) \ <nl> + _ ( ATenlog10Float ) \ <nl> + _ ( ATenlog2Float ) \ <nl> + _ ( ATenexpFloat ) \ <nl> + _ ( ATenerfFloat ) \ <nl> + _ ( ATencosFloat ) \ <nl> + _ ( ATeneqInt ) \ <nl> + _ ( ATengeInt ) \ <nl> + _ ( ATengtInt ) \ <nl> + _ ( ATenleInt ) \ <nl> + _ ( ATenltInt ) \ <nl> + _ ( ConstantFoldSimple ) \ <nl> + _ ( ConstantFoldTwoLayer ) \ <nl> + _ ( ConstantFoldShifts ) \ <nl> + _ ( ConstantFoldBitwise ) \ <nl> + _ ( ConstantFoldMultiOp ) \ <nl> + _ ( ConstantFoldMinMax ) \ <nl> + _ ( ConstantFoldIntrinsics ) \ <nl> + _ ( ConstantFoldWithVar ) \ <nl> + _ ( UnFoldableExpr ) \ <nl> + _ ( HashSimple ) \ <nl> + _ ( HashEquivalence ) \ <nl> + _ ( HashEquivalenceAfterFolding ) \ <nl> + _ ( HashDifferenceTypes ) \ <nl> + _ ( HashLargeExpression ) \ <nl> + _ ( SimplifyAdd ) \ <nl> + _ ( SimplifySub ) \ <nl> + _ ( SimplifyMultiLayer ) \ <nl> + _ ( SimplifyMultiTerm ) \ <nl> + _ ( SimplifyCasts ) \ <nl> + _ ( SimplifyEliminatesNoOps ) \ <nl> + _ ( SimplifyMultiVar ) \ <nl> + _ ( SimplifyEliminatesVar ) \ <nl> _ ( StmtClone ) <nl> <nl> - # define TH_FORALL_TESTS_LLVM ( _ ) \ <nl> - _ ( LLVMByteImmTest ) \ <nl> - _ ( LLVMCharImmTest ) \ <nl> - _ ( LLVMShortImmTest ) \ <nl> - _ ( LLVMIntImmTest ) \ <nl> - _ ( LLVMLongImmTest ) \ <nl> - _ ( LLVMFloatImmTest ) \ <nl> - _ ( LLVMDoubleImmTest ) \ <nl> - _ ( LLVMHalfImmTest ) \ <nl> - _ ( LLVMByteAddTest ) \ <nl> - _ ( LLVMCharAddTest ) \ <nl> - _ ( LLVMShortAddTest ) \ <nl> - _ ( LLVMIntAddTest ) \ <nl> - _ ( LLVMLongAddTest ) \ <nl> - _ ( LLVMFloatAddTest ) \ <nl> - _ ( LLVMDoubleAddTest ) \ <nl> - _ ( LLVMHalfAddTest ) \ <nl> - _ ( LLVMByteSubTest ) \ <nl> - _ ( LLVMCharSubTest ) \ <nl> - _ ( LLVMShortSubTest ) \ <nl> - _ ( LLVMIntSubTest ) \ <nl> - _ ( LLVMLongSubTest ) \ <nl> - _ ( LLVMFloatSubTest ) \ <nl> - _ ( LLVMDoubleSubTest ) \ <nl> - _ ( LLVMHalfSubTest ) \ <nl> - _ ( LLVMByteMulTest ) \ <nl> - _ ( LLVMCharMulTest ) \ <nl> - _ ( LLVMShortMulTest ) \ <nl> - _ ( LLVMIntMulTest ) \ <nl> - _ ( LLVMLongMulTest ) \ <nl> - _ ( LLVMFloatMulTest ) \ <nl> - _ ( LLVMDoubleMulTest ) \ <nl> - _ ( LLVMHalfMulTest ) \ <nl> - _ ( LLVMByteDivTest ) \ <nl> - _ ( LLVMCharDivTest ) \ <nl> - _ ( LLVMShortDivTest ) \ <nl> - _ ( LLVMIntDivTest ) \ <nl> - _ ( LLVMLongDivTest ) \ <nl> - _ ( LLVMFloatDivTest ) \ <nl> - _ ( LLVMDoubleDivTest ) \ <nl> - _ ( LLVMHalfDivTest ) \ <nl> - _ ( LLVMIntToFloatCastTest ) \ <nl> - _ ( LLVMFloatToIntCastTest ) \ <nl> - _ ( LLVMIntToLongCastTest ) \ <nl> - _ ( LLVMByteToCharCastTest ) \ <nl> - _ ( LLVMHalfToLongCastTest ) \ <nl> - _ ( LLVMByteToDoubleCastTest ) \ <nl> - _ ( LLVMLetTest01 ) \ <nl> - _ ( LLVMLetTest02 ) \ <nl> - _ ( LLVMLetTestMultitype ) \ <nl> - _ ( LLVMBufferTest ) \ <nl> - _ ( LLVMBlockTest ) \ <nl> - _ ( LLVMLoadStoreTest ) \ <nl> - _ ( LLVMVecLoadStoreTest ) \ <nl> - _ ( LLVMVecFloat_acosLane4Test ) \ <nl> - _ ( LLVMVecFloat_asinLane4Test ) \ <nl> - _ ( LLVMVecFloat_atanLane4Test ) \ <nl> - _ ( LLVMVecFloat_coshLane4Test ) \ <nl> - _ ( LLVMVecFloat_sinhLane4Test ) \ <nl> - _ ( LLVMVecFloat_tanhLane4Test ) \ <nl> - _ ( LLVMVecFloat_erfLane4Test ) \ <nl> - _ ( LLVMVecFloat_erfcLane4Test ) \ <nl> - _ ( LLVMVecFloat_expm1Lane4Test ) \ <nl> - _ ( LLVMVecFloat_lgammaLane4Test ) \ <nl> - _ ( LLVMVecFloat_acosLane8Test ) \ <nl> - _ ( LLVMVecFloat_asinLane8Test ) \ <nl> - _ ( LLVMVecFloat_atanLane8Test ) \ <nl> - _ ( LLVMVecFloat_coshLane8Test ) \ <nl> - _ ( LLVMVecFloat_sinhLane8Test ) \ <nl> - _ ( LLVMVecFloat_tanhLane8Test ) \ <nl> - _ ( LLVMVecFloat_erfLane8Test ) \ <nl> - _ ( LLVMVecFloat_erfcLane8Test ) \ <nl> - _ ( LLVMVecFloat_expm1Lane8Test ) \ <nl> - _ ( LLVMVecFloat_lgammaLane8Test ) \ <nl> - _ ( LLVMVecDouble_acosLane2Test ) \ <nl> - _ ( LLVMVecDouble_asinLane2Test ) \ <nl> - _ ( LLVMVecDouble_atanLane2Test ) \ <nl> - _ ( LLVMVecDouble_coshLane2Test ) \ <nl> - _ ( LLVMVecDouble_sinhLane2Test ) \ <nl> - _ ( LLVMVecDouble_tanhLane2Test ) \ <nl> - _ ( LLVMVecDouble_erfLane2Test ) \ <nl> - _ ( LLVMVecDouble_erfcLane2Test ) \ <nl> - _ ( LLVMVecDouble_expm1Lane2Test ) \ <nl> - _ ( LLVMVecDouble_lgammaLane2Test ) \ <nl> - _ ( LLVMVecDouble_acosLane4Test ) \ <nl> - _ ( LLVMVecDouble_asinLane4Test ) \ <nl> - _ ( LLVMVecDouble_atanLane4Test ) \ <nl> - _ ( LLVMVecDouble_coshLane4Test ) \ <nl> - _ ( LLVMVecDouble_sinhLane4Test ) \ <nl> - _ ( LLVMVecDouble_tanhLane4Test ) \ <nl> - _ ( LLVMVecDouble_erfLane4Test ) \ <nl> - _ ( LLVMVecDouble_erfcLane4Test ) \ <nl> - _ ( LLVMVecDouble_expm1Lane4Test ) \ <nl> - _ ( LLVMVecDouble_lgammaLane4Test ) \ <nl> - _ ( LLVMMemcpyTest ) \ <nl> - _ ( LLVMBzeroTest ) \ <nl> - _ ( LLVMElemwiseAdd ) \ <nl> - _ ( LLVMElemwiseAddFloat ) \ <nl> - _ ( LLVMElemwiseLog10Float ) \ <nl> - _ ( LLVMElemwiseMaxInt ) \ <nl> - _ ( LLVMElemwiseMinInt ) \ <nl> - _ ( LLVMElemwiseMaxNumFloat ) \ <nl> - _ ( LLVMElemwiseMaxNumNaNFloat ) \ <nl> - _ ( LLVMElemwiseMinNumFloat ) \ <nl> - _ ( LLVMElemwiseMinNumNaNFloat ) \ <nl> - _ ( LLVMCompareSelectIntEQ ) \ <nl> - _ ( LLVMCompareSelectFloatEQ ) \ <nl> - _ ( LLVMStoreFloat ) \ <nl> - _ ( LLVMSimpleMath01 ) \ <nl> - _ ( LLVMComputeMul ) \ <nl> - _ ( LLVMBroadcastAdd ) \ <nl> - _ ( LLVMBitwiseOps ) \ <nl> - _ ( LLVMDynamicShapeAdd ) \ <nl> - _ ( LLVMBindDynamicShapeAdd ) \ <nl> - _ ( LLVMTensorDynamicShapeAdd ) \ <nl> - _ ( LLVMDynamicShape2D ) \ <nl> - _ ( LLVMIfThenElseTest ) \ <nl> + # define TH_FORALL_TENSOREXPR_TESTS_LLVM ( _ ) \ <nl> + _ ( LLVMByteImmTest ) \ <nl> + _ ( LLVMCharImmTest ) \ <nl> + _ ( LLVMShortImmTest ) \ <nl> + _ ( LLVMIntImmTest ) \ <nl> + _ ( LLVMLongImmTest ) \ <nl> + _ ( LLVMFloatImmTest ) \ <nl> + _ ( LLVMDoubleImmTest ) \ <nl> + _ ( LLVMHalfImmTest ) \ <nl> + _ ( LLVMByteAddTest ) \ <nl> + _ ( LLVMCharAddTest ) \ <nl> + _ ( LLVMShortAddTest ) \ <nl> + _ ( LLVMIntAddTest ) \ <nl> + _ ( LLVMLongAddTest ) \ <nl> + _ ( LLVMFloatAddTest ) \ <nl> + _ ( LLVMDoubleAddTest ) \ <nl> + _ ( LLVMHalfAddTest ) \ <nl> + _ ( LLVMByteSubTest ) \ <nl> + _ ( LLVMCharSubTest ) \ <nl> + _ ( LLVMShortSubTest ) \ <nl> + _ ( LLVMIntSubTest ) \ <nl> + _ ( LLVMLongSubTest ) \ <nl> + _ ( LLVMFloatSubTest ) \ <nl> + _ ( LLVMDoubleSubTest ) \ <nl> + _ ( LLVMHalfSubTest ) \ <nl> + _ ( LLVMByteMulTest ) \ <nl> + _ ( LLVMCharMulTest ) \ <nl> + _ ( LLVMShortMulTest ) \ <nl> + _ ( LLVMIntMulTest ) \ <nl> + _ ( LLVMLongMulTest ) \ <nl> + _ ( LLVMFloatMulTest ) \ <nl> + _ ( LLVMDoubleMulTest ) \ <nl> + _ ( LLVMHalfMulTest ) \ <nl> + _ ( LLVMByteDivTest ) \ <nl> + _ ( LLVMCharDivTest ) \ <nl> + _ ( LLVMShortDivTest ) \ <nl> + _ ( LLVMIntDivTest ) \ <nl> + _ ( LLVMLongDivTest ) \ <nl> + _ ( LLVMFloatDivTest ) \ <nl> + _ ( LLVMDoubleDivTest ) \ <nl> + _ ( LLVMHalfDivTest ) \ <nl> + _ ( LLVMIntToFloatCastTest ) \ <nl> + _ ( LLVMFloatToIntCastTest ) \ <nl> + _ ( LLVMIntToLongCastTest ) \ <nl> + _ ( LLVMByteToCharCastTest ) \ <nl> + _ ( LLVMHalfToLongCastTest ) \ <nl> + _ ( LLVMByteToDoubleCastTest ) \ <nl> + _ ( LLVMLetTest01 ) \ <nl> + _ ( LLVMLetTest02 ) \ <nl> + _ ( LLVMLetTestMultitype ) \ <nl> + _ ( LLVMBufferTest ) \ <nl> + _ ( LLVMBlockTest ) \ <nl> + _ ( LLVMLoadStoreTest ) \ <nl> + _ ( LLVMVecLoadStoreTest ) \ <nl> + _ ( LLVMVecFloat_acosLane4Test ) \ <nl> + _ ( LLVMVecFloat_asinLane4Test ) \ <nl> + _ ( LLVMVecFloat_atanLane4Test ) \ <nl> + _ ( LLVMVecFloat_coshLane4Test ) \ <nl> + _ ( LLVMVecFloat_sinhLane4Test ) \ <nl> + _ ( LLVMVecFloat_tanhLane4Test ) \ <nl> + _ ( LLVMVecFloat_erfLane4Test ) \ <nl> + _ ( LLVMVecFloat_erfcLane4Test ) \ <nl> + _ ( LLVMVecFloat_expm1Lane4Test ) \ <nl> + _ ( LLVMVecFloat_lgammaLane4Test ) \ <nl> + _ ( LLVMVecFloat_acosLane8Test ) \ <nl> + _ ( LLVMVecFloat_asinLane8Test ) \ <nl> + _ ( LLVMVecFloat_atanLane8Test ) \ <nl> + _ ( LLVMVecFloat_coshLane8Test ) \ <nl> + _ ( LLVMVecFloat_sinhLane8Test ) \ <nl> + _ ( LLVMVecFloat_tanhLane8Test ) \ <nl> + _ ( LLVMVecFloat_erfLane8Test ) \ <nl> + _ ( LLVMVecFloat_erfcLane8Test ) \ <nl> + _ ( LLVMVecFloat_expm1Lane8Test ) \ <nl> + _ ( LLVMVecFloat_lgammaLane8Test ) \ <nl> + _ ( LLVMVecDouble_acosLane2Test ) \ <nl> + _ ( LLVMVecDouble_asinLane2Test ) \ <nl> + _ ( LLVMVecDouble_atanLane2Test ) \ <nl> + _ ( LLVMVecDouble_coshLane2Test ) \ <nl> + _ ( LLVMVecDouble_sinhLane2Test ) \ <nl> + _ ( LLVMVecDouble_tanhLane2Test ) \ <nl> + _ ( LLVMVecDouble_erfLane2Test ) \ <nl> + _ ( LLVMVecDouble_erfcLane2Test ) \ <nl> + _ ( LLVMVecDouble_expm1Lane2Test ) \ <nl> + _ ( LLVMVecDouble_lgammaLane2Test ) \ <nl> + _ ( LLVMVecDouble_acosLane4Test ) \ <nl> + _ ( LLVMVecDouble_asinLane4Test ) \ <nl> + _ ( LLVMVecDouble_atanLane4Test ) \ <nl> + _ ( LLVMVecDouble_coshLane4Test ) \ <nl> + _ ( LLVMVecDouble_sinhLane4Test ) \ <nl> + _ ( LLVMVecDouble_tanhLane4Test ) \ <nl> + _ ( LLVMVecDouble_erfLane4Test ) \ <nl> + _ ( LLVMVecDouble_erfcLane4Test ) \ <nl> + _ ( LLVMVecDouble_expm1Lane4Test ) \ <nl> + _ ( LLVMVecDouble_lgammaLane4Test ) \ <nl> + _ ( LLVMMemcpyTest ) \ <nl> + _ ( LLVMBzeroTest ) \ <nl> + _ ( LLVMElemwiseAdd ) \ <nl> + _ ( LLVMElemwiseAddFloat ) \ <nl> + _ ( LLVMElemwiseLog10Float ) \ <nl> + _ ( LLVMElemwiseMaxInt ) \ <nl> + _ ( LLVMElemwiseMinInt ) \ <nl> + _ ( LLVMElemwiseMaxNumFloat ) \ <nl> + _ ( LLVMElemwiseMaxNumNaNFloat ) \ <nl> + _ ( LLVMElemwiseMinNumFloat ) \ <nl> + _ ( LLVMElemwiseMinNumNaNFloat ) \ <nl> + _ ( LLVMCompareSelectIntEQ ) \ <nl> + _ ( LLVMCompareSelectFloatEQ ) \ <nl> + _ ( LLVMStoreFloat ) \ <nl> + _ ( LLVMSimpleMath01 ) \ <nl> + _ ( LLVMComputeMul ) \ <nl> + _ ( LLVMBroadcastAdd ) \ <nl> + _ ( LLVMBitwiseOps ) \ <nl> + _ ( LLVMDynamicShapeAdd ) \ <nl> + _ ( LLVMBindDynamicShapeAdd ) \ <nl> + _ ( LLVMTensorDynamicShapeAdd ) \ <nl> + _ ( LLVMDynamicShape2D ) \ <nl> + _ ( LLVMIfThenElseTest ) \ <nl> _ ( LLVMVectorizerLoadStoreTest ) <nl> <nl> - # define TH_FORALL_TESTS_CUDA ( _ ) \ <nl> - _ ( CudaTestVectorAdd01 ) \ <nl> - _ ( CudaTestVectorAdd02 ) \ <nl> - _ ( CudaDynamicShape2D ) \ <nl> - _ ( CudaTestRand01 ) \ <nl> + # define TH_FORALL_TENSOREXPR_TESTS_CUDA ( _ ) \ <nl> + _ ( CudaTestVectorAdd01 ) \ <nl> + _ ( CudaTestVectorAdd02 ) \ <nl> + _ ( CudaDynamicShape2D ) \ <nl> + _ ( CudaTestRand01 ) \ <nl> _ ( CudaDynamicShapeSplit ) <nl> <nl> # define DECLARE_TENSOREXPR_TEST ( name ) void test # # name ( ) ; <nl> - TH_FORALL_TESTS ( DECLARE_TENSOREXPR_TEST ) <nl> + TH_FORALL_TENSOREXPR_TESTS ( DECLARE_TENSOREXPR_TEST ) <nl> # ifdef TORCH_ENABLE_LLVM <nl> - TH_FORALL_TESTS_LLVM ( DECLARE_TENSOREXPR_TEST ) <nl> + TH_FORALL_TENSOREXPR_TESTS_LLVM ( DECLARE_TENSOREXPR_TEST ) <nl> # endif <nl> # ifdef USE_CUDA <nl> - TH_FORALL_TESTS_CUDA ( DECLARE_TENSOREXPR_TEST ) <nl> + TH_FORALL_TENSOREXPR_TESTS_CUDA ( DECLARE_TENSOREXPR_TEST ) <nl> # endif <nl> # undef DECLARE_TENSOREXPR_TEST <nl> <nl> mmm a / test / test_jit . py <nl> ppp b / test / test_jit . py <nl> def test_cpp_cuda ( self ) : <nl> torch . _C . _jit_run_cpp_tests ( run_cuda = True ) <nl> tests_setup . shutdown ( ) <nl> <nl> + @ unittest . skipIf ( IS_SANDCASTLE , " gtest runs these in sandcastle " ) <nl> + @ unittest . skipIf ( RUN_CUDA , " covered by test_tensorexpr_cuda " ) <nl> + @ unittest . skipIf ( IS_WINDOWS , " enable on windows " ) <nl> + @ unittest . skipIf ( not torch . _C . _has_tensorexpr_cpp_tests ( ) , " Tests were not built , use BUILD_TEST = 1 " ) <nl> + @ skipIfRocm <nl> + def test_tensorexpr_cpp ( self ) : <nl> + torch . _C . _run_tensorexpr_cpp_tests ( run_cuda = False ) <nl> + <nl> + @ unittest . skipIf ( IS_SANDCASTLE , " gtest runs these in sandcastle " ) <nl> + @ unittest . skipIf ( not RUN_CUDA , " covered by test_tensorexpr " ) <nl> + @ unittest . skipIf ( IS_WINDOWS , " enable on windows " ) <nl> + @ unittest . skipIf ( not torch . _C . _has_tensorexpr_cpp_tests ( ) , " Tests were not built , use BUILD_TEST = 1 " ) <nl> + @ skipIfRocm <nl> + def test_tensorexpr_cpp_cuda ( self ) : <nl> + torch . _C . _run_tensorexpr_cpp_tests ( run_cuda = True ) <nl> + <nl> def test_batchnorm ( self ) : <nl> x = torch . ones ( 2 , 2 , 2 , 2 ) <nl> g , outputs , inputs = torch . jit . _get_trace_graph ( nn . BatchNorm2d ( 2 ) , x , <nl> mmm a / tools / build_variables . bzl <nl> ppp b / tools / build_variables . bzl <nl> def add_torch_libs ( ) : <nl> " torch / csrc / utils / tensor_numpy . cpp " , <nl> " torch / csrc / utils / tensor_types . cpp " , <nl> " test / cpp / jit / torch_python_test . cpp " , <nl> + " test / cpp / tensorexpr / padded_buffer . cpp " , <nl> ] <nl> <nl> libtorch_python_sources . extend ( native . glob ( [ " test / cpp / jit / test_ * . cpp " ] ) ) <nl> + libtorch_python_sources . extend ( native . glob ( [ " test / cpp / tensorexpr / test_ * . cpp " ] ) ) <nl> <nl> compiler_flags_cpu = [ <nl> " - DUSE_C10D " , <nl> def add_torch_libs ( ) : <nl> " - Wno - unknown - pragmas " , <nl> ] , <nl> } , <nl> - " headers " : native . glob ( [ " torch / csrc / * * / * . h " , " torch / csrc / generic / * . cpp " , " test / cpp / jit / * . h " ] ) , <nl> + " headers " : native . glob ( [ " torch / csrc / * * / * . h " , " torch / csrc / generic / * . cpp " , " test / cpp / jit / * . h " , " test / cpp / tensorexpr / * . h " ] ) , <nl> } <nl> propagated_pp_flags = [ <nl> " - Icaffe2 " , <nl> mmm a / torch / CMakeLists . txt <nl> ppp b / torch / CMakeLists . txt <nl> if ( BUILD_TEST AND NOT USE_ROCM ) <nl> add_definitions ( - DBUILDING_TESTS ) <nl> list ( APPEND TORCH_PYTHON_SRCS <nl> $ { TORCH_ROOT } / test / cpp / jit / torch_python_test . cpp <nl> + $ { TENSOREXPR_TEST_SRCS_WITH_PADDED } <nl> $ { JIT_TEST_SRCS } <nl> ) <nl> endif ( ) <nl> mmm a / torch / csrc / jit / python / init . cpp <nl> ppp b / torch / csrc / jit / python / init . cpp <nl> bool loadPythonClasses ( ) { <nl> <nl> # if ! defined ( __HIP_PLATFORM_HCC__ ) <nl> TORCH_API void runJITCPPTests ( bool runCuda ) ; <nl> + TORCH_API void runTENSOREXPRCPPTests ( bool runCuda ) ; <nl> # endif <nl> <nl> void initJITBindings ( PyObject * module ) { <nl> void initJITBindings ( PyObject * module ) { <nl> } , <nl> py : : arg ( " run_cuda " ) ) <nl> . def ( " _jit_has_cpp_tests " , [ ] ( ) { return true ; } ) <nl> + . def ( <nl> + " _run_tensorexpr_cpp_tests " , <nl> + [ ] ( bool runCuda ) { <nl> + / / We have to release the GIL inside this method , because if we <nl> + / / happen to initialize the autograd engine in these tests , the <nl> + / / newly spawned worker threads will try to initialize their <nl> + / / PyThreadState * , and they need the GIL for this . <nl> + pybind11 : : gil_scoped_release _no_gil ; <nl> + return runTENSOREXPRCPPTests ( runCuda ) ; <nl> + } , <nl> + py : : arg ( " run_cuda " ) ) <nl> + . def ( " _has_tensorexpr_cpp_tests " , [ ] ( ) { return true ; } ) <nl> # else <nl> . def ( " _jit_run_cpp_tests " , [ ] ( ) { throw std : : exception ( ) ; } ) <nl> . def ( " _jit_has_cpp_tests " , [ ] ( ) { return false ; } ) <nl> + . def ( " _run_tensorexpr_cpp_tests " , [ ] ( ) { throw std : : exception ( ) ; } ) <nl> + . def ( " _has_tensorexpr_cpp_tests " , [ ] ( ) { return false ; } ) <nl> # endif <nl> . def ( <nl> " _jit_flatten " , <nl> mmm a / torch / csrc / jit / tensorexpr / eval . h <nl> ppp b / torch / csrc / jit / tensorexpr / eval . h <nl> <nl> # include < unordered_map > <nl> # include < vector > <nl> <nl> + # include < c10 / macros / Macros . h > <nl> # include < c10 / util / Logging . h > <nl> # include < torch / csrc / jit / tensorexpr / buffer . h > <nl> # include < torch / csrc / jit / tensorexpr / codegen . h > <nl> inline bool mod_value ( bool lhs , bool rhs ) { <nl> throw std : : runtime_error ( " Attempted modulus of bool " ) ; <nl> } <nl> <nl> + template < typename T > <nl> + inline typename std : : enable_if < std : : is_integral < T > : : value , T > : : type div_value ( <nl> + T lhs , <nl> + T rhs ) { <nl> + TORCH_CHECK ( rhs ! = 0 , " Division by zero " ) ; <nl> + return lhs / rhs ; <nl> + } <nl> + <nl> + template < typename T > <nl> + inline typename std : : enable_if < std : : is_floating_point < T > : : value , T > : : <nl> + type __ubsan_ignore_float_divide_by_zero__ <nl> + div_value ( T lhs , T rhs ) { <nl> + return lhs / rhs ; <nl> + } <nl> + <nl> + inline bool div_value ( bool lhs , bool rhs ) { <nl> + LOG ( FATAL ) < < " Attempted division of bool " ; <nl> + return false ; <nl> + } <nl> + <nl> class SimpleIREvaluator : public CodeGen , public IRVisitor { <nl> public : <nl> using CodeGen : : CodeGen ; <nl> class SimpleIREvaluator : public CodeGen , public IRVisitor { <nl> result_v [ i ] = lhs_v [ i ] * rhs_v [ i ] ; <nl> break ; <nl> case IRNodeType : : kDiv : <nl> - result_v [ i ] = lhs_v [ i ] / rhs_v [ i ] ; <nl> + result_v [ i ] = div_value ( lhs_v [ i ] , rhs_v [ i ] ) ; <nl> break ; <nl> case IRNodeType : : kMod : <nl> result_v [ i ] = mod_value ( lhs_v [ i ] , rhs_v [ i ] ) ; <nl>
Enable tensorexpr cpp tests in CI . try ( )
pytorch/pytorch
9e22d15f14a9a5ca4daf88137c25b34900d758ff
2020-03-27T19:09:55Z
mmm a / aten / src / ATen / NumericUtils . h <nl> ppp b / aten / src / ATen / NumericUtils . h <nl> <nl> # include < complex > <nl> # include < type_traits > <nl> # include < c10 / util / BFloat16 . h > <nl> - # include < c10 / util / LegacyComplex . h > <nl> # include < c10 / util / Half . h > <nl> # include < c10 / macros / Macros . h > <nl> <nl> mmm a / aten / src / ATen / test / CMakeLists . txt <nl> ppp b / aten / src / ATen / test / CMakeLists . txt <nl> list ( APPEND ATen_CPU_TEST_SRCS <nl> $ { CMAKE_CURRENT_SOURCE_DIR } / memory_format_test . cpp <nl> $ { CMAKE_CURRENT_SOURCE_DIR } / cpu_rng_test . cpp <nl> $ { CMAKE_CURRENT_SOURCE_DIR } / ivalue_test . cpp <nl> - $ { CMAKE_CURRENT_SOURCE_DIR } / complex_test . cpp <nl> $ { CMAKE_CURRENT_SOURCE_DIR } / vmap_test . cpp <nl> $ { CMAKE_CURRENT_SOURCE_DIR } / type_test . cpp ) <nl> <nl> deleted file mode 100644 <nl> index 918e5779c255 . . 000000000000 <nl> mmm a / aten / src / ATen / test / complex_test . cpp <nl> ppp / dev / null <nl> <nl> - # include < gtest / gtest . h > <nl> - # include < c10 / util / LegacyComplex . h > <nl> - <nl> - template < typename T , typename int_t > <nl> - static void TestBinaryOpsForIntType ( T real , T img , int_t num ) { <nl> - std : : complex < T > c ( real , img ) ; <nl> - ASSERT_EQ ( c + num , std : : complex < T > ( real + num , img ) ) ; <nl> - ASSERT_EQ ( num + c , std : : complex < T > ( num + real , img ) ) ; <nl> - ASSERT_EQ ( c - num , std : : complex < T > ( real - num , img ) ) ; <nl> - ASSERT_EQ ( num - c , std : : complex < T > ( num - real , - img ) ) ; <nl> - ASSERT_EQ ( c * num , std : : complex < T > ( real * num , img * num ) ) ; <nl> - ASSERT_EQ ( num * c , std : : complex < T > ( num * real , num * img ) ) ; <nl> - ASSERT_EQ ( c / num , std : : complex < T > ( real / num , img / num ) ) ; <nl> - T r2 = real * real + img * img ; <nl> - ASSERT_EQ ( num / c , std : : complex < T > ( num * real / r2 , - num * img / r2 ) ) ; <nl> - } <nl> - <nl> - template < typename T > <nl> - static void TestBinaryOpsForAllIntTypes ( T real , T img , int8_t i ) { <nl> - TestBinaryOpsForIntType < T , int8_t > ( real , img , i ) ; <nl> - TestBinaryOpsForIntType < T , int16_t > ( real , img , i ) ; <nl> - TestBinaryOpsForIntType < T , int32_t > ( real , img , i ) ; <nl> - TestBinaryOpsForIntType < T , int64_t > ( real , img , i ) ; <nl> - } <nl> - <nl> - TEST ( ComplexTest , Integer ) { <nl> - TestBinaryOpsForAllIntTypes < float > ( 1 . 0 , 0 . 1 , 1 ) ; <nl> - TestBinaryOpsForAllIntTypes < double > ( - 1 . 3 , - 0 . 2 , - 2 ) ; <nl> - } <nl> mmm a / aten / tools / run_tests . sh <nl> ppp b / aten / tools / run_tests . sh <nl> VALGRIND = $ { VALGRIND : = ON } <nl> . / atest <nl> . / scalar_test <nl> . / broadcast_test <nl> - . / complex_test <nl> . / wrapdim_test <nl> . / apply_utils_test <nl> . / dlconvertor_test <nl> deleted file mode 100644 <nl> index 6d76ee79ef61 . . 000000000000 <nl> mmm a / c10 / util / LegacyComplex . h <nl> ppp / dev / null <nl> <nl> - # pragma once <nl> - <nl> - # include < c10 / util / Half . h > <nl> - <nl> - <nl> - namespace std { <nl> - <nl> - template < > <nl> - class numeric_limits < std : : complex < float > > : public numeric_limits < float > { } ; <nl> - <nl> - template < > <nl> - class numeric_limits < std : : complex < double > > : public numeric_limits < double > { } ; <nl> - <nl> - # define COMPLEX_INTEGER_OP_TEMPLATE_CONDITION \ <nl> - typename std : : enable_if_t < std : : is_floating_point < fT > : : value & & std : : is_integral < iT > : : value , int > = 0 <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator + ( const std : : complex < fT > & a , const iT & b ) { return a + static_cast < fT > ( b ) ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator + ( const iT & a , const std : : complex < fT > & b ) { return static_cast < fT > ( a ) + b ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator - ( const std : : complex < fT > & a , const iT & b ) { return a - static_cast < fT > ( b ) ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator - ( const iT & a , const std : : complex < fT > & b ) { return static_cast < fT > ( a ) - b ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator * ( const std : : complex < fT > & a , const iT & b ) { return a * static_cast < fT > ( b ) ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator * ( const iT & a , const std : : complex < fT > & b ) { return static_cast < fT > ( a ) * b ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator / ( const std : : complex < fT > & a , const iT & b ) { return a / static_cast < fT > ( b ) ; } <nl> - <nl> - template < typename fT , typename iT , COMPLEX_INTEGER_OP_TEMPLATE_CONDITION > <nl> - std : : complex < fT > operator / ( const iT & a , const std : : complex < fT > & b ) { return static_cast < fT > ( a ) / b ; } <nl> - <nl> - # undef COMPLEX_INTEGER_OP_TEMPLATE_CONDITION <nl> - } / / namespace std <nl>
Remove LegacyComplex . h ( )
pytorch/pytorch
387688921879953f5334ef50496860bd0d8fc56e
2020-06-12T15:18:25Z
mmm a / modules / cudev / include / opencv2 / cudev / grid / detail / histogram . hpp <nl> ppp b / modules / cudev / include / opencv2 / cudev / grid / detail / histogram . hpp <nl> namespace grid_histogram_detail <nl> template < int BIN_COUNT , int BLOCK_SIZE , class SrcPtr , typename ResType , class MaskPtr > <nl> __global__ void histogram ( const SrcPtr src , ResType * hist , const MaskPtr mask , const int rows , const int cols ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 120 <nl> __shared__ ResType smem [ BIN_COUNT ] ; <nl> <nl> const int y = blockIdx . x * blockDim . y + threadIdx . y ; <nl> namespace grid_histogram_detail <nl> if ( histVal > 0 ) <nl> atomicAdd ( hist + i , histVal ) ; <nl> } <nl> + # endif <nl> } <nl> <nl> template < int BIN_COUNT , class Policy , class SrcPtr , typename ResType , class MaskPtr > <nl> mmm a / modules / cudev / include / opencv2 / cudev / grid / histogram . hpp <nl> ppp b / modules / cudev / include / opencv2 / cudev / grid / histogram . hpp <nl> namespace cv { namespace cudev { <nl> template < int BIN_COUNT , class Policy , class SrcPtr , typename ResType , class MaskPtr > <nl> __host__ void gridHistogram_ ( const SrcPtr & src , GpuMat_ < ResType > & dst , const MaskPtr & mask , Stream & stream = Stream : : Null ( ) ) <nl> { <nl> + CV_Assert ( deviceSupports ( SHARED_ATOMICS ) ) ; <nl> + <nl> const int rows = getRows ( src ) ; <nl> const int cols = getCols ( src ) ; <nl> <nl> __host__ void gridHistogram_ ( const SrcPtr & src , GpuMat_ < ResType > & dst , const Mas <nl> template < int BIN_COUNT , class Policy , class SrcPtr , typename ResType > <nl> __host__ void gridHistogram_ ( const SrcPtr & src , GpuMat_ < ResType > & dst , Stream & stream = Stream : : Null ( ) ) <nl> { <nl> + CV_Assert ( deviceSupports ( SHARED_ATOMICS ) ) ; <nl> + <nl> const int rows = getRows ( src ) ; <nl> const int cols = getCols ( src ) ; <nl> <nl> mmm a / modules / cudev / include / opencv2 / cudev / ptr2d / texture . hpp <nl> ppp b / modules / cudev / include / opencv2 / cudev / ptr2d / texture . hpp <nl> <nl> # include " gpumat . hpp " <nl> # include " traits . hpp " <nl> <nl> + namespace <nl> + { <nl> + template < typename T > struct CvCudevTextureRef <nl> + { <nl> + typedef texture < T , cudaTextureType2D , cudaReadModeElementType > TexRef ; <nl> + <nl> + static TexRef ref ; <nl> + <nl> + __host__ static void bind ( const cv : : cudev : : GlobPtrSz < T > & mat , <nl> + bool normalizedCoords = false , <nl> + cudaTextureFilterMode filterMode = cudaFilterModePoint , <nl> + cudaTextureAddressMode addressMode = cudaAddressModeClamp ) <nl> + { <nl> + ref . normalized = normalizedCoords ; <nl> + ref . filterMode = filterMode ; <nl> + ref . addressMode [ 0 ] = addressMode ; <nl> + ref . addressMode [ 1 ] = addressMode ; <nl> + ref . addressMode [ 2 ] = addressMode ; <nl> + <nl> + cudaChannelFormatDesc desc = cudaCreateChannelDesc < T > ( ) ; <nl> + <nl> + CV_CUDEV_SAFE_CALL ( cudaBindTexture2D ( 0 , & ref , mat . data , & desc , mat . cols , mat . rows , mat . step ) ) ; <nl> + } <nl> + <nl> + __host__ static void unbind ( ) <nl> + { <nl> + CV_CUDEV_SAFE_CALL ( cudaUnbindTexture ( ref ) ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename T > <nl> + typename CvCudevTextureRef < T > : : TexRef CvCudevTextureRef < T > : : ref ; <nl> + } <nl> + <nl> namespace cv { namespace cudev { <nl> <nl> template < typename T > struct TexturePtr <nl> template < typename T > struct TexturePtr <nl> <nl> __device__ __forceinline__ T operator ( ) ( float y , float x ) const <nl> { <nl> + # if CV_CUDEV_ARCH < 300 <nl> + / / Use the texture reference <nl> + return tex2D ( CvCudevTextureRef < T > : : ref , x , y ) ; <nl> + # else <nl> + / / Use the texture object <nl> return tex2D < T > ( texObj , x , y ) ; <nl> + # endif <nl> } <nl> } ; <nl> <nl> template < typename T > struct Texture : TexturePtr < T > <nl> { <nl> int rows , cols ; <nl> + bool cc30 ; <nl> <nl> __host__ explicit Texture ( const GlobPtrSz < T > & mat , <nl> bool normalizedCoords = false , <nl> cudaTextureFilterMode filterMode = cudaFilterModePoint , <nl> cudaTextureAddressMode addressMode = cudaAddressModeClamp ) <nl> { <nl> - CV_Assert ( deviceSupports ( FEATURE_SET_COMPUTE_30 ) ) ; <nl> - <nl> - rows = mat . rows ; <nl> - cols = mat . cols ; <nl> - <nl> - cudaResourceDesc texRes ; <nl> - std : : memset ( & texRes , 0 , sizeof ( texRes ) ) ; <nl> - texRes . resType = cudaResourceTypePitch2D ; <nl> - texRes . res . pitch2D . devPtr = mat . data ; <nl> - texRes . res . pitch2D . height = mat . rows ; <nl> - texRes . res . pitch2D . width = mat . cols ; <nl> - texRes . res . pitch2D . pitchInBytes = mat . step ; <nl> - texRes . res . pitch2D . desc = cudaCreateChannelDesc < T > ( ) ; <nl> - <nl> - cudaTextureDesc texDescr ; <nl> - std : : memset ( & texDescr , 0 , sizeof ( texDescr ) ) ; <nl> - texDescr . addressMode [ 0 ] = addressMode ; <nl> - texDescr . addressMode [ 1 ] = addressMode ; <nl> - texDescr . addressMode [ 2 ] = addressMode ; <nl> - texDescr . filterMode = filterMode ; <nl> - texDescr . readMode = cudaReadModeElementType ; <nl> - texDescr . normalizedCoords = normalizedCoords ; <nl> - <nl> - CV_CUDEV_SAFE_CALL ( cudaCreateTextureObject ( & this - > texObj , & texRes , & texDescr , 0 ) ) ; <nl> - } <nl> - <nl> - __host__ explicit Texture ( const GpuMat_ < T > & mat , <nl> - bool normalizedCoords = false , <nl> - cudaTextureFilterMode filterMode = cudaFilterModePoint , <nl> - cudaTextureAddressMode addressMode = cudaAddressModeClamp ) <nl> - { <nl> - CV_Assert ( deviceSupports ( FEATURE_SET_COMPUTE_30 ) ) ; <nl> + cc30 = deviceSupports ( FEATURE_SET_COMPUTE_30 ) ; <nl> <nl> rows = mat . rows ; <nl> cols = mat . cols ; <nl> <nl> - cudaResourceDesc texRes ; <nl> - std : : memset ( & texRes , 0 , sizeof ( texRes ) ) ; <nl> - texRes . resType = cudaResourceTypePitch2D ; <nl> - texRes . res . pitch2D . devPtr = mat . data ; <nl> - texRes . res . pitch2D . height = mat . rows ; <nl> - texRes . res . pitch2D . width = mat . cols ; <nl> - texRes . res . pitch2D . pitchInBytes = mat . step ; <nl> - texRes . res . pitch2D . desc = cudaCreateChannelDesc < T > ( ) ; <nl> - <nl> - cudaTextureDesc texDescr ; <nl> - std : : memset ( & texDescr , 0 , sizeof ( texDescr ) ) ; <nl> - texDescr . addressMode [ 0 ] = addressMode ; <nl> - texDescr . addressMode [ 1 ] = addressMode ; <nl> - texDescr . addressMode [ 2 ] = addressMode ; <nl> - texDescr . filterMode = filterMode ; <nl> - texDescr . readMode = cudaReadModeElementType ; <nl> - texDescr . normalizedCoords = normalizedCoords ; <nl> - <nl> - CV_CUDEV_SAFE_CALL ( cudaCreateTextureObject ( & this - > texObj , & texRes , & texDescr , 0 ) ) ; <nl> + if ( cc30 ) <nl> + { <nl> + / / Use the texture object <nl> + cudaResourceDesc texRes ; <nl> + std : : memset ( & texRes , 0 , sizeof ( texRes ) ) ; <nl> + texRes . resType = cudaResourceTypePitch2D ; <nl> + texRes . res . pitch2D . devPtr = mat . data ; <nl> + texRes . res . pitch2D . height = mat . rows ; <nl> + texRes . res . pitch2D . width = mat . cols ; <nl> + texRes . res . pitch2D . pitchInBytes = mat . step ; <nl> + texRes . res . pitch2D . desc = cudaCreateChannelDesc < T > ( ) ; <nl> + <nl> + cudaTextureDesc texDescr ; <nl> + std : : memset ( & texDescr , 0 , sizeof ( texDescr ) ) ; <nl> + texDescr . normalizedCoords = normalizedCoords ; <nl> + texDescr . filterMode = filterMode ; <nl> + texDescr . addressMode [ 0 ] = addressMode ; <nl> + texDescr . addressMode [ 1 ] = addressMode ; <nl> + texDescr . addressMode [ 2 ] = addressMode ; <nl> + texDescr . readMode = cudaReadModeElementType ; <nl> + <nl> + CV_CUDEV_SAFE_CALL ( cudaCreateTextureObject ( & this - > texObj , & texRes , & texDescr , 0 ) ) ; <nl> + } <nl> + else <nl> + { <nl> + / / Use the texture reference <nl> + CvCudevTextureRef < T > : : bind ( mat , normalizedCoords , filterMode , addressMode ) ; <nl> + } <nl> } <nl> <nl> __host__ ~ Texture ( ) <nl> { <nl> - cudaDestroyTextureObject ( this - > texObj ) ; <nl> + if ( cc30 ) <nl> + { <nl> + / / Use the texture object <nl> + cudaDestroyTextureObject ( this - > texObj ) ; <nl> + } <nl> + else <nl> + { <nl> + / / Use the texture reference <nl> + CvCudevTextureRef < T > : : unbind ( ) ; <nl> + } <nl> } <nl> } ; <nl> <nl> mmm a / modules / cudev / include / opencv2 / cudev / util / atomic . hpp <nl> ppp b / modules / cudev / include / opencv2 / cudev / util / atomic . hpp <nl> __device__ __forceinline__ uint atomicAdd ( uint * address , uint val ) <nl> <nl> __device__ __forceinline__ float atomicAdd ( float * address , float val ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 200 <nl> return : : atomicAdd ( address , val ) ; <nl> + # else <nl> + int * address_as_i = ( int * ) address ; <nl> + int old = * address_as_i , assumed ; <nl> + do { <nl> + assumed = old ; <nl> + old = : : atomicCAS ( address_as_i , assumed , <nl> + __float_as_int ( val + __int_as_float ( assumed ) ) ) ; <nl> + } while ( assumed ! = old ) ; <nl> + return __int_as_float ( old ) ; <nl> + # endif <nl> } <nl> <nl> __device__ static double atomicAdd ( double * address , double val ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 130 <nl> unsigned long long int * address_as_ull = ( unsigned long long int * ) address ; <nl> unsigned long long int old = * address_as_ull , assumed ; <nl> do { <nl> __device__ static double atomicAdd ( double * address , double val ) <nl> __double_as_longlong ( val + __longlong_as_double ( assumed ) ) ) ; <nl> } while ( assumed ! = old ) ; <nl> return __longlong_as_double ( old ) ; <nl> + # else <nl> + ( void ) address ; <nl> + ( void ) val ; <nl> + return 0 . 0 ; <nl> + # endif <nl> } <nl> <nl> / / atomicMin <nl> __device__ __forceinline__ uint atomicMin ( uint * address , uint val ) <nl> <nl> __device__ static float atomicMin ( float * address , float val ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 120 <nl> int * address_as_i = ( int * ) address ; <nl> int old = * address_as_i , assumed ; <nl> do { <nl> __device__ static float atomicMin ( float * address , float val ) <nl> __float_as_int ( : : fminf ( val , __int_as_float ( assumed ) ) ) ) ; <nl> } while ( assumed ! = old ) ; <nl> return __int_as_float ( old ) ; <nl> + # else <nl> + ( void ) address ; <nl> + ( void ) val ; <nl> + return 0 . 0f ; <nl> + # endif <nl> } <nl> <nl> __device__ static double atomicMin ( double * address , double val ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 130 <nl> unsigned long long int * address_as_ull = ( unsigned long long int * ) address ; <nl> unsigned long long int old = * address_as_ull , assumed ; <nl> do { <nl> __device__ static double atomicMin ( double * address , double val ) <nl> __double_as_longlong ( : : fmin ( val , __longlong_as_double ( assumed ) ) ) ) ; <nl> } while ( assumed ! = old ) ; <nl> return __longlong_as_double ( old ) ; <nl> + # else <nl> + ( void ) address ; <nl> + ( void ) val ; <nl> + return 0 . 0 ; <nl> + # endif <nl> } <nl> <nl> / / atomicMax <nl> __device__ __forceinline__ uint atomicMax ( uint * address , uint val ) <nl> <nl> __device__ static float atomicMax ( float * address , float val ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 120 <nl> int * address_as_i = ( int * ) address ; <nl> int old = * address_as_i , assumed ; <nl> do { <nl> __device__ static float atomicMax ( float * address , float val ) <nl> __float_as_int ( : : fmaxf ( val , __int_as_float ( assumed ) ) ) ) ; <nl> } while ( assumed ! = old ) ; <nl> return __int_as_float ( old ) ; <nl> + # else <nl> + ( void ) address ; <nl> + ( void ) val ; <nl> + return 0 . 0f ; <nl> + # endif <nl> } <nl> <nl> __device__ static double atomicMax ( double * address , double val ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 130 <nl> unsigned long long int * address_as_ull = ( unsigned long long int * ) address ; <nl> unsigned long long int old = * address_as_ull , assumed ; <nl> do { <nl> __device__ static double atomicMax ( double * address , double val ) <nl> __double_as_longlong ( : : fmax ( val , __longlong_as_double ( assumed ) ) ) ) ; <nl> } while ( assumed ! = old ) ; <nl> return __longlong_as_double ( old ) ; <nl> + # else <nl> + ( void ) address ; <nl> + ( void ) val ; <nl> + return 0 . 0 ; <nl> + # endif <nl> } <nl> <nl> } } <nl> mmm a / modules / cudev / include / opencv2 / cudev / util / saturate_cast . hpp <nl> ppp b / modules / cudev / include / opencv2 / cudev / util / saturate_cast . hpp <nl> template < > __device__ __forceinline__ int saturate_cast < int > ( float v ) <nl> } <nl> template < > __device__ __forceinline__ int saturate_cast < int > ( double v ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 130 <nl> return __double2int_rn ( v ) ; <nl> + # else <nl> + return saturate_cast < int > ( ( float ) v ) ; <nl> + # endif <nl> } <nl> <nl> template < > __device__ __forceinline__ uint saturate_cast < uint > ( schar v ) <nl> template < > __device__ __forceinline__ uint saturate_cast < uint > ( float v ) <nl> } <nl> template < > __device__ __forceinline__ uint saturate_cast < uint > ( double v ) <nl> { <nl> + # if CV_CUDEV_ARCH > = 130 <nl> return __double2uint_rn ( v ) ; <nl> + # else <nl> + return saturate_cast < uint > ( ( float ) v ) ; <nl> + # endif <nl> } <nl> <nl> } } <nl>
fixed cudev compilation for old pre - Fermi archs
opencv/opencv
20f636fcee646d5e7201be16dea0476e23ba9a6c
2013-09-17T13:43:12Z
mmm a / tensorflow / contrib / bayesflow / python / kernel_tests / stochastic_gradient_estimators_test . py <nl> ppp b / tensorflow / contrib / bayesflow / python / kernel_tests / stochastic_gradient_estimators_test . py <nl> def baseline_fn ( stoch_tensor , loss ) : <nl> <nl> def testScoreFunctionWithMeanBaseline ( self ) : <nl> ema_decay = 0 . 8 <nl> + num_steps = 6 <nl> x = st . BernoulliTensor ( <nl> p = self . _p , <nl> loss_fn = sge . get_score_function_with_baseline ( <nl> sge . get_mean_baseline ( ema_decay ) ) ) <nl> sf = x . loss ( self . _final_loss ) <nl> <nl> - expected = tf . log ( self . _p ) * ( self . _final_loss - <nl> - ( 1 . - ema_decay ) * self . _final_loss ) <nl> + # Expected EMA value <nl> + ema = 0 . <nl> + for _ in range ( num_steps ) : <nl> + ema - = ( 1 . - ema_decay ) * ( ema - self . _final_loss ) <nl> + <nl> + # Baseline is EMA with bias correction <nl> + bias_correction = 1 . - ema_decay * * num_steps <nl> + baseline = ema / bias_correction <nl> + expected = tf . log ( self . _p ) * ( self . _final_loss - baseline ) <nl> <nl> with self . test_session ( ) as sess : <nl> sess . run ( tf . initialize_all_variables ( ) ) <nl> - sess . run ( sf ) # run to update EMA <nl> + for _ in range ( num_steps - 1 ) : <nl> + sess . run ( sf ) # run to update EMA <nl> self . assertAllClose ( * sess . run ( [ expected , sf ] ) ) <nl> <nl> def testScoreFunctionWithAdvantageFn ( self ) : <nl> def advantage_fn ( stoch_tensor , loss ) : <nl> self . _testScoreFunction ( <nl> sge . get_score_function_with_advantage ( advantage_fn ) , expected ) <nl> <nl> + def testScoreFunctionWithMeanBaselineHasUniqueVarScope ( self ) : <nl> + ema_decay = 0 . 8 <nl> + x = st . BernoulliTensor ( <nl> + p = self . _p , <nl> + loss_fn = sge . get_score_function_with_baseline ( <nl> + sge . get_mean_baseline ( ema_decay ) ) ) <nl> + y = st . BernoulliTensor ( <nl> + p = self . _p , <nl> + loss_fn = sge . get_score_function_with_baseline ( <nl> + sge . get_mean_baseline ( ema_decay ) ) ) <nl> + sf_x = x . loss ( self . _final_loss ) <nl> + sf_y = y . loss ( self . _final_loss ) <nl> + with self . test_session ( ) as sess : <nl> + # Smoke test <nl> + sess . run ( tf . initialize_all_variables ( ) ) <nl> + sess . run ( [ sf_x , sf_y ] ) <nl> + <nl> <nl> if __name__ = = " __main__ " : <nl> tf . test . main ( ) <nl> mmm a / tensorflow / contrib / bayesflow / python / ops / stochastic_gradient_estimators . py <nl> ppp b / tensorflow / contrib / bayesflow / python / ops / stochastic_gradient_estimators . py <nl> <nl> from tensorflow . python . framework import ops <nl> from tensorflow . python . ops import array_ops <nl> from tensorflow . python . ops import math_ops <nl> + from tensorflow . python . ops import variable_scope as vs <nl> from tensorflow . python . training import training <nl> from tensorflow . python . util . all_util import make_all <nl> <nl> def score_function_with_baseline ( dist_tensor , value , loss ) : <nl> return score_function_with_baseline <nl> <nl> <nl> - def get_mean_baseline ( ema_decay = 0 . 99 , name = " MeanBaseline " ) : <nl> + def get_mean_baseline ( ema_decay = 0 . 99 , name = None ) : <nl> " " " ExponentialMovingAverage baseline . <nl> <nl> + EMA initializes to 0 , which introduces a bias . This baseline implements the <nl> + bias correction term from Adam ( section 3 of <nl> + https : / / arxiv . org / pdf / 1412 . 6980v8 . pdf ) , dividing by ` 1 - ema_decay ^ t ` , where <nl> + ` t ` is the step count . <nl> + <nl> Args : <nl> ema_decay : decay rate for the ExponentialMovingAverage . <nl> - name : name to prepend ops with . <nl> + name : name for variable scope of the ExponentialMovingAverage . <nl> <nl> Returns : <nl> Callable baseline function that takes the ` DistributionTensor ` ( unused ) and <nl> def get_mean_baseline ( ema_decay = 0 . 99 , name = " MeanBaseline " ) : <nl> " " " <nl> <nl> def mean_baseline ( _ , loss ) : <nl> - with ops . name_scope ( name ) : <nl> - ema = training . ExponentialMovingAverage ( decay = ema_decay ) <nl> + with vs . variable_scope ( name , default_name = " MeanBaseline " ) : <nl> reduced_loss = math_ops . reduce_mean ( loss ) <nl> + <nl> + ema = training . ExponentialMovingAverage ( decay = ema_decay ) <nl> update_op = ema . apply ( [ reduced_loss ] ) <nl> + <nl> + # The bias correction term requires keeping track of how many times the <nl> + # EMA has been updated . Creating a variable here to do so . The global step <nl> + # is not used because it may or may not track exactly the number of times <nl> + # the EMA is updated . <nl> + ema_var = ema . average ( reduced_loss ) <nl> + assert ema_var is not None <nl> + with ops . colocate_with ( ema_var ) : <nl> + num_updates = vs . get_variable ( <nl> + " local_ema_step " , initializer = 0 , trainable = False ) <nl> + num_updates = num_updates . assign_add ( 1 ) <nl> + bias_correction = 1 . - math_ops . pow ( ema_decay , math_ops . cast ( <nl> + num_updates , reduced_loss . dtype ) ) <nl> + <nl> with ops . control_dependencies ( [ update_op ] ) : <nl> - # TODO ( rsepassi ) : Possibly implement the initialization bias correction <nl> - # term from Adam ( section 3 of https : / / arxiv . org / pdf / 1412 . 6980v8 . pdf ) . <nl> - baseline = ema . average ( reduced_loss ) <nl> + baseline = ema . average ( reduced_loss ) / bias_correction <nl> + <nl> return baseline <nl> <nl> return mean_baseline <nl>
Correct the bias introduced by default EMA initialization in score function
tensorflow/tensorflow
25ce56037a1b3ac3073547711da63629737f29fe
2016-09-16T19:47:33Z
mmm a / tensorflow / compiler / xla / service / gpu / ir_emitter_unnested . cc <nl> ppp b / tensorflow / compiler / xla / service / gpu / ir_emitter_unnested . cc <nl> ReductionCodegenInfo IrEmitterUnnested : : ComputeReductionCodegenInfo ( <nl> return kWarpSize ; <nl> } ( ) ; <nl> <nl> - int vec_stride = 2 ; <nl> + int tile_size_x = reduction_tiling [ 2 ] * num_threads_x ; <nl> + <nl> + int vec_stride = 1 ; <nl> char * env = getenv ( " VEC_STRIDE " ) ; <nl> - if ( env ) <nl> + if ( indexing_order = = KernelMappingScheme : : LinearDilatedIndexingX & & <nl> + reduction_dimensions . dimensions [ 2 ] % tile_size_x = = 0 ) { <nl> + vec_stride = 2 ; <nl> + } <nl> + if ( env ) { <nl> vec_stride = atoi ( env ) ; <nl> - if ( indexing_order ! = KernelMappingScheme : : LinearDilatedIndexingX ) { <nl> - vec_stride = 1 ; <nl> } <nl> KernelMappingScheme mapping_scheme ( <nl> reduction_dimensions . dimensions , <nl> - { reduction_tiling [ 0 ] , reduction_tiling [ 1 ] * num_threads_y , <nl> - reduction_tiling [ 2 ] * num_threads_x } , <nl> + { reduction_tiling [ 0 ] , reduction_tiling [ 1 ] * num_threads_y , tile_size_x } , <nl> num_threads_y , num_threads_x , indexing_order , <nl> vec_stride ) ; <nl> return ReductionCodegenInfo ( mapping_scheme , <nl>
Only vectorize when the tile completly fit .
tensorflow/tensorflow
cc36478cd40377e7d0fc589cad981add37465cf6
2020-03-03T14:48:24Z
new file mode 100644 <nl> index 0000000000 . . 15d2493221 <nl> mmm / dev / null <nl> ppp b / code / data_structures / suffix_arrays / suffix_array . cpp <nl> <nl> + # include < bits / stdc + + . h > <nl> + # define ll long long <nl> + using namespace std ; <nl> + <nl> + struct ranking { <nl> + ll index ; <nl> + ll first ; <nl> + ll second ; <nl> + } ; <nl> + <nl> + bool comp ( ranking a , ranking b ) { <nl> + if ( a . first = = b . first ) { <nl> + return a . second < b . second ; <nl> + } <nl> + return a . first < b . first ; <nl> + } <nl> + <nl> + vector < ll > build_suffix_array ( string s ) { <nl> + const ll n = s . length ( ) ; <nl> + const ll lgn = ceil ( log2 ( n ) ) ; <nl> + <nl> + / / vector to hold final suffix array result <nl> + vector < ll > sa ( n ) ; <nl> + <nl> + / / P [ i ] [ j ] holds the ranking of the j - th suffix <nl> + / / after comparing the first 2 ^ i characters <nl> + / / of that suffix <nl> + ll P [ lgn ] [ n ] ; <nl> + <nl> + / / vector to store ranking tuples of suffixes <nl> + vector < ranking > ranks ( n ) ; <nl> + <nl> + ll i , j , step = 1 ; <nl> + for ( j = 0 ; j < n ; j + + ) { <nl> + P [ 0 ] [ j ] = s [ j ] - ' a ' ; <nl> + } <nl> + <nl> + for ( i = 1 ; i < = lgn ; i + + , step + + ) { <nl> + for ( j = 0 ; j < n ; j + + ) { <nl> + ranks [ j ] . index = j ; <nl> + ranks [ j ] . first = P [ i - 1 ] [ j ] ; <nl> + ranks [ j ] . second = ( j + pow ( 2 , i - 1 ) < n ) ? P [ i - 1 ] [ j + ( ll ) ( pow ( 2 , i - 1 ) ) ] : - 1 ; <nl> + } <nl> + <nl> + sort ( ranks . begin ( ) , ranks . end ( ) , comp ) ; <nl> + <nl> + for ( j = 0 ; j < n ; j + + ) { <nl> + P [ i ] [ ranks [ j ] . index ] = ( j > 0 & & ranks [ j ] . first = = ranks [ j - 1 ] . first & & ranks [ j ] . second = = ranks [ j - 1 ] . second ) ? P [ i ] [ ranks [ j - 1 ] . index ] : j ; <nl> + } <nl> + } <nl> + <nl> + step - = 1 ; <nl> + <nl> + for ( i = 0 ; i < n ; i + + ) { <nl> + sa [ P [ step ] [ i ] ] = i ; <nl> + } <nl> + <nl> + return sa ; <nl> + } <nl> + <nl> + int main ( ) { <nl> + string s ; <nl> + cin > > s ; <nl> + vector < ll > sa = build_suffix_array ( s ) ; <nl> + for ( ll i = 0 ; i < s . length ( ) ; i + + ) { <nl> + cout < < i < < " : " < < sa [ i ] < < endl ; <nl> + } <nl> + return 0 ; <nl> + } <nl>
Add CPP code for suffix arrays
OpenGenus/cosmos
dedfa4b689682ca813c609760607ba57aa6455d8
2017-10-17T22:55:06Z
mmm a / dbms / include / DB / IO / CompressedReadBufferBase . h <nl> ppp b / dbms / include / DB / IO / CompressedReadBufferBase . h <nl> class CompressedReadBufferBase <nl> UInt8 method = own_compressed_buffer [ 0 ] ; / / / См . CompressedWriteBuffer . h <nl> size_t size_compressed ; <nl> <nl> - if ( method < 4 ) <nl> + if ( method < 4 | | method = = 71 ) / / / 71 - для совместимости с когда - то давно записанными файлами . <nl> { <nl> size_compressed = qlz_size_compressed ( & own_compressed_buffer [ 0 ] ) ; <nl> size_decompressed = qlz_size_decompressed ( & own_compressed_buffer [ 0 ] ) ; <nl> class CompressedReadBufferBase <nl> <nl> UInt8 method = compressed_buffer [ 0 ] ; / / / См . CompressedWriteBuffer . h <nl> <nl> - if ( method < 4 ) <nl> + if ( method < 4 | | method = = 71 ) / / / 71 - для совместимости с когда - то давно записанными файлами . <nl> { <nl> if ( ! qlz_state ) <nl> qlz_state = new qlz_state_decompress ; <nl>
metrage : fixed error [ # METR - 13374 ] .
ClickHouse/ClickHouse
405d3ed16fbfdadb3b793782bfb1addc2651133d
2014-10-23T21:57:03Z
mmm a / README . md <nl> ppp b / README . md <nl> I deeply appreciate the help of the following people . <nl> - [ rswanson - ihi ] ( https : / / github . com / rswanson - ihi ) noted a typo in the README . <nl> - [ Mihai Stan ] ( https : / / github . com / stanmihai4 ) fixed a bug in the comparison with ` nullptr ` s . <nl> - [ Tushar Maheshwari ] ( https : / / github . com / tusharpm ) added [ cotire ] ( https : / / github . com / sakra / cotire ) support to speed up the compilation . <nl> - - [ TedLyngmo ] ( https : / / github . com / TedLyngmo ) noted a typo in the README . <nl> + - [ TedLyngmo ] ( https : / / github . com / TedLyngmo ) noted a typo in the README and fixed some ` - Weffc + + ` warnings . <nl> <nl> Thanks a lot for helping out ! Please [ let me know ] ( mailto : mail @ nlohmann . me ) if I forgot someone . <nl> <nl> mmm a / src / json . hpp <nl> ppp b / src / json . hpp <nl> class basic_json <nl> { <nl> lexer_char_t yych ; <nl> unsigned int yyaccept = 0 ; <nl> - static const unsigned char yybm [ ] = { <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 32 , 32 , 0 , 0 , 32 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + static const unsigned char yybm [ ] = <nl> + { <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 32 , 32 , 0 , 0 , 32 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> 160 , 128 , 0 , 128 , 128 , 128 , 128 , 128 , <nl> 128 , 128 , 128 , 128 , 128 , 128 , 128 , 128 , <nl> 192 , 192 , 192 , 192 , 192 , 192 , 192 , 192 , <nl> class basic_json <nl> 128 , 128 , 128 , 128 , 128 , 128 , 128 , 128 , <nl> 128 , 128 , 128 , 128 , 128 , 128 , 128 , 128 , <nl> 128 , 128 , 128 , 128 , 128 , 128 , 128 , 128 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> - 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , <nl> } ; <nl> - if ( ( m_limit - m_cursor ) < 5 ) fill_line_buffer ( 5 ) ; / / LCOV_EXCL_LINE <nl> + if ( ( m_limit - m_cursor ) < 5 ) <nl> + { <nl> + fill_line_buffer ( 5 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yybm [ 0 + yych ] & 32 ) { <nl> + if ( yybm [ 0 + yych ] & 32 ) <nl> + { <nl> goto basic_json_parser_6 ; <nl> } <nl> - if ( yych < = ' [ ' ) { <nl> - if ( yych < = ' - ' ) { <nl> - if ( yych < = ' " ' ) { <nl> - if ( yych < = 0x00 ) goto basic_json_parser_2 ; <nl> - if ( yych < = ' ! ' ) goto basic_json_parser_4 ; <nl> + if ( yych < = ' [ ' ) <nl> + { <nl> + if ( yych < = ' - ' ) <nl> + { <nl> + if ( yych < = ' " ' ) <nl> + { <nl> + if ( yych < = 0x00 ) <nl> + { <nl> + goto basic_json_parser_2 ; <nl> + } <nl> + if ( yych < = ' ! ' ) <nl> + { <nl> + goto basic_json_parser_4 ; <nl> + } <nl> goto basic_json_parser_9 ; <nl> - } else { <nl> - if ( yych < = ' + ' ) goto basic_json_parser_4 ; <nl> - if ( yych < = ' , ' ) goto basic_json_parser_10 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' + ' ) <nl> + { <nl> + goto basic_json_parser_4 ; <nl> + } <nl> + if ( yych < = ' , ' ) <nl> + { <nl> + goto basic_json_parser_10 ; <nl> + } <nl> goto basic_json_parser_12 ; <nl> } <nl> - } else { <nl> - if ( yych < = ' 9 ' ) { <nl> - if ( yych < = ' / ' ) goto basic_json_parser_4 ; <nl> - if ( yych < = ' 0 ' ) goto basic_json_parser_13 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_4 ; <nl> + } <nl> + if ( yych < = ' 0 ' ) <nl> + { <nl> + goto basic_json_parser_13 ; <nl> + } <nl> goto basic_json_parser_15 ; <nl> - } else { <nl> - if ( yych < = ' : ' ) goto basic_json_parser_17 ; <nl> - if ( yych < = ' Z ' ) goto basic_json_parser_4 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' : ' ) <nl> + { <nl> + goto basic_json_parser_17 ; <nl> + } <nl> + if ( yych < = ' Z ' ) <nl> + { <nl> + goto basic_json_parser_4 ; <nl> + } <nl> goto basic_json_parser_19 ; <nl> } <nl> } <nl> - } else { <nl> - if ( yych < = ' n ' ) { <nl> - if ( yych < = ' e ' ) { <nl> - if ( yych = = ' ] ' ) goto basic_json_parser_21 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' n ' ) <nl> + { <nl> + if ( yych < = ' e ' ) <nl> + { <nl> + if ( yych = = ' ] ' ) <nl> + { <nl> + goto basic_json_parser_21 ; <nl> + } <nl> goto basic_json_parser_4 ; <nl> - } else { <nl> - if ( yych < = ' f ' ) goto basic_json_parser_23 ; <nl> - if ( yych < = ' m ' ) goto basic_json_parser_4 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' f ' ) <nl> + { <nl> + goto basic_json_parser_23 ; <nl> + } <nl> + if ( yych < = ' m ' ) <nl> + { <nl> + goto basic_json_parser_4 ; <nl> + } <nl> goto basic_json_parser_24 ; <nl> } <nl> - } else { <nl> - if ( yych < = ' z ' ) { <nl> - if ( yych = = ' t ' ) goto basic_json_parser_25 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' z ' ) <nl> + { <nl> + if ( yych = = ' t ' ) <nl> + { <nl> + goto basic_json_parser_25 ; <nl> + } <nl> goto basic_json_parser_4 ; <nl> - } else { <nl> - if ( yych < = ' { ' ) goto basic_json_parser_26 ; <nl> - if ( yych = = ' } ' ) goto basic_json_parser_28 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' { ' ) <nl> + { <nl> + goto basic_json_parser_26 ; <nl> + } <nl> + if ( yych = = ' } ' ) <nl> + { <nl> + goto basic_json_parser_28 ; <nl> + } <nl> goto basic_json_parser_4 ; <nl> } <nl> } <nl> } <nl> - basic_json_parser_2 : <nl> + basic_json_parser_2 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : end_of_input ; break ; } <nl> - basic_json_parser_4 : <nl> + { <nl> + last_token_type = token_type : : end_of_input ; <nl> + break ; <nl> + } <nl> + basic_json_parser_4 : <nl> + + m_cursor ; <nl> - basic_json_parser_5 : <nl> - { last_token_type = token_type : : parse_error ; break ; } <nl> - basic_json_parser_6 : <nl> + basic_json_parser_5 : <nl> + { <nl> + last_token_type = token_type : : parse_error ; <nl> + break ; <nl> + } <nl> + basic_json_parser_6 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yybm [ 0 + yych ] & 32 ) { <nl> + if ( yybm [ 0 + yych ] & 32 ) <nl> + { <nl> goto basic_json_parser_6 ; <nl> } <nl> - { continue ; } <nl> - basic_json_parser_9 : <nl> + { <nl> + continue ; <nl> + } <nl> + basic_json_parser_9 : <nl> yyaccept = 0 ; <nl> yych = * ( m_marker = + + m_cursor ) ; <nl> - if ( yych < = 0x1F ) goto basic_json_parser_5 ; <nl> - if ( yych < = 0x7F ) goto basic_json_parser_31 ; <nl> - if ( yych < = 0xC1 ) goto basic_json_parser_5 ; <nl> - if ( yych < = 0xF4 ) goto basic_json_parser_31 ; <nl> + if ( yych < = 0x1F ) <nl> + { <nl> + goto basic_json_parser_5 ; <nl> + } <nl> + if ( yych < = 0x7F ) <nl> + { <nl> + goto basic_json_parser_31 ; <nl> + } <nl> + if ( yych < = 0xC1 ) <nl> + { <nl> + goto basic_json_parser_5 ; <nl> + } <nl> + if ( yych < = 0xF4 ) <nl> + { <nl> + goto basic_json_parser_31 ; <nl> + } <nl> goto basic_json_parser_5 ; <nl> - basic_json_parser_10 : <nl> + basic_json_parser_10 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : value_separator ; break ; } <nl> - basic_json_parser_12 : <nl> + { <nl> + last_token_type = token_type : : value_separator ; <nl> + break ; <nl> + } <nl> + basic_json_parser_12 : <nl> yych = * + + m_cursor ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_5 ; <nl> - if ( yych < = ' 0 ' ) goto basic_json_parser_43 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_45 ; <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_5 ; <nl> + } <nl> + if ( yych < = ' 0 ' ) <nl> + { <nl> + goto basic_json_parser_43 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_45 ; <nl> + } <nl> goto basic_json_parser_5 ; <nl> - basic_json_parser_13 : <nl> + basic_json_parser_13 : <nl> yyaccept = 1 ; <nl> yych = * ( m_marker = + + m_cursor ) ; <nl> - if ( yych < = ' 9 ' ) { <nl> - if ( yych = = ' . ' ) goto basic_json_parser_47 ; <nl> - if ( yych > = ' 0 ' ) goto basic_json_parser_48 ; <nl> - } else { <nl> - if ( yych < = ' E ' ) { <nl> - if ( yych > = ' E ' ) goto basic_json_parser_51 ; <nl> - } else { <nl> - if ( yych = = ' e ' ) goto basic_json_parser_51 ; <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + if ( yych = = ' . ' ) <nl> + { <nl> + goto basic_json_parser_47 ; <nl> } <nl> + if ( yych > = ' 0 ' ) <nl> + { <nl> + goto basic_json_parser_48 ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' E ' ) <nl> + { <nl> + if ( yych > = ' E ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> + } <nl> + } <nl> + basic_json_parser_14 : <nl> + { <nl> + last_token_type = token_type : : value_unsigned ; <nl> + break ; <nl> } <nl> - basic_json_parser_14 : <nl> - { last_token_type = token_type : : value_unsigned ; break ; } <nl> - basic_json_parser_15 : <nl> + basic_json_parser_15 : <nl> yyaccept = 1 ; <nl> m_marker = + + m_cursor ; <nl> - if ( ( m_limit - m_cursor ) < 3 ) fill_line_buffer ( 3 ) ; / / LCOV_EXCL_LINE <nl> + if ( ( m_limit - m_cursor ) < 3 ) <nl> + { <nl> + fill_line_buffer ( 3 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yybm [ 0 + yych ] & 64 ) { <nl> + if ( yybm [ 0 + yych ] & 64 ) <nl> + { <nl> goto basic_json_parser_15 ; <nl> } <nl> - if ( yych < = ' D ' ) { <nl> - if ( yych = = ' . ' ) goto basic_json_parser_47 ; <nl> + if ( yych < = ' D ' ) <nl> + { <nl> + if ( yych = = ' . ' ) <nl> + { <nl> + goto basic_json_parser_47 ; <nl> + } <nl> goto basic_json_parser_14 ; <nl> - } else { <nl> - if ( yych < = ' E ' ) goto basic_json_parser_51 ; <nl> - if ( yych = = ' e ' ) goto basic_json_parser_51 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' E ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> goto basic_json_parser_14 ; <nl> } <nl> - basic_json_parser_17 : <nl> + basic_json_parser_17 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : name_separator ; break ; } <nl> - basic_json_parser_19 : <nl> + { <nl> + last_token_type = token_type : : name_separator ; <nl> + break ; <nl> + } <nl> + basic_json_parser_19 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : begin_array ; break ; } <nl> - basic_json_parser_21 : <nl> + { <nl> + last_token_type = token_type : : begin_array ; <nl> + break ; <nl> + } <nl> + basic_json_parser_21 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : end_array ; break ; } <nl> - basic_json_parser_23 : <nl> + { <nl> + last_token_type = token_type : : end_array ; <nl> + break ; <nl> + } <nl> + basic_json_parser_23 : <nl> yyaccept = 0 ; <nl> yych = * ( m_marker = + + m_cursor ) ; <nl> - if ( yych = = ' a ' ) goto basic_json_parser_52 ; <nl> + if ( yych = = ' a ' ) <nl> + { <nl> + goto basic_json_parser_52 ; <nl> + } <nl> goto basic_json_parser_5 ; <nl> - basic_json_parser_24 : <nl> + basic_json_parser_24 : <nl> yyaccept = 0 ; <nl> yych = * ( m_marker = + + m_cursor ) ; <nl> - if ( yych = = ' u ' ) goto basic_json_parser_53 ; <nl> + if ( yych = = ' u ' ) <nl> + { <nl> + goto basic_json_parser_53 ; <nl> + } <nl> goto basic_json_parser_5 ; <nl> - basic_json_parser_25 : <nl> + basic_json_parser_25 : <nl> yyaccept = 0 ; <nl> yych = * ( m_marker = + + m_cursor ) ; <nl> - if ( yych = = ' r ' ) goto basic_json_parser_54 ; <nl> + if ( yych = = ' r ' ) <nl> + { <nl> + goto basic_json_parser_54 ; <nl> + } <nl> goto basic_json_parser_5 ; <nl> - basic_json_parser_26 : <nl> + basic_json_parser_26 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : begin_object ; break ; } <nl> - basic_json_parser_28 : <nl> + { <nl> + last_token_type = token_type : : begin_object ; <nl> + break ; <nl> + } <nl> + basic_json_parser_28 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : end_object ; break ; } <nl> - basic_json_parser_30 : <nl> + { <nl> + last_token_type = token_type : : end_object ; <nl> + break ; <nl> + } <nl> + basic_json_parser_30 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - basic_json_parser_31 : <nl> - if ( yybm [ 0 + yych ] & 128 ) { <nl> + basic_json_parser_31 : <nl> + if ( yybm [ 0 + yych ] & 128 ) <nl> + { <nl> goto basic_json_parser_30 ; <nl> } <nl> - if ( yych < = 0xE0 ) { <nl> - if ( yych < = ' \ \ ' ) { <nl> - if ( yych < = 0x1F ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' " ' ) goto basic_json_parser_33 ; <nl> + if ( yych < = 0xE0 ) <nl> + { <nl> + if ( yych < = ' \ \ ' ) <nl> + { <nl> + if ( yych < = 0x1F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' " ' ) <nl> + { <nl> + goto basic_json_parser_33 ; <nl> + } <nl> goto basic_json_parser_35 ; <nl> - } else { <nl> - if ( yych < = 0xC1 ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0xDF ) goto basic_json_parser_36 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = 0xC1 ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0xDF ) <nl> + { <nl> + goto basic_json_parser_36 ; <nl> + } <nl> goto basic_json_parser_37 ; <nl> } <nl> - } else { <nl> - if ( yych < = 0xEF ) { <nl> - if ( yych = = 0xED ) goto basic_json_parser_39 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = 0xEF ) <nl> + { <nl> + if ( yych = = 0xED ) <nl> + { <nl> + goto basic_json_parser_39 ; <nl> + } <nl> goto basic_json_parser_38 ; <nl> - } else { <nl> - if ( yych < = 0xF0 ) goto basic_json_parser_40 ; <nl> - if ( yych < = 0xF3 ) goto basic_json_parser_41 ; <nl> - if ( yych < = 0xF4 ) goto basic_json_parser_42 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = 0xF0 ) <nl> + { <nl> + goto basic_json_parser_40 ; <nl> + } <nl> + if ( yych < = 0xF3 ) <nl> + { <nl> + goto basic_json_parser_41 ; <nl> + } <nl> + if ( yych < = 0xF4 ) <nl> + { <nl> + goto basic_json_parser_42 ; <nl> + } <nl> } <nl> } <nl> - basic_json_parser_32 : <nl> + basic_json_parser_32 : <nl> m_cursor = m_marker ; <nl> - if ( yyaccept < = 1 ) { <nl> - if ( yyaccept = = 0 ) { <nl> + if ( yyaccept < = 1 ) <nl> + { <nl> + if ( yyaccept = = 0 ) <nl> + { <nl> goto basic_json_parser_5 ; <nl> - } else { <nl> + } <nl> + else <nl> + { <nl> goto basic_json_parser_14 ; <nl> } <nl> - } else { <nl> - if ( yyaccept = = 2 ) { <nl> + } <nl> + else <nl> + { <nl> + if ( yyaccept = = 2 ) <nl> + { <nl> goto basic_json_parser_44 ; <nl> - } else { <nl> + } <nl> + else <nl> + { <nl> goto basic_json_parser_58 ; <nl> } <nl> } <nl> - basic_json_parser_33 : <nl> + basic_json_parser_33 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : value_string ; break ; } <nl> - basic_json_parser_35 : <nl> + { <nl> + last_token_type = token_type : : value_string ; <nl> + break ; <nl> + } <nl> + basic_json_parser_35 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' e ' ) { <nl> - if ( yych < = ' / ' ) { <nl> - if ( yych = = ' " ' ) goto basic_json_parser_30 ; <nl> - if ( yych < = ' . ' ) goto basic_json_parser_32 ; <nl> + if ( yych < = ' e ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + if ( yych = = ' " ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> + if ( yych < = ' . ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> goto basic_json_parser_30 ; <nl> - } else { <nl> - if ( yych < = ' \ \ ' ) { <nl> - if ( yych < = ' [ ' ) goto basic_json_parser_32 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' \ \ ' ) <nl> + { <nl> + if ( yych < = ' [ ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> goto basic_json_parser_30 ; <nl> - } else { <nl> - if ( yych = = ' b ' ) goto basic_json_parser_30 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych = = ' b ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> } <nl> - } else { <nl> - if ( yych < = ' q ' ) { <nl> - if ( yych < = ' f ' ) goto basic_json_parser_30 ; <nl> - if ( yych = = ' n ' ) goto basic_json_parser_30 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' q ' ) <nl> + { <nl> + if ( yych < = ' f ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> + if ( yych = = ' n ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' s ' ) { <nl> - if ( yych < = ' r ' ) goto basic_json_parser_30 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' s ' ) <nl> + { <nl> + if ( yych < = ' r ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' t ' ) goto basic_json_parser_30 ; <nl> - if ( yych < = ' u ' ) goto basic_json_parser_55 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' t ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> + if ( yych < = ' u ' ) <nl> + { <nl> + goto basic_json_parser_55 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> } <nl> } <nl> - basic_json_parser_36 : <nl> + basic_json_parser_36 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x7F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0xBF ) goto basic_json_parser_30 ; <nl> + if ( yych < = 0x7F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0xBF ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_37 : <nl> + basic_json_parser_37 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x9F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0xBF ) goto basic_json_parser_36 ; <nl> + if ( yych < = 0x9F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0xBF ) <nl> + { <nl> + goto basic_json_parser_36 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_38 : <nl> + basic_json_parser_38 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x7F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0xBF ) goto basic_json_parser_36 ; <nl> + if ( yych < = 0x7F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0xBF ) <nl> + { <nl> + goto basic_json_parser_36 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_39 : <nl> + basic_json_parser_39 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x7F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0x9F ) goto basic_json_parser_36 ; <nl> + if ( yych < = 0x7F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0x9F ) <nl> + { <nl> + goto basic_json_parser_36 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_40 : <nl> + basic_json_parser_40 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x8F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0xBF ) goto basic_json_parser_38 ; <nl> + if ( yych < = 0x8F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0xBF ) <nl> + { <nl> + goto basic_json_parser_38 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_41 : <nl> + basic_json_parser_41 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x7F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0xBF ) goto basic_json_parser_38 ; <nl> + if ( yych < = 0x7F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0xBF ) <nl> + { <nl> + goto basic_json_parser_38 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_42 : <nl> + basic_json_parser_42 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = 0x7F ) goto basic_json_parser_32 ; <nl> - if ( yych < = 0x8F ) goto basic_json_parser_38 ; <nl> + if ( yych < = 0x7F ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = 0x8F ) <nl> + { <nl> + goto basic_json_parser_38 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_43 : <nl> + basic_json_parser_43 : <nl> yyaccept = 2 ; <nl> yych = * ( m_marker = + + m_cursor ) ; <nl> - if ( yych < = ' 9 ' ) { <nl> - if ( yych = = ' . ' ) goto basic_json_parser_47 ; <nl> - if ( yych > = ' 0 ' ) goto basic_json_parser_48 ; <nl> - } else { <nl> - if ( yych < = ' E ' ) { <nl> - if ( yych > = ' E ' ) goto basic_json_parser_51 ; <nl> - } else { <nl> - if ( yych = = ' e ' ) goto basic_json_parser_51 ; <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + if ( yych = = ' . ' ) <nl> + { <nl> + goto basic_json_parser_47 ; <nl> + } <nl> + if ( yych > = ' 0 ' ) <nl> + { <nl> + goto basic_json_parser_48 ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' E ' ) <nl> + { <nl> + if ( yych > = ' E ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> } <nl> } <nl> - basic_json_parser_44 : <nl> - { last_token_type = token_type : : value_integer ; break ; } <nl> - basic_json_parser_45 : <nl> + basic_json_parser_44 : <nl> + { <nl> + last_token_type = token_type : : value_integer ; <nl> + break ; <nl> + } <nl> + basic_json_parser_45 : <nl> yyaccept = 2 ; <nl> m_marker = + + m_cursor ; <nl> - if ( ( m_limit - m_cursor ) < 3 ) fill_line_buffer ( 3 ) ; / / LCOV_EXCL_LINE <nl> + if ( ( m_limit - m_cursor ) < 3 ) <nl> + { <nl> + fill_line_buffer ( 3 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' 9 ' ) { <nl> - if ( yych = = ' . ' ) goto basic_json_parser_47 ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_44 ; <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + if ( yych = = ' . ' ) <nl> + { <nl> + goto basic_json_parser_47 ; <nl> + } <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_44 ; <nl> + } <nl> goto basic_json_parser_45 ; <nl> - } else { <nl> - if ( yych < = ' E ' ) { <nl> - if ( yych < = ' D ' ) goto basic_json_parser_44 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' E ' ) <nl> + { <nl> + if ( yych < = ' D ' ) <nl> + { <nl> + goto basic_json_parser_44 ; <nl> + } <nl> goto basic_json_parser_51 ; <nl> - } else { <nl> - if ( yych = = ' e ' ) goto basic_json_parser_51 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> goto basic_json_parser_44 ; <nl> } <nl> } <nl> - basic_json_parser_47 : <nl> + basic_json_parser_47 : <nl> yych = * + + m_cursor ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_56 ; <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_56 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_48 : <nl> + basic_json_parser_48 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_50 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_48 ; <nl> - basic_json_parser_50 : <nl> - { last_token_type = token_type : : parse_error ; break ; } <nl> - basic_json_parser_51 : <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_50 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_48 ; <nl> + } <nl> + basic_json_parser_50 : <nl> + { <nl> + last_token_type = token_type : : parse_error ; <nl> + break ; <nl> + } <nl> + basic_json_parser_51 : <nl> yych = * + + m_cursor ; <nl> - if ( yych < = ' , ' ) { <nl> - if ( yych = = ' + ' ) goto basic_json_parser_59 ; <nl> + if ( yych < = ' , ' ) <nl> + { <nl> + if ( yych = = ' + ' ) <nl> + { <nl> + goto basic_json_parser_59 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' - ' ) goto basic_json_parser_59 ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_60 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' - ' ) <nl> + { <nl> + goto basic_json_parser_59 ; <nl> + } <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_60 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> - basic_json_parser_52 : <nl> + basic_json_parser_52 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' l ' ) goto basic_json_parser_62 ; <nl> + if ( yych = = ' l ' ) <nl> + { <nl> + goto basic_json_parser_62 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_53 : <nl> + basic_json_parser_53 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' l ' ) goto basic_json_parser_63 ; <nl> + if ( yych = = ' l ' ) <nl> + { <nl> + goto basic_json_parser_63 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_54 : <nl> + basic_json_parser_54 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' u ' ) goto basic_json_parser_64 ; <nl> + if ( yych = = ' u ' ) <nl> + { <nl> + goto basic_json_parser_64 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_55 : <nl> + basic_json_parser_55 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' @ ' ) { <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_65 ; <nl> + if ( yych < = ' @ ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_65 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' F ' ) goto basic_json_parser_65 ; <nl> - if ( yych < = ' ` ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' f ' ) goto basic_json_parser_65 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' F ' ) <nl> + { <nl> + goto basic_json_parser_65 ; <nl> + } <nl> + if ( yych < = ' ` ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' f ' ) <nl> + { <nl> + goto basic_json_parser_65 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> - basic_json_parser_56 : <nl> + basic_json_parser_56 : <nl> yyaccept = 3 ; <nl> m_marker = + + m_cursor ; <nl> - if ( ( m_limit - m_cursor ) < 3 ) fill_line_buffer ( 3 ) ; / / LCOV_EXCL_LINE <nl> + if ( ( m_limit - m_cursor ) < 3 ) <nl> + { <nl> + fill_line_buffer ( 3 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' D ' ) { <nl> - if ( yych < = ' / ' ) goto basic_json_parser_58 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_56 ; <nl> - } else { <nl> - if ( yych < = ' E ' ) goto basic_json_parser_51 ; <nl> - if ( yych = = ' e ' ) goto basic_json_parser_51 ; <nl> - } <nl> - basic_json_parser_58 : <nl> - { last_token_type = token_type : : value_float ; break ; } <nl> - basic_json_parser_59 : <nl> + if ( yych < = ' D ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_58 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_56 ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' E ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_51 ; <nl> + } <nl> + } <nl> + basic_json_parser_58 : <nl> + { <nl> + last_token_type = token_type : : value_float ; <nl> + break ; <nl> + } <nl> + basic_json_parser_59 : <nl> yych = * + + m_cursor ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych > = ' : ' ) goto basic_json_parser_32 ; <nl> - basic_json_parser_60 : <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych > = ' : ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + basic_json_parser_60 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' / ' ) goto basic_json_parser_58 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_60 ; <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_58 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_60 ; <nl> + } <nl> goto basic_json_parser_58 ; <nl> - basic_json_parser_62 : <nl> + basic_json_parser_62 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' s ' ) goto basic_json_parser_66 ; <nl> + if ( yych = = ' s ' ) <nl> + { <nl> + goto basic_json_parser_66 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_63 : <nl> + basic_json_parser_63 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' l ' ) goto basic_json_parser_67 ; <nl> + if ( yych = = ' l ' ) <nl> + { <nl> + goto basic_json_parser_67 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_64 : <nl> + basic_json_parser_64 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' e ' ) goto basic_json_parser_69 ; <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_69 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_65 : <nl> + basic_json_parser_65 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' @ ' ) { <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_71 ; <nl> + if ( yych < = ' @ ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_71 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' F ' ) goto basic_json_parser_71 ; <nl> - if ( yych < = ' ` ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' f ' ) goto basic_json_parser_71 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' F ' ) <nl> + { <nl> + goto basic_json_parser_71 ; <nl> + } <nl> + if ( yych < = ' ` ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' f ' ) <nl> + { <nl> + goto basic_json_parser_71 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> - basic_json_parser_66 : <nl> + basic_json_parser_66 : <nl> yych = * + + m_cursor ; <nl> - if ( yych = = ' e ' ) goto basic_json_parser_72 ; <nl> + if ( yych = = ' e ' ) <nl> + { <nl> + goto basic_json_parser_72 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - basic_json_parser_67 : <nl> + basic_json_parser_67 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : literal_null ; break ; } <nl> - basic_json_parser_69 : <nl> + { <nl> + last_token_type = token_type : : literal_null ; <nl> + break ; <nl> + } <nl> + basic_json_parser_69 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : literal_true ; break ; } <nl> - basic_json_parser_71 : <nl> + { <nl> + last_token_type = token_type : : literal_true ; <nl> + break ; <nl> + } <nl> + basic_json_parser_71 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' @ ' ) { <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_74 ; <nl> + if ( yych < = ' @ ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_74 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' F ' ) goto basic_json_parser_74 ; <nl> - if ( yych < = ' ` ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' f ' ) goto basic_json_parser_74 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' F ' ) <nl> + { <nl> + goto basic_json_parser_74 ; <nl> + } <nl> + if ( yych < = ' ` ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' f ' ) <nl> + { <nl> + goto basic_json_parser_74 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> - basic_json_parser_72 : <nl> + basic_json_parser_72 : <nl> + + m_cursor ; <nl> - { last_token_type = token_type : : literal_false ; break ; } <nl> - basic_json_parser_74 : <nl> + { <nl> + last_token_type = token_type : : literal_false ; <nl> + break ; <nl> + } <nl> + basic_json_parser_74 : <nl> + + m_cursor ; <nl> - if ( m_limit < = m_cursor ) fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + if ( m_limit < = m_cursor ) <nl> + { <nl> + fill_line_buffer ( 1 ) ; / / LCOV_EXCL_LINE <nl> + } <nl> yych = * m_cursor ; <nl> - if ( yych < = ' @ ' ) { <nl> - if ( yych < = ' / ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' 9 ' ) goto basic_json_parser_30 ; <nl> + if ( yych < = ' @ ' ) <nl> + { <nl> + if ( yych < = ' / ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' 9 ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> - } else { <nl> - if ( yych < = ' F ' ) goto basic_json_parser_30 ; <nl> - if ( yych < = ' ` ' ) goto basic_json_parser_32 ; <nl> - if ( yych < = ' f ' ) goto basic_json_parser_30 ; <nl> + } <nl> + else <nl> + { <nl> + if ( yych < = ' F ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> + if ( yych < = ' ` ' ) <nl> + { <nl> + goto basic_json_parser_32 ; <nl> + } <nl> + if ( yych < = ' f ' ) <nl> + { <nl> + goto basic_json_parser_30 ; <nl> + } <nl> goto basic_json_parser_32 ; <nl> } <nl> } <nl> mmm a / test / src / unit - udt . cpp <nl> ppp b / test / src / unit - udt . cpp <nl> enum class country <nl> struct age <nl> { <nl> int m_val ; <nl> - age ( int rhs = 0 ) : m_val ( rhs ) { } <nl> + age ( int rhs = 0 ) : m_val ( rhs ) { } <nl> } ; <nl> <nl> struct name <nl> { <nl> std : : string m_val ; <nl> - name ( const std : : string rhs = " " ) : m_val ( rhs ) { } <nl> + name ( const std : : string rhs = " " ) : m_val ( rhs ) { } <nl> } ; <nl> <nl> struct address <nl> { <nl> std : : string m_val ; <nl> - address ( const std : : string rhs = " " ) : m_val ( rhs ) { } <nl> + address ( const std : : string rhs = " " ) : m_val ( rhs ) { } <nl> } ; <nl> <nl> struct person <nl> struct person <nl> age m_age ; <nl> name m_name ; <nl> country m_country ; <nl> - person ( ) : m_age ( ) , m_name ( ) , m_country ( ) { } <nl> + person ( ) : m_age ( ) , m_name ( ) , m_country ( ) { } <nl> person ( const age & a , const name & n , const country & c ) : m_age ( a ) , m_name ( n ) , m_country ( c ) { } <nl> } ; <nl> <nl>
: art : cleanup after
nlohmann/json
c7afb34e57fc7d343a6c6f3ddee859fe92a7cf92
2017-03-11T15:01:26Z