text stringlengths 1 22.8M |
|---|
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var bench = require( '@stdlib/bench' );
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
var pkg = require( './../package.json' ).name;
var hasInt16ArraySupport = require( './../lib' );
// MAIN //
bench( pkg, function benchmark( b ) {
var bool;
var i;
b.tic();
for ( i = 0; i < b.iterations; i++ ) {
// Note: the following *could* be optimized away via loop-invariant code motion. If so, the entire loop will disappear.
bool = hasInt16ArraySupport();
if ( typeof bool !== 'boolean' ) {
b.fail( 'should return a boolean' );
}
}
b.toc();
if ( !isBoolean( bool ) ) {
b.fail( 'should return a boolean' );
}
b.pass( 'benchmark finished' );
b.end();
});
``` |
Colorado Student Space Weather Experiment (CSSWE) was the sixth National Science Foundation sponsored CubeSat mission. It was built by students at the University of Colorado at Boulder with advising from professionals at the Laboratory for Atmospheric and Space Physics. The CSSWE mission was a joint effort by the University of Colorado's Department of Aerospace Engineering Sciences and Laboratory for Atmospheric and Space Physics. The mission principal investigator was Prof. Xinlin Li, and the Co-PIs are Prof. Scott Palo and Dr. Shri Kanekal. The project manager for the project was Dr. Lauren Blum, the system engineer was Dr. David Gerhardt, and the instrument scientist was Dr. Quintin Schiller.
CSSWE launched on September 13, 2012, on an Atlas V rocket by the United Launch Alliance on ELaNa-VI as part of the NASA's CubeSat Launch Initiative (CSLI). The CSSWE team released its science products to the public for download on NASA's Coordinated Data Analysis Web Site (CDAWeb).
As of December 22, 2014, CSSWE showed severe battery degradation, likely due to pushing the battery thousands of cycles beyond the battery's design specs. As a result, CSSWE cannot retain enough power to receive or transmit data.
Mission Objective
CSSWE's mission objective is to study space weather from a near-Earth orbit (480 km x 780 km). Specifically, CSSWE works in conjunction with concurrent missions (such as the Van Allen Probes, BARREL, and SAMPEX) to address the following questions: 1) How does solar flare location, magnitude, and frequency elate to the timing, duration, and energy spectrum of solar energetic particles (SEPs) reaching Earth and 2) How the spectrum and dynamics of Earth's radiation belt electrons evolve.
Science Instrument
CSSWE's science instrument, the Relativistic Electron and Proton Telescope integrated little experiment (REPTile), is the only science instrument aboard and meets the mission objectives. It is a scaled-down version of the Relativistic Electron and Proton Telescope (REPT) instrument, which is part of the Energetic Particle, Composition, and Thermal Plasma (ECT) Instrument Suite on board the Van Allen Probes. REPTile fulfills the mission objectives by measuring electrons from 0.58 to >3.8 Megaelectronvolts (MeV) and protons from 8 to 40 MeV. Also on the CubeSat is an onboard magnetometer to provide knowledge of spacecraft and instrument orientation with respect to Earth's magnetic field.
Pre-Flight Testing
CSSWE underwent the same rigorous testing that all space-based assets at LASP do. In addition to component and subsystem level testing, the spacecraft underwent numerous system level tests. It passed the thermal vacuum chamber test, in which 11 orbital cycles of the spacecraft were simulated in vacuum by increasing and decreasing the spacecraft temperature to reproduce thermal models which predict actual on-orbit temperatures. The first few hours of the mission were reproduced by simulating launch (in which the deployment switch is released, initiating automated commissioning phase) from a mesa nearby the LASP ground station. CSSWE passed this test by completing the initial commissioning phase, deploying its antenna, and establishing contact with the LASP ground station. Orbital attitude tests were performed as well, including Helmholtz cage and error ellipse tests.
Launch
CSSWE was originally scheduled to launch on August 2, 2012 aboard the National Reconnaissance Office Launch-36 (NROL-36). However, the launch was delayed three times to provide additional time for resolution of a range instrumentation issue, according to the United Launch Alliance official statement. The Atlas V 401 eventually launched on September 13, 2012 from Vandenberg AFB Space Launch Complex 3.
The primary payload aboard NROL-36 was a classified NRO payload, so no spacecraft or orbit information was provided. However, there were 11 CubeSats on board the rocket as secondary payloads. The launch vehicle delivered the CubeSats into a 480x780 km orbit with an inclination of 65 degrees. The CubeSats were carried in eight PPOD dispensers attached to the end of the Centaur rocket via the Aft Bulkhead Carrier, which replaced an unnecessary Helium tank. Four of the CubeSats were launched as part of the NASA's Educational Launch of Nanosatellites (ELaNa) program - CSSWE (University of Colorado - Boulder), CINEMA 1 (University of California - Berkeley et al.), CXBN (Morehead State University), and CP5 (California Polytechnic University). The remaining seven were Aeneas (operated by the University of Southern California), two SMDC-ONE (US Army), STARE-A (Lawrence Livermore National Laboratory), and three AeroCube-4 (Aerospace Corporation).
On Orbit Success
The spacecraft uses a measuring tape as an antenna to communicate with ground stations. CSSWE was first heard beaconing telemetry packets by amateur radio operator call sign DK3WN almost exactly two hours after deployment from the PPOD, overcoming its first major hurdle. The spacecraft completed science commissioning and was commanded into full science mode 22 days later on October 5. Full mission success occurred on January 5, 2013 after three months of science data. The CSSWE mission ended in December 2014 due to battery degradation.
The first science results and updated science results were presented, respectively, at the 2012 and 2013 Fall American Geophysical Union in San Francisco, CA. and published in peer-reviewed Journals such as Geophysical Review Letters, the Journal of Geophysical Research, and Science. CSSWE now has 24 associated peer-reviewed scientific or engineering journal publications, including a paper published in Nature on 13 December 2017.
References
CubeSats
Student satellites
Spacecraft launched in 2012 |
```go
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package fxevent
import (
"errors"
"fmt"
"os"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"go.uber.org/zap/zaptest/observer"
)
func TestZapLogger(t *testing.T) {
t.Parallel()
someError := errors.New("some error")
tests := []struct {
name string
give Event
wantMessage string
wantFields map[string]interface{}
}{
{
name: "OnStartExecuting",
give: &OnStartExecuting{
FunctionName: "hook.onStart",
CallerName: "bytes.NewBuffer",
},
wantMessage: "OnStart hook executing",
wantFields: map[string]interface{}{
"caller": "bytes.NewBuffer",
"callee": "hook.onStart",
},
},
{
name: "OnStopExecuting",
give: &OnStopExecuting{
FunctionName: "hook.onStop1",
CallerName: "bytes.NewBuffer",
},
wantMessage: "OnStop hook executing",
wantFields: map[string]interface{}{
"caller": "bytes.NewBuffer",
"callee": "hook.onStop1",
},
},
{
name: "OnStopExecuted/Error",
give: &OnStopExecuted{
FunctionName: "hook.onStart1",
CallerName: "bytes.NewBuffer",
Err: fmt.Errorf("some error"),
},
wantMessage: "OnStop hook failed",
wantFields: map[string]interface{}{
"caller": "bytes.NewBuffer",
"callee": "hook.onStart1",
"error": "some error",
},
},
{
name: "OnStopExecuted",
give: &OnStopExecuted{
FunctionName: "hook.onStart1",
CallerName: "bytes.NewBuffer",
Runtime: time.Millisecond * 3,
},
wantMessage: "OnStop hook executed",
wantFields: map[string]interface{}{
"caller": "bytes.NewBuffer",
"callee": "hook.onStart1",
"runtime": "3ms",
},
},
{
name: "OnStartExecuted/Error",
give: &OnStartExecuted{
FunctionName: "hook.onStart1",
CallerName: "bytes.NewBuffer",
Err: fmt.Errorf("some error"),
},
wantMessage: "OnStart hook failed",
wantFields: map[string]interface{}{
"caller": "bytes.NewBuffer",
"callee": "hook.onStart1",
"error": "some error",
},
},
{
name: "OnStartExecuted",
give: &OnStartExecuted{
FunctionName: "hook.onStart1",
CallerName: "bytes.NewBuffer",
Runtime: time.Millisecond * 3,
},
wantMessage: "OnStart hook executed",
wantFields: map[string]interface{}{
"caller": "bytes.NewBuffer",
"callee": "hook.onStart1",
"runtime": "3ms",
},
},
{
name: "Supplied",
give: &Supplied{
TypeName: "*bytes.Buffer",
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
},
wantMessage: "supplied",
wantFields: map[string]interface{}{
"type": "*bytes.Buffer",
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
},
},
{
name: "Supplied/Error",
give: &Supplied{
TypeName: "*bytes.Buffer",
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
Err: someError,
},
wantMessage: "error encountered while applying options",
wantFields: map[string]interface{}{
"type": "*bytes.Buffer",
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"error": "some error",
},
},
{
name: "Provide",
give: &Provided{
ConstructorName: "bytes.NewBuffer()",
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
ModuleName: "myModule",
OutputTypeNames: []string{"*bytes.Buffer"},
Private: false,
},
wantMessage: "provided",
wantFields: map[string]interface{}{
"constructor": "bytes.NewBuffer()",
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"type": "*bytes.Buffer",
"module": "myModule",
},
},
{
name: "PrivateProvide",
give: &Provided{
ConstructorName: "bytes.NewBuffer()",
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
ModuleName: "myModule",
OutputTypeNames: []string{"*bytes.Buffer"},
Private: true,
},
wantMessage: "provided",
wantFields: map[string]interface{}{
"constructor": "bytes.NewBuffer()",
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"type": "*bytes.Buffer",
"module": "myModule",
"private": true,
},
},
{
name: "Provide/Error",
give: &Provided{
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
Err: someError,
},
wantMessage: "error encountered while applying options",
wantFields: map[string]interface{}{
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"error": "some error",
},
},
{
name: "Replace",
give: &Replaced{
ModuleName: "myModule",
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
OutputTypeNames: []string{"*bytes.Buffer"},
},
wantMessage: "replaced",
wantFields: map[string]interface{}{
"type": "*bytes.Buffer",
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"module": "myModule",
},
},
{
name: "Replace/Error",
give: &Replaced{
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
Err: someError,
},
wantMessage: "error encountered while replacing",
wantFields: map[string]interface{}{
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"error": "some error",
},
},
{
name: "Decorate",
give: &Decorated{
DecoratorName: "bytes.NewBuffer()",
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
ModuleName: "myModule",
OutputTypeNames: []string{"*bytes.Buffer"},
},
wantMessage: "decorated",
wantFields: map[string]interface{}{
"decorator": "bytes.NewBuffer()",
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"type": "*bytes.Buffer",
"module": "myModule",
},
},
{
name: "Decorate/Error",
give: &Decorated{
StackTrace: []string{"main.main", "runtime.main"},
ModuleTrace: []string{"main.main"},
Err: someError,
},
wantMessage: "error encountered while applying options",
wantFields: map[string]interface{}{
"stacktrace": []interface{}{"main.main", "runtime.main"},
"moduletrace": []interface{}{"main.main"},
"error": "some error",
},
},
{
name: "Run",
give: &Run{Name: "bytes.NewBuffer()", Kind: "constructor"},
wantMessage: "run",
wantFields: map[string]interface{}{
"name": "bytes.NewBuffer()",
"kind": "constructor",
},
},
{
name: "Run with module",
give: &Run{
Name: "bytes.NewBuffer()",
Kind: "constructor",
ModuleName: "myModule",
},
wantMessage: "run",
wantFields: map[string]interface{}{
"name": "bytes.NewBuffer()",
"kind": "constructor",
"module": "myModule",
},
},
{
name: "Run/Error",
give: &Run{
Name: "bytes.NewBuffer()",
Kind: "constructor",
Err: someError,
},
wantMessage: "error returned",
wantFields: map[string]interface{}{
"name": "bytes.NewBuffer()",
"kind": "constructor",
"error": "some error",
},
},
{
name: "Invoking/Success",
give: &Invoking{ModuleName: "myModule", FunctionName: "bytes.NewBuffer()"},
wantMessage: "invoking",
wantFields: map[string]interface{}{
"function": "bytes.NewBuffer()",
"module": "myModule",
},
},
{
name: "Invoked/Error",
give: &Invoked{FunctionName: "bytes.NewBuffer()", Err: someError},
wantMessage: "invoke failed",
wantFields: map[string]interface{}{
"error": "some error",
"stack": "",
"function": "bytes.NewBuffer()",
},
},
{
name: "Start/Error",
give: &Started{Err: someError},
wantMessage: "start failed",
wantFields: map[string]interface{}{
"error": "some error",
},
},
{
name: "Stopping",
give: &Stopping{Signal: os.Interrupt},
wantMessage: "received signal",
wantFields: map[string]interface{}{
"signal": "INTERRUPT",
},
},
{
name: "Stopped/Error",
give: &Stopped{Err: someError},
wantMessage: "stop failed",
wantFields: map[string]interface{}{
"error": "some error",
},
},
{
name: "RollingBack/Error",
give: &RollingBack{StartErr: someError},
wantMessage: "start failed, rolling back",
wantFields: map[string]interface{}{
"error": "some error",
},
},
{
name: "RolledBack/Error",
give: &RolledBack{Err: someError},
wantMessage: "rollback failed",
wantFields: map[string]interface{}{
"error": "some error",
},
},
{
name: "Started",
give: &Started{},
wantMessage: "started",
wantFields: map[string]interface{}{},
},
{
name: "LoggerInitialized/Error",
give: &LoggerInitialized{Err: someError},
wantMessage: "custom logger initialization failed",
wantFields: map[string]interface{}{
"error": "some error",
},
},
{
name: "LoggerInitialized",
give: &LoggerInitialized{ConstructorName: "bytes.NewBuffer()"},
wantMessage: "initialized custom fxevent.Logger",
wantFields: map[string]interface{}{
"function": "bytes.NewBuffer()",
},
},
}
t.Run("debug observer, log at default (info)", func(t *testing.T) {
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
core, observedLogs := observer.New(zap.DebugLevel)
(&ZapLogger{Logger: zap.New(core)}).LogEvent(tt.give)
logs := observedLogs.TakeAll()
require.Len(t, logs, 1)
got := logs[0]
assert.Equal(t, tt.wantMessage, got.Message)
assert.Equal(t, tt.wantFields, got.ContextMap())
})
}
})
t.Run("info observer, log at debug", func(t *testing.T) {
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
core, observedLogs := observer.New(zap.InfoLevel)
l := &ZapLogger{Logger: zap.New(core)}
l.UseLogLevel(zapcore.DebugLevel)
l.LogEvent(tt.give)
logs := observedLogs.TakeAll()
// logs are not visible unless they are errors
if strings.HasSuffix(tt.name, "/Error") {
require.Len(t, logs, 1)
got := logs[0]
assert.Equal(t, tt.wantMessage, got.Message)
assert.Equal(t, tt.wantFields, got.ContextMap())
} else {
require.Len(t, logs, 0)
}
})
}
})
t.Run("info observer, log/error at debug", func(t *testing.T) {
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
core, observedLogs := observer.New(zap.InfoLevel)
l := &ZapLogger{Logger: zap.New(core)}
l.UseLogLevel(zapcore.DebugLevel)
l.UseErrorLevel(zapcore.DebugLevel)
l.LogEvent(tt.give)
logs := observedLogs.TakeAll()
require.Len(t, logs, 0, "no logs should be visible")
})
}
})
t.Run("test setting log levels", func(t *testing.T) {
levels := []zapcore.Level{
zapcore.DebugLevel,
zapcore.WarnLevel,
zapcore.DPanicLevel,
zapcore.PanicLevel,
}
for _, level := range levels {
core, observedLogs := observer.New(level)
logger := &ZapLogger{Logger: zap.New(core)}
logger.UseLogLevel(level)
func() {
defer func() {
recover()
}()
logger.LogEvent(&OnStartExecuting{
FunctionName: "hook.onStart",
CallerName: "bytes.NewBuffer",
})
}()
logs := observedLogs.TakeAll()
require.Len(t, logs, 1)
}
})
t.Run("test setting error log levels", func(t *testing.T) {
levels := []zapcore.Level{
zapcore.DebugLevel,
zapcore.WarnLevel,
zapcore.DPanicLevel,
zapcore.PanicLevel,
zapcore.FatalLevel,
}
for _, level := range levels {
core, observedLogs := observer.New(level)
logger := &ZapLogger{Logger: zap.New(core, zap.WithFatalHook(zapcore.WriteThenPanic))}
logger.UseErrorLevel(level)
func() {
defer func() {
recover()
}()
logger.LogEvent(&OnStopExecuted{
FunctionName: "hook.onStart1",
CallerName: "bytes.NewBuffer",
Err: fmt.Errorf("some error"),
})
}()
logs := observedLogs.TakeAll()
require.Len(t, logs, 1)
}
})
}
``` |
Yao Zhenhua (born 1969/1970) is a Chinese billionaire businessman, and the chairman of Baoneng Group.
Career
In 1992, Yao founded Baoneng Group, which now has over 40 shopping malls in China.
In February 2017, Yao was banned from China's insurance industry for ten years after a failed takeover bid for Vanke by a Baoneng company, Foresea Life Insurance.
Personal life
Yao lives in Shenzhen, China.
References
Living people
Billionaires from Guangdong
Businesspeople from Guangdong
Year of birth missing (living people) |
Howard Sattler (23 February 1945 – 11 June 2021) was an Australian talk back radio host.
Sattler began his career as a cadet journalist for the Sydney Morning Herald before performing national service during the Vietnam War, during which he completed officer training and moved to Perth in a public relations position with the Australian Department of Defence. From there he moved into broadcast radio, although he also was a newspaper editor and columnist.
He was considered to have introduced the shock-jock style of radio to Perth. Although well known in his state of Western Australia after a 30 year long career on radio, he gained national notoriety in 2013 when he was fired from radio station 6PR over a controversial interview with former Prime Minister Julia Gillard, in which he asked her whether her partner Tim Mathieson was gay.
In 2018, Sattler was inducted into the Australian Media Hall of Fame.
In his later years he developed multiple health conditions, including throat cancer, and was diagnosed with PSB Steele Richardson syndrome (from which he eventually died), which so affected his speech that listeners would often call in thinking he was drunk. He became a vocal advocate for voluntary euthanasia laws.
References
1945 births
2021 deaths
Australian radio personalities |
Rural and isolated practice registered nurse (RIPRN), also rural and isolated practice endorsed registered nurse (RIPERN), is an endorsement for registered nurses practising in rural, isolated and remote areas in Australia. Such nurses hold the post-nominal RIPRN.
The program of study is delivered at a post-graduate certificate or diploma level, and is recognised by the Australian Health Practitioner's Registration Authority (AHPRA) as "scheduled medicines endorsement (rural and isolated practice)". The only other endorsement recognised for nurses by AHPRA is that of a midwife.
Once endorsed as RIPRN, nurses in may initiate the administration and supply of certain restricted and controlled drugs, or scheduled medicines (that normally require a prescription) under a drug therapy protocol (DTP). The DTP requires that clinical guidelines around the use of the medicines are in place - called health management protocols (HMP). In Queensland the HMPs are contained within the statewide Primary Clinical Care Manual (PCCM). The PCCM is updated in line with Cochrane Library data and other evidence-based medicine sources every two years to remain current.
If completing the course through Queensland Health as the education provider, the program includes written and practical assessment over an 11-month period of time. Otherwise by Graduate Diploma through a University, the courses usually take 12 months.
Course content
Content of the program includes:
Legislation and context of practice
Pharmacology
Clinical skills assessments
Immunisation for nurses
Primary health care case studies
References
External links
The Cunningham Centre: course information
Nursing in Australia
Community nursing |
Didierea is a genus of succulent flowering plants in the family Didiereaceae. It is dedicated to naturalist Alfred Grandidier (1836-1921).
Species of Didierea are dioecious, with male and female flowers on separate plants. The two known species are endemic to Madagascar, where they are found in the spiny forest–thicket ecosystem. They are listed in CITES appendix II, which means that their trade is restricted to protect natural populations.
Species
References
Didiereaceae
Endemic flora of Madagascar
Caryophyllales genera
Taxa named by Henri Ernest Baillon
Dioecious plants
Flora of the Madagascar spiny thickets |
```objective-c
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_BASE_PLATFORM_ELAPSED_TIMER_H_
#define V8_BASE_PLATFORM_ELAPSED_TIMER_H_
#include "src/base/logging.h"
#include "src/base/platform/time.h"
namespace v8 {
namespace base {
class ElapsedTimer final {
public:
#ifdef DEBUG
ElapsedTimer() : started_(false) {}
#endif
// Starts this timer. Once started a timer can be checked with
// |Elapsed()| or |HasExpired()|, and may be restarted using |Restart()|.
// This method must not be called on an already started timer.
void Start() {
DCHECK(!IsStarted());
start_ticks_ = Now();
#ifdef DEBUG
started_ = true;
#endif
DCHECK(IsStarted());
}
// Stops this timer. Must not be called on a timer that was not
// started before.
void Stop() {
DCHECK(IsStarted());
start_ticks_ = TimeTicks();
#ifdef DEBUG
started_ = false;
#endif
DCHECK(!IsStarted());
}
// Returns |true| if this timer was started previously.
bool IsStarted() const {
DCHECK(started_ || start_ticks_.IsNull());
DCHECK(!started_ || !start_ticks_.IsNull());
return !start_ticks_.IsNull();
}
// Restarts the timer and returns the time elapsed since the previous start.
// This method is equivalent to obtaining the elapsed time with |Elapsed()|
// and then starting the timer again, but does so in one single operation,
// avoiding the need to obtain the clock value twice. It may only be called
// on a previously started timer.
TimeDelta Restart() {
DCHECK(IsStarted());
TimeTicks ticks = Now();
TimeDelta elapsed = ticks - start_ticks_;
DCHECK_GE(elapsed.InMicroseconds(), 0);
start_ticks_ = ticks;
DCHECK(IsStarted());
return elapsed;
}
// Returns the time elapsed since the previous start. This method may only
// be called on a previously started timer.
TimeDelta Elapsed() const {
DCHECK(IsStarted());
TimeDelta elapsed = Now() - start_ticks_;
DCHECK_GE(elapsed.InMicroseconds(), 0);
return elapsed;
}
// Returns |true| if the specified |time_delta| has elapsed since the
// previous start, or |false| if not. This method may only be called on
// a previously started timer.
bool HasExpired(TimeDelta time_delta) const {
DCHECK(IsStarted());
return Elapsed() >= time_delta;
}
private:
static V8_INLINE TimeTicks Now() {
TimeTicks now = TimeTicks::HighResolutionNow();
DCHECK(!now.IsNull());
return now;
}
TimeTicks start_ticks_;
#ifdef DEBUG
bool started_;
#endif
};
} // namespace base
} // namespace v8
#endif // V8_BASE_PLATFORM_ELAPSED_TIMER_H_
``` |
The Ethiopic Lamentations of Jeremiah (Geʽez: ) is a pseudepigraphic text, belonging to the Old Testament canons of the Beta Israel and Ethiopian Orthodox Church. It is not considered canonical by any other Judeo-Christian groups.
Contents
This Ethiopic text, first edited by August Dillmann in 1866, consists of eleven chapters:
See also
4 Baruch
Beta Israel: §Texts
Ethiopian canon: §List of books
Notes
Year of work missing
Old Testament pseudepigrapha
Baruch ben Neriah |
NGC 2014 is a red emission nebula surrounding an open cluster of stars in the Large Magellanic Cloud, at a distance of about 163,000 light-years.
The nebula was discovered on 3 August 1826 by James Dunlop. Together with NGC 2020 it makes up what is called the Cosmic Reef.
References
External links
Emission nebulae
Large Magellanic Cloud
Dorado
2014 |
```objective-c
/* Header describing internals of libintl library.
Written by Ulrich Drepper <drepper@cygnus.com>, 1995.
This program is free software; you can redistribute it and/or modify it
by the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
You should have received a copy of the GNU Library General Public
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA. */
#ifndef _GETTEXTP_H
#define _GETTEXTP_H
#include <stddef.h> /* Get size_t. */
#ifdef _LIBC
# include "../iconv/gconv_int.h"
#else
# if HAVE_ICONV
# include <iconv.h>
# endif
#endif
#include "loadinfo.h"
#include "gettext.h" /* Get nls_uint32. */
/* @@ end of prolog @@ */
#ifndef PARAMS
# if __STDC__
# define PARAMS(args) args
# else
# define PARAMS(args) ()
# endif
#endif
#ifndef internal_function
# define internal_function
#endif
/* Tell the compiler when a conditional or integer expression is
almost always true or almost always false. */
#ifndef HAVE_BUILTIN_EXPECT
# define __builtin_expect(expr, val) (expr)
#endif
#ifndef W
# define W(flag, data) ((flag) ? SWAP (data) : (data))
#endif
#ifdef _LIBC
# include <byteswap.h>
# define SWAP(i) bswap_32 (i)
#else
/* GCC LOCAL: Prototype first to avoid warnings; change argument to
unsigned int to avoid K&R type promotion errors with 64-bit "int". */
static inline nls_uint32 SWAP PARAMS ((unsigned int));
static inline nls_uint32
SWAP (ii)
unsigned int ii;
{
nls_uint32 i = ii;
return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24);
}
#endif
/* This is the representation of the expressions to determine the
plural form. */
struct expression
{
int nargs; /* Number of arguments. */
enum operator
{
/* Without arguments: */
var, /* The variable "n". */
num, /* Decimal number. */
/* Unary operators: */
lnot, /* Logical NOT. */
/* Binary operators: */
mult, /* Multiplication. */
divide, /* Division. */
module, /* Module operation. */
plus, /* Addition. */
minus, /* Subtraction. */
less_than, /* Comparison. */
greater_than, /* Comparison. */
less_or_equal, /* Comparison. */
greater_or_equal, /* Comparison. */
equal, /* Comparision for equality. */
not_equal, /* Comparision for inequality. */
land, /* Logical AND. */
lor, /* Logical OR. */
/* Ternary operators: */
qmop /* Question mark operator. */
} operation;
union
{
unsigned long int num; /* Number value for `num'. */
struct expression *args[3]; /* Up to three arguments. */
} val;
};
/* This is the data structure to pass information to the parser and get
the result in a thread-safe way. */
struct parse_args
{
const char *cp;
struct expression *res;
};
/* The representation of an opened message catalog. */
struct loaded_domain
{
const char *data;
int use_mmap;
size_t mmap_size;
int must_swap;
nls_uint32 nstrings;
struct string_desc *orig_tab;
struct string_desc *trans_tab;
nls_uint32 hash_size;
nls_uint32 *hash_tab;
int codeset_cntr;
#ifdef _LIBC
__gconv_t conv;
#else
# if HAVE_ICONV
iconv_t conv;
# endif
#endif
char **conv_tab;
struct expression *plural;
unsigned long int nplurals;
};
/* We want to allocate a string at the end of the struct. But ISO C
doesn't allow zero sized arrays.
GCC LOCAL: Always use 1, to avoid warnings. */
/*#ifdef __GNUC__*/
/*# define ZERO 0*/
/*#else*/
# define ZERO 1
/*#endif*/
/* A set of settings bound to a message domain. Used to store settings
from bindtextdomain() and bind_textdomain_codeset(). */
struct binding
{
struct binding *next;
char *dirname;
int codeset_cntr; /* Incremented each time codeset changes. */
char *codeset;
char domainname[ZERO];
};
/* A counter which is incremented each time some previous translations
become invalid.
This variable is part of the external ABI of the GNU libintl. */
extern int _nl_msg_cat_cntr;
struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname,
char *__locale,
const char *__domainname,
struct binding *__domainbinding))
internal_function;
void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain,
struct binding *__domainbinding))
internal_function;
void _nl_unload_domain PARAMS ((struct loaded_domain *__domain))
internal_function;
const char *_nl_init_domain_conv PARAMS ((struct loaded_l10nfile *__domain_file,
struct loaded_domain *__domain,
struct binding *__domainbinding))
internal_function;
void _nl_free_domain_conv PARAMS ((struct loaded_domain *__domain))
internal_function;
char *_nl_find_msg PARAMS ((struct loaded_l10nfile *domain_file,
struct binding *domainbinding,
const char *msgid, size_t *lengthp))
internal_function;
/* GCC LOCAL: This prototype moved here from next to its
use in loadmsgcat.c. */
extern const char *locale_charset PARAMS ((void)) internal_function;
#ifdef _LIBC
extern char *__gettext PARAMS ((const char *__msgid));
extern char *__dgettext PARAMS ((const char *__domainname,
const char *__msgid));
extern char *__dcgettext PARAMS ((const char *__domainname,
const char *__msgid, int __category));
extern char *__ngettext PARAMS ((const char *__msgid1, const char *__msgid2,
unsigned long int __n));
extern char *__dngettext PARAMS ((const char *__domainname,
const char *__msgid1, const char *__msgid2,
unsigned long int n));
extern char *__dcngettext PARAMS ((const char *__domainname,
const char *__msgid1, const char *__msgid2,
unsigned long int __n, int __category));
extern char *__dcigettext PARAMS ((const char *__domainname,
const char *__msgid1, const char *__msgid2,
int __plural, unsigned long int __n,
int __category));
extern char *__textdomain PARAMS ((const char *__domainname));
extern char *__bindtextdomain PARAMS ((const char *__domainname,
const char *__dirname));
extern char *__bind_textdomain_codeset PARAMS ((const char *__domainname,
const char *__codeset));
#else
extern char *gettext__ PARAMS ((const char *__msgid));
extern char *dgettext__ PARAMS ((const char *__domainname,
const char *__msgid));
extern char *dcgettext__ PARAMS ((const char *__domainname,
const char *__msgid, int __category));
extern char *ngettext__ PARAMS ((const char *__msgid1, const char *__msgid2,
unsigned long int __n));
extern char *dngettext__ PARAMS ((const char *__domainname,
const char *__msgid1, const char *__msgid2,
unsigned long int __n));
extern char *dcngettext__ PARAMS ((const char *__domainname,
const char *__msgid1, const char *__msgid2,
unsigned long int __n, int __category));
extern char *dcigettext__ PARAMS ((const char *__domainname,
const char *__msgid1, const char *__msgid2,
int __plural, unsigned long int __n,
int __category));
extern char *textdomain__ PARAMS ((const char *__domainname));
extern char *bindtextdomain__ PARAMS ((const char *__domainname,
const char *__dirname));
extern char *bind_textdomain_codeset__ PARAMS ((const char *__domainname,
const char *__codeset));
#endif
#ifdef _LIBC
extern void __gettext_free_exp PARAMS ((struct expression *exp))
internal_function;
extern int __gettextparse PARAMS ((void *arg));
#else
extern void gettext_free_exp__ PARAMS ((struct expression *exp))
internal_function;
extern int gettextparse__ PARAMS ((void *arg));
#endif
/* @@ begin of epilog @@ */
#endif /* gettextP.h */
``` |
```css
Hide the scrollbar in webkit browser
Disable resizable property of `textarea`
Use `SVG` for icons
How to flip an image
Disclose file format of links
``` |
```objective-c
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_INTL_SUPPORT
#error Internationalization is expected to be enabled.
#endif // V8_INTL_SUPPORT
#ifndef V8_OBJECTS_JS_DATE_TIME_FORMAT_INL_H_
#define V8_OBJECTS_JS_DATE_TIME_FORMAT_INL_H_
#include "src/objects/js-date-time-format.h"
#include "src/objects/objects-inl.h"
// Has to be the last include (doesn't have include guards):
#include "src/objects/object-macros.h"
namespace v8 {
namespace internal {
TQ_OBJECT_CONSTRUCTORS_IMPL(JSDateTimeFormat)
ACCESSORS(JSDateTimeFormat, icu_locale, Managed<icu::Locale>, kIcuLocaleOffset)
ACCESSORS(JSDateTimeFormat, icu_simple_date_format,
Managed<icu::SimpleDateFormat>, kIcuSimpleDateFormatOffset)
ACCESSORS(JSDateTimeFormat, icu_date_interval_format,
Managed<icu::DateIntervalFormat>, kIcuDateIntervalFormatOffset)
inline void JSDateTimeFormat::set_hour_cycle(HourCycle hour_cycle) {
int hints = flags();
hints = HourCycleBits::update(hints, hour_cycle);
set_flags(hints);
}
inline JSDateTimeFormat::HourCycle JSDateTimeFormat::hour_cycle() const {
return HourCycleBits::decode(flags());
}
inline void JSDateTimeFormat::set_date_style(
JSDateTimeFormat::DateTimeStyle date_style) {
int hints = flags();
hints = DateStyleBits::update(hints, date_style);
set_flags(hints);
}
inline JSDateTimeFormat::DateTimeStyle JSDateTimeFormat::date_style() const {
return DateStyleBits::decode(flags());
}
inline void JSDateTimeFormat::set_time_style(
JSDateTimeFormat::DateTimeStyle time_style) {
int hints = flags();
hints = TimeStyleBits::update(hints, time_style);
set_flags(hints);
}
inline JSDateTimeFormat::DateTimeStyle JSDateTimeFormat::time_style() const {
return TimeStyleBits::decode(flags());
}
} // namespace internal
} // namespace v8
#include "src/objects/object-macros-undef.h"
#endif // V8_OBJECTS_JS_DATE_TIME_FORMAT_INL_H_
``` |
Taxes provide the most important revenue source for the Government of the People's Republic of China. Tax is a key component of macro-economic policy, and greatly affects China's economic and social development. With the changes made since the 1994 tax reform, China has sought to set up a streamlined tax system geared to a socialist market economy.
China's tax revenue came to 11.05 trillion yuan (1.8 trillion U.S. dollars) in 2013, up 9.8 per cent over 2012. Tax revenue in 2015 was 12,488.9 billion yuan. In 2016, tax revenue was 13,035.4 billion yuan. Tax revenue in 2017 was 14,436 billion yuan. In 2018, tax revenue was 15,640.1 billion yuan, an increase of 1204.1 billion yuan over the previous year. Tax revenue in 2019 was 15799.2 billion yuan. In 2020 and 2021, the total tax revenues were respectively 15431 billion and 17273.1 billion Chinese yuan. The 2017 World Bank "Doing Business" rankings estimated that China's total tax rate for corporations was 68% as a percentage of profits through direct and indirect tax. As a percentage of GDP, according to the State Administration of Taxation, overall tax revenues were 30% in China.
The government agency in charge of tax policy is the Ministry of Finance. For tax collection, it is the State Administration of Taxation.
As part of a US$586 billion economic stimulus package in November 2008, the government planned to reform VAT, stating that the plan could cut corporate taxes by 120 billion yuan.
Types of taxes
Under the current tax system in China, there are 26 types of taxes, which, according to their nature and function, can be divided into the following 8 categories:
Turnover taxes. This includes three kinds of taxes, namely, Value-Added Tax, Consumption Tax and Business Tax. The levy of these taxes are normally based on the volume of turnover or sales of the taxpayers in the manufacturing, circulation or service sectors.
Income taxes. This includes Enterprise Income Tax (effective prior to 2008, applicable to such domestic enterprises as state-owned enterprises, collectively owned enterprises, private enterprises, joint operation enterprises and joint equity enterprises) and Individual Income Tax. These taxes are levied on the basis of the profits gained by producers or dealers, or the income earned by individuals. Please note that the new Enterprise Income Tax Law of the People's Republic of China has replaced the above two enterprise taxes as of 1 January 2008.
The enterprise income tax shall be levied at the rate of 25%. 15% tax rate is a concession rate for high-tech companies.
Resource taxes. This consists of Resource Tax and Urban and Township Land Use Tax. These taxes are applicable to the exploiters engaged in natural resource exploitation or to the users of urban and township land. These taxes reflect the chargeable use of state-owned natural resources, and aim to adjust the different profits derived by taxpayers who have access to different availability of natural resources.
Taxes for special purposes. These taxes are City Maintenance and Construction Tax, Farmland Occupation Tax, Fixed Asset Investment Orientation Regulation Tax, Land Appreciation Tax, and Vehicle Acquisition Tax. These taxes are levied on specific items for special regulative purposes.
Property taxes. This encompasses House Property Tax, Urban Real Estate Tax, and Inheritance Tax (not yet levied). China is preparing to roll out a new property tax. Two of China’s largest cities, Chongqing and Shanghai have trialed property taxes between 0.4% and 1.2% since 2011, mainly targeting second homes, luxury properties, and purchases by non-residents. The new tax is expected to cover a much wider range of properties.
Behavioural taxes. This includes Vehicle and Vessel Usage Tax, Vehicle and Vessel Usage License Plate Tax, Stamp Tax, Deed Tax, Securities Exchange Tax (not yet levied), Slaughter Tax and Banquet Tax. These taxes are levied on specified behaviour.
Agricultural taxes. Taxes belonging to this category are Agriculture Tax (including Agricultural Specialty Tax) and Animal Husbandry Tax which are levied on the enterprises, units and/or individuals receiving income from agriculture and animal husbandry activities.
Customs duties. Customs duties are imposed on the goods and articles imported into and exported out of the territory of the People's Republic of China, including Excise Tax.
Tax characteristics
Compared with other forms of distribution, taxation has the characteristics of compulsory, gratuitous and fixed, which are customarily called the "three characteristics" of taxation.
Compulsory
The compulsory nature of taxation means that taxation is imposed by the state as a social administrator, by virtue of its power and political authority, through the enactment of laws or decrees. The social groups and members who are obliged to pay taxes must comply with the compulsory tax decree of the state. Within the limits stipulated by the national tax law, taxpayers must pay taxes according to the law, otherwise they will be sanctioned by the law, which is the embodiment of the legal status of taxes. The compulsory character is reflected in two aspects: on the one hand, the establishment of tax distribution relations is compulsory, i.e. tax collection is entirely by virtue of the political power of the state; on the other hand, the process of tax collection is compulsory, i.e. if there is a tax violation, the state can impose punishment according to the law.
Gratuitousness
The gratuitous nature of taxation means that through taxation, a part of the income of social groups and members of society is transferred to the state, and the state does not pay any remuneration or consideration to the taxpayer. This gratuitous nature of taxation is connected with the essence of income distribution by the state by virtue of its political power. The gratuitousness is reflected in two aspects: on the one hand, it means that the government does not have to pay any remuneration directly to the taxpayers after receiving the tax revenues; on the other hand, it means that the tax revenues collected by the government are no longer returned directly to the taxpayers. The gratuitous nature of taxation is the essence of taxation, which reflects a unilateral transfer of ownership and dominance of social products, rather than an exchange relationship of equal value. The gratuitous nature of taxation is an important characteristic that distinguishes tax revenue from other forms of fiscal revenue.
Fixedness
The fixed nature of taxation refers to the fact that taxation is levied in accordance with the standards stipulated by the state law, i.e. the taxpayers, tax objects, tax items, tax rates, valuation methods and time periods are pre-defined by the taxation law and have a relatively stable trial period, which is a fixed continuous income. For the pre-defined standard of taxation, both the taxing and tax-paying parties must jointly abide by it, and neither the taxing nor the tax-paying parties can violate or change this fixed rate or amount or other institutional provisions unless it is revised or adjusted by the state law.
Summing up
The three basic features of taxation are a unified whole. Among them, compulsory is the strong guarantee to realize the gratuitous collection of tax, gratuitous is the embodiment of the essence of taxation, and fixed is the inevitable requirement of compulsory and gratuitous.
Taxation Functions
Taxation is divided into national tax and local tax. Local taxes are further divided into: resource tax, personal income tax, individual incidental income tax, land value-added tax, urban maintenance and construction tax, vehicle and vessel use tax, property tax, slaughter tax, urban land use tax, fixed asset investment direction adjustment tax, enterprise income tax, stamp duty, etc.
Taxes are mainly used for national defense and military construction, national civil servants' salary payment, road traffic and urban infrastructure construction, scientific research, medical and health epidemic prevention, culture and education, disaster relief, environmental protection and other fields.
The functions and roles of taxation are the concrete manifestation of the essence of taxation functions. Generally speaking, taxation has several important basic functions as follows:
Organizing finance
Taxation is a form of distribution in which the government participates in social distribution by virtue of state coercive power and concentrates part of the surplus products (whether in monetary form or in physical form). The organization of state revenue is the most basic function of taxation.
Regulating the economy
The participation of the government in social distribution by means of state coercive power necessarily changes the share of social groups and their members in the distribution of national income, reducing their disposable income, but this reduction is not equal, and this gain or loss of interest will affect the economic activity capacity and behavior of taxpayers, which in turn has an impact on the social and economic structure. The government uses this influence to purposefully guide the socio-economic activities and thus rationalize the socio-economic structure.
Monitoring the economy
In the process of collecting and obtaining revenues, the state must build on the basis of intensive daily tax administration, specifically grasp the sources of taxes, understand the situation, find out problems, supervise taxpayers paying taxes in accordance with the law, and fight against violations of tax laws and regulations, thus supervising the direction of social and economic activities and maintaining the order of social life.
The role of taxation is the effect of the tax function under certain economic conditions. The role of taxation is to reflect the fair tax burden and promote equal competition; to regulate the total economic volume and maintain economic stability; to reflect the industrial policy and promote structural adjustment; to reasonably adjust the distribution and promote common prosperity; to safeguard the rights and interests of the country and promote the opening up to the outside world, etc.
Tax legislation
Tax law, that is, the legal system of taxation, is the general name of the legal norms that adjust tax relations and is an important part of the national law. It is a legal code based on the Constitution, which adjusts the relationship between the state and members of the society in terms of rights and obligations in taxation, maintains the social and economic order and taxation order, protects the national interests and the legitimate rights and interests of taxpayers, and is a rule of conduct for the state taxation authorities and all tax units and individuals to collect taxes according to the law.
Tax laws can be classified in different ways according to their legislative purposes, taxation objects, rights and interests, scope of application and functional roles. Generally, tax laws are divided into two categories: substantive tax laws and procedural tax laws according to the different functions of tax laws.
Tax legal relationship is reflected as the relationship between state tax collection and taxpayers' benefit distribution. In general, tax legal relations, like other legal relations, are composed of three aspects: subject, object and content.
The elements of tax law are the basic elements of the taxation system, which are reflected in the various basic laws enacted by the state. They mainly include taxpayers, tax objects, tax items, tax rates, tax deductions and exemptions, tax links, tax deadlines and violations. Among them, taxpayers, tax objects and tax rates are the basic factors of a taxation system or a basic composition of taxation.
The Law of the People's Republic of China on Tax Collection and Administration stipulates that taxpayers must apply for tax declaration at taxation authorities within the prescribed declaration period. By virtue of the power granted by the state power, the tax authorities collect taxes from taxpayers in the name of the state power. If a taxpayer steals tax, owes tax, cheats tax or resists tax, the tax authorities shall recover the tax, late payment and impose fines according to the law, and those who violate the criminal law shall also be criminally punished by the judicial authorities.
Tax evasion is a taxpayer's intentional violation of the tax law by deception, concealment and other means (such as forgery, alteration, concealment, unauthorized destruction of books and bookkeeping vouchers, false tax declaration, etc.) to not pay or underpay the tax due.
Tax arrears is the act that the taxpayer fails to pay tax on time and defaults on the tax payment beyond the approved tax payment period by the taxation authority.
Tax fraud is the act of taxpayers or personnel cheating the state export tax refund by false export declaration or other deceptive means. In China, export tax refund is to refund or exempt the VAT and consumption tax paid or payable by the taxpayer for the exported goods in the domestic production and circulation links. Export tax refund is an international practice.
Tax resistance is the refusal of a taxpayer to pay tax by violence or threat. Those who gather a crowd, threaten or besiege taxation authorities and beat taxation cadres, and refuse to pay taxes, are tax resisters.
State organs that have the authority to formulate tax laws or tax policy include the National People's Congress and its Standing Committee, the State Council, the Ministry of Finance, the State Administration of Taxation, the Tariff and Classification Committee of the State Council, and the General Administration of Customs.
Tax laws are enacted by the National People's Congress, e.g., the Individual Income Tax Law of the People's Republic of China; or enacted by the Standing Committee of the National People's Congress, e.g., the Tax Collection and Administration Law of the People's Republic of China.
The administrative regulations and rules concerning taxation are formulated by the State Council, e.g., the Detailed Rules for the Implementation of the Tax Collection and Administration Law of the People' s Republic of China, the Detailed Regulations for the Implementation of the Individual Income Tax Law of the People's Republic of China, the Provisional Regulations of the People's Republic of China on Value Added Tax.
The departmental rules concerning taxation are formulated by the Ministry of Finance, the State Administration of Taxation, the Tariff and Classification Committee of the State Council, and the General Administration of Customs, e.g., the Detailed Rules for the Implementation of the Provisional Regulations of the People's Republic of China on Value Added Tax, the Provisional Measures for Voluntary Reporting of the Individual Income Tax.
The formulation of tax laws follow four steps: drafting, examination, voting and promulgation. The four steps for the formulation of tax administrative regulations and rules are: planning, drafting, verification and promulgation. The four steps mentioned above take place in accordance with laws, regulations and rules.
Besides, the laws of China stipulates that within the framework of the national tax laws and regulations, some local tax regulations and rules may be formulated by the People's Congress at the provincial level and its Standing Committee, the People's Congress of minority nationality autonomous prefectures and the People's Government at provincial level.
The following table summarises up the current tax laws, regulations and rules and relevant legislation in China.
Current Tax Legislation Table
Note: The provisions of criminal responsibilities in Supplementary Rules of the Standing Committee of NPC of the People's Republic of China on Penalizing Tax Evasions and Refusal to Pay Taxes and Resolutions of the Standing Committee of NPC of the People's Republic of China on Penalizing Any False Issuance, Forgery and/or Illegal Sales of VAT Invoices have been integrated into the Criminal Law of the People's Republic of China revised and promulgated on 14 March 1997.
Tax Filing and Payment
Depending on the form of tax, taxpayers in China are required to file tax returns periodically or annually. Filing tax returns often entails giving detailed information about taxpayers’ income, expenses, deductions, and credits. The information provided is used by the tax authorities to assess the taxpayer's compliance with tax laws and regulations and to calculate the taxpayer's tax due. Taxpayers in China are subject to stringent filing and payment deadlines that must be met in order to avoid penalties and enforcement measures.
Monthly and quarterly filing of tax returns
Payment and filing deadlines may be established every day, every three days, every five days, every ten days, every fifteen days, every month, or every quarter. The competent tax authorities decide when a taxpayer must make a specific tax payment based on the type and amount of tax payable.
Value Added Tax(VAT), Corporate Income Tax(CIT), Consumption Tax (CT), Resource Tax, and Environmental Protection Tax are taxes that are paid on a monthly or quarterly basis. If taxpayers must file and pay taxes on a monthly basis, they are obligated to do so within the first 15 days of the following month. They must also ensure that the tax authorities must receive tax returns and payments on or before this date. This deadline is set out in the "Provisions of the State Administration of Taxation on the Time Limit for Tax Declaration and Payment”. The main types of monthly taxes include Individual Income Tax(IIT), Value Added Tax, Resource Tax, and Corporate Income Tax.
The deadline is postponed to the following business day if the fifteenth day falls on a weekend or a holiday. Taxpayers can check the pertinent instructions from the State Administration of Taxation or their local tax bureau to guarantee compliance with the tax rules and regulations connected to monthly tax filings. The SAT gives detailed instructions on how to complete monthly tax forms, including how to use electronic tax filing systems.
In China, several taxes have a quarterly reporting requirement. The quarterly tax filings are usually required for CIT and VAT, among others. Taxpayers with quarterly filing deadlines must submit their tax returns within the first 15 days of the month following the end of each quarter (April, July, October, and January). Urban Maintenance And Construction Tax(UMCT), the Education Surcharge, and the Local Education Surcharge are taxes that are due at the same time as the VAT and CT and are paid at the same time, respectively your tax filing frequency.
Annually tax settlement
In China, the tax year begins on January 1 and finishes on December 31. The annually reconciliation tax return must be filed between March 1 and June 30 of the following year. If an individual's consolidated income exceeds RMB 120,000, he must file an annual final tax settlement. In order to obtain tax deductions and exemptions, if eligible, a person may still choose to file an IIT return even though their taxable income is below the threshold. Taxpayers who reside in China have three options for preparing their annual IIT settlement: self-declaration, declaration through an authorised withholding agent, or declaration through an authorised tax agency. The annual corporate income tax filing deadline is May 31.
Consequences of tax-related offences
Late filing and payment penalties
In China, evading taxes is a serious offense that carries legal repercussions. To prevent and penalise tax evasion, the Chinese government has put severe laws in place. In China, tax evasion is punishable by fines, imprisonment, and potentially asset confiscation.
Tax authorities can levy penalties and take other enforcement actions against taxpayers who don't file their returns or pay their taxes by the dates specified. The severity of the violation, the kind of tax, the duration of the delay, and the taxpayer's compliance history can all affect the penalties for filing and paying taxes late. On the amount of tax that has not been paid as of the first day of the delay, penalties for late payment are assessed at a rate of 0.05% each day. Additionally, a fine of no more than 2,000 RMB may be assessed for failure to submit and pay tax within the allotted time frame. A further fine of 2,000 RMB to 10,000 RMB may be applied if the taxpayer doesn't take action to correct the problem. In addition to penalties and interest rates, late filing and payment of taxes may have further repercussions, including limitations on corporate activities, inclusion on a blacklist, and legal actions.
In some circumstances, failing to pay tax fines could lead to imprisonment. The taxing authorities may take additional legal action, such as suing the taxpayer to recoup the debt, if the taxpayer persists in refusing to pay the taxes or penalties. The circumstances of the case, including the sum of taxes or fines owed, will determine the length of the sentence.
Any taxpayer who fails to pay or underpays the amount of taxes payable and is found guilty of tax evasion, If the amount is tax evaded is between 10,000 RMB and 100,000 RMB and the amount of tax evaded is between 10% and 30% of the taxable income, or if he commits tax evasion again after having been twice subjected to administrative sanctions by the tax authorities for tax evasion, will be subject to a sentence of not exceeding 3 years or criminal detention and shall also be fined not less than one time but not more than five times the amount of tax evaded. If the amount involved is over 100,000 RMB or the amount of tax evaded accounts for over 30 percent of the total of taxes payable, he will be sentenced to fixed-term imprisonment of not less than three years, but not more than seven years, and a fine of not less than 100%, but not more than 500% the amount owed in taxes.
Blacklist system
China's government has implemented a system known as the "Blacklist System" that seeks to criminalize people and organizations who violate laws and regulations in a variety of sectors, including tax evasion, fraud, and other offenses involving taxes. In 2016, a Blacklist System to prevent fraud in taxation went into place. The name of the taxpayer may be added to the Blacklist by the tax authorities if the taxpayer persists in breaking the law or refuses to pay taxes. A taxpayer's name and other pertinent information, such as their business registration number, may be made public when they are put to the Blacklist on a government website or in other public documents. This is done to make the general public and prospective business partners aware of the taxpayer's breaking of the law. An organization that is listed on the Blacklist could not be allowed to participate in government procurements, submit a bid for a contract with the government, or issue corporate bonds. Delinquent taxpayers have the opportunity to erase their records by repaying back taxes and penalties.
Foreign investment taxation
There are 14 kinds of taxes currently applicable to the enterprises with foreign investment, foreign enterprises and/or foreigners, namely: Value Added Tax, Consumption Tax, Business Tax, Income Tax on Enterprises with Foreign Investment and Foreign Enterprises, Individual Income Tax, Resource Tax, Land Appreciation Tax, Urban Real Estate Tax, Vehicle and Vessel Usage License Plate Tax, Stamp Tax, Deed Tax, Slaughter Tax, Agriculture Tax, and Customs Duties.
Hong Kong, Macau and Taiwan and overseas Chinese and the enterprises with their investment are taxed in reference to the taxation on foreigners, enterprises with foreign investment and/or foreign enterprises. In an effort to encourage inward flow of funds, technology and information, China provides numerous preferential treatments in foreign taxation, and has successively concluded tax treaties with 60 countries (by July 1999): Japan, the US, France, UK, Belgium, Germany, Malaysia, Norway, Denmark, Singapore, Finland, Canada, Sweden, New Zealand, Thailand, Italy, the Netherlands, Poland, Australia, Bulgaria, Pakistan, Kuwait, Switzerland, Cyprus, Spain, Romania, Austria, Brazil, Mongolia, Hungary, Malta, the UAE, Luxembourg, South Korea, Russia, Papua New Guinea, India, Mauritius, Croatia, Belarus, Slovenia, Israel, Vietnam, Turkey, Ukraine, Armenia, Jamaica, Iceland, Lithuania, Latvia, Uzbekistan, Bangladesh, Yugoslavia, Sudan, Macedonia, Egypt, Portugal, Estonia, and Laos, 51 of which have been in force.
Urban and Township Land Use Tax
(1) Taxpayers
The taxpayers of Urban and Township Land Use Tax include all enterprises, units, individual household businesses and other individuals (excluding enterprises with foreign investment, foreign enterprises and foreigners).
(2) Tax payable per unit
Urban Land Use Tax in China applies regional range differential fixed Tax Rate i.e, the annual amount of tax payable per square meter is: 1.5-30 yuan for large cities, 1.2-24 yuan for medium-size cities, 0.9-18 yuan for small cities, or 0.6-12 yuan for mining districts. Upon approval, the tax payable per unit for poor area may be lowered or that for developed area may be raised to some extent.
(3) Computation
The amount of tax payable is computed on the basis of the actual size of the land occupied by the taxpayers and by applying the specified applicable tax payable per unit. The formula is:
Tax payable = Size of land occupied ×Tax payable per unit
(4) Major exemptions
Tax exemptions may be given on land occupied by governmental organs, people's organizations and military units for their own use; land occupied by units for their own use which are financed by the institutional allocation of funds from financial departments of the State; land occupied by religious temples, parks and historic scenic spots for their own use; land for public use occupied by Municipal Administration, squares and green land; land directly utilized for production in the fields of agriculture, forestry, animal husbandry and fishery industries; land used for water reservation and protection; and land occupied for energy and transportation development upon approval of the State.
City Maintenance and Construction Tax
(1) Taxpayers
The enterprises of any nature, units, individual household businesses and other individuals (excluding enterprises with foreign investment, foreign enterprises and foreigners) who are obliged to pay Value Added Tax, consumption Tax and/or Business Tax are the taxpayers of City Maintenance and Construction Tax.
(2) Tax rates and computation of tax payable
Differential rates are adopted: 7% rate for city area, 5% rate for county and township area and 1% rate for other area. The tax is based on the actual amount of VAT, Consumption Tax and/or Business Tax paid by the taxpayers, and paid together with the three taxes mentioned above. The formula for calculating the amount of the tax payable:
Tax payable = Tax base × tax rate Applicable.
Fixed Assets Investment Orientation Regulation Tax
(1) Taxpayers
This tax is imposed on enterprises, units, individual household businesses and other individuals who invest into fixed assets within the territory of the People's Republic of China (excluding enterprises with foreign investment, foreign enterprises and foreigners).
(2) Taxable items and tax rates
Table of Taxable Items and Tax Rates:
(* For some residential building investment projects, the rate is 5%.)
(3) Computation of tax payable
This tax is based on the total investment actually put into fixed assets. For renewal and transformation projects, the tax is imposed on the investment of the completed part of the construction project. The formula for calculating the tax payable is:
Tax payable - Amount of investment completed or amount of investment in construction project × Applicable rate
Land Appreciation Tax
(3) Computation of tax payable in china
To calculate the amount of Land Appreciation Tax payable, the first step is to arrive at the appreciation amount derived by the taxpayer from the transfer of real estate, which equals to the balance of proceeds received by the taxpayer on the transfer of real estate after deducting the sum of relevant deductible items. Then the amount of tax payable shall be calculated respectively for different parts of the appreciation by applying the applicable tax rates in line with the percentages of the appreciation amount over the sum of the deductible items. The sum of the amount of tax payable for different parts of the appreciation shall be the full amount of tax payable by the taxpayers. The formula is:
Tax payable = Σ (Part of appreciation ×Applicable rate)
(4) Major exemptions
The Land Appreciation Tax shall be exempt in situations where the appreciation amount on the sale of ordinary standard residential buildings construction by taxpayers for sale does not exceed 20% of the sum of deductible items and when the real estate is taken over or repossessed in accordance to the laws due to the construction requirements of the State.
Urban Real Estate Tax
(1) Taxpayers
-At present, this tax is only applied to enterprises with foreign investment, foreign enterprises and foreigners, and levied on house property only.
Taxpayers are owners, mortgagees custodians and/or users of house property.
(2) Tax base, tax rates and computation of tax payable
-Two different rates are applied to two different bases: one rate of 1. 2% is applied to the value of house property, and the other rate of 18% is applied to the rental income from the property. The formula for calculating House Property Tax payable is:
Tax payable = Tax base ×Applicable rate
(3) Major exemptions and reductions
-Newly constructed buildings shall be exempt from the tax for three years commencing from the month in which the construction is completed. Renovated buildings for which the renovation expenses exceed one half of the expenses of the new construction of such buildings shall be exempt from the tax for two years commencing from the month in which the renovation is completed. Other house property may be granted tax exemption or reduction for special reasons by the People's Government at provincial level or above.
Vehicle and Vessel Usage License Plate Tax
(1) Taxpayers
At this moment, this tax is only applied to the enterprises with foreign investment, foreign enterprises, and foreigners. The users of the taxable vehicles and vessels are taxpayers of this tax.
(2) Tax amount per unit
The tax amount per unit is different for vehicles and vessels:
a. Tax amount per unit for vehicles: 15-80 yuan per passenger vehicle per quarter; 4-15 yuan per net tonnage per quarter for cargo vehicles; 5-20 yuan per motorcycle per quarter. 0.3-8 yuan per non-motored vehicle per quarter.
b. Tax amount per unit for vessels: 0.3- 1.1 yuan per net tonnage per quarter for motorized vessels; 0.15-0.35 yuan per non-motorized vessel.
(3) Computation
The tax base for vehicles is the quantity or the net tonnage of taxable vehicles The tax base for vessels is the net-tonnage or the deadweight tonnage of the taxable vessels. The formula for computing the tax payable is:
a. Tax payable = Quantity (or net-tonnage) of taxable vehicles × Applicable tax amount per unit
b. Tax payable = Net-tonnage (or deadweight tonnage) of taxable vessels × Applicable tax amount per unit
(4) Exemptions
a. Tax exemptions may be given on the vehicles used by Embassies and Consulates in China; the vehicles used by diplomatic representatives, consuls, administrative and technical staffs and their spouses and non-grown-up children living together with them.
b. Tax exemptions may be given as stipulated in some provinces and municipalities on the fire vehicles, ambulances, water sprinkling vehicles and similar vehicles of enterprises with foreign investment and foreign enterprises.
Individual income tax
From October 1, 2018
Tax exemption: 5000 RMB for both residents and not residents.
Taxable income = income - tax exemption
Monthly tax formula: (taxable income * tax rate) - quick deduction = tax
Example: ((10000 - 5000) * 10%) - 210 = 290 RMB in taxes
Note that both, tax rate and quick deduction, are based on the 'income' AFTER the 'tax exemption': the 'taxable income'.
New Package of Tax-and-fee policies
Chinese government will implement a new package of tax-and-fee policies to support enterprises, as illustrated in Report on the Work of the Government in 2022. The Chinese government will continue to take temporary steps and institutional measures and apply policies for both tax reductions and refunds.
The State Administration of Taxation said that tax reduction and fee reduction are the fairest, most direct and most effective measures to help enterprises relieve their difficulties. In 2022, Chinese economic development is facing the triple pressure of demand contraction, supply shock, and weakening expectations. The Party Central Committee and the State Council have deployed and implemented a new package of tax-and-fee supporting policies, which include both phased measures and institutional arrangements. There are deferred tax rebate measures; there are generally applicable burden reduction policies and special assistance measures in specific fields; there are continuous arrangements and new deployments; there are policies uniformly implemented by the central government, and there are local autonomous implementations in accordance with the law.
On the basis of 2021, it is expected that year 2022's tax rebate will be about 2.5 trillion Chinese yuan, which will be the largest scale in history, exceeding the general expectations of the society before. Manufacturing is the foundation of the real economy and national competitiveness, and the main players in the small, medium and micro market are the key to ensuring people's livelihood and stabilizing employment. The tax and fee reduction policies implemented in recent years, regardless of the scale or magnitude, are the main beneficiary groups and industries for small, medium and micro market entities and the manufacturing industry. In 2022, the new package of tax-and-fee policies will continue to focus on this key point, maintain the continuity and stability of the policy, and show the characteristics of annual intensification, step-by-step expansion, and gradual progress. Scope of application, a series of policies, such as phased exemption of small-scale taxpayers' value-added tax, and increased income tax reduction for small and low-profit enterprises, will help manufacturing enterprises to go into battle lightly and develop better, and support small, medium and micro market players to overcome difficulties and continue to development and play an important supporting role.
Affected by uncertain factors such as the international environment, many companies are currently facing difficulties such as shortage of funds. In 2022, China has made great efforts to improve the VAT credit and refund system, and implemented large-scale tax refunds for the remaining tax credits. Priority is given to small and micro enterprises. The existing tax credits for small and micro enterprises will be refunded in one go before the end of June, and the incremental tax credits will be sufficient. The Chinese government focuses on supporting the manufacturing industry, and comprehensively solve the problem of tax refunds for industries such as manufacturing, scientific research and technical services, ecological and environmental protection, electricity and gas, and transportation.
In 2022, China will further increase the implementation of the super-deduction policy for R&D expenses, increase the super-deduction ratio of technology-based SMEs from 75% to 100%, implement tax incentives for enterprises investing in basic research, improve the accelerated depreciation of equipment and appliances, and the income tax for high-tech enterprises. Preferential policies and other policies to encourage enterprises to increase investment in research and development, cultivate and strengthen innovation momentum, and better promote high-quality development.
Statistics from the State Administration of Taxation show that in 2021, the country will add a total of 1,008.8 billion yuan in new tax cuts, and a total of 164.7 billion yuan in new fee reductions. From the perspective of different entities, the tax incentives for helping small and micro enterprises have continued to increase. In 2021, the tax incentives to support the development of small and micro enterprises will add 295.1 billion yuan in tax reduction, accounting for 29.3% of the new tax reduction nationwide. The "double" deduction of R&D expenses is beneficial to encourage innovation. In the whole year, 320,000 enterprises enjoyed the super deduction policy in advance, with a tax reduction of 333.3 billion yuan. Enterprises can enjoy more policy dividends earlier and more conveniently. The VAT retained tax refund system was optimized to support the real economy, continued to implement the incremental value-added tax retained tax refund policy, and processed 132.2 billion yuan in tax refunds for the manufacturing industry throughout the year, benefiting 31,000 enterprises. Among them, advanced manufacturing enterprises will fully refund the incremental value-added tax credits on a monthly basis, with an additional tax refund of 16.8 billion yuan in the whole year. The phased tax relief measures were implemented precisely to relieve difficulties. The reduction, refund and delay of tax of coal power and heating enterprises was 27.1 billion yuan, benefiting about 4,800 coal power and heating enterprises. The tax payment for small, medium and micro enterprises in the manufacturing industry was delayed and this fee exceeds 210 billion yuan.
In 2021, the macro tax burden, that is, the proportion of tax revenue in the national general public budget revenue to GDP, was 15.1%, a decrease of 0.1 percentage points from 2020 and a decrease of 3 percentage points from 2015 (18.1%). The income tax burden of key tax source enterprises operation for per 100 yuan decreased by 3.8% compared with 2020, and the cumulative decrease compared with 2015 was 21.7%. Thanks to various policies such as tax reduction and fee reduction, in 2021, the sales revenue of national enterprises increased by 21.1% year-on-year, 30.4% higher than that in 2019, and an average increase of 14.2% in the two years, maintaining a relatively rapid growth overall. The amount of equipment purchased by manufacturing enterprises across the country increased by 24.6% year-on-year, with an average increase of 14.3% in the two years.
General anti-avoidance rules (GAAR)
To combat tax evasion and other forms of tax avoidance, China has implemented the General Anti-Avoidance of Tax Evasion Regulations (GAAR). The GAAR was introduced for the first time in China in 2008 in the PRC Enterprise Income Tax Law and has subsequently undergone numerous updates and revisions. GAAR's foundational objective is to prevent taxpayers from employing aggressive tax planning techniques to reduce or eliminate their tax obligations. Any tax avoidance arrangement by an enterprise in China is subject to the General Anti-Avoidance Rule, which attempts to guarantee that the arrangement serves legitimate commercial goals and not solely to achieve tax benefits. Investigating whether the company's intention for the tax arrangement is reasonable and legal, as opposed to an illegal attempt to acquire tax benefits, is the goal. Tax authorities can disregard or recharacterize transactions that they deem to be artificial or to lack economic substance under the Chinese GAAR regulations. If a GAAR investigation is to be initiated, the local tax authorities must first obtain approval from the State Administration of Taxation. The request must be elevated through the several higher level tax authorities, which are above the local tax authority, in order to receive this approval. Taxpayers subject to the GAAR provisions in China must provide sufficient documentation to back up the commercial purpose of their transactions, transaction documentation, communications between the taxpayer and parties involved in the transaction, and documentation that can demonstrate that the arrangement has a non-tax avoidance purpose. The tax authorities in China must inform the taxpayer in writing of any challenges made to a transaction under the GAAR provisions and state their justifications.
Five year rule
The "Five Year Rule" in China refers to the tax regulations controlling the taxation of foreign citizens who stay in China for at least 183 days in a tax year and who do not leave the country for longer than thirty days in a row or 90 days cumulatively in any of the five years preceding. The five-year period restarts if a person spends the required amount of time outside of the country. To break the five-year period, an expatriate must stay less than 90 days within China for any one-year period following the sixth year if he or she has already been in China for five full consecutive years. The "Five Year Rule" clearly states that foreign nationals are subject to Chinese Individual Income Tax on their worldwide income after five years of continuous citizenship in China. According to this regulation, foreign nationals who have lived in China for less than five years are solely taxed on their income earned within China.
Tax governance
As of 2007, a paper reported that about two-thirds of tax revenue was spent at the local level and that "the ratio of central revenue to total tax revenues reached a low of 22 per cent in 1993, before rising to the 50 per cent level following the 1994 tax reform".
Malware
Companies operating in China are required to use tax software from either Baiwang or Aisino (subsidiary of China Aerospace Science and Industry Corporation), highly sophisticated malware has been found in products from both vendors. Both sets of malware allowed for the theft of corporate secrets and other industrial espionage.
GoldenSpy
GoldenSpy was discovered in 2020 inside Aisino's Intelligent Tax Software, it allows system level access allowing an attacker nearly full control over an infected system. It was discovered that the Intelligent Tax software's uninstall feature would leave the malware in place if used.
After GoldenSpy was discovered its creator's attempted to scrub it from infected systems in an attempt to cover their tracks. The uninstaller was delivered directly through the tax software. A second more sophisticated version of the uninstaller was later deployed as well.
GoldenHelper
GoldenHelper was discovered after GoldenSpy and is an equally sophisticated malware program which was part of the Golden Tax Invoicing software from Baiwang which is used by all companies in China to pay VAT. While it was discovered after GoldenSpy GoldenHelper had been operating for longer. This discovery indicated that Chinese tax software was harboring malware for much longer than suspected.
See also
State Administration of Taxation
General Administration of Customs
Ministry of Finance
List of Chinese administrative divisions by tax revenues
Tax-Sharing Reform of China in 1994
References
An Overview of China's Tax System. 10-27-2007. State Administration of Taxation.
Tax System of the People's Republic of China. Beijing Local Taxation Bureau.
Further reading
Denis V. Kadochnikov (2019) Fiscal decentralization and regional budgets’ changing roles: a comparative case study of Russia and China, Area Development and Policy, DOI: 10.1080/23792949.2019.1705171
History
Huang, R. Taxation and Governmental Finance in Sixteenth Century Ming China (Cambridge U. Press, 1974)
External links
The Economist. China's tax system. April 12, 2007. |
Anthony Stewart Head (born 20 February 1954) is an English actor and singer. Primarily a performer in musical theatre, he rose to fame in the UK in the 1980s following his role in the Gold Blend couple television advertisements for Nescafé, which led to major roles in several television series. He is best known for his roles as Rupert Giles in Buffy the Vampire Slayer (1997–2003), the Prime Minister in Little Britain (2003–2006), Uther Pendragon in Merlin (2008–2012) and Rupert Mannion in Ted Lasso (2020-2023), as well as voicing Herc Shipwright in BBC Radio 4's Cabin Pressure.
Early life
Head was born in Camden Town, London. His father was Seafield Laurence Stewart Murray Head (20 August 1919 – 22 March 2009), a documentary filmmaker and a founder of Verity Films, and his mother was actress Helen Shingler (29 August 1919 – 8 October 2019); they married in 1944 in Watford. His older brother is actor/singer Murray Head. Both brothers have played the part of Freddie Trumper in the musical Chess at the Prince Edward Theatre, London, with Murray a part of the original cast in 1986, while Anthony was in the final cast in 1989.
Head was educated at Sunbury Grammar School, and furthered his education studying acting at the London Academy of Music and Dramatic Art (LAMDA). In discussing why he chose acting as a career, in an interview in 2013 he said that "When it's in your family, it's a choice, it's there. It's not a jump to say: 'I want to act.' When I was six I was in a little show my mother's friends organised, playing the Emperor in The Emperor's New Clothes. I remember thinking: 'This is the business, this is what I want to do.'"
Career
1970s to 1990s
One of his earlier roles was in the musical Godspell in 1978 with Su Pollard. In the same year, Head made his television debut in the London Weekend Television series Enemy at the Door as Clive Martel, of the island resistance.
In the early 1980s he provided backing vocals for the band Red Box. He was featured as well on the album Face in the Window (1983) by Two Way.
In the late 1980s, he gained wider recognition as the man in the Gold Blend couple series of coffee commercials, alongside Sharon Maughan, for Nescafé Gold Blend between 1987 and 1993. (A version made for North America featured the American brand name Taster's Choice from 1990 to 1997).
Head played Frank N. Furter in the 1990–91 West End revival of The Rocky Horror Show at London's Piccadilly Theatre, with Craig Ferguson as Brad Majors. In 1991, Head's rendition of "Sweet Transvestite" was released as a single by Chrysalis Records. Head played the role again in the summer of 1995 at London's Duke of York's Theatre, a May 2006 tribute show at London's Royal Court Theatre, and an October 2000 production at the Hard Rock Hotel and Casino, Las Vegas, Nevada.
In 1997, he played the role of Rupert Giles in Buffy the Vampire Slayer, while playing this role, he lived in the United States during the late 1990s and early 2000s, although his family continued to live in the UK. Head left the regular cast of Buffy during the show's sixth season and subsequently appeared several times as a guest star through the conclusion of the series.
2000s
In 2002, he co-starred in the BBC Two television series Manchild, a show revolving around four friends approaching their fifties who try to recapture their fading youth and vitality while dealing with life as 'mature' men. He also appeared in guest roles in various other dramas, such as Silent Witness, Murder Investigation Team, and Spooks. He appeared in the 4th series of the British hit sitcom My Family in 2003, playing one of the main characters' (Abi's) father in the episode "May the Best Man Win". He was featured as the Prime Minister in the popular BBC comedy sketch show Little Britain from 2003 to 2005, and guest starred in several episodes of the 2004 series of popular drama Monarch of the Glen.
In 2001, he appeared in a special webcast version of Doctor Who, a story called Death Comes to Time, in which he played the Time Lord Valentine. He also guest starred in the Excelis Trilogy, a series of Doctor Who audio adventures produced by Big Finish Productions, and in 2005 narrated the two-part documentary Project: WHO?, detailing the television revival of the series, for BBC Radio 2 (and released to CD in 2006 by BBC Audio). In April 2006 he appeared as a school's alien headmaster, Mr. Finch, in an episode of the second series entitled "School Reunion". Soon after, he recorded an abridged audio book of the Doctor Who novel The Nightmare of Black Island by Mike Tucker. He narrated the third and fourth series of Doctor Who Confidential. He also voiced the character Baltazar, Scourge of the Universe (an evil space pirate searching for the Infinite) in the first ever animated Doctor Who special, "The Infinite Quest". Head had previously auditioned for the role of the Eighth Doctor for the 1996 television film, but lost out to Paul McGann.
In early 2006, he appeared in an episode of Hotel Babylon, a BBC One drama set in a hotel, in which he played a suicidal man who recovers and lands a music deal. The same year he filmed a pilot for a new show entitled Him and Us, loosely based on the life of openly gay rock star Elton John, for American TV channel ABC, co-starring Kim Cattrall. In July he appeared as Captain Hook at the Children's Party at the Palace, a live pantomime staged in the grounds of Buckingham Palace as part of Queen Elizabeth II's 80th birthday celebrations. In October 2006, he voiced Ponsonby, leader of MI6, in Destroy All Humans! 2.
At Comic-Con International in 2007, Joss Whedon said talks were almost completed for a 90-minute Buffy the Vampire Slayer spin-off, Ripper, as a BBC special, with both Head and the BBC on board, though this has not come to fruition. In 2007, he portrayed Stockard Channing's gay brother in the English film Sparkle, and appeared as Mr. Colubrine in the ITV1 comedy drama Sold. Head also appeared as Sir Walter Elliot in Persuasion. Head also narrated a BBC behind-the-scenes programme for the American television series Heroes, Heroes Unmasked. He has also been seen as Maurice Riley in the BBC drama The Invisibles alongside Warren Clarke.
After seeing Anthony Head in the Buffy musical episode, "Once More With Feeling", Saw director Darren Lynn Bousman cast him in his 21st century rock opera, Repo! The Genetic Opera. Head portrays an organ repossessor, employed by a fictional dystopian medical firm; "Anthony Head was my number one choice for Repo Man from the very beginning", said Bousman in an interview shortly before the film's release on 7 November 2008. The film also stars Sarah Brightman and Paris Hilton.
Head has also performed for radio, taking two of the lead roles—arch-villain Mr. Gently Benevolent, and his descendant, journalist Jeremy Sourquill—in the BBC Radio 4 comedy series, Bleak Expectations (five series, 2007–12). He also had a significant recurring role in the last two series (2011–13) of the Radio 4 sitcom Cabin Pressure as Hercules Shipwright, a romantic interest for the airline CEO played by Stephanie Cole, and returned for show's two-part finale in 2014.
Head was part of the regular cast of the BBC drama series Merlin, about the mythical wizard Merlin. Head played King Uther Pendragon, the father of Prince Arthur.
2010s – present
Head also provided voice-over work for the Nintendo Wii video game Flip's Twisted World, developed by Frozen North Productions. For his acting in the film Despite the Falling Snow he won the Best Supporting Actor award at the 2016 Prague Independent Film Festival. In July 2018 Head was added to the cast of long-running BBC radio soap-opera The Archers, playing Robin Fairbrother, member of a family with several past and current connections to the Archers themselves.
From 2019, he played Bill in 4 episodes of Motherland with Anna Maxwell Martin and Diane Morgan. From 2020 to 2023, he played former Richmond F.C owner Rupert Mannion, in Ted Lasso alongside Jason Sudeikis and Hannah Waddingham.
Head reprised his role as Giles in the Audible exclusive audio series 'Slayers: A Buffyverse Story' alongside his former Buffy co-stars James Marsters, Charisma Carpenter, Amber Benson, Juliet Landau, Emma Caulfield Ford, James Charles Leary and Danny Strong. The series will be released in October 2023.
Personal life
Head lives in Bath, Somerset with his partner, Sarah Fisher. They have two daughters, Emily and Daisy, both of whom are actresses.
Filmography
Film
Television
Radio
Stage
Video games
Music
Face in the Window – EP (1983 album) with the band Two Way
"Sweet Transvestite" (1991 single) Chrysalis Records, 7-inch single, 12-inch single, CD single, and shaped picture CD
Music for Elevators (2002 album) in collaboration with George Sarah
Once More, with Feeling (2001 album) Buffy the Vampire Slayer
"Cry" (2012 single) written by Marina Florance for the Oldie Composers Competition
Staring at the Sun (2014 album) solo album of both covers and original work
References
External links
BFI.org, Anthony Head at the British Film Institute
Watch Anthony Head in the short film Amelia and Michael
Articles and interviews
Who's Head of the class, BBC Where I Live: Somerset (December 2006)
Interview: Anthony Head, Helen Otter, BBC Where I Live: Somerset (April 2006)
Anthony Head Interview: King Arthur Screwed Up My Nintendo, TheTorchOnline.com (June 2009)
Biographies of Giles and Head at "Buffyguide"
1954 births
Living people
20th-century English male actors
21st-century English male actors
Alumni of the London Academy of Music and Dramatic Art
English male film actors
English male radio actors
English male television actors
English male voice actors
Male actors from London
People from Camden Town |
Saint-Jean-de-Niost () is a commune in the Ain department in eastern France.
It lies on the edge of the Ain plain between Meximieux and Saint-Maurice-de-Gourdans.
Population
See also
Communes of the Ain department
References
External links
Official site
Communes of Ain
Ain communes articles needing translation from French Wikipedia |
"Sweet Surrender" is a song written by David Gates and performed by Bread. The single was the second release from their fifth album, Guitar Man, and was the last of four #1 hits for Bread on the US Easy Listening chart. "Sweet Surrender" spent two weeks at #1 on the chart, while on the Billboard Hot 100, it peaked at #15.
"Sweet Surrender" also did well internationally. It was a Top 10 hit in Canada (#4) and New Zealand (#7).
Record World called it a "David Gates beauty that is sure to please Bread lovers immensely."
Chart performance
Weekly charts
Year-end charts
See also
List of number-one adult contemporary singles of 1972 (U.S.)
References
External links
1972 songs
1972 singles
Bread (band) songs
Elektra Records singles
Songs written by David Gates |
The Yuma Territorial Prison is a former prison located in Yuma, Arizona, United States. Opened on July 1, 1876, and shut down on September 15, 1909. It is one of the Yuma Crossing and Associated Sites on the National Register of Historic Places in the Yuma Crossing National Heritage Area. The site is now operated as a historical museum by Arizona State Parks as Yuma Territorial Prison State Historic Park.
History
Prison
Opened while Arizona was still a U.S. territory, the prison accepted its first inmate on July 1, 1876. For the next 33 years 3,069 prisoners, including 29 women, served sentences there for crimes ranging from murder to polygamy. The prison was under continuous construction with labor provided by the prisoners. In 1909, the last prisoner left the Territorial Prison for the newly constructed Arizona State Prison Complex located in Florence, Arizona. It was also the third historic park in Arizona. The state historic park also contains a graveyard where 104 of the prisoners are buried.
High school
Yuma Union High School occupied the buildings from 1910 to 1914. When the school's football team played against Phoenix and unexpectedly won, the Phoenix team called the Yuma team "criminals". Yuma High adopted the nickname with pride, sometimes shortened to the "Crims". The school's symbol is the face of a hardened criminal, and the student merchandise shop is called the Cell Block.
Notable inmates
Burt Alvord – Cochise County lawman and train robber
Bill Downing – Train robber
William J. Flake – Mormon pioneer imprisoned for violating the Edmunds Act
Pearl Hart – stagecoach robber
"Buckskin Frank" Leslie – gunfighter and killer of Billy Claiborne
Ricardo Flores Magón – Mexican revolutionary, founder of the Partido Liberal Mexicano
Pete Spence – outlaw involved in the Earp-Clanton feud
In popular culture
(Listed chronologically)
The Yuma Territorial Prison has been featured in:
"Three-Ten to Yuma", a 1953 western short story written by Elmore Leonard, and also in two film adaptations:
3:10 to Yuma, the 1957 original (directed by Delmer Daves and starring Glenn Ford and Van Heflin), and the 2007 remake, also titled 3:10 to Yuma, directed by James Mangold and starring Russell Crowe and Christian Bale.
26 Men, the 1957 episode "Incident at Yuma" of the syndicated western series of true stories of the Arizona Rangers, focuses on a prison break and the difficulty of gathering a posse faced by Captain Thomas H. Rynning, portrayed by Tristram Coffin.
"Hell Hole Prison" season 12, episode 8 of the Travel Channel show Ghost Adventures was shot at the prison. focusing its allegedly history of hauntings.
The prison was one of the two featured stories on the 71st episode of the podcast And That's Why We Drink.
Named one of the top haunted destinations in America by USA Today in October 2020.
Gallery
See also
Thomas H. Rynning – former warden of the prison
Ben Daniels – former superintendent of the prison
Clifton Cliff Jail – historic site in the Clifton Townsite Historic District of Clifton, Arizona
Gleeson Jail – in Gleeson, Arizona
Jose Maria Redondo – the "Father of the Yuma Territorial Prison"
List of historic properties in Yuma, Arizona
Johnny Behan Past warden
References
Further reading
External links
Yuma Territorial Prison Museum and Park – Historic Yuma AZ
Arizona State Parks: Yuma Territorial Prison State Historic Park website
AZ Department of Corrections: Early History, with Yuma Territorial Prison – Arizona Department of Corrections
Yuma Territorial Prison – ghosttowns.com
History of Yuma County, Arizona
Museums in Yuma County, Arizona
Prison museums in the United States
History museums in Arizona
State parks of Arizona
Government buildings completed in 1876
Defunct prisons in Arizona
Buildings and structures in Yuma, Arizona
American frontier
1875 establishments in Arizona Territory |
The German People's Party (, DtVP) was a German liberal party created in 1868 by the wing of the German Progress Party which during the conflict about whether the unification of Germany should be led by the Kingdom of Prussia or Austria-Hungary supported Austria. The party was most popular in Southern Germany.
Initially, the South German democrats supported the Greater German solution of the German Question. After the establishment of the German Empire in 1871 under Prussia, the solution which excluded Austria, it advocated federalist structures and defended the South German states' rights against increasing strengthening of the central government in Berlin. Insistently, the party demanded democratic reforms, in particular strengthening of the position of the parliament, which had no say in the formation of the government and no influence on government policies as the government was appointed and dismissed by the emperor alone.
In contrast to the National Liberal Party, the party stood in staunch opposition against the policy of Otto von Bismarck from the establishment of the German Empire. The party put the liberal notion of liberty above the prospect of a German unification led from above. The party was highly critical of the Prusso-German monarchy and advocated the separation of church and state. Still, it rejected Bismarck's Kulturkampf against the Catholic Church as well as the Anti-Socialist Laws. The German People's Party was the most leftist among non-Marxist parties and closest to the social democracy. It was the sole liberal party to cooperate with the socialists in the Reichstag.
Most of the party's members were craftsmen, small traders, farmers and clerks. However, the leadership consisted of upper-class intellectuals. Leopold Sonnemann (proprietor of the newspaper Frankfurter Zeitung) and the lawyer Friedrich von Payer served as Chairmen. In 1910, the party merged with the Free-minded People's Party and the Free-minded Union to form the Progressive People's Party. A notable member of both the German People's Party, the Progressive People's Party and its successor the German Democratic Party was Ludwig Quidde, the Nobel Peace Prize winner in 1927.
The most influential among the German People's Party's state organisations was the Democratic People's Party in Württemberg. After the German People's Party was disbanded, it continued as the regional branch of the Progressive People's Party, the German Democratic Party and is still part of the full name of the liberal Free Democratic Party in the state of Baden-Württemberg. In contrast to the South German People's Party of 1868–1910, the German People's Party in the Weimar Republic (1919–1933) was a monarchist successor to the imperial National Liberal Party.
See also
Contributions to liberal theory
Liberal democracy
Liberalism
Liberalism in Germany
Liberalism worldwide
List of liberal parties
References
External links
German People's Party 1868–1910. Website of the Deutsches Historisches Museum (German Historical Museum) (in German).
Germany 1868
Defunct political parties in Germany
Liberal parties in Germany
Political parties established in 1868
Political parties of the German Empire
Political parties disestablished in 1910
Radical parties
1868 establishments in Germany
1910 disestablishments in Germany |
Ben Woldring (born February 6, 1985 in Groningen
) is a Dutch internet entrepreneur and millionaire from Usquert who first rose to fame in the autumn of 1998 when, for a school assignment, he made a website where consumers could compare prices for mobile phone services. As a result, he appeared on television programmes like Kassa and the Jeugdjournaal. In 1999, the website Bellen.com registered its 100,000th visitor; a year later, Woldring started the company Bencom B.V. and hired his mother as an employee. In 2003, he won Ernst & Young's Entrepreneur of the Year Award and on November 14, 2006 he was named the best European Entrepreneur under 25 by Business Week. He is also an ambassador for the Beatrix Kinderkliniek in Groningen and the Stichting voor het Gehandicapte Kind. As of September 2009, he owns 9 price comparison websites, with the hotel comparison site LookingforBooking.com as his most recent project.
Woldring also wrote an autobiography, Ik Ben Internet-ondernemer!, published in 2000, in which he describes his life, explains his work and also gives advice.
References
External links
Benwoldring.nl
1985 births
Child businesspeople
Dutch businesspeople
Living people
People from Groningen (city) |
Showkatabad (, also romanized as Showḵatābād; also known as Shokat Abad) is a village in Aliabad Rural District, in the Central District of Anbarabad County, Kerman Province, Iran. At the 2006 census, its population was 341, in 68 families.
References
Populated places in Anbarabad County |
Anatis ocellata, commonly known as the eyed ladybug, is a species of ladybug in the family Coccinellidae. It has black spots on a red background, with each spot surrounded by a yellowish halo. In one color variation, a specimen found in Scotland was reported having the spots fused to form longitudinal lines. Sometimes can also be found variation where black spots are absent.
Distribution
The species is found from continental Europe, in transcontinental Russia, in central Asia, in Mongolia, in northern China, in Western Canada and to the Korean peninsula.
Biology
The primary habitat is temperate coniferous forest including Central European mixed forests and Sarmatic mixed forests, Scandinavian montane birch forest. Most frequently on pines but also on Picea abies and other Picea species, Betula pendula and other Betula species, and Populus tremula. Adults are entomophagous, mainly feeding on aphids on coniferous trees
The species feeds on aphids such as Eucallipterus tiliae, Tuberculatus annulatus, Euceraphis betulae, Cavariella konoi, Acyrthosiphon ignotum, A. pisum, and Macrosiphoniella artemisiae. They prefer pine aphids (family Adelgidae), and are attracted to the scent of pine. The defensive alkaloid compound 2-dehydrococcinelline has been isolated and identified from this species. The adults and larvae also feed on leaf hopper larvae on P. tremula. The adults overwinter.
References
Coccinellidae
Beetles described in 1758
Taxa named by Carl Linnaeus |
Buprestis apricans, the turpentine borer, is a species of metallic wood-boring beetle in the family Buprestidae. It is found in the Caribbean and North America.
References
Further reading
Buprestidae
Beetles described in 1801 |
Alfred John Day Diver (6 July 1823 – 25 March 1876) was an English first-class cricketer whose career spanned the 1843 season to the 1866 season. Diver played mainly for Cambridge-based sides and the All England Eleven
Popularly known as "Ducky", Diver is best known as a reliable batsman. Following the 1859 English cricket season, he was one of the 12-strong party of English players who toured North America. Led by George Parr, this was the first overseas cricket tour.
His nephew, Edwin Diver, played over 200 first-class games, mostly for Surrey and Warwickshire.
External sources
1823 births
1876 deaths
English cricketers
All-England Eleven cricketers
Cambridge Town Club cricketers
English cricketers of 1826 to 1863
Manchester Cricket Club cricketers
Marylebone Cricket Club cricketers
Middlesex cricketers
North v South cricketers
Nottinghamshire cricketers
Players cricketers
Cricketers from Cambridge |
```javascript
Use `propTypes` on stateless components
Use **React** with other libraries
Immutability helpers in **React**
Validate for required props
Custom `propType`'s to be required
``` |
Rokietnica is a village in Poznań County, Greater Poland Voivodeship, in west-central Poland. It is the seat of the gmina (administrative district) called Gmina Rokietnica. It lies approximately north-west of the regional capital Poznań.
Notable residents
Georg von Hantelmann (1898-1924), World War I pilot
References
Villages in Poznań County |
The Theater Lübeck (formerly Stage of the Hansestadt Lübeck, colloquially Stadttheater) is one of the largest theaters in the German state of Schleswig-Holstein. It is managed by Theater Lübeck GmbH, a state-owned company of the Hansestadt Lübeck.
Public interest in theatrical works and opera arose in Lübeck in the early days of the Age of Enlightenment and the first opera production in the city took place on 2 June 1746 in the house of master craftsman Schröder Ecke on the Königstraße. The predecessor of the current building dates from 1752. The transition of the company to the city in the 19th century is described by Thomas Mann in his novel Buddenbrooks.
Prominent conductors that began their careers in Lübeck include Hermann Abendroth, Wilhelm Furtwängler and Christoph von Dohnányi.
Structure
The Theater was built in 1908 in the Art Nouveau style, on the site of an 18th-century theater on the Beckergrube in Lübeck's Old City. It was designed by Martin Dülfer and construction was funded by local businessman and philanthropist Emil Possehl. The reliefs on the sandstone facade are the work of sculptor Georg Roemer. The relief in the center depicts Apollo and the Nine Muses, with Comedy and Tragedy represented on either side. The gable end supports depicting Caryatids and Atlas are the work of Hamburg plasterer Karl Weinberger. The facade and the entire building received a complete restoration in the 1990s.
The theater today
The theater offerings include a variety of cultural activities, including opera, ballet, chamber music, and plays, as well as concerts of the Lübeck Philharmonic Orchestra.
The theater management has included Karl Vibach (1968–1978), Hans Thoenies (1978–1991), Dietrich von Oertzen (1991–2000) and Marc Adam (2000–2007). Since 2007 the theater has been managed by committee.
50% of the proceeds of Theater Lübeck GmbH go to the city of Lübeck. 12.5% each go to the regional governments of the surrounding districts of Herzogtum Lauenburg and Nordwestmecklenburg, the Chamber of Commerce ("Kaufmannschaft"), and the Gesellschaft der Theaterfreunde e. V. Lübeck (Friends of the Theater).
References
Notes
Sources
Heinrich Asmus: Die dramatische Kunst und das Theater zu Lübeck (Dramatic arts and the theater at Lübeck). Von Rohden, Lübeck 1862
Klaus Matthias: Grossbauten der Lübecker Innenstadt nach 1900. Von der Überwindung des Historismus zum Jugendstil. In: Der Wagen 1992, S. 182–205 (see p. 193ff for details on architecture and the facade)
Carl Stiehl: Geschichte des Theaters in Lübeck (History of the Lübeck Theater). Borchers, Lübeck 1902
External links
Official web site
Theater Lubeck
Theater Lubeck
Theatres in Germany
Opera houses in Germany
Theater Lubeck
Theater Lubeck
Theatres completed in 1908
Music venues completed in 1908
Art Nouveau theatres
1908 establishments in Germany |
```php
<?php
/*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
*/
namespace Google\Service\DiscoveryEngine;
class your_sha256_hashonfigDigitalParsingConfig extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(your_sha256_hashonfigDigitalParsingConfig::class, your_sha256_hashocumentProcessingConfigParsingConfigDigitalParsingConfig');
``` |
Lindsay Wood is a Scottish curler.
She is a and a .
Awards
Frances Brodie Award: 2007
All-Star Team, Women: 2002
Teams
Women's
Mixed
References
External links
Some Famous Woods - Clan Wood Society
Living people
Scottish female curlers
Scottish curling champions
Continental Cup of Curling participants
Year of birth missing (living people) |
```python
# $Id: __init__.py 6433 2010-09-28 08:21:25Z milde $
# Authors: David Goodger <goodger@python.org>; Ueli Schlaepfer
"""
This package contains modules for standard tree transforms available
to Docutils components. Tree transforms serve a variety of purposes:
- To tie up certain syntax-specific "loose ends" that remain after the
initial parsing of the input plaintext. These transforms are used to
supplement a limited syntax.
- To automate the internal linking of the document tree (hyperlink
references, footnote references, etc.).
- To extract useful information from the document tree. These
transforms may be used to construct (for example) indexes and tables
of contents.
Each transform is an optional step that a Docutils component may
choose to perform on the parsed document.
"""
__docformat__ = 'reStructuredText'
from docutils import languages, ApplicationError, TransformSpec
class TransformError(ApplicationError): pass
class Transform:
"""
Docutils transform component abstract base class.
"""
default_priority = None
"""Numerical priority of this transform, 0 through 999 (override)."""
def __init__(self, document, startnode=None):
"""
Initial setup for in-place document transforms.
"""
self.document = document
"""The document tree to transform."""
self.startnode = startnode
"""Node from which to begin the transform. For many transforms which
apply to the document as a whole, `startnode` is not set (i.e. its
value is `None`)."""
self.language = languages.get_language(
document.settings.language_code, document.reporter)
"""Language module local to this document."""
def apply(self, **kwargs):
"""Override to apply the transform to the document tree."""
raise NotImplementedError('subclass must override this method')
class Transformer(TransformSpec):
"""
Stores transforms (`Transform` classes) and applies them to document
trees. Also keeps track of components by component type name.
"""
def __init__(self, document):
self.transforms = []
"""List of transforms to apply. Each item is a 3-tuple:
``(priority string, transform class, pending node or None)``."""
self.unknown_reference_resolvers = []
"""List of hook functions which assist in resolving references"""
self.document = document
"""The `nodes.document` object this Transformer is attached to."""
self.applied = []
"""Transforms already applied, in order."""
self.sorted = 0
"""Boolean: is `self.tranforms` sorted?"""
self.components = {}
"""Mapping of component type name to component object. Set by
`self.populate_from_components()`."""
self.serialno = 0
"""Internal serial number to keep track of the add order of
transforms."""
def add_transform(self, transform_class, priority=None, **kwargs):
"""
Store a single transform. Use `priority` to override the default.
`kwargs` is a dictionary whose contents are passed as keyword
arguments to the `apply` method of the transform. This can be used to
pass application-specific data to the transform instance.
"""
if priority is None:
priority = transform_class.default_priority
priority_string = self.get_priority_string(priority)
self.transforms.append(
(priority_string, transform_class, None, kwargs))
self.sorted = 0
def add_transforms(self, transform_list):
"""Store multiple transforms, with default priorities."""
for transform_class in transform_list:
priority_string = self.get_priority_string(
transform_class.default_priority)
self.transforms.append(
(priority_string, transform_class, None, {}))
self.sorted = 0
def add_pending(self, pending, priority=None):
"""Store a transform with an associated `pending` node."""
transform_class = pending.transform
if priority is None:
priority = transform_class.default_priority
priority_string = self.get_priority_string(priority)
self.transforms.append(
(priority_string, transform_class, pending, {}))
self.sorted = 0
def get_priority_string(self, priority):
"""
Return a string, `priority` combined with `self.serialno`.
This ensures FIFO order on transforms with identical priority.
"""
self.serialno += 1
return '%03d-%03d' % (priority, self.serialno)
def populate_from_components(self, components):
"""
Store each component's default transforms, with default priorities.
Also, store components by type name in a mapping for later lookup.
"""
for component in components:
if component is None:
continue
self.add_transforms(component.get_transforms())
self.components[component.component_type] = component
self.sorted = 0
# Set up all of the reference resolvers for this transformer. Each
# component of this transformer is able to register its own helper
# functions to help resolve references.
unknown_reference_resolvers = []
for i in components:
unknown_reference_resolvers.extend(i.unknown_reference_resolvers)
decorated_list = [(f.priority, f) for f in unknown_reference_resolvers]
decorated_list.sort()
self.unknown_reference_resolvers.extend([f[1] for f in decorated_list])
def apply_transforms(self):
"""Apply all of the stored transforms, in priority order."""
self.document.reporter.attach_observer(
self.document.note_transform_message)
while self.transforms:
if not self.sorted:
# Unsorted initially, and whenever a transform is added.
self.transforms.sort()
self.transforms.reverse()
self.sorted = 1
priority, transform_class, pending, kwargs = self.transforms.pop()
transform = transform_class(self.document, startnode=pending)
transform.apply(**kwargs)
self.applied.append((priority, transform_class, pending, kwargs))
``` |
EcoTalk, formerly TrashTalk, was a radio show on the Air America Radio network, hosted by Betsy Rosenberg. Rosenberg is a long-time radio journalist, she spent much of her career with CBS Radio, specifically the "environmental issues" reporter for CBS's San Francisco station KCBS-AM.
The show launched on Earth Day 1997 on KCBS radio. The focus was originally on waste reduction, hence the original name TrashTalk: Sound Solutions for a Healthier Planet and People. In 2004, it expanded to an hour-long interview show and rebranded as EcoTalk. Around this time it also moved to Air America, broadcasting on 40 stations across the United States, making it the first nationally-syndicated radio show about environmentalism.
In May 2007, owing to the restructuring of Air America and a lack of funding, EcoTalk had its final episode.
References
Air America (radio network)
American talk radio programs
Environmental radio programs |
Microfibrillar-associated protein 1 is a protein that in humans is encoded by the MFAP1 gene.
References
Further reading |
Revenera is a division of Flexera, an American computer software company based in Itasca, Illinois.
History
Flexera launched its Revenera division on May 28, 2020. The Revenera division is a business-focused organization which works in software monetization, software composition analysis, and installation (computer programs) software.
Revenera, formerly called Flexera Software, has made several acquitions.
On February 26, 2016, Flexera Software acquired software composition analysis company Palamida.
On February 5, 2020, Flexera Software acquired software usage analytics company Revulytics.
Product history
In July 2021, Revenera announced Software Container Delivery for entitlement-driven delivery of software container images.
In September 2021, Revenera announced that all software monetization, software composition analysis, and installation (computer programs) software will be sold via a subscription model.
In September 2022, Revenera launched enhanced Software Bill of Materials support.
Monetization Monitor
Revenera publishes a series of reports each year named Monetization Monitors. These reports highlight software monetization, piracy, and usage analytics trends.
References
External links
Official website
Software companies based in Illinois
Privately held companies based in Illinois
Companies based in DuPage County, Illinois
2009 establishments in Illinois
Software companies of the United States
Itasca, Illinois |
The BTR-50 (BTR stands for Bronetransporter (), literally "armored transporter") is a Soviet tracked amphibious armored personnel carrier (APC) based on the PT-76 light tank chassis. The BTR-50 was developed in 1952 and entered service with the Soviet Army in 1954. It ceased production in 1970. It has the ability to transport up to 20 fully equipped infantrymen, and can be armed with nothing, a 7.62 mm SGMB medium machine gun, or a 14.5 mm KPV heavy machine gun. It saw notable service in the Six-Day War, the Yom Kippur War, and most recently in the Russo-Ukrainian War.
The BTR-50 shares similarities with two other APCs developed independently, the OT-62 TOPAS and the Type 77. While the OT-62 is an improved copy of the BTR-50 developed jointly by Czechoslovakia and Poland, the Type 77 is based on the Type 63 amphibious light tank developed by the People's Republic of China (PRC), which was developed from the PT-76.
Description
Like the PT-76, the BTR-50 has a flat, boat-shaped hull. Unlike the PT-76, it has a new superstructure added to the front of the vehicle. The hull of the BTR-50 is made of all-welded steel with the crew compartment in the front, the troop compartment in the center and the engine compartment at the rear. It has the ability to transport up to 20 fully equipped infantrymen, who sit on benches that run across the full width of the troop compartment. They embark and disembark the APC by climbing over the sides of the hull.
The driver sits in the center of the front of the hull and has three vision blocks and periscopes located at the top of the sloping glacis plate. During night operations, the center periscope can be swapped for the TVN-28 night vision device, which gives the driver clear vision up to 60 meters. The driver has a small hatch that opens upwards—while it cannot be used to leave the vehicle, it can be opened in relatively safe areas for extra vision. In combat, the hatch is closed and the driver can use a vision block.
There is an emergency hatch under the driver's seat. The commander, who sits on the left side of the vehicle at the front, has three vision blocks and periscopes in a projecting bay. On top of this bay is a cupola that opens forward and can be locked vertically. It has a vision block facing forward. The vehicle can operate in temperatures from −40 °C to +40 °C.
The torsion bar suspension consists of six evenly spaced large rubber-tired road wheels with a drive sprocket at the rear and an idler at the front. The road wheels are hollow to assist its amphibious capabilities. These wheels increase the APC's buoyancy by 30%. There are no track-return rollers. The first and last road wheels have a hydraulic shock absorber, the steel tracks have a single pin and 96 links each when new. There is a small, thin, horizontal skirt over each track.
The BTR-50 is powered by a V-6 6-cylinder 4-stroke in line water-cooled diesel 240 hp (179 kW) engine at 1800 rpm. This has a road speed of 44 km/h with a cruising range of 400 km. The vehicle can negotiate 30° side slopes, ascend 60° gradients, cross 1.1 m high vertical obstacles and 2.8 m wide trenches. The engine has a cooling system and a pre-heater, intended for ignition when the air temperature is −20 °C or below. The APC has a five gear manual shaft-type transmission system similar to that in the T-34/85 medium tank.
The gearbox has four forward and one reverse gear. The vehicle has a side clutch that enables it to make turns, mechanical transmission and a bandbrake. The vehicle has three fuel tanks, two on the right, at the front of the engine compartment and one at the rear. The total fuel capacity is 400 liters. The vehicle has four mounts for external fuel tanks located on the rear of the hull. The two on the hull corners are for a flat external tanks, whereas the two in the center are for a drum-type of tank.
The BTR-50 is amphibious thanks to its flat, boat-shaped hull, which is hermetically sealed and ensures minimal resistance when the APC is afloat. It can swim after switching on the two electric bilge pumps. Erecting the trim vane improves the stability and displacement of the vehicle in the water, and prevents water from flooding over the bow of the APC. Swapping the driver's periscope for a swimming periscope enables the driver to see over the trim vane. There is a manual bilge pump for emergency use.
In the water, it is propelled by two hydrojets, one on each side of the hull. The inlets are under the hull, the outlets are at the rear. There are additional assistant water-jet inlets on both sides of the hull over the last road wheels. The rear outlets have lids that can be fully or partially closed, redirecting the water stream to the forward-directed outlets at the sides of the hull, thus enabling the vehicle to turn. This system was designed by N. Konowalow. It is the same system as the one used in the PT-76. The vehicle's low freeboard of 15 to 20 cm and lack of a snorkel means that it can only swim in the calmest waters.
Its armor is composed of homogeneous, cold rolled, welded steel—it is very thin by modern standards, 13 mm at the front, 10 mm on the sides and top and 7 mm at the rear. While its maximum armor could protect it against small arms fire and small artillery shell fragments, it cannot protect it against .50-caliber machine gun bullets and larger shell fragments. Although its front armor might protect it against 7.62 mm small arms fire, that same fire can sometimes penetrate the sides. The vehicle is equipped with an IR driving light and an IR searchlight. It lags behind other Soviet armored fighting vehicles as it has no fire protection systems and, with the exception of the BTR-50PK variant, it has no nuclear, biological or chemical (NBC) protection systems, which significantly reduces its effectiveness.
Service history
The BTR-50 was developed in 1952 and entered service with the Soviet Army in 1954. It was first shown in public in November 1957. It served in the motorized rifle regiments of tank divisions and mechanized brigades in the Soviet and East German armies. A typical mechanized brigade consisted of three battalions, each of which had 30 APCs and a command vehicle. They were replaced in front line service by the BMP-1 IFV. Command vehicle variants were employed by many Warsaw Pact armies.
BTR-50s were used by Egypt and Syria during the Six-Day War (1967), a number of which were captured by Israel. Some vehicles were then re-used by the Israeli Army. Both sides used BTR-50s during the War of Attrition (1968–70). During Operation "Raviv" (September 8–9, 1969), an amphibious raid across the Suez Canal, three T-54 tanks and six BTR-50s were used to wreak havoc behind Egyptian lines.
BTR-50s were again employed by Egypt, Syria and Israel during the Yom Kippur War (1973). During this conflict, BTR-50s, along with T-54s and T-55s, were used by the IDF during the fighting in and around the city of Suez. Israel captured additional BTR-50s from the Egyptians and Syrians. Some of Israel's BTR-50s were later transferred to the South Lebanon Army.
In February 2023 it was reported that Russia had reactivated some BTR-50s from storage and deployed them during the Russian invasion of Ukraine. In October 2023, the first example of a Russian BTR-50 being deployed in frontline combat in Ukraine appeared, with at least one BTR-50 being visually confirmed as destroyed by Ukrainian anti-tank mines northeast of Avdiivka in Donetsk Oblast during a large-scale Russian offensive against the city.
Variants
Former USSR
BTR-50P (Ob'yekt 750) (1952) – The first production version with an open troop compartment. The vehicle had no integral armament, but it did have a pintle mount for a 7.62 mm SGMB medium machine gun. Early production BTR-50P models had folding ramps at the rear of the hull to enable either a 57 mm ZiS-2, a 76.2 mm ZiS-3 or an 85 mm D-44 anti-tank gun to be loaded and fired on the engine decks. The weapon could also be fired when the vehicle was afloat, but only when the water-jets were in operation. This system had one great flaw, the muzzle of the gun was usually over the open personnel compartment and as such submitted any occupants to a considerable amount of concussion and fumes. These ramps were absent in later production models.
BTR-50P – Converted into an artillery portee vehicle. This version carried its gun in the crew compartment, thus placing the muzzle of the gun outside the vehicle. While seen mostly carrying the 57 mm ZIS-2 anti-tank gun, there were also two other variants of this vehicle that carried anti-aircraft (AA) weapons.
ZTPU-2 (zenitnaya samokhodnaya ustanovka) – BTR-50P converted into a self-propelled anti-aircraft gun (SPAAG), armed with twin ZPU-2 14.5 mm heavy machine guns (1,280 rounds). Prototype.
ZTPU-4 (zenitnaya samokhodnaya ustanovka) – A BTR-50P converted into a SPAAG armed with quadruple ZPU-4 14.5 mm heavy machine guns (2,560 rounds). Prototype.
BTR-50P – Converted into a Forward Air Control vehicle with a second superstructure on top of the first.
BTR-50P – Converted into an NBC reconnaissance vehicle with a second superstructure on top of the first.
BTR-50P – Has a longer nose section.
BTR-50PA (Ob'yekt 750M) (1954) – BTR-50P armed with a 14.5 mm KPV heavy machine gun on a pintle mount at the front of the troop compartment.
BTR-50PA with its heavy machine gun mounted on the commander's cupola.
BTR-50PK (Ob'yekt 750K) (K stands for krisha – "roof") (1958) – A BTR-50P fitted with an armored roof, the troops embarking and disembarking the vehicle via two rectangular roof hatches that open to either side. There is also another rectangular roof hatch at the front of the roof. It was armed with a pintle-mounted 7.62 mm SGMB medium machine gun. This variant has an NBC protection system. The vehicle had two ventilators, one at the front of the troop compartment on the right and one at the rear, also on the right. It is likely that these vehicles were mostly upgraded from BTR-50Ps. Another production run of the BTR-50PK had a single firing port on each side of the superstructure. They were rarely seen in use as APCs as the majority consisted of specialized variants, such as command vehicles, before being replaced by another batch with two firing ports on each side of the superstructure.
BTR-50PK – Fitted with a locater light in the center of the engine deck. This variant was issued to Soviet marine and assault river crossing units.
BTR-50PK – Converted into a training vehicle with four cupolas on top of the roof.
BTR-50PK – Has a longer nose section. Used by marine units.
UR-67 (ustanovka razminirovaniya) – Mine-clearing vehicle equipped with a UR-67 rocket launcher system which has three launchers firing UZP-67 or UZR-3 tubes filled with explosives. The UZP-67 or UZR-3 are carried in a fabric tube container carried inside the hull. The mine clearing procedure is composed of driving the vehicle to the edge of the minefield and aligning it before the rockets are fired from its elevated launcher at the rear of the vehicle. The rocket tows the line charge, which is secured to the launcher vehicle, across the minefield. The line charge is then positioned by the vehicle crew and detonated to clear any mines in its vicinity. The cleared lane is usually 60 m to 150 m long and 2 m to 5 m wide. The vehicle has a crew of three. Some of the vehicles were based on the BTR-50PK, others were based on the PT-76. They were known in the west as the MTK and MTK-1. Only a small number remain in service, most have been replaced by the UR-77.
BTR-50PN (1958) – Early command vehicle with three radios (including an R-113) and three whip antennas. Only a small number were built.
BTR-50PU (mashina upravleniya) (1959) – Unarmed command vehicle. It carries a crew of 10 and has an armored roof with oval hatches and four whip antennas. Most of the BTR-50PUs have two projecting bays on the front of the vehicle (the respective NATO codes are: BTR-50PU(1) and BTR-50PU(2)). The two bays are the same shape, unlike in the OT-62 TOPAS, which is otherwise very similar in appearance. The vehicle has ten seats, of which four are for the commander and his staff, four are for the radio operators and two are for the vehicle's commander and driver. The staff compartment has a collapsible table, a second small table for the commander, two hammocks and three ladders. An emergency escape hatch is provided in the floor of the vehicle and the vehicle has thermal insulation. Specialized equipment consists of KN-2 and KP-2 navigation devices; an AB-1-P/30 1 kW generator (located on the rear engine deck); R-105, R-105U and R-113 VHF radios; a R-112 HF transceiver, a R-311 HF receiver; a collapsible 11 m mast antenna for the R-105U; a light 10 m telescopic mast for the R-112; a R-403BM relay-set; R-120 intercom and a P-193A 10-line field telephone switchboard with six TAI-43 field telephones and four cable reels, each with 600 m of two-wire cable. The navigation system includes a gyro course indicator and course plotter (the former indicates the vehicle's course, the latter plots it on a rectangular co-ordinate system). Some vehicles have different numbers of stowage boxes in different arrangements on the rear engine decks. Some vehicles have a second generator.
BTR-50PU with a longer nose section.
BTR-50PU-2 – An improved version with more modern radio equipment, most probably the R-123 and the R-130M. It is externally similar to the BTR-50PU, but has a portable generator located immediately behind the troop compartment.
BTR-50PUM – A modernised variant, it is equipped with a large AMU telescopic antenna mast and R-123 (3×), R-130, R-326, R-405D and T-218 radios. This model has a square antenna stowage box on the right front side of the hull.
BTR-50PUM-1 (1972) – latest model with a crew of up to 8 and fitted with the same radios as mounted in the R-145BM (BTR-60): R-111 (2×), R-123MT, R-124 and R-130M.
MTP-1 (mashina tekhnicheskoj pomoshchi) – A technical support vehicle with a raised troop compartment and a light crane.
Polyesye – A civilian version of the MTP-1.
Belarus
BTR-50PKM – An upgraded BTR-50PK with a UTD-20 engine developing 300 hp (224 kW), new steering, brake systems and driver's optronics.
MTP-300T – Technical support vehicle, fitted with a manipulator, a universal welding machine, towing and lifting gear, a workbench, spare parts etc.
Bulgaria
R-54 - A planned Infantry Fighting Vehicle variant, with a 23mm cannon. Complement for a 3-man crew and 9 passengers
R-82 – An improved BTR-50PU command vehicle with different radios and a collapsible AZI frame antenna.
Czechoslovakia
OT-62 TOPAS (OT-62 stands for Obrněný Transportér vzor 62 – "Armored Personnel Carrier model 62") ("TOPAS" stands for Transportér Obrněný PÁSový – "Tracked Armored Personnel Carrier") – A series of BTR-50 variants developed jointly by Poland and Czechoslovakia. They are similar to the BTR-50PK but have hatches in the hull sides, a more powerful PV-6 engine giving 300 hp (224 kW) and two projecting bays at the front of the superstructure instead of one like similar looking BTR-50PU (however the bays are different from one another in terms of shape).
East Germany
SPW 50P (Schützenpanzerwagen) – Nationale Volksarmee (NVA) designation for the Soviet-produced BTR-50P.
SPW 50PK – NVA designation for the Soviet-produced BTR-50PK. The NVA had a number of locally modified SPWs in service
SPW 50PK(Akl) (Aufklärung) – Version for reconnaissance units.
SPW 50PK(D)
SPW 50PK(B) (Bergefahrzeug) – A BTR-50PK converted into a recovery vehicle. It weighed 14 tonnes and had a crew of two (commander and driver), with seats for four auxiliary personnel. During rescue operations the vehicle can accommodate up to eight personnel. The SPW-50PK(B) is fitted with R-123M and R-124 radios, a rear-mounted coupling for towing, a tow hook, two extra towing cables, two special quick-release shackles, standard shackles and snap hooks, a searchlight, two lifebelts, life jackets, a set of tools, fire extinguishers and four fenders.
SPW 50PK(BBS) (Batteriebeobachtungsstelle) – Observation vehicle for air defense units.
SPW 50PK(KM) (Kernmine) – SPW 50PK, equipped with a tool set for combat engineers PGS-5 (Pioniergerätesatz) to locate and retrieve mines.
SPW 50PK(LA) (Luftabwehr) – Command vehicle for air defense units.
SPW 50PK(MRF) (Minenräumfahrzeug), also known as Minenräumfahrzeug 50PK (SPW) – A mine-clearing vehicle, equipped with two containers for mine-clearing charges WLWD of Polish design. The containers were loaded onto the roof of the troop compartment via two ramps, welded on the engine deck.
SPW 50PK(Pi) – Command vehicle for combat engineer (Pioniere) units.
SPW 50PK(S) – Command and staff vehicle.
SPW 50PK(UF) (Unterwasserfahrt) – SPW 50PK, equipped with a tool set for combat engineers PGS-4 (Pioniergerätesatz) to prepare river crossings.
SPW 50PU – NVA designation for the BTR-50PU.
SPW 50PU(A) – Locally modified version for the commanders of the divisional artillery.
Egypt
BTR-50PK – Fitted with a glassed cabin on top of the standard superstructure.
Finland
BTR-50YVI (yhtymän viestijärjestelmä) – BTR-50PK converted into a command and staff vehicle. It is fitted with the YVI-2 digital communication system, a telescopic mast, the NSVT 12.7 mm heavy machine gun and additional armor. Fielded in 1994.
BTR-50PUM – Upgraded BTR-50PU fitted with the equipment of the R-145BM (BTR-60 variant) and smoke grenade launchers, one NSVT 12.7 mm heavy machine gun and additional armor.
BTR-50PUM1 – Modernized PUM with western radio sets.
Indonesia
BTR-50PM (Palawa Modification) – Indonesian Marine Corps BTR-50's modernized with BTR-2000 upgrade package from Nimda, Israel in 1990s. Fitted with AN/VRC-64 and PRC-33 radios instead of the 10-RT, new brake system, FN MAG machine gun instead of the PKT and a Detroit Diesel 6V92T engine instead of the original V-6V.
BTR-50P(M) – Indonesian Marine Corps BTR-50's overhauled, reconditioned, and fitted with new fire extinguisher system by PT Lumindo Artha Sejati in 2019–2021.
PAL-AFV (Armoured Floating Vehicle) – Upgraded version, developed by the PT PAL Indonesia in cooperation with Pindad. This vehicle has a new nose section, a raised rear hull section and powered by a 300 hp engine. Combat weight is 14,700 kg, with transport capacity is 3 + 14 troops. A model of the PAL-AFV was displayed at Indo Defence 2008. Photo
Iraq
BTR-50P – Converted into a self-propelled anti-aircraft gun (SPAAG) and armed with a Soviet 23 mm ZU-23-2 anti-aircraft autocanon. Fitted with additional armor around the engine decks to maintain its amphibious ability.
BTR-50PK converted into a SPAAG armed with Czechoslovak twin 30 mm M-53/59 autocannons in an open-tub mount.
Israel
BTR-50PK fitted with a pintle-mounted 7.62 mm FN MAG machine gun in front of the commander's cupola.
BTR-50PK armed with three pintle-mounted US M1919A4 .30 cal medium machine guns (one on the front of the superstructure and one on each side), another was pintle-mounted in front of the commander's cupola.
Poland
OT-62 TOPAS (OT-62 stands for Obrněný Transportér vzor 62 – "Armored Personnel Carrier model 62") ("TOPAS" stands for Transportér Obrněný PÁSový – "Tracked Armored Personnel Carrier") – A series of BTR-50 variants developed jointly by Poland and Czechoslovakia. They are similar to the BTR-50PK but have hatches in the hull sides, a more powerful PV-6 engine giving 300 hp (224 kW) and two projecting bays in front of the superstructure instead of one like similar looking BTR-50PU (however the bays are different from one another in terms of shape).
Serbia
BTR-50S (2005) – An upgrade package for the BTR-50PK offered by the Serbian defense firm Yugoimport SPDR. The package adds a turret (from the Yugoslav M-80 APC). It is armed with one 30 mm cannon, one 7.62 mm Zastava M86 machine gun, two ATGM launchers capable of firing 9M14 Malyutka anti-tank guided missiles (ATGM)s and four smoke grenade launchers.
South Lebanon
BTR-50PK – Converted into an improvised medevac vehicle with a cut down front and a hatch in the front.
Ukraine
BTR-50PK based ARV.
BTR-50M – BTR-50PK upgrade built by Morozow. It features improvements in firepower and mobility, both of which can be carried out independently.
Improvements in firepower are achieved by adding one of two new fighting modules (turrets), both of which are armed with one 30 mm ZTM1 or 2A72 autocannon, one 7.62 mm KT or PKT coaxial machine gun, one 9K113 Konkurs (NATO: AT-5 Spandrel) ATGM and one 30 mm AGS-17 automatic grenade launcher. Both main guns are stabilized in the vertical axis (the second variant has a two axis stabilization) and have electro-mechanical aiming drives. Both have a maximum effective range of 4,000 m and can be elevated or depressed between −10° and +60° or −4° and +60°. The vehicle carries 150 rounds (the second variant carries 350 rounds).
Both machine guns have a maximum effective range of 1,600 m. The vehicle carries 2,000 rounds in four batches of 500, (the second variant carries the same quantity of ammunition but in two batches of 1,000 rounds).
The ATGM system has a minimum range of 100 m and maximum range of 4,000 m with four missiles. The automatic grenade launcher has a maximum range of 1,700 m.
The vehicle uses a number of instruments with its armament. These include the TKN-5 day/night sight with a laser rangefinder, the PZU-7 day sight for firing at air and ground targets and the 9Sh119M1 anti-tank guided missile system sight.
Mobility is improved by replacing the Soviet-built engine with the UTD-20 6-cylinder 4-stroke V-type water-cooled diesel engine built in Ukraine, replacing the gearbox with a planetary system and installing hydraulic volumetric transmission. The suspension has also been improved by adding three return rollers. The vehicle has a new system of air intakes and exhausts on the left hand side of the front of the engine deck. This upgrade can also be applied to BTR-50PU vehicles. This vehicle has a greater combat capability, lower fuel consumption and a higher power-to-weight ratio. The vehicle can operate in temperatures between −40 °C and +55 °C and has an increased road speed of 75 km/h.
As a result of all these changes the vehicle is now higher—3.085 m (the second variant is 2.895 m) and heavier—16.6 tonnes (the second variant weighs 16.8 tonnes).
There are also additional improvements which can be carried out at customer's request. Those include adding kevlar-type spall liner to improve vehicle's protection, navigation system for improving tactical mobility and air conditioning system for improving crew comfort and allowing easier operation in hot climate.
Operators
Current operators
– 100 ordered in 1963 from the Soviet Union and delivered between 1965 and 1966. 560 ordered in 1979 from the Soviet Union and delivered between 1979 and 1988 (the vehicles were previously in Soviet service).
– 200 BTR-50s and 150 Type 77s.It is currently being replaced by the American-made M113 armored personnel carrier.
– 130 BTR-50s' ordered in 1977 from the Soviet Union and delivered between 1978 and 1979 (the vehicles were previously in Soviet service). Currently 30 BTR-50s and OT-62 TOPASes are in service.
– 92 were ordered in 1975 from the Soviet Union and delivered in 1975 (the vehicles were previously in Soviet service).
– 200
- Currently 3 are in service.
– 500 were ordered in 1964 from the Soviet Union and delivered between 1965 and 1966 (the vehicles were possibly previously in Soviet service). 250 BTR-50PKs are currently in service. On 12 July 2014, 500 BTR-50s were upgraded to BTR-50PKM standard with UTD-201S diesel engine and includes a new set of day and night sensors.
– 10 were ordered in 1981 from the Soviet Union and delivered in 1982 (the vehicles were second-hand).
– 200 ordered in 1977 from the Soviet Union and delivered between 1978 and 1979.
– 66 BTR-50P/PM/PU were ordered in 1963 from the Soviet Union and delivered in 1963–1965. 34 BTR-50PK were ordered in 1997 from Ukraine and delivered in 1997–1999. Currently ~70 are in service.
– 270 were ordered in 1966 from the Soviet Union along with 300 BTR-60Ps as a $110 deal and delivered between 1967 and 1968. 300 BTR-50s and BTR-60s in service in 2000, 2002, 2005 and 2008. An estimated 1000 is storage. Iran has its own upgraded BTR-50 variant, the Makran IFV. Over 150 BTR-50s are currently in service, with hundreds in storage, per GlobalSecurity.
– 300 BTR-50s and BTR-60s in service in 2000, 2002 and 2005.
– 8 purchased in 1987 from Romania.
– 36 were ordered in 1969 from the Soviet Union and delivered in 1970. 60 were ordered in 1977 from the Soviet Union and delivered in 1978 (the vehicles were probably previously in Soviet service). 700 BTR-50s and BTR-60s in service in 1986. 540 BTR-50s and BTR-60s are currently in service.
– 1 BTR-50PU was ordered in 1982 from the Soviet Union and delivered in 1982.
– 50 were ordered in 1966 from the Soviet Union and delivered in 1967. There were 1,010 Korshuns, VTT-323s, Type 63s (YW-531), BTR-40s, BTR-50s, BTR-60s and BTR-152s in service in 1985, 2,200 VTT-323s, Type 63s (YW-531), BTR-40s, BTR-50s, BTR-60s and BTR-152s in service in 1990 and 1995 and 2,500 VTT-323s, Type 63s (YW-531), BTR-40s, BTR-50s, BTR-60s and BTR-152s in service in 2000, 2002 and 2005.
- 1,000 BTR-50PU, BTR-50PUM, MTP-1 and UR-67 were in service as of 2003. In 2022 Russia reportedly brought an unknown number of BTR-50s back into service in Ukraine.
– BTR-50PU
– 30 were ordered in 1971 from the Soviet Union and delivered in 1973 (the vehicles were previously in Soviet service).
– 25
– 50 were ordered in 1968 from the Soviet Union and delivered between 1969 and 1970 (the vehicles were previously in Soviet service).
– 150 were ordered in 1966 from the Soviet Union and delivered between 1966 and 1967. 400 were ordered in 1973 from the Soviet Union and delivered between 1973 and 1975 (the vehicles were possibly previously in Soviet service). Around 1,500 BTR-40s, BTR-50s, BTR-60s, BTR-152s and OT-64s were in service in 1990, 1995 and 2000 and around 1,600 in 2001, 2003 and 2005.
- 280 are being used by Vietnam People's Army, some were in maintained state.
– Passed on from South Yemen
Former operators
– 700 ordered in 1979 from the Soviet Union and delivered between 1980 and 1983. Withdrawn from service.
– 26 BTR-50Ps and BTR-50PKs captured from JNA. 18 in service in 1991 and 2003. they were then replaced by Patria AMV.
– 200 SPW-50Ps and SPW-50PKs were ordered in 1958 from the Soviet Union and delivered between 1959 and 1962 (including command vehicles). Passed on to the unified German state.
– Total of about 80 used. 60 BTR-50PK delivered from Soviet Union in 1964–68. 40 BTR-50PK vehicles converted to BTR-50YVI variants from 1993. BTR-50PU vehicles delivered from Soviet Union in 1967–76. More delivered from ex-DDR in 1991. Converted to BTR-50PUM from 1985. Upgraded to BTR-50PUM1 from 1993. All versions withdrawn from use in 2018 and scrapped.
– Taken from GDR's army. All were scrapped or sold to other countries.
– 150 were ordered in 1959 from the Soviet Union and delivered in 1960. 20 BTR-50PU-IIs were in service in 2019. Already retired.
Iraq – 250 ordered in 1968 from the Soviet Union and delivered between 1969 and 1973. All destroyed or scrapped.
– Captured a number of BTR-50 APCs from Egypt and Syria during the Six-Day War. A number was modified and served with the Israeli Army. Withdrawn from service in 2002.
- BTR-50PU, BTR-50PK retired.
– 20 BTR-50PK APCs were received as aid from Israel between 1985 and 1986 (the vehicles were previously in Israeli service).
– BTR-50PU. Retired
– Passed on to successor states.
– 400 were received as aid from the Soviet Union between 1969 and 1973 (some of the vehicles were possibly previously in Soviet service). Passed on to the unified Vietnam state.
– 100 were ordered in 1972 from the Soviet Union and delivered in 1973 (the vehicles were previously in Soviet service).
– 217 (131 BTR-50PU and 86 PK) were ordered from 1964 to 1967 from the Soviet Union, and delivered from 1965 to 1976. Passed on to successor states.
References
Haryadi, Yosafat Robert. Sejarah Kavaleri Korps Marinir (in Indonesian), Penerbit Karunia, Surabaya 2019.
External links
Armyrecognition.com
Communication system of a formation at the Finnish Defense Forces website
Amphibious armoured personnel carriers
Command vehicles
Armoured personnel carriers of the Soviet Union
Armoured personnel carriers of the Cold War
Cold War armoured fighting vehicles of the Soviet Union
Tracked armoured personnel carriers
Military vehicles introduced in the 1950s |
Theodoros "Theo" Paphitis (; born 24 September 1959) is a Greek-Cypriot British retail magnate and entrepreneur. He is best known for his appearances on the BBC business programme Dragons' Den and as former chairman of Millwall Football Club.
Paphitis has made the majority of his fortune in the retail sector. In 2006, he sold his equity stake in the lingerie brand La Senza for a reported £100 million. He is the owner of stationery chain Ryman, the homewares specialist Robert Dyas and lingerie retailer Boux Avenue.
According to The Sunday Times Rich List in 2020, Paphitis is worth £290 million.
In May 2018, Solent University in Southampton named Paphitis as their new Chancellor.
Paphitis was inaugurated as the university's Chancellor on 11 October 2018. He will serve a minimum of three years. Paphitis succeeded Lord West of Spithead.
Early life
Paphitis was born on 24 September 1959 in Limassol, British Cyprus, present-day Republic of Cyprus. He is the second of three brothers, with elder brother Marinos and younger brother George. They also share two half-brothers. Paphitis first lived in Old Trafford in Greater Manchester when his family arrived in the UK from Cyprus. His father then bought a terraced house in Gorton, Manchester where he lived for three years, attending Peacock Street junior school in the area. Paphitis moved to London with his parents and Marinos when he was nine years old.
Paphitis attended Ambler Primary School in Islington and Woodberry Down Comprehensive School in Manor House, where he battled with dyslexia, but began his entrepreneurial activities by running the school's tuck shop at the age of 15.
Career
Business
Paphitis took a job as a tea boy and filing clerk at a City of London insurance broker. Wanting more money, he discovered his passion for retailing and sales when at 18 he worked as a sales assistant for Watches of Switzerland in Bond Street.
Aged 21, he joined Legal & General selling commercial mortgages, which taught him to read other businesses' balance sheets.
Aged 23, he set up a property finance company with close friend and business associate Mark Moran, and kept going when the friend left in partnership with Hanover Druce, making his first money on the rise of the 1980s commercial property markets. Spotting the rise in mobile telephones, he bought into NAG Telecom, becoming chairman alongside fellow director Tony Kleanthous. Paphitis gained a large market share for NAG by negotiating concessionary positions in Ryman stationery stores.
When Ryman went bankrupt, Paphitis approached the administrators and bought the company. He turned it around by improving relations with suppliers, and enthusing the management team, cementing his reputation for turning failing companies into highly successful and profitable businesses. His ventures now include Ryman, Robert Dyas and Boux Avenue. He sold Red Letter Days with fellow Dragons' Den businessman Peter Jones. In 2006, he sold his equity stake in the UK and EU segment of the global lingerie brand, La Senza, for a reported £100m.
In 2008, Paphitis was one of several interested parties in bidding for failed retail chain Woolworths. However, he later pulled out because of unrealistic numbers quoted by the administrators.
In March 2011, Paphitis set up a lingerie chain, Boux Avenue, which has 30 UK stores.
In July 2012, he bought the hardware retailer Robert Dyas, saying: "It is a business which fits well with my investment criteria."
In 2017, Paphitis acquired London Graphic Centre, a specialist arts and stationery retailer based in London's Covent Garden. Paphitis launched the Theo Paphitis Art Prize in 2022.
Football
As chairman from 1997, Paphitis took Millwall out of administration and on to the 2004 FA Cup Final at the Millennium Stadium. He is perhaps best known for his work to reduce football hooliganism, and appointing as Millwall manager Dennis Wise, and together they guided the club to their first official appearance in the final of the FA Cup and European football. After almost eight years at the helm of Millwall, Paphitis stepped down from his role as chairman in 2005.
Paphitis is a director and part-owner of Isthmian League side Walton & Hersham. Paphitis' other companies became sponsors of the League's cup competitions with Robert Dyas sponsoring cup tournaments. Boux Avenue became title sponsor of the Boux Avenue Women's Cup.
Television
After appearing on series four of the BBC Back to the Floor series while chairman at Millwall FC, Paphitis was approached to become one of the "dragons" in the second series of the BBC Two entrepreneurship series Dragons' Den in 2005 and left the programme after series 10 in 2012.
Paphitis was known as a straight-talking but approachable and sincere 'dragon' who made many investments on the show, both alone and jointly with other dragon investors. In February 2013, he announced that he would be leaving the show.
In 2010, Paphitis had a three-part television series on BBC Two called Theo's Adventure Capitalists. The series followed British businesses looking to enter new markets in Brazil, India and Vietnam. The series was supported by the Open University.
In 2011, Paphitis presented the seven-part BBC Two series called Britain's Next Big Thing. The series examined the stories of artists, scientists, manufacturers and brand owners looking to sell their products and services to UK retailers including Boots and Liberty.
After time away from television to concentrate on business, Paphitis returned with appearances on BBC's Question Time and ITV's The Agenda. In March 2014, he appeared in Famous, Rich and Hungry, a two-part BBC documentary series which aimed to promote awareness of British people living in poverty, and raise money for Sport Relief.
In September 2019, Paphitis returned to the seventeenth series of Dragons' Den for four episodes, stepping-in for Touker Suleyman, who had been recovering from a short-term illness. In June 2021, Paphitis once again returned to Dragons' Den, this time for its eighteenth series, for three episodes as a replacement for Peter Jones, due to him self isolating from COVID-19.
Personal life
Paphitis lives with his wife Debbie in Weybridge, Surrey. They have two sons and three daughters, including twins, and eight grandchildren.
Paphitis attributes his success to his natural common sense, and his favourite motto is a famous business school motto: "KISS: Keep It Simple, Stupid". He has said, "There are three reasons to be in business. To make money, to have fun, and to make money."
Paphitis' car collection has a series of personalised number plates, including RYM4N on his Maybach.
Paphitis has been criticised for some of his views on women. In 2008, Kira Cochrane of The Guardian newspaper criticised him for saying that although women may refuse to take maternity leave, "their brains turn to mush" after the pregnancy and "they take three months off".
Paphitis voted for Brexit in 2016, describing the EU as a "failed experiment".
References
External links
Official website
The Founder – student newspaper interview
1959 births
Living people
Cypriot emigrants to England
English people of Greek Cypriot descent
Businesspeople from London
Millwall F.C. directors and chairmen
People from Limassol
People with dyslexia
People from Islington (district)
British Eurosceptics
Cypriot people with disabilities
British people with disabilities |
Thanjavur Subha Rao (also known as Subharao Tanjavarkar, also spelled Subba Row) was an Indian administrator and musician who served as the dewan of the state of Travancore in the 1830s.
Subha Rao was a native of Thanjavur and was born into a Thanjavur Marathi Deshastha Brahmin family. He was so fluent in English that he was also known as "English" Subha Rao. He tutored the Maharaja of Travancore Swathi Thirunal in Sanskrit, Marathi, political science and Carnatic music. In 1830, he was appointed Dewan of Travancore.
References
Diwans of Travancore
People from Thanjavur district |
The 2003 Challenge Bell was a tennis tournament played on indoor carpet courts at the Club Avantage Multi-Sports in Quebec City in Canada that was part of Tier III of the 2003 WTA Tour. It was the 11th edition of the Challenge Bell, and was held from October 27 through November 2, 2003. Maria Sharapova won the singles title.
Champions
Singles
Maria Sharapova def. Milagros Sequera, 6–2, retired
It was Sharapova's 2nd title of the year and the 2nd of her career.
Doubles
Li Ting / Sun Tiantian def. Els Callens / Meilen Tu, 6–3, 6–3
It was Li's 2nd title of the year and the 2nd of her career. It was Sun's 2nd title of the year and the 2nd of her career.
External links
Official website
Challenge Bell
Tournoi de Québec
Challenge Bell
2000s in Quebec City |
The Liaoning Flying Leopards (), also known as the Liaoning Shenyang Sansheng Flying Leopard Club or Liaoning Bengang (), are a Chinese professional basketball team based in Hunnan District, Shenyang, Liaoning, which plays in the Northern Division of the Chinese Basketball Association (CBA). The team used to play their home games at the Benxi Gymnasium in Benxi, but relocated to Shenyang in the 2017–18 season. The Liaoning 3SBio Inc. is the club's corporate sponsor while its mascot is a flying leopard. The team plays at the Liaoning Gymnasium.
History
During the 2004–05 CBA season, Liaoning finished in first place in the North Division, but lost in the Quarter-Finals of the CBA Playoffs to the South Division's Yunnan Bulls. The team would then go on to place seventh and fourth, respectively, over the next two years, before advancing to the CBA Finals following the 2007–08 CBA season. Although Liaoning eventually lost to the Guangdong Southern Tigers, the club did win the fourth game of the series. This was the team's first victory in the CBA Finals, despite multiple appearances. After finishing in fifth place in the 2009–10 CBA season, Liaoning would miss both the 2010–11 and the 2011–12 CBA playoffs.
In 2011, Liaoning Scale Industry took over sponsorship from the Liaoning Panpan Group Co., Ltd.
Before the 2012–13 CBA season began, the roster received a massive upheaval. Liaoning made multiple changes including the signings of Josh Akognon and Alexander Johnson. Meanwhile, veteran Bian Qiang retired, and many local players were either transferred or loaned out to other CBA teams. One of the most significant player transactions that occurred was the decision to let go of Zhang Qingpeng. It would later be revealed that this move was made in the interest of developing sharpshooter Guo Ailun. On December 2, 2012, the Flying Leopards beat the Tianjin Gold Lions 100–81. This was Liaoning's sixth straight home victory against Tianjin.
In 2013, the team started to receive sponsorship from Benxi Steel Group.
The Flying Leopards have since become regular contenders for the CBA title again, powered by such players as Guo, Han Dejun, and multi-time CBA International MVP Lester Hudson. Liaoning lost to the Beijing Ducks in six games in the 2015 CBA Finals, and to Sichuan Blue Whales in five games in the 2016 CBA Finals. After Game 3 of the 2016 Finals, a brawl broke between players from the visiting Liaoning Flying Leopards and fans of the Sichuan Blue Whales.
In the 2017–18 CBA season, Liaoning defeated Zhejiang Lions in the finals (4–0) and won their first CBA league title. The team relocated their home stadium from Benxi to Shenyang during the play-offs semi-finals.
In 2019, 3SBio Inc. officially took the sponsorship, and changed the team name. In the 2020–21 season, former national team player Yang Ming became the new head coach.
In the 2021–22 season, the Flying Leopards won their second CBA title after sweeping Zhejiang Lions 4–0 in the final, the same as in 2018. They defended the title the following season by another 4–0 sweep against Zhejiang Golden Bulls, clinching their third championship.
Players
Current roster
Honours
Chinese Basketball Association (CBA)
Winners (3): 2017–18, 2021–22, 2022–23
Runners-up (8): 1996–97, 1997–98, 1998–99, 2007–08, 2014–15, 2015–16, 2019–20, 2020–21
Notable players
Guo Shiqiang (1990s)
Li Xiaoyong (1990s)
Wang Zhidan (1990s)
Wu Naiqun (1990s)
Wu Qinglong (1990s)
Zhang Qingpeng (2001–2014)
Eric Riley (2002–2003)
Ernest Brown (2003–2004, 2006–2008)
Li Xiaoxu (2005–present)
Jamal Sampson (2007–2008)
Awvee Storey (2008–2009)
Keith Closs (2009)
Lorenzen Wright (2009)
Olumide Oyedeji (2009–2010)
Chris Richard (2010–2011)
Donta Smith (2010–2011)
Han Dejun (2010–present)
Guo Ailun (2010–present)
Rodney Carney (2011–2012)
Josh Powell (2011–2012)
Shavlik Randolph (2011–2012, 2015–2017)
Liu Zhixuan (2012–2022)
Josh Akognon (2012–2013)
Alexander Johnson (2012–2013)
Solomon Jones (2013)
Vernon Macklin (2013)
Dominique Jones (2013–2014)
Hakim Warrick (2013–2014)
Zhao Jiwei (2013–present)
Lester Hudson (2014–2015, 2015–2019)
Brandon Bass (2017–2020)
Lance Stephenson (2019)
O. J. Mayo (2020–2021)
Jonathon Simmons (2020–2021)
Zhang Zhenlin (2020–present)
Kyle Fogg (2021–present)
Jeremy Tyler (2021)
Eric Moreland (2021–present)
JaKarr Sampson (2022–2023)
References
External links
Club Profile at Sina.com
Chinese Basketball Association teams
Sport in Liaoning
Basketball teams established in 1995
1995 establishments in China |
In number theory, a rational reciprocity law is a reciprocity law involving residue symbols that are related by a factor of +1 or –1 rather than a general root of unity.
As an example, there are rational biquadratic and octic reciprocity laws. Define the symbol (x|p)k to be +1 if x is a k-th power modulo the prime p and -1 otherwise.
Let p and q be distinct primes congruent to 1 modulo 4, such that (p|q)2 = (q|p)2 = +1. Let p = a2 + b2 and q = A2 + B2 with aA odd. Then
If in addition p and q are congruent to 1 modulo 8, let p = c2 + 2d2 and q = C2 + 2D2. Then
References
Algebraic number theory |
Daniel "Dani" Cárdenas Lindez (born 28 March 1997) is a Spanish professional footballer who plays as a goalkeeper for Rayo Vallecano.
Club career
Levante
Born in Terrassa, Barcelona, Catalonia, Cárdenas joined Levante UD's youth academy in January 2014 after notably representing FC Barcelona and RCD Espanyol. He was promoted to the former's reserves for the 2016–17 season, and made his senior debut on 20 August 2016 by starting in a 0–1 Segunda División B home loss against CD Atlético Baleares.
Initially third choice behind Daniel Sotres and Koke Vegas, Cardenas became a regular starter after the former left and the latter was promoted to the main squad. On 12 March 2020, he renewed his contract until 2022.
On 27 November 2020, as Aitor was injured, Cárdenas made his first-team – and La Liga – debut, playing the full 90 minutes in a 1–1 away draw against Real Valladolid. On 21 March 2022, already established in the first team, he agreed to an extension until 2025.
Rayo Vallecano
On 18 August 2023, Cárdenas signed a four-year deal with top-tier club Rayo Vallecano.
References
External links
1997 births
Living people
Spanish men's footballers
Footballers from Terrassa
Men's association football goalkeepers
La Liga players
Segunda División players
Segunda División B players
Tercera División players
Atlético Levante UD players
Levante UD footballers
Rayo Vallecano players
Catalonia men's international footballers |
O Malho (Portuguese: The Mallet) was a Brazilian weekly satirical magazine published from 1902 to 1954. It was based in Rio de Janeiro, Brazil. It was the first commercially successful Brazilian satirical magazine during the Republican regime.
History and profile
O Malho was established in 1902 and the first issue was published on 20 September 1902. Its founders were Luis Bartholomeu Antonio Agnello de Souza e Silva, a member of the Brazilian Parliament and Antonio Azeredo, a senator. The magazine was headquartered in Rio de Janeiro and was published on a weekly basis. Although the magazine targeted men and women from different social classes, it basically targeted the working-class readers. During the initial years French artist Crispino do Amaral was the main caricaturist of the magazine. Antonio Leal served as the photographer of the magazine. The publisher of the magazine, O Malho Group, also published a children's and comics magazine, O Tico Tico.
O Malho was the first Brazilian magazine with color pages. The magazine focused on humor and political satire. It contained caricatures and other satirical materials. The magazine also featured musical scores by composers, poems and chronicles. From its start in 1902 to 1926 the magazine regularly featured piano music-related articles in two pages. The work by Elda Coelho on music was covered in the magazine.
Sabino Barroso, president of the Chamber of Deputies, resigned from office due to satirical publications about him in the magazine. In March 1906 O Malho sold 40,000 copies. It folded in January 1954.
References
External links
O Malho in the Digital Collections of the Ibero-American Institute
1902 establishments in Brazil
1954 disestablishments in Brazil
Brazilian political satire
Defunct magazines published in Brazil
Magazines established in 1902
Magazines disestablished in 1954
Magazines published in Brazil
Mass media in Rio de Janeiro (city)
Portuguese-language magazines
Satirical magazines
Weekly magazines published in Brazil |
```xml
import { _supportedPackageToGlobalMap } from './transpileHelpers';
import type { IBasicPackageGroup } from '../interfaces/index';
// Don't reference anything importing Monaco in this file to avoid pulling Monaco into the
// main bundle or breaking tests!
/**
* Match an import from a TS file.
* - Group 1: imported names or \* (empty if side effect-only import)
* - Group 2: import path without quotes
* @internal
*/
export const IMPORT_REGEX = /^import\s+(?:([^;'"]+?)\s+from\s+)?['"]([^'"]+?)['"];/;
/** Find the component name to render from a TS file (group 1) */
const COMPONENT_NAME_REGEX = /^export (?:class|const) (\w+)/m;
/** Given an import path, find the package name @internal */
const PACKAGE_NAME_REGEX = /^(@[\w-]+\/[\w-]+|[\w-]+)/;
/**
* Match an individual imported item.
* - Group 1: original item name or *
* - Group 2: rename, if any
*/
const IMPORT_ITEM_REGEX = /([\w*]+)(?:\s+as\s+(\w+))?/g;
/** Matches the React import */
const REACT_REGEX = /^import \* as React from ['"]react['"];/m;
export interface IImportIdentifiers {
/**
* Original name of the imported class/interface/const/whatever.
* Will be `default` for default imports and `*` for `import *`.
*/
name: string;
/** What it's imported as (if different) */
as?: string;
}
/** Breakdown of an import statement */
export interface IImport {
/** Full text of the import statement (including semicolon) */
text: string;
/** Full path from the import statement (no quotes) */
path: string;
/** Package name from the import, or empty string for relative imports */
packageName: string;
/** Individual imported identifiers */
identifiers: IImportIdentifiers[];
}
export interface IExampleInfo {
/** TS source code */
tsCode: string;
/** Imports from the source code */
imports: IImport[];
/** Component name to render */
component: string;
}
/**
* Determines whether an example is "valid" for purposes of the transform code: it conforms to the
* expected structure and only contains imports from supported packages.
*
* NOTE: You should confirm that the code is syntactically valid before calling this function.
* If the code is not syntactically valid, this function's behavior is undefined.
*
* @param example - Syntactically valid TS code for an example
* @param supportedPackages - Supported packages for imports (React is implicitly supported)
* @returns Whether the example is valid
*/
export function isExampleValid(example: string, supportedPackages: IBasicPackageGroup[]): boolean {
return typeof tryParseExample(example, supportedPackages) !== 'string';
}
/**
* Determines whether an example is editable and if so, returns the code and the component to render.
* If it's not editable, returns an error message.
*
* NOTE: You should confirm that the code is syntactically valid before calling this function.
* If the code is not syntactically valid, this function's behavior is undefined (it will likely
* return incorrect/illogical output).
*
* @param example - Syntactically valid TS code for an example
* @param supportedPackages - Supported packages for imports (React is implicitly supported)
* @returns Example info if the example is valid, or an error message if not
*/
export function tryParseExample(example: string, supportedPackages: IBasicPackageGroup[]): IExampleInfo | string {
try {
return _tryParseExample(example, Object.keys(_supportedPackageToGlobalMap(supportedPackages)));
} catch (ex) {
return 'Caught error while processing example: ' + ex;
}
}
/** @internal */
export function _tryParseExample(example: string, supportedPackages: string[]): IExampleInfo | string {
// Use .source because IE 11 doesn't support creating a regex from a regex
const possibleComponents = example.match(new RegExp(COMPONENT_NAME_REGEX.source, 'gm'));
const imports = _getImports(example);
if (!REACT_REGEX.test(example)) {
return `The example must include "import * as React from 'react';"`;
} else if (/^export default/m.test(example)) {
return '"export default" is not supported by the editor.';
} else if (!possibleComponents || possibleComponents.length > 1) {
return (
'The example must export a single class or const for the component to render ' +
`(found: ${possibleComponents ? possibleComponents.length : 'none'}).`
);
} else if (/require(<.+?>)?\(/m.test(example)) {
return '"require(...)" is not supported by the editor.';
} else {
for (const importInfo of imports) {
const { path, packageName, identifiers: items, text } = importInfo;
if (path === 'react') {
if (!REACT_REGEX.test(text)) {
return `Invalid React import format for the editor. Please only use "import * as React from 'react'".`;
}
} else if (path.indexOf('.scss') !== -1) {
return 'Importing scss is not supported by the editor.';
} else if (path[0] === '.') {
return 'Relative imports are not supported by the editor.';
} else if (!items.length) {
return 'Importing a file for its side effects ("import \'path\'") is not supported by the editor.';
} else if (items[0].name === '*') {
return '"import *" is not supported by the editor (except from react).';
} else if (!packageName) {
return `Unrecognized import path: "${path}"`;
} else if (supportedPackages.indexOf(packageName) === -1) {
return `Importing from package "${packageName}" is not supported by the editor.`;
} else if (items[0].name === 'default') {
return 'Default imports are not supported by the editor.';
} else if (path !== packageName) {
const packageRelativePath = path.split(packageName + '/', 2)[1];
if (packageRelativePath.split('/').length > 2) {
return 'Importing from more than two levels below the package root is not supported by the editor.';
}
}
}
}
return {
tsCode: example,
component: example.match(COMPONENT_NAME_REGEX)![1],
imports,
};
}
/** @internal */
export function _getImports(example: string): IImport[] {
// Use .source because IE 11 doesn't support creating a regex from a regex
const imports = example.match(new RegExp(IMPORT_REGEX.source, 'gm'));
if (!imports) {
return [];
}
return imports.map(importStatement => {
const importMatch = importStatement.match(IMPORT_REGEX)!;
const importPath = importMatch[2];
return {
text: importMatch[0],
packageName: _getPackageName(importPath),
path: importPath,
identifiers: _getImportIdentifiers(importMatch[1]),
};
});
}
/** @internal */
export function _getPackageName(path: string): string {
const packageNameMatch = path.match(PACKAGE_NAME_REGEX) || undefined;
return (packageNameMatch && packageNameMatch[0]) || '';
}
/** @internal */
export function _getImportIdentifiers(contents: string | undefined): IImportIdentifiers[] {
// This will be:
// empty for `import 'foo'`
// * as Foo for `import * as Foo from 'foo'`
// Foo for `import Foo from 'foo'`
// { Foo, Bar } for `import { Foo, Bar } from 'foo'`
const hadBracket = (contents || '').indexOf('{') !== -1;
contents = (contents || '').replace('{', '').replace('}', '').trim();
const items: IImportIdentifiers[] = [];
IMPORT_ITEM_REGEX.lastIndex = 0;
let itemMatch = IMPORT_ITEM_REGEX.exec(contents);
if (itemMatch) {
if (hadBracket) {
// named imports
do {
items.push({ name: itemMatch[1], as: itemMatch[2] });
} while ((itemMatch = IMPORT_ITEM_REGEX.exec(contents)));
} else if (itemMatch[1] === '*') {
// import *
items.push({ name: '*', as: itemMatch[2] });
} else {
// default import
items.push({ name: 'default', as: itemMatch[1] });
}
}
return items;
}
``` |
Ganesh Mali (born 14 May 1993) is an Indian weightlifter who won a bronze medal in the men's 56 kg weight class at the 2014 Commonwealth Games at Glasgow. He lives at Kolhapur city in the Maharashtra state of India.
References
External links
List of Medal winners at Commonwealth Games Glasgow 2014
Living people
Indian male weightlifters
Commonwealth Games bronze medallists for India
Sportspeople from Kolhapur
1993 births
Weightlifters at the 2014 Commonwealth Games
Weightlifters from Maharashtra
Commonwealth Games medallists in weightlifting
21st-century Indian people
Medallists at the 2014 Commonwealth Games |
Albert Bartlett Bickford (24 August 1887 – 23 December 1971) was an Australian rules footballer who played with Carlton and Melbourne in the Victorian Football League (VFL).
Playing career
Originally from Essendon Association, Bickford made one appearance for Carlton in each of the 1906 and 1907 seasons, both premiership years. He then transferred to Melbourne and played eight games in the 1908 VFL season, followed by a single appearance in 1909.
Bickford is the brother of Carlton and Essendon footballer Edric Bickford, brother-in-law of former Carlton captain Rod McGregor and uncle of Melbourne premiership player George Bickford.
Umpiring career
Bickford was appointed to the VFL list of field umpires in 1921. In round one that season, as a boundary umpire, he made his only appearance in a VFL match - Richmond versus Carlton - earning Heritage Number 129. Between 1921 and 1929 he umpired 120 country matches as a field umpire including the 1926 Heathcote District Football Association Grand Final.
References
1887 births
Carlton Football Club players
Melbourne Football Club players
Essendon Association Football Club players
Australian Football League umpires
Australian rules footballers from Melbourne
1971 deaths
People from Flemington, Victoria |
```javascript
'use strict';
import { List } from 'moonmail-models';
import { debug } from '../../lib/logger';
import decrypt from '../../lib/auth-token-decryptor';
import ApiErrors from '../../lib/errors';
import * as fs from 'fs';
export function respond(event, cb) {
debug('= getEmailList.action', JSON.stringify(event));
decrypt(event.authToken).then((decoded) => {
if (event.listId) {
const options = {};
if (event.options) {
Object.assign(options, event.options);
}
List.get(decoded.sub, event.listId, options).then(list => {
debug('= getEmailList.action', 'Success');
if (!isConfirmationBodyExcluded(options) && !list.confirmationEmailBody) {
list.confirmationEmailBody = defaultConfirmationEmailBody();
}
return cb(null, list);
})
.catch(e => {
debug('= getEmailList.action', 'Error getting list', e);
return cb(ApiErrors.response(e));
});
} else {
return cb('No list specified');
}
})
.catch(err => cb(ApiErrors.response(err), null));
}
function defaultConfirmationEmailBody() {
const file = 'lists/getEmailList/templates/default_email_confirmation.html';
return fs.readFileSync(file, 'utf8');
}
function isConfirmationBodyExcluded(options) {
const fieldRegex = /confirmationEmailBody/;
return (options.include_fields === 'true' && !options.fields.match(fieldRegex)) ||
(options.include_fields === 'false' && options.fields.match(fieldRegex));
}
``` |
```go
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package rate provides a rate limiter.
package rate
import (
"context"
"fmt"
"math"
"sync"
"time"
)
// Limit defines the maximum frequency of some events.
// Limit is represented as number of events per second.
// A zero Limit allows no events.
type Limit float64
// Inf is the infinite rate limit; it allows all events (even if burst is zero).
const Inf = Limit(math.MaxFloat64)
// Every converts a minimum time interval between events to a Limit.
func Every(interval time.Duration) Limit {
if interval <= 0 {
return Inf
}
return 1 / Limit(interval.Seconds())
}
// A Limiter controls how frequently events are allowed to happen.
// It implements a "token bucket" of size b, initially full and refilled
// at rate r tokens per second.
// Informally, in any large enough time interval, the Limiter limits the
// rate to r tokens per second, with a maximum burst size of b events.
// As a special case, if r == Inf (the infinite rate), b is ignored.
// See path_to_url for more about token buckets.
//
// The zero value is a valid Limiter, but it will reject all events.
// Use NewLimiter to create non-zero Limiters.
//
// Limiter has three main methods, Allow, Reserve, and Wait.
// Most callers should use Wait.
//
// Each of the three methods consumes a single token.
// They differ in their behavior when no token is available.
// If no token is available, Allow returns false.
// If no token is available, Reserve returns a reservation for a future token
// and the amount of time the caller must wait before using it.
// If no token is available, Wait blocks until one can be obtained
// or its associated context.Context is canceled.
//
// The methods AllowN, ReserveN, and WaitN consume n tokens.
type Limiter struct {
mu sync.Mutex
limit Limit
burst int
tokens float64
// last is the last time the limiter's tokens field was updated
last time.Time
// lastEvent is the latest time of a rate-limited event (past or future)
lastEvent time.Time
}
// Limit returns the maximum overall event rate.
func (lim *Limiter) Limit() Limit {
lim.mu.Lock()
defer lim.mu.Unlock()
return lim.limit
}
// Burst returns the maximum burst size. Burst is the maximum number of tokens
// that can be consumed in a single call to Allow, Reserve, or Wait, so higher
// Burst values allow more events to happen at once.
// A zero Burst allows no events, unless limit == Inf.
func (lim *Limiter) Burst() int {
lim.mu.Lock()
defer lim.mu.Unlock()
return lim.burst
}
// TokensAt returns the number of tokens available at time t.
func (lim *Limiter) TokensAt(t time.Time) float64 {
lim.mu.Lock()
_, tokens := lim.advance(t) // does not mutate lim
lim.mu.Unlock()
return tokens
}
// Tokens returns the number of tokens available now.
func (lim *Limiter) Tokens() float64 {
return lim.TokensAt(time.Now())
}
// NewLimiter returns a new Limiter that allows events up to rate r and permits
// bursts of at most b tokens.
func NewLimiter(r Limit, b int) *Limiter {
return &Limiter{
limit: r,
burst: b,
}
}
// Allow reports whether an event may happen now.
func (lim *Limiter) Allow() bool {
return lim.AllowN(time.Now(), 1)
}
// AllowN reports whether n events may happen at time t.
// Use this method if you intend to drop / skip events that exceed the rate limit.
// Otherwise use Reserve or Wait.
func (lim *Limiter) AllowN(t time.Time, n int) bool {
return lim.reserveN(t, n, 0).ok
}
// A Reservation holds information about events that are permitted by a Limiter to happen after a delay.
// A Reservation may be canceled, which may enable the Limiter to permit additional events.
type Reservation struct {
ok bool
lim *Limiter
tokens int
timeToAct time.Time
// This is the Limit at reservation time, it can change later.
limit Limit
}
// OK returns whether the limiter can provide the requested number of tokens
// within the maximum wait time. If OK is false, Delay returns InfDuration, and
// Cancel does nothing.
func (r *Reservation) OK() bool {
return r.ok
}
// Delay is shorthand for DelayFrom(time.Now()).
func (r *Reservation) Delay() time.Duration {
return r.DelayFrom(time.Now())
}
// InfDuration is the duration returned by Delay when a Reservation is not OK.
const InfDuration = time.Duration(math.MaxInt64)
// DelayFrom returns the duration for which the reservation holder must wait
// before taking the reserved action. Zero duration means act immediately.
// InfDuration means the limiter cannot grant the tokens requested in this
// Reservation within the maximum wait time.
func (r *Reservation) DelayFrom(t time.Time) time.Duration {
if !r.ok {
return InfDuration
}
delay := r.timeToAct.Sub(t)
if delay < 0 {
return 0
}
return delay
}
// Cancel is shorthand for CancelAt(time.Now()).
func (r *Reservation) Cancel() {
r.CancelAt(time.Now())
}
// CancelAt indicates that the reservation holder will not perform the reserved action
// and reverses the effects of this Reservation on the rate limit as much as possible,
// considering that other reservations may have already been made.
func (r *Reservation) CancelAt(t time.Time) {
if !r.ok {
return
}
r.lim.mu.Lock()
defer r.lim.mu.Unlock()
if r.lim.limit == Inf || r.tokens == 0 || r.timeToAct.Before(t) {
return
}
// calculate tokens to restore
// The duration between lim.lastEvent and r.timeToAct tells us how many tokens were reserved
// after r was obtained. These tokens should not be restored.
restoreTokens := float64(r.tokens) - r.limit.tokensFromDuration(r.lim.lastEvent.Sub(r.timeToAct))
if restoreTokens <= 0 {
return
}
// advance time to now
t, tokens := r.lim.advance(t)
// calculate new number of tokens
tokens += restoreTokens
if burst := float64(r.lim.burst); tokens > burst {
tokens = burst
}
// update state
r.lim.last = t
r.lim.tokens = tokens
if r.timeToAct == r.lim.lastEvent {
prevEvent := r.timeToAct.Add(r.limit.durationFromTokens(float64(-r.tokens)))
if !prevEvent.Before(t) {
r.lim.lastEvent = prevEvent
}
}
}
// Reserve is shorthand for ReserveN(time.Now(), 1).
func (lim *Limiter) Reserve() *Reservation {
return lim.ReserveN(time.Now(), 1)
}
// ReserveN returns a Reservation that indicates how long the caller must wait before n events happen.
// The Limiter takes this Reservation into account when allowing future events.
// The returned Reservations OK() method returns false if n exceeds the Limiter's burst size.
// Usage example:
//
// r := lim.ReserveN(time.Now(), 1)
// if !r.OK() {
// // Not allowed to act! Did you remember to set lim.burst to be > 0 ?
// return
// }
// time.Sleep(r.Delay())
// Act()
//
// Use this method if you wish to wait and slow down in accordance with the rate limit without dropping events.
// If you need to respect a deadline or cancel the delay, use Wait instead.
// To drop or skip events exceeding rate limit, use Allow instead.
func (lim *Limiter) ReserveN(t time.Time, n int) *Reservation {
r := lim.reserveN(t, n, InfDuration)
return &r
}
// Wait is shorthand for WaitN(ctx, 1).
func (lim *Limiter) Wait(ctx context.Context) (err error) {
return lim.WaitN(ctx, 1)
}
// WaitN blocks until lim permits n events to happen.
// It returns an error if n exceeds the Limiter's burst size, the Context is
// canceled, or the expected wait time exceeds the Context's Deadline.
// The burst limit is ignored if the rate limit is Inf.
func (lim *Limiter) WaitN(ctx context.Context, n int) (err error) {
// The test code calls lim.wait with a fake timer generator.
// This is the real timer generator.
newTimer := func(d time.Duration) (<-chan time.Time, func() bool, func()) {
timer := time.NewTimer(d)
return timer.C, timer.Stop, func() {}
}
return lim.wait(ctx, n, time.Now(), newTimer)
}
// wait is the internal implementation of WaitN.
func (lim *Limiter) wait(ctx context.Context, n int, t time.Time, newTimer func(d time.Duration) (<-chan time.Time, func() bool, func())) error {
lim.mu.Lock()
burst := lim.burst
limit := lim.limit
lim.mu.Unlock()
if n > burst && limit != Inf {
return fmt.Errorf("rate: Wait(n=%d) exceeds limiter's burst %d", n, burst)
}
// Check if ctx is already cancelled
select {
case <-ctx.Done():
return ctx.Err()
default:
}
// Determine wait limit
waitLimit := InfDuration
if deadline, ok := ctx.Deadline(); ok {
waitLimit = deadline.Sub(t)
}
// Reserve
r := lim.reserveN(t, n, waitLimit)
if !r.ok {
return fmt.Errorf("rate: Wait(n=%d) would exceed context deadline", n)
}
// Wait if necessary
delay := r.DelayFrom(t)
if delay == 0 {
return nil
}
ch, stop, advance := newTimer(delay)
defer stop()
advance() // only has an effect when testing
select {
case <-ch:
// We can proceed.
return nil
case <-ctx.Done():
// Context was canceled before we could proceed. Cancel the
// reservation, which may permit other events to proceed sooner.
r.Cancel()
return ctx.Err()
}
}
// SetLimit is shorthand for SetLimitAt(time.Now(), newLimit).
func (lim *Limiter) SetLimit(newLimit Limit) {
lim.SetLimitAt(time.Now(), newLimit)
}
// SetLimitAt sets a new Limit for the limiter. The new Limit, and Burst, may be violated
// or underutilized by those which reserved (using Reserve or Wait) but did not yet act
// before SetLimitAt was called.
func (lim *Limiter) SetLimitAt(t time.Time, newLimit Limit) {
lim.mu.Lock()
defer lim.mu.Unlock()
t, tokens := lim.advance(t)
lim.last = t
lim.tokens = tokens
lim.limit = newLimit
}
// SetBurst is shorthand for SetBurstAt(time.Now(), newBurst).
func (lim *Limiter) SetBurst(newBurst int) {
lim.SetBurstAt(time.Now(), newBurst)
}
// SetBurstAt sets a new burst size for the limiter.
func (lim *Limiter) SetBurstAt(t time.Time, newBurst int) {
lim.mu.Lock()
defer lim.mu.Unlock()
t, tokens := lim.advance(t)
lim.last = t
lim.tokens = tokens
lim.burst = newBurst
}
// reserveN is a helper method for AllowN, ReserveN, and WaitN.
// maxFutureReserve specifies the maximum reservation wait duration allowed.
// reserveN returns Reservation, not *Reservation, to avoid allocation in AllowN and WaitN.
func (lim *Limiter) reserveN(t time.Time, n int, maxFutureReserve time.Duration) Reservation {
lim.mu.Lock()
defer lim.mu.Unlock()
if lim.limit == Inf {
return Reservation{
ok: true,
lim: lim,
tokens: n,
timeToAct: t,
}
} else if lim.limit == 0 {
var ok bool
if lim.burst >= n {
ok = true
lim.burst -= n
}
return Reservation{
ok: ok,
lim: lim,
tokens: lim.burst,
timeToAct: t,
}
}
t, tokens := lim.advance(t)
// Calculate the remaining number of tokens resulting from the request.
tokens -= float64(n)
// Calculate the wait duration
var waitDuration time.Duration
if tokens < 0 {
waitDuration = lim.limit.durationFromTokens(-tokens)
}
// Decide result
ok := n <= lim.burst && waitDuration <= maxFutureReserve
// Prepare reservation
r := Reservation{
ok: ok,
lim: lim,
limit: lim.limit,
}
if ok {
r.tokens = n
r.timeToAct = t.Add(waitDuration)
// Update state
lim.last = t
lim.tokens = tokens
lim.lastEvent = r.timeToAct
}
return r
}
// advance calculates and returns an updated state for lim resulting from the passage of time.
// lim is not changed.
// advance requires that lim.mu is held.
func (lim *Limiter) advance(t time.Time) (newT time.Time, newTokens float64) {
last := lim.last
if t.Before(last) {
last = t
}
// Calculate the new number of tokens, due to time that passed.
elapsed := t.Sub(last)
delta := lim.limit.tokensFromDuration(elapsed)
tokens := lim.tokens + delta
if burst := float64(lim.burst); tokens > burst {
tokens = burst
}
return t, tokens
}
// durationFromTokens is a unit conversion function from the number of tokens to the duration
// of time it takes to accumulate them at a rate of limit tokens per second.
func (limit Limit) durationFromTokens(tokens float64) time.Duration {
if limit <= 0 {
return InfDuration
}
seconds := tokens / float64(limit)
return time.Duration(float64(time.Second) * seconds)
}
// tokensFromDuration is a unit conversion function from a time duration to the number of tokens
// which could be accumulated during that duration at a rate of limit tokens per second.
func (limit Limit) tokensFromDuration(d time.Duration) float64 {
if limit <= 0 {
return 0
}
return d.Seconds() * float64(limit)
}
``` |
The International Association for Dance Medicine & Science (IADMS) was formed in 1990 with the goal summarized in its mission statement: IADMS is an inclusive organization for professionals who care for those who dance by evolving best practices in dance science, education, research, and medical care to support optimal health, well-being, training, and performance.
As at 2020, the association had a membership of over 1,500 from over 52 countries.
Since its inception, the association has held an annual meeting (scientific conference) at venues around the world. These conferences, currently four days in length, are multidisciplinary, with lectures, symposia, and forums on dance medicine, dance science, and dance education, as well as movement sessions. The conferences are attended by physicians, physical therapists, allied health professionals, alternative healthcare practitioners, psychologists, arts administrators, artistic directors, choreographers, dance educators, dance scientists, movement specialists, and dancers. Continuing education credits for healthcare professionals are provided.
The association publishes a quarterly peer-reviewed scientific journal, Journal of Dance Medicine & Science (by subscription, print and online) which is indexed in MEDLINE and The IADMS Bulletin for Teachers (free, online only).
Resource papers on numerous topics and in several languages, written by medical, scientific, and dance professionals, are available for free download on the association's website.
Presidents
1991–1993 Justin Howse, FRCS (Eng) and Allan Ryan, MD
1993–1997 Jan Dunn, MS
1997–1999 Robert Stephens, PhD
1999–2001 Marika Molnar, PT
2001–2003 David S. Weiss, MD, FAAOS
2003–2005 Rachel Rist, MA
2005–2007 Virginia Wilmerding, PhD
2007–2009 Boni Rietveld, MD
2009–2011 Tom Welsh, PhD
2011–2013 Emma Redding, PhD
2013–2015 Janet Karin
2015–2017 Matthew Wyon, PhD
2017–2019 Peter Lavine, MD
2019–2021 Peter Lewton-Brain, DO, MA
2021-2023 Nancy Kadel, MD
2023-2025 Kathleen Davenport, MD
References
Dance organizations
International medical and health organizations
Dance and health |
The 2023 World Athletics Cross Country Championships took place on 18 February 2023 in Bathurst, Australia. It was the event's 44th edition and the second time after Auckland in 1988 that the championships were held in Oceania.
In March 2020 the course was revealed, to be held in the infield of the Mount Panorama Circuit.
In December 2020, the event was postponed from 2021 to 2022 due to the COVID-19 pandemic and Australian travel restrictions. The championships were once again delayed to 2023 in September 2021, due to Australian travel restrictions.
Schedule
The junior races preceded the senior races, and the senior men's event concluded the program.
Medalists
Medal table
Note: Totals include both individual and team medals, with medals in the team competition counting as one medal.
Participation
453 athletes from 48 countries were scheduled to participate.
References
External links
Official website
2023
World Cross Country Championships
International athletics competitions hosted by Australia
Cross country running in Australia
World Athletics Cross Country Championships, 2022
World Athletics Cross Country |
Acradenia is a genus of two species of tree or shrub in the family Rutaceae and is endemic to Australia. These plants have leaves that are trifoliate, arranged in opposite pairs and flowers that have five sepals, five petals and usually ten stamens of unequal lengths.
Description
Plants in the genus Acradenia are evergreen trees, sometimes shrubs with trifoliate leaves arranged in opposite pairs and lacking domatia. The flowers are arranged in panicles in leaf axils or on the ends of branchlets. The flowers are bisexual usually with five (rarely six) sepals and petals. The sepals are long, joined at the base and remain attached to the fruit. The petals overlap at the base and there are twice as many stamens as petals, usually alternating in length. There are usually five carpels in each ovary and two ovules in each locule. The fruit has up to five follicles joined at the base, each follicle with a single, smooth brown seed about long.
Taxonomy
The genus Acradenia was first formally described in 1853 by Richard Kippist in the Proceedings of the Linnean Society of London and the first species described was A. frankliniae.
The closest relative to Acradenia is Crossosperma from New Caledonia.
Species
Acradenia euodiiformis (F.Muell.) T.G.Hartley - yellow satinheart, bonewood (N.S.W., Qld.)
Acradenia frankliniae Milligan ex Kippist - whitey wood, wirewood (Tas.).
References
External links
Zanthoxyloideae genera
Sapindales of Australia
Taxa named by Richard Kippist |
The Atlantic Bridge is a flight route from Gander, Newfoundland, Canada to Scotland, with a refueling stop in Iceland.
During the Second World War, new bombers flew this route. Today, it is seldom used for commercial aviation, since modern jet airliners can fly a direct route from Canada or the United States to Europe without the need for a fueling stop. However, smaller aircraft which do not have the necessary range to make a direct crossing of the ocean still routinely use this route, or may alternatively stop in Greenland, typically via Narsarsuaq and Kulusuk or the Azores for refueling. The most common users of this route are ferry pilots delivering light aeroplanes (often six seats or less) to new owners.
This route is longer overall than the direct route and involves an extra landing and takeoff, which is costly in fuel terms.
See also
Transatlantic flight
References
Atlantic Bridge: the Official Account of RAF Transport Command's Ocean Ferry, HM Stationery Office, 1945
Trans-oceanic aviation
Aircraft ferrying
Aviation in the Atlantic Ocean |
The Mackinaw River State Fish and Wildlife Area is a state park in Tazewell County, Illinois. It is operated by the Illinois Department of Natural Resources (IDNR). The Area dates to 1970, when a conservation group based in Bloomington, the Parklands Foundation, donated its acreage to the state.
The Mackinaw River SFWA consists of more than two square miles of upslope on the south bank of the Mackinaw River, primarily wooded land with some upland meadows. There are also two sections of Mackinaw River bottomland that offer direct access to the river; each section is approximately wide. The Mackinaw River SWFA is primarily managed for the hunting of whitetail deer, although fishing and canoeing are also welcomed.
The Mackinaw River is a free-running river throughout most of its length, and therefore offers potential for the preservation of fish and shellfish species (particularly mussels) historically associated with the tallgrass prairie. However, most of the river's drainage is heavily utilized for crop farming, with its potential for erosion and consequent siltation. Sixty-six percent of the river's drainage is cropland. The Mackinaw River State Fish and Wildlife Area is an island of natural drainage into the vulnerable river, although it takes up less than 1.2% of the river's total watershed.
The nearest town to the Mackinaw River SFWA is Mackinaw, Illinois.
External links
University of Illinois - Mackinaw River
References
State parks of Illinois
Protected areas of Tazewell County, Illinois
Protected areas established in 1970
1970 establishments in Illinois |
```go
// This file was generated by go generate; DO NOT EDIT
package bidi
// UnicodeVersion is the Unicode version from which the tables in this package are derived.
const UnicodeVersion = "9.0.0"
// xorMasks contains masks to be xor-ed with brackets to get the reverse
// version.
var xorMasks = []int32{ // 8 elements
0, 1, 6, 7, 3, 15, 29, 63,
} // Size: 56 bytes
// lookup returns the trie value for the first UTF-8 encoding in s and
// the width in bytes of this encoding. The size will be 0 if s does not
// hold enough bytes to complete the encoding. len(s) must be greater than 0.
func (t *bidiTrie) lookup(s []byte) (v uint8, sz int) {
c0 := s[0]
switch {
case c0 < 0x80: // is ASCII
return bidiValues[c0], 1
case c0 < 0xC2:
return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
case c0 < 0xE0: // 2-byte UTF-8
if len(s) < 2 {
return 0, 0
}
i := bidiIndex[c0]
c1 := s[1]
if c1 < 0x80 || 0xC0 <= c1 {
return 0, 1 // Illegal UTF-8: not a continuation byte.
}
return t.lookupValue(uint32(i), c1), 2
case c0 < 0xF0: // 3-byte UTF-8
if len(s) < 3 {
return 0, 0
}
i := bidiIndex[c0]
c1 := s[1]
if c1 < 0x80 || 0xC0 <= c1 {
return 0, 1 // Illegal UTF-8: not a continuation byte.
}
o := uint32(i)<<6 + uint32(c1)
i = bidiIndex[o]
c2 := s[2]
if c2 < 0x80 || 0xC0 <= c2 {
return 0, 2 // Illegal UTF-8: not a continuation byte.
}
return t.lookupValue(uint32(i), c2), 3
case c0 < 0xF8: // 4-byte UTF-8
if len(s) < 4 {
return 0, 0
}
i := bidiIndex[c0]
c1 := s[1]
if c1 < 0x80 || 0xC0 <= c1 {
return 0, 1 // Illegal UTF-8: not a continuation byte.
}
o := uint32(i)<<6 + uint32(c1)
i = bidiIndex[o]
c2 := s[2]
if c2 < 0x80 || 0xC0 <= c2 {
return 0, 2 // Illegal UTF-8: not a continuation byte.
}
o = uint32(i)<<6 + uint32(c2)
i = bidiIndex[o]
c3 := s[3]
if c3 < 0x80 || 0xC0 <= c3 {
return 0, 3 // Illegal UTF-8: not a continuation byte.
}
return t.lookupValue(uint32(i), c3), 4
}
// Illegal rune
return 0, 1
}
// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
// s must start with a full and valid UTF-8 encoded rune.
func (t *bidiTrie) lookupUnsafe(s []byte) uint8 {
c0 := s[0]
if c0 < 0x80 { // is ASCII
return bidiValues[c0]
}
i := bidiIndex[c0]
if c0 < 0xE0 { // 2-byte UTF-8
return t.lookupValue(uint32(i), s[1])
}
i = bidiIndex[uint32(i)<<6+uint32(s[1])]
if c0 < 0xF0 { // 3-byte UTF-8
return t.lookupValue(uint32(i), s[2])
}
i = bidiIndex[uint32(i)<<6+uint32(s[2])]
if c0 < 0xF8 { // 4-byte UTF-8
return t.lookupValue(uint32(i), s[3])
}
return 0
}
// lookupString returns the trie value for the first UTF-8 encoding in s and
// the width in bytes of this encoding. The size will be 0 if s does not
// hold enough bytes to complete the encoding. len(s) must be greater than 0.
func (t *bidiTrie) lookupString(s string) (v uint8, sz int) {
c0 := s[0]
switch {
case c0 < 0x80: // is ASCII
return bidiValues[c0], 1
case c0 < 0xC2:
return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
case c0 < 0xE0: // 2-byte UTF-8
if len(s) < 2 {
return 0, 0
}
i := bidiIndex[c0]
c1 := s[1]
if c1 < 0x80 || 0xC0 <= c1 {
return 0, 1 // Illegal UTF-8: not a continuation byte.
}
return t.lookupValue(uint32(i), c1), 2
case c0 < 0xF0: // 3-byte UTF-8
if len(s) < 3 {
return 0, 0
}
i := bidiIndex[c0]
c1 := s[1]
if c1 < 0x80 || 0xC0 <= c1 {
return 0, 1 // Illegal UTF-8: not a continuation byte.
}
o := uint32(i)<<6 + uint32(c1)
i = bidiIndex[o]
c2 := s[2]
if c2 < 0x80 || 0xC0 <= c2 {
return 0, 2 // Illegal UTF-8: not a continuation byte.
}
return t.lookupValue(uint32(i), c2), 3
case c0 < 0xF8: // 4-byte UTF-8
if len(s) < 4 {
return 0, 0
}
i := bidiIndex[c0]
c1 := s[1]
if c1 < 0x80 || 0xC0 <= c1 {
return 0, 1 // Illegal UTF-8: not a continuation byte.
}
o := uint32(i)<<6 + uint32(c1)
i = bidiIndex[o]
c2 := s[2]
if c2 < 0x80 || 0xC0 <= c2 {
return 0, 2 // Illegal UTF-8: not a continuation byte.
}
o = uint32(i)<<6 + uint32(c2)
i = bidiIndex[o]
c3 := s[3]
if c3 < 0x80 || 0xC0 <= c3 {
return 0, 3 // Illegal UTF-8: not a continuation byte.
}
return t.lookupValue(uint32(i), c3), 4
}
// Illegal rune
return 0, 1
}
// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.
// s must start with a full and valid UTF-8 encoded rune.
func (t *bidiTrie) lookupStringUnsafe(s string) uint8 {
c0 := s[0]
if c0 < 0x80 { // is ASCII
return bidiValues[c0]
}
i := bidiIndex[c0]
if c0 < 0xE0 { // 2-byte UTF-8
return t.lookupValue(uint32(i), s[1])
}
i = bidiIndex[uint32(i)<<6+uint32(s[1])]
if c0 < 0xF0 { // 3-byte UTF-8
return t.lookupValue(uint32(i), s[2])
}
i = bidiIndex[uint32(i)<<6+uint32(s[2])]
if c0 < 0xF8 { // 4-byte UTF-8
return t.lookupValue(uint32(i), s[3])
}
return 0
}
// bidiTrie. Total size: 15744 bytes (15.38 KiB). Checksum: b4c3b70954803b86.
type bidiTrie struct{}
func newBidiTrie(i int) *bidiTrie {
return &bidiTrie{}
}
// lookupValue determines the type of block n and looks up the value for b.
func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
switch {
default:
return uint8(bidiValues[n<<6+uint32(b)])
}
}
// bidiValues: 222 blocks, 14208 entries, 14208 bytes
// The third block is the zero block.
var bidiValues = [14208]uint8{
// Block 0x0, offset 0x0
0x00: 0x000b, 0x01: 0x000b, 0x02: 0x000b, 0x03: 0x000b, 0x04: 0x000b, 0x05: 0x000b,
0x06: 0x000b, 0x07: 0x000b, 0x08: 0x000b, 0x09: 0x0008, 0x0a: 0x0007, 0x0b: 0x0008,
0x0c: 0x0009, 0x0d: 0x0007, 0x0e: 0x000b, 0x0f: 0x000b, 0x10: 0x000b, 0x11: 0x000b,
0x12: 0x000b, 0x13: 0x000b, 0x14: 0x000b, 0x15: 0x000b, 0x16: 0x000b, 0x17: 0x000b,
0x18: 0x000b, 0x19: 0x000b, 0x1a: 0x000b, 0x1b: 0x000b, 0x1c: 0x0007, 0x1d: 0x0007,
0x1e: 0x0007, 0x1f: 0x0008, 0x20: 0x0009, 0x21: 0x000a, 0x22: 0x000a, 0x23: 0x0004,
0x24: 0x0004, 0x25: 0x0004, 0x26: 0x000a, 0x27: 0x000a, 0x28: 0x003a, 0x29: 0x002a,
0x2a: 0x000a, 0x2b: 0x0003, 0x2c: 0x0006, 0x2d: 0x0003, 0x2e: 0x0006, 0x2f: 0x0006,
0x30: 0x0002, 0x31: 0x0002, 0x32: 0x0002, 0x33: 0x0002, 0x34: 0x0002, 0x35: 0x0002,
0x36: 0x0002, 0x37: 0x0002, 0x38: 0x0002, 0x39: 0x0002, 0x3a: 0x0006, 0x3b: 0x000a,
0x3c: 0x000a, 0x3d: 0x000a, 0x3e: 0x000a, 0x3f: 0x000a,
// Block 0x1, offset 0x40
0x40: 0x000a,
0x5b: 0x005a, 0x5c: 0x000a, 0x5d: 0x004a,
0x5e: 0x000a, 0x5f: 0x000a, 0x60: 0x000a,
0x7b: 0x005a,
0x7c: 0x000a, 0x7d: 0x004a, 0x7e: 0x000a, 0x7f: 0x000b,
// Block 0x2, offset 0x80
// Block 0x3, offset 0xc0
0xc0: 0x000b, 0xc1: 0x000b, 0xc2: 0x000b, 0xc3: 0x000b, 0xc4: 0x000b, 0xc5: 0x0007,
0xc6: 0x000b, 0xc7: 0x000b, 0xc8: 0x000b, 0xc9: 0x000b, 0xca: 0x000b, 0xcb: 0x000b,
0xcc: 0x000b, 0xcd: 0x000b, 0xce: 0x000b, 0xcf: 0x000b, 0xd0: 0x000b, 0xd1: 0x000b,
0xd2: 0x000b, 0xd3: 0x000b, 0xd4: 0x000b, 0xd5: 0x000b, 0xd6: 0x000b, 0xd7: 0x000b,
0xd8: 0x000b, 0xd9: 0x000b, 0xda: 0x000b, 0xdb: 0x000b, 0xdc: 0x000b, 0xdd: 0x000b,
0xde: 0x000b, 0xdf: 0x000b, 0xe0: 0x0006, 0xe1: 0x000a, 0xe2: 0x0004, 0xe3: 0x0004,
0xe4: 0x0004, 0xe5: 0x0004, 0xe6: 0x000a, 0xe7: 0x000a, 0xe8: 0x000a, 0xe9: 0x000a,
0xeb: 0x000a, 0xec: 0x000a, 0xed: 0x000b, 0xee: 0x000a, 0xef: 0x000a,
0xf0: 0x0004, 0xf1: 0x0004, 0xf2: 0x0002, 0xf3: 0x0002, 0xf4: 0x000a,
0xf6: 0x000a, 0xf7: 0x000a, 0xf8: 0x000a, 0xf9: 0x0002, 0xfb: 0x000a,
0xfc: 0x000a, 0xfd: 0x000a, 0xfe: 0x000a, 0xff: 0x000a,
// Block 0x4, offset 0x100
0x117: 0x000a,
0x137: 0x000a,
// Block 0x5, offset 0x140
0x179: 0x000a, 0x17a: 0x000a,
// Block 0x6, offset 0x180
0x182: 0x000a, 0x183: 0x000a, 0x184: 0x000a, 0x185: 0x000a,
0x186: 0x000a, 0x187: 0x000a, 0x188: 0x000a, 0x189: 0x000a, 0x18a: 0x000a, 0x18b: 0x000a,
0x18c: 0x000a, 0x18d: 0x000a, 0x18e: 0x000a, 0x18f: 0x000a,
0x192: 0x000a, 0x193: 0x000a, 0x194: 0x000a, 0x195: 0x000a, 0x196: 0x000a, 0x197: 0x000a,
0x198: 0x000a, 0x199: 0x000a, 0x19a: 0x000a, 0x19b: 0x000a, 0x19c: 0x000a, 0x19d: 0x000a,
0x19e: 0x000a, 0x19f: 0x000a,
0x1a5: 0x000a, 0x1a6: 0x000a, 0x1a7: 0x000a, 0x1a8: 0x000a, 0x1a9: 0x000a,
0x1aa: 0x000a, 0x1ab: 0x000a, 0x1ac: 0x000a, 0x1ad: 0x000a, 0x1af: 0x000a,
0x1b0: 0x000a, 0x1b1: 0x000a, 0x1b2: 0x000a, 0x1b3: 0x000a, 0x1b4: 0x000a, 0x1b5: 0x000a,
0x1b6: 0x000a, 0x1b7: 0x000a, 0x1b8: 0x000a, 0x1b9: 0x000a, 0x1ba: 0x000a, 0x1bb: 0x000a,
0x1bc: 0x000a, 0x1bd: 0x000a, 0x1be: 0x000a, 0x1bf: 0x000a,
// Block 0x7, offset 0x1c0
0x1c0: 0x000c, 0x1c1: 0x000c, 0x1c2: 0x000c, 0x1c3: 0x000c, 0x1c4: 0x000c, 0x1c5: 0x000c,
0x1c6: 0x000c, 0x1c7: 0x000c, 0x1c8: 0x000c, 0x1c9: 0x000c, 0x1ca: 0x000c, 0x1cb: 0x000c,
0x1cc: 0x000c, 0x1cd: 0x000c, 0x1ce: 0x000c, 0x1cf: 0x000c, 0x1d0: 0x000c, 0x1d1: 0x000c,
0x1d2: 0x000c, 0x1d3: 0x000c, 0x1d4: 0x000c, 0x1d5: 0x000c, 0x1d6: 0x000c, 0x1d7: 0x000c,
0x1d8: 0x000c, 0x1d9: 0x000c, 0x1da: 0x000c, 0x1db: 0x000c, 0x1dc: 0x000c, 0x1dd: 0x000c,
0x1de: 0x000c, 0x1df: 0x000c, 0x1e0: 0x000c, 0x1e1: 0x000c, 0x1e2: 0x000c, 0x1e3: 0x000c,
0x1e4: 0x000c, 0x1e5: 0x000c, 0x1e6: 0x000c, 0x1e7: 0x000c, 0x1e8: 0x000c, 0x1e9: 0x000c,
0x1ea: 0x000c, 0x1eb: 0x000c, 0x1ec: 0x000c, 0x1ed: 0x000c, 0x1ee: 0x000c, 0x1ef: 0x000c,
0x1f0: 0x000c, 0x1f1: 0x000c, 0x1f2: 0x000c, 0x1f3: 0x000c, 0x1f4: 0x000c, 0x1f5: 0x000c,
0x1f6: 0x000c, 0x1f7: 0x000c, 0x1f8: 0x000c, 0x1f9: 0x000c, 0x1fa: 0x000c, 0x1fb: 0x000c,
0x1fc: 0x000c, 0x1fd: 0x000c, 0x1fe: 0x000c, 0x1ff: 0x000c,
// Block 0x8, offset 0x200
0x200: 0x000c, 0x201: 0x000c, 0x202: 0x000c, 0x203: 0x000c, 0x204: 0x000c, 0x205: 0x000c,
0x206: 0x000c, 0x207: 0x000c, 0x208: 0x000c, 0x209: 0x000c, 0x20a: 0x000c, 0x20b: 0x000c,
0x20c: 0x000c, 0x20d: 0x000c, 0x20e: 0x000c, 0x20f: 0x000c, 0x210: 0x000c, 0x211: 0x000c,
0x212: 0x000c, 0x213: 0x000c, 0x214: 0x000c, 0x215: 0x000c, 0x216: 0x000c, 0x217: 0x000c,
0x218: 0x000c, 0x219: 0x000c, 0x21a: 0x000c, 0x21b: 0x000c, 0x21c: 0x000c, 0x21d: 0x000c,
0x21e: 0x000c, 0x21f: 0x000c, 0x220: 0x000c, 0x221: 0x000c, 0x222: 0x000c, 0x223: 0x000c,
0x224: 0x000c, 0x225: 0x000c, 0x226: 0x000c, 0x227: 0x000c, 0x228: 0x000c, 0x229: 0x000c,
0x22a: 0x000c, 0x22b: 0x000c, 0x22c: 0x000c, 0x22d: 0x000c, 0x22e: 0x000c, 0x22f: 0x000c,
0x234: 0x000a, 0x235: 0x000a,
0x23e: 0x000a,
// Block 0x9, offset 0x240
0x244: 0x000a, 0x245: 0x000a,
0x247: 0x000a,
// Block 0xa, offset 0x280
0x2b6: 0x000a,
// Block 0xb, offset 0x2c0
0x2c3: 0x000c, 0x2c4: 0x000c, 0x2c5: 0x000c,
0x2c6: 0x000c, 0x2c7: 0x000c, 0x2c8: 0x000c, 0x2c9: 0x000c,
// Block 0xc, offset 0x300
0x30a: 0x000a,
0x30d: 0x000a, 0x30e: 0x000a, 0x30f: 0x0004, 0x310: 0x0001, 0x311: 0x000c,
0x312: 0x000c, 0x313: 0x000c, 0x314: 0x000c, 0x315: 0x000c, 0x316: 0x000c, 0x317: 0x000c,
0x318: 0x000c, 0x319: 0x000c, 0x31a: 0x000c, 0x31b: 0x000c, 0x31c: 0x000c, 0x31d: 0x000c,
0x31e: 0x000c, 0x31f: 0x000c, 0x320: 0x000c, 0x321: 0x000c, 0x322: 0x000c, 0x323: 0x000c,
0x324: 0x000c, 0x325: 0x000c, 0x326: 0x000c, 0x327: 0x000c, 0x328: 0x000c, 0x329: 0x000c,
0x32a: 0x000c, 0x32b: 0x000c, 0x32c: 0x000c, 0x32d: 0x000c, 0x32e: 0x000c, 0x32f: 0x000c,
0x330: 0x000c, 0x331: 0x000c, 0x332: 0x000c, 0x333: 0x000c, 0x334: 0x000c, 0x335: 0x000c,
0x336: 0x000c, 0x337: 0x000c, 0x338: 0x000c, 0x339: 0x000c, 0x33a: 0x000c, 0x33b: 0x000c,
0x33c: 0x000c, 0x33d: 0x000c, 0x33e: 0x0001, 0x33f: 0x000c,
// Block 0xd, offset 0x340
0x340: 0x0001, 0x341: 0x000c, 0x342: 0x000c, 0x343: 0x0001, 0x344: 0x000c, 0x345: 0x000c,
0x346: 0x0001, 0x347: 0x000c, 0x348: 0x0001, 0x349: 0x0001, 0x34a: 0x0001, 0x34b: 0x0001,
0x34c: 0x0001, 0x34d: 0x0001, 0x34e: 0x0001, 0x34f: 0x0001, 0x350: 0x0001, 0x351: 0x0001,
0x352: 0x0001, 0x353: 0x0001, 0x354: 0x0001, 0x355: 0x0001, 0x356: 0x0001, 0x357: 0x0001,
0x358: 0x0001, 0x359: 0x0001, 0x35a: 0x0001, 0x35b: 0x0001, 0x35c: 0x0001, 0x35d: 0x0001,
0x35e: 0x0001, 0x35f: 0x0001, 0x360: 0x0001, 0x361: 0x0001, 0x362: 0x0001, 0x363: 0x0001,
0x364: 0x0001, 0x365: 0x0001, 0x366: 0x0001, 0x367: 0x0001, 0x368: 0x0001, 0x369: 0x0001,
0x36a: 0x0001, 0x36b: 0x0001, 0x36c: 0x0001, 0x36d: 0x0001, 0x36e: 0x0001, 0x36f: 0x0001,
0x370: 0x0001, 0x371: 0x0001, 0x372: 0x0001, 0x373: 0x0001, 0x374: 0x0001, 0x375: 0x0001,
0x376: 0x0001, 0x377: 0x0001, 0x378: 0x0001, 0x379: 0x0001, 0x37a: 0x0001, 0x37b: 0x0001,
0x37c: 0x0001, 0x37d: 0x0001, 0x37e: 0x0001, 0x37f: 0x0001,
// Block 0xe, offset 0x380
0x380: 0x0005, 0x381: 0x0005, 0x382: 0x0005, 0x383: 0x0005, 0x384: 0x0005, 0x385: 0x0005,
0x386: 0x000a, 0x387: 0x000a, 0x388: 0x000d, 0x389: 0x0004, 0x38a: 0x0004, 0x38b: 0x000d,
0x38c: 0x0006, 0x38d: 0x000d, 0x38e: 0x000a, 0x38f: 0x000a, 0x390: 0x000c, 0x391: 0x000c,
0x392: 0x000c, 0x393: 0x000c, 0x394: 0x000c, 0x395: 0x000c, 0x396: 0x000c, 0x397: 0x000c,
0x398: 0x000c, 0x399: 0x000c, 0x39a: 0x000c, 0x39b: 0x000d, 0x39c: 0x000d, 0x39d: 0x000d,
0x39e: 0x000d, 0x39f: 0x000d, 0x3a0: 0x000d, 0x3a1: 0x000d, 0x3a2: 0x000d, 0x3a3: 0x000d,
0x3a4: 0x000d, 0x3a5: 0x000d, 0x3a6: 0x000d, 0x3a7: 0x000d, 0x3a8: 0x000d, 0x3a9: 0x000d,
0x3aa: 0x000d, 0x3ab: 0x000d, 0x3ac: 0x000d, 0x3ad: 0x000d, 0x3ae: 0x000d, 0x3af: 0x000d,
0x3b0: 0x000d, 0x3b1: 0x000d, 0x3b2: 0x000d, 0x3b3: 0x000d, 0x3b4: 0x000d, 0x3b5: 0x000d,
0x3b6: 0x000d, 0x3b7: 0x000d, 0x3b8: 0x000d, 0x3b9: 0x000d, 0x3ba: 0x000d, 0x3bb: 0x000d,
0x3bc: 0x000d, 0x3bd: 0x000d, 0x3be: 0x000d, 0x3bf: 0x000d,
// Block 0xf, offset 0x3c0
0x3c0: 0x000d, 0x3c1: 0x000d, 0x3c2: 0x000d, 0x3c3: 0x000d, 0x3c4: 0x000d, 0x3c5: 0x000d,
0x3c6: 0x000d, 0x3c7: 0x000d, 0x3c8: 0x000d, 0x3c9: 0x000d, 0x3ca: 0x000d, 0x3cb: 0x000c,
0x3cc: 0x000c, 0x3cd: 0x000c, 0x3ce: 0x000c, 0x3cf: 0x000c, 0x3d0: 0x000c, 0x3d1: 0x000c,
0x3d2: 0x000c, 0x3d3: 0x000c, 0x3d4: 0x000c, 0x3d5: 0x000c, 0x3d6: 0x000c, 0x3d7: 0x000c,
0x3d8: 0x000c, 0x3d9: 0x000c, 0x3da: 0x000c, 0x3db: 0x000c, 0x3dc: 0x000c, 0x3dd: 0x000c,
0x3de: 0x000c, 0x3df: 0x000c, 0x3e0: 0x0005, 0x3e1: 0x0005, 0x3e2: 0x0005, 0x3e3: 0x0005,
0x3e4: 0x0005, 0x3e5: 0x0005, 0x3e6: 0x0005, 0x3e7: 0x0005, 0x3e8: 0x0005, 0x3e9: 0x0005,
0x3ea: 0x0004, 0x3eb: 0x0005, 0x3ec: 0x0005, 0x3ed: 0x000d, 0x3ee: 0x000d, 0x3ef: 0x000d,
0x3f0: 0x000c, 0x3f1: 0x000d, 0x3f2: 0x000d, 0x3f3: 0x000d, 0x3f4: 0x000d, 0x3f5: 0x000d,
0x3f6: 0x000d, 0x3f7: 0x000d, 0x3f8: 0x000d, 0x3f9: 0x000d, 0x3fa: 0x000d, 0x3fb: 0x000d,
0x3fc: 0x000d, 0x3fd: 0x000d, 0x3fe: 0x000d, 0x3ff: 0x000d,
// Block 0x10, offset 0x400
0x400: 0x000d, 0x401: 0x000d, 0x402: 0x000d, 0x403: 0x000d, 0x404: 0x000d, 0x405: 0x000d,
0x406: 0x000d, 0x407: 0x000d, 0x408: 0x000d, 0x409: 0x000d, 0x40a: 0x000d, 0x40b: 0x000d,
0x40c: 0x000d, 0x40d: 0x000d, 0x40e: 0x000d, 0x40f: 0x000d, 0x410: 0x000d, 0x411: 0x000d,
0x412: 0x000d, 0x413: 0x000d, 0x414: 0x000d, 0x415: 0x000d, 0x416: 0x000d, 0x417: 0x000d,
0x418: 0x000d, 0x419: 0x000d, 0x41a: 0x000d, 0x41b: 0x000d, 0x41c: 0x000d, 0x41d: 0x000d,
0x41e: 0x000d, 0x41f: 0x000d, 0x420: 0x000d, 0x421: 0x000d, 0x422: 0x000d, 0x423: 0x000d,
0x424: 0x000d, 0x425: 0x000d, 0x426: 0x000d, 0x427: 0x000d, 0x428: 0x000d, 0x429: 0x000d,
0x42a: 0x000d, 0x42b: 0x000d, 0x42c: 0x000d, 0x42d: 0x000d, 0x42e: 0x000d, 0x42f: 0x000d,
0x430: 0x000d, 0x431: 0x000d, 0x432: 0x000d, 0x433: 0x000d, 0x434: 0x000d, 0x435: 0x000d,
0x436: 0x000d, 0x437: 0x000d, 0x438: 0x000d, 0x439: 0x000d, 0x43a: 0x000d, 0x43b: 0x000d,
0x43c: 0x000d, 0x43d: 0x000d, 0x43e: 0x000d, 0x43f: 0x000d,
// Block 0x11, offset 0x440
0x440: 0x000d, 0x441: 0x000d, 0x442: 0x000d, 0x443: 0x000d, 0x444: 0x000d, 0x445: 0x000d,
0x446: 0x000d, 0x447: 0x000d, 0x448: 0x000d, 0x449: 0x000d, 0x44a: 0x000d, 0x44b: 0x000d,
0x44c: 0x000d, 0x44d: 0x000d, 0x44e: 0x000d, 0x44f: 0x000d, 0x450: 0x000d, 0x451: 0x000d,
0x452: 0x000d, 0x453: 0x000d, 0x454: 0x000d, 0x455: 0x000d, 0x456: 0x000c, 0x457: 0x000c,
0x458: 0x000c, 0x459: 0x000c, 0x45a: 0x000c, 0x45b: 0x000c, 0x45c: 0x000c, 0x45d: 0x0005,
0x45e: 0x000a, 0x45f: 0x000c, 0x460: 0x000c, 0x461: 0x000c, 0x462: 0x000c, 0x463: 0x000c,
0x464: 0x000c, 0x465: 0x000d, 0x466: 0x000d, 0x467: 0x000c, 0x468: 0x000c, 0x469: 0x000a,
0x46a: 0x000c, 0x46b: 0x000c, 0x46c: 0x000c, 0x46d: 0x000c, 0x46e: 0x000d, 0x46f: 0x000d,
0x470: 0x0002, 0x471: 0x0002, 0x472: 0x0002, 0x473: 0x0002, 0x474: 0x0002, 0x475: 0x0002,
0x476: 0x0002, 0x477: 0x0002, 0x478: 0x0002, 0x479: 0x0002, 0x47a: 0x000d, 0x47b: 0x000d,
0x47c: 0x000d, 0x47d: 0x000d, 0x47e: 0x000d, 0x47f: 0x000d,
// Block 0x12, offset 0x480
0x480: 0x000d, 0x481: 0x000d, 0x482: 0x000d, 0x483: 0x000d, 0x484: 0x000d, 0x485: 0x000d,
0x486: 0x000d, 0x487: 0x000d, 0x488: 0x000d, 0x489: 0x000d, 0x48a: 0x000d, 0x48b: 0x000d,
0x48c: 0x000d, 0x48d: 0x000d, 0x48e: 0x000d, 0x48f: 0x000d, 0x490: 0x000d, 0x491: 0x000c,
0x492: 0x000d, 0x493: 0x000d, 0x494: 0x000d, 0x495: 0x000d, 0x496: 0x000d, 0x497: 0x000d,
0x498: 0x000d, 0x499: 0x000d, 0x49a: 0x000d, 0x49b: 0x000d, 0x49c: 0x000d, 0x49d: 0x000d,
0x49e: 0x000d, 0x49f: 0x000d, 0x4a0: 0x000d, 0x4a1: 0x000d, 0x4a2: 0x000d, 0x4a3: 0x000d,
0x4a4: 0x000d, 0x4a5: 0x000d, 0x4a6: 0x000d, 0x4a7: 0x000d, 0x4a8: 0x000d, 0x4a9: 0x000d,
0x4aa: 0x000d, 0x4ab: 0x000d, 0x4ac: 0x000d, 0x4ad: 0x000d, 0x4ae: 0x000d, 0x4af: 0x000d,
0x4b0: 0x000c, 0x4b1: 0x000c, 0x4b2: 0x000c, 0x4b3: 0x000c, 0x4b4: 0x000c, 0x4b5: 0x000c,
0x4b6: 0x000c, 0x4b7: 0x000c, 0x4b8: 0x000c, 0x4b9: 0x000c, 0x4ba: 0x000c, 0x4bb: 0x000c,
0x4bc: 0x000c, 0x4bd: 0x000c, 0x4be: 0x000c, 0x4bf: 0x000c,
// Block 0x13, offset 0x4c0
0x4c0: 0x000c, 0x4c1: 0x000c, 0x4c2: 0x000c, 0x4c3: 0x000c, 0x4c4: 0x000c, 0x4c5: 0x000c,
0x4c6: 0x000c, 0x4c7: 0x000c, 0x4c8: 0x000c, 0x4c9: 0x000c, 0x4ca: 0x000c, 0x4cb: 0x000d,
0x4cc: 0x000d, 0x4cd: 0x000d, 0x4ce: 0x000d, 0x4cf: 0x000d, 0x4d0: 0x000d, 0x4d1: 0x000d,
0x4d2: 0x000d, 0x4d3: 0x000d, 0x4d4: 0x000d, 0x4d5: 0x000d, 0x4d6: 0x000d, 0x4d7: 0x000d,
0x4d8: 0x000d, 0x4d9: 0x000d, 0x4da: 0x000d, 0x4db: 0x000d, 0x4dc: 0x000d, 0x4dd: 0x000d,
0x4de: 0x000d, 0x4df: 0x000d, 0x4e0: 0x000d, 0x4e1: 0x000d, 0x4e2: 0x000d, 0x4e3: 0x000d,
0x4e4: 0x000d, 0x4e5: 0x000d, 0x4e6: 0x000d, 0x4e7: 0x000d, 0x4e8: 0x000d, 0x4e9: 0x000d,
0x4ea: 0x000d, 0x4eb: 0x000d, 0x4ec: 0x000d, 0x4ed: 0x000d, 0x4ee: 0x000d, 0x4ef: 0x000d,
0x4f0: 0x000d, 0x4f1: 0x000d, 0x4f2: 0x000d, 0x4f3: 0x000d, 0x4f4: 0x000d, 0x4f5: 0x000d,
0x4f6: 0x000d, 0x4f7: 0x000d, 0x4f8: 0x000d, 0x4f9: 0x000d, 0x4fa: 0x000d, 0x4fb: 0x000d,
0x4fc: 0x000d, 0x4fd: 0x000d, 0x4fe: 0x000d, 0x4ff: 0x000d,
// Block 0x14, offset 0x500
0x500: 0x000d, 0x501: 0x000d, 0x502: 0x000d, 0x503: 0x000d, 0x504: 0x000d, 0x505: 0x000d,
0x506: 0x000d, 0x507: 0x000d, 0x508: 0x000d, 0x509: 0x000d, 0x50a: 0x000d, 0x50b: 0x000d,
0x50c: 0x000d, 0x50d: 0x000d, 0x50e: 0x000d, 0x50f: 0x000d, 0x510: 0x000d, 0x511: 0x000d,
0x512: 0x000d, 0x513: 0x000d, 0x514: 0x000d, 0x515: 0x000d, 0x516: 0x000d, 0x517: 0x000d,
0x518: 0x000d, 0x519: 0x000d, 0x51a: 0x000d, 0x51b: 0x000d, 0x51c: 0x000d, 0x51d: 0x000d,
0x51e: 0x000d, 0x51f: 0x000d, 0x520: 0x000d, 0x521: 0x000d, 0x522: 0x000d, 0x523: 0x000d,
0x524: 0x000d, 0x525: 0x000d, 0x526: 0x000c, 0x527: 0x000c, 0x528: 0x000c, 0x529: 0x000c,
0x52a: 0x000c, 0x52b: 0x000c, 0x52c: 0x000c, 0x52d: 0x000c, 0x52e: 0x000c, 0x52f: 0x000c,
0x530: 0x000c, 0x531: 0x000d, 0x532: 0x000d, 0x533: 0x000d, 0x534: 0x000d, 0x535: 0x000d,
0x536: 0x000d, 0x537: 0x000d, 0x538: 0x000d, 0x539: 0x000d, 0x53a: 0x000d, 0x53b: 0x000d,
0x53c: 0x000d, 0x53d: 0x000d, 0x53e: 0x000d, 0x53f: 0x000d,
// Block 0x15, offset 0x540
0x540: 0x0001, 0x541: 0x0001, 0x542: 0x0001, 0x543: 0x0001, 0x544: 0x0001, 0x545: 0x0001,
0x546: 0x0001, 0x547: 0x0001, 0x548: 0x0001, 0x549: 0x0001, 0x54a: 0x0001, 0x54b: 0x0001,
0x54c: 0x0001, 0x54d: 0x0001, 0x54e: 0x0001, 0x54f: 0x0001, 0x550: 0x0001, 0x551: 0x0001,
0x552: 0x0001, 0x553: 0x0001, 0x554: 0x0001, 0x555: 0x0001, 0x556: 0x0001, 0x557: 0x0001,
0x558: 0x0001, 0x559: 0x0001, 0x55a: 0x0001, 0x55b: 0x0001, 0x55c: 0x0001, 0x55d: 0x0001,
0x55e: 0x0001, 0x55f: 0x0001, 0x560: 0x0001, 0x561: 0x0001, 0x562: 0x0001, 0x563: 0x0001,
0x564: 0x0001, 0x565: 0x0001, 0x566: 0x0001, 0x567: 0x0001, 0x568: 0x0001, 0x569: 0x0001,
0x56a: 0x0001, 0x56b: 0x000c, 0x56c: 0x000c, 0x56d: 0x000c, 0x56e: 0x000c, 0x56f: 0x000c,
0x570: 0x000c, 0x571: 0x000c, 0x572: 0x000c, 0x573: 0x000c, 0x574: 0x0001, 0x575: 0x0001,
0x576: 0x000a, 0x577: 0x000a, 0x578: 0x000a, 0x579: 0x000a, 0x57a: 0x0001, 0x57b: 0x0001,
0x57c: 0x0001, 0x57d: 0x0001, 0x57e: 0x0001, 0x57f: 0x0001,
// Block 0x16, offset 0x580
0x580: 0x0001, 0x581: 0x0001, 0x582: 0x0001, 0x583: 0x0001, 0x584: 0x0001, 0x585: 0x0001,
0x586: 0x0001, 0x587: 0x0001, 0x588: 0x0001, 0x589: 0x0001, 0x58a: 0x0001, 0x58b: 0x0001,
0x58c: 0x0001, 0x58d: 0x0001, 0x58e: 0x0001, 0x58f: 0x0001, 0x590: 0x0001, 0x591: 0x0001,
0x592: 0x0001, 0x593: 0x0001, 0x594: 0x0001, 0x595: 0x0001, 0x596: 0x000c, 0x597: 0x000c,
0x598: 0x000c, 0x599: 0x000c, 0x59a: 0x0001, 0x59b: 0x000c, 0x59c: 0x000c, 0x59d: 0x000c,
0x59e: 0x000c, 0x59f: 0x000c, 0x5a0: 0x000c, 0x5a1: 0x000c, 0x5a2: 0x000c, 0x5a3: 0x000c,
0x5a4: 0x0001, 0x5a5: 0x000c, 0x5a6: 0x000c, 0x5a7: 0x000c, 0x5a8: 0x0001, 0x5a9: 0x000c,
0x5aa: 0x000c, 0x5ab: 0x000c, 0x5ac: 0x000c, 0x5ad: 0x000c, 0x5ae: 0x0001, 0x5af: 0x0001,
0x5b0: 0x0001, 0x5b1: 0x0001, 0x5b2: 0x0001, 0x5b3: 0x0001, 0x5b4: 0x0001, 0x5b5: 0x0001,
0x5b6: 0x0001, 0x5b7: 0x0001, 0x5b8: 0x0001, 0x5b9: 0x0001, 0x5ba: 0x0001, 0x5bb: 0x0001,
0x5bc: 0x0001, 0x5bd: 0x0001, 0x5be: 0x0001, 0x5bf: 0x0001,
// Block 0x17, offset 0x5c0
0x5c0: 0x0001, 0x5c1: 0x0001, 0x5c2: 0x0001, 0x5c3: 0x0001, 0x5c4: 0x0001, 0x5c5: 0x0001,
0x5c6: 0x0001, 0x5c7: 0x0001, 0x5c8: 0x0001, 0x5c9: 0x0001, 0x5ca: 0x0001, 0x5cb: 0x0001,
0x5cc: 0x0001, 0x5cd: 0x0001, 0x5ce: 0x0001, 0x5cf: 0x0001, 0x5d0: 0x0001, 0x5d1: 0x0001,
0x5d2: 0x0001, 0x5d3: 0x0001, 0x5d4: 0x0001, 0x5d5: 0x0001, 0x5d6: 0x0001, 0x5d7: 0x0001,
0x5d8: 0x0001, 0x5d9: 0x000c, 0x5da: 0x000c, 0x5db: 0x000c, 0x5dc: 0x0001, 0x5dd: 0x0001,
0x5de: 0x0001, 0x5df: 0x0001, 0x5e0: 0x0001, 0x5e1: 0x0001, 0x5e2: 0x0001, 0x5e3: 0x0001,
0x5e4: 0x0001, 0x5e5: 0x0001, 0x5e6: 0x0001, 0x5e7: 0x0001, 0x5e8: 0x0001, 0x5e9: 0x0001,
0x5ea: 0x0001, 0x5eb: 0x0001, 0x5ec: 0x0001, 0x5ed: 0x0001, 0x5ee: 0x0001, 0x5ef: 0x0001,
0x5f0: 0x0001, 0x5f1: 0x0001, 0x5f2: 0x0001, 0x5f3: 0x0001, 0x5f4: 0x0001, 0x5f5: 0x0001,
0x5f6: 0x0001, 0x5f7: 0x0001, 0x5f8: 0x0001, 0x5f9: 0x0001, 0x5fa: 0x0001, 0x5fb: 0x0001,
0x5fc: 0x0001, 0x5fd: 0x0001, 0x5fe: 0x0001, 0x5ff: 0x0001,
// Block 0x18, offset 0x600
0x600: 0x0001, 0x601: 0x0001, 0x602: 0x0001, 0x603: 0x0001, 0x604: 0x0001, 0x605: 0x0001,
0x606: 0x0001, 0x607: 0x0001, 0x608: 0x0001, 0x609: 0x0001, 0x60a: 0x0001, 0x60b: 0x0001,
0x60c: 0x0001, 0x60d: 0x0001, 0x60e: 0x0001, 0x60f: 0x0001, 0x610: 0x0001, 0x611: 0x0001,
0x612: 0x0001, 0x613: 0x0001, 0x614: 0x0001, 0x615: 0x0001, 0x616: 0x0001, 0x617: 0x0001,
0x618: 0x0001, 0x619: 0x0001, 0x61a: 0x0001, 0x61b: 0x0001, 0x61c: 0x0001, 0x61d: 0x0001,
0x61e: 0x0001, 0x61f: 0x0001, 0x620: 0x000d, 0x621: 0x000d, 0x622: 0x000d, 0x623: 0x000d,
0x624: 0x000d, 0x625: 0x000d, 0x626: 0x000d, 0x627: 0x000d, 0x628: 0x000d, 0x629: 0x000d,
0x62a: 0x000d, 0x62b: 0x000d, 0x62c: 0x000d, 0x62d: 0x000d, 0x62e: 0x000d, 0x62f: 0x000d,
0x630: 0x000d, 0x631: 0x000d, 0x632: 0x000d, 0x633: 0x000d, 0x634: 0x000d, 0x635: 0x000d,
0x636: 0x000d, 0x637: 0x000d, 0x638: 0x000d, 0x639: 0x000d, 0x63a: 0x000d, 0x63b: 0x000d,
0x63c: 0x000d, 0x63d: 0x000d, 0x63e: 0x000d, 0x63f: 0x000d,
// Block 0x19, offset 0x640
0x640: 0x000d, 0x641: 0x000d, 0x642: 0x000d, 0x643: 0x000d, 0x644: 0x000d, 0x645: 0x000d,
0x646: 0x000d, 0x647: 0x000d, 0x648: 0x000d, 0x649: 0x000d, 0x64a: 0x000d, 0x64b: 0x000d,
0x64c: 0x000d, 0x64d: 0x000d, 0x64e: 0x000d, 0x64f: 0x000d, 0x650: 0x000d, 0x651: 0x000d,
0x652: 0x000d, 0x653: 0x000d, 0x654: 0x000c, 0x655: 0x000c, 0x656: 0x000c, 0x657: 0x000c,
0x658: 0x000c, 0x659: 0x000c, 0x65a: 0x000c, 0x65b: 0x000c, 0x65c: 0x000c, 0x65d: 0x000c,
0x65e: 0x000c, 0x65f: 0x000c, 0x660: 0x000c, 0x661: 0x000c, 0x662: 0x0005, 0x663: 0x000c,
0x664: 0x000c, 0x665: 0x000c, 0x666: 0x000c, 0x667: 0x000c, 0x668: 0x000c, 0x669: 0x000c,
0x66a: 0x000c, 0x66b: 0x000c, 0x66c: 0x000c, 0x66d: 0x000c, 0x66e: 0x000c, 0x66f: 0x000c,
0x670: 0x000c, 0x671: 0x000c, 0x672: 0x000c, 0x673: 0x000c, 0x674: 0x000c, 0x675: 0x000c,
0x676: 0x000c, 0x677: 0x000c, 0x678: 0x000c, 0x679: 0x000c, 0x67a: 0x000c, 0x67b: 0x000c,
0x67c: 0x000c, 0x67d: 0x000c, 0x67e: 0x000c, 0x67f: 0x000c,
// Block 0x1a, offset 0x680
0x680: 0x000c, 0x681: 0x000c, 0x682: 0x000c,
0x6ba: 0x000c,
0x6bc: 0x000c,
// Block 0x1b, offset 0x6c0
0x6c1: 0x000c, 0x6c2: 0x000c, 0x6c3: 0x000c, 0x6c4: 0x000c, 0x6c5: 0x000c,
0x6c6: 0x000c, 0x6c7: 0x000c, 0x6c8: 0x000c,
0x6cd: 0x000c, 0x6d1: 0x000c,
0x6d2: 0x000c, 0x6d3: 0x000c, 0x6d4: 0x000c, 0x6d5: 0x000c, 0x6d6: 0x000c, 0x6d7: 0x000c,
0x6e2: 0x000c, 0x6e3: 0x000c,
// Block 0x1c, offset 0x700
0x701: 0x000c,
0x73c: 0x000c,
// Block 0x1d, offset 0x740
0x741: 0x000c, 0x742: 0x000c, 0x743: 0x000c, 0x744: 0x000c,
0x74d: 0x000c,
0x762: 0x000c, 0x763: 0x000c,
0x772: 0x0004, 0x773: 0x0004,
0x77b: 0x0004,
// Block 0x1e, offset 0x780
0x781: 0x000c, 0x782: 0x000c,
0x7bc: 0x000c,
// Block 0x1f, offset 0x7c0
0x7c1: 0x000c, 0x7c2: 0x000c,
0x7c7: 0x000c, 0x7c8: 0x000c, 0x7cb: 0x000c,
0x7cc: 0x000c, 0x7cd: 0x000c, 0x7d1: 0x000c,
0x7f0: 0x000c, 0x7f1: 0x000c, 0x7f5: 0x000c,
// Block 0x20, offset 0x800
0x801: 0x000c, 0x802: 0x000c, 0x803: 0x000c, 0x804: 0x000c, 0x805: 0x000c,
0x807: 0x000c, 0x808: 0x000c,
0x80d: 0x000c,
0x822: 0x000c, 0x823: 0x000c,
0x831: 0x0004,
// Block 0x21, offset 0x840
0x841: 0x000c,
0x87c: 0x000c, 0x87f: 0x000c,
// Block 0x22, offset 0x880
0x881: 0x000c, 0x882: 0x000c, 0x883: 0x000c, 0x884: 0x000c,
0x88d: 0x000c,
0x896: 0x000c,
0x8a2: 0x000c, 0x8a3: 0x000c,
// Block 0x23, offset 0x8c0
0x8c2: 0x000c,
// Block 0x24, offset 0x900
0x900: 0x000c,
0x90d: 0x000c,
0x933: 0x000a, 0x934: 0x000a, 0x935: 0x000a,
0x936: 0x000a, 0x937: 0x000a, 0x938: 0x000a, 0x939: 0x0004, 0x93a: 0x000a,
// Block 0x25, offset 0x940
0x940: 0x000c,
0x97e: 0x000c, 0x97f: 0x000c,
// Block 0x26, offset 0x980
0x980: 0x000c,
0x986: 0x000c, 0x987: 0x000c, 0x988: 0x000c, 0x98a: 0x000c, 0x98b: 0x000c,
0x98c: 0x000c, 0x98d: 0x000c,
0x995: 0x000c, 0x996: 0x000c,
0x9a2: 0x000c, 0x9a3: 0x000c,
0x9b8: 0x000a, 0x9b9: 0x000a, 0x9ba: 0x000a, 0x9bb: 0x000a,
0x9bc: 0x000a, 0x9bd: 0x000a, 0x9be: 0x000a,
// Block 0x27, offset 0x9c0
0x9cc: 0x000c, 0x9cd: 0x000c,
0x9e2: 0x000c, 0x9e3: 0x000c,
// Block 0x28, offset 0xa00
0xa01: 0x000c,
// Block 0x29, offset 0xa40
0xa41: 0x000c, 0xa42: 0x000c, 0xa43: 0x000c, 0xa44: 0x000c,
0xa4d: 0x000c,
0xa62: 0x000c, 0xa63: 0x000c,
// Block 0x2a, offset 0xa80
0xa8a: 0x000c,
0xa92: 0x000c, 0xa93: 0x000c, 0xa94: 0x000c, 0xa96: 0x000c,
// Block 0x2b, offset 0xac0
0xaf1: 0x000c, 0xaf4: 0x000c, 0xaf5: 0x000c,
0xaf6: 0x000c, 0xaf7: 0x000c, 0xaf8: 0x000c, 0xaf9: 0x000c, 0xafa: 0x000c,
0xaff: 0x0004,
// Block 0x2c, offset 0xb00
0xb07: 0x000c, 0xb08: 0x000c, 0xb09: 0x000c, 0xb0a: 0x000c, 0xb0b: 0x000c,
0xb0c: 0x000c, 0xb0d: 0x000c, 0xb0e: 0x000c,
// Block 0x2d, offset 0xb40
0xb71: 0x000c, 0xb74: 0x000c, 0xb75: 0x000c,
0xb76: 0x000c, 0xb77: 0x000c, 0xb78: 0x000c, 0xb79: 0x000c, 0xb7b: 0x000c,
0xb7c: 0x000c,
// Block 0x2e, offset 0xb80
0xb88: 0x000c, 0xb89: 0x000c, 0xb8a: 0x000c, 0xb8b: 0x000c,
0xb8c: 0x000c, 0xb8d: 0x000c,
// Block 0x2f, offset 0xbc0
0xbd8: 0x000c, 0xbd9: 0x000c,
0xbf5: 0x000c,
0xbf7: 0x000c, 0xbf9: 0x000c, 0xbfa: 0x003a, 0xbfb: 0x002a,
0xbfc: 0x003a, 0xbfd: 0x002a,
// Block 0x30, offset 0xc00
0xc31: 0x000c, 0xc32: 0x000c, 0xc33: 0x000c, 0xc34: 0x000c, 0xc35: 0x000c,
0xc36: 0x000c, 0xc37: 0x000c, 0xc38: 0x000c, 0xc39: 0x000c, 0xc3a: 0x000c, 0xc3b: 0x000c,
0xc3c: 0x000c, 0xc3d: 0x000c, 0xc3e: 0x000c,
// Block 0x31, offset 0xc40
0xc40: 0x000c, 0xc41: 0x000c, 0xc42: 0x000c, 0xc43: 0x000c, 0xc44: 0x000c,
0xc46: 0x000c, 0xc47: 0x000c,
0xc4d: 0x000c, 0xc4e: 0x000c, 0xc4f: 0x000c, 0xc50: 0x000c, 0xc51: 0x000c,
0xc52: 0x000c, 0xc53: 0x000c, 0xc54: 0x000c, 0xc55: 0x000c, 0xc56: 0x000c, 0xc57: 0x000c,
0xc59: 0x000c, 0xc5a: 0x000c, 0xc5b: 0x000c, 0xc5c: 0x000c, 0xc5d: 0x000c,
0xc5e: 0x000c, 0xc5f: 0x000c, 0xc60: 0x000c, 0xc61: 0x000c, 0xc62: 0x000c, 0xc63: 0x000c,
0xc64: 0x000c, 0xc65: 0x000c, 0xc66: 0x000c, 0xc67: 0x000c, 0xc68: 0x000c, 0xc69: 0x000c,
0xc6a: 0x000c, 0xc6b: 0x000c, 0xc6c: 0x000c, 0xc6d: 0x000c, 0xc6e: 0x000c, 0xc6f: 0x000c,
0xc70: 0x000c, 0xc71: 0x000c, 0xc72: 0x000c, 0xc73: 0x000c, 0xc74: 0x000c, 0xc75: 0x000c,
0xc76: 0x000c, 0xc77: 0x000c, 0xc78: 0x000c, 0xc79: 0x000c, 0xc7a: 0x000c, 0xc7b: 0x000c,
0xc7c: 0x000c,
// Block 0x32, offset 0xc80
0xc86: 0x000c,
// Block 0x33, offset 0xcc0
0xced: 0x000c, 0xcee: 0x000c, 0xcef: 0x000c,
0xcf0: 0x000c, 0xcf2: 0x000c, 0xcf3: 0x000c, 0xcf4: 0x000c, 0xcf5: 0x000c,
0xcf6: 0x000c, 0xcf7: 0x000c, 0xcf9: 0x000c, 0xcfa: 0x000c,
0xcfd: 0x000c, 0xcfe: 0x000c,
// Block 0x34, offset 0xd00
0xd18: 0x000c, 0xd19: 0x000c,
0xd1e: 0x000c, 0xd1f: 0x000c, 0xd20: 0x000c,
0xd31: 0x000c, 0xd32: 0x000c, 0xd33: 0x000c, 0xd34: 0x000c,
// Block 0x35, offset 0xd40
0xd42: 0x000c, 0xd45: 0x000c,
0xd46: 0x000c,
0xd4d: 0x000c,
0xd5d: 0x000c,
// Block 0x36, offset 0xd80
0xd9d: 0x000c,
0xd9e: 0x000c, 0xd9f: 0x000c,
// Block 0x37, offset 0xdc0
0xdd0: 0x000a, 0xdd1: 0x000a,
0xdd2: 0x000a, 0xdd3: 0x000a, 0xdd4: 0x000a, 0xdd5: 0x000a, 0xdd6: 0x000a, 0xdd7: 0x000a,
0xdd8: 0x000a, 0xdd9: 0x000a,
// Block 0x38, offset 0xe00
0xe00: 0x000a,
// Block 0x39, offset 0xe40
0xe40: 0x0009,
0xe5b: 0x007a, 0xe5c: 0x006a,
// Block 0x3a, offset 0xe80
0xe92: 0x000c, 0xe93: 0x000c, 0xe94: 0x000c,
0xeb2: 0x000c, 0xeb3: 0x000c, 0xeb4: 0x000c,
// Block 0x3b, offset 0xec0
0xed2: 0x000c, 0xed3: 0x000c,
0xef2: 0x000c, 0xef3: 0x000c,
// Block 0x3c, offset 0xf00
0xf34: 0x000c, 0xf35: 0x000c,
0xf37: 0x000c, 0xf38: 0x000c, 0xf39: 0x000c, 0xf3a: 0x000c, 0xf3b: 0x000c,
0xf3c: 0x000c, 0xf3d: 0x000c,
// Block 0x3d, offset 0xf40
0xf46: 0x000c, 0xf49: 0x000c, 0xf4a: 0x000c, 0xf4b: 0x000c,
0xf4c: 0x000c, 0xf4d: 0x000c, 0xf4e: 0x000c, 0xf4f: 0x000c, 0xf50: 0x000c, 0xf51: 0x000c,
0xf52: 0x000c, 0xf53: 0x000c,
0xf5b: 0x0004, 0xf5d: 0x000c,
0xf70: 0x000a, 0xf71: 0x000a, 0xf72: 0x000a, 0xf73: 0x000a, 0xf74: 0x000a, 0xf75: 0x000a,
0xf76: 0x000a, 0xf77: 0x000a, 0xf78: 0x000a, 0xf79: 0x000a,
// Block 0x3e, offset 0xf80
0xf80: 0x000a, 0xf81: 0x000a, 0xf82: 0x000a, 0xf83: 0x000a, 0xf84: 0x000a, 0xf85: 0x000a,
0xf86: 0x000a, 0xf87: 0x000a, 0xf88: 0x000a, 0xf89: 0x000a, 0xf8a: 0x000a, 0xf8b: 0x000c,
0xf8c: 0x000c, 0xf8d: 0x000c, 0xf8e: 0x000b,
// Block 0x3f, offset 0xfc0
0xfc5: 0x000c,
0xfc6: 0x000c,
0xfe9: 0x000c,
// Block 0x40, offset 0x1000
0x1020: 0x000c, 0x1021: 0x000c, 0x1022: 0x000c,
0x1027: 0x000c, 0x1028: 0x000c,
0x1032: 0x000c,
0x1039: 0x000c, 0x103a: 0x000c, 0x103b: 0x000c,
// Block 0x41, offset 0x1040
0x1040: 0x000a, 0x1044: 0x000a, 0x1045: 0x000a,
// Block 0x42, offset 0x1080
0x109e: 0x000a, 0x109f: 0x000a, 0x10a0: 0x000a, 0x10a1: 0x000a, 0x10a2: 0x000a, 0x10a3: 0x000a,
0x10a4: 0x000a, 0x10a5: 0x000a, 0x10a6: 0x000a, 0x10a7: 0x000a, 0x10a8: 0x000a, 0x10a9: 0x000a,
0x10aa: 0x000a, 0x10ab: 0x000a, 0x10ac: 0x000a, 0x10ad: 0x000a, 0x10ae: 0x000a, 0x10af: 0x000a,
0x10b0: 0x000a, 0x10b1: 0x000a, 0x10b2: 0x000a, 0x10b3: 0x000a, 0x10b4: 0x000a, 0x10b5: 0x000a,
0x10b6: 0x000a, 0x10b7: 0x000a, 0x10b8: 0x000a, 0x10b9: 0x000a, 0x10ba: 0x000a, 0x10bb: 0x000a,
0x10bc: 0x000a, 0x10bd: 0x000a, 0x10be: 0x000a, 0x10bf: 0x000a,
// Block 0x43, offset 0x10c0
0x10d7: 0x000c,
0x10d8: 0x000c, 0x10db: 0x000c,
// Block 0x44, offset 0x1100
0x1116: 0x000c,
0x1118: 0x000c, 0x1119: 0x000c, 0x111a: 0x000c, 0x111b: 0x000c, 0x111c: 0x000c, 0x111d: 0x000c,
0x111e: 0x000c, 0x1120: 0x000c, 0x1122: 0x000c,
0x1125: 0x000c, 0x1126: 0x000c, 0x1127: 0x000c, 0x1128: 0x000c, 0x1129: 0x000c,
0x112a: 0x000c, 0x112b: 0x000c, 0x112c: 0x000c,
0x1133: 0x000c, 0x1134: 0x000c, 0x1135: 0x000c,
0x1136: 0x000c, 0x1137: 0x000c, 0x1138: 0x000c, 0x1139: 0x000c, 0x113a: 0x000c, 0x113b: 0x000c,
0x113c: 0x000c, 0x113f: 0x000c,
// Block 0x45, offset 0x1140
0x1170: 0x000c, 0x1171: 0x000c, 0x1172: 0x000c, 0x1173: 0x000c, 0x1174: 0x000c, 0x1175: 0x000c,
0x1176: 0x000c, 0x1177: 0x000c, 0x1178: 0x000c, 0x1179: 0x000c, 0x117a: 0x000c, 0x117b: 0x000c,
0x117c: 0x000c, 0x117d: 0x000c, 0x117e: 0x000c,
// Block 0x46, offset 0x1180
0x1180: 0x000c, 0x1181: 0x000c, 0x1182: 0x000c, 0x1183: 0x000c,
0x11b4: 0x000c,
0x11b6: 0x000c, 0x11b7: 0x000c, 0x11b8: 0x000c, 0x11b9: 0x000c, 0x11ba: 0x000c,
0x11bc: 0x000c,
// Block 0x47, offset 0x11c0
0x11c2: 0x000c,
0x11eb: 0x000c, 0x11ec: 0x000c, 0x11ed: 0x000c, 0x11ee: 0x000c, 0x11ef: 0x000c,
0x11f0: 0x000c, 0x11f1: 0x000c, 0x11f2: 0x000c, 0x11f3: 0x000c,
// Block 0x48, offset 0x1200
0x1200: 0x000c, 0x1201: 0x000c,
0x1222: 0x000c, 0x1223: 0x000c,
0x1224: 0x000c, 0x1225: 0x000c, 0x1228: 0x000c, 0x1229: 0x000c,
0x122b: 0x000c, 0x122c: 0x000c, 0x122d: 0x000c,
// Block 0x49, offset 0x1240
0x1266: 0x000c, 0x1268: 0x000c, 0x1269: 0x000c,
0x126d: 0x000c, 0x126f: 0x000c,
0x1270: 0x000c, 0x1271: 0x000c,
// Block 0x4a, offset 0x1280
0x12ac: 0x000c, 0x12ad: 0x000c, 0x12ae: 0x000c, 0x12af: 0x000c,
0x12b0: 0x000c, 0x12b1: 0x000c, 0x12b2: 0x000c, 0x12b3: 0x000c,
0x12b6: 0x000c, 0x12b7: 0x000c,
// Block 0x4b, offset 0x12c0
0x12d0: 0x000c, 0x12d1: 0x000c,
0x12d2: 0x000c, 0x12d4: 0x000c, 0x12d5: 0x000c, 0x12d6: 0x000c, 0x12d7: 0x000c,
0x12d8: 0x000c, 0x12d9: 0x000c, 0x12da: 0x000c, 0x12db: 0x000c, 0x12dc: 0x000c, 0x12dd: 0x000c,
0x12de: 0x000c, 0x12df: 0x000c, 0x12e0: 0x000c, 0x12e2: 0x000c, 0x12e3: 0x000c,
0x12e4: 0x000c, 0x12e5: 0x000c, 0x12e6: 0x000c, 0x12e7: 0x000c, 0x12e8: 0x000c,
0x12ed: 0x000c,
0x12f4: 0x000c,
0x12f8: 0x000c, 0x12f9: 0x000c,
// Block 0x4c, offset 0x1300
0x1300: 0x000c, 0x1301: 0x000c, 0x1302: 0x000c, 0x1303: 0x000c, 0x1304: 0x000c, 0x1305: 0x000c,
0x1306: 0x000c, 0x1307: 0x000c, 0x1308: 0x000c, 0x1309: 0x000c, 0x130a: 0x000c, 0x130b: 0x000c,
0x130c: 0x000c, 0x130d: 0x000c, 0x130e: 0x000c, 0x130f: 0x000c, 0x1310: 0x000c, 0x1311: 0x000c,
0x1312: 0x000c, 0x1313: 0x000c, 0x1314: 0x000c, 0x1315: 0x000c, 0x1316: 0x000c, 0x1317: 0x000c,
0x1318: 0x000c, 0x1319: 0x000c, 0x131a: 0x000c, 0x131b: 0x000c, 0x131c: 0x000c, 0x131d: 0x000c,
0x131e: 0x000c, 0x131f: 0x000c, 0x1320: 0x000c, 0x1321: 0x000c, 0x1322: 0x000c, 0x1323: 0x000c,
0x1324: 0x000c, 0x1325: 0x000c, 0x1326: 0x000c, 0x1327: 0x000c, 0x1328: 0x000c, 0x1329: 0x000c,
0x132a: 0x000c, 0x132b: 0x000c, 0x132c: 0x000c, 0x132d: 0x000c, 0x132e: 0x000c, 0x132f: 0x000c,
0x1330: 0x000c, 0x1331: 0x000c, 0x1332: 0x000c, 0x1333: 0x000c, 0x1334: 0x000c, 0x1335: 0x000c,
0x133b: 0x000c,
0x133c: 0x000c, 0x133d: 0x000c, 0x133e: 0x000c, 0x133f: 0x000c,
// Block 0x4d, offset 0x1340
0x137d: 0x000a, 0x137f: 0x000a,
// Block 0x4e, offset 0x1380
0x1380: 0x000a, 0x1381: 0x000a,
0x138d: 0x000a, 0x138e: 0x000a, 0x138f: 0x000a,
0x139d: 0x000a,
0x139e: 0x000a, 0x139f: 0x000a,
0x13ad: 0x000a, 0x13ae: 0x000a, 0x13af: 0x000a,
0x13bd: 0x000a, 0x13be: 0x000a,
// Block 0x4f, offset 0x13c0
0x13c0: 0x0009, 0x13c1: 0x0009, 0x13c2: 0x0009, 0x13c3: 0x0009, 0x13c4: 0x0009, 0x13c5: 0x0009,
0x13c6: 0x0009, 0x13c7: 0x0009, 0x13c8: 0x0009, 0x13c9: 0x0009, 0x13ca: 0x0009, 0x13cb: 0x000b,
0x13cc: 0x000b, 0x13cd: 0x000b, 0x13cf: 0x0001, 0x13d0: 0x000a, 0x13d1: 0x000a,
0x13d2: 0x000a, 0x13d3: 0x000a, 0x13d4: 0x000a, 0x13d5: 0x000a, 0x13d6: 0x000a, 0x13d7: 0x000a,
0x13d8: 0x000a, 0x13d9: 0x000a, 0x13da: 0x000a, 0x13db: 0x000a, 0x13dc: 0x000a, 0x13dd: 0x000a,
0x13de: 0x000a, 0x13df: 0x000a, 0x13e0: 0x000a, 0x13e1: 0x000a, 0x13e2: 0x000a, 0x13e3: 0x000a,
0x13e4: 0x000a, 0x13e5: 0x000a, 0x13e6: 0x000a, 0x13e7: 0x000a, 0x13e8: 0x0009, 0x13e9: 0x0007,
0x13ea: 0x000e, 0x13eb: 0x000e, 0x13ec: 0x000e, 0x13ed: 0x000e, 0x13ee: 0x000e, 0x13ef: 0x0006,
0x13f0: 0x0004, 0x13f1: 0x0004, 0x13f2: 0x0004, 0x13f3: 0x0004, 0x13f4: 0x0004, 0x13f5: 0x000a,
0x13f6: 0x000a, 0x13f7: 0x000a, 0x13f8: 0x000a, 0x13f9: 0x000a, 0x13fa: 0x000a, 0x13fb: 0x000a,
0x13fc: 0x000a, 0x13fd: 0x000a, 0x13fe: 0x000a, 0x13ff: 0x000a,
// Block 0x50, offset 0x1400
0x1400: 0x000a, 0x1401: 0x000a, 0x1402: 0x000a, 0x1403: 0x000a, 0x1404: 0x0006, 0x1405: 0x009a,
0x1406: 0x008a, 0x1407: 0x000a, 0x1408: 0x000a, 0x1409: 0x000a, 0x140a: 0x000a, 0x140b: 0x000a,
0x140c: 0x000a, 0x140d: 0x000a, 0x140e: 0x000a, 0x140f: 0x000a, 0x1410: 0x000a, 0x1411: 0x000a,
0x1412: 0x000a, 0x1413: 0x000a, 0x1414: 0x000a, 0x1415: 0x000a, 0x1416: 0x000a, 0x1417: 0x000a,
0x1418: 0x000a, 0x1419: 0x000a, 0x141a: 0x000a, 0x141b: 0x000a, 0x141c: 0x000a, 0x141d: 0x000a,
0x141e: 0x000a, 0x141f: 0x0009, 0x1420: 0x000b, 0x1421: 0x000b, 0x1422: 0x000b, 0x1423: 0x000b,
0x1424: 0x000b, 0x1425: 0x000b, 0x1426: 0x000e, 0x1427: 0x000e, 0x1428: 0x000e, 0x1429: 0x000e,
0x142a: 0x000b, 0x142b: 0x000b, 0x142c: 0x000b, 0x142d: 0x000b, 0x142e: 0x000b, 0x142f: 0x000b,
0x1430: 0x0002, 0x1434: 0x0002, 0x1435: 0x0002,
0x1436: 0x0002, 0x1437: 0x0002, 0x1438: 0x0002, 0x1439: 0x0002, 0x143a: 0x0003, 0x143b: 0x0003,
0x143c: 0x000a, 0x143d: 0x009a, 0x143e: 0x008a,
// Block 0x51, offset 0x1440
0x1440: 0x0002, 0x1441: 0x0002, 0x1442: 0x0002, 0x1443: 0x0002, 0x1444: 0x0002, 0x1445: 0x0002,
0x1446: 0x0002, 0x1447: 0x0002, 0x1448: 0x0002, 0x1449: 0x0002, 0x144a: 0x0003, 0x144b: 0x0003,
0x144c: 0x000a, 0x144d: 0x009a, 0x144e: 0x008a,
0x1460: 0x0004, 0x1461: 0x0004, 0x1462: 0x0004, 0x1463: 0x0004,
0x1464: 0x0004, 0x1465: 0x0004, 0x1466: 0x0004, 0x1467: 0x0004, 0x1468: 0x0004, 0x1469: 0x0004,
0x146a: 0x0004, 0x146b: 0x0004, 0x146c: 0x0004, 0x146d: 0x0004, 0x146e: 0x0004, 0x146f: 0x0004,
0x1470: 0x0004, 0x1471: 0x0004, 0x1472: 0x0004, 0x1473: 0x0004, 0x1474: 0x0004, 0x1475: 0x0004,
0x1476: 0x0004, 0x1477: 0x0004, 0x1478: 0x0004, 0x1479: 0x0004, 0x147a: 0x0004, 0x147b: 0x0004,
0x147c: 0x0004, 0x147d: 0x0004, 0x147e: 0x0004, 0x147f: 0x0004,
// Block 0x52, offset 0x1480
0x1480: 0x0004, 0x1481: 0x0004, 0x1482: 0x0004, 0x1483: 0x0004, 0x1484: 0x0004, 0x1485: 0x0004,
0x1486: 0x0004, 0x1487: 0x0004, 0x1488: 0x0004, 0x1489: 0x0004, 0x148a: 0x0004, 0x148b: 0x0004,
0x148c: 0x0004, 0x148d: 0x0004, 0x148e: 0x0004, 0x148f: 0x0004, 0x1490: 0x000c, 0x1491: 0x000c,
0x1492: 0x000c, 0x1493: 0x000c, 0x1494: 0x000c, 0x1495: 0x000c, 0x1496: 0x000c, 0x1497: 0x000c,
0x1498: 0x000c, 0x1499: 0x000c, 0x149a: 0x000c, 0x149b: 0x000c, 0x149c: 0x000c, 0x149d: 0x000c,
0x149e: 0x000c, 0x149f: 0x000c, 0x14a0: 0x000c, 0x14a1: 0x000c, 0x14a2: 0x000c, 0x14a3: 0x000c,
0x14a4: 0x000c, 0x14a5: 0x000c, 0x14a6: 0x000c, 0x14a7: 0x000c, 0x14a8: 0x000c, 0x14a9: 0x000c,
0x14aa: 0x000c, 0x14ab: 0x000c, 0x14ac: 0x000c, 0x14ad: 0x000c, 0x14ae: 0x000c, 0x14af: 0x000c,
0x14b0: 0x000c,
// Block 0x53, offset 0x14c0
0x14c0: 0x000a, 0x14c1: 0x000a, 0x14c3: 0x000a, 0x14c4: 0x000a, 0x14c5: 0x000a,
0x14c6: 0x000a, 0x14c8: 0x000a, 0x14c9: 0x000a,
0x14d4: 0x000a, 0x14d6: 0x000a, 0x14d7: 0x000a,
0x14d8: 0x000a,
0x14de: 0x000a, 0x14df: 0x000a, 0x14e0: 0x000a, 0x14e1: 0x000a, 0x14e2: 0x000a, 0x14e3: 0x000a,
0x14e5: 0x000a, 0x14e7: 0x000a, 0x14e9: 0x000a,
0x14ee: 0x0004,
0x14fa: 0x000a, 0x14fb: 0x000a,
// Block 0x54, offset 0x1500
0x1500: 0x000a, 0x1501: 0x000a, 0x1502: 0x000a, 0x1503: 0x000a, 0x1504: 0x000a,
0x150a: 0x000a, 0x150b: 0x000a,
0x150c: 0x000a, 0x150d: 0x000a, 0x1510: 0x000a, 0x1511: 0x000a,
0x1512: 0x000a, 0x1513: 0x000a, 0x1514: 0x000a, 0x1515: 0x000a, 0x1516: 0x000a, 0x1517: 0x000a,
0x1518: 0x000a, 0x1519: 0x000a, 0x151a: 0x000a, 0x151b: 0x000a, 0x151c: 0x000a, 0x151d: 0x000a,
0x151e: 0x000a, 0x151f: 0x000a,
// Block 0x55, offset 0x1540
0x1549: 0x000a, 0x154a: 0x000a, 0x154b: 0x000a,
0x1550: 0x000a, 0x1551: 0x000a,
0x1552: 0x000a, 0x1553: 0x000a, 0x1554: 0x000a, 0x1555: 0x000a, 0x1556: 0x000a, 0x1557: 0x000a,
0x1558: 0x000a, 0x1559: 0x000a, 0x155a: 0x000a, 0x155b: 0x000a, 0x155c: 0x000a, 0x155d: 0x000a,
0x155e: 0x000a, 0x155f: 0x000a, 0x1560: 0x000a, 0x1561: 0x000a, 0x1562: 0x000a, 0x1563: 0x000a,
0x1564: 0x000a, 0x1565: 0x000a, 0x1566: 0x000a, 0x1567: 0x000a, 0x1568: 0x000a, 0x1569: 0x000a,
0x156a: 0x000a, 0x156b: 0x000a, 0x156c: 0x000a, 0x156d: 0x000a, 0x156e: 0x000a, 0x156f: 0x000a,
0x1570: 0x000a, 0x1571: 0x000a, 0x1572: 0x000a, 0x1573: 0x000a, 0x1574: 0x000a, 0x1575: 0x000a,
0x1576: 0x000a, 0x1577: 0x000a, 0x1578: 0x000a, 0x1579: 0x000a, 0x157a: 0x000a, 0x157b: 0x000a,
0x157c: 0x000a, 0x157d: 0x000a, 0x157e: 0x000a, 0x157f: 0x000a,
// Block 0x56, offset 0x1580
0x1580: 0x000a, 0x1581: 0x000a, 0x1582: 0x000a, 0x1583: 0x000a, 0x1584: 0x000a, 0x1585: 0x000a,
0x1586: 0x000a, 0x1587: 0x000a, 0x1588: 0x000a, 0x1589: 0x000a, 0x158a: 0x000a, 0x158b: 0x000a,
0x158c: 0x000a, 0x158d: 0x000a, 0x158e: 0x000a, 0x158f: 0x000a, 0x1590: 0x000a, 0x1591: 0x000a,
0x1592: 0x000a, 0x1593: 0x000a, 0x1594: 0x000a, 0x1595: 0x000a, 0x1596: 0x000a, 0x1597: 0x000a,
0x1598: 0x000a, 0x1599: 0x000a, 0x159a: 0x000a, 0x159b: 0x000a, 0x159c: 0x000a, 0x159d: 0x000a,
0x159e: 0x000a, 0x159f: 0x000a, 0x15a0: 0x000a, 0x15a1: 0x000a, 0x15a2: 0x000a, 0x15a3: 0x000a,
0x15a4: 0x000a, 0x15a5: 0x000a, 0x15a6: 0x000a, 0x15a7: 0x000a, 0x15a8: 0x000a, 0x15a9: 0x000a,
0x15aa: 0x000a, 0x15ab: 0x000a, 0x15ac: 0x000a, 0x15ad: 0x000a, 0x15ae: 0x000a, 0x15af: 0x000a,
0x15b0: 0x000a, 0x15b1: 0x000a, 0x15b2: 0x000a, 0x15b3: 0x000a, 0x15b4: 0x000a, 0x15b5: 0x000a,
0x15b6: 0x000a, 0x15b7: 0x000a, 0x15b8: 0x000a, 0x15b9: 0x000a, 0x15ba: 0x000a, 0x15bb: 0x000a,
0x15bc: 0x000a, 0x15bd: 0x000a, 0x15be: 0x000a, 0x15bf: 0x000a,
// Block 0x57, offset 0x15c0
0x15c0: 0x000a, 0x15c1: 0x000a, 0x15c2: 0x000a, 0x15c3: 0x000a, 0x15c4: 0x000a, 0x15c5: 0x000a,
0x15c6: 0x000a, 0x15c7: 0x000a, 0x15c8: 0x000a, 0x15c9: 0x000a, 0x15ca: 0x000a, 0x15cb: 0x000a,
0x15cc: 0x000a, 0x15cd: 0x000a, 0x15ce: 0x000a, 0x15cf: 0x000a, 0x15d0: 0x000a, 0x15d1: 0x000a,
0x15d2: 0x0003, 0x15d3: 0x0004, 0x15d4: 0x000a, 0x15d5: 0x000a, 0x15d6: 0x000a, 0x15d7: 0x000a,
0x15d8: 0x000a, 0x15d9: 0x000a, 0x15da: 0x000a, 0x15db: 0x000a, 0x15dc: 0x000a, 0x15dd: 0x000a,
0x15de: 0x000a, 0x15df: 0x000a, 0x15e0: 0x000a, 0x15e1: 0x000a, 0x15e2: 0x000a, 0x15e3: 0x000a,
0x15e4: 0x000a, 0x15e5: 0x000a, 0x15e6: 0x000a, 0x15e7: 0x000a, 0x15e8: 0x000a, 0x15e9: 0x000a,
0x15ea: 0x000a, 0x15eb: 0x000a, 0x15ec: 0x000a, 0x15ed: 0x000a, 0x15ee: 0x000a, 0x15ef: 0x000a,
0x15f0: 0x000a, 0x15f1: 0x000a, 0x15f2: 0x000a, 0x15f3: 0x000a, 0x15f4: 0x000a, 0x15f5: 0x000a,
0x15f6: 0x000a, 0x15f7: 0x000a, 0x15f8: 0x000a, 0x15f9: 0x000a, 0x15fa: 0x000a, 0x15fb: 0x000a,
0x15fc: 0x000a, 0x15fd: 0x000a, 0x15fe: 0x000a, 0x15ff: 0x000a,
// Block 0x58, offset 0x1600
0x1600: 0x000a, 0x1601: 0x000a, 0x1602: 0x000a, 0x1603: 0x000a, 0x1604: 0x000a, 0x1605: 0x000a,
0x1606: 0x000a, 0x1607: 0x000a, 0x1608: 0x003a, 0x1609: 0x002a, 0x160a: 0x003a, 0x160b: 0x002a,
0x160c: 0x000a, 0x160d: 0x000a, 0x160e: 0x000a, 0x160f: 0x000a, 0x1610: 0x000a, 0x1611: 0x000a,
0x1612: 0x000a, 0x1613: 0x000a, 0x1614: 0x000a, 0x1615: 0x000a, 0x1616: 0x000a, 0x1617: 0x000a,
0x1618: 0x000a, 0x1619: 0x000a, 0x161a: 0x000a, 0x161b: 0x000a, 0x161c: 0x000a, 0x161d: 0x000a,
0x161e: 0x000a, 0x161f: 0x000a, 0x1620: 0x000a, 0x1621: 0x000a, 0x1622: 0x000a, 0x1623: 0x000a,
0x1624: 0x000a, 0x1625: 0x000a, 0x1626: 0x000a, 0x1627: 0x000a, 0x1628: 0x000a, 0x1629: 0x009a,
0x162a: 0x008a, 0x162b: 0x000a, 0x162c: 0x000a, 0x162d: 0x000a, 0x162e: 0x000a, 0x162f: 0x000a,
0x1630: 0x000a, 0x1631: 0x000a, 0x1632: 0x000a, 0x1633: 0x000a, 0x1634: 0x000a, 0x1635: 0x000a,
// Block 0x59, offset 0x1640
0x167b: 0x000a,
0x167c: 0x000a, 0x167d: 0x000a, 0x167e: 0x000a, 0x167f: 0x000a,
// Block 0x5a, offset 0x1680
0x1680: 0x000a, 0x1681: 0x000a, 0x1682: 0x000a, 0x1683: 0x000a, 0x1684: 0x000a, 0x1685: 0x000a,
0x1686: 0x000a, 0x1687: 0x000a, 0x1688: 0x000a, 0x1689: 0x000a, 0x168a: 0x000a, 0x168b: 0x000a,
0x168c: 0x000a, 0x168d: 0x000a, 0x168e: 0x000a, 0x168f: 0x000a, 0x1690: 0x000a, 0x1691: 0x000a,
0x1692: 0x000a, 0x1693: 0x000a, 0x1694: 0x000a, 0x1696: 0x000a, 0x1697: 0x000a,
0x1698: 0x000a, 0x1699: 0x000a, 0x169a: 0x000a, 0x169b: 0x000a, 0x169c: 0x000a, 0x169d: 0x000a,
0x169e: 0x000a, 0x169f: 0x000a, 0x16a0: 0x000a, 0x16a1: 0x000a, 0x16a2: 0x000a, 0x16a3: 0x000a,
0x16a4: 0x000a, 0x16a5: 0x000a, 0x16a6: 0x000a, 0x16a7: 0x000a, 0x16a8: 0x000a, 0x16a9: 0x000a,
0x16aa: 0x000a, 0x16ab: 0x000a, 0x16ac: 0x000a, 0x16ad: 0x000a, 0x16ae: 0x000a, 0x16af: 0x000a,
0x16b0: 0x000a, 0x16b1: 0x000a, 0x16b2: 0x000a, 0x16b3: 0x000a, 0x16b4: 0x000a, 0x16b5: 0x000a,
0x16b6: 0x000a, 0x16b7: 0x000a, 0x16b8: 0x000a, 0x16b9: 0x000a, 0x16ba: 0x000a, 0x16bb: 0x000a,
0x16bc: 0x000a, 0x16bd: 0x000a, 0x16be: 0x000a, 0x16bf: 0x000a,
// Block 0x5b, offset 0x16c0
0x16c0: 0x000a, 0x16c1: 0x000a, 0x16c2: 0x000a, 0x16c3: 0x000a, 0x16c4: 0x000a, 0x16c5: 0x000a,
0x16c6: 0x000a, 0x16c7: 0x000a, 0x16c8: 0x000a, 0x16c9: 0x000a, 0x16ca: 0x000a, 0x16cb: 0x000a,
0x16cc: 0x000a, 0x16cd: 0x000a, 0x16ce: 0x000a, 0x16cf: 0x000a, 0x16d0: 0x000a, 0x16d1: 0x000a,
0x16d2: 0x000a, 0x16d3: 0x000a, 0x16d4: 0x000a, 0x16d5: 0x000a, 0x16d6: 0x000a, 0x16d7: 0x000a,
0x16d8: 0x000a, 0x16d9: 0x000a, 0x16da: 0x000a, 0x16db: 0x000a, 0x16dc: 0x000a, 0x16dd: 0x000a,
0x16de: 0x000a, 0x16df: 0x000a, 0x16e0: 0x000a, 0x16e1: 0x000a, 0x16e2: 0x000a, 0x16e3: 0x000a,
0x16e4: 0x000a, 0x16e5: 0x000a, 0x16e6: 0x000a, 0x16e7: 0x000a, 0x16e8: 0x000a, 0x16e9: 0x000a,
0x16ea: 0x000a, 0x16eb: 0x000a, 0x16ec: 0x000a, 0x16ed: 0x000a, 0x16ee: 0x000a, 0x16ef: 0x000a,
0x16f0: 0x000a, 0x16f1: 0x000a, 0x16f2: 0x000a, 0x16f3: 0x000a, 0x16f4: 0x000a, 0x16f5: 0x000a,
0x16f6: 0x000a, 0x16f7: 0x000a, 0x16f8: 0x000a, 0x16f9: 0x000a, 0x16fa: 0x000a, 0x16fb: 0x000a,
0x16fc: 0x000a, 0x16fd: 0x000a, 0x16fe: 0x000a,
// Block 0x5c, offset 0x1700
0x1700: 0x000a, 0x1701: 0x000a, 0x1702: 0x000a, 0x1703: 0x000a, 0x1704: 0x000a, 0x1705: 0x000a,
0x1706: 0x000a, 0x1707: 0x000a, 0x1708: 0x000a, 0x1709: 0x000a, 0x170a: 0x000a, 0x170b: 0x000a,
0x170c: 0x000a, 0x170d: 0x000a, 0x170e: 0x000a, 0x170f: 0x000a, 0x1710: 0x000a, 0x1711: 0x000a,
0x1712: 0x000a, 0x1713: 0x000a, 0x1714: 0x000a, 0x1715: 0x000a, 0x1716: 0x000a, 0x1717: 0x000a,
0x1718: 0x000a, 0x1719: 0x000a, 0x171a: 0x000a, 0x171b: 0x000a, 0x171c: 0x000a, 0x171d: 0x000a,
0x171e: 0x000a, 0x171f: 0x000a, 0x1720: 0x000a, 0x1721: 0x000a, 0x1722: 0x000a, 0x1723: 0x000a,
0x1724: 0x000a, 0x1725: 0x000a, 0x1726: 0x000a,
// Block 0x5d, offset 0x1740
0x1740: 0x000a, 0x1741: 0x000a, 0x1742: 0x000a, 0x1743: 0x000a, 0x1744: 0x000a, 0x1745: 0x000a,
0x1746: 0x000a, 0x1747: 0x000a, 0x1748: 0x000a, 0x1749: 0x000a, 0x174a: 0x000a,
0x1760: 0x000a, 0x1761: 0x000a, 0x1762: 0x000a, 0x1763: 0x000a,
0x1764: 0x000a, 0x1765: 0x000a, 0x1766: 0x000a, 0x1767: 0x000a, 0x1768: 0x000a, 0x1769: 0x000a,
0x176a: 0x000a, 0x176b: 0x000a, 0x176c: 0x000a, 0x176d: 0x000a, 0x176e: 0x000a, 0x176f: 0x000a,
0x1770: 0x000a, 0x1771: 0x000a, 0x1772: 0x000a, 0x1773: 0x000a, 0x1774: 0x000a, 0x1775: 0x000a,
0x1776: 0x000a, 0x1777: 0x000a, 0x1778: 0x000a, 0x1779: 0x000a, 0x177a: 0x000a, 0x177b: 0x000a,
0x177c: 0x000a, 0x177d: 0x000a, 0x177e: 0x000a, 0x177f: 0x000a,
// Block 0x5e, offset 0x1780
0x1780: 0x000a, 0x1781: 0x000a, 0x1782: 0x000a, 0x1783: 0x000a, 0x1784: 0x000a, 0x1785: 0x000a,
0x1786: 0x000a, 0x1787: 0x000a, 0x1788: 0x0002, 0x1789: 0x0002, 0x178a: 0x0002, 0x178b: 0x0002,
0x178c: 0x0002, 0x178d: 0x0002, 0x178e: 0x0002, 0x178f: 0x0002, 0x1790: 0x0002, 0x1791: 0x0002,
0x1792: 0x0002, 0x1793: 0x0002, 0x1794: 0x0002, 0x1795: 0x0002, 0x1796: 0x0002, 0x1797: 0x0002,
0x1798: 0x0002, 0x1799: 0x0002, 0x179a: 0x0002, 0x179b: 0x0002,
// Block 0x5f, offset 0x17c0
0x17ea: 0x000a, 0x17eb: 0x000a, 0x17ec: 0x000a, 0x17ed: 0x000a, 0x17ee: 0x000a, 0x17ef: 0x000a,
0x17f0: 0x000a, 0x17f1: 0x000a, 0x17f2: 0x000a, 0x17f3: 0x000a, 0x17f4: 0x000a, 0x17f5: 0x000a,
0x17f6: 0x000a, 0x17f7: 0x000a, 0x17f8: 0x000a, 0x17f9: 0x000a, 0x17fa: 0x000a, 0x17fb: 0x000a,
0x17fc: 0x000a, 0x17fd: 0x000a, 0x17fe: 0x000a, 0x17ff: 0x000a,
// Block 0x60, offset 0x1800
0x1800: 0x000a, 0x1801: 0x000a, 0x1802: 0x000a, 0x1803: 0x000a, 0x1804: 0x000a, 0x1805: 0x000a,
0x1806: 0x000a, 0x1807: 0x000a, 0x1808: 0x000a, 0x1809: 0x000a, 0x180a: 0x000a, 0x180b: 0x000a,
0x180c: 0x000a, 0x180d: 0x000a, 0x180e: 0x000a, 0x180f: 0x000a, 0x1810: 0x000a, 0x1811: 0x000a,
0x1812: 0x000a, 0x1813: 0x000a, 0x1814: 0x000a, 0x1815: 0x000a, 0x1816: 0x000a, 0x1817: 0x000a,
0x1818: 0x000a, 0x1819: 0x000a, 0x181a: 0x000a, 0x181b: 0x000a, 0x181c: 0x000a, 0x181d: 0x000a,
0x181e: 0x000a, 0x181f: 0x000a, 0x1820: 0x000a, 0x1821: 0x000a, 0x1822: 0x000a, 0x1823: 0x000a,
0x1824: 0x000a, 0x1825: 0x000a, 0x1826: 0x000a, 0x1827: 0x000a, 0x1828: 0x000a, 0x1829: 0x000a,
0x182a: 0x000a, 0x182b: 0x000a, 0x182d: 0x000a, 0x182e: 0x000a, 0x182f: 0x000a,
0x1830: 0x000a, 0x1831: 0x000a, 0x1832: 0x000a, 0x1833: 0x000a, 0x1834: 0x000a, 0x1835: 0x000a,
0x1836: 0x000a, 0x1837: 0x000a, 0x1838: 0x000a, 0x1839: 0x000a, 0x183a: 0x000a, 0x183b: 0x000a,
0x183c: 0x000a, 0x183d: 0x000a, 0x183e: 0x000a, 0x183f: 0x000a,
// Block 0x61, offset 0x1840
0x1840: 0x000a, 0x1841: 0x000a, 0x1842: 0x000a, 0x1843: 0x000a, 0x1844: 0x000a, 0x1845: 0x000a,
0x1846: 0x000a, 0x1847: 0x000a, 0x1848: 0x000a, 0x1849: 0x000a, 0x184a: 0x000a, 0x184b: 0x000a,
0x184c: 0x000a, 0x184d: 0x000a, 0x184e: 0x000a, 0x184f: 0x000a, 0x1850: 0x000a, 0x1851: 0x000a,
0x1852: 0x000a, 0x1853: 0x000a, 0x1854: 0x000a, 0x1855: 0x000a, 0x1856: 0x000a, 0x1857: 0x000a,
0x1858: 0x000a, 0x1859: 0x000a, 0x185a: 0x000a, 0x185b: 0x000a, 0x185c: 0x000a, 0x185d: 0x000a,
0x185e: 0x000a, 0x185f: 0x000a, 0x1860: 0x000a, 0x1861: 0x000a, 0x1862: 0x000a, 0x1863: 0x000a,
0x1864: 0x000a, 0x1865: 0x000a, 0x1866: 0x000a, 0x1867: 0x000a, 0x1868: 0x003a, 0x1869: 0x002a,
0x186a: 0x003a, 0x186b: 0x002a, 0x186c: 0x003a, 0x186d: 0x002a, 0x186e: 0x003a, 0x186f: 0x002a,
0x1870: 0x003a, 0x1871: 0x002a, 0x1872: 0x003a, 0x1873: 0x002a, 0x1874: 0x003a, 0x1875: 0x002a,
0x1876: 0x000a, 0x1877: 0x000a, 0x1878: 0x000a, 0x1879: 0x000a, 0x187a: 0x000a, 0x187b: 0x000a,
0x187c: 0x000a, 0x187d: 0x000a, 0x187e: 0x000a, 0x187f: 0x000a,
// Block 0x62, offset 0x1880
0x1880: 0x000a, 0x1881: 0x000a, 0x1882: 0x000a, 0x1883: 0x000a, 0x1884: 0x000a, 0x1885: 0x009a,
0x1886: 0x008a, 0x1887: 0x000a, 0x1888: 0x000a, 0x1889: 0x000a, 0x188a: 0x000a, 0x188b: 0x000a,
0x188c: 0x000a, 0x188d: 0x000a, 0x188e: 0x000a, 0x188f: 0x000a, 0x1890: 0x000a, 0x1891: 0x000a,
0x1892: 0x000a, 0x1893: 0x000a, 0x1894: 0x000a, 0x1895: 0x000a, 0x1896: 0x000a, 0x1897: 0x000a,
0x1898: 0x000a, 0x1899: 0x000a, 0x189a: 0x000a, 0x189b: 0x000a, 0x189c: 0x000a, 0x189d: 0x000a,
0x189e: 0x000a, 0x189f: 0x000a, 0x18a0: 0x000a, 0x18a1: 0x000a, 0x18a2: 0x000a, 0x18a3: 0x000a,
0x18a4: 0x000a, 0x18a5: 0x000a, 0x18a6: 0x003a, 0x18a7: 0x002a, 0x18a8: 0x003a, 0x18a9: 0x002a,
0x18aa: 0x003a, 0x18ab: 0x002a, 0x18ac: 0x003a, 0x18ad: 0x002a, 0x18ae: 0x003a, 0x18af: 0x002a,
0x18b0: 0x000a, 0x18b1: 0x000a, 0x18b2: 0x000a, 0x18b3: 0x000a, 0x18b4: 0x000a, 0x18b5: 0x000a,
0x18b6: 0x000a, 0x18b7: 0x000a, 0x18b8: 0x000a, 0x18b9: 0x000a, 0x18ba: 0x000a, 0x18bb: 0x000a,
0x18bc: 0x000a, 0x18bd: 0x000a, 0x18be: 0x000a, 0x18bf: 0x000a,
// Block 0x63, offset 0x18c0
0x18c0: 0x000a, 0x18c1: 0x000a, 0x18c2: 0x000a, 0x18c3: 0x007a, 0x18c4: 0x006a, 0x18c5: 0x009a,
0x18c6: 0x008a, 0x18c7: 0x00ba, 0x18c8: 0x00aa, 0x18c9: 0x009a, 0x18ca: 0x008a, 0x18cb: 0x007a,
0x18cc: 0x006a, 0x18cd: 0x00da, 0x18ce: 0x002a, 0x18cf: 0x003a, 0x18d0: 0x00ca, 0x18d1: 0x009a,
0x18d2: 0x008a, 0x18d3: 0x007a, 0x18d4: 0x006a, 0x18d5: 0x009a, 0x18d6: 0x008a, 0x18d7: 0x00ba,
0x18d8: 0x00aa, 0x18d9: 0x000a, 0x18da: 0x000a, 0x18db: 0x000a, 0x18dc: 0x000a, 0x18dd: 0x000a,
0x18de: 0x000a, 0x18df: 0x000a, 0x18e0: 0x000a, 0x18e1: 0x000a, 0x18e2: 0x000a, 0x18e3: 0x000a,
0x18e4: 0x000a, 0x18e5: 0x000a, 0x18e6: 0x000a, 0x18e7: 0x000a, 0x18e8: 0x000a, 0x18e9: 0x000a,
0x18ea: 0x000a, 0x18eb: 0x000a, 0x18ec: 0x000a, 0x18ed: 0x000a, 0x18ee: 0x000a, 0x18ef: 0x000a,
0x18f0: 0x000a, 0x18f1: 0x000a, 0x18f2: 0x000a, 0x18f3: 0x000a, 0x18f4: 0x000a, 0x18f5: 0x000a,
0x18f6: 0x000a, 0x18f7: 0x000a, 0x18f8: 0x000a, 0x18f9: 0x000a, 0x18fa: 0x000a, 0x18fb: 0x000a,
0x18fc: 0x000a, 0x18fd: 0x000a, 0x18fe: 0x000a, 0x18ff: 0x000a,
// Block 0x64, offset 0x1900
0x1900: 0x000a, 0x1901: 0x000a, 0x1902: 0x000a, 0x1903: 0x000a, 0x1904: 0x000a, 0x1905: 0x000a,
0x1906: 0x000a, 0x1907: 0x000a, 0x1908: 0x000a, 0x1909: 0x000a, 0x190a: 0x000a, 0x190b: 0x000a,
0x190c: 0x000a, 0x190d: 0x000a, 0x190e: 0x000a, 0x190f: 0x000a, 0x1910: 0x000a, 0x1911: 0x000a,
0x1912: 0x000a, 0x1913: 0x000a, 0x1914: 0x000a, 0x1915: 0x000a, 0x1916: 0x000a, 0x1917: 0x000a,
0x1918: 0x003a, 0x1919: 0x002a, 0x191a: 0x003a, 0x191b: 0x002a, 0x191c: 0x000a, 0x191d: 0x000a,
0x191e: 0x000a, 0x191f: 0x000a, 0x1920: 0x000a, 0x1921: 0x000a, 0x1922: 0x000a, 0x1923: 0x000a,
0x1924: 0x000a, 0x1925: 0x000a, 0x1926: 0x000a, 0x1927: 0x000a, 0x1928: 0x000a, 0x1929: 0x000a,
0x192a: 0x000a, 0x192b: 0x000a, 0x192c: 0x000a, 0x192d: 0x000a, 0x192e: 0x000a, 0x192f: 0x000a,
0x1930: 0x000a, 0x1931: 0x000a, 0x1932: 0x000a, 0x1933: 0x000a, 0x1934: 0x000a, 0x1935: 0x000a,
0x1936: 0x000a, 0x1937: 0x000a, 0x1938: 0x000a, 0x1939: 0x000a, 0x193a: 0x000a, 0x193b: 0x000a,
0x193c: 0x003a, 0x193d: 0x002a, 0x193e: 0x000a, 0x193f: 0x000a,
// Block 0x65, offset 0x1940
0x1940: 0x000a, 0x1941: 0x000a, 0x1942: 0x000a, 0x1943: 0x000a, 0x1944: 0x000a, 0x1945: 0x000a,
0x1946: 0x000a, 0x1947: 0x000a, 0x1948: 0x000a, 0x1949: 0x000a, 0x194a: 0x000a, 0x194b: 0x000a,
0x194c: 0x000a, 0x194d: 0x000a, 0x194e: 0x000a, 0x194f: 0x000a, 0x1950: 0x000a, 0x1951: 0x000a,
0x1952: 0x000a, 0x1953: 0x000a, 0x1954: 0x000a, 0x1955: 0x000a, 0x1956: 0x000a, 0x1957: 0x000a,
0x1958: 0x000a, 0x1959: 0x000a, 0x195a: 0x000a, 0x195b: 0x000a, 0x195c: 0x000a, 0x195d: 0x000a,
0x195e: 0x000a, 0x195f: 0x000a, 0x1960: 0x000a, 0x1961: 0x000a, 0x1962: 0x000a, 0x1963: 0x000a,
0x1964: 0x000a, 0x1965: 0x000a, 0x1966: 0x000a, 0x1967: 0x000a, 0x1968: 0x000a, 0x1969: 0x000a,
0x196a: 0x000a, 0x196b: 0x000a, 0x196c: 0x000a, 0x196d: 0x000a, 0x196e: 0x000a, 0x196f: 0x000a,
0x1970: 0x000a, 0x1971: 0x000a, 0x1972: 0x000a, 0x1973: 0x000a,
0x1976: 0x000a, 0x1977: 0x000a, 0x1978: 0x000a, 0x1979: 0x000a, 0x197a: 0x000a, 0x197b: 0x000a,
0x197c: 0x000a, 0x197d: 0x000a, 0x197e: 0x000a, 0x197f: 0x000a,
// Block 0x66, offset 0x1980
0x1980: 0x000a, 0x1981: 0x000a, 0x1982: 0x000a, 0x1983: 0x000a, 0x1984: 0x000a, 0x1985: 0x000a,
0x1986: 0x000a, 0x1987: 0x000a, 0x1988: 0x000a, 0x1989: 0x000a, 0x198a: 0x000a, 0x198b: 0x000a,
0x198c: 0x000a, 0x198d: 0x000a, 0x198e: 0x000a, 0x198f: 0x000a, 0x1990: 0x000a, 0x1991: 0x000a,
0x1992: 0x000a, 0x1993: 0x000a, 0x1994: 0x000a, 0x1995: 0x000a,
0x1998: 0x000a, 0x1999: 0x000a, 0x199a: 0x000a, 0x199b: 0x000a, 0x199c: 0x000a, 0x199d: 0x000a,
0x199e: 0x000a, 0x199f: 0x000a, 0x19a0: 0x000a, 0x19a1: 0x000a, 0x19a2: 0x000a, 0x19a3: 0x000a,
0x19a4: 0x000a, 0x19a5: 0x000a, 0x19a6: 0x000a, 0x19a7: 0x000a, 0x19a8: 0x000a, 0x19a9: 0x000a,
0x19aa: 0x000a, 0x19ab: 0x000a, 0x19ac: 0x000a, 0x19ad: 0x000a, 0x19ae: 0x000a, 0x19af: 0x000a,
0x19b0: 0x000a, 0x19b1: 0x000a, 0x19b2: 0x000a, 0x19b3: 0x000a, 0x19b4: 0x000a, 0x19b5: 0x000a,
0x19b6: 0x000a, 0x19b7: 0x000a, 0x19b8: 0x000a, 0x19b9: 0x000a,
0x19bd: 0x000a, 0x19be: 0x000a, 0x19bf: 0x000a,
// Block 0x67, offset 0x19c0
0x19c0: 0x000a, 0x19c1: 0x000a, 0x19c2: 0x000a, 0x19c3: 0x000a, 0x19c4: 0x000a, 0x19c5: 0x000a,
0x19c6: 0x000a, 0x19c7: 0x000a, 0x19c8: 0x000a, 0x19ca: 0x000a, 0x19cb: 0x000a,
0x19cc: 0x000a, 0x19cd: 0x000a, 0x19ce: 0x000a, 0x19cf: 0x000a, 0x19d0: 0x000a, 0x19d1: 0x000a,
0x19ec: 0x000a, 0x19ed: 0x000a, 0x19ee: 0x000a, 0x19ef: 0x000a,
// Block 0x68, offset 0x1a00
0x1a25: 0x000a, 0x1a26: 0x000a, 0x1a27: 0x000a, 0x1a28: 0x000a, 0x1a29: 0x000a,
0x1a2a: 0x000a, 0x1a2f: 0x000c,
0x1a30: 0x000c, 0x1a31: 0x000c,
0x1a39: 0x000a, 0x1a3a: 0x000a, 0x1a3b: 0x000a,
0x1a3c: 0x000a, 0x1a3d: 0x000a, 0x1a3e: 0x000a, 0x1a3f: 0x000a,
// Block 0x69, offset 0x1a40
0x1a7f: 0x000c,
// Block 0x6a, offset 0x1a80
0x1aa0: 0x000c, 0x1aa1: 0x000c, 0x1aa2: 0x000c, 0x1aa3: 0x000c,
0x1aa4: 0x000c, 0x1aa5: 0x000c, 0x1aa6: 0x000c, 0x1aa7: 0x000c, 0x1aa8: 0x000c, 0x1aa9: 0x000c,
0x1aaa: 0x000c, 0x1aab: 0x000c, 0x1aac: 0x000c, 0x1aad: 0x000c, 0x1aae: 0x000c, 0x1aaf: 0x000c,
0x1ab0: 0x000c, 0x1ab1: 0x000c, 0x1ab2: 0x000c, 0x1ab3: 0x000c, 0x1ab4: 0x000c, 0x1ab5: 0x000c,
0x1ab6: 0x000c, 0x1ab7: 0x000c, 0x1ab8: 0x000c, 0x1ab9: 0x000c, 0x1aba: 0x000c, 0x1abb: 0x000c,
0x1abc: 0x000c, 0x1abd: 0x000c, 0x1abe: 0x000c, 0x1abf: 0x000c,
// Block 0x6b, offset 0x1ac0
0x1ac0: 0x000a, 0x1ac1: 0x000a, 0x1ac2: 0x000a, 0x1ac3: 0x000a, 0x1ac4: 0x000a, 0x1ac5: 0x000a,
0x1ac6: 0x000a, 0x1ac7: 0x000a, 0x1ac8: 0x000a, 0x1ac9: 0x000a, 0x1aca: 0x000a, 0x1acb: 0x000a,
0x1acc: 0x000a, 0x1acd: 0x000a, 0x1ace: 0x000a, 0x1acf: 0x000a, 0x1ad0: 0x000a, 0x1ad1: 0x000a,
0x1ad2: 0x000a, 0x1ad3: 0x000a, 0x1ad4: 0x000a, 0x1ad5: 0x000a, 0x1ad6: 0x000a, 0x1ad7: 0x000a,
0x1ad8: 0x000a, 0x1ad9: 0x000a, 0x1ada: 0x000a, 0x1adb: 0x000a, 0x1adc: 0x000a, 0x1add: 0x000a,
0x1ade: 0x000a, 0x1adf: 0x000a, 0x1ae0: 0x000a, 0x1ae1: 0x000a, 0x1ae2: 0x003a, 0x1ae3: 0x002a,
0x1ae4: 0x003a, 0x1ae5: 0x002a, 0x1ae6: 0x003a, 0x1ae7: 0x002a, 0x1ae8: 0x003a, 0x1ae9: 0x002a,
0x1aea: 0x000a, 0x1aeb: 0x000a, 0x1aec: 0x000a, 0x1aed: 0x000a, 0x1aee: 0x000a, 0x1aef: 0x000a,
0x1af0: 0x000a, 0x1af1: 0x000a, 0x1af2: 0x000a, 0x1af3: 0x000a, 0x1af4: 0x000a, 0x1af5: 0x000a,
0x1af6: 0x000a, 0x1af7: 0x000a, 0x1af8: 0x000a, 0x1af9: 0x000a, 0x1afa: 0x000a, 0x1afb: 0x000a,
0x1afc: 0x000a, 0x1afd: 0x000a, 0x1afe: 0x000a, 0x1aff: 0x000a,
// Block 0x6c, offset 0x1b00
0x1b00: 0x000a, 0x1b01: 0x000a, 0x1b02: 0x000a, 0x1b03: 0x000a, 0x1b04: 0x000a,
// Block 0x6d, offset 0x1b40
0x1b40: 0x000a, 0x1b41: 0x000a, 0x1b42: 0x000a, 0x1b43: 0x000a, 0x1b44: 0x000a, 0x1b45: 0x000a,
0x1b46: 0x000a, 0x1b47: 0x000a, 0x1b48: 0x000a, 0x1b49: 0x000a, 0x1b4a: 0x000a, 0x1b4b: 0x000a,
0x1b4c: 0x000a, 0x1b4d: 0x000a, 0x1b4e: 0x000a, 0x1b4f: 0x000a, 0x1b50: 0x000a, 0x1b51: 0x000a,
0x1b52: 0x000a, 0x1b53: 0x000a, 0x1b54: 0x000a, 0x1b55: 0x000a, 0x1b56: 0x000a, 0x1b57: 0x000a,
0x1b58: 0x000a, 0x1b59: 0x000a, 0x1b5b: 0x000a, 0x1b5c: 0x000a, 0x1b5d: 0x000a,
0x1b5e: 0x000a, 0x1b5f: 0x000a, 0x1b60: 0x000a, 0x1b61: 0x000a, 0x1b62: 0x000a, 0x1b63: 0x000a,
0x1b64: 0x000a, 0x1b65: 0x000a, 0x1b66: 0x000a, 0x1b67: 0x000a, 0x1b68: 0x000a, 0x1b69: 0x000a,
0x1b6a: 0x000a, 0x1b6b: 0x000a, 0x1b6c: 0x000a, 0x1b6d: 0x000a, 0x1b6e: 0x000a, 0x1b6f: 0x000a,
0x1b70: 0x000a, 0x1b71: 0x000a, 0x1b72: 0x000a, 0x1b73: 0x000a, 0x1b74: 0x000a, 0x1b75: 0x000a,
0x1b76: 0x000a, 0x1b77: 0x000a, 0x1b78: 0x000a, 0x1b79: 0x000a, 0x1b7a: 0x000a, 0x1b7b: 0x000a,
0x1b7c: 0x000a, 0x1b7d: 0x000a, 0x1b7e: 0x000a, 0x1b7f: 0x000a,
// Block 0x6e, offset 0x1b80
0x1b80: 0x000a, 0x1b81: 0x000a, 0x1b82: 0x000a, 0x1b83: 0x000a, 0x1b84: 0x000a, 0x1b85: 0x000a,
0x1b86: 0x000a, 0x1b87: 0x000a, 0x1b88: 0x000a, 0x1b89: 0x000a, 0x1b8a: 0x000a, 0x1b8b: 0x000a,
0x1b8c: 0x000a, 0x1b8d: 0x000a, 0x1b8e: 0x000a, 0x1b8f: 0x000a, 0x1b90: 0x000a, 0x1b91: 0x000a,
0x1b92: 0x000a, 0x1b93: 0x000a, 0x1b94: 0x000a, 0x1b95: 0x000a, 0x1b96: 0x000a, 0x1b97: 0x000a,
0x1b98: 0x000a, 0x1b99: 0x000a, 0x1b9a: 0x000a, 0x1b9b: 0x000a, 0x1b9c: 0x000a, 0x1b9d: 0x000a,
0x1b9e: 0x000a, 0x1b9f: 0x000a, 0x1ba0: 0x000a, 0x1ba1: 0x000a, 0x1ba2: 0x000a, 0x1ba3: 0x000a,
0x1ba4: 0x000a, 0x1ba5: 0x000a, 0x1ba6: 0x000a, 0x1ba7: 0x000a, 0x1ba8: 0x000a, 0x1ba9: 0x000a,
0x1baa: 0x000a, 0x1bab: 0x000a, 0x1bac: 0x000a, 0x1bad: 0x000a, 0x1bae: 0x000a, 0x1baf: 0x000a,
0x1bb0: 0x000a, 0x1bb1: 0x000a, 0x1bb2: 0x000a, 0x1bb3: 0x000a,
// Block 0x6f, offset 0x1bc0
0x1bc0: 0x000a, 0x1bc1: 0x000a, 0x1bc2: 0x000a, 0x1bc3: 0x000a, 0x1bc4: 0x000a, 0x1bc5: 0x000a,
0x1bc6: 0x000a, 0x1bc7: 0x000a, 0x1bc8: 0x000a, 0x1bc9: 0x000a, 0x1bca: 0x000a, 0x1bcb: 0x000a,
0x1bcc: 0x000a, 0x1bcd: 0x000a, 0x1bce: 0x000a, 0x1bcf: 0x000a, 0x1bd0: 0x000a, 0x1bd1: 0x000a,
0x1bd2: 0x000a, 0x1bd3: 0x000a, 0x1bd4: 0x000a, 0x1bd5: 0x000a,
0x1bf0: 0x000a, 0x1bf1: 0x000a, 0x1bf2: 0x000a, 0x1bf3: 0x000a, 0x1bf4: 0x000a, 0x1bf5: 0x000a,
0x1bf6: 0x000a, 0x1bf7: 0x000a, 0x1bf8: 0x000a, 0x1bf9: 0x000a, 0x1bfa: 0x000a, 0x1bfb: 0x000a,
// Block 0x70, offset 0x1c00
0x1c00: 0x0009, 0x1c01: 0x000a, 0x1c02: 0x000a, 0x1c03: 0x000a, 0x1c04: 0x000a,
0x1c08: 0x003a, 0x1c09: 0x002a, 0x1c0a: 0x003a, 0x1c0b: 0x002a,
0x1c0c: 0x003a, 0x1c0d: 0x002a, 0x1c0e: 0x003a, 0x1c0f: 0x002a, 0x1c10: 0x003a, 0x1c11: 0x002a,
0x1c12: 0x000a, 0x1c13: 0x000a, 0x1c14: 0x003a, 0x1c15: 0x002a, 0x1c16: 0x003a, 0x1c17: 0x002a,
0x1c18: 0x003a, 0x1c19: 0x002a, 0x1c1a: 0x003a, 0x1c1b: 0x002a, 0x1c1c: 0x000a, 0x1c1d: 0x000a,
0x1c1e: 0x000a, 0x1c1f: 0x000a, 0x1c20: 0x000a,
0x1c2a: 0x000c, 0x1c2b: 0x000c, 0x1c2c: 0x000c, 0x1c2d: 0x000c,
0x1c30: 0x000a,
0x1c36: 0x000a, 0x1c37: 0x000a,
0x1c3d: 0x000a, 0x1c3e: 0x000a, 0x1c3f: 0x000a,
// Block 0x71, offset 0x1c40
0x1c59: 0x000c, 0x1c5a: 0x000c, 0x1c5b: 0x000a, 0x1c5c: 0x000a,
0x1c60: 0x000a,
// Block 0x72, offset 0x1c80
0x1cbb: 0x000a,
// Block 0x73, offset 0x1cc0
0x1cc0: 0x000a, 0x1cc1: 0x000a, 0x1cc2: 0x000a, 0x1cc3: 0x000a, 0x1cc4: 0x000a, 0x1cc5: 0x000a,
0x1cc6: 0x000a, 0x1cc7: 0x000a, 0x1cc8: 0x000a, 0x1cc9: 0x000a, 0x1cca: 0x000a, 0x1ccb: 0x000a,
0x1ccc: 0x000a, 0x1ccd: 0x000a, 0x1cce: 0x000a, 0x1ccf: 0x000a, 0x1cd0: 0x000a, 0x1cd1: 0x000a,
0x1cd2: 0x000a, 0x1cd3: 0x000a, 0x1cd4: 0x000a, 0x1cd5: 0x000a, 0x1cd6: 0x000a, 0x1cd7: 0x000a,
0x1cd8: 0x000a, 0x1cd9: 0x000a, 0x1cda: 0x000a, 0x1cdb: 0x000a, 0x1cdc: 0x000a, 0x1cdd: 0x000a,
0x1cde: 0x000a, 0x1cdf: 0x000a, 0x1ce0: 0x000a, 0x1ce1: 0x000a, 0x1ce2: 0x000a, 0x1ce3: 0x000a,
// Block 0x74, offset 0x1d00
0x1d1d: 0x000a,
0x1d1e: 0x000a,
// Block 0x75, offset 0x1d40
0x1d50: 0x000a, 0x1d51: 0x000a,
0x1d52: 0x000a, 0x1d53: 0x000a, 0x1d54: 0x000a, 0x1d55: 0x000a, 0x1d56: 0x000a, 0x1d57: 0x000a,
0x1d58: 0x000a, 0x1d59: 0x000a, 0x1d5a: 0x000a, 0x1d5b: 0x000a, 0x1d5c: 0x000a, 0x1d5d: 0x000a,
0x1d5e: 0x000a, 0x1d5f: 0x000a,
0x1d7c: 0x000a, 0x1d7d: 0x000a, 0x1d7e: 0x000a,
// Block 0x76, offset 0x1d80
0x1db1: 0x000a, 0x1db2: 0x000a, 0x1db3: 0x000a, 0x1db4: 0x000a, 0x1db5: 0x000a,
0x1db6: 0x000a, 0x1db7: 0x000a, 0x1db8: 0x000a, 0x1db9: 0x000a, 0x1dba: 0x000a, 0x1dbb: 0x000a,
0x1dbc: 0x000a, 0x1dbd: 0x000a, 0x1dbe: 0x000a, 0x1dbf: 0x000a,
// Block 0x77, offset 0x1dc0
0x1dcc: 0x000a, 0x1dcd: 0x000a, 0x1dce: 0x000a, 0x1dcf: 0x000a,
// Block 0x78, offset 0x1e00
0x1e37: 0x000a, 0x1e38: 0x000a, 0x1e39: 0x000a, 0x1e3a: 0x000a,
// Block 0x79, offset 0x1e40
0x1e5e: 0x000a, 0x1e5f: 0x000a,
0x1e7f: 0x000a,
// Block 0x7a, offset 0x1e80
0x1e90: 0x000a, 0x1e91: 0x000a,
0x1e92: 0x000a, 0x1e93: 0x000a, 0x1e94: 0x000a, 0x1e95: 0x000a, 0x1e96: 0x000a, 0x1e97: 0x000a,
0x1e98: 0x000a, 0x1e99: 0x000a, 0x1e9a: 0x000a, 0x1e9b: 0x000a, 0x1e9c: 0x000a, 0x1e9d: 0x000a,
0x1e9e: 0x000a, 0x1e9f: 0x000a, 0x1ea0: 0x000a, 0x1ea1: 0x000a, 0x1ea2: 0x000a, 0x1ea3: 0x000a,
0x1ea4: 0x000a, 0x1ea5: 0x000a, 0x1ea6: 0x000a, 0x1ea7: 0x000a, 0x1ea8: 0x000a, 0x1ea9: 0x000a,
0x1eaa: 0x000a, 0x1eab: 0x000a, 0x1eac: 0x000a, 0x1ead: 0x000a, 0x1eae: 0x000a, 0x1eaf: 0x000a,
0x1eb0: 0x000a, 0x1eb1: 0x000a, 0x1eb2: 0x000a, 0x1eb3: 0x000a, 0x1eb4: 0x000a, 0x1eb5: 0x000a,
0x1eb6: 0x000a, 0x1eb7: 0x000a, 0x1eb8: 0x000a, 0x1eb9: 0x000a, 0x1eba: 0x000a, 0x1ebb: 0x000a,
0x1ebc: 0x000a, 0x1ebd: 0x000a, 0x1ebe: 0x000a, 0x1ebf: 0x000a,
// Block 0x7b, offset 0x1ec0
0x1ec0: 0x000a, 0x1ec1: 0x000a, 0x1ec2: 0x000a, 0x1ec3: 0x000a, 0x1ec4: 0x000a, 0x1ec5: 0x000a,
0x1ec6: 0x000a,
// Block 0x7c, offset 0x1f00
0x1f0d: 0x000a, 0x1f0e: 0x000a, 0x1f0f: 0x000a,
// Block 0x7d, offset 0x1f40
0x1f6f: 0x000c,
0x1f70: 0x000c, 0x1f71: 0x000c, 0x1f72: 0x000c, 0x1f73: 0x000a, 0x1f74: 0x000c, 0x1f75: 0x000c,
0x1f76: 0x000c, 0x1f77: 0x000c, 0x1f78: 0x000c, 0x1f79: 0x000c, 0x1f7a: 0x000c, 0x1f7b: 0x000c,
0x1f7c: 0x000c, 0x1f7d: 0x000c, 0x1f7e: 0x000a, 0x1f7f: 0x000a,
// Block 0x7e, offset 0x1f80
0x1f9e: 0x000c, 0x1f9f: 0x000c,
// Block 0x7f, offset 0x1fc0
0x1ff0: 0x000c, 0x1ff1: 0x000c,
// Block 0x80, offset 0x2000
0x2000: 0x000a, 0x2001: 0x000a, 0x2002: 0x000a, 0x2003: 0x000a, 0x2004: 0x000a, 0x2005: 0x000a,
0x2006: 0x000a, 0x2007: 0x000a, 0x2008: 0x000a, 0x2009: 0x000a, 0x200a: 0x000a, 0x200b: 0x000a,
0x200c: 0x000a, 0x200d: 0x000a, 0x200e: 0x000a, 0x200f: 0x000a, 0x2010: 0x000a, 0x2011: 0x000a,
0x2012: 0x000a, 0x2013: 0x000a, 0x2014: 0x000a, 0x2015: 0x000a, 0x2016: 0x000a, 0x2017: 0x000a,
0x2018: 0x000a, 0x2019: 0x000a, 0x201a: 0x000a, 0x201b: 0x000a, 0x201c: 0x000a, 0x201d: 0x000a,
0x201e: 0x000a, 0x201f: 0x000a, 0x2020: 0x000a, 0x2021: 0x000a,
// Block 0x81, offset 0x2040
0x2048: 0x000a,
// Block 0x82, offset 0x2080
0x2082: 0x000c,
0x2086: 0x000c, 0x208b: 0x000c,
0x20a5: 0x000c, 0x20a6: 0x000c, 0x20a8: 0x000a, 0x20a9: 0x000a,
0x20aa: 0x000a, 0x20ab: 0x000a,
0x20b8: 0x0004, 0x20b9: 0x0004,
// Block 0x83, offset 0x20c0
0x20f4: 0x000a, 0x20f5: 0x000a,
0x20f6: 0x000a, 0x20f7: 0x000a,
// Block 0x84, offset 0x2100
0x2104: 0x000c, 0x2105: 0x000c,
0x2120: 0x000c, 0x2121: 0x000c, 0x2122: 0x000c, 0x2123: 0x000c,
0x2124: 0x000c, 0x2125: 0x000c, 0x2126: 0x000c, 0x2127: 0x000c, 0x2128: 0x000c, 0x2129: 0x000c,
0x212a: 0x000c, 0x212b: 0x000c, 0x212c: 0x000c, 0x212d: 0x000c, 0x212e: 0x000c, 0x212f: 0x000c,
0x2130: 0x000c, 0x2131: 0x000c,
// Block 0x85, offset 0x2140
0x2166: 0x000c, 0x2167: 0x000c, 0x2168: 0x000c, 0x2169: 0x000c,
0x216a: 0x000c, 0x216b: 0x000c, 0x216c: 0x000c, 0x216d: 0x000c,
// Block 0x86, offset 0x2180
0x2187: 0x000c, 0x2188: 0x000c, 0x2189: 0x000c, 0x218a: 0x000c, 0x218b: 0x000c,
0x218c: 0x000c, 0x218d: 0x000c, 0x218e: 0x000c, 0x218f: 0x000c, 0x2190: 0x000c, 0x2191: 0x000c,
// Block 0x87, offset 0x21c0
0x21c0: 0x000c, 0x21c1: 0x000c, 0x21c2: 0x000c,
0x21f3: 0x000c,
0x21f6: 0x000c, 0x21f7: 0x000c, 0x21f8: 0x000c, 0x21f9: 0x000c,
0x21fc: 0x000c,
// Block 0x88, offset 0x2200
0x2225: 0x000c,
// Block 0x89, offset 0x2240
0x2269: 0x000c,
0x226a: 0x000c, 0x226b: 0x000c, 0x226c: 0x000c, 0x226d: 0x000c, 0x226e: 0x000c,
0x2271: 0x000c, 0x2272: 0x000c, 0x2275: 0x000c,
0x2276: 0x000c,
// Block 0x8a, offset 0x2280
0x2283: 0x000c,
0x228c: 0x000c,
0x22bc: 0x000c,
// Block 0x8b, offset 0x22c0
0x22f0: 0x000c, 0x22f2: 0x000c, 0x22f3: 0x000c, 0x22f4: 0x000c,
0x22f7: 0x000c, 0x22f8: 0x000c,
0x22fe: 0x000c, 0x22ff: 0x000c,
// Block 0x8c, offset 0x2300
0x2301: 0x000c,
0x232c: 0x000c, 0x232d: 0x000c,
0x2336: 0x000c,
// Block 0x8d, offset 0x2340
0x2365: 0x000c, 0x2368: 0x000c,
0x236d: 0x000c,
// Block 0x8e, offset 0x2380
0x239d: 0x0001,
0x239e: 0x000c, 0x239f: 0x0001, 0x23a0: 0x0001, 0x23a1: 0x0001, 0x23a2: 0x0001, 0x23a3: 0x0001,
0x23a4: 0x0001, 0x23a5: 0x0001, 0x23a6: 0x0001, 0x23a7: 0x0001, 0x23a8: 0x0001, 0x23a9: 0x0003,
0x23aa: 0x0001, 0x23ab: 0x0001, 0x23ac: 0x0001, 0x23ad: 0x0001, 0x23ae: 0x0001, 0x23af: 0x0001,
0x23b0: 0x0001, 0x23b1: 0x0001, 0x23b2: 0x0001, 0x23b3: 0x0001, 0x23b4: 0x0001, 0x23b5: 0x0001,
0x23b6: 0x0001, 0x23b7: 0x0001, 0x23b8: 0x0001, 0x23b9: 0x0001, 0x23ba: 0x0001, 0x23bb: 0x0001,
0x23bc: 0x0001, 0x23bd: 0x0001, 0x23be: 0x0001, 0x23bf: 0x0001,
// Block 0x8f, offset 0x23c0
0x23c0: 0x0001, 0x23c1: 0x0001, 0x23c2: 0x0001, 0x23c3: 0x0001, 0x23c4: 0x0001, 0x23c5: 0x0001,
0x23c6: 0x0001, 0x23c7: 0x0001, 0x23c8: 0x0001, 0x23c9: 0x0001, 0x23ca: 0x0001, 0x23cb: 0x0001,
0x23cc: 0x0001, 0x23cd: 0x0001, 0x23ce: 0x0001, 0x23cf: 0x0001, 0x23d0: 0x000d, 0x23d1: 0x000d,
0x23d2: 0x000d, 0x23d3: 0x000d, 0x23d4: 0x000d, 0x23d5: 0x000d, 0x23d6: 0x000d, 0x23d7: 0x000d,
0x23d8: 0x000d, 0x23d9: 0x000d, 0x23da: 0x000d, 0x23db: 0x000d, 0x23dc: 0x000d, 0x23dd: 0x000d,
0x23de: 0x000d, 0x23df: 0x000d, 0x23e0: 0x000d, 0x23e1: 0x000d, 0x23e2: 0x000d, 0x23e3: 0x000d,
0x23e4: 0x000d, 0x23e5: 0x000d, 0x23e6: 0x000d, 0x23e7: 0x000d, 0x23e8: 0x000d, 0x23e9: 0x000d,
0x23ea: 0x000d, 0x23eb: 0x000d, 0x23ec: 0x000d, 0x23ed: 0x000d, 0x23ee: 0x000d, 0x23ef: 0x000d,
0x23f0: 0x000d, 0x23f1: 0x000d, 0x23f2: 0x000d, 0x23f3: 0x000d, 0x23f4: 0x000d, 0x23f5: 0x000d,
0x23f6: 0x000d, 0x23f7: 0x000d, 0x23f8: 0x000d, 0x23f9: 0x000d, 0x23fa: 0x000d, 0x23fb: 0x000d,
0x23fc: 0x000d, 0x23fd: 0x000d, 0x23fe: 0x000d, 0x23ff: 0x000d,
// Block 0x90, offset 0x2400
0x2400: 0x000d, 0x2401: 0x000d, 0x2402: 0x000d, 0x2403: 0x000d, 0x2404: 0x000d, 0x2405: 0x000d,
0x2406: 0x000d, 0x2407: 0x000d, 0x2408: 0x000d, 0x2409: 0x000d, 0x240a: 0x000d, 0x240b: 0x000d,
0x240c: 0x000d, 0x240d: 0x000d, 0x240e: 0x000d, 0x240f: 0x000d, 0x2410: 0x000d, 0x2411: 0x000d,
0x2412: 0x000d, 0x2413: 0x000d, 0x2414: 0x000d, 0x2415: 0x000d, 0x2416: 0x000d, 0x2417: 0x000d,
0x2418: 0x000d, 0x2419: 0x000d, 0x241a: 0x000d, 0x241b: 0x000d, 0x241c: 0x000d, 0x241d: 0x000d,
0x241e: 0x000d, 0x241f: 0x000d, 0x2420: 0x000d, 0x2421: 0x000d, 0x2422: 0x000d, 0x2423: 0x000d,
0x2424: 0x000d, 0x2425: 0x000d, 0x2426: 0x000d, 0x2427: 0x000d, 0x2428: 0x000d, 0x2429: 0x000d,
0x242a: 0x000d, 0x242b: 0x000d, 0x242c: 0x000d, 0x242d: 0x000d, 0x242e: 0x000d, 0x242f: 0x000d,
0x2430: 0x000d, 0x2431: 0x000d, 0x2432: 0x000d, 0x2433: 0x000d, 0x2434: 0x000d, 0x2435: 0x000d,
0x2436: 0x000d, 0x2437: 0x000d, 0x2438: 0x000d, 0x2439: 0x000d, 0x243a: 0x000d, 0x243b: 0x000d,
0x243c: 0x000d, 0x243d: 0x000d, 0x243e: 0x000a, 0x243f: 0x000a,
// Block 0x91, offset 0x2440
0x2440: 0x000d, 0x2441: 0x000d, 0x2442: 0x000d, 0x2443: 0x000d, 0x2444: 0x000d, 0x2445: 0x000d,
0x2446: 0x000d, 0x2447: 0x000d, 0x2448: 0x000d, 0x2449: 0x000d, 0x244a: 0x000d, 0x244b: 0x000d,
0x244c: 0x000d, 0x244d: 0x000d, 0x244e: 0x000d, 0x244f: 0x000d, 0x2450: 0x000b, 0x2451: 0x000b,
0x2452: 0x000b, 0x2453: 0x000b, 0x2454: 0x000b, 0x2455: 0x000b, 0x2456: 0x000b, 0x2457: 0x000b,
0x2458: 0x000b, 0x2459: 0x000b, 0x245a: 0x000b, 0x245b: 0x000b, 0x245c: 0x000b, 0x245d: 0x000b,
0x245e: 0x000b, 0x245f: 0x000b, 0x2460: 0x000b, 0x2461: 0x000b, 0x2462: 0x000b, 0x2463: 0x000b,
0x2464: 0x000b, 0x2465: 0x000b, 0x2466: 0x000b, 0x2467: 0x000b, 0x2468: 0x000b, 0x2469: 0x000b,
0x246a: 0x000b, 0x246b: 0x000b, 0x246c: 0x000b, 0x246d: 0x000b, 0x246e: 0x000b, 0x246f: 0x000b,
0x2470: 0x000d, 0x2471: 0x000d, 0x2472: 0x000d, 0x2473: 0x000d, 0x2474: 0x000d, 0x2475: 0x000d,
0x2476: 0x000d, 0x2477: 0x000d, 0x2478: 0x000d, 0x2479: 0x000d, 0x247a: 0x000d, 0x247b: 0x000d,
0x247c: 0x000d, 0x247d: 0x000a, 0x247e: 0x000d, 0x247f: 0x000d,
// Block 0x92, offset 0x2480
0x2480: 0x000c, 0x2481: 0x000c, 0x2482: 0x000c, 0x2483: 0x000c, 0x2484: 0x000c, 0x2485: 0x000c,
0x2486: 0x000c, 0x2487: 0x000c, 0x2488: 0x000c, 0x2489: 0x000c, 0x248a: 0x000c, 0x248b: 0x000c,
0x248c: 0x000c, 0x248d: 0x000c, 0x248e: 0x000c, 0x248f: 0x000c, 0x2490: 0x000a, 0x2491: 0x000a,
0x2492: 0x000a, 0x2493: 0x000a, 0x2494: 0x000a, 0x2495: 0x000a, 0x2496: 0x000a, 0x2497: 0x000a,
0x2498: 0x000a, 0x2499: 0x000a,
0x24a0: 0x000c, 0x24a1: 0x000c, 0x24a2: 0x000c, 0x24a3: 0x000c,
0x24a4: 0x000c, 0x24a5: 0x000c, 0x24a6: 0x000c, 0x24a7: 0x000c, 0x24a8: 0x000c, 0x24a9: 0x000c,
0x24aa: 0x000c, 0x24ab: 0x000c, 0x24ac: 0x000c, 0x24ad: 0x000c, 0x24ae: 0x000c, 0x24af: 0x000c,
0x24b0: 0x000a, 0x24b1: 0x000a, 0x24b2: 0x000a, 0x24b3: 0x000a, 0x24b4: 0x000a, 0x24b5: 0x000a,
0x24b6: 0x000a, 0x24b7: 0x000a, 0x24b8: 0x000a, 0x24b9: 0x000a, 0x24ba: 0x000a, 0x24bb: 0x000a,
0x24bc: 0x000a, 0x24bd: 0x000a, 0x24be: 0x000a, 0x24bf: 0x000a,
// Block 0x93, offset 0x24c0
0x24c0: 0x000a, 0x24c1: 0x000a, 0x24c2: 0x000a, 0x24c3: 0x000a, 0x24c4: 0x000a, 0x24c5: 0x000a,
0x24c6: 0x000a, 0x24c7: 0x000a, 0x24c8: 0x000a, 0x24c9: 0x000a, 0x24ca: 0x000a, 0x24cb: 0x000a,
0x24cc: 0x000a, 0x24cd: 0x000a, 0x24ce: 0x000a, 0x24cf: 0x000a, 0x24d0: 0x0006, 0x24d1: 0x000a,
0x24d2: 0x0006, 0x24d4: 0x000a, 0x24d5: 0x0006, 0x24d6: 0x000a, 0x24d7: 0x000a,
0x24d8: 0x000a, 0x24d9: 0x009a, 0x24da: 0x008a, 0x24db: 0x007a, 0x24dc: 0x006a, 0x24dd: 0x009a,
0x24de: 0x008a, 0x24df: 0x0004, 0x24e0: 0x000a, 0x24e1: 0x000a, 0x24e2: 0x0003, 0x24e3: 0x0003,
0x24e4: 0x000a, 0x24e5: 0x000a, 0x24e6: 0x000a, 0x24e8: 0x000a, 0x24e9: 0x0004,
0x24ea: 0x0004, 0x24eb: 0x000a,
0x24f0: 0x000d, 0x24f1: 0x000d, 0x24f2: 0x000d, 0x24f3: 0x000d, 0x24f4: 0x000d, 0x24f5: 0x000d,
0x24f6: 0x000d, 0x24f7: 0x000d, 0x24f8: 0x000d, 0x24f9: 0x000d, 0x24fa: 0x000d, 0x24fb: 0x000d,
0x24fc: 0x000d, 0x24fd: 0x000d, 0x24fe: 0x000d, 0x24ff: 0x000d,
// Block 0x94, offset 0x2500
0x2500: 0x000d, 0x2501: 0x000d, 0x2502: 0x000d, 0x2503: 0x000d, 0x2504: 0x000d, 0x2505: 0x000d,
0x2506: 0x000d, 0x2507: 0x000d, 0x2508: 0x000d, 0x2509: 0x000d, 0x250a: 0x000d, 0x250b: 0x000d,
0x250c: 0x000d, 0x250d: 0x000d, 0x250e: 0x000d, 0x250f: 0x000d, 0x2510: 0x000d, 0x2511: 0x000d,
0x2512: 0x000d, 0x2513: 0x000d, 0x2514: 0x000d, 0x2515: 0x000d, 0x2516: 0x000d, 0x2517: 0x000d,
0x2518: 0x000d, 0x2519: 0x000d, 0x251a: 0x000d, 0x251b: 0x000d, 0x251c: 0x000d, 0x251d: 0x000d,
0x251e: 0x000d, 0x251f: 0x000d, 0x2520: 0x000d, 0x2521: 0x000d, 0x2522: 0x000d, 0x2523: 0x000d,
0x2524: 0x000d, 0x2525: 0x000d, 0x2526: 0x000d, 0x2527: 0x000d, 0x2528: 0x000d, 0x2529: 0x000d,
0x252a: 0x000d, 0x252b: 0x000d, 0x252c: 0x000d, 0x252d: 0x000d, 0x252e: 0x000d, 0x252f: 0x000d,
0x2530: 0x000d, 0x2531: 0x000d, 0x2532: 0x000d, 0x2533: 0x000d, 0x2534: 0x000d, 0x2535: 0x000d,
0x2536: 0x000d, 0x2537: 0x000d, 0x2538: 0x000d, 0x2539: 0x000d, 0x253a: 0x000d, 0x253b: 0x000d,
0x253c: 0x000d, 0x253d: 0x000d, 0x253e: 0x000d, 0x253f: 0x000b,
// Block 0x95, offset 0x2540
0x2541: 0x000a, 0x2542: 0x000a, 0x2543: 0x0004, 0x2544: 0x0004, 0x2545: 0x0004,
0x2546: 0x000a, 0x2547: 0x000a, 0x2548: 0x003a, 0x2549: 0x002a, 0x254a: 0x000a, 0x254b: 0x0003,
0x254c: 0x0006, 0x254d: 0x0003, 0x254e: 0x0006, 0x254f: 0x0006, 0x2550: 0x0002, 0x2551: 0x0002,
0x2552: 0x0002, 0x2553: 0x0002, 0x2554: 0x0002, 0x2555: 0x0002, 0x2556: 0x0002, 0x2557: 0x0002,
0x2558: 0x0002, 0x2559: 0x0002, 0x255a: 0x0006, 0x255b: 0x000a, 0x255c: 0x000a, 0x255d: 0x000a,
0x255e: 0x000a, 0x255f: 0x000a, 0x2560: 0x000a,
0x257b: 0x005a,
0x257c: 0x000a, 0x257d: 0x004a, 0x257e: 0x000a, 0x257f: 0x000a,
// Block 0x96, offset 0x2580
0x2580: 0x000a,
0x259b: 0x005a, 0x259c: 0x000a, 0x259d: 0x004a,
0x259e: 0x000a, 0x259f: 0x00fa, 0x25a0: 0x00ea, 0x25a1: 0x000a, 0x25a2: 0x003a, 0x25a3: 0x002a,
0x25a4: 0x000a, 0x25a5: 0x000a,
// Block 0x97, offset 0x25c0
0x25e0: 0x0004, 0x25e1: 0x0004, 0x25e2: 0x000a, 0x25e3: 0x000a,
0x25e4: 0x000a, 0x25e5: 0x0004, 0x25e6: 0x0004, 0x25e8: 0x000a, 0x25e9: 0x000a,
0x25ea: 0x000a, 0x25eb: 0x000a, 0x25ec: 0x000a, 0x25ed: 0x000a, 0x25ee: 0x000a,
0x25f0: 0x000b, 0x25f1: 0x000b, 0x25f2: 0x000b, 0x25f3: 0x000b, 0x25f4: 0x000b, 0x25f5: 0x000b,
0x25f6: 0x000b, 0x25f7: 0x000b, 0x25f8: 0x000b, 0x25f9: 0x000a, 0x25fa: 0x000a, 0x25fb: 0x000a,
0x25fc: 0x000a, 0x25fd: 0x000a, 0x25fe: 0x000b, 0x25ff: 0x000b,
// Block 0x98, offset 0x2600
0x2601: 0x000a,
// Block 0x99, offset 0x2640
0x2640: 0x000a, 0x2641: 0x000a, 0x2642: 0x000a, 0x2643: 0x000a, 0x2644: 0x000a, 0x2645: 0x000a,
0x2646: 0x000a, 0x2647: 0x000a, 0x2648: 0x000a, 0x2649: 0x000a, 0x264a: 0x000a, 0x264b: 0x000a,
0x264c: 0x000a, 0x2650: 0x000a, 0x2651: 0x000a,
0x2652: 0x000a, 0x2653: 0x000a, 0x2654: 0x000a, 0x2655: 0x000a, 0x2656: 0x000a, 0x2657: 0x000a,
0x2658: 0x000a, 0x2659: 0x000a, 0x265a: 0x000a, 0x265b: 0x000a,
0x2660: 0x000a,
// Block 0x9a, offset 0x2680
0x26bd: 0x000c,
// Block 0x9b, offset 0x26c0
0x26e0: 0x000c, 0x26e1: 0x0002, 0x26e2: 0x0002, 0x26e3: 0x0002,
0x26e4: 0x0002, 0x26e5: 0x0002, 0x26e6: 0x0002, 0x26e7: 0x0002, 0x26e8: 0x0002, 0x26e9: 0x0002,
0x26ea: 0x0002, 0x26eb: 0x0002, 0x26ec: 0x0002, 0x26ed: 0x0002, 0x26ee: 0x0002, 0x26ef: 0x0002,
0x26f0: 0x0002, 0x26f1: 0x0002, 0x26f2: 0x0002, 0x26f3: 0x0002, 0x26f4: 0x0002, 0x26f5: 0x0002,
0x26f6: 0x0002, 0x26f7: 0x0002, 0x26f8: 0x0002, 0x26f9: 0x0002, 0x26fa: 0x0002, 0x26fb: 0x0002,
// Block 0x9c, offset 0x2700
0x2736: 0x000c, 0x2737: 0x000c, 0x2738: 0x000c, 0x2739: 0x000c, 0x273a: 0x000c,
// Block 0x9d, offset 0x2740
0x2740: 0x0001, 0x2741: 0x0001, 0x2742: 0x0001, 0x2743: 0x0001, 0x2744: 0x0001, 0x2745: 0x0001,
0x2746: 0x0001, 0x2747: 0x0001, 0x2748: 0x0001, 0x2749: 0x0001, 0x274a: 0x0001, 0x274b: 0x0001,
0x274c: 0x0001, 0x274d: 0x0001, 0x274e: 0x0001, 0x274f: 0x0001, 0x2750: 0x0001, 0x2751: 0x0001,
0x2752: 0x0001, 0x2753: 0x0001, 0x2754: 0x0001, 0x2755: 0x0001, 0x2756: 0x0001, 0x2757: 0x0001,
0x2758: 0x0001, 0x2759: 0x0001, 0x275a: 0x0001, 0x275b: 0x0001, 0x275c: 0x0001, 0x275d: 0x0001,
0x275e: 0x0001, 0x275f: 0x0001, 0x2760: 0x0001, 0x2761: 0x0001, 0x2762: 0x0001, 0x2763: 0x0001,
0x2764: 0x0001, 0x2765: 0x0001, 0x2766: 0x0001, 0x2767: 0x0001, 0x2768: 0x0001, 0x2769: 0x0001,
0x276a: 0x0001, 0x276b: 0x0001, 0x276c: 0x0001, 0x276d: 0x0001, 0x276e: 0x0001, 0x276f: 0x0001,
0x2770: 0x0001, 0x2771: 0x0001, 0x2772: 0x0001, 0x2773: 0x0001, 0x2774: 0x0001, 0x2775: 0x0001,
0x2776: 0x0001, 0x2777: 0x0001, 0x2778: 0x0001, 0x2779: 0x0001, 0x277a: 0x0001, 0x277b: 0x0001,
0x277c: 0x0001, 0x277d: 0x0001, 0x277e: 0x0001, 0x277f: 0x0001,
// Block 0x9e, offset 0x2780
0x2780: 0x0001, 0x2781: 0x0001, 0x2782: 0x0001, 0x2783: 0x0001, 0x2784: 0x0001, 0x2785: 0x0001,
0x2786: 0x0001, 0x2787: 0x0001, 0x2788: 0x0001, 0x2789: 0x0001, 0x278a: 0x0001, 0x278b: 0x0001,
0x278c: 0x0001, 0x278d: 0x0001, 0x278e: 0x0001, 0x278f: 0x0001, 0x2790: 0x0001, 0x2791: 0x0001,
0x2792: 0x0001, 0x2793: 0x0001, 0x2794: 0x0001, 0x2795: 0x0001, 0x2796: 0x0001, 0x2797: 0x0001,
0x2798: 0x0001, 0x2799: 0x0001, 0x279a: 0x0001, 0x279b: 0x0001, 0x279c: 0x0001, 0x279d: 0x0001,
0x279e: 0x0001, 0x279f: 0x000a, 0x27a0: 0x0001, 0x27a1: 0x0001, 0x27a2: 0x0001, 0x27a3: 0x0001,
0x27a4: 0x0001, 0x27a5: 0x0001, 0x27a6: 0x0001, 0x27a7: 0x0001, 0x27a8: 0x0001, 0x27a9: 0x0001,
0x27aa: 0x0001, 0x27ab: 0x0001, 0x27ac: 0x0001, 0x27ad: 0x0001, 0x27ae: 0x0001, 0x27af: 0x0001,
0x27b0: 0x0001, 0x27b1: 0x0001, 0x27b2: 0x0001, 0x27b3: 0x0001, 0x27b4: 0x0001, 0x27b5: 0x0001,
0x27b6: 0x0001, 0x27b7: 0x0001, 0x27b8: 0x0001, 0x27b9: 0x0001, 0x27ba: 0x0001, 0x27bb: 0x0001,
0x27bc: 0x0001, 0x27bd: 0x0001, 0x27be: 0x0001, 0x27bf: 0x0001,
// Block 0x9f, offset 0x27c0
0x27c0: 0x0001, 0x27c1: 0x000c, 0x27c2: 0x000c, 0x27c3: 0x000c, 0x27c4: 0x0001, 0x27c5: 0x000c,
0x27c6: 0x000c, 0x27c7: 0x0001, 0x27c8: 0x0001, 0x27c9: 0x0001, 0x27ca: 0x0001, 0x27cb: 0x0001,
0x27cc: 0x000c, 0x27cd: 0x000c, 0x27ce: 0x000c, 0x27cf: 0x000c, 0x27d0: 0x0001, 0x27d1: 0x0001,
0x27d2: 0x0001, 0x27d3: 0x0001, 0x27d4: 0x0001, 0x27d5: 0x0001, 0x27d6: 0x0001, 0x27d7: 0x0001,
0x27d8: 0x0001, 0x27d9: 0x0001, 0x27da: 0x0001, 0x27db: 0x0001, 0x27dc: 0x0001, 0x27dd: 0x0001,
0x27de: 0x0001, 0x27df: 0x0001, 0x27e0: 0x0001, 0x27e1: 0x0001, 0x27e2: 0x0001, 0x27e3: 0x0001,
0x27e4: 0x0001, 0x27e5: 0x0001, 0x27e6: 0x0001, 0x27e7: 0x0001, 0x27e8: 0x0001, 0x27e9: 0x0001,
0x27ea: 0x0001, 0x27eb: 0x0001, 0x27ec: 0x0001, 0x27ed: 0x0001, 0x27ee: 0x0001, 0x27ef: 0x0001,
0x27f0: 0x0001, 0x27f1: 0x0001, 0x27f2: 0x0001, 0x27f3: 0x0001, 0x27f4: 0x0001, 0x27f5: 0x0001,
0x27f6: 0x0001, 0x27f7: 0x0001, 0x27f8: 0x000c, 0x27f9: 0x000c, 0x27fa: 0x000c, 0x27fb: 0x0001,
0x27fc: 0x0001, 0x27fd: 0x0001, 0x27fe: 0x0001, 0x27ff: 0x000c,
// Block 0xa0, offset 0x2800
0x2800: 0x0001, 0x2801: 0x0001, 0x2802: 0x0001, 0x2803: 0x0001, 0x2804: 0x0001, 0x2805: 0x0001,
0x2806: 0x0001, 0x2807: 0x0001, 0x2808: 0x0001, 0x2809: 0x0001, 0x280a: 0x0001, 0x280b: 0x0001,
0x280c: 0x0001, 0x280d: 0x0001, 0x280e: 0x0001, 0x280f: 0x0001, 0x2810: 0x0001, 0x2811: 0x0001,
0x2812: 0x0001, 0x2813: 0x0001, 0x2814: 0x0001, 0x2815: 0x0001, 0x2816: 0x0001, 0x2817: 0x0001,
0x2818: 0x0001, 0x2819: 0x0001, 0x281a: 0x0001, 0x281b: 0x0001, 0x281c: 0x0001, 0x281d: 0x0001,
0x281e: 0x0001, 0x281f: 0x0001, 0x2820: 0x0001, 0x2821: 0x0001, 0x2822: 0x0001, 0x2823: 0x0001,
0x2824: 0x0001, 0x2825: 0x000c, 0x2826: 0x000c, 0x2827: 0x0001, 0x2828: 0x0001, 0x2829: 0x0001,
0x282a: 0x0001, 0x282b: 0x0001, 0x282c: 0x0001, 0x282d: 0x0001, 0x282e: 0x0001, 0x282f: 0x0001,
0x2830: 0x0001, 0x2831: 0x0001, 0x2832: 0x0001, 0x2833: 0x0001, 0x2834: 0x0001, 0x2835: 0x0001,
0x2836: 0x0001, 0x2837: 0x0001, 0x2838: 0x0001, 0x2839: 0x0001, 0x283a: 0x0001, 0x283b: 0x0001,
0x283c: 0x0001, 0x283d: 0x0001, 0x283e: 0x0001, 0x283f: 0x0001,
// Block 0xa1, offset 0x2840
0x2840: 0x0001, 0x2841: 0x0001, 0x2842: 0x0001, 0x2843: 0x0001, 0x2844: 0x0001, 0x2845: 0x0001,
0x2846: 0x0001, 0x2847: 0x0001, 0x2848: 0x0001, 0x2849: 0x0001, 0x284a: 0x0001, 0x284b: 0x0001,
0x284c: 0x0001, 0x284d: 0x0001, 0x284e: 0x0001, 0x284f: 0x0001, 0x2850: 0x0001, 0x2851: 0x0001,
0x2852: 0x0001, 0x2853: 0x0001, 0x2854: 0x0001, 0x2855: 0x0001, 0x2856: 0x0001, 0x2857: 0x0001,
0x2858: 0x0001, 0x2859: 0x0001, 0x285a: 0x0001, 0x285b: 0x0001, 0x285c: 0x0001, 0x285d: 0x0001,
0x285e: 0x0001, 0x285f: 0x0001, 0x2860: 0x0001, 0x2861: 0x0001, 0x2862: 0x0001, 0x2863: 0x0001,
0x2864: 0x0001, 0x2865: 0x0001, 0x2866: 0x0001, 0x2867: 0x0001, 0x2868: 0x0001, 0x2869: 0x0001,
0x286a: 0x0001, 0x286b: 0x0001, 0x286c: 0x0001, 0x286d: 0x0001, 0x286e: 0x0001, 0x286f: 0x0001,
0x2870: 0x0001, 0x2871: 0x0001, 0x2872: 0x0001, 0x2873: 0x0001, 0x2874: 0x0001, 0x2875: 0x0001,
0x2876: 0x0001, 0x2877: 0x0001, 0x2878: 0x0001, 0x2879: 0x000a, 0x287a: 0x000a, 0x287b: 0x000a,
0x287c: 0x000a, 0x287d: 0x000a, 0x287e: 0x000a, 0x287f: 0x000a,
// Block 0xa2, offset 0x2880
0x2880: 0x0001, 0x2881: 0x0001, 0x2882: 0x0001, 0x2883: 0x0001, 0x2884: 0x0001, 0x2885: 0x0001,
0x2886: 0x0001, 0x2887: 0x0001, 0x2888: 0x0001, 0x2889: 0x0001, 0x288a: 0x0001, 0x288b: 0x0001,
0x288c: 0x0001, 0x288d: 0x0001, 0x288e: 0x0001, 0x288f: 0x0001, 0x2890: 0x0001, 0x2891: 0x0001,
0x2892: 0x0001, 0x2893: 0x0001, 0x2894: 0x0001, 0x2895: 0x0001, 0x2896: 0x0001, 0x2897: 0x0001,
0x2898: 0x0001, 0x2899: 0x0001, 0x289a: 0x0001, 0x289b: 0x0001, 0x289c: 0x0001, 0x289d: 0x0001,
0x289e: 0x0001, 0x289f: 0x0001, 0x28a0: 0x0005, 0x28a1: 0x0005, 0x28a2: 0x0005, 0x28a3: 0x0005,
0x28a4: 0x0005, 0x28a5: 0x0005, 0x28a6: 0x0005, 0x28a7: 0x0005, 0x28a8: 0x0005, 0x28a9: 0x0005,
0x28aa: 0x0005, 0x28ab: 0x0005, 0x28ac: 0x0005, 0x28ad: 0x0005, 0x28ae: 0x0005, 0x28af: 0x0005,
0x28b0: 0x0005, 0x28b1: 0x0005, 0x28b2: 0x0005, 0x28b3: 0x0005, 0x28b4: 0x0005, 0x28b5: 0x0005,
0x28b6: 0x0005, 0x28b7: 0x0005, 0x28b8: 0x0005, 0x28b9: 0x0005, 0x28ba: 0x0005, 0x28bb: 0x0005,
0x28bc: 0x0005, 0x28bd: 0x0005, 0x28be: 0x0005, 0x28bf: 0x0001,
// Block 0xa3, offset 0x28c0
0x28c1: 0x000c,
0x28f8: 0x000c, 0x28f9: 0x000c, 0x28fa: 0x000c, 0x28fb: 0x000c,
0x28fc: 0x000c, 0x28fd: 0x000c, 0x28fe: 0x000c, 0x28ff: 0x000c,
// Block 0xa4, offset 0x2900
0x2900: 0x000c, 0x2901: 0x000c, 0x2902: 0x000c, 0x2903: 0x000c, 0x2904: 0x000c, 0x2905: 0x000c,
0x2906: 0x000c,
0x2912: 0x000a, 0x2913: 0x000a, 0x2914: 0x000a, 0x2915: 0x000a, 0x2916: 0x000a, 0x2917: 0x000a,
0x2918: 0x000a, 0x2919: 0x000a, 0x291a: 0x000a, 0x291b: 0x000a, 0x291c: 0x000a, 0x291d: 0x000a,
0x291e: 0x000a, 0x291f: 0x000a, 0x2920: 0x000a, 0x2921: 0x000a, 0x2922: 0x000a, 0x2923: 0x000a,
0x2924: 0x000a, 0x2925: 0x000a,
0x293f: 0x000c,
// Block 0xa5, offset 0x2940
0x2940: 0x000c, 0x2941: 0x000c,
0x2973: 0x000c, 0x2974: 0x000c, 0x2975: 0x000c,
0x2976: 0x000c, 0x2979: 0x000c, 0x297a: 0x000c,
// Block 0xa6, offset 0x2980
0x2980: 0x000c, 0x2981: 0x000c, 0x2982: 0x000c,
0x29a7: 0x000c, 0x29a8: 0x000c, 0x29a9: 0x000c,
0x29aa: 0x000c, 0x29ab: 0x000c, 0x29ad: 0x000c, 0x29ae: 0x000c, 0x29af: 0x000c,
0x29b0: 0x000c, 0x29b1: 0x000c, 0x29b2: 0x000c, 0x29b3: 0x000c, 0x29b4: 0x000c,
// Block 0xa7, offset 0x29c0
0x29f3: 0x000c,
// Block 0xa8, offset 0x2a00
0x2a00: 0x000c, 0x2a01: 0x000c,
0x2a36: 0x000c, 0x2a37: 0x000c, 0x2a38: 0x000c, 0x2a39: 0x000c, 0x2a3a: 0x000c, 0x2a3b: 0x000c,
0x2a3c: 0x000c, 0x2a3d: 0x000c, 0x2a3e: 0x000c,
// Block 0xa9, offset 0x2a40
0x2a4a: 0x000c, 0x2a4b: 0x000c,
0x2a4c: 0x000c,
// Block 0xaa, offset 0x2a80
0x2aaf: 0x000c,
0x2ab0: 0x000c, 0x2ab1: 0x000c, 0x2ab4: 0x000c,
0x2ab6: 0x000c, 0x2ab7: 0x000c,
0x2abe: 0x000c,
// Block 0xab, offset 0x2ac0
0x2adf: 0x000c, 0x2ae3: 0x000c,
0x2ae4: 0x000c, 0x2ae5: 0x000c, 0x2ae6: 0x000c, 0x2ae7: 0x000c, 0x2ae8: 0x000c, 0x2ae9: 0x000c,
0x2aea: 0x000c,
// Block 0xac, offset 0x2b00
0x2b00: 0x000c, 0x2b01: 0x000c,
0x2b3c: 0x000c,
// Block 0xad, offset 0x2b40
0x2b40: 0x000c,
0x2b66: 0x000c, 0x2b67: 0x000c, 0x2b68: 0x000c, 0x2b69: 0x000c,
0x2b6a: 0x000c, 0x2b6b: 0x000c, 0x2b6c: 0x000c,
0x2b70: 0x000c, 0x2b71: 0x000c, 0x2b72: 0x000c, 0x2b73: 0x000c, 0x2b74: 0x000c,
// Block 0xae, offset 0x2b80
0x2bb8: 0x000c, 0x2bb9: 0x000c, 0x2bba: 0x000c, 0x2bbb: 0x000c,
0x2bbc: 0x000c, 0x2bbd: 0x000c, 0x2bbe: 0x000c, 0x2bbf: 0x000c,
// Block 0xaf, offset 0x2bc0
0x2bc2: 0x000c, 0x2bc3: 0x000c, 0x2bc4: 0x000c,
0x2bc6: 0x000c,
// Block 0xb0, offset 0x2c00
0x2c33: 0x000c, 0x2c34: 0x000c, 0x2c35: 0x000c,
0x2c36: 0x000c, 0x2c37: 0x000c, 0x2c38: 0x000c, 0x2c3a: 0x000c,
0x2c3f: 0x000c,
// Block 0xb1, offset 0x2c40
0x2c40: 0x000c, 0x2c42: 0x000c, 0x2c43: 0x000c,
// Block 0xb2, offset 0x2c80
0x2cb2: 0x000c, 0x2cb3: 0x000c, 0x2cb4: 0x000c, 0x2cb5: 0x000c,
0x2cbc: 0x000c, 0x2cbd: 0x000c, 0x2cbf: 0x000c,
// Block 0xb3, offset 0x2cc0
0x2cc0: 0x000c,
0x2cdc: 0x000c, 0x2cdd: 0x000c,
// Block 0xb4, offset 0x2d00
0x2d33: 0x000c, 0x2d34: 0x000c, 0x2d35: 0x000c,
0x2d36: 0x000c, 0x2d37: 0x000c, 0x2d38: 0x000c, 0x2d39: 0x000c, 0x2d3a: 0x000c,
0x2d3d: 0x000c, 0x2d3f: 0x000c,
// Block 0xb5, offset 0x2d40
0x2d40: 0x000c,
0x2d60: 0x000a, 0x2d61: 0x000a, 0x2d62: 0x000a, 0x2d63: 0x000a,
0x2d64: 0x000a, 0x2d65: 0x000a, 0x2d66: 0x000a, 0x2d67: 0x000a, 0x2d68: 0x000a, 0x2d69: 0x000a,
0x2d6a: 0x000a, 0x2d6b: 0x000a, 0x2d6c: 0x000a,
// Block 0xb6, offset 0x2d80
0x2dab: 0x000c, 0x2dad: 0x000c,
0x2db0: 0x000c, 0x2db1: 0x000c, 0x2db2: 0x000c, 0x2db3: 0x000c, 0x2db4: 0x000c, 0x2db5: 0x000c,
0x2db7: 0x000c,
// Block 0xb7, offset 0x2dc0
0x2ddd: 0x000c,
0x2dde: 0x000c, 0x2ddf: 0x000c, 0x2de2: 0x000c, 0x2de3: 0x000c,
0x2de4: 0x000c, 0x2de5: 0x000c, 0x2de7: 0x000c, 0x2de8: 0x000c, 0x2de9: 0x000c,
0x2dea: 0x000c, 0x2deb: 0x000c,
// Block 0xb8, offset 0x2e00
0x2e30: 0x000c, 0x2e31: 0x000c, 0x2e32: 0x000c, 0x2e33: 0x000c, 0x2e34: 0x000c, 0x2e35: 0x000c,
0x2e36: 0x000c, 0x2e38: 0x000c, 0x2e39: 0x000c, 0x2e3a: 0x000c, 0x2e3b: 0x000c,
0x2e3c: 0x000c, 0x2e3d: 0x000c,
// Block 0xb9, offset 0x2e40
0x2e52: 0x000c, 0x2e53: 0x000c, 0x2e54: 0x000c, 0x2e55: 0x000c, 0x2e56: 0x000c, 0x2e57: 0x000c,
0x2e58: 0x000c, 0x2e59: 0x000c, 0x2e5a: 0x000c, 0x2e5b: 0x000c, 0x2e5c: 0x000c, 0x2e5d: 0x000c,
0x2e5e: 0x000c, 0x2e5f: 0x000c, 0x2e60: 0x000c, 0x2e61: 0x000c, 0x2e62: 0x000c, 0x2e63: 0x000c,
0x2e64: 0x000c, 0x2e65: 0x000c, 0x2e66: 0x000c, 0x2e67: 0x000c,
0x2e6a: 0x000c, 0x2e6b: 0x000c, 0x2e6c: 0x000c, 0x2e6d: 0x000c, 0x2e6e: 0x000c, 0x2e6f: 0x000c,
0x2e70: 0x000c, 0x2e72: 0x000c, 0x2e73: 0x000c, 0x2e75: 0x000c,
0x2e76: 0x000c,
// Block 0xba, offset 0x2e80
0x2eb0: 0x000c, 0x2eb1: 0x000c, 0x2eb2: 0x000c, 0x2eb3: 0x000c, 0x2eb4: 0x000c,
// Block 0xbb, offset 0x2ec0
0x2ef0: 0x000c, 0x2ef1: 0x000c, 0x2ef2: 0x000c, 0x2ef3: 0x000c, 0x2ef4: 0x000c, 0x2ef5: 0x000c,
0x2ef6: 0x000c,
// Block 0xbc, offset 0x2f00
0x2f0f: 0x000c, 0x2f10: 0x000c, 0x2f11: 0x000c,
0x2f12: 0x000c,
// Block 0xbd, offset 0x2f40
0x2f5d: 0x000c,
0x2f5e: 0x000c, 0x2f60: 0x000b, 0x2f61: 0x000b, 0x2f62: 0x000b, 0x2f63: 0x000b,
// Block 0xbe, offset 0x2f80
0x2fa7: 0x000c, 0x2fa8: 0x000c, 0x2fa9: 0x000c,
0x2fb3: 0x000b, 0x2fb4: 0x000b, 0x2fb5: 0x000b,
0x2fb6: 0x000b, 0x2fb7: 0x000b, 0x2fb8: 0x000b, 0x2fb9: 0x000b, 0x2fba: 0x000b, 0x2fbb: 0x000c,
0x2fbc: 0x000c, 0x2fbd: 0x000c, 0x2fbe: 0x000c, 0x2fbf: 0x000c,
// Block 0xbf, offset 0x2fc0
0x2fc0: 0x000c, 0x2fc1: 0x000c, 0x2fc2: 0x000c, 0x2fc5: 0x000c,
0x2fc6: 0x000c, 0x2fc7: 0x000c, 0x2fc8: 0x000c, 0x2fc9: 0x000c, 0x2fca: 0x000c, 0x2fcb: 0x000c,
0x2fea: 0x000c, 0x2feb: 0x000c, 0x2fec: 0x000c, 0x2fed: 0x000c,
// Block 0xc0, offset 0x3000
0x3000: 0x000a, 0x3001: 0x000a, 0x3002: 0x000c, 0x3003: 0x000c, 0x3004: 0x000c, 0x3005: 0x000a,
// Block 0xc1, offset 0x3040
0x3040: 0x000a, 0x3041: 0x000a, 0x3042: 0x000a, 0x3043: 0x000a, 0x3044: 0x000a, 0x3045: 0x000a,
0x3046: 0x000a, 0x3047: 0x000a, 0x3048: 0x000a, 0x3049: 0x000a, 0x304a: 0x000a, 0x304b: 0x000a,
0x304c: 0x000a, 0x304d: 0x000a, 0x304e: 0x000a, 0x304f: 0x000a, 0x3050: 0x000a, 0x3051: 0x000a,
0x3052: 0x000a, 0x3053: 0x000a, 0x3054: 0x000a, 0x3055: 0x000a, 0x3056: 0x000a,
// Block 0xc2, offset 0x3080
0x309b: 0x000a,
// Block 0xc3, offset 0x30c0
0x30d5: 0x000a,
// Block 0xc4, offset 0x3100
0x310f: 0x000a,
// Block 0xc5, offset 0x3140
0x3149: 0x000a,
// Block 0xc6, offset 0x3180
0x3183: 0x000a,
0x318e: 0x0002, 0x318f: 0x0002, 0x3190: 0x0002, 0x3191: 0x0002,
0x3192: 0x0002, 0x3193: 0x0002, 0x3194: 0x0002, 0x3195: 0x0002, 0x3196: 0x0002, 0x3197: 0x0002,
0x3198: 0x0002, 0x3199: 0x0002, 0x319a: 0x0002, 0x319b: 0x0002, 0x319c: 0x0002, 0x319d: 0x0002,
0x319e: 0x0002, 0x319f: 0x0002, 0x31a0: 0x0002, 0x31a1: 0x0002, 0x31a2: 0x0002, 0x31a3: 0x0002,
0x31a4: 0x0002, 0x31a5: 0x0002, 0x31a6: 0x0002, 0x31a7: 0x0002, 0x31a8: 0x0002, 0x31a9: 0x0002,
0x31aa: 0x0002, 0x31ab: 0x0002, 0x31ac: 0x0002, 0x31ad: 0x0002, 0x31ae: 0x0002, 0x31af: 0x0002,
0x31b0: 0x0002, 0x31b1: 0x0002, 0x31b2: 0x0002, 0x31b3: 0x0002, 0x31b4: 0x0002, 0x31b5: 0x0002,
0x31b6: 0x0002, 0x31b7: 0x0002, 0x31b8: 0x0002, 0x31b9: 0x0002, 0x31ba: 0x0002, 0x31bb: 0x0002,
0x31bc: 0x0002, 0x31bd: 0x0002, 0x31be: 0x0002, 0x31bf: 0x0002,
// Block 0xc7, offset 0x31c0
0x31c0: 0x000c, 0x31c1: 0x000c, 0x31c2: 0x000c, 0x31c3: 0x000c, 0x31c4: 0x000c, 0x31c5: 0x000c,
0x31c6: 0x000c, 0x31c7: 0x000c, 0x31c8: 0x000c, 0x31c9: 0x000c, 0x31ca: 0x000c, 0x31cb: 0x000c,
0x31cc: 0x000c, 0x31cd: 0x000c, 0x31ce: 0x000c, 0x31cf: 0x000c, 0x31d0: 0x000c, 0x31d1: 0x000c,
0x31d2: 0x000c, 0x31d3: 0x000c, 0x31d4: 0x000c, 0x31d5: 0x000c, 0x31d6: 0x000c, 0x31d7: 0x000c,
0x31d8: 0x000c, 0x31d9: 0x000c, 0x31da: 0x000c, 0x31db: 0x000c, 0x31dc: 0x000c, 0x31dd: 0x000c,
0x31de: 0x000c, 0x31df: 0x000c, 0x31e0: 0x000c, 0x31e1: 0x000c, 0x31e2: 0x000c, 0x31e3: 0x000c,
0x31e4: 0x000c, 0x31e5: 0x000c, 0x31e6: 0x000c, 0x31e7: 0x000c, 0x31e8: 0x000c, 0x31e9: 0x000c,
0x31ea: 0x000c, 0x31eb: 0x000c, 0x31ec: 0x000c, 0x31ed: 0x000c, 0x31ee: 0x000c, 0x31ef: 0x000c,
0x31f0: 0x000c, 0x31f1: 0x000c, 0x31f2: 0x000c, 0x31f3: 0x000c, 0x31f4: 0x000c, 0x31f5: 0x000c,
0x31f6: 0x000c, 0x31fb: 0x000c,
0x31fc: 0x000c, 0x31fd: 0x000c, 0x31fe: 0x000c, 0x31ff: 0x000c,
// Block 0xc8, offset 0x3200
0x3200: 0x000c, 0x3201: 0x000c, 0x3202: 0x000c, 0x3203: 0x000c, 0x3204: 0x000c, 0x3205: 0x000c,
0x3206: 0x000c, 0x3207: 0x000c, 0x3208: 0x000c, 0x3209: 0x000c, 0x320a: 0x000c, 0x320b: 0x000c,
0x320c: 0x000c, 0x320d: 0x000c, 0x320e: 0x000c, 0x320f: 0x000c, 0x3210: 0x000c, 0x3211: 0x000c,
0x3212: 0x000c, 0x3213: 0x000c, 0x3214: 0x000c, 0x3215: 0x000c, 0x3216: 0x000c, 0x3217: 0x000c,
0x3218: 0x000c, 0x3219: 0x000c, 0x321a: 0x000c, 0x321b: 0x000c, 0x321c: 0x000c, 0x321d: 0x000c,
0x321e: 0x000c, 0x321f: 0x000c, 0x3220: 0x000c, 0x3221: 0x000c, 0x3222: 0x000c, 0x3223: 0x000c,
0x3224: 0x000c, 0x3225: 0x000c, 0x3226: 0x000c, 0x3227: 0x000c, 0x3228: 0x000c, 0x3229: 0x000c,
0x322a: 0x000c, 0x322b: 0x000c, 0x322c: 0x000c,
0x3235: 0x000c,
// Block 0xc9, offset 0x3240
0x3244: 0x000c,
0x325b: 0x000c, 0x325c: 0x000c, 0x325d: 0x000c,
0x325e: 0x000c, 0x325f: 0x000c, 0x3261: 0x000c, 0x3262: 0x000c, 0x3263: 0x000c,
0x3264: 0x000c, 0x3265: 0x000c, 0x3266: 0x000c, 0x3267: 0x000c, 0x3268: 0x000c, 0x3269: 0x000c,
0x326a: 0x000c, 0x326b: 0x000c, 0x326c: 0x000c, 0x326d: 0x000c, 0x326e: 0x000c, 0x326f: 0x000c,
// Block 0xca, offset 0x3280
0x3280: 0x000c, 0x3281: 0x000c, 0x3282: 0x000c, 0x3283: 0x000c, 0x3284: 0x000c, 0x3285: 0x000c,
0x3286: 0x000c, 0x3288: 0x000c, 0x3289: 0x000c, 0x328a: 0x000c, 0x328b: 0x000c,
0x328c: 0x000c, 0x328d: 0x000c, 0x328e: 0x000c, 0x328f: 0x000c, 0x3290: 0x000c, 0x3291: 0x000c,
0x3292: 0x000c, 0x3293: 0x000c, 0x3294: 0x000c, 0x3295: 0x000c, 0x3296: 0x000c, 0x3297: 0x000c,
0x3298: 0x000c, 0x329b: 0x000c, 0x329c: 0x000c, 0x329d: 0x000c,
0x329e: 0x000c, 0x329f: 0x000c, 0x32a0: 0x000c, 0x32a1: 0x000c, 0x32a3: 0x000c,
0x32a4: 0x000c, 0x32a6: 0x000c, 0x32a7: 0x000c, 0x32a8: 0x000c, 0x32a9: 0x000c,
0x32aa: 0x000c,
// Block 0xcb, offset 0x32c0
0x32c0: 0x0001, 0x32c1: 0x0001, 0x32c2: 0x0001, 0x32c3: 0x0001, 0x32c4: 0x0001, 0x32c5: 0x0001,
0x32c6: 0x0001, 0x32c7: 0x0001, 0x32c8: 0x0001, 0x32c9: 0x0001, 0x32ca: 0x0001, 0x32cb: 0x0001,
0x32cc: 0x0001, 0x32cd: 0x0001, 0x32ce: 0x0001, 0x32cf: 0x0001, 0x32d0: 0x000c, 0x32d1: 0x000c,
0x32d2: 0x000c, 0x32d3: 0x000c, 0x32d4: 0x000c, 0x32d5: 0x000c, 0x32d6: 0x000c, 0x32d7: 0x0001,
0x32d8: 0x0001, 0x32d9: 0x0001, 0x32da: 0x0001, 0x32db: 0x0001, 0x32dc: 0x0001, 0x32dd: 0x0001,
0x32de: 0x0001, 0x32df: 0x0001, 0x32e0: 0x0001, 0x32e1: 0x0001, 0x32e2: 0x0001, 0x32e3: 0x0001,
0x32e4: 0x0001, 0x32e5: 0x0001, 0x32e6: 0x0001, 0x32e7: 0x0001, 0x32e8: 0x0001, 0x32e9: 0x0001,
0x32ea: 0x0001, 0x32eb: 0x0001, 0x32ec: 0x0001, 0x32ed: 0x0001, 0x32ee: 0x0001, 0x32ef: 0x0001,
0x32f0: 0x0001, 0x32f1: 0x0001, 0x32f2: 0x0001, 0x32f3: 0x0001, 0x32f4: 0x0001, 0x32f5: 0x0001,
0x32f6: 0x0001, 0x32f7: 0x0001, 0x32f8: 0x0001, 0x32f9: 0x0001, 0x32fa: 0x0001, 0x32fb: 0x0001,
0x32fc: 0x0001, 0x32fd: 0x0001, 0x32fe: 0x0001, 0x32ff: 0x0001,
// Block 0xcc, offset 0x3300
0x3300: 0x0001, 0x3301: 0x0001, 0x3302: 0x0001, 0x3303: 0x0001, 0x3304: 0x000c, 0x3305: 0x000c,
0x3306: 0x000c, 0x3307: 0x000c, 0x3308: 0x000c, 0x3309: 0x000c, 0x330a: 0x000c, 0x330b: 0x0001,
0x330c: 0x0001, 0x330d: 0x0001, 0x330e: 0x0001, 0x330f: 0x0001, 0x3310: 0x0001, 0x3311: 0x0001,
0x3312: 0x0001, 0x3313: 0x0001, 0x3314: 0x0001, 0x3315: 0x0001, 0x3316: 0x0001, 0x3317: 0x0001,
0x3318: 0x0001, 0x3319: 0x0001, 0x331a: 0x0001, 0x331b: 0x0001, 0x331c: 0x0001, 0x331d: 0x0001,
0x331e: 0x0001, 0x331f: 0x0001, 0x3320: 0x0001, 0x3321: 0x0001, 0x3322: 0x0001, 0x3323: 0x0001,
0x3324: 0x0001, 0x3325: 0x0001, 0x3326: 0x0001, 0x3327: 0x0001, 0x3328: 0x0001, 0x3329: 0x0001,
0x332a: 0x0001, 0x332b: 0x0001, 0x332c: 0x0001, 0x332d: 0x0001, 0x332e: 0x0001, 0x332f: 0x0001,
0x3330: 0x0001, 0x3331: 0x0001, 0x3332: 0x0001, 0x3333: 0x0001, 0x3334: 0x0001, 0x3335: 0x0001,
0x3336: 0x0001, 0x3337: 0x0001, 0x3338: 0x0001, 0x3339: 0x0001, 0x333a: 0x0001, 0x333b: 0x0001,
0x333c: 0x0001, 0x333d: 0x0001, 0x333e: 0x0001, 0x333f: 0x0001,
// Block 0xcd, offset 0x3340
0x3340: 0x000d, 0x3341: 0x000d, 0x3342: 0x000d, 0x3343: 0x000d, 0x3344: 0x000d, 0x3345: 0x000d,
0x3346: 0x000d, 0x3347: 0x000d, 0x3348: 0x000d, 0x3349: 0x000d, 0x334a: 0x000d, 0x334b: 0x000d,
0x334c: 0x000d, 0x334d: 0x000d, 0x334e: 0x000d, 0x334f: 0x000d, 0x3350: 0x000d, 0x3351: 0x000d,
0x3352: 0x000d, 0x3353: 0x000d, 0x3354: 0x000d, 0x3355: 0x000d, 0x3356: 0x000d, 0x3357: 0x000d,
0x3358: 0x000d, 0x3359: 0x000d, 0x335a: 0x000d, 0x335b: 0x000d, 0x335c: 0x000d, 0x335d: 0x000d,
0x335e: 0x000d, 0x335f: 0x000d, 0x3360: 0x000d, 0x3361: 0x000d, 0x3362: 0x000d, 0x3363: 0x000d,
0x3364: 0x000d, 0x3365: 0x000d, 0x3366: 0x000d, 0x3367: 0x000d, 0x3368: 0x000d, 0x3369: 0x000d,
0x336a: 0x000d, 0x336b: 0x000d, 0x336c: 0x000d, 0x336d: 0x000d, 0x336e: 0x000d, 0x336f: 0x000d,
0x3370: 0x000a, 0x3371: 0x000a, 0x3372: 0x000d, 0x3373: 0x000d, 0x3374: 0x000d, 0x3375: 0x000d,
0x3376: 0x000d, 0x3377: 0x000d, 0x3378: 0x000d, 0x3379: 0x000d, 0x337a: 0x000d, 0x337b: 0x000d,
0x337c: 0x000d, 0x337d: 0x000d, 0x337e: 0x000d, 0x337f: 0x000d,
// Block 0xce, offset 0x3380
0x3380: 0x000a, 0x3381: 0x000a, 0x3382: 0x000a, 0x3383: 0x000a, 0x3384: 0x000a, 0x3385: 0x000a,
0x3386: 0x000a, 0x3387: 0x000a, 0x3388: 0x000a, 0x3389: 0x000a, 0x338a: 0x000a, 0x338b: 0x000a,
0x338c: 0x000a, 0x338d: 0x000a, 0x338e: 0x000a, 0x338f: 0x000a, 0x3390: 0x000a, 0x3391: 0x000a,
0x3392: 0x000a, 0x3393: 0x000a, 0x3394: 0x000a, 0x3395: 0x000a, 0x3396: 0x000a, 0x3397: 0x000a,
0x3398: 0x000a, 0x3399: 0x000a, 0x339a: 0x000a, 0x339b: 0x000a, 0x339c: 0x000a, 0x339d: 0x000a,
0x339e: 0x000a, 0x339f: 0x000a, 0x33a0: 0x000a, 0x33a1: 0x000a, 0x33a2: 0x000a, 0x33a3: 0x000a,
0x33a4: 0x000a, 0x33a5: 0x000a, 0x33a6: 0x000a, 0x33a7: 0x000a, 0x33a8: 0x000a, 0x33a9: 0x000a,
0x33aa: 0x000a, 0x33ab: 0x000a,
0x33b0: 0x000a, 0x33b1: 0x000a, 0x33b2: 0x000a, 0x33b3: 0x000a, 0x33b4: 0x000a, 0x33b5: 0x000a,
0x33b6: 0x000a, 0x33b7: 0x000a, 0x33b8: 0x000a, 0x33b9: 0x000a, 0x33ba: 0x000a, 0x33bb: 0x000a,
0x33bc: 0x000a, 0x33bd: 0x000a, 0x33be: 0x000a, 0x33bf: 0x000a,
// Block 0xcf, offset 0x33c0
0x33c0: 0x000a, 0x33c1: 0x000a, 0x33c2: 0x000a, 0x33c3: 0x000a, 0x33c4: 0x000a, 0x33c5: 0x000a,
0x33c6: 0x000a, 0x33c7: 0x000a, 0x33c8: 0x000a, 0x33c9: 0x000a, 0x33ca: 0x000a, 0x33cb: 0x000a,
0x33cc: 0x000a, 0x33cd: 0x000a, 0x33ce: 0x000a, 0x33cf: 0x000a, 0x33d0: 0x000a, 0x33d1: 0x000a,
0x33d2: 0x000a, 0x33d3: 0x000a,
0x33e0: 0x000a, 0x33e1: 0x000a, 0x33e2: 0x000a, 0x33e3: 0x000a,
0x33e4: 0x000a, 0x33e5: 0x000a, 0x33e6: 0x000a, 0x33e7: 0x000a, 0x33e8: 0x000a, 0x33e9: 0x000a,
0x33ea: 0x000a, 0x33eb: 0x000a, 0x33ec: 0x000a, 0x33ed: 0x000a, 0x33ee: 0x000a,
0x33f1: 0x000a, 0x33f2: 0x000a, 0x33f3: 0x000a, 0x33f4: 0x000a, 0x33f5: 0x000a,
0x33f6: 0x000a, 0x33f7: 0x000a, 0x33f8: 0x000a, 0x33f9: 0x000a, 0x33fa: 0x000a, 0x33fb: 0x000a,
0x33fc: 0x000a, 0x33fd: 0x000a, 0x33fe: 0x000a, 0x33ff: 0x000a,
// Block 0xd0, offset 0x3400
0x3401: 0x000a, 0x3402: 0x000a, 0x3403: 0x000a, 0x3404: 0x000a, 0x3405: 0x000a,
0x3406: 0x000a, 0x3407: 0x000a, 0x3408: 0x000a, 0x3409: 0x000a, 0x340a: 0x000a, 0x340b: 0x000a,
0x340c: 0x000a, 0x340d: 0x000a, 0x340e: 0x000a, 0x340f: 0x000a, 0x3411: 0x000a,
0x3412: 0x000a, 0x3413: 0x000a, 0x3414: 0x000a, 0x3415: 0x000a, 0x3416: 0x000a, 0x3417: 0x000a,
0x3418: 0x000a, 0x3419: 0x000a, 0x341a: 0x000a, 0x341b: 0x000a, 0x341c: 0x000a, 0x341d: 0x000a,
0x341e: 0x000a, 0x341f: 0x000a, 0x3420: 0x000a, 0x3421: 0x000a, 0x3422: 0x000a, 0x3423: 0x000a,
0x3424: 0x000a, 0x3425: 0x000a, 0x3426: 0x000a, 0x3427: 0x000a, 0x3428: 0x000a, 0x3429: 0x000a,
0x342a: 0x000a, 0x342b: 0x000a, 0x342c: 0x000a, 0x342d: 0x000a, 0x342e: 0x000a, 0x342f: 0x000a,
0x3430: 0x000a, 0x3431: 0x000a, 0x3432: 0x000a, 0x3433: 0x000a, 0x3434: 0x000a, 0x3435: 0x000a,
// Block 0xd1, offset 0x3440
0x3440: 0x0002, 0x3441: 0x0002, 0x3442: 0x0002, 0x3443: 0x0002, 0x3444: 0x0002, 0x3445: 0x0002,
0x3446: 0x0002, 0x3447: 0x0002, 0x3448: 0x0002, 0x3449: 0x0002, 0x344a: 0x0002, 0x344b: 0x000a,
0x344c: 0x000a,
// Block 0xd2, offset 0x3480
0x34aa: 0x000a, 0x34ab: 0x000a,
// Block 0xd3, offset 0x34c0
0x34c0: 0x000a, 0x34c1: 0x000a, 0x34c2: 0x000a, 0x34c3: 0x000a, 0x34c4: 0x000a, 0x34c5: 0x000a,
0x34c6: 0x000a, 0x34c7: 0x000a, 0x34c8: 0x000a, 0x34c9: 0x000a, 0x34ca: 0x000a, 0x34cb: 0x000a,
0x34cc: 0x000a, 0x34cd: 0x000a, 0x34ce: 0x000a, 0x34cf: 0x000a, 0x34d0: 0x000a, 0x34d1: 0x000a,
0x34d2: 0x000a,
0x34e0: 0x000a, 0x34e1: 0x000a, 0x34e2: 0x000a, 0x34e3: 0x000a,
0x34e4: 0x000a, 0x34e5: 0x000a, 0x34e6: 0x000a, 0x34e7: 0x000a, 0x34e8: 0x000a, 0x34e9: 0x000a,
0x34ea: 0x000a, 0x34eb: 0x000a, 0x34ec: 0x000a,
0x34f0: 0x000a, 0x34f1: 0x000a, 0x34f2: 0x000a, 0x34f3: 0x000a, 0x34f4: 0x000a, 0x34f5: 0x000a,
0x34f6: 0x000a,
// Block 0xd4, offset 0x3500
0x3500: 0x000a, 0x3501: 0x000a, 0x3502: 0x000a, 0x3503: 0x000a, 0x3504: 0x000a, 0x3505: 0x000a,
0x3506: 0x000a, 0x3507: 0x000a, 0x3508: 0x000a, 0x3509: 0x000a, 0x350a: 0x000a, 0x350b: 0x000a,
0x350c: 0x000a, 0x350d: 0x000a, 0x350e: 0x000a, 0x350f: 0x000a, 0x3510: 0x000a, 0x3511: 0x000a,
0x3512: 0x000a, 0x3513: 0x000a, 0x3514: 0x000a,
// Block 0xd5, offset 0x3540
0x3540: 0x000a, 0x3541: 0x000a, 0x3542: 0x000a, 0x3543: 0x000a, 0x3544: 0x000a, 0x3545: 0x000a,
0x3546: 0x000a, 0x3547: 0x000a, 0x3548: 0x000a, 0x3549: 0x000a, 0x354a: 0x000a, 0x354b: 0x000a,
0x3550: 0x000a, 0x3551: 0x000a,
0x3552: 0x000a, 0x3553: 0x000a, 0x3554: 0x000a, 0x3555: 0x000a, 0x3556: 0x000a, 0x3557: 0x000a,
0x3558: 0x000a, 0x3559: 0x000a, 0x355a: 0x000a, 0x355b: 0x000a, 0x355c: 0x000a, 0x355d: 0x000a,
0x355e: 0x000a, 0x355f: 0x000a, 0x3560: 0x000a, 0x3561: 0x000a, 0x3562: 0x000a, 0x3563: 0x000a,
0x3564: 0x000a, 0x3565: 0x000a, 0x3566: 0x000a, 0x3567: 0x000a, 0x3568: 0x000a, 0x3569: 0x000a,
0x356a: 0x000a, 0x356b: 0x000a, 0x356c: 0x000a, 0x356d: 0x000a, 0x356e: 0x000a, 0x356f: 0x000a,
0x3570: 0x000a, 0x3571: 0x000a, 0x3572: 0x000a, 0x3573: 0x000a, 0x3574: 0x000a, 0x3575: 0x000a,
0x3576: 0x000a, 0x3577: 0x000a, 0x3578: 0x000a, 0x3579: 0x000a, 0x357a: 0x000a, 0x357b: 0x000a,
0x357c: 0x000a, 0x357d: 0x000a, 0x357e: 0x000a, 0x357f: 0x000a,
// Block 0xd6, offset 0x3580
0x3580: 0x000a, 0x3581: 0x000a, 0x3582: 0x000a, 0x3583: 0x000a, 0x3584: 0x000a, 0x3585: 0x000a,
0x3586: 0x000a, 0x3587: 0x000a,
0x3590: 0x000a, 0x3591: 0x000a,
0x3592: 0x000a, 0x3593: 0x000a, 0x3594: 0x000a, 0x3595: 0x000a, 0x3596: 0x000a, 0x3597: 0x000a,
0x3598: 0x000a, 0x3599: 0x000a,
0x35a0: 0x000a, 0x35a1: 0x000a, 0x35a2: 0x000a, 0x35a3: 0x000a,
0x35a4: 0x000a, 0x35a5: 0x000a, 0x35a6: 0x000a, 0x35a7: 0x000a, 0x35a8: 0x000a, 0x35a9: 0x000a,
0x35aa: 0x000a, 0x35ab: 0x000a, 0x35ac: 0x000a, 0x35ad: 0x000a, 0x35ae: 0x000a, 0x35af: 0x000a,
0x35b0: 0x000a, 0x35b1: 0x000a, 0x35b2: 0x000a, 0x35b3: 0x000a, 0x35b4: 0x000a, 0x35b5: 0x000a,
0x35b6: 0x000a, 0x35b7: 0x000a, 0x35b8: 0x000a, 0x35b9: 0x000a, 0x35ba: 0x000a, 0x35bb: 0x000a,
0x35bc: 0x000a, 0x35bd: 0x000a, 0x35be: 0x000a, 0x35bf: 0x000a,
// Block 0xd7, offset 0x35c0
0x35c0: 0x000a, 0x35c1: 0x000a, 0x35c2: 0x000a, 0x35c3: 0x000a, 0x35c4: 0x000a, 0x35c5: 0x000a,
0x35c6: 0x000a, 0x35c7: 0x000a,
0x35d0: 0x000a, 0x35d1: 0x000a,
0x35d2: 0x000a, 0x35d3: 0x000a, 0x35d4: 0x000a, 0x35d5: 0x000a, 0x35d6: 0x000a, 0x35d7: 0x000a,
0x35d8: 0x000a, 0x35d9: 0x000a, 0x35da: 0x000a, 0x35db: 0x000a, 0x35dc: 0x000a, 0x35dd: 0x000a,
0x35de: 0x000a, 0x35df: 0x000a, 0x35e0: 0x000a, 0x35e1: 0x000a, 0x35e2: 0x000a, 0x35e3: 0x000a,
0x35e4: 0x000a, 0x35e5: 0x000a, 0x35e6: 0x000a, 0x35e7: 0x000a, 0x35e8: 0x000a, 0x35e9: 0x000a,
0x35ea: 0x000a, 0x35eb: 0x000a, 0x35ec: 0x000a, 0x35ed: 0x000a,
// Block 0xd8, offset 0x3600
0x3610: 0x000a, 0x3611: 0x000a,
0x3612: 0x000a, 0x3613: 0x000a, 0x3614: 0x000a, 0x3615: 0x000a, 0x3616: 0x000a, 0x3617: 0x000a,
0x3618: 0x000a, 0x3619: 0x000a, 0x361a: 0x000a, 0x361b: 0x000a, 0x361c: 0x000a, 0x361d: 0x000a,
0x361e: 0x000a, 0x3620: 0x000a, 0x3621: 0x000a, 0x3622: 0x000a, 0x3623: 0x000a,
0x3624: 0x000a, 0x3625: 0x000a, 0x3626: 0x000a, 0x3627: 0x000a,
0x3630: 0x000a, 0x3633: 0x000a, 0x3634: 0x000a, 0x3635: 0x000a,
0x3636: 0x000a, 0x3637: 0x000a, 0x3638: 0x000a, 0x3639: 0x000a, 0x363a: 0x000a, 0x363b: 0x000a,
0x363c: 0x000a, 0x363d: 0x000a, 0x363e: 0x000a,
// Block 0xd9, offset 0x3640
0x3640: 0x000a, 0x3641: 0x000a, 0x3642: 0x000a, 0x3643: 0x000a, 0x3644: 0x000a, 0x3645: 0x000a,
0x3646: 0x000a, 0x3647: 0x000a, 0x3648: 0x000a, 0x3649: 0x000a, 0x364a: 0x000a, 0x364b: 0x000a,
0x3650: 0x000a, 0x3651: 0x000a,
0x3652: 0x000a, 0x3653: 0x000a, 0x3654: 0x000a, 0x3655: 0x000a, 0x3656: 0x000a, 0x3657: 0x000a,
0x3658: 0x000a, 0x3659: 0x000a, 0x365a: 0x000a, 0x365b: 0x000a, 0x365c: 0x000a, 0x365d: 0x000a,
0x365e: 0x000a,
// Block 0xda, offset 0x3680
0x3680: 0x000a, 0x3681: 0x000a, 0x3682: 0x000a, 0x3683: 0x000a, 0x3684: 0x000a, 0x3685: 0x000a,
0x3686: 0x000a, 0x3687: 0x000a, 0x3688: 0x000a, 0x3689: 0x000a, 0x368a: 0x000a, 0x368b: 0x000a,
0x368c: 0x000a, 0x368d: 0x000a, 0x368e: 0x000a, 0x368f: 0x000a, 0x3690: 0x000a, 0x3691: 0x000a,
// Block 0xdb, offset 0x36c0
0x36fe: 0x000b, 0x36ff: 0x000b,
// Block 0xdc, offset 0x3700
0x3700: 0x000b, 0x3701: 0x000b, 0x3702: 0x000b, 0x3703: 0x000b, 0x3704: 0x000b, 0x3705: 0x000b,
0x3706: 0x000b, 0x3707: 0x000b, 0x3708: 0x000b, 0x3709: 0x000b, 0x370a: 0x000b, 0x370b: 0x000b,
0x370c: 0x000b, 0x370d: 0x000b, 0x370e: 0x000b, 0x370f: 0x000b, 0x3710: 0x000b, 0x3711: 0x000b,
0x3712: 0x000b, 0x3713: 0x000b, 0x3714: 0x000b, 0x3715: 0x000b, 0x3716: 0x000b, 0x3717: 0x000b,
0x3718: 0x000b, 0x3719: 0x000b, 0x371a: 0x000b, 0x371b: 0x000b, 0x371c: 0x000b, 0x371d: 0x000b,
0x371e: 0x000b, 0x371f: 0x000b, 0x3720: 0x000b, 0x3721: 0x000b, 0x3722: 0x000b, 0x3723: 0x000b,
0x3724: 0x000b, 0x3725: 0x000b, 0x3726: 0x000b, 0x3727: 0x000b, 0x3728: 0x000b, 0x3729: 0x000b,
0x372a: 0x000b, 0x372b: 0x000b, 0x372c: 0x000b, 0x372d: 0x000b, 0x372e: 0x000b, 0x372f: 0x000b,
0x3730: 0x000b, 0x3731: 0x000b, 0x3732: 0x000b, 0x3733: 0x000b, 0x3734: 0x000b, 0x3735: 0x000b,
0x3736: 0x000b, 0x3737: 0x000b, 0x3738: 0x000b, 0x3739: 0x000b, 0x373a: 0x000b, 0x373b: 0x000b,
0x373c: 0x000b, 0x373d: 0x000b, 0x373e: 0x000b, 0x373f: 0x000b,
// Block 0xdd, offset 0x3740
0x3740: 0x000c, 0x3741: 0x000c, 0x3742: 0x000c, 0x3743: 0x000c, 0x3744: 0x000c, 0x3745: 0x000c,
0x3746: 0x000c, 0x3747: 0x000c, 0x3748: 0x000c, 0x3749: 0x000c, 0x374a: 0x000c, 0x374b: 0x000c,
0x374c: 0x000c, 0x374d: 0x000c, 0x374e: 0x000c, 0x374f: 0x000c, 0x3750: 0x000c, 0x3751: 0x000c,
0x3752: 0x000c, 0x3753: 0x000c, 0x3754: 0x000c, 0x3755: 0x000c, 0x3756: 0x000c, 0x3757: 0x000c,
0x3758: 0x000c, 0x3759: 0x000c, 0x375a: 0x000c, 0x375b: 0x000c, 0x375c: 0x000c, 0x375d: 0x000c,
0x375e: 0x000c, 0x375f: 0x000c, 0x3760: 0x000c, 0x3761: 0x000c, 0x3762: 0x000c, 0x3763: 0x000c,
0x3764: 0x000c, 0x3765: 0x000c, 0x3766: 0x000c, 0x3767: 0x000c, 0x3768: 0x000c, 0x3769: 0x000c,
0x376a: 0x000c, 0x376b: 0x000c, 0x376c: 0x000c, 0x376d: 0x000c, 0x376e: 0x000c, 0x376f: 0x000c,
0x3770: 0x000b, 0x3771: 0x000b, 0x3772: 0x000b, 0x3773: 0x000b, 0x3774: 0x000b, 0x3775: 0x000b,
0x3776: 0x000b, 0x3777: 0x000b, 0x3778: 0x000b, 0x3779: 0x000b, 0x377a: 0x000b, 0x377b: 0x000b,
0x377c: 0x000b, 0x377d: 0x000b, 0x377e: 0x000b, 0x377f: 0x000b,
}
// bidiIndex: 24 blocks, 1536 entries, 1536 bytes
// Block 0 is the zero block.
var bidiIndex = [1536]uint8{
// Block 0x0, offset 0x0
// Block 0x1, offset 0x40
// Block 0x2, offset 0x80
// Block 0x3, offset 0xc0
0xc2: 0x01, 0xc3: 0x02,
0xca: 0x03, 0xcb: 0x04, 0xcc: 0x05, 0xcd: 0x06, 0xce: 0x07, 0xcf: 0x08,
0xd2: 0x09, 0xd6: 0x0a, 0xd7: 0x0b,
0xd8: 0x0c, 0xd9: 0x0d, 0xda: 0x0e, 0xdb: 0x0f, 0xdc: 0x10, 0xdd: 0x11, 0xde: 0x12, 0xdf: 0x13,
0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06,
0xea: 0x07, 0xef: 0x08,
0xf0: 0x11, 0xf1: 0x12, 0xf2: 0x12, 0xf3: 0x14, 0xf4: 0x15,
// Block 0x4, offset 0x100
0x120: 0x14, 0x121: 0x15, 0x122: 0x16, 0x123: 0x17, 0x124: 0x18, 0x125: 0x19, 0x126: 0x1a, 0x127: 0x1b,
0x128: 0x1c, 0x129: 0x1d, 0x12a: 0x1c, 0x12b: 0x1e, 0x12c: 0x1f, 0x12d: 0x20, 0x12e: 0x21, 0x12f: 0x22,
0x130: 0x23, 0x131: 0x24, 0x132: 0x1a, 0x133: 0x25, 0x134: 0x26, 0x135: 0x27, 0x137: 0x28,
0x138: 0x29, 0x139: 0x2a, 0x13a: 0x2b, 0x13b: 0x2c, 0x13c: 0x2d, 0x13d: 0x2e, 0x13e: 0x2f, 0x13f: 0x30,
// Block 0x5, offset 0x140
0x140: 0x31, 0x141: 0x32, 0x142: 0x33,
0x14d: 0x34, 0x14e: 0x35,
0x150: 0x36,
0x15a: 0x37, 0x15c: 0x38, 0x15d: 0x39, 0x15e: 0x3a, 0x15f: 0x3b,
0x160: 0x3c, 0x162: 0x3d, 0x164: 0x3e, 0x165: 0x3f, 0x167: 0x40,
0x168: 0x41, 0x169: 0x42, 0x16a: 0x43, 0x16c: 0x44, 0x16d: 0x45, 0x16e: 0x46, 0x16f: 0x47,
0x170: 0x48, 0x173: 0x49, 0x177: 0x4a,
0x17e: 0x4b, 0x17f: 0x4c,
// Block 0x6, offset 0x180
0x180: 0x4d, 0x181: 0x4e, 0x182: 0x4f, 0x183: 0x50, 0x184: 0x51, 0x185: 0x52, 0x186: 0x53, 0x187: 0x54,
0x188: 0x55, 0x189: 0x54, 0x18a: 0x54, 0x18b: 0x54, 0x18c: 0x56, 0x18d: 0x57, 0x18e: 0x58, 0x18f: 0x59,
0x190: 0x5a, 0x191: 0x5b, 0x192: 0x5c, 0x193: 0x5d, 0x194: 0x54, 0x195: 0x54, 0x196: 0x54, 0x197: 0x54,
0x198: 0x54, 0x199: 0x54, 0x19a: 0x5e, 0x19b: 0x54, 0x19c: 0x54, 0x19d: 0x5f, 0x19e: 0x54, 0x19f: 0x60,
0x1a4: 0x54, 0x1a5: 0x54, 0x1a6: 0x61, 0x1a7: 0x62,
0x1a8: 0x54, 0x1a9: 0x54, 0x1aa: 0x54, 0x1ab: 0x54, 0x1ac: 0x54, 0x1ad: 0x63, 0x1ae: 0x64, 0x1af: 0x65,
0x1b3: 0x66, 0x1b5: 0x67, 0x1b7: 0x68,
0x1b8: 0x69, 0x1b9: 0x6a, 0x1ba: 0x6b, 0x1bb: 0x6c, 0x1bc: 0x54, 0x1bd: 0x54, 0x1be: 0x54, 0x1bf: 0x6d,
// Block 0x7, offset 0x1c0
0x1c0: 0x6e, 0x1c2: 0x6f, 0x1c3: 0x70, 0x1c7: 0x71,
0x1c8: 0x72, 0x1c9: 0x73, 0x1ca: 0x74, 0x1cb: 0x75, 0x1cd: 0x76, 0x1cf: 0x77,
// Block 0x8, offset 0x200
0x237: 0x54,
// Block 0x9, offset 0x240
0x252: 0x78, 0x253: 0x79,
0x258: 0x7a, 0x259: 0x7b, 0x25a: 0x7c, 0x25b: 0x7d, 0x25c: 0x7e, 0x25e: 0x7f,
0x260: 0x80, 0x261: 0x81, 0x263: 0x82, 0x264: 0x83, 0x265: 0x84, 0x266: 0x85, 0x267: 0x86,
0x268: 0x87, 0x269: 0x88, 0x26a: 0x89, 0x26b: 0x8a, 0x26f: 0x8b,
// Block 0xa, offset 0x280
0x2ac: 0x8c, 0x2ad: 0x8d, 0x2ae: 0x0e, 0x2af: 0x0e,
0x2b0: 0x0e, 0x2b1: 0x0e, 0x2b2: 0x0e, 0x2b3: 0x0e, 0x2b4: 0x8e, 0x2b5: 0x0e, 0x2b6: 0x0e, 0x2b7: 0x8f,
0x2b8: 0x90, 0x2b9: 0x91, 0x2ba: 0x0e, 0x2bb: 0x92, 0x2bc: 0x93, 0x2bd: 0x94, 0x2bf: 0x95,
// Block 0xb, offset 0x2c0
0x2c4: 0x96, 0x2c5: 0x54, 0x2c6: 0x97, 0x2c7: 0x98,
0x2cb: 0x99, 0x2cd: 0x9a,
0x2e0: 0x9b, 0x2e1: 0x9b, 0x2e2: 0x9b, 0x2e3: 0x9b, 0x2e4: 0x9c, 0x2e5: 0x9b, 0x2e6: 0x9b, 0x2e7: 0x9b,
0x2e8: 0x9d, 0x2e9: 0x9b, 0x2ea: 0x9b, 0x2eb: 0x9e, 0x2ec: 0x9f, 0x2ed: 0x9b, 0x2ee: 0x9b, 0x2ef: 0x9b,
0x2f0: 0x9b, 0x2f1: 0x9b, 0x2f2: 0x9b, 0x2f3: 0x9b, 0x2f4: 0x9b, 0x2f5: 0x9b, 0x2f6: 0x9b, 0x2f7: 0x9b,
0x2f8: 0x9b, 0x2f9: 0xa0, 0x2fa: 0x9b, 0x2fb: 0x9b, 0x2fc: 0x9b, 0x2fd: 0x9b, 0x2fe: 0x9b, 0x2ff: 0x9b,
// Block 0xc, offset 0x300
0x300: 0xa1, 0x301: 0xa2, 0x302: 0xa3, 0x304: 0xa4, 0x305: 0xa5, 0x306: 0xa6, 0x307: 0xa7,
0x308: 0xa8, 0x30b: 0xa9, 0x30c: 0xaa, 0x30d: 0xab,
0x310: 0xac, 0x311: 0xad, 0x312: 0xae, 0x313: 0xaf, 0x316: 0xb0, 0x317: 0xb1,
0x318: 0xb2, 0x319: 0xb3, 0x31a: 0xb4, 0x31c: 0xb5,
0x330: 0xb6, 0x332: 0xb7,
// Block 0xd, offset 0x340
0x36b: 0xb8, 0x36c: 0xb9,
0x37e: 0xba,
// Block 0xe, offset 0x380
0x3b2: 0xbb,
// Block 0xf, offset 0x3c0
0x3c5: 0xbc, 0x3c6: 0xbd,
0x3c8: 0x54, 0x3c9: 0xbe, 0x3cc: 0x54, 0x3cd: 0xbf,
0x3db: 0xc0, 0x3dc: 0xc1, 0x3dd: 0xc2, 0x3de: 0xc3, 0x3df: 0xc4,
0x3e8: 0xc5, 0x3e9: 0xc6, 0x3ea: 0xc7,
// Block 0x10, offset 0x400
0x400: 0xc8,
0x420: 0x9b, 0x421: 0x9b, 0x422: 0x9b, 0x423: 0xc9, 0x424: 0x9b, 0x425: 0xca, 0x426: 0x9b, 0x427: 0x9b,
0x428: 0x9b, 0x429: 0x9b, 0x42a: 0x9b, 0x42b: 0x9b, 0x42c: 0x9b, 0x42d: 0x9b, 0x42e: 0x9b, 0x42f: 0x9b,
0x430: 0x9b, 0x431: 0x9b, 0x432: 0x9b, 0x433: 0x9b, 0x434: 0x9b, 0x435: 0x9b, 0x436: 0x9b, 0x437: 0x9b,
0x438: 0x0e, 0x439: 0x0e, 0x43a: 0x0e, 0x43b: 0xcb, 0x43c: 0x9b, 0x43d: 0x9b, 0x43e: 0x9b, 0x43f: 0x9b,
// Block 0x11, offset 0x440
0x440: 0xcc, 0x441: 0x54, 0x442: 0xcd, 0x443: 0xce, 0x444: 0xcf, 0x445: 0xd0,
0x44c: 0x54, 0x44d: 0x54, 0x44e: 0x54, 0x44f: 0x54,
0x450: 0x54, 0x451: 0x54, 0x452: 0x54, 0x453: 0x54, 0x454: 0x54, 0x455: 0x54, 0x456: 0x54, 0x457: 0x54,
0x458: 0x54, 0x459: 0x54, 0x45a: 0x54, 0x45b: 0xd1, 0x45c: 0x54, 0x45d: 0x6c, 0x45e: 0x54, 0x45f: 0xd2,
0x460: 0xd3, 0x461: 0xd4, 0x462: 0xd5, 0x464: 0xd6, 0x465: 0xd7, 0x466: 0xd8, 0x467: 0x36,
0x47f: 0xd9,
// Block 0x12, offset 0x480
0x4bf: 0xd9,
// Block 0x13, offset 0x4c0
0x4d0: 0x09, 0x4d1: 0x0a, 0x4d6: 0x0b,
0x4db: 0x0c, 0x4dd: 0x0d, 0x4de: 0x0e, 0x4df: 0x0f,
0x4ef: 0x10,
0x4ff: 0x10,
// Block 0x14, offset 0x500
0x50f: 0x10,
0x51f: 0x10,
0x52f: 0x10,
0x53f: 0x10,
// Block 0x15, offset 0x540
0x540: 0xda, 0x541: 0xda, 0x542: 0xda, 0x543: 0xda, 0x544: 0x05, 0x545: 0x05, 0x546: 0x05, 0x547: 0xdb,
0x548: 0xda, 0x549: 0xda, 0x54a: 0xda, 0x54b: 0xda, 0x54c: 0xda, 0x54d: 0xda, 0x54e: 0xda, 0x54f: 0xda,
0x550: 0xda, 0x551: 0xda, 0x552: 0xda, 0x553: 0xda, 0x554: 0xda, 0x555: 0xda, 0x556: 0xda, 0x557: 0xda,
0x558: 0xda, 0x559: 0xda, 0x55a: 0xda, 0x55b: 0xda, 0x55c: 0xda, 0x55d: 0xda, 0x55e: 0xda, 0x55f: 0xda,
0x560: 0xda, 0x561: 0xda, 0x562: 0xda, 0x563: 0xda, 0x564: 0xda, 0x565: 0xda, 0x566: 0xda, 0x567: 0xda,
0x568: 0xda, 0x569: 0xda, 0x56a: 0xda, 0x56b: 0xda, 0x56c: 0xda, 0x56d: 0xda, 0x56e: 0xda, 0x56f: 0xda,
0x570: 0xda, 0x571: 0xda, 0x572: 0xda, 0x573: 0xda, 0x574: 0xda, 0x575: 0xda, 0x576: 0xda, 0x577: 0xda,
0x578: 0xda, 0x579: 0xda, 0x57a: 0xda, 0x57b: 0xda, 0x57c: 0xda, 0x57d: 0xda, 0x57e: 0xda, 0x57f: 0xda,
// Block 0x16, offset 0x580
0x58f: 0x10,
0x59f: 0x10,
0x5a0: 0x13,
0x5af: 0x10,
0x5bf: 0x10,
// Block 0x17, offset 0x5c0
0x5cf: 0x10,
}
// Total table size 15800 bytes (15KiB); checksum: F50EF68C
``` |
Charul Kora is a small scattered rural village in the Sivasagar tehsil, Sivasagar district, Assam state, India. In the census and other sources it is qualified as No.2 in order to distinguish it from the nearly homonymous village of Chaul Kora (No.1) in the same district, about 8 km to the southwest.
The village is located about 360 km east by northeast of Assam's capital Dispur, 9 km north of Sivasagar, and 11 km southeast of the Brahmaputra River, at the end of the local Dhai Ali Road. It is also about 70 km northwest of the border with Myanmar, and 67 km southeast of the border with Arunachal Pradesh, the Indian territory disputed by China. Its PIN is 785663 and its census village code is 292681.
In the 2011 census, the village had 311 households and 1576 inhabitants (including 133 children 0–6), and an adult literacy level of 93%.
References
Villages in Sivasagar district |
Paul Alfred Hodgson (November 19, 1891 – October 7, 1955) was a West Point graduate who served in World War I and World War II. While at West Point, he roomed with the future President of the United States, Dwight D. Eisenhower. The two enjoyed a lifelong friendship through their military career and their enjoyment for sports.
Military
Hodgson was born in Latham, Kansas. In 1911 he received the appointment to West Point Military Academy from the eighth Congressional district of Kansas. Throughout his four years at West Point he distinguished himself in academics and graduated eighteenth in the 164 member class of 1915 ("the class the stars fell on").
Hodgson got involved in sports early on at West point, making the varsity football team his freshman year. He became an athlete and a star football player on the first undefeated Army team of 1914. He also participated on the varsity baseball and basketball teams and broke the then existing Academy records for the high jump and broad jump. Injuries, however, kept both him and his roommate, Dwight D. Eisenhower, from achieving greater fame in athletics.
Following West Point, Hodgson attended Army Engineer school in Washington, D.C.. In World War I he joined the 11th Division with the 211th Engineers but not soon enough to travel overseas. Tours on the West Coast and Washington, D. C. followed by graduation from the Command and General Staff School at Fort Leavenworth seemed to be preparing him for new opportunities. Illness struck him in 1941 and, after several months in Fitzsimmons General Hospital, Hodgson was discharged because of arthritis, a disease which afflicted him since his West Point days.
Recalled to duty
With the outbreak of World War II, Hodgson was recalled to active duty as the Executive Officer of Fort Sam Houston, Texas, where he remained until August 1945. While at Fort Sam Houston, Hodgson was promoted to Colonel and was awarded the Legion of Merit. Following the end of his military career, Hodgson retired to California and died at the Letterman Army Hospital in San Francisco at the age of 63.
Friendship with Eisenhower
While attending West Point, Hodgson and Eisenhower shared a room for almost 4 years. Upon being assigned together as roommates, Hodgson told his mother on July 30, 1911, "My room mate (tent mate, rather) is Dwight Eisenhower of Abilene, Kansas.…". While discussing Hodgson in December 1942, then General, Eisenhower stated, "The four years we spent in the same room more than a quarter of a century ago are still one of my most treasured memories." While Hodgson was talking with Eisenhower about running in the 1948 US Presidential Election, he said to Ike, "I think you’d make an excellent President, but am not sure you’d be very happy doing it". Ike eventually did run, and win the 1952 Election.
Hodgson spent his last days in the Letterman Hospital, and sent his last letter to Ike August 1955. Hodgson died on October 7, 1955. Upon hearing of his friend P.A.'s death, Eisenhower replied, "In P.A.'s passing, I have lost one of my oldest and best friends; one who always had my admiration, respect, and deep affection. I shall miss him more than I can say."
Legacy
In February 1970, Hodgson's surviving brother and sister, Roy C. Hodgson and Grace M. Wright, donated approximately 200 pages of their brother's letters to the Dwight D. Eisenhower Presidential Library.
References
External links
Letters of Paul A. Hodgson, Dwight D. Eisenhower Presidential Library
1891 births
1955 deaths
Army Black Knights football players
United States Army officers
United States Army Command and General Staff College alumni
Recipients of the Legion of Merit
People from Butler County, Kansas |
The 2021 Porsche Carrera Cup Great Britain was a multi-event, one-make motor racing championship held across England and Scotland. The championship featured a mix of professional motor racing teams and privately funded drivers, competing in Porsche 991 GT3 Cup cars that conformed to the technical regulations for the championship. It formed part of the extensive program of support categories built up around the BTCC centrepiece. The 2021 season was the 19th Porsche Carrera Cup Great Britain season, commencing on 12 June at Snetterton and finishing on 24 October at Brands Hatch, utilising the Grand Prix circuit, after sixteen races at eight meetings. All sixteen of the races were held in support of the 2021 British Touring Car Championship.
Teams and drivers
The following teams and drivers are currently signed to run the 2021 season.
Race Calendar
Championship standings
Drivers' championships
* Guest entry - ineligible for points
References
External links
Porsche Carrera Cup
Porsche Carrera Cup Great Britain seasons
Porsche Carrera Cup Great Britain
|} |
```javascript
'use strict';
const path = require('path');
const mapStream = require('map-stream');
const vfs = require('vinyl-fs');
const clearAttrs = require('../util/clear-attrs');
module.exports = (source, target/* , options */) => {
// location: ${source}/!SVG/*.svg
vfs.src('*.svg', {
cwd: path.resolve(source, './icons/'),
cwdbase: true,
dot: true
})
.pipe(mapStream(clearAttrs))
.pipe(vfs.dest(target));
};
``` |
```html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "path_to_url">
<html xmlns="path_to_url">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.17"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Jetson Inference: imageFormatType< format > Struct Template Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="NVLogo_2D.jpg"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Jetson Inference
</div>
<div id="projectbrief">DNN Vision Library</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('structimageFormatType.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">imageFormatType< format > Struct Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="imageFormat_8h_source.html">imageFormat.h</a>></code></p>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>jetson-utils/<a class="el" href="imageFormat_8h_source.html">imageFormat.h</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="structimageFormatType.html">imageFormatType</a></li>
<li class="footer">Generated on Tue Mar 28 2023 14:27:58 for Jetson Inference by
<a href="path_to_url">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
</ul>
</div>
</body>
</html>
``` |
Pisar is a surname. Notable people with the surname include:
Jozef Pisár (born 1971), Slovak football striker
Samuel Pisar (1929–2015), Polish-born American lawyer and author
See also
Pisal |
The SPAD S.42 was a French biplane trainer aircraft of the early 1920s, developed by Société Pour L'Aviation et ses Dérivés (SPAD) from prolific SPAD S.XIII fighter.
Specifications
References
Bibliography
S.42
Aircraft first flown in 1921
Biplanes
Single-engined tractor aircraft |
```elixir
defmodule Update.Repo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users) do
add :email, :string
timestamps()
end
end
end
``` |
The members of the fourth National Assembly of South Korea were elected on 2 May 1958. The assembly sat from 31 May 1958 until 28 July 1960.
Members
Seoul
Gyeonggi
North Chungcheong
South Chungcheong
North Jeolla
South Jeolla
North Gyeongsang
South Gyeongsang
Gangwon
Jeju
Notes
See also
1958 South Korean legislative election
National Assembly (South Korea)#History
References
004
National Assembly members 004 |
Pierre Charles Baquoy (27 July 1759 – 4 February 1829) was a French painter and engraver, known for depictions of famous historical characters.
Baquoy was born and died in Paris. In his time he was considered an eminent artist-engraver and among other things was a professor of drawing and an employee of the Musee Royal.
He was the illustrator of the Kehl edition of Voltaire and also produced some of the engravings for the 1788-1793 Complete Works of Rousseau (Émile and Theátre et Poesies)
He was also one of the painters depicting contemporary society in Paris for early fashion magazines such as the Journal des Dames et des Modes and "La Mesangere" (published between 1797 and 1839).
His drawings of this kind, like those of others such as the La Mesangere editor Pierre Antoine Leboux de la Mesangere, Paul Gavarni, Antoine Charles Horace Vernet and Louis-Marie Lanté are considered an essential resource for the study of the fashion and society of the time.
References
External links
Caesarea (Straton’s Tower), view of Caius Caesar's Cenotaph. In the front, tents of a caravan. Between the foothills and the mountains in the back, galloping horsemen. 1799.
Frederic et Voltaire, circa 1796 - 1798
Pierre Charles Baquoy, Napoleon at St. Helen
Les petits parrains (The little godfathers)
1787 Illustration for Chapter 19 of Voltaire's Candide in "Os anos que salvaram a reputação de Voltaire" (Portuguese-language article)
Microfilm collection of
18th-century French painters
French male painters
19th-century French painters
1759 births
1829 deaths
19th-century French male artists
18th-century French male artists |
Eastern Hancock High School is a public high school located just north of Charlottesville, Indiana. It is managed by the Community School Corporation of Eastern Hancock County. Schools in neighboring Wilkinson, Shirley, and Charlottesville consolidated in 1970 forming the Eastern Hancock district that includes all the eastern third of Hancock County.
History
Although Eastern Hancock's school district covers more area than any other school district in the county, it has the smallest number of enrolled students due to eastern Hancock County being mainly rural. The Community School Corporation of Eastern Hancock County represents the consolidation of the school's three townships: Brown, Blue River and Jackson. The towns of Wilkinson, Shirley, Charlottesville, Warrington, Willow Branch and parts of Greenfield are all in the Eastern Hancock School District.
The school began in 1964-65, but the new Eastern Hancock Junior-Senior High School facilities were completed in 1971. The Elementary building was completed in 1979 and the Middle School was completed in 1996.
Consolidation History to become the Community School Corporation of Eastern Hancock County:
Eastern Hancock - Royals
Charlottesville - Eagles
Westland - Bears
Blue River Township Schools
Jackson Township Schools
Stinger School
Wilkinson - Bulldogs
Shirley School
Warrington School
Athletics
The Eastern Hancock High School Royals are a member of the Mid-Eastern Conference. IHSAA sanctioned sports offered at EHHS include: tennis, cross country, football, volleyball, basketball, swimming, wrestling, baseball, softball, golf, and track and field. The school's only state championship in any sport came in the fall of 1985, when the football team defeated Jimtown High School in the Class A title game 20-7.
You can find a very detailed history of each Eastern Hancock Sports History by CLICKING HERE
Membership timeline
Conference Champions
NOTE: School was in the East Central Conference from 1964-1968, but did not win any championships.
Sectional, Regional, Semi-State, State Champions
EH Athletic Hall of Famers
Click Here for more info about inductees.
Arts
Music
Band
Eastern Hancock has one band. It is a Marching Band that marches during halftime at football games and during several parades with their colorguard. They also perform several concerts at the school throughout the year. The band is currently directed by Mr. Daniel Buckalew. They participate annual in the Indiana State Fair Band Day as well as the Central Indiana District Solo and Ensemble.
In 2014, for the first time since 1986, they participated in the Indiana State Fair Band Day contest. They have participated annually since then. Their performances are as follows:
Choir
Eastern Hancock has two choirs: One Show Choir and one Concert Choir, primarily known as the "High School Choir". Both choirs sing annually at nursing homes, as well as the school's scheduled concerts.
Show Choir
At Eastern Hancock, the Show Choir, also known as the "Royal Singers" or the "Advanced Chorus," is the advanced choir. They sing many times throughout the year including, but not limited to, nursing homes once a year, the school's home volleyball and basketball games, the Indianapolis Zoo around Christmas, and the Riley Festival, a festival held annually in Greenfield, Indiana. An audition with a solo is required to be in the Show Choir.
High School Choir
The High School Choir, also known as the "Intermediate Chorus," is the no-audition choir at Eastern Hancock. 8th Graders at Eastern Hancock Middle School, however, may audition to join the High School Choir one year early and earn High School credits that count toward their diploma. They sing at nursing homes and several other organized performances throughout the year.
Theatre
Eastern Hancock has a Drama Club, where they put on two productions, one play and one musical, every year. The drama club has been around for many years. The following table states some of the many productions put on at Eastern Hancock.
Art
Eastern Hancock has several art classes:
Drawing I
Photography
Digital Design
Advanced 2D/3D Art
AP Art
Eastern Hancock also has an Art Club, hosted by the Art Teacher, that does various events throughout the year around the county.
Academics
Eastern Hancock offers Science, Social Studies, Mathematics, English, and Fine Arts academic teams. They all compete annually at the Academic Super Bowl. They also won the 2003 and 2011 State Science Academic Championships. The Eastern Hancock Fine Arts Team finished 6th in the State in 2012.
In addition, Eastern Hancock has a Spell Bowl team. Spell Bowl members spend the semester figuring out how to spell complex words and compete every year at the annual Indiana Spell Bowl Competition.
School Information
Facilities
There are many facilities around the school, including:
Auditorium
Main Office and Athletic Office
Conference Room
Computer Lab and Robotics Lab
Cafeteria with Indoor and Outdoor Seating
Library
Eastern Hancock also has many athletic facilities, including:
2 American Football fields (One being a practice field)
3 baseball/softball fields
Track field
Gymnasium with Concessions Stand
8 tennis courts
2 batting cages
Weight Room
Swimming Pool
Varsity, Junior Varsity, and Standard Locker Rooms
Computing
Eastern Hancock uses a form of computer distribution known as 1:1 Computing. One to One computing is where all students and teachers are given a computer, or any other device that is similar. Laptops and desktops are the current standard, however, the students of Eastern Hancock High School and Eastern Hancock Middle School are given Chromebooks. The teachers in all three schools (High School, Middle School, and Elementary School) get laptops.
FFA
FFA is one of the largest extra-curricular activities at Eastern Hancock. The Eastern Hancock FFA has won and/or placed in the top 5 at many area, state, and national judging contests in both the senior and junior divisions.
See also
List of high schools in Indiana
Mid-Eastern Conference
References
Eastern Hancock Superintendent Eastern Hancock Schools. Retrieved November 18, 2022.
External links
Official website
Eastern Hancock Schools
Eastern Hancock Sports
Public high schools in Indiana
Schools in Hancock County, Indiana
1964 establishments in Indiana |
```smalltalk
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using NUnit.Framework;
using Mono.Cecil;
using Mono.Cecil.Cil;
using Xamarin.Utils;
#nullable enable
namespace Cecil.Tests {
[TestFixture]
public class GenericPInvokesTest {
[TestCaseSource (typeof (Helper), nameof (Helper.NetPlatformImplementationAssemblyDefinitions))]
public void CheckSetupBlockUnsafeUsage (AssemblyInfo info)
{
// We should not call BlockLiteral.SetupBlockUnsafe in our code at all.
// All our code should use the function pointer syntax for block creation:
// var block = new BlockLiteral (&function, nameof (<type where function is defined), nameof (function))
var assembly = info.Assembly;
var callsToSetupBlock = AllSetupBlocks (assembly);
Assert.That (callsToSetupBlock.Select (v => v.FullName), Is.Empty, "No calls at all to BlockLiteral.SetupBlockUnsafe");
}
[TestCaseSource (typeof (Helper), nameof (Helper.NetPlatformImplementationAssemblyDefinitions))]
public void CheckAllPInvokes (AssemblyInfo info)
{
var assembly = info.Assembly;
var pinvokes = AllPInvokes (assembly).Where (IsPInvokeOK);
Assert.IsTrue (pinvokes.Count () > 0);
var failures = pinvokes.Where (ContainsGenerics).ToList ();
var failingMethods = ListOfFailingMethods (failures);
Assert.IsTrue (failures.Count () == 0,
$"There are {failures.Count ()} pinvoke methods that contain generics. This will not work in .NET 7 and above (see path_to_url ):{failingMethods}");
}
string ListOfFailingMethods (IEnumerable<MethodDefinition> methods)
{
var list = new StringBuilder ();
foreach (var method in methods) {
list.Append ('\n').Append (method.FullName);
}
return list.ToString ();
}
static bool ContainsGenerics (MethodDefinition method)
{
return method.ContainsGenericParameter;
}
IEnumerable<MethodDefinition> AllPInvokes (AssemblyDefinition assembly)
{
return assembly.EnumerateMethods (method =>
(method.Attributes & MethodAttributes.PInvokeImpl) != 0);
}
static bool IsPInvokeOK (MethodDefinition method)
{
var fullName = method.FullName;
switch (fullName) {
default:
return true;
}
}
IEnumerable<MethodDefinition> AllSetupBlocks (AssemblyDefinition assembly)
{
return assembly.EnumerateMethods (method => {
if (!method.HasBody)
return false;
return method.Body.Instructions.Any (IsCallToSetupBlockUnsafe);
});
}
static bool IsCallToSetupBlockUnsafe (Instruction instr)
{
if (!IsCall (instr))
return false;
var operand = instr.Operand;
if (!(operand is MethodReference mr))
return false;
if (!mr.DeclaringType.Is ("ObjCRuntime", "BlockLiteral"))
return false;
if (mr.Name != "SetupBlockUnsafe")
return false;
if (!mr.ReturnType.Is ("System", "Void"))
return false;
if (!mr.HasParameters || mr.Parameters.Count != 2)
return false;
if (!mr.Parameters [0].ParameterType.Is ("System", "Delegate") || !mr.Parameters [1].ParameterType.Is ("System", "Delegate"))
return false;
return true;
}
static bool IsCall (Instruction instr)
{
return instr.OpCode == OpCodes.Call ||
instr.OpCode == OpCodes.Calli;
}
}
}
``` |
Victoria Girls School, established by Queen Victoria, provides education in both Tamil and English languages. It's a centenary school provided with well-equipped lab facilities. The school is well known for its discipline.
It has been ranked in top ten schools in Tuticorin District.
References
Girls' schools in Tamil Nadu
High schools and secondary schools in Tamil Nadu
Thoothukudi district |
Bradley William Daluiso (born December 31, 1967) is a former American football placekicker in the National Football League for the Atlanta Falcons, Buffalo Bills, Denver Broncos, New York Giants and Oakland Raiders. He played college football at the University of California, Los Angeles.
Early years
Daluiso attended Valhalla High School, where he competed in soccer and tennis. He contributed to the team winning the 1986 CIF 3A soccer championship.
In 1986, he enrolled at San Diego State University but did not play football. In 1987, he transferred to Grossmont College, where his mother was a family life professor. As a freshman, he played only for the soccer team. As a sophomore in 1988, he became a football player for the first time and was used as a kickoff specialist.
As a junior in 1989, he walked on at the University of California, Los Angeles. He handled 46 of the team's 48 kickoffs and had 20 touchbacks (43.5%).
As a senior in 1990, he was named the starter at placekicker. He made 13-of-19 field goals and 32-of-33 extra points. He hit a 21-yard field goal with one second remaining, to clinch a 32-31 win against Stanford University. He made a 43-yard field goal with 10 seconds left in the game, to seal a 25-22 win against the No. 2 ranked University of Washington.
Professional career
Green Bay Packers
Daluiso was signed as an undrafted free agent by the Green Bay Packers after the 1991 NFL Draft. He handled all of the kicking during the preseason while placekicker Chris Jacke was involved in a contract holdout. He made 7 of 8 field goals and all 12 of his extra point attempts. On August 26, he was traded to the Atlanta Falcons.
Atlanta Falcons
In 1991, he appeared in 2 games, making 2 of 3 field goals and 2 extra points. On September 9, he was waived after the team agreed to terms with placekicker Norm Johnson.
Buffalo Bills
On September 11, 1991, he was claimed off waivers by the Buffalo Bills. He appeared in 14 regular season games and 3 playoff games, including Super Bowl XXVI. He was used as a kickoff specialist to complement incumbent placekicker Scott Norwood and did not attempt a field goal or extra point. He had 26 touchbacks on 78 kickoffs (33.3%).
Dallas Cowboys
On February 18, 1992, he was signed as a Plan B free agent by the Dallas Cowboys, to replace Kevin Willis. He lost the placekicker competition to rookie Lin Elliott. He was released on August 31.
Denver Broncos
On September 1, 1992, he was claimed off waivers by the Denver Broncos. He appeared in 16 regular season games. He was used as a kickoff specialist to complement incumbent placekicker David Treadwell and only attempted one field goal attempt. He was released on August 21, 1993.
New York Giants
On September 1, 1993, he signed as a free agent with the New York Giants, reuniting with head coach Dan Reeves, who was also his head coach with the Denver Broncos. He appeared in 15 regular season games. He was used as a kickoff specialist to complement incumbent placekicker David Treadwell and only attempted 3 field goal attempts, while making one.
In 1999, he appeared in 6 games, before being placed on the injured reserve list with an ACL tear in his non-kicking left leg, that he suffered tackling Dallas Cowboys cornerback Kevin Mathis on a kickoff return. He was replaced with Cary Blanchard.
In 2000, he was the team's recipient of the Ed Block Courage Award and played in Super Bowl XXXV. He was not re-signed after the season, leaving as the franchise's all-time most accurate kicker and second-leading scorer.
Oakland Raiders
On January 5, 2002, he was signed as an injury replacement for placekicker Sebastian Janikowski. He appeared in the season finale against the New York Jets, making 3-of-4 field goal attempts and 1-of-2 on extra point attempts in a 24-22 loss. He was released on January 8, 2002.
Personal life
Daluiso was on the Late Show with David Letterman in 1997 (Episode #5.62). He is a member of the Sigma Chi fraternity.
References
1967 births
Living people
Players of American football from San Diego
American football placekickers
Grossmont Griffins football players
UCLA Bruins football players
Atlanta Falcons players
Buffalo Bills players
Denver Broncos players
New York Giants players
Oakland Raiders players |
Lonnie E. Boyett (born December 24, 1953) is a former American football tight end who played one season with the San Francisco 49ers of the National Football League (NFL). He played college football at California State University, Northridge and attended Antelope Valley High School in Lancaster, California. He was also a member of the Tampa Bay Buccaneers and Oakland Raiders. Boyett is an uncle of NFL quarterbacks David and Derek Carr.
References
External links
Just Sports Stats
1953 births
Living people
American football tight ends
Cal State Northridge Matadors football players
Oakland Raiders players
Tampa Bay Buccaneers players
San Francisco 49ers players
Players of American football from Los Angeles County, California
Sportspeople from Lancaster, California
Antelope Valley High School alumni |
"Fire and Ice" is a song by Pat Benatar, released on July 6, 1981 as the lead single off her third album, Precious Time. The track was written by Benatar, Tom Kelly, and Scott Sheets. It peaked at #17 on the U.S. Billboard Hot 100 and peaked at #2 on the U.S. Mainstream Rock chart. The song also won Benatar her second Grammy award for Best Female Rock Performance in 1982.
Record World said that "Benatar comes out rockin'" with "blistering guitars" and "vocal rage."
Charts
References
Pat Benatar songs
Chrysalis Records singles
1981 singles
Grammy Award for Best Female Rock Vocal Performance
Songs written by Tom Kelly (musician)
1981 songs
Songs written by Pat Benatar
Song recordings produced by Keith Olsen |
Winfield is a city in Lincoln County, Missouri, United States. The population was 1,404 at the 2010 census.
History
Winfield was laid out in 1879, and named after Winfield Scott Killam, the original owner of the town site. A post office called Winfield has been in operation since 1880.
On June 18, 2008, floodwaters opened a 150-foot breach in a primary levee along the Mississippi River in Winfield. The breach allowed floodwaters to claim dozens of homes and large tracts of farmland and put pressure on a secondary levee. The breach also prompted Lincoln County emergency officials to order the evacuation of residents east of Winfield. Press reports noted that some evacuees were being housed at the local high school.
On April 9, 2009, Winfield made news after it elected their popular mayor, Harry Stonebraker, to a fourth term, several weeks after he died of a heart attack. This was because ballot papers had already been printed and absentee voting had begun. He won by a landslide, securing 90% of the vote by April 9.
Winfield appointed a temporary mayor to serve until a special election was held in April 2010.
Geography
According to the United States Census Bureau, the city has a total area of , all land.
Demographics
2010 census
At the 2010 census there were 1,404 people, 525 households, and 360 families living in the city. The population density was . There were 568 housing units at an average density of . The racial makup of the city was 97.0% White, 0.4% African American, 0.3% Asian, 0.1% Pacific Islander, 0.9% from other races, and 1.3% from two or more races. Hispanic or Latino of any race were 1.3%.
Of the 525 households 43.2% had children under the age of 18 living with them, 47.0% were married couples living together, 16.2% had a female householder with no husband present, 5.3% had a male householder with no wife present, and 31.4% were non-families. 24.6% of households were one person and 7.6% were one person aged 65 or older. The average household size was 2.61 and the average family size was 3.10.
The median age was 31 years. 28.4% of residents were under the age of 18; 8.8% were between the ages of 18 and 24; 33.8% were from 25 to 44; 20.4% were from 45 to 64; and 8.5% were 65 or older. The gender makeup of the city was 49.9% male and 50.1% female.
2000 census
At the 2000 census there were 723 people, 293 households, and 183 families living in the city. The population density was . There were 319 housing units at an average density of . The racial makup of the city was 98.62% White, 0.14% African American, 0.28% Native American, 0.41% Asian, and 0.55% from two or more races. Hispanic or Latino of any race were 0.28%.
Of the 293 households 34.1% had children under the age of 18 living with them, 39.2% were married couples living together, 17.7% had a female householder with no husband present, and 37.5% were non-families. 30.7% of households were one person and 10.2% were one person aged 65 or older. The average household size was 2.42 and the average family size was 3.01.
The age distribution was 28.1% under the age of 18, 11.8% from 18 to 24, 29.6% from 25 to 44, 17.4% from 45 to 64, and 13.1% 65 or older. The median age was 33 years. For every 100 females, there were 90.8 males. For every 100 females age 18 and over, there were 88.4 males.
The median household income was $36,167 and the median family income was $45,536. Males had a median income of $35,313 versus $21,071 for females. The per capita income for the city was $17,740. About 10.0% of families and 15.8% of the population were below the poverty line, including 19.0% of those under age 18 and 13.5% of those age 65 or over.
Education
Winfield, served by Winfield R-IV School District, has four different schools:
Primary School (K-2)
Intermediate School (3-5)
Middle School (6-8)
High School (9-12)
References
External links
Cities in Lincoln County, Missouri
Cities in Missouri |
```scss
.section-trello-board {
width: 100%;
padding: 10px;
white-space: nowrap;
overflow: auto
}
.section-trello-board-title {
font-weight: bold;
color: #fff;
font-size: 16px;
}
.section-trello-list {
background-color: #e2e4e6;
padding: 10px;
border-radius: 3px;
margin: 10px 10px 0 0;
max-width: 300px;
}
.section-trello-list-title {
font-weight: bold;
color: #4c4c4c;
font-size: 14px;
display: inline-block;
vertical-align: middle;
}
.section-trello-list-checkbox {
vertical-align: middle;
margin-right: 10px;
}
.section-trello-render {
> .trello-board {
width: 100%;
max-height: 600px;
padding: 10px;
white-space: nowrap;
overflow: auto;
> a {
> .trello-board-title {
font-weight: bold;
color: #fff;
font-size: 16px;
}
}
> .trello-list {
background-color: #e2e4e6;
padding: 10px;
border-radius: 3px;
margin: 10px 10px 0 0;
width: 300px;
max-height: 500px;
display: inline-block;
white-space: nowrap;
overflow: auto;
vertical-align: top;
> .trello-list-title {
font-weight: bold;
color: #4c4c4c;
font-size: 14px;
margin: 0 10px 10px 0;
}
> a {
> .trello-card {
color: #4c4c4c;
border-bottom: 1px solid #CDD2D4;
background-color: #fff;
border-radius: 3px;
padding: 7px 7px;
margin: 5px 0;
font-size: 14px;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
line-height: 18px;
overflow: hidden;
word-wrap: break-word;
white-space: normal;
cursor: pointer;
vertical-align: top;
}
}
}
}
}
``` |
```turing
BEGIN {
if ($ENV{PERL_CORE}) {
chdir('t') if -d 't';
@INC = $^O eq 'MacOS' ? qw(::lib) : qw(../lib);
}
}
use strict;
use warnings;
BEGIN { $| = 1; print "1..69\n"; }
my $count = 0;
sub ok ($;$) {
my $p = my $r = shift;
if (@_) {
my $x = shift;
$p = !defined $x ? !defined $r : !defined $r ? 0 : $r eq $x;
}
print $p ? "ok" : "not ok", ' ', ++$count, "\n";
}
use Unicode::Collate::Locale;
ok(1);
sub _pack_U { Unicode::Collate::pack_U(@_) }
sub _unpack_U { Unicode::Collate::unpack_U(@_) }
#########################
my $objLt = Unicode::Collate::Locale->
new(locale => 'LT', normalization => undef);
ok($objLt->getlocale, 'lt');
$objLt->change(level => 1);
ok($objLt->lt("c", "c\x{30C}"));
ok($objLt->gt("d", "c\x{30C}"));
ok($objLt->lt("s", "s\x{30C}"));
ok($objLt->gt("t", "s\x{30C}"));
ok($objLt->lt("z", "z\x{30C}"));
ok($objLt->lt("z\x{30C}", "\x{292}")); # U+0292 EZH
# 8
ok($objLt->eq("a", "a\x{328}"));
ok($objLt->eq("e", "e\x{328}"));
ok($objLt->eq("e\x{328}", "e\x{307}"));
ok($objLt->eq("i", "i\x{328}"));
ok($objLt->eq("y", "i\x{328}"));
ok($objLt->eq("u", "u\x{328}"));
ok($objLt->eq("u\x{328}", "u\x{304}"));
# 15
$objLt->change(level => 2);
ok($objLt->lt("a", "a\x{328}"));
ok($objLt->lt("e", "e\x{328}"));
ok($objLt->lt("e\x{328}", "e\x{307}"));
ok($objLt->lt("i", "i\x{328}"));
ok($objLt->gt("y", "i\x{328}"));
ok($objLt->lt("u", "u\x{328}"));
ok($objLt->lt("u\x{328}", "u\x{304}"));
# 22
ok($objLt->eq("c\x{30C}", "C\x{30C}"));
ok($objLt->eq("s\x{30C}", "S\x{30C}"));
ok($objLt->eq("z\x{30C}", "Z\x{30C}"));
ok($objLt->eq("i\x{307}", "I\x{307}"));
ok($objLt->eq("y", "Y"));
ok($objLt->eq("a\x{328}", "A\x{328}"));
ok($objLt->eq("e\x{328}", "E\x{328}"));
ok($objLt->eq("e\x{307}", "E\x{307}"));
ok($objLt->eq("i\x{328}", "I\x{328}"));
ok($objLt->eq("u\x{328}", "U\x{328}"));
ok($objLt->eq("u\x{304}", "U\x{304}"));
# 33
# according to CLDR tests
ok($objLt->gt("I\x{307}\x{300}", "I\x{300}"));
ok($objLt->gt("I\x{307}\x{301}", "I\x{301}"));
ok($objLt->gt("I\x{307}\x{303}", "I\x{303}"));
# 36
$objLt->change(level => 3);
ok($objLt->lt("c\x{30C}", "C\x{30C}"));
ok($objLt->lt("s\x{30C}", "S\x{30C}"));
ok($objLt->lt("z\x{30C}", "Z\x{30C}"));
ok($objLt->lt("i\x{307}", "I\x{307}"));
ok($objLt->lt("y", "Y"));
ok($objLt->lt("a\x{328}", "A\x{328}"));
ok($objLt->lt("e\x{328}", "E\x{328}"));
ok($objLt->lt("e\x{307}", "E\x{307}"));
ok($objLt->lt("i\x{328}", "I\x{328}"));
ok($objLt->lt("u\x{328}", "U\x{328}"));
ok($objLt->lt("u\x{304}", "U\x{304}"));
# 47
ok($objLt->eq("c\x{30C}", "\x{10D}"));
ok($objLt->eq("C\x{30C}", "\x{10C}"));
ok($objLt->eq("s\x{30C}", "\x{161}"));
ok($objLt->eq("S\x{30C}", "\x{160}"));
ok($objLt->eq("z\x{30C}", "\x{17E}"));
ok($objLt->eq("Z\x{30C}", "\x{17D}"));
ok($objLt->eq("I\x{307}", "\x{130}"));
ok($objLt->eq("a\x{328}", "\x{105}"));
ok($objLt->eq("A\x{328}", "\x{104}"));
ok($objLt->eq("e\x{328}", "\x{119}"));
ok($objLt->eq("E\x{328}", "\x{118}"));
ok($objLt->eq("e\x{307}", "\x{117}"));
ok($objLt->eq("E\x{307}", "\x{116}"));
ok($objLt->eq("i\x{328}", "\x{12F}"));
ok($objLt->eq("I\x{328}", "\x{12E}"));
ok($objLt->eq("u\x{328}", "\x{173}"));
ok($objLt->eq("U\x{328}", "\x{172}"));
ok($objLt->eq("u\x{304}", "\x{16B}"));
ok($objLt->eq("U\x{304}", "\x{16A}"));
# 66
ok($objLt->eq("i\x{307}\x{300}", "i\x{300}"));
ok($objLt->eq("i\x{307}\x{301}", "i\x{301}"));
ok($objLt->eq("i\x{307}\x{303}", "i\x{303}"));
# 69
``` |
```java
package com.ctrip.platform.dal.dao;
public enum DalEventEnum {
QUERY("query", 2001),
UPDATE_SIMPLE("update", 2002),
UPDATE_KH("update(KeyHolder)", 2003),
BATCH_UPDATE("batchUpdate(sqls)", 2004),
BATCH_UPDATE_PARAM("batchUpdate(params)", 2005),
EXECUTE("execute", 2006),
CALL("call", 2007),
BATCH_CALL("call(params)", 2008),
CONNECTION_SUCCESS("connection_success", 2010),
CONNECTION_FAILED("connection_failed", 2011);
private String operation;
private int eventId;
private DalEventEnum(String operation, int eventId) {
this.operation = operation;
this.eventId = eventId;
}
public int getEventId() {
return eventId;
}
public String getOperation() {
return operation;
}
}
``` |
The 2022 Women's Premier League Rugby season is the twelfth season of the Women's Premier League.
Season change
This season of the WPL will commence in the spring of 2022 unlike previous seasons which were played in the fall. WPL Reps along with the Competitions/Scheduling committee agreed to move the WPL league season to spring to align better with international playing windows and also with Division 1 and 2 Championships. This was initially supposed to start in Spring 2021, but was postponed because of COVID-19.
Season Standings
Final standings after the regular season:
Red Conference
Blue Conference
Regular season
Week 1
Week 2
Week 3
Week 4
Week 5
Week 6
Week 7
Week 8
Week 9
Week 10
Play-offs
Bowl Competition
9th Place Final
7th Place Final
5th Place Final
Cup Competition
Semi-finals
3th Place Final
Grand Final
References
External links
USA Rugby Women's Premier League official site
Women's Premier League
Women's Premier League |
The spider-tailed horned viper (Pseudocerastes urarachnoides) is a species of viper, a venomous snake, in the family Viperidae and genus Pseudocerastes. The genus is commonly known as "false-horned vipers".
The species is endemic to western Iran and over the border region with Iraq. It was originally described by scientists as Pseudocerastes persicus, attributing the tail to either parasite, deformity, or tumors. Another specimen was found in 2003. P. urarachnoides was officially described in 2006. The head looks very similar to that of other Pseudocerastes species in the region, but the spider-tailed horned viper has a unique tail that has a bulb-like end that is bordered by long drooping scales that give it the appearance of a spider. The tail tip is waved around and used to lure insectivorous birds to within striking range.
Etymology
The specific name, urarachnoides, is derived from Ancient Greek ( tail + spider + like), and refers to this snake's spider-like tail tip, as does the common name, spider-tailed horned viper.
Description
Like other vipers in the genus Pseudocerastes, the scales above the eyes rise up to give P. urarachnoides a horned appearance. A specimen had been collected in 1968 as part of the Second Street Expedition to Iran and deposited in the Field Museum of Natural History at Chicago, identified as Pseudocerastes persicus. It was, however, found to be distinct, and it was described as a new species in 2006. The species is distinguished by a number of characteristics. There are about 16 to 17 scales between the horns, and the scales on the body above are rougher than on other species in the genus. There are 15 pairs of subcaudal scales, and the scales on the sides of the tail are elongated and appear like appendages of an arthropod. The tip of the tail is inflated into a bulb-like shape.
Distribution and habitat
The species is found in the western parts of Iran and over the border into the Eastern part of Iraq. It is found in the Zagros Mountains, more commonly on the western side of the mountains. Its current range is relatively small and getting smaller. This species lives in higher elevations that are primarily composed of gypsum. It prefers deep cracks and holes within the rock. They use these areas because they trap humidity and moisture during the hot summer months. During the day, it is most commonly found in the shade of a bush.
It overlaps in distribution with P. fieldi in Gilan-e Gharb, next to Qasr-e Shirin, Kermanshah, and with P. persicus in Bina and Bijar, Ilam Province.
Mimicry and behaviour
The snake is a superb mimic. The tail resembles a spider or other arachnid, and the authors who described the species speculated that it was used as a lure to attract birds, as a digested lark had been found in the stomach of the paratype specimen.
The tip of the tail is used as a lure in several other species of snake, including Bitis caudalis, Crotalus cerastes, Sistrurus catenatus, Agkistrodon contortrix, Acanthophis antarcticus, Acanthophis praelongus, and Morelia viridis, but none of these examples has the unique elongated scales that give it the appearance of arthropod appendages. The actual use of the tail to lure birds (an example of caudal luring) has been confirmed in field studies; the tail is moved in a figure-of-eight pattern.
Footage of the spider-tailed horned viper using its tail to lure a migrating bird featured in the Asia episode of the BBC series Seven Worlds, One Planet narrated by David Attenborough.
Venom
The venom of Pseudocerastes urarachnoides mainly acts as a cytotoxin. It targets cells and destroys them. Unlike its sister species, this cytotoxin destroys a wide variety of cell types. It has minor neurotoxic effects. This venom works as a procoagulant, with a remarkable coagulation speed, with reports of about 13 seconds before coagulation. Compared to its sister species, this venom is highly specialized for birds. The venom of the sister species, P. fieldi and P. persicus, do not have significant effects on birds and are more suited for mammals and amphibians. P. urarachnoides has a significant effect on birds, mammals, and amphibians. There is speculation that the venom affecting amphibians, toads specifically, could be a sign that these are the main diet of the young snakes. Though more information about the juveniles still needs to be conducted. In a study by Brouw (2021), it was found that the venom of this species does have a coagulant effect on humans and affects the human’s factor x. However, there has never been a recorded case of human envenomation in the wild. It is not known the severity of the effects that this venom would have on humans.
Taxonomy
Molecular studies based on cytochrome b show it to be closer to Pseudocerastes persicus than to P. fieldi.
References
External links
Footage of the spider-tailed horned viper using its tail to lure a migrating bird featured in the Asia episode of the BBC series Seven Worlds, One Planet
Viperinae
Endemic fauna of Iran
Reptiles of Iran
Reptiles described in 2006
Taxa named by Hamid Bostanchi
Taxa named by Steven C. Anderson
Taxa named by Haji Gholi Kami
Taxa named by Theodore Johnstone Papenfuss |
Cyanella is a genus of cormous perennial herbs native to South Africa and Namibia, first described for modern science in 1754.
Species
, the World Checklist of Selected Plant Families accepted nine species:
Cyanella alba L.f. - Cape Province
Cyanella aquatica Oberm. ex G.Scott - Calvinia Division of Cape Province
Cyanella cygnea G.Scott - Cape Province
Cyanella hyacinthoides Royen ex L. - Cape Province; naturalized in Western Australia
Cyanella lutea L.f. - Namibia, Cape Province, Free State
Cyanella marlothii J.C.Manning & Goldblatt – Northern Cape Provinces
Cyanella orchidiformis Jacq. - Cape Province
Cyanella pentheri Zahlbr. – Cape Province
Cyanella ramosissima (Engl. & Krause) Engl. & K.Krause - Namibia, Cape Province
References
Flora of Southern Africa
Asparagales genera
Tecophilaeaceae |
```smalltalk
/*
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Serialization;
using System.Collections;
using System.IO;
namespace Klocman.Extensions
{
public static class DictionaryExtensions
{
public static void Serialize(this IDictionary dictionary, TextWriter writer)
{
var entries = new List<Entry>(from object key in dictionary.Keys select new Entry(key, dictionary[key]));
var serializer = new XmlSerializer(typeof(List<Entry>));
serializer.Serialize(writer, entries);
}
public static void Deserialize(this IDictionary dictionary, TextReader reader)
{
dictionary.Clear();
var serializer = new XmlSerializer(typeof(List<Entry>));
var list = (List<Entry>)serializer.Deserialize(reader);
if (list == null) throw new ArgumentException(@"Reader didn't contain valid data", nameof(reader));
foreach (var entry in list)
{
dictionary[entry.Key] = entry.Value;
}
}
private class Entry
{
public object Key;
public object Value;
public Entry()
{
}
public Entry(object key, object value)
{
Key = key;
Value = value;
}
}
}
}
``` |
The was an ideological manifesto issued by the Ministry of Education of Japan during World War II aimed at Japan's domestic audience to explain in clear terms what was expected of them "as a people, nation and race".
Origins
During the summer of 1941, Prime Minister Fumimaro Konoe ordered the Minister of Education of Japan to compose a "Bible of the Japanese People", under the title of Shinmin no michi, which was also sometimes called Hito-do (Subject's Way), or Shinja-do (The Way of the Follower). The first edition of 30,000 was issued in August 1941 and distributed to all schools in Japan.
The Shinmin no michi offered three chapters which required only a few minutes of reading, explaining how subjects of the Emperor were to behave. It also presented a brief overview of world history from the Japanese viewpoint in the first third of the first chapter.
Themes
One of the main theme of the book dwelled on the direct descent of Emperor Shōwa from the goddess Amaterasu and the religious characterization of the Kokutai which was identified as a "theocracy" in which "The way of subjects of the Emperor issues from polity of the Emperor, and is to guard and maintain the Imperial Throne coexistent with the Heavens and the Earth." Emperor Shōwa and his war (seisen) were described as "holy". The virtues he embodied were unique and immutable.
"The Imperial Family is the fountain source of Japanese nation, and national and private life issue from this. The way of the subject is to be loyal to the Emperor in disregard of self, thereby supporting the Imperial Throne coexistensive with the Heavens and the Earth."
Filial piety and loyalty were the supreme virtues of the subjects of the imperial state and the book denounced the "individualism", liberalism, utilitarianism and materialism that imperiled those virtues.
"the country was contaminated by perverted thinking and our sacred duty is to clean this and to return to the virtuous customs of our ancestors. It is by working with harmony and cooperation and making manifest our national dignity that the Heavenly Spirits of our Ancestors should be obeyed in a dutiful manner, which, by working in harmony with others, is for the greater glory of the Throne".
The Shinmin no michi also argued that the Allied powers had bent on world domination for centuries, and had been quite successful as evidenced by the fact that only a few thousand Europeans now ruled over 450 million Asians. The western values system, based on greed and self-indulgence, was seen as to blame for countless bloody wars of aggression, and for the current world economic crisis. America was singled out for special criticism, with mention made of black slavery and the mistreatment of minorities and immigrants.
"the entry of Western countries in all parts of whole world, including the Far East, has given them international domination, and also led them to believe that they themselves possess the right to commit injurious acts against others".
Regarding the "holy" war in China:
"Viewed from the standpoint of world history, the China Affair is a step toward the construction of a world of moral principles by Japan. The building up of a new order for securing lasting peace of the world will be attained by the disposal of the China Affair as a stepping stone." (...) The China Affair is a bold task for Japan to propagate the ideals of the Empire founding throughout East Asia and the world over (...) Japan is the fountain source of the Yamato race, Manchukuo its reservoir, and East Asia is its paddy field."
The United States and Great Britain were accused in the Shinmin no michi of impeding the establishment of a state of general peace between Japan and China.
The other sections refer to correct social and moral customs, some racial and eugenic ideas, theology and religion, martial doctrines and other aspects of local customs.
Way of the Family
The Shinmin no michi (Way of Subjects) was supplemented in 1942 by the Ie no michi (家の道 or formally, 家の道:文部省戦時家庭教育指導要項解説 Ie no michi: Monbushō senji katei kyōiku shidō yōkō kaisetsu), which elaborated on sections of the Kokutai no hongi (国体の本義 "Cardinal Principles of the National Entity") pertaining to traditional hierarchical familial relationships. Family harmony is maintained by having each member fulfill his/her proper function in the family structure, and likewise this principle applies also to the community as a whole, as well as to the State.
See also
Imperial Rescript on Education
Shotouka-Chiri
An Investigation of Global Policy with the Yamato Race as Nucleus
Notes
References
External links
Full text
Online original text of the Ie no michi
Empire of Japan
1941 in Japan
1941 non-fiction books
Manifestos
Propaganda in Japan |
Rashad al-Shawwa () (1909 – 1988) was the Palestinian mayor of Gaza for eleven years from 1971 to 1982. Before becoming mayor he was an outgoing local activist in the city. He was known by Israelis and Palestinians as the pro-Jordanian "father figure" of the Gaza Strip. He is the father of artist Laila Shawwa.
Early life
Al-Shawwa was born in 1909 into one of Gaza City's most prominent families. He was the youngest of five sons of Sa'id al-Shawwa, a former mayor of Gaza City and the South Palestine representative to the Supreme Muslim Council, a body that oversaw Muslim community affairs during the British Mandate of Palestine. Rashad's mother was Lebanese. Rashad received his primary and secondary education in public schools in the city. In 1934, he graduated from the American University in Cairo with a degree in politics and economics. That year he established the first sports club in Gaza called the Center for Youth Welfare. In 1935, he was assigned the post of caretaker of a Muslim shrine in Haifa, and during his residence there, he came into contact with the Syrian revolutionary Izz ad-Din al-Qassam who was leading an insurgency against British forces in Palestine.
During the 1948 Arab-Israeli War, he helped organize the smuggling of arms from Iraq and Lebanon to the Arab Liberation Army under Fawzi al-Qawuqji. He returned to Gaza during this time period. In 1950, he founded the newspaper Sha'ab al-Arabiya ("The Arab Nation"). It was the mouthpiece of the Palestinians and he presided over the editing, but it ended after an eight-month circulation. Shawwa was appointed by Egyptian president Muhammad Naguib to "cleanse" Gaza of corruption and any remnants of the monarchy of Farouk of Egypt.
Role as mayor
Shawwa was appointed mayor of Gaza by Israel in 1971. He took over responsibility for the management of the municipality and made the decision to not annex adjacent Palestinian refugee camps to the city such as al-Shati and Jabalia. He commenced the development of the economic sector in the Gaza Strip, working on major projects for the export of locally grown citrus to the Arab world, and establishing a juice factory which still exists off Salah al-Din Street. Shawwa was deposed in 1982 for failing to cooperate with Israeli military rule of the Gaza Strip, but his local influence remained strong largely because of his chairmanship of the Gaza Benevolent Society, which dispensed Jordanian funds.
During the First Intifada, Shawwa publicly sympathized with the participants of the uprising, saying "People here have reached a point where they don't see much difference between life and death under the insulting and degrading conditions of military occupation." On 28 September 1988, Shawwa died of a heart attack in his Gaza home at 79 years of age. That same year, the Rashad Shawa Cultural Center in Gaza was completed.
References
Bibliography
1900s births
1988 deaths
The American University in Cairo alumni
Mayors of Gaza City
Palestinian newspaper publishers (people) |
Norway High School can refer to:
Norway High School (Iowa)
Norway High School (Michigan) |
The Hamilton Public Library (HPL) is the public library system of Hamilton, Ontario, Canada.
Services
HPL services include the Local History and Archives department (formerly called Special Collections), which houses an extensive collection of local history resources and government documents from the City of Hamilton, and the Learning Centre, which provides access to language materials for new Canadians. In recent years, the HPL’s collection of online resources has expanded rapidly, and now features more than 30 databases covering a great variety of topic areas.
Information and reference services
Access to full text databases
Community information
Internet access
Reader's advisory services
Programs for children, youth and adults
Delivery to homebound individuals
Interlibrary loan
Free downloadable ebooks and eaudiobooks
Multi-purpose rooms including the Hamilton Room at Central Library
Free musical concerts and dance performances
Six art galleries across the systems that exhibit local artists, artisans, archival displays and organizations
History
Public libraries have operated in Hamilton since the 1830s, although the first branches were privately operated and tended to be ephemeral in nature.
Hamilton and Gore Mechanics' Institute was one of a series of Mechanic's Institutes that were set up around the world after becoming popular in Britain. The Mechanic's Institutes libraries eventually became public libraries when the establishment of free libraries occurred.
Hamilton city council voted to publicly fund the construction and operation of a library in 1889. This building opened in February 1890. Hamilton was the first city in Canada to erect a new building for the express purpose of housing a library.
A HPL branch opened on Hamilton’s Barton Street in 1908. Andrew Carnegie funded a new main library, which opened in 1913. This was in turn replaced by a new, six-storey central library in 1980. Today, only one half of the building houses public collections.
Once restricted to the city of Hamilton, the HPL service area was expanded when the outlying townships were amalgamated into the City in 2001. The now-amalgamated City of Dundas had had its own library in operation since 1822. The outlying rural towns had previously been served by the Wentworth Libraries system. In 2001, the Wentworth and Dundas libraries amalgamated with the HPL into a single system with 22 branches, 34 bookmobile stops, a virtual online branch and a Visiting Library Service for the homebound.
List of branches
See also
Freda Farrell Waldon
List of Carnegie libraries in Canada
References
External links
Culture of Hamilton, Ontario
Public libraries in Ontario
Carnegie libraries in Canada
Buildings and structures in Hamilton, Ontario
Education in Hamilton, Ontario
1890 establishments in Ontario
Libraries established in 1890 |
```objective-c
/* NOLINT(build/header_guard) */
Distributed under MIT license.
See file LICENSE for detail or copy at path_to_url
*/
/* template parameters: EXPORT_FN, FN */
static BROTLI_NOINLINE void EXPORT_FN(CreateBackwardReferences)(
size_t num_bytes, size_t position,
const uint8_t* ringbuffer, size_t ringbuffer_mask,
ContextLut literal_context_lut, const BrotliEncoderParams* params,
Hasher* hasher, int* dist_cache, size_t* last_insert_len,
Command* commands, size_t* num_commands, size_t* num_literals) {
HASHER()* privat = &hasher->privat.FN(_);
/* Set maximum distance, see section 9.1. of the spec. */
const size_t max_backward_limit = BROTLI_MAX_BACKWARD_LIMIT(params->lgwin);
const size_t position_offset = params->stream_offset;
const Command* const orig_commands = commands;
size_t insert_length = *last_insert_len;
const size_t pos_end = position + num_bytes;
const size_t store_end = num_bytes >= FN(StoreLookahead)() ?
position + num_bytes - FN(StoreLookahead)() + 1 : position;
/* For speed up heuristics for random data. */
const size_t random_heuristics_window_size =
LiteralSpreeLengthForSparseSearch(params);
size_t apply_random_heuristics = position + random_heuristics_window_size;
const size_t gap = 0;
/* Minimum score to accept a backward reference. */
const score_t kMinScore = BROTLI_SCORE_BASE + 100;
BROTLI_UNUSED(literal_context_lut);
FN(PrepareDistanceCache)(privat, dist_cache);
while (position + FN(HashTypeLength)() < pos_end) {
size_t max_length = pos_end - position;
size_t max_distance = BROTLI_MIN(size_t, position, max_backward_limit);
size_t dictionary_start = BROTLI_MIN(size_t,
position + position_offset, max_backward_limit);
HasherSearchResult sr;
sr.len = 0;
sr.len_code_delta = 0;
sr.distance = 0;
sr.score = kMinScore;
FN(FindLongestMatch)(privat, ¶ms->dictionary,
ringbuffer, ringbuffer_mask, dist_cache, position, max_length,
max_distance, dictionary_start + gap, params->dist.max_distance, &sr);
if (sr.score > kMinScore) {
/* Found a match. Let's look for something even better ahead. */
int delayed_backward_references_in_row = 0;
--max_length;
for (;; --max_length) {
const score_t cost_diff_lazy = 175;
HasherSearchResult sr2;
sr2.len = params->quality < MIN_QUALITY_FOR_EXTENSIVE_REFERENCE_SEARCH ?
BROTLI_MIN(size_t, sr.len - 1, max_length) : 0;
sr2.len_code_delta = 0;
sr2.distance = 0;
sr2.score = kMinScore;
max_distance = BROTLI_MIN(size_t, position + 1, max_backward_limit);
dictionary_start = BROTLI_MIN(size_t,
position + 1 + position_offset, max_backward_limit);
FN(FindLongestMatch)(privat,
¶ms->dictionary,
ringbuffer, ringbuffer_mask, dist_cache, position + 1, max_length,
max_distance, dictionary_start + gap, params->dist.max_distance,
&sr2);
if (sr2.score >= sr.score + cost_diff_lazy) {
/* Ok, let's just write one byte for now and start a match from the
next byte. */
++position;
++insert_length;
sr = sr2;
if (++delayed_backward_references_in_row < 4 &&
position + FN(HashTypeLength)() < pos_end) {
continue;
}
}
break;
}
apply_random_heuristics =
position + 2 * sr.len + random_heuristics_window_size;
dictionary_start = BROTLI_MIN(size_t,
position + position_offset, max_backward_limit);
{
/* The first 16 codes are special short-codes,
and the minimum offset is 1. */
size_t distance_code = ComputeDistanceCode(
sr.distance, dictionary_start + gap, dist_cache);
if ((sr.distance <= (dictionary_start + gap)) && distance_code > 0) {
dist_cache[3] = dist_cache[2];
dist_cache[2] = dist_cache[1];
dist_cache[1] = dist_cache[0];
dist_cache[0] = (int)sr.distance;
FN(PrepareDistanceCache)(privat, dist_cache);
}
InitCommand(commands++, ¶ms->dist, insert_length,
sr.len, sr.len_code_delta, distance_code);
}
*num_literals += insert_length;
insert_length = 0;
/* Put the hash keys into the table, if there are enough bytes left.
Depending on the hasher implementation, it can push all positions
in the given range or only a subset of them.
Avoid hash poisoning with RLE data. */
{
size_t range_start = position + 2;
size_t range_end = BROTLI_MIN(size_t, position + sr.len, store_end);
if (sr.distance < (sr.len >> 2)) {
range_start = BROTLI_MIN(size_t, range_end, BROTLI_MAX(size_t,
range_start, position + sr.len - (sr.distance << 2)));
}
FN(StoreRange)(privat, ringbuffer, ringbuffer_mask, range_start,
range_end);
}
position += sr.len;
} else {
++insert_length;
++position;
/* If we have not seen matches for a long time, we can skip some
match lookups. Unsuccessful match lookups are very very expensive
and this kind of a heuristic speeds up compression quite
a lot. */
if (position > apply_random_heuristics) {
/* Going through uncompressible data, jump. */
if (position >
apply_random_heuristics + 4 * random_heuristics_window_size) {
/* It is quite a long time since we saw a copy, so we assume
that this data is not compressible, and store hashes less
often. Hashes of non compressible data are less likely to
turn out to be useful in the future, too, so we store less of
them to not to flood out the hash table of good compressible
data. */
const size_t kMargin =
BROTLI_MAX(size_t, FN(StoreLookahead)() - 1, 4);
size_t pos_jump =
BROTLI_MIN(size_t, position + 16, pos_end - kMargin);
for (; position < pos_jump; position += 4) {
FN(Store)(privat, ringbuffer, ringbuffer_mask, position);
insert_length += 4;
}
} else {
const size_t kMargin =
BROTLI_MAX(size_t, FN(StoreLookahead)() - 1, 2);
size_t pos_jump =
BROTLI_MIN(size_t, position + 8, pos_end - kMargin);
for (; position < pos_jump; position += 2) {
FN(Store)(privat, ringbuffer, ringbuffer_mask, position);
insert_length += 2;
}
}
}
}
}
insert_length += pos_end - position;
*last_insert_len = insert_length;
*num_commands += (size_t)(commands - orig_commands);
}
``` |
Bharat Gas Resources Limited (BGRL) is a wholly-owned subsidiary of Bharat Petroleum Corporation Limited (BPCL), India's second-largest oil marketing company led by the Ministry of Petroleum and Natural Gas, Government of India. It was amalgamated with the parent with effect from 16 August 2022. The Corporate Affairs Ministry issued the final order on August 8, 2022, approving the scheme of BGRL's amalgamation with BPCL.
The main business of BGRL is gas sourcing and retailing. Headquartered in Mumbai, BGRL was incorporated in June 2018 to set up city gas distribution networks in different geographical areas and streamline the corporate structure and consolidate the assets and liabilities of BGRL with BPCL.
BGRL entered into a sale and purchase agreement with Mozambique Lng1 Company Pte. Ltd. for sourcing LNG from Mozambique.
References
External links
Bharat GAS Resources Limited
Oil and gas companies of India
Oil pipeline companies
Government-owned companies of India
Indian companies established in 2018 |
The 1998 Metro Atlantic Athletic Conference baseball tournament took place from May 8 through 10, 1998. The top two regular season finishers of the league's two divisions met in the double-elimination tournament held at Dutchess Stadium in Wappingers Falls, New York. won their first tournament championship and advanced to the play-in round for the right to play in the 1998 NCAA Division I baseball tournament.
Seeding
The top two teams from each division were seeded based on their conference winning percentage. They then played a double-elimination tournament.
Results
All-Tournament Team
The following players were named to the All-Tournament Team.
Most Valuable Player
Bill Kerry was named Tournament Most Valuable Player.
References
Tournament
Metro Atlantic Athletic Conference baseball tournament
Metro Atlantic Athletic Conference baseball tournament |
Chinese Taipei competed at the 2012 Summer Olympics in London, from 27 July to 12 August 2012. "Chinese Taipei" was the designated name used by Taiwan to participate in some international organizations and almost all sporting events, including the Olympic Games. Neither the common name "Taiwan" nor the official name "Republic of China" would be used due primarily to opposition from the People's Republic of China. This was the nation's eighth consecutive appearance at the Olympics.
With the absence of baseball and softball at the Olympics, the Chinese Taipei Olympic Committee sent the nation's smallest delegation to the Games since 1992. A total of 44 athletes, 19 men and 25 women, competed in 14 sports. For the second time in its Olympic history, Chinese Taipei was represented by more female than male athletes. There was only a single competitor in fencing, judo, rowing, and sailing. This was also the youngest delegation in Chinese Taipei's Olympic history, with more than half under the age of 25, and many of them were expected to reach their peak in time for the 2016 Summer Olympics in Rio de Janeiro. Fourteen athletes had competed in Beijing, including taekwondo jin and fourth-placer Yang Shu-Chun. Four Chinese Taipei athletes made their third consecutive Olympic appearance: table tennis players Chuang Chih-Yuan and Huang Yi-Hua, and badminton players Cheng Wen-Hsing and Chien Yu-Chin in the women's doubles. Weightlifter Chen Shih-chieh, who competed at his first Olympics, was the nation's flag bearer at the opening ceremony.
Chinese Taipei left London with two medals: a gold and a bronze, the lowest in Summer Olympic history since 1996. These medals were awarded to the female athletes in weightlifting and taekwondo.
Medalists
Archery
Chinese Taipei has qualified three archers for the men's individual event, a team for the men's team event, three archers for the women's individual event, and a team for the women's team event
Men
Women
Athletics
Athletes from Chinese Taipei have so far achieved qualifying standards in the following athletics events (up to a maximum of 3 athletes in each event at the 'A' Standard, and 1 at the 'B' Standard):
Men
Track & road events
Field events
Women
Field events
Badminton
Men
Women
Mixed
Cycling
Road
Track
Omnium
Fencing
Women
Judo
Chinese Taipei has qualified 1 judoka
Rowing
Chinese Taipei has qualified the following boats.
Men
Qualification Legend: FA=Final A (medal); FB=Final B (non-medal); FC=Final C (non-medal); FD=Final D (non-medal); FE=Final E (non-medal); FF=Final F (non-medal); SA/B=Semifinals A/B; SC/D=Semifinals C/D; SE/F=Semifinals E/F; QF=Quarterfinals; R=Repechage
Sailing
Chinese Taipei has qualified 1 boat for each of the following events
Men
M = Medal race; EL = Eliminated – did not advance into the medal race;
Shooting
Chinese Taipei has ensured berths in the following shooting events:
Women
Swimming
Swimmers from Chinese Taipei have so far achieved qualifying standards in the following events (up to a maximum of 2 swimmers in each event at the Olympic Qualifying Time (OQT), and potentially 1 at the Olympic Selection Time (OST)):
Men
Women
Table tennis
Chinese Taipei has qualified a man and two women in table tennis.
Taekwondo
Chinese Taipei has ensured berths in the following events of taekwondo by reaching the top 3 of the 2011 WTF World Qualification Tournament or the Asian Qualification Tournament:
Tennis
Weightlifting
Chinese Taipei has qualified 1 man and 3 women.
References
Summer Olympics
Nations at the 2012 Summer Olympics
2012 |
```xml
import { Component } from '@angular/core';
import { Code } from '@domain/code';
import { CountryService } from '@service/countryservice';
interface AutoCompleteCompleteEvent {
originalEvent: Event;
query: string;
}
@Component({
selector: 'autocomplete-template-demo',
template: ` <app-docsectiontext>
<p><i>item</i> template allows displaying custom content inside the suggestions panel. The local ng-template variable passed to the ng-template is an object in the suggestions array.</p>
</app-docsectiontext>
<div class="card flex justify-content-center">
<p-autoComplete [(ngModel)]="selectedCountryAdvanced" [suggestions]="filteredCountries" (completeMethod)="filterCountry($event)" field="name" placeholder="Search">
<ng-template let-country pTemplate="item">
<div class="flex align-items-center gap-2">
<img src="path_to_url" [class]="'flag flag-' + country.code.toLowerCase()" style="width: 18px" />
<div>{{ country.name }}</div>
</div>
</ng-template>
</p-autoComplete>
</div>
<app-code [code]="code" selector="autocomplete-template-demo"></app-code>`
})
export class TemplateDoc {
countries: any[] | undefined;
selectedCountryAdvanced: any[] | undefined;
filteredCountries: any[] | undefined;
constructor(private countryService: CountryService) {}
ngOnInit() {
this.countryService.getCountries().then((countries) => {
this.countries = countries;
});
}
filterCountry(event: AutoCompleteCompleteEvent) {
let filtered: any[] = [];
let query = event.query;
for (let i = 0; i < (this.countries as any[]).length; i++) {
let country = (this.countries as any[])[i];
if (country.name.toLowerCase().indexOf(query.toLowerCase()) == 0) {
filtered.push(country);
}
}
this.filteredCountries = filtered;
}
code: Code = {
basic: `<p-autoComplete
[(ngModel)]="selectedCountryAdvanced"
[suggestions]="filteredCountries"
(completeMethod)="filterCountry($event)"
field="name">
<ng-template let-country pTemplate="item">
<div class="flex align-items-center gap-2">
<img
src="path_to_url"
[class]="'flag flag-' + country.code.toLowerCase()"
style="width: 18px" />
<div>{{ country.name }}</div>
</div>
</ng-template>
</p-autoComplete>`,
html: `<div class="card flex justify-content-center">
<p-autoComplete
[(ngModel)]="selectedCountryAdvanced"
[suggestions]="filteredCountries"
(completeMethod)="filterCountry($event)"
field="name">
<ng-template let-country pTemplate="item">
<div class="flex align-items-center gap-2">
<img
src="path_to_url"
[class]="'flag flag-' + country.code.toLowerCase()"
style="width: 18px" />
<div>{{ country.name }}</div>
</div>
</ng-template>
</p-autoComplete>
</div>`,
typescript: `import { Component } from '@angular/core';
import { SelectItemGroup } from 'primeng/api';
import { CountryService } from '@service/countryservice';
import { AutoCompleteModule } from 'primeng/autocomplete';
import { FormsModule } from '@angular/forms';
interface AutoCompleteCompleteEvent {
originalEvent: Event;
query: string;
}
@Component({
selector: 'autocomplete-template-demo',
templateUrl: './autocomplete-template-demo.html',
standalone: true,
imports: [FormsModule, AutoCompleteModule],
providers: [CountryService]
})
export class AutocompleteTemplateDemo {
countries: any[] | undefined;
selectedCountryAdvanced: any[] | undefined;
filteredCountries: any[] | undefined;
constructor(private countryService: CountryService) {}
ngOnInit() {
this.countryService.getCountries().then((countries) => {
this.countries = countries;
});
}
filterCountry(event: AutoCompleteCompleteEvent) {
let filtered: any[] = [];
let query = event.query;
for (let i = 0; i < (this.countries as any[]).length; i++) {
let country = (this.countries as any[])[i];
if (country.name.toLowerCase().indexOf(query.toLowerCase()) == 0) {
filtered.push(country);
}
}
this.filteredCountries = filtered;
}
}`,
service: ['CountryService'],
data: `
//CountryService
{
"name": "Afghanistan",
"code": "AF"
}
...`
};
}
``` |
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var isFunction = require( '@stdlib/assert/is-function' );
// MAIN //
/**
* Tests if a value is iterator-like.
*
* @param {*} value - value to test
* @returns {boolean} boolean indicating whether value is iterator-like
*
* @example
* var it = {
* 'next': function noop() {}
* };
* var bool = isIteratorLike( it );
* // returns true
*
* @example
* var bool = isIteratorLike( {} );
* // returns false
*
* @example
* var bool = isIteratorLike( null );
* // returns false
*/
function isIteratorLike( value ) {
var t = typeof value;
return (
value !== null &&
( t === 'object' || t === 'function' ) &&
isFunction( value.next )
);
}
// EXPORTS //
module.exports = isIteratorLike;
``` |
"Magic Moments" is a popular song composed by Burt Bacharach and written by Hal David, being one of the first songwriting collaborations by that duo. This song was recorded by Perry Como and released in 1957 as the B-side of his "Catch a Falling Star"; it reached No. 1 in the UK in 1958.
Background
In his 2003 book Burt Bacharach, Song by Song, Serene Dominic comments:
Chart performance
The biggest hit version of the song was recorded by Perry Como and released by RCA Victor in December 1957, becoming a hit early in 1958. The record was produced by Joe Reisman. The peak position in the United States is hard to track precisely, due to the multiple charts used in Billboard magazine: On the Most Played by Disc Jockeys chart, it reached it highest peak of number four.
The song was also a 1958 hit in Italy, while in the United Kingdom it spent eight weeks at number one in the UK Singles Chart, becoming Como's biggest ever hit there.
In Canada, the song reached number 12 on the CHUM Charts, February 3, 1958, co-charting with Catch a Falling Star.
Other recordings
A less successful UK cover version recorded by Ronnie Hilton reached No. 22 on the UK Singles Chart, in 1958. Hilton's version included some different lyrics from the original.
Bing Crosby recorded the song in 1958 for use on his radio show and it was subsequently included in the album With All My Heart (2012).
Amanda Lear recorded this song for her 1985 EP A L.
Synthpop duo Erasure recorded the song for their 1997 album Cowboy.
Other uses
Magic Moments is also the name given to a Surprise, Surprise style show within the BBC television film Pat and Margaret. Its theme music is the song itself and as the coach carrying various members of the audience sets off at the start of the film, they start singing it.
This song was used in the television commercial for Quality Street, a confectionery brand in the UK in the 1980s and continues to be used each year for the brand's Christmas advertisements.
The song is also occasionally sung by Ulster Rugby fans at away matches, particularly after 'magic moments' of play.
The Perry Como version is featured in the 1998 film, Fear and Loathing in Las Vegas, when Raoul arrives at a Vegas hotel where Dr. Gonzo is located, briefly in Alex Holeh Ahavah (1986), Dogma (1999), Police Academy (1984), Two Weeks Notice (2002), Bridget Jones: The Edge of Reason (2004), The Hitchhiker's Guide to the Galaxy (2005), Episode 3 of the first season of the 2012 BBC series Call the Midwife, which is set in 1957, and episode 9 of the 2017 Netflix series Glow.
The song was also used as background music for a segment on the 1998 HBO miniseries From the Earth to the Moon featuring a meeting of NASA Astronaut Group 2 – The New Nine – all of whom booked into The Rice Hotel in Houston, Texas, with the code name "Max Peck".
The Erasure recording is featured in the Clive Barker film Lord of Illusions, providing the background music to a magicians' convention.
Song used in the Grupo Arcor commercial in 2020–21.
The main melody and whistling section was also sampled by rapper Shotgun Willy for his song "Wendy", a love song he wrote about the animated spokeswoman Wendy from Wendy's.
References
Perry Como songs
1957 songs
1958 singles
UK Singles Chart number-one singles
Songs with music by Burt Bacharach
Songs with lyrics by Hal David
1950s jazz standards
Songs about nostalgia
RCA Victor singles |
```go
package registrar
import (
"reflect"
"testing"
)
func TestReserve(t *testing.T) {
r := NewRegistrar()
obj := "test1"
if err := r.Reserve("test", obj); err != nil {
t.Fatal(err)
}
if err := r.Reserve("test", obj); err != nil {
t.Fatal(err)
}
obj2 := "test2"
err := r.Reserve("test", obj2)
if err == nil {
t.Fatalf("expected error when reserving an already reserved name to another object")
}
if err != ErrNameReserved {
t.Fatal("expected `ErrNameReserved` error when attempting to reserve an already reserved name")
}
}
func TestRelease(t *testing.T) {
r := NewRegistrar()
obj := "testing"
if err := r.Reserve("test", obj); err != nil {
t.Fatal(err)
}
r.Release("test")
r.Release("test") // Ensure there is no panic here
if err := r.Reserve("test", obj); err != nil {
t.Fatal(err)
}
}
func TestGetNames(t *testing.T) {
r := NewRegistrar()
obj := "testing"
names := []string{"test1", "test2"}
for _, name := range names {
if err := r.Reserve(name, obj); err != nil {
t.Fatal(err)
}
}
r.Reserve("test3", "other")
names2, err := r.GetNames(obj)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(names, names2) {
t.Fatalf("Exepected: %v, Got: %v", names, names2)
}
}
func TestDelete(t *testing.T) {
r := NewRegistrar()
obj := "testing"
names := []string{"test1", "test2"}
for _, name := range names {
if err := r.Reserve(name, obj); err != nil {
t.Fatal(err)
}
}
r.Reserve("test3", "other")
r.Delete(obj)
_, err := r.GetNames(obj)
if err == nil {
t.Fatal("expected error getting names for deleted key")
}
if err != ErrNoSuchKey {
t.Fatal("expected `ErrNoSuchKey`")
}
}
func TestGet(t *testing.T) {
r := NewRegistrar()
obj := "testing"
name := "test"
_, err := r.Get(name)
if err == nil {
t.Fatal("expected error when key does not exist")
}
if err != ErrNameNotReserved {
t.Fatal(err)
}
if err := r.Reserve(name, obj); err != nil {
t.Fatal(err)
}
if _, err = r.Get(name); err != nil {
t.Fatal(err)
}
r.Delete(obj)
_, err = r.Get(name)
if err == nil {
t.Fatal("expected error when key does not exist")
}
if err != ErrNameNotReserved {
t.Fatal(err)
}
}
``` |
Mukwanangombe Auguste Mukwahepo Immanuel (7 October 1937 – 30 May 2018) affectionately known as Meekulu Mukwahepo was a Namibian guerrilla, notable for being the first woman recruit of the People's Liberation Army of Namibia. Mukwahepo committed her life looking after children during the South African Border War, moving from one camp to another whenever the need arose.
In 1963 Mukwahepo left her home in Namibia and followed her fiance Shikongo Hangala across the border into Angola. They survived hunger and war and eventually made their way to Tanzania. There, Mukwahepo became the first woman to undergo military training with SWAPO. For nine years she was the only woman in SWAPO's Kongwa camp. She was then thrust into a more traditional women's role - taking care of children in the SWAPO camps in Zambia and Angola. Mukwahepo underwent combat training in 1965 in Kongwa, Tanzania where she remained for nine years. At independence she was repatriated along with five children that she took care of in exile, according to UNAM's Ellen Ndeshi Namhila ’s book about the life of Mukwahepo; Mukwahepo : woman soldier mother
Death
Mukwahepo was accorded a State funeral in terms of article 32 (8) of the Namibian Constitution by President Hage Geingob and buried in Eenhana on 9 June at the Eenhana Burial Shrine after her memorial took place at the Eenhana Sports Stadium on June 08th.
The burial was attended by Prime Minister Saara Kuugongelwa-Amadhila, former president Hifikepunye Pohamba, the Deputy Prime Minister and Minister of International Relations and Cooperation, Netumbo Nandi-Ndaitwah, Speaker of the National Assembly Peter Katjavivi and the Swapo Secretary General Sophia Shaningwa as well as Vice-President Nangolo Mbumba. It was also attended by the Consul General of Angola Fransisco Correia and Judge President Petrus Damaseb.
In 1995 President Sam Nujoma conferred on her a medal at Omugulugwombashe in recognition of her heroism and contributions to the liberation of Namibia and was given a house by Former President Pohamba while Former Prime Minister Nahas Angula brought her furnitures for her sitting room.
References
1937 births
2018 deaths
People from Ohangwena Region
SWAPO politicians
People's Liberation Army of Namibia personnel
Namibian military personnel
National heroes of Namibia |
Ulla Wiggen (born 1942) is a Swedish painter. Wiggen is known for her paintings that interpret electronic circuitry, integrated circuit dies and schematic diagrams. In the late 1960s she was also known for her figure paintings.
Early life and education
Wiggen was born in Stockholm in 1942. She studied at the Art Academy in Stockholm from 1962 to 1963, the Royal College of Art in Stockholm from 1967 to 1972, the Nordic Psychotherapeutic College from 1972 to 1974 and the Psychology Education Stockholm University from 1978 to 1986.
Collections
Her work is included in the collections of:
the Moderna Museet, Stockholm,
the Norrköping Art Museum, Sweden,
the Göteborgs Museum of Art, Sweden,
the Västerås Konstmuseum, Sweden,
the Gävle Museum, Sweden and
the Malmo Art Museum, Malmo, Sweden.
References
Swedish women artists
21st-century Swedish painters
20th-century Swedish painters
1942 births
Living people
Painters from Stockholm |
In physics, Lami's theorem is an equation relating the magnitudes of three coplanar, concurrent and non-collinear vectors, which keeps an object in static equilibrium, with the angles directly opposite to the corresponding vectors. According to the theorem,
where A, B and C are the magnitudes of the three coplanar, concurrent and non-collinear vectors, , which keep the object in static equilibrium, and α, β and γ are the angles directly opposite to the vectors.
Lami's theorem is applied in static analysis of mechanical and structural systems. The theorem is named after Bernard Lamy.
Proof
As the vectors must balance , hence by making all the vectors touch its tip and tail the result is a triangle with sides A, B, C and angles By the law of sines then
Then by applying that for any angle , , and the result is
See also
Mechanical equilibrium
Parallelogram of force
Tutte embedding
References
Further reading
R.K. Bansal (2005). "A Textbook of Engineering Mechanics". Laxmi Publications. p. 4. .
I.S. Gujral (2008). "Engineering Mechanics". Firewall Media. p. 10.
Eponymous theorems of physics
Statics |
Norman Leslie Munro (1842–1894) was a Canadian-American publisher.
In 1873 Munro established the New York Family Story Paper, which gained a weekly circulation of 325,000. He also published Boys of New York, Our Boys, Munro's Library, and the American juvenile magazine Golden Hours in the late 19th century. One of his main writers was H. Irving Hancock.
Throughout his life, Munro owned several fast steam yachts including the Herreshoff-designed Norwood, which garnered extensive media attention for its competition with William Randolph Hearst's rival yacht Vamoose to set speed new records.
Munro died on February 24, 1894, in New York City after an appendectomy and was survived by his wife and two children. He is buried in Green-Wood Cemetery.
References
External links
Norman L. Munro (publisher) at the Internet Speculative Fiction Database
American publishers (people)
1842 births
1894 deaths
19th-century American businesspeople
Former yacht owners of New York City |
Standings and Results for Group B of the Regular Season phase of the 2011–12 Eurocup basketball tournament.
Standings
Fixtures and results
All times given below are in Central European Time.
Game 1
Game 2
Game 3
Game 4
Game 5
Game 6
External links
Standings
2011–12 Eurocup Basketball |
Roger Charles Sullivan (February 3, 1861 – April 14, 1920), was a member of the Cook County Democratic Organization during the early twentieth century.
Biography
He was born in Belvidere, Illinois, in 1861 the child of Irish immigrants.
Sullivan came to Chicago about 1879 to work in the railroad yards on the city's west side. He served only a single term in elective office, as the clerk of the Cook County Probate Court, to which he was elected in 1890. Thereafter, he accumulated influence within the tumultuous Cook County Democratic Party. He supported Grover Cleveland and opposed William Jennings Bryan in 1896, earning the permanent enmity of the Great Commoner.
Sullivan dominated the Illinois Democratic Party for two decades and was a national figure during the age when urban Democratic organizations reached the height of their power and prestige. Sullivan became controversial when he became effectively the chief operating officer of the Ogden Gas Company and the Cosmopolitan Electric Company, about a year after the franchises of which were approved by the city council on 25 February 1895. There is no evidence that Sullivan in any way originated the idea for two companies, and he probably became first involved by convincing his political partner, Mayor John P. Hopkins not to veto the ordinances. The amount he made was reported by the New York Times to be $8,000,000, but the exact amount has been the subject of much speculation. His main political opponent within the local Democratic Party, five-time mayor Carter H. Harrison suggested in his autobiography that each of the original shareholders made about six hundred thousand dollars. However, this was based entirely on rumor and speculation. Shortly after the turn of the century, Sullivan, with the other owners leased much of the Ogden Gas Company's physical assets to People's Gas, the local gas monopoly, and in 1913, he and the others sold their shares outright. The total figures involved are unknown, but were doubtlessly substantial. Before this point, contrary to expectation, both companies began a profitable operation (quashing the belief that they were created to force the local gas monopoly to buy them out). However, by the standards of the time, there was nothing illegal about the franchise. Indeed, it involved many of the city's leading men, including the brother-in-law of Governor John P. Altgeld, who became a shareholder. Sullivan wealth was also derived from a number of independent business investments. The most notable of these was the Sawyer Biscuit Company, a corporation he organized with his brothers and others about 1900. This became one of the nation's leading manufacturers of cookies, crackers, and pastries. It eventually became part of Keebler. Roger C. Sullivan was never indicted for anything, nor even accused of any criminal activity even by his most vehement opponents. He counted among his personal friends such reformers as George Cole of the Municipal Voters League. The historian Forrest McDonald in his work on Samuel Insull has conceded that Sullivan introduced a new approach to municipal politics by forgoing raids on the public till, and confining himself and his associates profits from city contracts and jobs, all within the boundaries of the law. As Edward F. Dunne, progressive Democratic governor of Illinois (1913–1917) and Sullivan's political opponent, acknowledged in his History of Illinois, Sullivan's endorsement of women's suffrage, civil service, the direct primary, and the state regulation of utilities was an important factor in their realization in the state.
In 1902, Sullivan and his chief partner, John P. Hopkins, achieved control of the Illinois state committee. This formed a base for a long-running rivalry with Mayor Carter H. Harrison, (who was forced out of office in 1905, and returned in 1911) Sullivan was elected to the Democratic National Committee in 1906. This signaled his replacement of Hopkins (who retired from active politics) as leader of the faction. He engaged in a long-running feud with William Jennings Bryan that vaulted him to greater national prominence during the first decade of the twentieth century. The feud stemmed supposedly from Bryan's alleged belief that Sullivan's election to the national committee had been engineered through fraudulent means (which was not true), but in reality it was based in Bryan's long-term antipathy to Sullivan that originated in the Chicago Democratic being a leader of the Gold Democrats, who opposed the Great Commoner in 1896 with their own candidate, Illinois' John M. Palmer. Bryan's feud with Sullivan endured for decades, but he was never able to significantly undercut the Chicago's leaders power.
Their rivalry climaxed in the 1912 Democratic national convention when Sullivan, working with others, was successful in thwarting Bryan's attempt to deadlock the convention and thus secure the nomination himself. Sullivan played a critical role in delivering the nomination to Woodrow Wilson at the party's convention in Baltimore. He switched the votes of the Illinois delegation from Champ Clark of Missouri to Wilson on the 43rd ballot despite the fact that Clark won the state's primary by over one hundred thousand votes. While Clark blamed Bryan and not Sullivan for his loss, historians such as Charles Link have credited northern urban bosses such as Sullivan, Tom Taggart of Indiana and Charles Murphy of New York for Wilson's victory. It was said (though much that is "said" about the convention is questionable) that Sullivan and Indiana boss Thomas Taggart forged a deal with one of Wilson's aides in a Baltimore hotel room while all three men were clad in their pajamas; the deal allegedly involved putting Thomas Marshall on the ticket as vice president in exchange for the Indiana and Illinois delegations throwing their support to Wilson. When Clark lost, it was the first time a Democrat failed to obtain the party's nomination after securing a majority of the votes of the delegates in the convention since Martin Van Buren was denied the nomination in 1844.
Sullivan did not get as much for his trouble-as he hoped-he was denied complete control of federal patronage by the administration (until 1916) and it did little (thanks to Bryan, who was secretary of state) to help him when he ran for the U.S. Senate in Illinois in 1914. Sullivan lost despite having the opposition split between Progressives and Republicans, largely as a function of the G.O.P reuniting and claiming its place as the state's majority party. His supporters organized a Sullivan for vice-president movement at the 1916 Democratic convention in Denver, but there was no real chance of Wilson putting him on the ticket. He remained a national figure of great renown as Democratic boss of what was then the second largest city, and the third most populous state until his death in April 1920. When he died, his passing was greeted with expressions of grief from Woodrow Wilson, Republican Governor Frank Orren Lowden, and virtually the entire Illinois political establishment, reformist or not. Even his only personal enemy, Carter Harrison Jr., who he had defeated for renomination for the mayor's office in 1915, offered his regrets.
He died on April 14, 1920, in Chicago, Illinois.
Family
He married Helen M. Quinlan. They had one son, Boetius Sullivan, and four daughters: Frances, Helen, Mary and Virginia.
Legacy
Roger C. Sullivan High School in Chicago, Illinois, is named after him.
References
1861 births
1920 deaths
People from Belvidere, Illinois
Politicians from Chicago
County officials in Illinois
Illinois Democrats
American political bosses from Illinois
Businesspeople from Illinois |
```python
"""
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
"""
from flask import Flask, request
import json
import hmac
import hashlib
import requests
app = Flask(__name__)
TOKEN = "your-secret-token"
PAGE_ACCESS_TOKEN = "secret_page_access_token"
@app.route('/webhook', methods=['GET', 'POST'])
def webhook():
# Webhook verification
if request.method == 'GET':
if request.args.get("hub.mode") == "subscribe" and request.args.get("hub.challenge"):
if not request.args.get("hub.verify_token") == TOKEN:
return "Verification token mismatch", 403
print("WEBHOOK_VERIFIED")
return request.args["hub.challenge"], 200
elif request.method == 'POST':
# Validate payload
signature = request.headers["X-Hub-Signature-256"].split('=')[1]
payload = request.get_data()
expected_signature = hmac.new(TOKEN.encode('utf-8'), payload, hashlib.sha256).hexdigest()
if signature != expected_signature:
print("Signature hash does not match")
return 'INVALID SIGNATURE HASH', 403
body = json.loads(payload.decode('utf-8'))
if 'object' in body and body['object'] == 'page':
entries = body['entry']
# Iterate through each entry as multiple entries can sometimes be batched
for entry in entries:
# Fetch the 'changes' element field
change_event = entry['changes'][0]
# Verify it is a change in the 'feed' field
if change_event['field'] != 'feed':
continue
# Fetch the 'post_id' in the 'value' element
post_id = change_event['value']['post_id']
comment_on_post(post_id)
return 'WEBHOOK EVENT HANDLED', 200
return 'INVALID WEBHOOK EVENT', 403
def comment_on_post(post_id):
payload = {
'message': 'Lovely post!'
}
headers = {
'content-type': 'application/json'
}
url = "path_to_url{}/comments?access_token={}".format(post_id, PAGE_ACCESS_TOKEN)
r = requests.post(url, json=payload, headers=headers)
print(r.text)
if __name__ == '__main__':
app.run(debug=True)
``` |
The 2020 Atlanta United FC season was the fourth season of Atlanta United FC's existence, and the twelfth year that a professional soccer club from Atlanta, Georgia competed in the top division of American soccer. Atlanta United played their home games at Mercedes-Benz Stadium. Outside of MLS, the team made their second appearance in the CONCACAF Champions League, and were set to participate in the 2020 U.S. Open Cup as defending champions, before the tournament's cancelation due to the COVID-19 pandemic.
Following the club's elimination from the MLS is Back Tournament, manager Frank de Boer was fired, with Atlanta United 2 manager Stephen Glass taking over as interim manager for the remainder of the season. The 2020 season was the first time Atlanta United FC finished worse than fourth in the Supporters' Shield table and failed to qualify for the MLS Cup playoffs.
Club
International roster slots
Atlanta had eight International Roster Slots for use in the 2020 season. During the 2020 offseason, Franco Escobar, Ezequiel Barco, and Eric Remedi acquired green cards, making them domestic players for MLS roster purposes.
Results
Non-competitive
Friendlies
Competitive
Major League Soccer
On March 12, 2020, the season entered a month-long suspension due to the COVID-19 pandemic in North America, following the cancellation of several matches. On March 19, the suspension was extended until May 10, and on April 17, the suspension was extended further to June 8. The COVID-19 pandemic caused the first interruption of regular season play since the 2001 MLS season, in which many late regular season games were cancelled due to the September 11 attacks.
On June 10, MLS announced that a bracket format dubbed the "MLS is Back Tournament" would begin July 8 at ESPN Wide World of Sports Complex in Walt Disney World, and end with the final on August 11. The three group stage matches would count towards the regular season standings. Following the tournament, the MLS regular season resumed with a revised schedule, concluding with the playoffs and MLS Cup 2020.
League tables
Eastern Conference
Overall
MLS is Back Tournament - Group E
Results summary
*Table does not include three group stage matches of MLS is Back Tournament*
Results by round
Matches
MLS Cup Playoffs
U.S. Open Cup
Originally, Atlanta United FC were to begin play by the 19th or the 20th of May. However, the tournament was suspended and eventually cancelled due to the COVID-19 pandemic.
CONCACAF Champions League
Round of 16
Quarter-finals
Statistics
Appearances and goals
|-
! colspan=16 style=background:#dcdcdc; text-align:center|Goalkeepers
|-
! colspan=16 style=background:#dcdcdc; text-align:center|Defenders
|-
! colspan=16 style=background:#dcdcdc; text-align:center|Midfielders
|-
! colspan=16 style=background:#dcdcdc; text-align:center|Forwards
|-
! colspan=16 style=background:#dcdcdc; text-align:center|Players who have played for Atlanta United this season but have left the club:
|}
Top scorers
Player movement
In
SuperDraft picks
Draft picks are not automatically signed to the team roster. Only trades involving draft picks and executed after the start of 2020 MLS SuperDraft are listed in the notes. Atlanta had two selections in the draft.
Loan in
Out
Loan out
Non-player transfers
Honors
Weekly / monthly
MLS team / player / coach of the week
MLS goal of the week
References
Atlanta United FC seasons
Atlanta United
Atlanta United
Atlanta United FC
Atlanta |
Clara Monti Danielsson (born 30 January 1992) is a Swedish handball player. She currently plays for Chambray Touraine Handball and the Sweden women's national handball team.
Career
Clara Monti Danielsson started playing handball in Lugi HF and represented the parent club until 2015. Clara Monti Danielsson is a strong defensive player, fast in the legs, reads the game and sacrifices herself for the team. For several years she formed a center lock in Lugi with Anna Lagerquist. In 2012 and 2013, she was present when the club reached the Swedish Championship final, but both ended in losses. In 2015, she moved to Danish Randers HK.
After three years in Randers, she changed club to Team Esbjerg in 2018. Already the first year offered a Danish league title with Team Esbjerg. In the EHF Cup 2019, Esbjerg reached the final but was defeated by Siofok from Hungary. After her second Danish championship gold 2020, Monti Danielsson left Team Esbjerg for German Borussia Dortmund. After playing one season and winning the German championship in 2021, she leaves the club for French Chambray Touraine.
National team
The national team career began early in the junior and youth national teams. Clara Monti Danielsson belonged to the golden generation 1992/1993 who took JVM gold in 2010 and repeated the feat in 2012 with U20 WC gold. She has only played 8 A-national matches and scored 1 goal. She was selected in the gross squad for the home European Championship 2016 but was rejected in favor of former clubmate Anna Lagerquist. In 2022 she got the chance again in the national team in the European Championship qualifier against Serbia after not playing in the national team for five years.
Extern sites
Clara Monti Danielsson on Swedish National Teams web
Clara Monti dhdb.hyldgaard-jensen.dk web
References
1992 births
Living people
Swedish female handball players
Expatriate handball players
Swedish expatriate sportspeople in Germany
Swedish expatriate sportspeople in Denmark
Swedish expatriate sportspeople in France
Sportspeople from Lund |
Czech Lion Award for Best Film is one of the awards given to the best Czech motion picture.
Winners
External links
Awards for best film
Czech Lion Awards
Awards established in 1993 |
```java
package com.ctrip.xpipe.redis.keeper.simple.latency;
import com.ctrip.xpipe.redis.keeper.simple.AbstractLoadRedis;
import java.net.InetSocketAddress;
/**
* @author wenchao.meng
*
* May 23, 2016
*/
public class AbstractLatencyTest extends AbstractLoadRedis{
// private InetSocketAddress dest = new InetSocketAddress("127.0.0.1", 6479);
protected InetSocketAddress dest = new InetSocketAddress("127.0.0.1", 7777);
public AbstractLatencyTest(InetSocketAddress master, InetSocketAddress dest){
super(master);
this.dest = dest;
}
}
``` |
```go
package manifest
import (
"encoding/json"
"fmt"
"github.com/containers/image/types"
"github.com/docker/libtrust"
"github.com/opencontainers/go-digest"
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
)
// FIXME: Should we just use docker/distribution and docker/docker implementations directly?
// FIXME(runcom, mitr): should we havea mediatype pkg??
const (
// DockerV2Schema1MediaType MIME type represents Docker manifest schema 1
DockerV2Schema1MediaType = "application/vnd.docker.distribution.manifest.v1+json"
// DockerV2Schema1MediaType MIME type represents Docker manifest schema 1 with a JWS signature
DockerV2Schema1SignedMediaType = "application/vnd.docker.distribution.manifest.v1+prettyjws"
// DockerV2Schema2MediaType MIME type represents Docker manifest schema 2
DockerV2Schema2MediaType = "application/vnd.docker.distribution.manifest.v2+json"
// DockerV2Schema2ConfigMediaType is the MIME type used for schema 2 config blobs.
DockerV2Schema2ConfigMediaType = "application/vnd.docker.container.image.v1+json"
// DockerV2Schema2LayerMediaType is the MIME type used for schema 2 layers.
DockerV2Schema2LayerMediaType = "application/vnd.docker.image.rootfs.diff.tar.gzip"
// DockerV2ListMediaType MIME type represents Docker manifest schema 2 list
DockerV2ListMediaType = "application/vnd.docker.distribution.manifest.list.v2+json"
// DockerV2Schema2ForeignLayerMediaType is the MIME type used for schema 2 foreign layers.
DockerV2Schema2ForeignLayerMediaType = "application/vnd.docker.image.rootfs.foreign.diff.tar.gzip"
)
// DefaultRequestedManifestMIMETypes is a list of MIME types a types.ImageSource
// should request from the backend unless directed otherwise.
var DefaultRequestedManifestMIMETypes = []string{
imgspecv1.MediaTypeImageManifest,
DockerV2Schema2MediaType,
DockerV2Schema1SignedMediaType,
DockerV2Schema1MediaType,
DockerV2ListMediaType,
}
// Manifest is an interface for parsing, modifying image manifests in isolation.
// Callers can either use this abstract interface without understanding the details of the formats,
// or instantiate a specific implementation (e.g. manifest.OCI1) and access the public members
// directly.
//
// See types.Image for functionality not limited to manifests, including format conversions and config parsing.
// This interface is similar to, but not strictly equivalent to, the equivalent methods in types.Image.
type Manifest interface {
// ConfigInfo returns a complete BlobInfo for the separate config object, or a BlobInfo{Digest:""} if there isn't a separate object.
ConfigInfo() types.BlobInfo
// LayerInfos returns a list of LayerInfos of layers referenced by this image, in order (the root layer first, and then successive layered layers).
// The Digest field is guaranteed to be provided; Size may be -1.
// WARNING: The list may contain duplicates, and they are semantically relevant.
LayerInfos() []LayerInfo
// UpdateLayerInfos replaces the original layers with the specified BlobInfos (size+digest+urls), in order (the root layer first, and then successive layered layers)
UpdateLayerInfos(layerInfos []types.BlobInfo) error
// ImageID computes an ID which can uniquely identify this image by its contents, irrespective
// of which (of possibly more than one simultaneously valid) reference was used to locate the
// image, and unchanged by whether or how the layers are compressed. The result takes the form
// of the hexadecimal portion of a digest.Digest.
ImageID(diffIDs []digest.Digest) (string, error)
// Inspect returns various information for (skopeo inspect) parsed from the manifest,
// incorporating information from a configuration blob returned by configGetter, if
// the underlying image format is expected to include a configuration blob.
Inspect(configGetter func(types.BlobInfo) ([]byte, error)) (*types.ImageInspectInfo, error)
// Serialize returns the manifest in a blob format.
// NOTE: Serialize() does not in general reproduce the original blob if this object was loaded from one, even if no modifications were made!
Serialize() ([]byte, error)
}
// LayerInfo is an extended version of types.BlobInfo for low-level users of Manifest.LayerInfos.
type LayerInfo struct {
types.BlobInfo
EmptyLayer bool // The layer is an empty/throwaway one, and may or may not be physically represented in various transport / storage systems. false if the manifest type does not have the concept.
}
// GuessMIMEType guesses MIME type of a manifest and returns it _if it is recognized_, or "" if unknown or unrecognized.
// FIXME? We should, in general, prefer out-of-band MIME type instead of blindly parsing the manifest,
// but we may not have such metadata available (e.g. when the manifest is a local file).
func GuessMIMEType(manifest []byte) string {
// A subset of manifest fields; the rest is silently ignored by json.Unmarshal.
// Also docker/distribution/manifest.Versioned.
meta := struct {
MediaType string `json:"mediaType"`
SchemaVersion int `json:"schemaVersion"`
Signatures interface{} `json:"signatures"`
}{}
if err := json.Unmarshal(manifest, &meta); err != nil {
return ""
}
switch meta.MediaType {
case DockerV2Schema2MediaType, DockerV2ListMediaType: // A recognized type.
return meta.MediaType
}
// this is the only way the function can return DockerV2Schema1MediaType, and recognizing that is essential for stripping the JWS signatures = computing the correct manifest digest.
switch meta.SchemaVersion {
case 1:
if meta.Signatures != nil {
return DockerV2Schema1SignedMediaType
}
return DockerV2Schema1MediaType
case 2:
// best effort to understand if this is an OCI image since mediaType
// isn't in the manifest for OCI anymore
// for docker v2s2 meta.MediaType should have been set. But given the data, this is our best guess.
ociMan := struct {
Config struct {
MediaType string `json:"mediaType"`
} `json:"config"`
Layers []imgspecv1.Descriptor `json:"layers"`
}{}
if err := json.Unmarshal(manifest, &ociMan); err != nil {
return ""
}
if ociMan.Config.MediaType == imgspecv1.MediaTypeImageConfig && len(ociMan.Layers) != 0 {
return imgspecv1.MediaTypeImageManifest
}
ociIndex := struct {
Manifests []imgspecv1.Descriptor `json:"manifests"`
}{}
if err := json.Unmarshal(manifest, &ociIndex); err != nil {
return ""
}
if len(ociIndex.Manifests) != 0 && ociIndex.Manifests[0].MediaType == imgspecv1.MediaTypeImageManifest {
return imgspecv1.MediaTypeImageIndex
}
return DockerV2Schema2MediaType
}
return ""
}
// Digest returns the a digest of a docker manifest, with any necessary implied transformations like stripping v1s1 signatures.
func Digest(manifest []byte) (digest.Digest, error) {
if GuessMIMEType(manifest) == DockerV2Schema1SignedMediaType {
sig, err := libtrust.ParsePrettySignature(manifest, "signatures")
if err != nil {
return "", err
}
manifest, err = sig.Payload()
if err != nil {
// Coverage: This should never happen, libtrust's Payload() can fail only if joseBase64UrlDecode() fails, on a string
// that libtrust itself has josebase64UrlEncode()d
return "", err
}
}
return digest.FromBytes(manifest), nil
}
// MatchesDigest returns true iff the manifest matches expectedDigest.
// Error may be set if this returns false.
// Note that this is not doing ConstantTimeCompare; by the time we get here, the cryptographic signature must already have been verified,
// or we are not using a cryptographic channel and the attacker can modify the digest along with the manifest blob.
func MatchesDigest(manifest []byte, expectedDigest digest.Digest) (bool, error) {
// This should eventually support various digest types.
actualDigest, err := Digest(manifest)
if err != nil {
return false, err
}
return expectedDigest == actualDigest, nil
}
// AddDummyV2S1Signature adds an JWS signature with a temporary key (i.e. useless) to a v2s1 manifest.
// This is useful to make the manifest acceptable to a Docker Registry (even though nothing needs or wants the JWS signature).
func AddDummyV2S1Signature(manifest []byte) ([]byte, error) {
key, err := libtrust.GenerateECP256PrivateKey()
if err != nil {
return nil, err // Coverage: This can fail only if rand.Reader fails.
}
js, err := libtrust.NewJSONSignature(manifest)
if err != nil {
return nil, err
}
if err := js.Sign(key); err != nil { // Coverage: This can fail basically only if rand.Reader fails.
return nil, err
}
return js.PrettySignature("signatures")
}
// MIMETypeIsMultiImage returns true if mimeType is a list of images
func MIMETypeIsMultiImage(mimeType string) bool {
return mimeType == DockerV2ListMediaType
}
// NormalizedMIMEType returns the effective MIME type of a manifest MIME type returned by a server,
// centralizing various workarounds.
func NormalizedMIMEType(input string) string {
switch input {
// "application/json" is a valid v2s1 value per path_to_url .
// This works for now, when nothing else seems to return "application/json"; if that were not true, the mapping/detection might
// need to happen within the ImageSource.
case "application/json":
return DockerV2Schema1SignedMediaType
case DockerV2Schema1MediaType, DockerV2Schema1SignedMediaType,
imgspecv1.MediaTypeImageManifest,
DockerV2Schema2MediaType,
DockerV2ListMediaType:
return input
default:
// If it's not a recognized manifest media type, or we have failed determining the type, we'll try one last time
// to deserialize using v2s1 as per path_to_url#L108
// and path_to_url#L50
//
// Crane registries can also return "text/plain", or pretty much anything else depending on a file extension recognized in the tag.
// This makes no real sense, but it happens
// because requests for manifests are
// redirected to a content distribution
// network which is configured that way. See path_to_url
return DockerV2Schema1SignedMediaType
}
}
// FromBlob returns a Manifest instance for the specified manifest blob and the corresponding MIME type
func FromBlob(manblob []byte, mt string) (Manifest, error) {
switch NormalizedMIMEType(mt) {
case DockerV2Schema1MediaType, DockerV2Schema1SignedMediaType:
return Schema1FromManifest(manblob)
case imgspecv1.MediaTypeImageManifest:
return OCI1FromManifest(manblob)
case DockerV2Schema2MediaType:
return Schema2FromManifest(manblob)
case DockerV2ListMediaType:
return nil, fmt.Errorf("Treating manifest lists as individual manifests is not implemented")
default: // Note that this may not be reachable, NormalizedMIMEType has a default for unknown values.
return nil, fmt.Errorf("Unimplemented manifest MIME type %s", mt)
}
}
// layerInfosToStrings converts a list of layer infos, presumably obtained from a Manifest.LayerInfos()
// method call, into a format suitable for inclusion in a types.ImageInspectInfo structure.
func layerInfosToStrings(infos []LayerInfo) []string {
layers := make([]string, len(infos))
for i, info := range infos {
layers[i] = info.Digest.String()
}
return layers
}
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.